cacti-1.1.38/0000775000175000017500000000000013264740214012256 5ustar tromantromancacti-1.1.38/vdef.php0000664000175000017500000006735313264740213013730 0ustar tromantroman __('Delete'), '2' => __('Duplicate') ); set_default_action(); switch (get_request_var('action')) { case 'save': vdef_form_save(); break; case 'actions': vdef_form_actions(); break; case 'item_remove_confirm': vdef_item_remove_confirm(); break; case 'item_remove': vdef_item_remove(); break; case 'item_movedown': get_filter_request_var('vdef_id'); item_movedown(); header('Location: vdef.php?header=false&action=edit&id=' . get_request_var('vdef_id')); break; case 'item_moveup': get_filter_request_var('vdef_id'); item_moveup(); header('Location: vdef.php?header=false&action=edit&id=' . get_request_var('vdef_id')); break; case 'item_edit': top_header(); vdef_item_edit(); bottom_footer(); break; case 'edit': top_header(); vdef_edit(); bottom_footer(); break; case 'ajax_dnd': vdef_item_dnd(); break; default: top_header(); vdef(); bottom_footer(); break; } /* -------------------------- Global Form Functions -------------------------- */ function draw_vdef_preview($vdef_id) { ?>
vdef=
', $vdef['name'], $vdef_title); /* create new entry: device_template */ $save['id'] = 0; $save['hash'] = get_hash_vdef(0); $fields_vdef_edit = preset_vdef_form_list(); foreach ($fields_vdef_edit as $field => $array) { if (!preg_match('/^hidden/', $array['method'])) { $save[$field] = $vdef[$field]; } } $vdef_id = sql_save($save, 'vdef'); /* create new entry(s): vdef_items */ if (sizeof($vdef_items) > 0) { foreach ($vdef_items as $vdef_item) { unset($save); $save['id'] = 0; $save['hash'] = get_hash_vdef(0, 'vdef_item'); $save['vdef_id'] = $vdef_id; $save['sequence'] = $vdef_item['sequence']; $save['type'] = $vdef_item['type']; $save['value'] = $vdef_item['value']; sql_save($save, 'vdef_items'); } } } /* ------------------------ The 'actions' function ------------------------ */ function vdef_form_actions() { global $vdef_actions; /* if we are to save this form, instead of display it */ if (isset_request_var('selected_items')) { $selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items')); if ($selected_items != false) { if (get_nfilter_request_var('drp_action') === '1') { // delete /* do a referential integrity check */ if (sizeof($selected_items)) { foreach($selected_items as $vdef_id) { /* ================= input validation ================= */ input_validate_input_number($vdef_id); /* ==================================================== */ $vdef_ids[] = $vdef_id; } } if (isset($vdef_ids)) { db_execute('DELETE FROM vdef WHERE ' . array_to_sql_or($vdef_ids, 'id')); db_execute('DELETE FROM vdef_items WHERE ' . array_to_sql_or($vdef_ids, 'vdef_id')); } } elseif (get_nfilter_request_var('drp_action') === '2') { // duplicate for ($i=0;($i $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ $vdef_list .= '
  • ' . db_fetch_cell_prepared('SELECT name FROM vdef WHERE id = ?', array($matches[1])) . '
  • '; $vdef_array[] = $matches[1]; } } top_header(); form_start('vdef.php', 'vdef_actions'); html_start_box($vdef_actions[get_nfilter_request_var('drp_action')], '60%', '', '3', 'center', ''); if (isset($vdef_array)) { if (get_nfilter_request_var('drp_action') === '1') { // delete print "

    " . __n('Click \'Continue\' to delete the following VDEF.', 'Click \'Continue\' to delete following VDEFs.', sizeof($vdef_array)) . "

    \n"; $save_html = " "; } elseif (get_nfilter_request_var('drp_action') === '2') { // duplicate print "

    " . __n('Click \'Continue\' to duplicate the following VDEF. You can optionally change the title format for the new VDEF.', 'Click \'Continue\' to duplicate following VDEFs. You can optionally change the title format for the new VDEFs.', sizeof($vdef_array)) . "

    " . __('Title Format:') . "
    "; form_text_box("title_format", " (1)", "", "255", "30", "text"); print "

    \n"; $save_html = " "; } } else { print "" . __('You must select at least one VDEF.') . "\n"; $save_html = ""; } print " $save_html \n"; html_end_box(); form_end(); bottom_footer(); } /* -------------------------- VDEF Item Functions -------------------------- */ function vdef_item_remove_confirm() { global $vdef_functions, $vdef_item_types, $custom_vdef_data_source_types; /* ================= input validation ================= */ get_filter_request_var('id'); get_filter_request_var('vdef_id'); /* ==================================================== */ form_start('vdef.php'); html_start_box('', '100%', '', '3', 'center', ''); $vdef = db_fetch_row_prepared('SELECT * FROM vdef WHERE id = ?', array(get_request_var('id'))); $vdef_item = db_fetch_row_prepared('SELECT * FROM vdef_items WHERE id = ?', array(get_request_var('vdef_id'))); ?>

    VDEF Name: ''
    :

    ' onClick='$("#cdialog").dialog("close");' name='cancel'> ' name='continue' title=''> array( 'method' => 'drop_array', 'friendly_name' => __('VDEF Item Type'), 'description' => __('Choose what type of VDEF item this is.'), 'value' => $current_type, 'array' => $vdef_item_types ), 'value' => array( 'method' => 'drop_array', 'friendly_name' => __('VDEF Item Value'), 'description' => __('Enter a value for this VDEF item.'), 'value' => (isset($vdef['value']) ? $vdef['value']:'') ), 'id' => array( 'method' => 'hidden', 'value' => isset_request_var('id') ? get_request_var('id') : '0', ), 'type' => array( 'method' => 'hidden', 'value' => $current_type ), 'vdef_id' => array( 'method' => 'hidden', 'value' => get_request_var('vdef_id') ), 'save_component_item' => array( 'method' => 'hidden', 'value' => '1' ) ); switch ($current_type) { case '1': $form_vdef['value']['array'] = $vdef_functions; break; case '4': $form_vdef['value']['array'] = $custom_vdef_data_source_types; break; case '6': $form_vdef['value']['method'] = 'textbox'; $form_vdef['value']['max_length'] = '255'; $form_vdef['value']['size'] = '30'; break; } draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => inject_form_variables($form_vdef, $vdef) ) ); ?> array('no_form_tag' => true), 'fields' => inject_form_variables($preset_vdef_form_list, (isset($vdef) ? $vdef : array())) ) ); html_end_box(true, true); form_hidden_box('id', (isset($vdef['id']) ? $vdef['id'] : '0'), ''); form_hidden_box('save_component_vdef', '1', ''); if (!isempty_request_var('id')) { html_start_box('', '100%', '', '3', 'center', ''); draw_vdef_preview(get_request_var('id')); html_end_box(); html_start_box(__('VDEF Items'), '100%', '', '3', 'center', 'vdef.php?action=item_edit&vdef_id=' . $vdef['id']); $header_items = array( array('display' => __('Item'), 'align' => 'left'), array('display' => __('Item Value'), 'align' => 'left') ); html_header($header_items, 2); $vdef_items = db_fetch_assoc_prepared('SELECT * FROM vdef_items WHERE vdef_id = ? ORDER BY sequence', array(get_request_var('id'))); $i = 1; $total_items = sizeof($vdef_items); if (sizeof($vdef_items)) { foreach ($vdef_items as $vdef_item) { form_alternate_row('line' . $vdef_item['id'], true, true); ?> '> : 1) { echo ''; } else { echo ''; } if ($i > 1 && $i <= $total_items) { echo ''; } else { echo ''; } } ?> ' class='delete deleteMarker fa fa-remove' title=''>
    '> > ' id='refresh'> ' id='clear'>
    0'; } else { $sql_having = ''; } $total_rows = db_fetch_cell("SELECT COUNT(`rows`) FROM ( SELECT vd.id AS `rows`, vd.name, SUM(CASE WHEN local_graph_id>0 THEN 1 ELSE 0 END) AS graphs FROM vdef AS vd LEFT JOIN graph_templates_item AS gti ON gti.vdef_id=vd.id GROUP BY vd.id ) AS rs $sql_where $sql_having "); $sql_order = get_order_string(); $sql_limit = ' LIMIT ' . ($rows*(get_request_var('page')-1)) . ',' . $rows; return db_fetch_assoc("SELECT rs.*, SUM(CASE WHEN local_graph_id=0 THEN 1 ELSE 0 END) AS templates, SUM(CASE WHEN local_graph_id>0 THEN 1 ELSE 0 END) AS graphs FROM ( SELECT vd.*, gti.local_graph_id FROM vdef AS vd LEFT JOIN graph_templates_item AS gti ON gti.vdef_id=vd.id GROUP BY vd.id, gti.graph_template_id, gti.local_graph_id ) AS rs $sql_where GROUP BY rs.id $sql_having $sql_order $sql_limit"); } function vdef($refresh = true) { global $vdef_actions; /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'name', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ), 'has_graphs' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => read_config_option('default_has') == 'on' ? 'true':'false' ) ); validate_store_request_vars($filters, 'sess_vdef'); /* ================= input validation ================= */ vdef_filter(); $total_rows = 0; $vdefs = array(); if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } $vdefs = get_vdef_records($total_rows, $rows); $nav = html_nav_bar('vdef.php?filter=' . get_request_var('filter'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 5, __('VDEFs'), 'page', 'main'); form_start('vdef.php', 'chk'); print $nav; html_start_box('', '100%', '', '3', 'center', ''); $display_text = array( 'name' => array('display' => __('VDEF Name'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __esc('The name of this VDEF.') ), 'nosort' => array('display' => __('Deletable'), 'align' => 'right', 'tip' => __esc('VDEFs that are in use cannot be Deleted. In use is defined as being referenced by a Graph or a Graph Template.') ), 'graphs' => array('display' => __('Graphs Using'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __esc('The number of Graphs using this VDEF.') ), 'templates' => array('display' => __('Templates Using'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __esc('The number of Graphs Templates using this VDEF.') ) ); html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false); $i = 0; if (sizeof($vdefs)) { foreach ($vdefs as $vdef) { if ($vdef['graphs'] == 0 && $vdef['templates'] == 0) { $disabled = false; } else { $disabled = true; } form_alternate_row('line' . $vdef['id'], false, $disabled); form_selectable_cell(filter_value($vdef['name'], get_request_var('filter'), 'vdef.php?action=edit&id=' . $vdef['id']), $vdef['id']); form_selectable_cell($disabled ? __('No'):__('Yes'), $vdef['id'], '', 'text-align:right'); form_selectable_cell(number_format_i18n($vdef['graphs'], '-1'), $vdef['id'], '', 'text-align:right'); form_selectable_cell(number_format_i18n($vdef['templates'], '-1'), $vdef['id'], '', 'text-align:right'); form_checkbox_cell($vdef['name'], $vdef['id'], $disabled); form_end_row(); } } else { print "" . __('No VDEFs') . "\n"; } html_end_box(false); if (sizeof($vdefs)) { print $nav; } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($vdef_actions); form_end(); } cacti-1.1.38/utilities.php0000664000175000017500000026076113264740213015015 0ustar tromantroman 0 GROUP BY i.type_id'); /* Get RRDtool version */ $rrdtool_version = 'Unknown'; if ((file_exists(read_config_option('path_rrdtool'))) && ((function_exists('is_executable')) && (is_executable(read_config_option('path_rrdtool'))))) { $out_array = array(); exec(cacti_escapeshellcmd(read_config_option('path_rrdtool')), $out_array); if (sizeof($out_array) > 0) { if (preg_match('/^RRDtool ([1-9]\.[0-9])/', $out_array[0], $m)) { $rrdtool_version = 'rrd-'. $m[1] .'.x'; } } } /* Get SNMP cli version */ if ((file_exists(read_config_option('path_snmpget'))) && ((function_exists('is_executable')) && (is_executable(read_config_option('path_snmpget'))))) { $snmp_version = shell_exec(cacti_escapeshellcmd(read_config_option('path_snmpget')) . ' -V 2>&1'); } else { $snmp_version = "" . __('NET-SNMP Not Installed or its paths are not set. Please install if you wish to monitor SNMP enabled devices.') . ""; } /* Check RRDtool issues */ $rrdtool_error = ''; if ($rrdtool_version != read_config_option('rrdtool_version')) { $rrdtool_error .= "
    " . __('ERROR: Installed RRDtool version does not match configured version.
    Please visit the %s and select the correct RRDtool Utility Version.', "" . __('Configuration Settings') . '') . "

    "; } $graph_gif_count = db_fetch_cell('SELECT COUNT(*) FROM graph_templates_graph WHERE image_format_id = 2'); if ($graph_gif_count > 0) { $rrdtool_error .= "
    " . __('ERROR: RRDtool 1.2.x+ does not support the GIF images format, but %d" graph(s) and/or templates have GIF set as the image format.', $graph_gif_count) . '
    '; } /* Get spine version */ $spine_version = 'Unknown'; if ((file_exists(read_config_option('path_spine'))) && ((function_exists('is_executable')) && (is_executable(read_config_option('path_spine'))))) { $out_array = array(); exec(read_config_option('path_spine') . ' --version', $out_array); if (sizeof($out_array) > 0) { $spine_version = $out_array[0]; } } /* ================= input validation ================= */ get_filter_request_var('tab', FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => '/^([a-zA-Z]+)$/'))); /* ==================================================== */ /* present a tabbed interface */ $tabs = array( 'summary' => __('Summary'), 'database' => __('Database'), 'phpinfo' => __('PHP Info'), ); /* set the default tab */ load_current_session_value('tab', 'sess_ts_tabs', 'summary'); $current_tab = get_nfilter_request_var('tab'); $header_label = __('Technical Support [%s]', $tabs[get_request_var('tab')]); if (sizeof($tabs)) { $i = 0; /* draw the tabs */ print "
    \n"; } /* Display tech information */ html_start_box($header_label, '100%', '', '3', 'center', ''); if (get_request_var('tab') == 'summary') { html_section_header(__('General Information'), 2); form_alternate_row(); print '' . __('Date') . "\n"; print '' . date('r') . "\n"; form_end_row(); api_plugin_hook_function('custom_version_info'); form_alternate_row(); print '' . __('Cacti Version') . "\n"; print '' . CACTI_VERSION . "\n"; form_end_row(); form_alternate_row(); print '' . __('Cacti OS') . "\n"; print '' . $config['cacti_server_os'] . "\n"; form_end_row(); form_alternate_row(); print '' . __('RSA Fingerprint') . "\n"; print '' . read_config_option('rsa_fingerprint') . "\n"; form_end_row(); form_alternate_row(); print '' . __('NET-SNMP Version') . "\n"; print '' . $snmp_version . "\n"; form_end_row(); form_alternate_row(); print '' . __('RRDtool Version') . "\n"; print '' . $rrdtool_versions[$rrdtool_version] . ' ' . $rrdtool_error . "\n"; form_end_row(); form_alternate_row(); print '' . __('Devices') . "\n"; print '' . number_format_i18n($host_count, -1) . "\n"; form_end_row(); form_alternate_row(); print '' . __('Graphs') . "\n"; print '' . number_format_i18n($graph_count, -1) . "\n"; form_end_row(); form_alternate_row(); print '' . __('Data Sources') . "\n"; print ''; $data_total = 0; if (sizeof($data_count)) { foreach ($data_count as $item) { print $input_types[$item['type_id']] . ': ' . number_format_i18n($item['total'], -1) . '
    '; $data_total += $item['total']; } print __('Total: %s', number_format_i18n($data_total, -1)); } else { print "0"; } print "\n"; form_end_row(); html_section_header(__('Poller Information'), 2); form_alternate_row(); print "Interval\n"; print '' . read_config_option('poller_interval') . "\n"; if (file_exists(read_config_option('path_spine')) && $poller_options[read_config_option('poller_type')] == 'spine') { $type = $spine_version; } else { $type = $poller_options[read_config_option('poller_type')]; } form_end_row(); form_alternate_row(); print '' . __('Type') . "\n"; print '' . $type . "\n"; form_end_row(); form_alternate_row(); print '' . __('Items') . "\n"; print ''; $total = 0; if (sizeof($poller_item)) { foreach ($poller_item as $item) { print __('Action[%s]', $item['action']) . ': ' . number_format_i18n($item['total'], -1) . '
    '; $total += $item['total']; } print __('Total: %s', number_format_i18n($total, -1)); } else { print "" . __('No items to poll') . ""; } print "\n"; form_end_row(); form_alternate_row(); print '' . __('Concurrent Processes') . "\n"; print '' . read_config_option('concurrent_processes') . "\n"; form_end_row(); form_alternate_row(); print '' . __('Max Threads') . "\n"; print '' . read_config_option('max_threads') . "\n"; form_end_row(); form_alternate_row(); print '' . __('PHP Servers') . "\n"; print '' . read_config_option('php_servers') . "\n"; form_end_row(); form_alternate_row(); print '' . __('Script Timeout') . "\n"; print '' . read_config_option('script_timeout') . "\n"; form_end_row(); form_alternate_row(); print '' . __('Max OID') . "\n"; print '' . read_config_option('max_get_size') . "\n"; form_end_row(); form_alternate_row(); print '' . __('Last Run Statistics') . "\n"; print '' . read_config_option('stats_poller') . "\n"; form_end_row(); /* Get System Memory */ $memInfo = utilities_get_system_memory(); if (sizeof($memInfo)) { html_section_header(__('System Memory'), 2); foreach($memInfo as $name => $value) { if ($config['cacti_server_os'] == 'win32') { form_alternate_row(); print "$name\n"; print '' . number_format_i18n($value/1000, 2) . " MB\n"; form_end_row(); } else { switch($name) { case 'SwapTotal': case 'SwapFree': case 'Cached': case 'MemTotal': case 'MemFree': case 'Buffers': case 'Active': case 'Inactive': form_alternate_row(); print "$name\n"; print '' . number_format_i18n($value/1000/1000, 2) . " MB\n"; form_end_row(); } } } form_end_row(); } html_section_header(__('PHP Information'), 2); form_alternate_row(); print "" . __('PHP Version') . "\n"; if (version_compare(PHP_VERSION, '5.5.0') >= 0) { print '' . PHP_VERSION . "\n"; } else { print '' . PHP_VERSION . "
    " . __('PHP Version 5.5.0+ is recommended due to strong password hashing support.') . "\n"; } form_end_row(); form_alternate_row(); print "" . __('PHP OS') . "\n"; print '' . PHP_OS . "\n"; form_end_row(); form_alternate_row(); print "" . __('PHP uname') . "\n"; print ''; if (function_exists('php_uname')) { print php_uname(); } else { print __('N/A'); } print "\n"; form_end_row(); form_alternate_row(); print "" . __('PHP SNMP') . "\n"; print ''; if (function_exists('snmpget')) { print __('Installed'); } else { print __('Not Installed'); } print "\n"; form_end_row(); form_alternate_row(); print "max_execution_time\n"; print '' . ini_get('max_execution_time') . "\n"; form_end_row(); form_alternate_row(); print "memory_limit\n"; print '' . ini_get('memory_limit'); /* Calculate memory suggestion based off of data source count */ $memory_suggestion = $data_total * 32768; /* Set minimum - 16M */ if ($memory_suggestion < 16777216) { $memory_suggestion = 16777216; } /* Set maximum - 512M */ if ($memory_suggestion > 536870912) { $memory_suggestion = 536870912; } /* Suggest values in 8M increments */ $memory_suggestion = round($memory_suggestion / 8388608) * 8388608; if (memory_bytes(ini_get('memory_limit')) < $memory_suggestion) { print "
    "; if ((ini_get('memory_limit') == -1)) { print __("You've set memory limit to 'unlimited'.") . "
    "; } print __('It is highly suggested that you alter you php.ini memory_limit to %s or higher.', memory_readable($memory_suggestion)) . '
    ' . __('This suggested memory value is calculated based on the number of data source present and is only to be used as a suggestion, actual values may vary system to system based on requirements.'); print '

    '; } print "\n"; form_end_row(); utilities_get_mysql_recommendations(); } elseif (get_request_var('tab') == 'database') { html_section_header(__('MySQL Table Information - Sizes in KBytes'), 2); form_alternate_row(); print " "; if (sizeof($tables) > 0) { print "\n"; print "\n"; print "\n"; print " \n"; print " \n"; print " \n"; print " \n"; print " \n"; print " \n"; print " \n"; print " \n"; print "\n"; print "\n"; foreach ($tables as $table) { form_alternate_row(); print '\n"; print '\n"; print '\n"; print '\n"; print '\n"; print '\n"; print '\n"; print '\n"; form_end_row(); } print "
    " . __('Name') . "" . __('Engine') . "" . __('Rows') . "" . __('Avg Row Length') . "" . __('Data Length') . "" . __('Index Length') . "" . __('Collation') . "" . __('Comment') . "
    ' . $table['TABLE_NAME'] . "' . $table['ENGINE'] . "' . number_format_i18n($table['TABLE_ROWS'], -1) . "' . number_format_i18n($table['AVG_ROW_LENGTH'], -1) . "' . number_format_i18n($table['DATA_LENGTH'], -1) . "' . number_format_i18n($table['INDEX_LENGTH'], -1) . "' . $table['TABLE_COLLATION'] . "' . $table['TABLE_COMMENT'] . "
    \n"; } else { print __('Unable to retrieve table status'); } print "\n"; form_end_row(); } else { html_section_header(__('PHP Module Information'), 2); form_alternate_row(); $php_info = str_replace( array('width="600"', 'th colspan="2"', ','), array('', 'th class="subHeaderColumn"', ', '), $php_info ); print "" . $php_info . "\n"; form_end_row(); } html_end_box(); ?> array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'time', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ), 'username' => array( 'filter' => FILTER_CALLBACK, 'default' => '-1', 'options' => array('options' => 'sanitize_search_string') ), 'result' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ) ); validate_store_request_vars($filters, 'sess_userlog'); /* ================= input validation ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } ?>
    ' title=''> ' title=''> ' title=''>
    '>
    array(__('User'), 'ASC'), 'full_name' => array(__('Full Name'), 'ASC'), 'realm' => array(__('Authentication Realm'), 'ASC'), 'time' => array(__('Date'), 'ASC'), 'result' => array(__('Result'), 'DESC'), 'ip' => array(__('IP Address'), 'DESC') ); html_header_sort($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), 1, 'utilities.php?action=view_user_log'); if (sizeof($user_log)) { foreach ($user_log as $item) { form_alternate_row('', true); ?> 1) { db_execute_prepared('DELETE FROM user_log WHERE username = ? AND result IN(1) ORDER BY time LIMIT ' . ($total_login_rows - 1), array($user['username'])); } if ($total_token_rows > 1) { db_execute_prepared('DELETE FROM user_log WHERE username = ? AND result IN(2) ORDER BY time LIMIT ' . ($total_token_rows - 1), array($user['username'])); } db_execute_prepared('DELETE FROM user_log WHERE username = ? AND result = 0', array($user['username'])); } /* delete inactive users */ db_execute('DELETE FROM user_log WHERE user_id NOT IN (SELECT id FROM user_auth) OR username NOT IN (SELECT username FROM user_auth)'); } } function utilities_view_logfile() { global $log_tail_lines, $page_refresh_interval, $config; $logfile = read_config_option('path_cactilog'); $logbase = basename($logfile); if (is_base64_encoded(get_nfilter_request_var('rfilter'))) { set_request_var('rfilter', base64_decode(get_nfilter_request_var('rfilter'))); } if (isset_request_var('filename')) { $requestedFile = dirname($logfile) . '/' . basename(get_nfilter_request_var('filename')); if (file_exists($requestedFile)) { $logfile = $requestedFile; } else { $logfile = read_config_option('path_cactilog'); } } if ($logfile == '') { $logfile = $config['base_path'] . '/log/cacti.log'; } if (get_nfilter_request_var('filename') != '') { if (strpos(get_nfilter_request_var('filename'), $logbase) === false) { raise_message('clog_invalid'); header('Location: utilities.php?action=view_logfile&filename=' . $logbase); exit(0); } } /* ================= input validation and session storage ================= */ $filters = array( 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'tail_lines' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'rfilter' => array( 'filter' => FILTER_VALIDATE_IS_REGEX, 'pageset' => true, 'default' => '' ), 'message_type' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'reverse' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'refresh' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => read_config_option('log_refresh_interval') ) ); validate_store_request_vars($filters, 'sess_log'); /* ================= input validation ================= */ $page_nr = get_request_var('page'); $page = 'utilities.php?action=view_logfile&header=false'; $page .= '&filename=' . basename($logfile) . '&page=' . $page_nr; $refresh = array( 'seconds' => get_request_var('refresh'), 'page' => $page, 'logout' => 'false' ); set_page_refresh($refresh); top_header(); ?>
    ' title=''> ' title=''> ' title=''>
    '>
    0) { $start_string = __('Log [Total Lines: %d - Non-Matching Items Hidden]', $total_rows); } else { $start_string = __('Log [Total Lines: %d - All Items Shown]', $total_rows); } $rfilter = get_request_var('rfilter'); $reverse = get_request_var('reverse'); $refreshTime = get_request_var('refresh'); $message_type = get_request_var('message_type'); $tail_lines = get_request_var('tail_lines'); $base_url = 'utilities.php?action=view_logfile&rfilter='.$rfilter.'&reverse='.$reverse.'&refresh='.$refreshTime.'&message_type='.$message_type.'&tail_lines='.$tail_lines.'&filename='.basename($logfile); $nav = html_nav_bar($base_url, MAX_DISPLAY_PAGES, $page_nr, $number_of_lines, $total_rows, 13, __('Entries'), 'page', 'main'); echo $nav; html_start_box($start_string, '100%', '', '3', 'center', ''); $linecolor = false; foreach ($logcontents as $item) { $host_start = strpos($item, 'Device['); $ds_start = strpos($item, 'DS['); if (!$host_start && !$ds_start) { $new_item = html_escape($item); } else { $new_item = ''; while ($host_start) { $host_end = strpos($item, ']', $host_start); $host_id = substr($item, $host_start + 7, $host_end - ($host_start + 7)); $new_item .= html_escape(substr($item, 0, $host_start + 7)) . "" . html_escape(substr($item, $host_start + 7, $host_end - ($host_start + 7))) . ''; $item = substr($item, $host_end); $host_start = strpos($item, 'Device['); } $ds_start = strpos($item, 'DS['); while ($ds_start) { $ds_end = strpos($item, ']', $ds_start); $ds_id = substr($item, $ds_start + 3, $ds_end - ($ds_start + 3)); $new_item .= html_escape(substr($item, 0, $ds_start + 3)) . "" . html_escape(substr($item, $ds_start + 3, $ds_end - ($ds_start + 3))) . ''; $item = substr($item, $ds_end); $ds_start = strpos($item, 'DS['); } $new_item .= html_escape($item); } /* get the background color */ if (strpos($new_item, 'ERROR') !== false || strpos($new_item, 'FATAL') !== false) { $class = 'clogError'; } elseif (strpos($new_item, 'WARN') !== false) { $class = 'clogWarning'; } elseif (strpos($new_item, ' SQL ') !== false) { $class = 'clogSQL'; } elseif (strpos($new_item, 'DEBUG') !== false) { $class = 'clogDebug'; } elseif (strpos($new_item, 'STATS') !== false) { $class = 'clogStats'; } else { if ($linecolor) { $class = 'odd'; } else { $class = 'even'; } $linecolor = !$linecolor; } print "" . $new_item . "\n"; } html_end_box(); if ($total_rows) { echo $nav; } bottom_footer(); } function utilities_clear_logfile() { load_current_session_value('refresh', 'sess_logfile_refresh', read_config_option('log_refresh_interval')); $refresh['seconds'] = get_request_var('refresh'); $refresh['page'] = 'utilities.php?action=view_logfile&header=false'; $refresh['logout'] = 'false'; set_page_refresh($refresh); top_header(); $logfile = read_config_option('path_cactilog'); if ($logfile == '') { $logfile = './log/cacti.log'; } html_start_box(__('Clear Cacti Log'), '100%', '', '3', 'center', ''); if (file_exists($logfile)) { if (is_writable($logfile)) { $timestamp = date('Y-m-d H:i:s'); $log_fh = fopen($logfile, 'w'); fwrite($log_fh, __('%s - WEBUI: Cacti Log Cleared from Web Management Interface.', $timestamp) . "\n"); fclose($log_fh); print '' . __('Cacti Log Cleared') . ''; } else { print "" . __('Error: Unable to clear log, no write permissions.') . ""; } } else { print "" . __('Error: Unable to clear log, file does not exist.'). ""; } html_end_box(); } function utilities_view_snmp_cache() { global $poller_actions, $item_rows; /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'with_index' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '0' ), 'host_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'snmp_query_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'poller_action' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ) ); validate_store_request_vars($filters, 'sess_usnmp'); /* ================= input validation ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } $refresh['seconds'] = '300'; $refresh['page'] = 'utilities.php?action=view_snmp_cache&header=false'; $refresh['logout'] = 'false'; set_page_refresh($refresh); ?>
    ' title=''> ' title=''>
    '> ' >
    array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'dtd.name_cache', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ), 'host_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'template_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'poller_action' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ) ); validate_store_request_vars($filters, 'sess_poller'); /* ================= input validation ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } $refresh['seconds'] = '300'; $refresh['page'] = 'utilities.php?action=view_poller_cache'; $refresh['logout'] = 'false'; set_page_refresh($refresh); ?>
    ' title=''> ' title=''>
    '>
    array(__('Data Source Name'), 'ASC'), 'h.description' => array(__('Device Description'), 'ASC'), 'nosort' => array(__('Details'), 'ASC')); html_header_sort($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), 1, 'utilities.php?action=view_poller_cache'); $i = 0; if (sizeof($poller_cache)) { foreach ($poller_cache as $item) { if ($i % 2 == 0) { $class = 'odd'; } else { $class = 'even'; } print "\n"; ?> \n"; ?> array( 'link' => 'utilities.php?action=view_tech', 'description' => __('Cacti technical support page. Used by developers and technical support persons to assist with issues in Cacti. Includes checks for common configuration issues.') ), __('Log Administration') => array( 'link' => 'utilities.php?action=view_logfile', 'description' => __('The Cacti Log stores statistic, error and other message depending on system settings. This information can be used to identify problems with the poller and application.') ), __('View User Log') => array( 'link' => 'utilities.php?action=view_user_log', 'description' => __('Allows Administrators to browse the user log. Administrators can filter and export the log as well.') ) ); $utilities[__('Poller Cache Administration')] = array( __('View Poller Cache') => array( 'link' => 'utilities.php?action=view_poller_cache', 'description' => __('This is the data that is being passed to the poller each time it runs. This data is then in turn executed/interpreted and the results are fed into the RRDfiles for graphing or the database for display.') ), __('View Data Query Cache') => array( 'link' => 'utilities.php?action=view_snmp_cache', 'description' => __('The Data Query Cache stores information gathered from Data Query input types. The values from these fields can be used in the text area of Graphs for Legends, Vertical Labels, and GPRINTS as well as in CDEF\'s.') ), __('Rebuild Poller Cache') => array( 'link' => 'utilities.php?action=clear_poller_cache', 'description' => __('The Poller Cache will be re-generated if you select this option. Use this option only in the event of a database crash if you are experiencing issues after the crash and have already run the database repair tools. Alternatively, if you are having problems with a specific Device, simply re-save that Device to rebuild its Poller Cache. There is also a command line interface equivalent to this command that is recommended for large systems. NOTE: On large systems, this command may take several minutes to hours to complete and therefore should not be run from the Cacti UI. You can simply run \'php -q cli/rebuild_poller_cache.php --help\' at the command line for more information.') ), __('Rebuild Resource Cache') => array( 'link' => 'utilities.php?action=rebuild_resource_cache', 'description' => __('When operating multiple Data Collectors in Cacti, Cacti will attempt to maintain state for key files on all Data Collectors. This includes all core, non-install related website and plugin files. When you force a Resource Cache rebild, Cacti will clear the local Resource Cache, and then rebuild it at the next scheduled poller start. This will trigger all Remote Data Collectors to recheck their website and plugin files for consistency.') ), ); $utilities[__('Boost Utilities')] = array( __('View Boost Status') => array( 'link' => 'utilities.php?action=view_boost_status', 'description' => __('This menu pick allows you to view various boost settings and statistics associated with the current running Boost configuration.') ), ); $utilities[__('RRD Utilities')] = array( __('RRDfile Cleaner') => array( 'link' => 'rrdcleaner.php', 'description' => __('When you delete Data Sources from Cacti, the corresponding RRDfiles are not removed automatically. Use this utility to facilitate the removal of these old files.') ), ); $utilities[__('SNMPAgent Utilities')] = array( __('View SNMPAgent Cache') => array( 'link' => 'utilities.php?action=view_snmpagent_cache', 'description' => __('This shows all objects being handled by the SNMPAgent.') ), __('Rebuild SNMPAgent Cache') => array( 'link' => 'utilities.php?action=rebuild_snmpagent_cache', 'description' => __('The SNMP cache will be cleared and re-generated if you select this option. Note that it takes another poller run to restore the SNMP cache completely.') ), __('View SNMPAgent Notification Log') => array( 'link' => 'utilities.php?action=view_snmpagent_events', 'description' => __('This menu pick allows you to view the latest events SNMPAgent has handled in relation to the registered notification receivers.') ), __('SNMP Notification Receivers') => array( 'link' => 'managers.php', 'description' => __('Allows Administrators to maintain SNMP notification receivers.') ), ); api_plugin_hook('utilities_array'); html_start_box(__('Cacti System Utilities'), '100%', '', '3', 'center', ''); foreach($utilities as $header => $content) { html_section_header($header, 2); foreach($content as $title => $details) { form_alternate_row(); print ""; print "" . $title . ""; print "\n"; print ""; print $details['description']; print "\n"; form_end_row(); } } api_plugin_hook('utilities_list'); html_end_box(); } function boost_display_run_status() { global $config, $refresh_interval, $boost_utilities_interval, $boost_refresh_interval, $boost_max_runtime; /* ================= input validation ================= */ get_filter_request_var('refresh'); /* ==================================================== */ load_current_session_value('refresh', 'sess_boost_utilities_refresh', '30'); $last_run_time = read_config_option('boost_last_run_time', true); $next_run_time = read_config_option('boost_next_run_time', true); $rrd_updates = read_config_option('boost_rrd_update_enable', true); $boost_cache = read_config_option('boost_png_cache_enable', true); $max_records = read_config_option('boost_rrd_update_max_records', true); $max_runtime = read_config_option('boost_rrd_update_max_runtime', true); $update_interval = read_config_option('boost_rrd_update_interval', true); $peak_memory = read_config_option('boost_peak_memory', true); $detail_stats = read_config_option('stats_detail_boost', true); $refresh['seconds'] = get_request_var('refresh'); $refresh['page'] = 'utilities.php?action=view_boost_status&header=false'; $refresh['logout'] = 'false'; set_page_refresh($refresh); html_start_box(__('Boost Status'), '100%', '', '3', 'center', ''); ?>
    ' onClick='applyFilter()'>
    ' . __('WARNING:') . '' . __('Cannot open directory'); $cache_files = '' . __('WARNING:') . ' ' . __('Unknown'); } } else { $directory_size = '' . __('WARNING:') . ' ' . __('Directory Does NOT Exist!!'); $cache_files = '' . __('WARNING:') . ' ' . __('N/A'); } $i = 0; /* boost status display */ html_section_header(__('Current Boost Status'), 2); form_alternate_row(); print '' . __('Boost On-demand Updating:') . '' . ($rrd_updates == '' ? 'Disabled' : $boost_status_text) . ''; form_alternate_row(); print '' . __('Total Data Sources:') . '' . number_format_i18n($total_data_sources, -1) . ''; if ($total_records) { form_alternate_row(); print '' . __('Pending Boost Records:') . '' . number_format_i18n($pending_records, -1) . ''; form_alternate_row(); print '' . __('Archived Boost Records:') . '' . number_format_i18n($arch_records, -1) . ''; form_alternate_row(); print '' . __('Total Boost Records:') . '' . number_format_i18n($total_records, -1) . ''; } /* boost status display */ html_section_header(__('Boost Storage Statistics'), 2); /* describe the table format */ form_alternate_row(); print '' . __('Database Engine:') . '' . $engine . ''; /* tell the user how big the table is */ form_alternate_row(); print '' . __('Current Boost Table(s) Size:') . '' . boost_file_size_display($data_length, 2) . ''; /* tell the user about the average size/record */ form_alternate_row(); print '' . __('Avg Bytes/Record:') . '' . boost_file_size_display($avg_row_length, 0) . ''; /* tell the user about the average size/record */ $output_length = read_config_option('boost_max_output_length'); if ($output_length != '') { $parts = explode(':', $output_length); if ((time()-1200) > $parts[0]) { $ref = true; } else { $ref = false; } } else { $ref = true; } if ($ref) { if (strcmp($engine, 'MEMORY') == 0) { $max_length = db_fetch_cell('SELECT MAX(LENGTH(output)) FROM poller_output_boost'); } else { $max_length = '0'; } db_execute("REPLACE INTO settings (name, value) VALUES ('boost_max_output_length', '" . time() . ':' . $max_length . "')"); } else { $max_length = $parts[1]; } if ($max_length != 0) { form_alternate_row(); print '' . __('Max Record Length:') . '' . __('%d Bytes', number_format_i18n($max_length)) . ''; } /* tell the user about the "Maximum Size" this table can be */ form_alternate_row(); if (strcmp($engine, 'MEMORY')) { $max_table_allowed = __('Unlimited'); $max_table_records = __('Unlimited'); } else { $max_table_allowed = boost_file_size_display($max_data_length, 2); $max_table_records = number_format_i18n(($avg_row_length ? $max_data_length/$avg_row_length : 0), 3, 1000); } print '' . __('Max Allowed Boost Table Size:') . '' . $max_table_allowed . ''; /* tell the user about the estimated records that "could" be held in memory */ form_alternate_row(); print '' . __('Estimated Maximum Records:') . '' . $max_table_records . ' Records'; /* boost last runtime display */ html_section_header(__('Runtime Statistics'), 2); form_alternate_row(); print '' . __('Last Start Time:') . '' . $last_run_time . ''; form_alternate_row(); print '' . __('Last Run Duration:') . ''; if (is_numeric($boost_last_run_duration)) { print (($boost_last_run_duration > 60) ? __('%d minutes', (int)($boost_last_run_duration/60)) : '' ) . __('%d seconds', $boost_last_run_duration%60); if ($rrd_updates != ''){ print ' (' . __('%0.2f percent of update frequency)', round(100*$boost_last_run_duration/$update_interval/60));} } else { print __('N/A'); } print ''; form_alternate_row(); print '' . __('RRD Updates:') . '' . ($boost_rrds_updated != '' ? number_format_i18n($boost_rrds_updated, -1):'-') . ''; form_alternate_row(); print '' . __('Peak Poller Memory:') . '' . ((read_config_option('boost_peak_memory') != '' && is_numeric(read_config_option('boost_peak_memory'))) ? (round(read_config_option('boost_peak_memory')/1024/1024,2)) . ' ' . __('MBytes') : __('N/A')) . ''; form_alternate_row(); print '' . __('Detailed Runtime Timers:') . '' . (($detail_stats != '') ? $detail_stats:__('N/A')) . ''; form_alternate_row(); print '' . __('Max Poller Memory Allowed:') . '' . ((read_config_option('boost_poller_mem_limit') != '') ? (read_config_option('boost_poller_mem_limit')) . ' ' . __('MBytes') : __('N/A')) . ''; /* boost runtime display */ html_section_header(__('Run Time Configuration'), 2); form_alternate_row(); print '' . __('Update Frequency:') . '' . ($rrd_updates == '' ? __('N/A') : $boost_refresh_interval[$update_interval]) . ''; form_alternate_row(); print '' . __('Next Start Time:') . '' . $next_run_time . ''; form_alternate_row(); print '' . __('Maximum Records:') . '' . number_format_i18n($max_records, -1) . ' ' . __('Records') . ''; form_alternate_row(); print '' . __('Maximum Allowed Runtime:') . '' . $boost_max_runtime[$max_runtime] . ''; /* boost caching */ html_section_header(__('Image Caching'), 2); form_alternate_row(); print '' . __('Image Caching Status:') . '' . ($boost_cache == '' ? __('Disabled') : __('Enabled')) . ''; form_alternate_row(); print '' . __('Cache Directory:') . '' . $cache_directory . ''; form_alternate_row(); print '' . __('Cached Files:') . '' . $cache_files . ''; form_alternate_row(); print '' . __('Cached Files Size:') . '' . $directory_size . ''; html_end_box(true); } /** * * * snmpagent_utilities_run_cache() * * @param mixed * @return */ function snmpagent_utilities_run_cache() { global $item_rows; get_filter_request_var('mib', FILTER_CALLBACK, array('options' => 'sanitize_search_string')); $mibs = db_fetch_assoc('SELECT DISTINCT mib FROM snmpagent_cache'); $registered_mibs = array(); if($mibs && $mibs >0) { foreach($mibs as $mib) { $registered_mibs[] = $mib['mib']; } } /* ================= input validation ================= */ if(!in_array(get_request_var('mib'), $registered_mibs) && get_request_var('mib') != '-1' && get_request_var('mib') != '') { die_html_input_error(); } /* ==================================================== */ /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'mib' => array( 'filter' => FILTER_CALLBACK, 'default' => '-1', 'options' => array('options' => 'sanitize_search_string') ) ); validate_store_request_vars($filters, 'sess_snmpac'); /* ================= input validation ================= */ if (get_request_var('rows') == -1) { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } ?>
    '> ' title=''> ' title=''>
    ' . $name . ''; }else { print "$name"; } form_selectable_cell($mib, $item['oid']); form_selectable_cell($item['kind'], $item['oid']); form_selectable_cell($max_access, $item['oid']); form_selectable_cell((in_array($item['kind'], array(__('Scalar'), __('Column Data'))) ? $item['value'] : __('N/A')), $item['oid']); form_end_row(); } } html_end_box(); if (sizeof($snmp_cache)) { print $nav; } ?> 'LOW', SNMPAGENT_EVENT_SEVERITY_MEDIUM => 'MEDIUM', SNMPAGENT_EVENT_SEVERITY_HIGH => 'HIGH', SNMPAGENT_EVENT_SEVERITY_CRITICAL => 'CRITICAL' ); $severity_colors = array( SNMPAGENT_EVENT_SEVERITY_LOW => '#00FF00', SNMPAGENT_EVENT_SEVERITY_MEDIUM => '#FFFF00', SNMPAGENT_EVENT_SEVERITY_HIGH => '#FF0000', SNMPAGENT_EVENT_SEVERITY_CRITICAL => '#FF00FF' ); $receivers = db_fetch_assoc('SELECT DISTINCT manager_id, hostname FROM snmpagent_notifications_log INNER JOIN snmpagent_managers ON snmpagent_managers.id = snmpagent_notifications_log.manager_id'); /* ================= input validation ================= */ get_filter_request_var('receiver'); if(!in_array(get_request_var('severity'), array_keys($severity_levels)) && get_request_var('severity') != '-1' && get_request_var('severity') != '') { die_html_input_error(); } /* ==================================================== */ if (isset_request_var('purge')) { db_execute('TRUNCATE table snmpagent_notifications_log'); /* reset filters */ set_request_var('clear', true); } /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'severity' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'receiver' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ) ); validate_store_request_vars($filters, 'sess_snmpl'); /* ================= input validation ================= */ if (get_request_var('rows') == -1) { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } ?>
    '> ' title=''> ' title=''> ' title=''>
    "; print "" . date('Y-m-d H:i:s', $item['time']) . ''; print '' . html_escape($item['hostname']) . ''; if($item['description']) { print '' . html_escape($item['notification']) . ''; }else { print '' . html_escape($item['notification']) . ''; } print "$varbinds"; form_end_row(); } } else { print '' . __('No SNMP Notification Log Entries') . ''; } html_end_box(); if (sizeof($logs)) { print $nav; } ?> __('Delete'), 2 => __('Copy'), 3 => __('Enable'), 4 => __('Disable') ); $href_options = array( 3 => array( 'radio_value' => '4', 'radio_caption' => __('Defer to the Users Setting') ), 0 => array( 'radio_value' => '1', 'radio_caption' => __('Show the Page that the User pointed their browser to') ), 1 => array( 'radio_value' => '2', 'radio_caption' => __('Show the Console') ), 2 => array( 'radio_value' => '3', 'radio_caption' => __('Show the default Graph Screen') ) ); $gperm_options = array( 0 => array( 'radio_value' => '1', 'radio_caption' => __('Defer to the Users Setting') ), 1 => array( 'radio_value' => '2', 'radio_caption' => __('Grant Access') ), 2 => array( 'radio_value' => '3', 'radio_caption' => __('Restrict Access') ) ); $fields_user_group_edit = array( 'name' => array( 'method' => 'textbox', 'friendly_name' => __('Group Name'), 'description' => __('The name of this Group.'), 'value' => '|arg1:name|', 'max_length' => '255' ), 'description' => array( 'method' => 'textbox', 'friendly_name' => __('Group Description'), 'description' => __('A more descriptive name for this group, that can include spaces or special characters.'), 'value' => '|arg1:description|', 'max_length' => '255' ), 'enabled' => array( 'method' => 'checkbox', 'friendly_name' => __('Enabled'), 'description' => __('Determines if user is able to login.'), 'value' => '|arg1:enabled|', 'default' => '' ), 'grp1' => array( 'friendly_name' => __('General Group Options'), 'method' => 'checkbox_group', 'description' => __('Set any user account-specific options here.'), 'items' => array( 'graph_settings' => array( 'value' => '|arg1:graph_settings|', 'friendly_name' => __('Allow Users of this Group to keep custom User Settings'), 'form_id' => '|arg1:id|', 'default' => 'on' ) ) ), 'show_tree' => array( 'friendly_name' => __('Tree Rights'), 'method' => 'radio', 'description' => __('Should Users of this Group have access to the Tree?'), 'value' => '|arg1:show_tree|', 'default' => '1', 'items' => $gperm_options ), 'show_list' => array( 'friendly_name' => __('Graph List Rights'), 'method' => 'radio', 'description' => __('Should Users of this Group have access to the Graph List?'), 'value' => '|arg1:show_list|', 'default' => '1', 'items' => $gperm_options ), 'show_preview' => array( 'friendly_name' => __('Graph Preview Rights'), 'method' => 'radio', 'description' => __('Should Users of this Group have access to the Graph Preview?'), 'value' => '|arg1:show_preview|', 'default' => '1', 'items' => $gperm_options ), 'login_opts' => array( 'friendly_name' => __('Login Options'), 'method' => 'radio', 'default' => '1', 'description' => __('What to do when a User from this User Group logs in.'), 'value' => '|arg1:login_opts|', 'items' => $href_options ), 'id' => array( 'method' => 'hidden_zero', 'value' => '|arg1:id|' ), 'save_component_group' => array( 'method' => 'hidden', 'value' => '1' ) ); if (isset_request_var('update_policy')) { update_policies(); } else { switch (get_request_var('action')) { case 'actions': form_actions(); break; case 'save': form_save(); break; case 'perm_remove': perm_remove(); break; case 'edit': top_header(); group_edit(); bottom_footer(); break; default: if (!api_plugin_hook_function('user_group_admin_action', get_request_var('action'))) { top_header(); user_group(); bottom_footer(); } break; } } /* -------------------------- Actions Function -------------------------- */ function user_group_disable($id) { db_execute_prepared("UPDATE user_auth_group SET enabled = '' WHERE id = ?", array($id)); } function user_group_enable($id) { db_execute_prepared("UPDATE user_auth_group SET enabled = 'on' WHERE id = ?", array($id)); } function user_group_remove($id) { db_execute_prepared('DELETE FROM user_auth_group WHERE id = ?', array($id)); db_execute_prepared('DELETE FROM user_auth_group_members WHERE group_id = ?', array($id)); db_execute_prepared('DELETE FROM user_auth_group_realm WHERE group_id = ?', array($id)); db_execute_prepared('DELETE FROM user_auth_group_perms WHERE group_id = ?', array($id)); } function user_group_copy($id, $prefix = 'New Group') { static $count = 1; $name = $prefix . ' ' . $count; db_execute_prepared('INSERT INTO user_auth_group (name, description, graph_settings, login_opts, show_tree, show_list, show_preview, policy_graphs, policy_trees, policy_hosts, policy_graph_templates, enabled) SELECT ' . db_qstr($name) . ', description, graph_settings, login_opts, show_tree, show_list, show_preview, policy_graphs, policy_trees, policy_hosts, policy_graph_templates, enabled FROM user_auth_group WHERE id = ?', array($id)); $id = db_fetch_insert_id(); if (!empty($id)) { $perms = db_fetch_assoc_prepared('SELECT * FROM user_auth_group_perms WHERE group_id = ?', array($id)); if (sizeof($perms)) { foreach($perms as $p) { db_execute_prepared('INSERT INTO user_auth_group_perms (group_id, item_id, type) VALUES (?, ?, ?)', array($id, $p['item_id'], $p['type'])); } } $realms = db_fetch_assoc_prepared('SELECT * FROM user_auth_group_realm WHERE group_id = ?', array($id)); if (sizeof($realms)) { foreach($realms as $r) { db_execute_prepared('INSERT INTO user_auth_group_realm (group_id, realm_id) VALUES (?, ?)', array($id, $r['realm_id'])); } } } $count++; } function update_policies() { $set = ''; $set .= isset_request_var('policy_graphs') ? 'policy_graphs=' . get_nfilter_request_var('policy_graphs'):''; $set .= isset_request_var('policy_trees') ? ($set != '' ? ',':'') . 'policy_trees=' . get_nfilter_request_var('policy_trees'):''; $set .= isset_request_var('policy_hosts') ? ($set != '' ? ',':'') . 'policy_hosts=' . get_nfilter_request_var('policy_hosts'):''; $set .= isset_request_var('policy_graph_templates') ? ($set != '' ? ',':'') . 'policy_graph_templates=' . get_nfilter_request_var('policy_graph_templates'):''; if ($set != '') { db_execute_prepared("UPDATE user_auth_group SET $set WHERE id = ?", array(get_nfilter_request_var('id'))); } header('Location: user_group_admin.php?action=edit&header=false&tab=' . get_nfilter_request_var('tab') . '&id=' . get_nfilter_request_var('id')); exit; } function form_actions() { global $group_actions, $user_auth_realms; /* if we are to save this form, instead of display it */ if (isset_request_var('associate_host')) { foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') == '1') { db_execute_prepared('REPLACE INTO user_auth_group_perms (group_id, item_id, type) VALUES (?, ?, 3)', array(get_nfilter_request_var('id'), $matches[1])); } else { db_execute_prepared('DELETE FROM user_auth_group_perms WHERE group_id = ? AND item_id = ? AND type = 3', array(get_nfilter_request_var('id'), $matches[1])); } } } header('Location: user_group_admin.php?action=edit&header=false&tab=permsd&id=' . get_nfilter_request_var('id')); exit; } elseif (isset_request_var('associate_graph')) { foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') == '1') { db_execute_prepared('REPLACE INTO user_auth_group_perms (group_id, item_id, type) VALUES (?, ?, 1)', array(get_nfilter_request_var('id'), $matches[1])); } else { db_execute_prepared('DELETE FROM user_auth_group_perms WHERE group_id = ? AND item_id = ? AND type = 1', array(get_nfilter_request_var('id'), $matches[1])); } } } header('Location: user_group_admin.php?action=edit&header=false&tab=permsg&id=' . get_nfilter_request_var('id')); exit; } elseif (isset_request_var('associate_template')) { foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') == '1') { db_execute_prepared('REPLACE INTO user_auth_group_perms (group_id, item_id, type) VALUES (?, ?, 4)', array(get_nfilter_request_var('id'), $matches[1])); } else { db_execute_prepared('DELETE FROM user_auth_group_perms WHERE group_id = ? AND item_id = ? AND type = 4', array(get_nfilter_request_var('id'), $matches[1])); } } } header('Location: user_group_admin.php?action=edit&header=false&tab=permste&id=' . get_nfilter_request_var('id')); exit; } elseif (isset_request_var('associate_tree')) { foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') == '1') { db_execute_prepared('REPLACE INTO user_auth_group_perms (group_id, item_id, type) VALUES (?, ?, 2)', array(get_nfilter_request_var('id'), $matches[1])); } else { db_execute_prepared('DELETE FROM user_auth_group_perms WHERE group_id = ? AND item_id = ? AND type = 2', array(get_nfilter_request_var('id'), $matches[1])); } } } header('Location: user_group_admin.php?action=edit&header=false&tab=permstr&id=' . get_nfilter_request_var('id')); exit; } elseif (isset_request_var('associate_member')) { foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') == '1') { db_execute_prepared('REPLACE INTO user_auth_group_members (group_id, user_id) VALUES (?, ?)', array(get_nfilter_request_var('id'), $matches[1])); } else { db_execute_prepared('DELETE FROM user_auth_group_members WHERE group_id = ? AND user_id = ?', array(get_nfilter_request_var('id'), $matches[1])); } } } header('Location: user_group_admin.php?action=edit&header=false&tab=members&id=' . get_nfilter_request_var('id')); exit; } elseif (isset_request_var('selected_items')) { $selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items')); if ($selected_items != false) { if (get_nfilter_request_var('drp_action') == '1') { /* delete */ for ($i=0;($i $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') != '2') { $group_list .= '
  • ' . db_fetch_cell_prepared('SELECT name FROM user_auth_group WHERE id = ?', array($matches[1])) . '
  • '; } $group_array[$i] = $matches[1]; $i++; } } top_header(); form_start('user_group_admin.php'); html_start_box($group_actions[get_nfilter_request_var('drp_action')], '60%', '', '3', 'center', ''); if (isset($group_array) && sizeof($group_array)) { if ((get_nfilter_request_var('drp_action') == '1') && (sizeof($group_array))) { /* delete */ print "

    " . __n('Click \'Continue\' to delete the following User Group', 'Click \'Continue\' to delete following User Groups', sizeof($group_array)) . "

      $group_list
    \n"; $save_html = " "; } $group_id = ''; if ((get_nfilter_request_var('drp_action') == '2') && (sizeof($group_array))) { /* copy */ print "

    " . __n('Click \'Continue\' to Copy the following User Group to a new User Group.', 'Click \'Continue\' to Copy following User Groups to new User Groups.', sizeof($group_array)) . "

      $group_list

    " . __('Group Prefix:') . " "; print form_text_box('group_prefix', __('New Group'), '', 25); print "

    \n"; $save_html = " "; } if ((get_nfilter_request_var('drp_action') == '3') && (sizeof($group_array))) { /* enable */ print "

    " . __n('Click \'Continue\' to enable the following User Group.', 'Click \'Continue\' to enable following User Groups.', sizeof($group_array)) . "

      $group_list
    \n"; $save_html = " "; } if ((get_nfilter_request_var('drp_action') == '4') && (sizeof($group_array))) { /* disable */ print "

    " . __n('Click \'Continue\' to disable the following User Group.', 'Click \'Continue\' to disable following User Groups.', sizeof($group_array)) . "

      $group_list
    \n"; $save_html = " "; } } else { print "" . __('You must select at least one Group.') . "\n"; $save_html = ""; } print " "; print "\n"; print " $save_html \n"; html_end_box(); form_end(); bottom_footer(); } /* -------------------------- Save Function -------------------------- */ function form_save() { global $settings_user; if (isset_request_var('save_component_group')) { /* ================= input validation ================= */ get_filter_request_var('id'); get_filter_request_var('realm'); /* ==================================================== */ /* check duplicate group */ if (sizeof(db_fetch_row_prepared('SELECT * FROM user_auth_group WHERE name = ? AND id != ?', array(get_nfilter_request_var('name'), get_nfilter_request_var('id'))))) { raise_message(12); } $save['id'] = get_nfilter_request_var('id'); $save['name'] = form_input_validate(get_nfilter_request_var('name'), 'name', "^[A-Za-z0-9\._\\\@\ -]+$", false, 3); $save['description'] = form_input_validate(get_nfilter_request_var('description'), 'description', '', true, 3); $save['show_tree'] = form_input_validate(get_nfilter_request_var('show_tree', ''), 'show_tree', '', true, 3); $save['show_list'] = form_input_validate(get_nfilter_request_var('show_list', ''), 'show_list', '', true, 3); $save['show_preview'] = form_input_validate(get_nfilter_request_var('show_preview', ''), 'show_preview', '', true, 3); $save['graph_settings'] = form_input_validate(get_nfilter_request_var('graph_settings', ''), 'graph_settings', '', true, 3); $save['login_opts'] = form_input_validate(get_nfilter_request_var('login_opts'), 'login_opts', '', true, 3); $save['enabled'] = form_input_validate(get_nfilter_request_var('enabled', ''), 'enabled', '', true, 3); $save = api_plugin_hook_function('user_group_admin_setup_sql_save', $save); if (!is_error_message()) { $group_id = sql_save($save, 'user_auth_group'); if ($group_id) { reset_group_perms($group_id); raise_message(1); } else { raise_message(2); } } header('Location: user_group_admin.php?action=edit&header=false&tab=general&id=' . (isset($group_id) && $group_id > 0 ? $group_id : get_nfilter_request_var('id'))); exit; } elseif (isset_request_var('save_component_realm_perms')) { db_execute_prepared('DELETE FROM user_auth_group_realm WHERE group_id = ?', array(get_filter_request_var('id'))); foreach ($_POST as $var => $val) { if (preg_match('/^[section]/i', $var)) { if (substr($var, 0, 7) == 'section') { db_execute_prepared('REPLACE INTO user_auth_group_realm (group_id, realm_id) VALUES (?, ?)', array(get_request_var('id'), substr($var, 7))); } } } reset_group_perms(get_request_var('id')); raise_message(1); header('Location: user_group_admin.php?action=edit&header=false&tab=realms&id=' . get_request_var('id')); exit; } elseif (isset_request_var('save_component_graph_settings')) { foreach ($settings_user as $tab_short_name => $tab_fields) { foreach ($tab_fields as $field_name => $field_array) { if ((isset($field_array['items'])) && (is_array($field_array['items']))) { foreach ($field_array['items'] as $sub_field_name => $sub_field_array) { db_execute_prepared('REPLACE INTO settings_user_group (group_id, name, value) VALUES (?, ?, ?)', array(get_filter_request_var('id'), $sub_field_name, get_nfilter_request_var($sub_field_name, ''))); } } else { db_execute_prepared('REPLACE INTO settings_user_group (group_id, name, value) VALUES (?, ?, ?)', array(get_request_var('id'), $field_name, get_nfilter_request_var($field_name))); } } } kill_session_var('sess_user_config_array'); reset_group_perms(get_request_var('id')); raise_message(1); header('Location: user_group_admin.php?action=edit&header=false&tab=settings&id=' . get_nfilter_request_var('id')); exit; } else { api_plugin_hook('user_group_admin_save'); } /* redirect to the appropriate page */ header('Location: user_group_admin.php?action=edit&header=false&tab=general&id=' . get_nfilter_request_var('id')); } /* -------------------------- Graph Permissions -------------------------- */ function perm_remove() { /* ================= input validation ================= */ get_filter_request_var('id'); get_filter_request_var('group_id'); /* ==================================================== */ if (get_request_var('type') == 'graph') { db_execute_prepared('DELETE FROM user_auth_group_perms WHERE type=1 AND group_id = ? AND item_id = ?', array(get_request_var('group_id'), get_request_var('id'))); } elseif (get_request_var('type') == 'tree') { db_execute_prepared('DELETE FROM user_auth_group_perms WHERE type=2 AND group_id = ? AND item_id = ?', array(get_request_var('group_id'), get_request_var('id'))); } elseif (get_request_var('type') == 'host') { db_execute_prepared('DELETE FROM user_auth_group_perms WHERE type=3 AND group_id = ? AND item_id = ?', array(get_request_var('group_id'), get_request_var('id'))); } elseif (get_request_var('type') == 'graph_template') { db_execute_prepared('DELETE FROM user_auth_group_perms WHERE type=4 AND group_id = ? AND item_id = ?', array(get_request_var('group_id'), get_request_var('id'))); } header('Location: user_group_admin.php?action=edit&header=false&tab=gperms&id=' . get_request_var('group_id')); } function user_group_members_edit($header_label) { global $config, $auth_realms; process_member_request_vars(); member_filter($header_label); /* if the number of rows is -1, set it to the default */ if (get_request_var('rows') == -1) { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } /* form the 'where' clause for our main sql query */ if (get_request_var('filter') != '') { $sql_where = "WHERE (username LIKE '%" . get_request_var('filter') . "%' OR full_name LIKE '%" . get_request_var('filter') . "%')"; } else { $sql_where = ''; } if (get_request_var('associated') == 'false') { /* Show all items */ } else { $sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' (user_auth_group_members.group_id=' . get_request_var('id', 0) . ')'; } $total_rows = db_fetch_cell("SELECT COUNT(ua.id) FROM user_auth AS ua LEFT JOIN user_auth_group_members ON (ua.id = user_auth_group_members.user_id) $sql_where"); $sql_query = "SELECT DISTINCT ua.id, ua.username, ua.full_name, ua.enabled, ua.realm FROM user_auth AS ua LEFT JOIN user_auth_group_members ON (ua.id = user_auth_group_members.user_id) $sql_where ORDER BY username, full_name LIMIT " . ($rows*(get_request_var('page')-1)) . ',' . $rows; $members = db_fetch_assoc($sql_query); $nav = html_nav_bar('user_group_admin.php?action=edit&tab=members&id=' . get_request_var('id'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 7, __('Users'), 'page', 'main'); form_start(htmlspecialchars('user_group_admin.php?tab=members&id=' . get_request_var('id')), 'chk'); print $nav; html_start_box('', '100%', '', '3', 'center', ''); $display_text = array( __('Login Name'), __('Full Name'), __('ID'), __('Membership'), __('Enabled'), __('Realm')); html_header_checkbox($display_text, false); if (sizeof($members)) { foreach ($members as $g) { form_alternate_row('line' . $g['id'], true); form_selectable_cell(filter_value($g['username'], get_request_var('filter'), 'user_admin.php?action=user_edit&id=' . $g['id']), $g['id']); form_selectable_cell(filter_value($g['full_name'], get_request_var('filter')), $g['id']); form_selectable_cell($g['id'], $g['id']); if (user_group_is_member($g['id'], get_request_var('id'))) { form_selectable_cell('' . __('Group Member') . '', $g['id']); } else { form_selectable_cell('' . __('Non Member') . '', $g['id']); } form_selectable_cell(($g['enabled'] == 'on' ? __('Enabled'): __('Disabled') ), $g['id']); form_selectable_cell((isset($auth_realms[$g['realm']]) ? $auth_realms[$g['realm']]:'Unknown'), $g['id']); form_checkbox_cell($g['full_name'], $g['id']); form_end_row(); } } else { print '' . __('No Matching Group Members Found') . ''; } html_end_box(false); if (sizeof($members)) { print $nav; } form_hidden_box('tab', 'members', ''); form_hidden_box('id', get_request_var('id'), ''); form_hidden_box('associate_member', '1', ''); $assoc_actions = array( 1 => __('Add to Group'), 2 => __('Remove from Group') ); /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($assoc_actions); form_end(); } function user_group_graph_perms_edit($tab, $header_label) { global $config, $assoc_actions; /* ================= input validation ================= */ get_filter_request_var('id'); /* ==================================================== */ $policy_array = array( 1 => __('Allow'), 2 => __('Deny') ); if (!isempty_request_var('id')) { $policy = db_fetch_row_prepared('SELECT policy_graphs, policy_trees, policy_hosts, policy_graph_templates FROM user_auth_group WHERE id = ?', array(get_request_var('id'))); } switch($tab) { case 'permsg': process_graph_request_vars(); graph_filter($header_label); form_start('user_group_admin.php', 'policy'); /* box: device permissions */ html_start_box( __('Default Graph Policy'), '100%', '', '3', 'center', ''); ?>
    '> '>
    0)"; } else { $sql_where = 'WHERE (gtg.local_graph_id>0)'; } if (get_request_var('graph_template_id') == '-1') { /* Show all items */ } elseif (get_request_var('graph_template_id') == '0') { $sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' gtg.graph_template_id=0'; } elseif (!isempty_request_var('graph_template_id')) { $sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' gtg.graph_template_id=' . get_request_var('graph_template_id'); } if (get_request_var('associated') == 'false') { /* Show all items */ } else { $sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' (user_auth_group_perms.type = 1 AND user_auth_group_perms.group_id=' . get_request_var('id', 0) . ')'; } $total_rows = db_fetch_cell("SELECT COUNT(DISTINCT gtg.id) FROM graph_templates_graph AS gtg LEFT JOIN user_auth_group_perms ON (gtg.local_graph_id = user_auth_group_perms.item_id AND user_auth_group_perms.type = 1 AND user_auth_group_perms.group_id = " . get_request_var('id') . ") $sql_where"); $sql_query = "SELECT gtg.local_graph_id, gtg.title_cache, user_auth_group_perms.group_id FROM graph_templates_graph AS gtg LEFT JOIN user_auth_group_perms ON (gtg.local_graph_id=user_auth_group_perms.item_id AND user_auth_group_perms.type = 1 AND user_auth_group_perms.group_id = " . get_request_var('id') . ") $sql_where ORDER BY title_cache LIMIT " . ($rows*(get_request_var('page')-1)) . ',' . $rows; $graphs = db_fetch_assoc($sql_query); $nav = html_nav_bar('user_group_admin.php?action=edit&tab=permsg&id=' . get_request_var('id'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 7, __('Graphs'), 'page', 'main'); form_start(htmlspecialchars('user_group_admin.php?tab=permsg&id=' . get_request_var('id')), 'chk'); print $nav; html_start_box('', '100%', '', '3', 'center', ''); $display_text = array( __('Graph Title'), __('ID'), __('Effective Policy')); html_header_checkbox($display_text, false); if (sizeof($graphs)) { foreach ($graphs as $g) { form_alternate_row('line' . $g['local_graph_id'], true); form_selectable_cell(filter_value($g['title_cache'], get_request_var('filter')), $g['local_graph_id']); form_selectable_cell($g['local_graph_id'], $g['local_graph_id']); if (empty($g['group_id']) || $g['group_id'] == NULL) { if ($policy['policy_graphs'] == 1) { form_selectable_cell('' . __('Access Granted') . '', $g['local_graph_id']); } else { form_selectable_cell('' . __('Access Restricted') . '', $g['local_graph_id']); } } else { if ($policy['policy_graphs'] == 1) { form_selectable_cell('' . __('Access Restricted') . '', $g['local_graph_id']); } else { form_selectable_cell('' . __('Access Granted') . '', $g['local_graph_id']); } } form_checkbox_cell($g['title_cache'], $g['local_graph_id']); form_end_row(); } } else { print '' . __('No Matching Graphs Found') . ''; } html_end_box(false); if (sizeof($graphs)) { print $nav; } form_hidden_box('tab',$tab,''); form_hidden_box('id', get_request_var('id'), ''); form_hidden_box('associate_graph', '1', ''); if ($policy['policy_graphs'] == 1) { $assoc_actions = array( 1 => __('Revoke Access'), 2 => __('Grant Access') ); } else { $assoc_actions = array( 1 => __('Grant Access'), 2 => __('Revoke Access') ); } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($assoc_actions); form_end(); break; case 'permsd': process_device_request_vars(); device_filter($header_label); form_start('user_group_admin.php', 'policy'); /* box: device permissions */ html_start_box( __('Default Device Policy'), '100%', '', '3', 'center', ''); ?>
    '> '>
    ' . __('Access Granted') . '', $host['id']); } else { form_selectable_cell('' . __('Access Restricted') . '', $host['id']); } } else { if ($policy['policy_hosts'] == 1) { form_selectable_cell('' . __('Access Restricted') . '', $host['id']); } else { form_selectable_cell('' . __('Access Granted') . '', $host['id']); } } form_selectable_cell((isset($host_graphs[$host['id']]) ? $host_graphs[$host['id']] : 0), $host['id']); form_selectable_cell((isset($host_data_sources[$host['id']]) ? $host_data_sources[$host['id']] : 0), $host['id']); form_selectable_cell(get_colored_device_status(($host['disabled'] == 'on' ? true : false), $host['status']), $host['id']); form_selectable_cell(filter_value($host['hostname'], get_request_var('filter')), $host['id']); form_checkbox_cell($host['description'], $host['id']); form_end_row(); } } else { print '' . __('No Matching Devices Found') . ''; } html_end_box(false); if (sizeof($hosts)) { print $nav; } form_hidden_box('tab',$tab,''); form_hidden_box('id', get_request_var('id'), ''); form_hidden_box('associate_host', '1', ''); if ($policy['policy_hosts'] == 1) { $assoc_actions = array( 1 => __('Revoke Access'), 2 => __('Grant Access') ); } else { $assoc_actions = array( 1 => __('Grant Access'), 2 => __('Revoke Access') ); } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($assoc_actions); form_end(); break; case 'permste': process_template_request_vars(); template_filter($header_label); form_start('user_group_admin.php', 'policy'); /* box: device permissions */ html_start_box( __('Default Graph Template Policy'), '100%', '', '3', 'center', ''); ?>
    '> '>
    ' . __('Access Granted') . '', $g['id']); } else { form_selectable_cell('' . __('Access Restricted') . '', $g['id']); } } else { if ($policy['policy_graph_templates'] == 1) { form_selectable_cell('' . __('Access Restricted') . '', $g['id']); } else { form_selectable_cell('' . __('Access Granted') . '', $g['id']); } } form_selectable_cell($g['totals'], $g['id']); form_checkbox_cell($g['name'], $g['id']); form_end_row(); } } else { print '' . __('No Matching Graph Templates Found') . ''; } html_end_box(false); if (sizeof($graphs)) { print $nav; } form_hidden_box('tab',$tab,''); form_hidden_box('id', get_request_var('id'), ''); form_hidden_box('associate_template', '1', ''); if ($policy['policy_graph_templates'] == 1) { $assoc_actions = array( 1 => __('Revoke Access'), 2 => __('Grant Access') ); } else { $assoc_actions = array( 1 => __('Grant Access'), 2 => __('Revoke Access') ); } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($assoc_actions); form_end(); break; case 'permstr': process_tree_request_vars(); tree_filter($header_label); form_start('user_group_admin.php', 'policy'); /* box: device permissions */ html_start_box( __('Default Tree Policy'), '100%', '', '3', 'center', ''); ?>
    '> '>
    ' . __('Access Granted') . '', $t['id']); } else { form_selectable_cell('' . __('Access Restricted') . '', $t['id']); } } else { if ($policy['policy_trees'] == 1) { form_selectable_cell('' . __('Access Restricted') . '', $t['id']); } else { form_selectable_cell('' . __('Access Granted') . '', $t['id']); } } form_checkbox_cell($t['name'], $t['id']); form_end_row(); } } else { print '' . __('No Matching Trees Found') . ''; } html_end_box(false); if (sizeof($trees)) { print $nav; } form_hidden_box('tab',$tab,''); form_hidden_box('id', get_request_var('id'), ''); form_hidden_box('associate_tree', '1', ''); if ($policy['policy_trees'] == 1) { $assoc_actions = array( 1 => __('Revoke Access'), 2 => __('Grant Access') ); } else { $assoc_actions = array( 1 => __('Grant Access'), 2 => __('Revoke Access') ); } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($assoc_actions); form_end(); break; } } function user_group_is_member($user_id, $group_id) { return db_fetch_cell_prepared('SELECT COUNT(*) FROM user_auth_group_members WHERE user_id = ? AND group_id = ?', array($user_id, $group_id)); } function user_group_realms_edit($header_label) { global $user_auth_realms, $user_auth_roles; /* ================= input validation ================= */ get_filter_request_var('id'); /* ==================================================== */ print "
    " . __('User Permissions') . " $header_label
    \n"; form_start('user_group_admin.php', 'chk'); $all_realms = $user_auth_realms; html_start_box('', '100%', '', '3', 'center', ''); /* do cacti realms first */ $i = 1; foreach($user_auth_roles as $role_name => $perms) { $j = 1; print "" . $role_name . "\n"; print "\n"; foreach($perms as $realm) { if ($j == 1) { print "\n"; } print "\n"; if ($j == 5) { print "\n"; $j = 1; } else { $j++; } } if ($j > 1) { print "\n"; print "\n"; } print "
    \n"; if (isset($user_auth_realms[$realm])) { if (sizeof(db_fetch_assoc_prepared('SELECT realm_id FROM user_auth_group_realm WHERE group_id = ? AND realm_id = ?', array(get_request_var('id', 0), $realm))) > 0) { $old_value = 'on'; } else { $old_value = ''; } unset($all_realms[$realm]); form_checkbox('section' . $realm, $old_value, $user_auth_realms[$realm], '', '', '', (!isempty_request_var('id') ? 1 : 0)); print '
    '; } print "
    \n"; } ?> __('Console'), 'TAB' => __('Top Tab'), 'FRONT' => __('Bottom Console'), 'FRONTTOP' => __('Top Console') ); print "" . __('External Link Permissions') . "\n"; print "\n"; } $realm = $r['id'] + 10000; if (sizeof(db_fetch_assoc_prepared('SELECT realm_id FROM user_auth_group_realm WHERE group_id = ? AND realm_id = ?', array(get_request_var('id', 0), $realm))) > 0) { $old_value = 'on'; } else { $old_value = ''; } unset($all_realms[$realm]); print "\n"; if ($j == 5) { print "\n"; $j = 1; } else { $j++; } } if ($j > 1) { print "\n"; print "\n"; } } print "
    \n"; if (sizeof($links)) { $j = 1; foreach($links as $r) { if ($j == 1) { print "
    \n"; switch($r['style']) { case 'CONSOLE': $description = $style_translate[$r['style']] . ': ' . ($r['extendedstyle'] == '' ? 'External Links' : $r['extendedstyle']) . '/' . $r['title']; break; default: $description = $style_translate[$r['style']] . ': ' . ucfirst($r['title']); break; } form_checkbox('section' . $realm, $old_value, $description, '', '', '', (!isempty_request_var('id') ? 1 : 0)); print '
    '; print "
    \n"; /* do plugin realms */ $realms = db_fetch_assoc('SELECT pc.name, pr.id AS realm_id, pr.display FROM plugin_config AS pc INNER JOIN plugin_realms AS pr ON pc.directory = pr.plugin ORDER BY pc.name, pr.display'); print "" . __('Plugin Permissions') . "\n"; print "\n"; $break = true;; $j = 1; } else { $j++; } } if ($break) { print "
    \n"; if (sizeof($realms)) { $last_plugin = 'none'; $i = 1; $j = 1; foreach($realms as $r) { $break = false; if ($last_plugin != $r['name'] && $last_plugin != 'none') { $break = true; if ($j == 5) { print "
    \n"; } if ($break || $i == 1) { print '' . $r['name'] . "
    \n"; } $realm = $r['realm_id'] + 100; if (sizeof(db_fetch_assoc_prepared('SELECT realm_id FROM user_auth_group_realm WHERE group_id = ? AND realm_id = ?', array(get_request_var('id', 0), $realm))) > 0) { $old_value = 'on'; } else { $old_value = ''; } unset($all_realms[$realm]); $pos = (strpos($user_auth_realms[$realm], '->') !== false ? strpos($user_auth_realms[$realm], '->')+2:0); form_checkbox('section' . $realm, $old_value, substr($user_auth_realms[$realm], $pos), '', '', '', (!isempty_request_var('id') ? 1 : 0)); print '
    '; $last_plugin = $r['name']; $i++; } } /* get the old PIA 1.x realms */ if (sizeof($all_realms)) { if ($break) { print "
    \n"; } print "Legacy 1.x Plugins
    \n"; foreach($all_realms as $realm => $name) { if (sizeof(db_fetch_assoc_prepared('SELECT realm_id FROM user_auth_group_realm WHERE group_id = ? AND realm_id = ?', array(get_request_var('id', 0), $realm))) > 0) { $old_value = 'on'; } else { $old_value = ''; } $pos = (strpos($user_auth_realms[$realm], '->') !== false ? strpos($user_auth_realms[$realm], '->')+2:0); form_checkbox('section' . $realm, $old_value, substr($user_auth_realms[$realm], $pos), '', '', '', (!isempty_request_var('id') ? 1 : 0)); print '
    '; } } print "
    \n"; html_end_box(); form_hidden_box('save_component_realm_perms','1',''); form_hidden_box('tab','realms',''); form_hidden_box('id',get_request_var('id'),''); form_save_button('user_group_admin.php', 'return'); } function user_group_settings_edit($header_label) { global $settings_user, $tabs_graphs, $graph_views; /* ================= input validation ================= */ get_filter_request_var('id'); /* ==================================================== */ form_start('user_group_admin.php', 'chk'); html_start_box( __('User Settings %s', $header_label), '100%', true, '3', 'center', ''); foreach ($settings_user as $tab_short_name => $tab_fields) { $collapsible = true; print "
    " . $tabs_graphs[$tab_short_name] . ($collapsible ? "
    ":"") . "
    \n"; $form_array = array(); foreach ($tab_fields as $field_name => $field_array) { $form_array += array($field_name => $tab_fields[$field_name]); if ((isset($field_array['items'])) && (is_array($field_array['items']))) { foreach ($field_array['items'] as $sub_field_name => $sub_field_array) { if (graph_config_value_exists($sub_field_name, get_request_var('id'))) { $form_array[$field_name]['items'][$sub_field_name]['form_id'] = 1; } $form_array[$field_name]['items'][$sub_field_name]['value'] = db_fetch_cell_prepared('SELECT value FROM settings_user_group WHERE name = ? AND group_id = ?', array($sub_field_name, get_request_var('id'))); } } else { if (graph_config_value_exists($field_name, get_request_var('id'))) { $form_array[$field_name]['form_id'] = 1; } $form_array[$field_name]['value'] = db_fetch_cell_prepared('SELECT value FROM settings_user_group WHERE name = ? AND group_id = ?', array($field_name, get_request_var('id'))); } } draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => $form_array ) ); } html_end_box(true, true); form_hidden_box('save_component_graph_settings','1',''); form_hidden_box('tab','settings',''); form_hidden_box('id',get_request_var('id'),''); form_save_button('user_group_admin.php', 'return'); ?> array('regexp' => '/^([a-zA-Z]+)$/'))); /* ==================================================== */ /* present a tabbed interface */ $tabs = array( 'general' => __('General'), 'members' => __('Members'), 'realms' => __('Permissions'), 'permsg' => __('Graph Perms'), 'permsd' => __('Device Perms'), 'permste' => __('Template Perms'), 'permstr' => __('Tree Perms'), 'settings' => __('User Settings') ); $tabs = api_plugin_hook_function('ugroup_tabs', $tabs); if (!isempty_request_var('id')) { $group = db_fetch_row_prepared('SELECT * FROM user_auth_group WHERE id = ?', array(get_request_var('id'))); $header_label = __('User Group Management [edit: %s]', $group['name']); } else { $header_label = __('User Group Management [new]'); } /* set the default tab */ load_current_session_value('tab', 'sess_ugroup_tab', 'general'); $current_tab = get_nfilter_request_var('tab'); if (sizeof($tabs) && !isempty_request_var('id')) { $i = 0; /* draw the tabs */ print "
    \n"; } switch(get_request_var('tab')) { case 'general': api_plugin_hook_function('user_group_admin_edit', (isset($user) ? get_request_var('id') : 0)); form_start('user_group_admin.php'); html_start_box( $header_label, '100%', true, '3', 'center', ''); draw_edit_form(array( 'config' => array('no_form_tag' => true), 'fields' => inject_form_variables($fields_user_group_edit, (isset($group) ? $group : array())) )); html_end_box(true, true); form_save_button('user_group_admin.php', 'return'); break; case 'settings': user_group_settings_edit($header_label); break; case 'realms': user_group_realms_edit($header_label); break; case 'permsg': case 'permsd': case 'permste': case 'permstr': user_group_graph_perms_edit(get_request_var('tab'), $header_label); break; case 'members': user_group_members_edit($header_label); break; } } function user_group() { global $group_actions, $item_rows; /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'name', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ), 'has_graphs' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ) ); validate_store_request_vars($filters, 'sess_ugad'); /* ================= input validation ================= */ ?>
    '> ' title='' onClick='applyFilter()'> ' title='' onClick='clearFilter()'>
    array(__('Group Name'), 'ASC'), 'members' => array(__('Members'), 'ASC'), 'description' => array(__('Description'), 'ASC'), 'policy_graphs' => array(__('Graph Policy'), 'ASC'), 'policy_hosts' => array(__('Device Policy'), 'ASC'), 'policy_graph_templates' => array(__('Template Policy'), 'ASC'), 'enabled' => array(__('Enabled'), 'ASC') ); html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false); if (sizeof($group_list)) { foreach ($group_list as $group) { if ($group['enabled'] == 'on') { $enabled = __('Yes'); } else { $enabled = __('No'); } form_alternate_row('line' . $group['id'], true); form_selectable_cell(filter_value($group['name'], get_request_var('filter'), 'user_group_admin.php?action=edit&tab=general&id=' . $group['id']), $group['id']); form_selectable_cell(($group['members'] > 0 ? number_format_i18n($group['members'], 0):'None'), $group['id']); form_selectable_cell(filter_value($group['description'], get_request_var('filter')), $group['id']); form_selectable_cell(($group['policy_graphs'] == 1 ? __('ALLOW') : __('DENY') ), $group['id']); form_selectable_cell(($group['policy_hosts'] == 1 ? __('ALLOW') : __('DENY') ), $group['id']); form_selectable_cell(($group['policy_graph_templates'] == 1 ? __('ALLOW') : __('DENY') ), $group['id']); form_selectable_cell($enabled, $group['id']); form_checkbox_cell($group['name'], $group['id']); form_end_row(); } } else { print '' . __('No User Groups Found') . ''; } html_end_box(false); if (sizeof($group_list)) { print $nav; } draw_actions_dropdown($group_actions); form_end(); } function process_graph_request_vars() { /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_config_option('num_rows_table') ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'associated' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ), 'graph_template_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ) ); validate_store_request_vars($filters, 'sess_ugg'); /* ================= input validation ================= */ } function process_device_request_vars() { /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_config_option('num_rows_table') ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'associated' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ), 'host_template_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ) ); validate_store_request_vars($filters, 'sess_ugd'); /* ================= input validation ================= */ } function process_template_request_vars() { /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_config_option('num_rows_table') ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'associated' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ), 'host_template_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ) ); validate_store_request_vars($filters, 'sess_ugte'); /* ================= input validation ================= */ } function process_tree_request_vars() { /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_config_option('num_rows_table') ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'associated' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ) ); validate_store_request_vars($filters, 'sess_ugtr'); /* ================= input validation ================= */ } function process_member_request_vars() { /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_config_option('num_rows_table') ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'associated' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ) ); validate_store_request_vars($filters, 'sess_ugm'); /* ================= input validation ================= */ } function graph_filter($header_label) { global $config, $item_rows; ?>
    ' onChange='applyFilter()'> > ' onClick='applyFilter()' title=''> ' onClick='clearFilter()' title=''>
    '>
    ' onChange='applyFilter()'> > ' onClick='applyFilter()' title=''> ' onClick='clearFilter()' title=''>
    '>
    ' onChange='applyFilter()'> > ' onClick='applyFilter()' title=''> ' onClick='clearFilter()' title=''>
    '>
    ' onChange='applyFilter()'> > ' onClick='applyFilter()' title=''> ' onClick='clearFilter()' title=''>
    '>
    ' onChange='applyFilter()'> > ' onClick='applyFilter()' title=''> ' onClick='clearFilter()' title=''>
    '>
    __('Delete'), 2 => __('Disable'), 3 => __('Enable'), 4 => __('Default') ); /* set default action */ set_default_action(); switch (get_request_var('action')) { case 'save': form_save(); break; case 'actions': form_actions(); break; case 'edit': top_header(); domain_edit(); bottom_footer(); break; default: top_header(); domains(); bottom_footer(); break; } /* -------------------------- The Save Function -------------------------- */ function form_save() { global $registered_cacti_names; if (isset_request_var('save_component_domain_ldap')) { /* ================= input validation ================= */ get_filter_request_var('domain_id'); get_filter_request_var('type'); get_filter_request_var('user_id'); /* ==================================================== */ $save['domain_id'] = get_nfilter_request_var('domain_id'); $save['type'] = get_nfilter_request_var('type'); $save['user_id'] = get_nfilter_request_var('user_id'); $save['domain_name'] = form_input_validate(get_nfilter_request_var('domain_name'), 'domain_name', '', false, 3); $save['enabled'] = (isset_request_var('enabled') ? form_input_validate(get_nfilter_request_var('enabled'), 'enabled', '', true, 3):''); if (!is_error_message()) { $domain_id = sql_save($save, 'user_domains', 'domain_id'); if ($domain_id) { raise_message(1); } else { raise_message(2); } if (!is_error_message()) { /* ================= input validation ================= */ get_filter_request_var('domain_id'); get_filter_request_var('port'); get_filter_request_var('port_ssl'); get_filter_request_var('proto_version'); get_filter_request_var('encryption'); get_filter_request_var('referrals'); get_filter_request_var('mode'); get_filter_request_var('group_member_type'); /* ==================================================== */ $save = array(); $save['domain_id'] = $domain_id; $save['server'] = form_input_validate(get_nfilter_request_var('server'), 'server', '', false, 3); $save['port'] = get_nfilter_request_var('port'); $save['port_ssl'] = get_nfilter_request_var('port_ssl'); $save['proto_version'] = get_nfilter_request_var('proto_version'); $save['encryption'] = get_nfilter_request_var('encryption'); $save['referrals'] = get_nfilter_request_var('referrals'); $save['mode'] = get_nfilter_request_var('mode'); $save['group_member_type'] = get_nfilter_request_var('group_member_type'); $save['dn'] = form_input_validate(get_nfilter_request_var('dn'), 'dn', '', true, 3); $save['group_require'] = isset_request_var('group_require') ? 'on':''; $save['group_dn'] = form_input_validate(get_nfilter_request_var('group_dn'), 'group_dn', '', true, 3); $save['group_attrib'] = form_input_validate(get_nfilter_request_var('group_attrib'), 'group_attrib', '', true, 3); $save['search_base'] = form_input_validate(get_nfilter_request_var('search_base'), 'search_base', '', true, 3); $save['search_filter'] = form_input_validate(get_nfilter_request_var('search_filter'), 'search_filter', '', true, 3); $save['specific_dn'] = form_input_validate(get_nfilter_request_var('specific_dn'), 'specific_dn', '', true, 3); $save['specific_password'] = form_input_validate(get_nfilter_request_var('specific_password'), 'specific_password', '', true, 3); if (!is_error_message()) { $insert_id = sql_save($save, 'user_domains_ldap', 'domain_id', false); if ($insert_id) { raise_message(1); } else { raise_message(2); } } } } } elseif (isset_request_var('save_component_domain')) { /* ================= input validation ================= */ get_filter_request_var('domain_id'); get_filter_request_var('type'); get_filter_request_var('user_id'); /* ==================================================== */ $save['domain_id'] = get_nfilter_request_var('domain_id'); $save['domain_name'] = form_input_validate(get_nfilter_request_var('domain_name'), 'domain_name', '', false, 3); $save['type'] = get_nfilter_request_var('type'); $save['user_id'] = get_nfilter_request_var('user_id'); $save['enabled'] = (isset_request_var('enabled') ? form_input_validate(get_nfilter_request_var('enabled'), 'enabled', '', true, 3):''); if (!is_error_message()) { $domain_id = sql_save($save, 'user_domains', 'domain_id'); if ($domain_id) { raise_message(1); } else { raise_message(2); } } } header('Location: user_domains.php?header=false&action=edit&domain_id=' . (empty($domain_id) ? get_nfilter_request_var('domain_id') : $domain_id)); } function form_actions() { global $actions; /* if we are to save this form, instead of display it */ if (isset_request_var('selected_items')) { $selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items')); if ($selected_items != false) { if (get_nfilter_request_var('drp_action') == '1') { // delete for ($i=0;($i 1) { /* error message */ } else { for ($i=0;($i $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ $d_list .= '
  • ' . db_fetch_cell_prepared('SELECT domain_name FROM user_domains WHERE domain_id = ?', array($matches[1])) . '
  • '; $d_array[] = $matches[1]; } } top_header(); form_start('user_domains.php'); html_start_box($actions[get_nfilter_request_var('drp_action')], '60%', '', '3', 'center', ''); if (isset($d_array) && sizeof($d_array)) { if (get_nfilter_request_var('drp_action') == '1') { // delete print "

    " . __n('Click \'Continue\' to delete the following User Domain.', 'Click \'Continue\' to delete following User Domains.', sizeof($d_array)) . "

      $d_list
    \n"; $save_html = " "; }else if (get_nfilter_request_var('drp_action') == '2') { // disable print "

    " . __n('Click \'Continue\' to disable the following User Domain.', 'Click \'Continue\' to disable following User Domains.', sizeof($d_array)) . "

      $d_list
    \n"; $save_html = " "; }else if (get_nfilter_request_var('drp_action') == '3') { // enable print "

    " . __('Click \'Continue\' to enable the following User Domain.', 'Click \'Continue\' to enable following User Domains.', sizeof($d_array)) . "

      $d_list
    \n"; $save_html = " "; }else if (get_nfilter_request_var('drp_action') == '4') { // default print "

    " . __('Click \'Continue\' to make the following the following User Domain the default one.') . "

      $d_list
    \n"; $save_html = " "; } } else { print "" . __('You must select at least one User Domain.') . "\n"; $save_html = ""; } print " $save_html \n"; html_end_box(); form_end(); bottom_footer(); } /* ----------------------- Domain Functions ----------------------- */ function domain_remove($domain_id) { db_execute_prepared('DELETE FROM user_domains WHERE domain_id = ?', array($domain_id)); db_execute_prepared('DELETE FROM user_domains_ldap WHERE domain_id = ?', array($domain_id)); } function domain_disable($domain_id) { db_execute_prepared('UPDATE user_domains SET enabled = "" WHERE domain_id = ?', array($domain_id)); } function domain_enable($domain_id) { db_execute_prepared('UPDATE user_domains SET enabled = "on" WHERE domain_id = ?', array($domain_id)); } function domain_default($domain_id) { db_execute('UPDATE user_domains SET defdomain = 0'); db_execute_prepared('UPDATE user_domains SET defdomain = 1 WHERE domain_id = ?', array($domain_id)); } function domain_edit() { global $ldap_versions, $ldap_encryption, $ldap_modes, $domain_types; /* ================= input validation ================= */ get_filter_request_var('domain_id'); /* ==================================================== */ if (!isempty_request_var('domain_id')) { $domain = db_fetch_row_prepared('SELECT * FROM user_domains WHERE domain_id = ?', array(get_request_var('domain_id'))); $header_label = __('User Domain [edit: %s]', $domain['domain_name']); } else { $header_label = __('User Domain [new]'); } /* file: data_input.php, action: edit */ $fields_domain_edit = array( 'domain_name' => array( 'method' => 'textbox', 'friendly_name' => __('Name'), 'description' => __('Enter a meaningful name for this domain. This will be the name that appears in the Login Realm during login.'), 'value' => '|arg1:domain_name|', 'max_length' => '255', ), 'type' => array( 'method' => 'drop_array', 'friendly_name' => __('Domains Type'), 'description' => __('Choose what type of domain this is.'), 'value' => '|arg1:type|', 'array' => $domain_types, 'default' => '2' ), 'user_id' => array( 'friendly_name' => __('User Template'), 'description' => __('The name of the user that Cacti will use as a template for new user accounts.'), 'method' => 'drop_sql', 'value' => '|arg1:user_id|', 'none_value' => __('No User'), 'sql' => 'SELECT id AS id, username AS name FROM user_auth WHERE realm=0 ORDER BY username', 'default' => '0' ), 'enabled' => array( 'method' => 'checkbox', 'friendly_name' => __('Enabled'), 'description' => __('If this checkbox is checked, users will be able to login using this domain.'), 'value' => '|arg1:enabled|', 'default' => '', ), 'domain_id' => array( 'method' => 'hidden_zero', 'value' => '|arg1:domain_id|' ), 'save_component_domain' => array( 'method' => 'hidden', 'value' => '1' ) ); $fields_domain_ldap_edit = array( 'server' => array( 'friendly_name' => __('Server'), 'description' => __('The dns hostname or ip address of the server.'), 'method' => 'textbox', 'value' => '|arg1:server|', 'default' => read_config_option('ldap_server'), 'max_length' => '255' ), 'port' => array( 'friendly_name' => __('Port Standard'), 'description' => __('TCP/UDP port for Non SSL communications.'), 'method' => 'textbox', 'max_length' => '5', 'value' => '|arg1:port|', 'default' => read_config_option('ldap_port'), 'size' => '5' ), 'port_ssl' => array( 'friendly_name' => __('Port SSL'), 'description' => __('TCP/UDP port for SSL communications.'), 'method' => 'textbox', 'max_length' => '5', 'value' => '|arg1:port_ssl|', 'default' => read_config_option('ldap_port_ssl'), 'size' => '5' ), 'proto_version' => array( 'friendly_name' => __('Protocol Version'), 'description' => __('Protocol Version that the server supports.'), 'method' => 'drop_array', 'value' => '|arg1:proto_version|', 'array' => $ldap_versions ), 'encryption' => array( 'friendly_name' => __('Encryption'), 'description' => __('Encryption that the server supports. TLS is only supported by Protocol Version 3.'), 'method' => 'drop_array', 'value' => '|arg1:encryption|', 'array' => $ldap_encryption ), 'referrals' => array( 'friendly_name' => __('Referrals'), 'description' => __('Enable or Disable LDAP referrals. If disabled, it may increase the speed of searches.'), 'method' => 'drop_array', 'value' => '|arg1:referrals|', 'array' => array( '0' => __('Disabled'), '1' => __('Enable')) ), 'mode' => array( 'friendly_name' => __('Mode'), 'description' => __('Mode which cacti will attempt to authenticate against the LDAP server.
    No Searching - No Distinguished Name (DN) searching occurs, just attempt to bind with the provided Distinguished Name (DN) format.

    Anonymous Searching - Attempts to search for username against LDAP directory via anonymous binding to locate the users Distinguished Name (DN).

    Specific Searching - Attempts search for username against LDAP directory via Specific Distinguished Name (DN) and Specific Password for binding to locate the users Distinguished Name (DN).'), 'method' => 'drop_array', 'value' => '|arg1:mode|', 'array' => $ldap_modes ), 'dn' => array( 'friendly_name' => __('Distinguished Name (DN)'), 'description' => __('Distinguished Name syntax, such as for windows: "<username>@win2kdomain.local" or for OpenLDAP: "uid=<username>,ou=people,dc=domain,dc=local". "<username>" is replaced with the username that was supplied at the login prompt. This is only used when in "No Searching" mode.'), 'method' => 'textbox', 'value' => '|arg1:dn|', 'max_length' => '255' ), 'group_require' => array( 'friendly_name' => __('Require Group Membership'), 'description' => __('Require user to be member of group to authenticate. Group settings must be set for this to work, enabling without proper group settings will cause authentication failure.'), 'value' => '|arg1:group_require|', 'method' => 'checkbox' ), 'group_header' => array( 'friendly_name' => __('LDAP Group Settings'), 'method' => 'spacer' ), 'group_dn' => array( 'friendly_name' => __('Group Distinguished Name (DN)'), 'description' => __('Distinguished Name of the group that user must have membership.'), 'method' => 'textbox', 'value' => '|arg1:group_dn|', 'max_length' => '255' ), 'group_attrib' => array( 'friendly_name' => __('Group Member Attribute'), 'description' => __('Name of the attribute that contains the usernames of the members.'), 'method' => 'textbox', 'value' => '|arg1:group_attrib|', 'max_length' => '255' ), 'group_member_type' => array( 'friendly_name' => __('Group Member Type'), 'description' => __('Defines if users use full Distinguished Name or just Username in the defined Group Member Attribute.'), 'method' => 'drop_array', 'value' => '|arg1:group_member_type|', 'array' => array( 1 => 'Distinguished Name', 2 => 'Username' ) ), 'search_base_header' => array( 'friendly_name' => __('LDAP Specific Search Settings'), 'method' => 'spacer' ), 'search_base' => array( 'friendly_name' => __('Search Base'), 'description' => __('Search base for searching the LDAP directory, such as "dc=win2kdomain,dc=local" or "ou=people,dc=domain,dc=local".'), 'method' => 'textbox', 'value' => '|arg1:search_base|', 'max_length' => '255' ), 'search_filter' => array( 'friendly_name' => __('Search Filter'), 'description' => __('Search filter to use to locate the user in the LDAP directory, such as for windows: "(&(objectclass=user)(objectcategory=user)(userPrincipalName=<username>*))" or for OpenLDAP: "(&(objectClass=account)(uid=<username>))". "<username>" is replaced with the username that was supplied at the login prompt.'), 'method' => 'textbox', 'value' => '|arg1:search_filter|', 'max_length' => '255' ), 'specific_dn' => array( 'friendly_name' => __('Search Distinguished Name (DN)'), 'description' => __('Distinguished Name for Specific Searching binding to the LDAP directory.'), 'method' => 'textbox', 'value' => '|arg1:specific_dn|', 'max_length' => '255' ), 'specific_password' => array( 'friendly_name' => __('Search Password'), 'description' => __('Password for Specific Searching binding to the LDAP directory.'), 'method' => 'textbox_password', 'value' => '|arg1:specific_password|', 'max_length' => '255' ), 'save_component_domain_ldap' => array( 'method' => 'hidden', 'value' => '1' ) ); form_start('user_domains.php'); html_start_box($header_label, '100%', true, '3', 'center', ''); draw_edit_form(array( 'config' => array(), 'fields' => inject_form_variables($fields_domain_edit, (isset($domain) ? $domain : array())) )); html_end_box(true, true); if (!isempty_request_var('domain_id')) { $domain = db_fetch_row_prepared('SELECT * FROM user_domains_ldap WHERE domain_id = ?', array(get_request_var('domain_id'))); html_start_box( __('Domain Properties'), '100%', true, '3', 'center', ''); draw_edit_form(array( 'config' => array(), 'fields' => inject_form_variables($fields_domain_ldap_edit, (isset($domain) ? $domain : array())) )); html_end_box(true, true); } ?> array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'domain_name', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ) ); validate_store_request_vars($filters, 'sess_domains'); /* ================= input validation ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } html_start_box( __('User Domains'), '100%', '', '3', 'center', 'user_domains.php?action=edit'); ?>
    '> ' title=''> ' title=''>
    array( __('Domain Name'), 'ASC'), 'type' => array( __('Domain Type'), 'ASC'), 'defdomain' => array( __('Default'), 'ASC'), 'user_id' => array( __('Effective User'), 'ASC'), 'enabled' => array( __('Enabled'), 'ASC')); html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false); $i = 0; if (sizeof($domains)) { foreach ($domains as $domain) { /* hide system types */ form_alternate_row('line' . $domain['domain_id'], true); form_selectable_cell(filter_value($domain['domain_name'], get_request_var('filter'), 'user_domains.php?action=edit&domain_id=' . $domain['domain_id']), $domain['domain_id']); form_selectable_cell($domain_types[$domain['type']], $domain['domain_id']); form_selectable_cell( ($domain['defdomain'] == '0' ? '--': __('Yes') ), $domain['domain_id']); form_selectable_cell( ($domain['user_id'] == '0' ? __('None Selected') : db_fetch_cell_prepared('SELECT username FROM user_auth WHERE id = ?', array($domain['user_id']))), $domain['domain_id']); form_selectable_cell( ($domain['enabled'] == 'on' ? __('Yes'):__('No') ), $domain['domain_id']); form_checkbox_cell($domain['domain_name'], $domain['domain_id']); form_end_row(); } } else { print '' . __('No User Domains Found') . ''; } html_end_box(false); if (sizeof($domains)) { print $nav; } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($actions); form_end(); } cacti-1.1.38/user_admin.php0000664000175000017500000030472213264740213015124 0ustar tromantroman __('Delete'), 2 => __('Copy'), 3 => __('Enable'), 4 => __('Disable'), 5 => __('Batch Copy') ); set_default_action(); if (isset_request_var('update_policy')) { update_policies(); } else { switch (get_request_var('action')) { case 'actions': form_actions(); break; case 'save': form_save(); break; case 'perm_remove': perm_remove(); break; case 'user_edit': top_header(); user_edit(); bottom_footer(); break; case 'checkpass': $error = secpass_check_pass(get_nfilter_request_var('password')); if ($error == '') { print $error; } else { print 'ok'; } break; default: if (!api_plugin_hook_function('user_admin_action', get_request_var('action'))) { top_header(); user(); bottom_footer(); } break; } } /* -------------------------- Actions Function -------------------------- */ function update_policies() { $set = ''; $set .= isset_request_var('policy_graphs') ? 'policy_graphs=' . get_nfilter_request_var('policy_graphs'):''; $set .= isset_request_var('policy_trees') ? ($set != '' ? ',':'') . 'policy_trees=' . get_nfilter_request_var('policy_trees'):''; $set .= isset_request_var('policy_hosts') ? ($set != '' ? ',':'') . 'policy_hosts=' . get_nfilter_request_var('policy_hosts'):''; $set .= isset_request_var('policy_graph_templates') ? ($set != '' ? ',':'') . 'policy_graph_templates=' . get_nfilter_request_var('policy_graph_templates'):''; if ($set != '') { db_execute_prepared("UPDATE user_auth SET $set WHERE id = ?", array(get_nfilter_request_var('id'))); } header('Location: user_admin.php?action=user_edit&header=false&tab=' . get_nfilter_request_var('tab') . '&id=' . get_nfilter_request_var('id')); exit; } function form_actions() { global $user_actions, $auth_realms; /* if we are to save this form, instead of display it */ if (isset_request_var('associate_host')) { foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') == '1') { db_execute_prepared('REPLACE INTO user_auth_perms (user_id, item_id, type) VALUES (?, ?, 3)', array(get_nfilter_request_var('id'), $matches[1])); } else { db_execute_prepared('DELETE FROM user_auth_perms WHERE user_id = ? AND item_id = ? AND type = 3', array(get_nfilter_request_var('id'), $matches[1])); } } } header('Location: user_admin.php?action=user_edit&header=false&tab=permsd&id=' . get_nfilter_request_var('id')); exit; } elseif (isset_request_var('associate_graph')) { foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') == '1') { db_execute_prepared('REPLACE INTO user_auth_perms (user_id, item_id, type) VALUES (?, ?, 1)', array(get_nfilter_request_var('id'), $matches[1])); } else { db_execute_prepared('DELETE FROM user_auth_perms WHERE user_id = ? AND item_id = ? AND type = 1', array(get_nfilter_request_var('id'), $matches[1])); } } } header('Location: user_admin.php?action=user_edit&header=false&tab=permsg&id=' . get_nfilter_request_var('id')); exit; } elseif (isset_request_var('associate_template')) { foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') == '1') { db_execute_prepared('REPLACE INTO user_auth_perms (user_id, item_id, type) VALUES (?, ?, 4)', array(get_nfilter_request_var('id'), $matches[1])); } else { db_execute_prepared('DELETE FROM user_auth_perms WHERE user_id = ? AND item_id = ? AND type = 4', array(get_nfilter_request_var('id'), $matches[1])); } } } header('Location: user_admin.php?action=user_edit&header=false&tab=permste&id=' . get_nfilter_request_var('id')); exit; } elseif (isset_request_var('associate_groups')) { foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') == '1') { db_execute_prepared('REPLACE INTO user_auth_group_members (user_id, group_id) VALUES (?, ?)', array(get_nfilter_request_var('id'), $matches[1])); } else { db_execute_prepared('DELETE FROM user_auth_group_members WHERE user_id = ? AND group_id = ?', array(get_nfilter_request_var('id'), $matches[1])); } } } header('Location: user_admin.php?action=user_edit&header=false&tab=permsgr&id=' . get_nfilter_request_var('id')); exit; } elseif (isset_request_var('associate_tree')) { foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') == '1') { db_execute_prepared('REPLACE INTO user_auth_perms (user_id, item_id, type) VALUES (?, ?, 2)', array(get_nfilter_request_var('id'), $matches[1])); } else { db_execute_prepared('DELETE FROM user_auth_perms WHERE user_id = ? AND item_id = ? AND type = 2', array(get_nfilter_request_var('id'), $matches[1])); } } } header('Location: user_admin.php?action=user_edit&header=false&tab=permstr&id=' . get_nfilter_request_var('id')); exit; } elseif (isset_request_var('selected_items')) { if (get_nfilter_request_var('drp_action') == '2') { /* copy */ /* ================= input validation ================= */ get_filter_request_var('selected_items'); get_filter_request_var('new_realm'); /* ==================================================== */ $new_username = get_nfilter_request_var('new_username'); $new_realm = get_nfilter_request_var('new_realm', 0); $template_user = db_fetch_row_prepared('SELECT username, realm FROM user_auth WHERE id = ?', array(get_nfilter_request_var('selected_items'))); $overwrite = array( 'full_name' => get_nfilter_request_var('new_fullname') ); if ($new_username != '') { if (sizeof(db_fetch_assoc_prepared('SELECT username FROM user_auth WHERE username = ? AND realm = ?', array($new_username, $new_realm)))) { raise_message(19); } else { if (user_copy($template_user['username'], $new_username, $template_user['realm'], $new_realm, false, $overwrite) === false) { raise_message(2); } else { raise_message(1); } } } } else { $selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items')); if ($selected_items != false) { if (get_nfilter_request_var('drp_action') == '1') { // delete for ($i=0;($i $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ if (get_nfilter_request_var('drp_action') != '2') { $user_list .= '
  • ' . htmlspecialchars(db_fetch_cell_prepared('SELECT username FROM user_auth WHERE id = ?', array($matches[1]))) . '
  • '; } $user_array[$i] = $matches[1]; $i++; } } top_header(); form_start('user_admin.php'); html_start_box($user_actions[get_nfilter_request_var('drp_action')], '40%', '', '3', 'center', ''); if (isset($user_array) && sizeof($user_array)) { if ((get_nfilter_request_var('drp_action') == '1') && (sizeof($user_array))) { // delete print "

    " . __('Click \'Continue\' to delete the selected User(s).') . "

      $user_list
    \n"; $save_html = ""; } $user_id = ''; if ((get_nfilter_request_var('drp_action') == '2') && (sizeof($user_array))) { // copy $user_id = $user_array[0]; $user_realm = db_fetch_cell_prepared('SELECT realm FROM user_auth WHERE id = ?', array($user_id)); print "

    " . __('Click \'Continue\' to copy the selected User to a new User below.') . "

    " . __('Template Username:') . " " . htmlspecialchars(db_fetch_cell_prepared('SELECT username FROM user_auth WHERE id = ?', array($user_id))) . "

    " . __('Username:') . " "; print form_text_box('new_username', '', '', 25); print "

    " . __('Full Name:') . " "; print form_text_box('new_fullname', '', '', 35); print "

    " . __('Realm:') ." "; print form_dropdown('new_realm', $auth_realms, '', '', $user_realm, '', 0); print "

    \n"; $save_html = " "; } if ((get_nfilter_request_var('drp_action') == '3') && (sizeof($user_array))) { // enable print "

    " . __('Click \'Continue\' to enable the selected User(s).'). "

      $user_list
    \n"; $save_html = " "; } if ((get_nfilter_request_var('drp_action') == '4') && (sizeof($user_array))) { // disable print "

    " . __('Click \'Continue\' to disable the selected User(s).') . "

      $user_list
    \n"; $save_html = " "; } if ((get_nfilter_request_var('drp_action') == '5') && (sizeof($user_array))) { // batch copy $usernames = db_fetch_assoc('SELECT id, username FROM user_auth WHERE realm = 0 ORDER BY username'); print "

    " . __('Click \'Continue\' to overwrite the User(s) settings with the selected template User settings and permissions. The original users Full Name, Password, Realm and Enable status will be retained, all other fields will be overwritten from Template User.') . "

    " . __('Template User:') . " "; print form_dropdown('template_user', $usernames, 'username', 'id', '', '', 0); print "

    " . __('User(s) to update:') . "

      $user_list

    \n"; $save_html = " "; } } else { print "" . __('You must select at least one user.') . "\n"; $save_html = ""; } print " "; if (get_nfilter_request_var('drp_action') == '2') { // copy print "\n"; } else { print "\n"; } print " $save_html \n"; html_end_box(); form_end(); bottom_footer(); } /* -------------------------- Save Function -------------------------- */ function form_save() { global $settings_user; /* graph permissions */ if ((isset_request_var('save_component_graph_perms')) && (!is_error_message())) { /* ================= input validation ================= */ get_filter_request_var('id'); get_filter_request_var('perm_graphs'); get_filter_request_var('perm_trees'); get_filter_request_var('perm_hosts'); get_filter_request_var('perm_graph_templates'); get_filter_request_var('policy_graphs'); get_filter_request_var('policy_trees'); get_filter_request_var('policy_hosts'); get_filter_request_var('policy_graph_templates'); /* ==================================================== */ $add_button_clicked = false; if (isset_request_var('add_graph_x')) { db_execute_prepared('REPLACE INTO user_auth_perms (user_id,item_id,type) VALUES (?, ?, 1)', array(get_nfilter_request_var('id'), get_nfilter_request_var('perm_graphs'))); $add_button_clicked = true; } elseif (isset_request_var('add_tree_x')) { db_execute_prepared('REPLACE INTO user_auth_perms (user_id,item_id,type) VALUES (?, ?, 2)', array(get_nfilter_request_var('id'), get_nfilter_request_var('perm_trees'))); $add_button_clicked = true; } elseif (isset_request_var('add_host_x')) { db_execute_prepared('REPLACE INTO user_auth_perms (user_id,item_id,type) VALUES (?, ?, 3)', array(get_nfilter_request_var('id'), get_nfilter_request_var('perm_hosts'))); $add_button_clicked = true; } elseif (isset_request_var('add_graph_template_x')) { db_execute_prepared('REPLACE INTO user_auth_perms (user_id,item_id,type) VALUES (?, ?, 4)', array(get_nfilter_request_var('id'), get_nfilter_request_var('perm_graph_templates'))); $add_button_clicked = true; } if ($add_button_clicked == true) { header('Location: user_admin.php?action=user_edit&header=false&tab=graph_perms_edit&id=' . get_nfilter_request_var('id')); exit; } } elseif (isset_request_var('save_component_user')) { /* user management save */ /* ================= input validation ================= */ get_filter_request_var('id'); get_filter_request_var('realm'); get_filter_request_var('policy_hosts'); get_filter_request_var('policy_graphs'); get_filter_request_var('policy_trees'); get_filter_request_var('policy_graph_templates'); /* ==================================================== */ if ((get_nfilter_request_var('password') == '') && (get_nfilter_request_var('password_confirm') == '')) { $password = db_fetch_cell_prepared('SELECT password FROM user_auth WHERE id = ?', array(get_nfilter_request_var('id'))); } else { $password = compat_password_hash(get_nfilter_request_var('password'), PASSWORD_DEFAULT); } /* check duplicate username */ if (sizeof(db_fetch_row_prepared('SELECT * FROM user_auth WHERE realm = ? AND username = ? AND id != ?', array(get_nfilter_request_var('realm'), get_nfilter_request_var('username'), get_nfilter_request_var('id'))))) { raise_message(12); } /* check for guest or template user */ $username = db_fetch_cell_prepared('SELECT username FROM user_auth WHERE id = ?', array(get_nfilter_request_var('id'))); $history = db_fetch_cell_prepared('SELECT password_history FROM user_auth WHERE id = ?', array(get_nfilter_request_var('id'))); if ($username != '' && $username != get_nfilter_request_var('username')) { $template_user = read_config_option('user_template'); $guest_user = read_config_option('guest_user'); if ($username == $template_user) { raise_message(20); } if ($username == $guest_user) { raise_message(20); } } /* check to make sure the passwords match; if not error */ if (get_nfilter_request_var('password') != get_nfilter_request_var('password_confirm')) { raise_message(4); } if (get_nfilter_request_var('must_change_password') == 'on' && get_nfilter_request_var('password_change') != 'on') { raise_message('password_change'); } $save['id'] = get_nfilter_request_var('id'); $save['username'] = form_input_validate(get_nfilter_request_var('username'), 'username', "^[A-Za-z0-9\._\\\@\ -]+$", false, 3); $save['full_name'] = form_input_validate(get_nfilter_request_var('full_name'), 'full_name', '', true, 3); $save['password'] = $password; $save['must_change_password'] = form_input_validate(get_nfilter_request_var('must_change_password', ''), 'must_change_password', '', true, 3); $save['password_change'] = form_input_validate(get_nfilter_request_var('password_change', ''), 'password_change', '', true, 3); $save['show_tree'] = form_input_validate(get_nfilter_request_var('show_tree', ''), 'show_tree', '', true, 3); $save['show_list'] = form_input_validate(get_nfilter_request_var('show_list', ''), 'show_list', '', true, 3); $save['show_preview'] = form_input_validate(get_nfilter_request_var('show_preview', ''), 'show_preview', '', true, 3); $save['graph_settings'] = form_input_validate(get_nfilter_request_var('graph_settings', ''), 'graph_settings', '', true, 3); $save['login_opts'] = form_input_validate(get_nfilter_request_var('login_opts'), 'login_opts', '', true, 3); $save['realm'] = get_nfilter_request_var('realm', 0); $save['password_history'] = $history; $save['enabled'] = form_input_validate(get_nfilter_request_var('enabled', ''), 'enabled', '', true, 3); $save['email_address'] = form_input_validate(get_nfilter_request_var('email_address', ''), 'email_address', '', true, 3); $save['locked'] = form_input_validate(get_nfilter_request_var('locked', ''), 'locked', '', true, 3); $save['reset_perms'] = mt_rand(); if ($save['locked'] == '') { $save['failed_attempts'] = 0; } $save = api_plugin_hook_function('user_admin_setup_sql_save', $save); if (!is_error_message()) { $user_id = sql_save($save, 'user_auth'); if ($user_id) { raise_message(1); } else { raise_message(2); } } } elseif (isset_request_var('save_component_realm_perms')) { db_execute_prepared('DELETE FROM user_auth_realm WHERE user_id = ?', array(get_nfilter_request_var('id'))); foreach ($_POST as $var => $val) { if (preg_match('/^[section]/i', $var)) { if (substr($var, 0, 7) == 'section') { db_execute_prepared('REPLACE INTO user_auth_realm (user_id, realm_id) VALUES (?, ?)', array(get_nfilter_request_var('id'), substr($var, 7))); } } } reset_user_perms(get_nfilter_request_var('id')); raise_message(1); } elseif (isset_request_var('save_component_graph_settings')) { foreach ($settings_user as $tab_short_name => $tab_fields) { foreach ($tab_fields as $field_name => $field_array) { if ((isset($field_array['items'])) && (is_array($field_array['items']))) { foreach ($field_array['items'] as $sub_field_name => $sub_field_array) { db_execute_prepared('REPLACE INTO settings_user (user_id, name, value) VALUES (?, ?, ?)', array((!empty($user_id) ? $user_id : get_filter_request_var('id')), $sub_field_name, get_nfilter_request_var($sub_field_name, ''))); } } else { db_execute_prepared('REPLACE INTO settings_user (user_id, name, value) VALUES (?, ?, ?)', array((!empty($user_id) ? $user_id : get_filter_request_var('id')), $field_name, get_nfilter_request_var($field_name))); } } } /* reset local settings cache so the user sees the new settings */ kill_session_var('sess_user_config_array'); reset_user_perms(get_request_var('id')); raise_message(1); } elseif (isset_request_var('save_component_graph_perms')) { db_execute_prepared('UPDATE user_auth SET policy_graphs = ?, policy_trees = ?, policy_hosts = ?, policy_graph_templates = ? WHERE id = ?', array(get_nfilter_request_var('policy_graphs'), get_nfilter_request_var('policy_trees'), get_nfilter_request_var('policy_hosts'), get_nfilter_request_var('policy_graph_templates'), get_nfilter_request_var('id'))); } else { api_plugin_hook('user_admin_user_save'); reset_user_perms(get_filter_request_var('id')); } /* redirect to the appropriate page */ header('Location: user_admin.php?action=user_edit&header=false&id=' . (empty($user_id) ? get_filter_request_var('id') : $user_id)); } /* -------------------------- Graph Permissions -------------------------- */ function perm_remove() { /* ================= input validation ================= */ get_filter_request_var('id'); get_filter_request_var('user_id'); /* ==================================================== */ if (get_request_var('type') == 'graph') { db_execute_prepared('DELETE FROM user_auth_perms WHERE type = 1 AND user_id = ? AND item_id = ?', array(get_request_var('user_id'), get_request_var('id'))); } elseif (get_request_var('type') == 'tree') { db_execute_prepared('DELETE FROM user_auth_perms WHERE type = 2 AND user_id = ? AND item_id = ?', array(get_request_var('user_id'), get_request_var('id'))); } elseif (get_request_var('type') == 'host') { db_execute_prepared('DELETE FROM user_auth_perms WHERE type = 3 AND user_id = ? AND item_id = ?', array(get_request_var('user_id'), get_request_var('id'))); } elseif (get_request_var('type') == 'graph_template') { db_execute_prepared('DELETE FROM user_auth_perms WHERE type = 4 AND user_id = ? AND item_id = ?', array(get_request_var('user_id'), get_request_var('id'))); } header('Location: user_admin.php?action=user_edit&header=false&tab=graph_perms_edit&id=' . get_request_var('user_id')); } function get_permission_string(&$graph, &$policies) { $grantStr = ''; $rejectStr = ''; if (read_config_option('graph_auth_method') == 1) { $method = 'loose'; } else { $method = 'strong'; } $i = 1; foreach($policies as $p) { $allowed = 0; $rejected = 0; if ($p['policy_graphs'] == 1) { if ($graph["user$i"] == '') { $grantStr = $grantStr . ($grantStr != '' ? ', ':'') . 'Graph:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } else { $rejectStr = $rejectStr . ($rejectStr != '' ? ', ':'') . 'Graph:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } } elseif ($graph["user$i"] != '') { $grantStr = $grantStr . ($grantStr != '' ? ', ':'') . 'Graph:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } elseif ($method == 'loose') { $rejected++; } else { $rejectStr = $rejectStr . ($rejectStr != '' ? ', ':'') . 'Graph:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } $i++; if ($p['policy_hosts'] == 1) { if ($graph["user$i"] == '') { if ($method == 'loose') { $grantStr = $grantStr . ($grantStr != '' ? ', ':'') . 'Device:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } else { $allowed++; } } else { $rejectStr = $rejectStr . ($rejectStr != '' ? ', ':'') . 'Device:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } } elseif ($graph["user$i"] != '') { if ($method == 'loose') { $grantStr = $grantStr . ($grantStr != '' ? ', ':'') . 'Device:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } else { $allowed++; } } elseif ($method == 'loose') { $rejected++; } $i++; if ($p['policy_graph_templates'] == 1) { if ($graph["user$i"] == '') { if ($method == 'loose') { $grantStr = $grantStr . ($grantStr != '' ? ', ':'') . 'Template:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } else { $allowed++; } } else { $rejectStr = $rejectStr . ($rejectStr != '' ? ', ':'') . 'Template:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } } elseif ($graph["user$i"] != '') { if ($method == 'loose') { $grantStr = $grantStr . ($grantStr != '' ? ', ':'') . 'Template:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } else { $allowed++; } } elseif ($method == 'loose') { $rejected++; } $i++; if ($method != 'loose') { if ($allowed == 2) { $grantStr = $grantStr . ($grantStr != '' ? ', ':'') . 'Device+Template:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } else { $rejectStr = $rejectStr . ($rejectStr != '' ? ', ':'') . 'Device+Template:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } } elseif ($rejected == 3) { $rejectStr = $rejectStr . ($rejectStr != '' ? ', ':'') . 'Graph+Device+Template:(' . ucfirst($p['type']) . ($p['type'] != 'user' ? '/' . $p['name'] . ')':')'); } } $permStr = ''; if ($grantStr != '') { $permStr = "Granted: " . trim($grantStr,',') . ''; } if ($rejectStr != '') { if ($grantStr == '') { $permStr = "Restricted: " . trim($rejectStr,',') . ''; } else { $permStr .= ", " . trim($rejectStr,',') . ''; } } return $permStr; } function graph_perms_edit($tab, $header_label) { /* ================= input validation ================= */ get_filter_request_var('id'); /* ==================================================== */ $sql_where = ''; $sql_join = ''; $limit = ''; $sql_having = ''; $policy_array = array( 1 => __('Allow'), 2 => __('Deny') ); if (!isempty_request_var('id')) { $policy = db_fetch_row_prepared('SELECT policy_graphs, policy_trees, policy_hosts, policy_graph_templates FROM user_auth WHERE id = ?', array(get_request_var('id'))); } else { $policy = array( 'policy_graphs' => '1', 'policy_trees' => '1', 'policy_hosts' => '1', 'policy_graph_templates' => '1' ); } switch($tab) { case 'permsg': process_graph_request_vars(); graph_filter($header_label); form_start('user_admin.php', 'policy'); if (read_config_option('graph_auth_method') == 1) { $policy_note = __('Note: System Graph Policy is \'Permissive\' meaning the User must have access to at least one of Graph, Device, or Graph Template to gain access to the Graph'); } else { $policy_note = __('Note: System Graph Policy is \'Restrictive\' meaning the User must have access to the Graph, Device, and Graph Template to gain access to the Graph'); } /* box: device permissions */ html_start_box(__('Default Graph Policy'), '100%', '', '3', 'center', ''); ?>
    '> '>

    0)"; } else { $sql_where = 'WHERE (gtg.local_graph_id > 0)'; } if (get_request_var('graph_template_id') == '-1') { /* Show all items */ } elseif (get_request_var('graph_template_id') == '0') { $sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' gtg.graph_template_id=0'; } elseif (!isempty_request_var('graph_template_id')) { $sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' gtg.graph_template_id=' . get_request_var('graph_template_id'); } $i = 1; $user_perm = ''; $sql_select = ''; foreach($policies as $policy) { if ($policy['type'] == 'user' && $user_perm == '') { $user_perm = $i; } if (get_request_var('associated') == 'false') { if ($policy['policy_graphs'] == 1) { $sql_having .= ($sql_having != '' ? ' OR ':'') . " (user$i IS NULL"; } else { $sql_having .= ($sql_having != '' ? ' OR ':'') . " (user$i IS NOT NULL"; } } $sql_join .= 'LEFT JOIN user_auth_' . ($policy['type'] == 'user' ? '':'group_') . "perms AS uap$i ON (gl.id=uap$i.item_id AND uap$i.type=1 AND uap$i." . $policy['type'] . '_id=' . get_request_var('id') . ') '; $sql_select .= ($sql_select != '' ? ', ':'') . "uap$i." . $policy['type'] . "_id AS user$i"; $i++; if (get_request_var('associated') == 'false') { if ($policy['policy_hosts'] == 1) { $sql_having .= " OR (user$i IS NULL"; } else { $sql_having .= " OR (user$i IS NOT NULL"; } } $sql_join .= 'LEFT JOIN user_auth_' . ($policy['type'] == 'user' ? '':'group_') . "perms AS uap$i ON (gl.host_id=uap$i.item_id AND uap$i.type=3 AND uap$i." . $policy['type'] . '_id=' . get_request_var('id') . ') '; $sql_select .= ($sql_select != '' ? ', ':'') . "uap$i." . $policy['type'] . "_id AS user$i"; $i++; if (get_request_var('associated') == 'false') { if ($policy['policy_graph_templates'] == 1) { $sql_having .= " $sql_operator user$i IS NULL))"; } else { $sql_having .= " $sql_operator user$i IS NOT NULL))"; } } $sql_join .= 'LEFT JOIN user_auth_' . ($policy['type'] == 'user' ? '':'group_') . "perms AS uap$i ON (gl.graph_template_id=uap$i.item_id AND uap$i.type=4 AND uap$i." . $policy['type'] . '_id=' . get_request_var('id') . ') '; $sql_select .= ($sql_select != '' ? ', ':'') . "uap$i." . $policy['type'] . "_id AS user$i"; $i++; } if ($sql_having != '') { $sql_having = 'HAVING ' . $sql_having; } $graphs = db_fetch_assoc("SELECT gtg.local_graph_id, h.description, gt.name AS template_name, gtg.title_cache, gtg.width, gtg.height, gl.snmp_index, gl.snmp_query_id, $sql_select FROM graph_templates_graph AS gtg INNER JOIN graph_local AS gl ON gl.id = gtg.local_graph_id LEFT JOIN graph_templates AS gt ON gt.id = gl.graph_template_id LEFT JOIN host AS h ON h.id = gl.host_id $sql_join $sql_where $sql_having ORDER BY gtg.title_cache $limit"); $total_rows = db_fetch_cell("SELECT COUNT(*) FROM ( SELECT $sql_select FROM graph_templates_graph AS gtg INNER JOIN graph_local AS gl ON gl.id = gtg.local_graph_id LEFT JOIN graph_templates AS gt ON gt.id = gl.graph_template_id LEFT JOIN host AS h ON h.id = gl.host_id $sql_join $sql_where $sql_having ) AS rows"); $nav = html_nav_bar('user_admin.php?action=user_edit&tab=permsg&id=' . get_request_var('id'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 11, __('Graphs'), 'page', 'main'); form_start(htmlspecialchars('user_admin.php?tab=permsg&id=' . get_request_var('id')), 'chk'); print $nav; html_start_box('', '100%', '', '3', 'center', ''); $display_text = array(__('Graph Title'), __('ID'), __('Effective Policy')); html_header_checkbox($display_text, false); if (sizeof($graphs)) { foreach ($graphs as $g) { form_alternate_row('line' . $g['local_graph_id'], true); form_selectable_cell(filter_value($g['title_cache'], get_request_var('filter')), $g['local_graph_id']); form_selectable_cell($g['local_graph_id'], $g['local_graph_id']); form_selectable_cell(get_permission_string($g, $policies), $g['local_graph_id']); form_checkbox_cell($g['title_cache'], $g['local_graph_id']); form_end_row(); } } else { print '' . __('No Matching Graphs Found') . ''; } html_end_box(false); if (sizeof($graphs)) { print $nav; } form_hidden_box('tab',$tab,''); form_hidden_box('id', get_request_var('id'), ''); form_hidden_box('associate_graph', '1', ''); if ($policy['policy_graphs'] == 1) { $assoc_actions = array( 1 => __('Revoke Access'), 2 => __('Grant Access') ); } else { $assoc_actions = array( 1 => __('Grant Access'), 2 => __('Revoke Access') ); } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($assoc_actions); form_end(); break; case 'permsgr': process_group_request_vars(); group_filter($header_label); /* if the number of rows is -1, set it to the default */ if (get_request_var('rows') == -1) { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } /* form the 'where' clause for our main sql query */ if (get_request_var('filter') != '') { $sql_where = "WHERE (uag.name LIKE '%" . get_request_var('filter') . "%' OR uag.description LIKE '%" . get_request_var('filter') . "%')"; } else { $sql_where = ''; } if (get_request_var('associated') != 'false') { /* Show all items */ } else { $sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' uagm.user_id=' . get_request_var('id'); } $total_rows = db_fetch_cell("SELECT COUNT(DISTINCT uag.id) FROM user_auth_group AS uag LEFT JOIN (SELECT user_id, group_id FROM user_auth_group_members WHERE user_id=" . get_request_var('id') . ") AS uagm ON uag.id = uagm.group_id $sql_where"); $sql_query = "SELECT DISTINCT uag.*, uagm.user_id FROM user_auth_group AS uag LEFT JOIN (SELECT user_id, group_id FROM user_auth_group_members WHERE user_id=" . get_request_var('id') . ") AS uagm ON uag.id = uagm.group_id $sql_where ORDER BY name LIMIT " . ($rows*(get_request_var('page')-1)) . ',' . $rows; $groups = db_fetch_assoc($sql_query); $nav = html_nav_bar('user_admin.php?action=user_edit&tab=permsgr&id=' . get_request_var('id'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 11, __('Groups'), 'page', 'main'); form_start(htmlspecialchars('user_admin.php?tab=permsd&id=' . get_request_var('id')), 'chk'); print $nav; html_start_box('', '100%', '', '3', 'center', ''); $display_text = array(__('Name'), __('Description'), __('Member'), __('ID'), __('Policies (Graph/Device/Template)'), __('Enabled')); html_header_checkbox($display_text, false); if (sizeof($groups)) { foreach ($groups as $g) { form_alternate_row('line' . $g['id'], true); form_selectable_cell(filter_value($g['name'], get_request_var('filter'), 'user_group_admin.php?action=edit&id=' . $g['id']), $g['id']); form_selectable_cell(filter_value($g['description'], get_request_var('filter')), $g['id']); form_selectable_cell($g['user_id'] > 0 ? __('Member'):__('Non Member'), $g['id']); form_selectable_cell(($g['id']), $g['id']); form_selectable_cell(($g['policy_graphs'] == 1 ? __('ALLOW'):__('DENY')) . '/' . ($g['policy_hosts'] == 1 ? __('ALLOW'):__('DENY')) . '/' . ($g['policy_graph_templates'] == 1 ? __('ALLOW'):__('DENY')), $g['id']); form_selectable_cell($g['enabled'] == 'on' ? __('Enabled'):__('Disabled'), $g['id']); form_checkbox_cell($g['name'], $g['id']); form_end_row(); } } else { print '' . __('No Matching User Groups Found') . ''; } html_end_box(false); if (sizeof($groups)) { print $nav; } form_hidden_box('tab',$tab,''); form_hidden_box('id', get_request_var('id'), ''); form_hidden_box('associate_groups', '1', ''); $assoc_actions = array( 1 => __('Assign Membership'), 2 => __('Remove Membership') ); /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($assoc_actions); form_end(); break; case 'permsd': process_device_request_vars(); device_filter($header_label); form_start('user_admin.php', 'policy'); html_start_box(__('Default Device Policy'), '100%', '', '3', 'center', ''); ?>
    '> '>
    ' . __('Access Granted') . '', $host['id']); } else { form_selectable_cell('' . __('Access Restricted') . '', $host['id']); } } else { if ($policy['policy_hosts'] == 1) { form_selectable_cell('' . __('Access Restricted') . '', $host['id']); } else { form_selectable_cell('' . __('Access Granted') . '', $host['id']); } } form_selectable_cell((isset($host_graphs[$host['id']]) ? $host_graphs[$host['id']] : 0), $host['id']); form_selectable_cell((isset($host_data_sources[$host['id']]) ? $host_data_sources[$host['id']] : 0), $host['id']); form_selectable_cell(get_colored_device_status(($host['disabled'] == 'on' ? true : false), $host['status']), $host['id']); form_selectable_cell(filter_value($host['hostname'], get_request_var('filter')), $host['id']); form_checkbox_cell($host['description'], $host['id']); form_end_row(); } } else { print '' . __('No Matching Devices Found') . ''; } html_end_box(false); if (sizeof($hosts)) { print $nav; } form_hidden_box('tab',$tab,''); form_hidden_box('id', get_request_var('id'), ''); form_hidden_box('associate_host', '1', ''); if ($policy['policy_hosts'] == 1) { $assoc_actions = array( 1 => __('Revoke Access'), 2 => __('Grant Access') ); } else { $assoc_actions = array( 1 => __('Grant Access'), 2 => __('Revoke Access') ); } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($assoc_actions); form_end(); break; case 'permste': process_template_request_vars(); template_filter($header_label); form_start('user_admin.php', 'policy'); html_start_box(__('Default Graph Template Policy'), '100%', '', '3', 'center', ''); ?>
    '> '>
    ' . __('Access Granted') . '', $g['id']); } else { form_selectable_cell('' . __('Access Restricted') . '', $g['id']); } } else { if ($policy['policy_graph_templates'] == 1) { form_selectable_cell('' . __('Access Restricted') . '', $g['id']); } else { form_selectable_cell('' . __('Access Granted') . '', $g['id']); } } form_selectable_cell($g['totals'], $g['id']); form_checkbox_cell($g['name'], $g['id']); form_end_row(); } } else { print '' . __('No Matching Graph Templates Found') . ''; } html_end_box(false); if (sizeof($graphs)) { print $nav; } form_hidden_box('tab',$tab,''); form_hidden_box('id', get_request_var('id'), ''); form_hidden_box('associate_template', '1', ''); if ($policy['policy_graph_templates'] == 1) { $assoc_actions = array( 1 => __('Revoke Access'), 2 => __('Grant Access') ); } else { $assoc_actions = array( 1 => __('Grant Access'), 2 => __('Revoke Access') ); } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($assoc_actions); form_end(); break; case 'permstr': process_tree_request_vars(); tree_filter($header_label); form_start('user_admin.php', 'policy'); html_start_box(__('Default Tree Policy'), '100%', '', '3', 'center', ''); ?>
    '> '>
    ' . __('Access Granted') . '', $t['id']); } else { form_selectable_cell('' . __('Access Restricted') . '', $t['id']); } } else { if ($policy['policy_trees'] == 1) { form_selectable_cell('' . __('Access Restricted') . '', $t['id']); } else { form_selectable_cell('' . __('Access Granted') . '', $t['id']); } } form_checkbox_cell($t['name'], $t['id']); form_end_row(); } } else { print '' . __('No Matching Trees Found') . ''; } html_end_box(false); if (sizeof($trees)) { print $nav; } form_hidden_box('tab',$tab,''); form_hidden_box('id', get_request_var('id'), ''); form_hidden_box('associate_tree', '1', ''); if ($policy['policy_trees'] == 1) { $assoc_actions = array( 1 => __('Revoke Access'), 2 => __('Grant Access') ); } else { $assoc_actions = array( 1 => __('Grant Access'), 2 => __('Revoke Access') ); } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($assoc_actions); form_end(); break; } } function user_realms_edit($header_label) { global $user_auth_realms, $user_auth_roles; /* ================= input validation ================= */ get_filter_request_var('id'); /* ==================================================== */ $all_realms = $user_auth_realms; print "
    " . __('User Permissions') . " $header_label
    \n"; form_start('user_admin.php', 'chk'); html_start_box('', '100%', '', '3', 'center', ''); /* do cacti realms first */ $i = 1; foreach($user_auth_roles as $role_name => $perms) { $j = 1; print "" . $role_name . "\n"; print "\n"; foreach($perms as $realm) { if ($j == 1) { print "\n"; } print "\n"; if ($j == 5) { print "\n"; $j = 1; } else { $j++; } } if ($j > 1) { print "\n"; print "\n"; } print "
    \n"; if (isset($user_auth_realms[$realm])) { $set = db_fetch_cell_prepared('SELECT realm_id FROM user_auth_realm WHERE user_id = ? AND realm_id = ?', array(get_request_var('id', 0), $realm)); if (!empty($set)) { $old_value = 'on'; } else { $old_value = ''; } unset($all_realms[$realm]); form_checkbox('section' . $realm, $old_value, $user_auth_realms[$realm], '', '', '', (!isempty_request_var('id') ? 1 : 0)); print '
    '; } print "
    \n"; } /* external links */ $links = db_fetch_assoc('SELECT * FROM external_links ORDER BY sortorder'); $style_translate = array( 'CONSOLE' => __('Console'), 'TAB' => __('Top Tab'), 'FRONT' => __('Bottom Console'), 'FRONTTOP' => __('Top Console') ); print "" . __('External Link Permissions') . "\n"; print "\n"; } $realm = $r['id'] + 10000; if (sizeof(db_fetch_assoc_prepared('SELECT realm_id FROM user_auth_realm WHERE user_id = ? AND realm_id = ?', array(get_request_var('id', 0), $realm))) > 0) { $old_value = 'on'; } else { $old_value = ''; } unset($all_realms[$realm]); print "\n"; if ($j == 5) { print "\n"; $j = 1; } else { $j++; } } if ($j > 1) { print "\n"; print "\n"; } } print "
    \n"; if (sizeof($links)) { $j = 1; foreach($links as $r) { if ($j == 1) { print "
    \n"; switch($r['style']) { case 'CONSOLE': $description = $style_translate[$r['style']] . ': ' . ($r['extendedstyle'] == '' ? 'External Links' : $r['extendedstyle']) . '/' . $r['title']; break; default: $description = $style_translate[$r['style']] . ': ' . ucfirst($r['title']); break; } form_checkbox('section' . $realm, $old_value, $description, '', '', '', (!isempty_request_var('id') ? 1 : 0)); print '
    '; print "
    \n"; /* do plugin realms */ $realms = db_fetch_assoc('SELECT pc.name, pr.id AS realm_id, pr.display FROM plugin_config AS pc INNER JOIN plugin_realms AS pr ON pc.directory = pr.plugin ORDER BY pc.name, pr.display'); print "" . __('Plugin Permissions') . "\n"; print "\n"; $break = true;; $j = 1; } else { $j++; } } if ($break) { print "
    \n"; if (sizeof($realms)) { $last_plugin = 'none'; $i = 1; $j = 1; foreach($realms as $r) { $break = false; if ($last_plugin != $r['name'] && $last_plugin != 'none') { $break = true; if ($j == 5) { print "
    \n"; } if ($break || $i == 1) { print "" . $r['name'] . "
    \n"; } $realm = $r['realm_id'] + 100; if (sizeof(db_fetch_assoc_prepared('SELECT realm_id FROM user_auth_realm WHERE user_id = ? AND realm_id = ?', array(get_request_var('id', 0), $realm))) > 0) { $old_value = 'on'; } else { $old_value = ''; } unset($all_realms[$realm]); $pos = (strpos($user_auth_realms[$realm], '->') !== false ? strpos($user_auth_realms[$realm], '->')+2:0); form_checkbox('section' . $realm, $old_value, substr($user_auth_realms[$realm], $pos), '', '', '', (!isempty_request_var('id') ? 1 : 0)); print '
    '; $last_plugin = $r['name']; $i++; } } /* get the old PIA 1.x realms */ if (sizeof($all_realms)) { if ($break) { print "
    \n"; } print "" . __('Legacy 1.x Plugins') . "
    \n"; foreach($all_realms as $realm => $name) { if (sizeof(db_fetch_assoc_prepared('SELECT realm_id FROM user_auth_realm WHERE user_id = ? AND realm_id = ?', array(get_request_var('id', 0), $realm))) > 0) { $old_value = 'on'; } else { $old_value = ''; } $pos = (strpos($user_auth_realms[$realm], '->') !== false ? strpos($user_auth_realms[$realm], '->')+2:0); form_checkbox('section' . $realm, $old_value, substr($user_auth_realms[$realm], $pos), '', '', '', (!isempty_request_var('id') ? 1 : 0)); print '
    '; } } print "
    \n"; ?> $tab_fields) { $collapsible = true; print "
    " . $tabs_graphs[$tab_short_name] . ($collapsible ? "
    ":"") . "
    \n"; $form_array = array(); foreach ($tab_fields as $field_name => $field_array) { $form_array += array($field_name => $tab_fields[$field_name]); if ((isset($field_array['items'])) && (is_array($field_array['items']))) { foreach ($field_array['items'] as $sub_field_name => $sub_field_array) { if (graph_config_value_exists($sub_field_name, get_request_var('id'))) { $form_array[$field_name]['items'][$sub_field_name]['form_id'] = 1; } $form_array[$field_name]['items'][$sub_field_name]['value'] = db_fetch_cell_prepared('SELECT value FROM settings_user WHERE name = ? AND user_id = ?', array($sub_field_name, get_request_var('id'))); } } else { if (graph_config_value_exists($field_name, get_request_var('id'))) { $form_array[$field_name]['form_id'] = 1; } $form_array[$field_name]['value'] = db_fetch_cell_prepared('SELECT value FROM settings_user WHERE name = ? and user_id = ?', array($field_name, get_request_var('id'))); } } draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => $form_array ) ); } html_end_box(true, true); form_hidden_box('id', get_request_var('id'), ''); form_hidden_box('tab', 'settings', ''); form_hidden_box('save_component_graph_settings','1',''); form_save_button('user_admin.php', 'return'); ?> array('regexp' => '/^([a-zA-Z]+)$/'))); /* ==================================================== */ /* present a tabbed interface */ $tabs = array( 'general' => __('General'), 'realms' => __('Permissions'), 'permsgr' => __('Group Membership'), 'permsg' => __('Graph Perms'), 'permsd' => __('Device Perms'), 'permste' => __('Template Perms'), 'permstr' => __('Tree Perms'), 'settings' => __('User Settings') ); /* set the default tab */ load_current_session_value('tab', 'sess_user_admin_tab', 'general'); $current_tab = get_nfilter_request_var('tab'); if (!isempty_request_var('id')) { $user = db_fetch_row_prepared('SELECT * FROM user_auth WHERE id = ?', array(get_request_var('id'))); $header_label = __('[edit: %s]', $user['username']); } else { $header_label = __('[new]'); } if (sizeof($tabs) && !isempty_request_var('id')) { $i = 0; /* draw the tabs */ print "
    \n"; } switch($current_tab) { case 'general': api_plugin_hook_function('user_admin_edit', (isset($user) ? get_request_var('id') : 0)); form_start('user_admin.php'); html_start_box(__('User Management %s', $header_label), '100%', '', '3', 'center', ''); draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => inject_form_variables($fields_user_user_edit_host, (isset($user) ? $user : array())) ) ); html_end_box(); form_save_button('user_admin.php', 'return'); ?> array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'username', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ), ); validate_store_request_vars($filters, 'sess_usera'); /* ================= input validation ================= */ ?>
    '> ' title=''> ' title=''>
    array(__('User Name'), 'ASC'), 'full_name' => array(__('Full Name'), 'ASC'), 'enabled' => array(__('Enabled'), 'ASC'), 'realm' => array(__('Realm'), 'ASC'), 'policy_graphs' => array(__('Graph Policy'), 'ASC'), 'policy_hosts' => array(__('Device Policy'), 'ASC'), 'policy_graph_templates' => array(__('Template Policy'), 'ASC'), 'dtime' => array(__('Last Login'), 'DESC') ); html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false); if (sizeof($user_list)) { foreach ($user_list as $user) { if (empty($user['dtime']) || ($user['dtime'] == '12/31/1969')) { $last_login = __('N/A'); } else { $last_login = strftime('%A, %B %d, %Y %H:%M:%S ', strtotime($user['dtime']));; } if ($user['enabled'] == 'on') { $enabled = __('Yes'); } else { $enabled = __('No'); } if (isset($auth_realms[$user['realm']])) { $realm = $auth_realms[$user['realm']]; } else { $realm = __('Unavailable'); } form_alternate_row('line' . $user['id'], true); form_selectable_cell(filter_value($user['username'], get_request_var('filter'), $config['url_path'] . 'user_admin.php?action=user_edit&tab=general&id=' . $user['id']), $user['id']); form_selectable_cell(filter_value($user['full_name'], get_request_var('filter')), $user['id']); form_selectable_cell($enabled, $user['id']); form_selectable_cell($realm, $user['id']); form_selectable_cell(($user['policy_graphs'] == 1 ? __('ALLOW'):__('DENY')), $user['id']); form_selectable_cell(($user['policy_hosts'] == 1 ? __('ALLOW'):__('DENY')), $user['id']); form_selectable_cell(($user['policy_graph_templates'] == 1 ? __('ALLOW'):__('DENY')), $user['id']); form_selectable_cell($last_login, $user['id']); form_checkbox_cell($user['username'], $user['id']); form_end_row(); } } else { print '' . __('No Users Found') . ''; } html_end_box(false); if (sizeof($user_list)) { print $nav; } draw_actions_dropdown($user_actions); form_end(); } function process_graph_request_vars() { /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_config_option('num_rows_table') ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'graph_template_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1', ), 'associated' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ) ); validate_store_request_vars($filters, 'sess_uag'); /* ================= input validation ================= */ } function process_group_request_vars() { /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_config_option('num_rows_table') ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'associated' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ) ); validate_store_request_vars($filters, 'sess_uagr'); /* ================= input validation ================= */ } function process_device_request_vars() { /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_config_option('num_rows_table') ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'host_template_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1', ), 'associated' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ) ); validate_store_request_vars($filters, 'sess_uad'); /* ================= input validation ================= */ } function process_template_request_vars() { /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_config_option('num_rows_table') ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'graph_template_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1', ), 'associated' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ) ); validate_store_request_vars($filters, 'sess_uate'); /* ================= input validation ================= */ } function process_tree_request_vars() { /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_config_option('num_rows_table') ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'graph_template_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1', ), 'associated' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ) ); validate_store_request_vars($filters, 'sess_uatr'); /* ================= input validation ================= */ } function graph_filter($header_label) { global $config, $item_rows; ?>
    ' onChange='applyFilter()'> > ' onClick='applyFilter()' title=''> ' onClick='clearFilter()' title=''>
    '>
    ' onChange='applyFilter()'> > ' onClick='applyFilter()' title=''> ' onClick='clearFilter()' title=''>
    '>
    ' onChange='applyFilter()'> > ' onClick='applyFilter()' title=''> ' onClick='clearFilter()' title=''>
    '>
    ' onChange='applyFilter()'> > ' onClick='applyFilter()' title=''> ' onClick='clearFilter()' title=''>
    '>
    ' onChange='applyFilter()'> > ' onClick='applyFilter()' title=''> ' onClick='clearFilter()' title=''>
    '>
    ' onChange='applyFilter()'> > ' onClick='applyFilter()' title=''> ' onClick='clearFilter()' title=''>
    '>
    __x('dropdown action', 'Delete'), 2 => __x('dropdown action', 'Publish'), 3 => __x('dropdown action', 'Un Publish') ); /* set default action */ set_default_action(); if (get_request_var('action') != '') { /* ================= input validation and session storage ================= */ $filters = array( 'tree_id' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '' ), 'leaf_id' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '' ), 'graph_tree_id' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '' ), 'parent_item_id' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '' ), 'parent' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '/([_\-a-z:0-9#]+)/')), 'pageset' => true, 'default' => '' ), 'position' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '' ), 'nodeid' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '/([_\-a-z:0-9#]+)/')), 'pageset' => true, 'default' => '' ), 'id' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '/([_\-a-z:0-9#]+)/')), 'pageset' => true, 'default' => '' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ) ); validate_store_request_vars($filters); /* ================= input validation ================= */ } switch (get_request_var('action')) { case 'save': form_save(); break; case 'actions': form_actions(); break; case 'sortasc': tree_sort_name_asc(); header('Location: tree.php?header=false'); break; case 'sortdesc': tree_sort_name_desc(); header('Location: tree.php?header=false'); break; case 'edit': top_header(); tree_edit(); bottom_footer(); break; case 'hosts': display_hosts(); break; case 'graphs': display_graphs(); break; case 'tree_up': tree_up(); break; case 'tree_down': tree_down(); break; case 'ajax_dnd': tree_dnd(); break; case 'lock': api_tree_lock(get_request_var('id'), $_SESSION['sess_user_id']); break; case 'unlock': api_tree_unlock(get_request_var('id'), $_SESSION['sess_user_id']); break; case 'copy_node': api_tree_copy_node(get_request_var('tree_id'), get_request_var('id'), get_request_var('parent'), get_request_var('position')); break; case 'create_node': api_tree_create_node(get_request_var('tree_id'), get_request_var('id'), get_request_var('position'), get_nfilter_request_var('text')); break; case 'delete_node': api_tree_delete_node(get_request_var('tree_id'), get_request_var('id')); break; case 'move_node': api_tree_move_node(get_request_var('tree_id'), get_request_var('id'), get_request_var('parent'), get_request_var('position')); break; case 'rename_node': api_tree_rename_node(get_request_var('tree_id'), get_request_var('id'), get_nfilter_request_var('text')); break; case 'get_node': api_tree_get_node(get_request_var('tree_id'), get_request_var('id'), true); break; case 'get_host_sort': get_host_sort_type(); break; case 'set_host_sort': set_host_sort_type(); break; case 'get_branch_sort': get_branch_sort_type(); break; case 'set_branch_sort': set_branch_sort_type(); break; default: top_header(); tree(); bottom_footer(); break; } function tree_get_max_sequence() { $max_seq = db_fetch_cell('SELECT MAX(sequence) FROM graph_tree'); if ($max_seq == NULL) { $max_seq = 0; } } function tree_check_sequences() { $bad_seq = db_fetch_cell('SELECT COUNT(sequence) FROM graph_tree WHERE sequence <= 0'); $dup_seq = db_fetch_cell('SELECT SUM(count) FROM ( SELECT sequence, COUNT(sequence) AS count FROM graph_tree GROUP BY sequence ) AS t WHERE t.count > 1'); // report any bad or duplicate sequencs to the log for reporting purposes if ($bad_seq > 0) { cacti_log('WARN: Found ' . $bad_seq . ' Sequences in graph_tree Table', false, 'TREE', POLLER_VERBOSITY_HIGH); } if ($dup_seq > 0) { cacti_log('WARN: Found ' . $dup_seq . ' Sequences in graph_tree Table', false, 'TREE', POLLER_VERBOSITY_HIGH); } if ($bad_seq > 0 || $dup_seq > 0) { // resequence the list so it has no gaps, and 0 values will appear at the top // since thats where they would have been displayed db_execute('SET @seq = 0; UPDATE graph_tree SET sequence = (@seq:=@seq+1) ORDER BY sequence, id;'); } } function tree_sort_name_asc() { // resequence the list so it has no gaps, alphabetically ascending db_execute('SET @seq = 0; UPDATE graph_tree SET sequence = (@seq:=@seq+1) ORDER BY name;'); } function tree_sort_name_desc() { // resequence the list so it has no gaps, alphabetically ascending db_execute('SET @seq = 0; UPDATE graph_tree SET sequence = (@seq:=@seq+1) ORDER BY name DESC;'); } function tree_down() { tree_check_sequences(); $tree_id = get_filter_request_var('id'); $seq = db_fetch_cell_prepared('SELECT sequence FROM graph_tree WHERE id = ?', array($tree_id)); $new_seq = $seq + 1; /* update the old tree first */ db_execute_prepared('UPDATE graph_tree SET sequence = ? WHERE sequence = ?', array($seq, $new_seq)); /* update the tree in question */ db_execute_prepared('UPDATE graph_tree SET sequence = ? WHERE id = ?', array($new_seq, $tree_id)); header('Location: tree.php?header=false'); exit; } function tree_up() { tree_check_sequences(); $tree_id = get_filter_request_var('id'); $seq = db_fetch_cell_prepared('SELECT sequence FROM graph_tree WHERE id = ?', array($tree_id)); $new_seq = $seq - 1; /* update the old tree first */ db_execute_prepared('UPDATE graph_tree SET sequence = ? WHERE sequence = ?', array($seq, $new_seq)); /* update the tree in question */ db_execute_prepared('UPDATE graph_tree SET sequence = ? WHERE id = ?', array($new_seq, $tree_id)); header('Location: tree.php?header=false'); exit; } function tree_dnd() { if (isset_request_var('tree_ids') && is_array(get_nfilter_request_var('tree_ids'))) { $tids = get_nfilter_request_var('tree_ids'); $sequence = 1; foreach($tids as $id) { $id = str_replace('line', '', $id); input_validate_input_number($id); db_execute_prepared('UPDATE graph_tree SET sequence = ? WHERE id = ?', array($sequence, $id)); $sequence++; } } header('Location: tree.php?header=false'); exit; } function get_host_sort_type() { if (isset_request_var('nodeid')) { $ndata = explode('_', get_request_var('nodeid')); if (sizeof($ndata)) { foreach($ndata as $n) { $parts = explode(':', $n); if (isset($parts[0]) && $parts[0] == 'tbranch') { $branch = $parts[1]; input_validate_input_number($branch); $sort_type = db_fetch_cell_prepared('SELECT host_grouping_type FROM graph_tree_items WHERE id = ?', array($branch)); if ($sort_type == HOST_GROUPING_GRAPH_TEMPLATE) { print 'hsgt'; } else { print 'hsdq'; } } } } } else { return ''; } } function set_host_sort_type() { $type = ''; $branch = ''; /* clean up type string */ if (isset_request_var('type')) { set_request_var('type', sanitize_search_string(get_request_var('type'))); } if (isset_request_var('nodeid')) { $ndata = explode('_', get_request_var('nodeid')); if (sizeof($ndata)) { foreach($ndata as $n) { $parts = explode(':', $n); if (isset($parts[0]) && $parts[0] == 'tbranch') { $branch = $parts[1]; input_validate_input_number($branch); if (get_request_var('type') == 'hsgt') { $type = HOST_GROUPING_GRAPH_TEMPLATE; } else { $type = HOST_GROUPING_DATA_QUERY_INDEX; } db_execute_prepared('UPDATE graph_tree_items SET host_grouping_type = ? WHERE id = ?', array($type, $branch)); break; } } } } return; } function get_branch_sort_type() { if (isset_request_var('nodeid')) { $ndata = explode('_', get_request_var('nodeid')); if (sizeof($ndata)) { foreach($ndata as $n) { $parts = explode(':', $n); if (isset($parts[0]) && $parts[0] == 'tbranch') { $branch = $parts[1]; input_validate_input_number($branch); $sort_type = db_fetch_cell_prepared('SELECT sort_children_type FROM graph_tree_items WHERE id = ?', array($branch)); switch($sort_type) { case TREE_ORDERING_INHERIT: print __x('ordering of tree items', 'inherit'); break; case TREE_ORDERING_NONE: print __x('ordering of tree items', 'manual'); break; case TREE_ORDERING_ALPHABETIC: print __x('ordering of tree items', 'alpha'); break; case TREE_ORDERING_NATURAL: print __x('ordering of tree items', 'natural'); break; case TREE_ORDERING_NUMERIC: print __x('ordering of tree items', 'numeric'); break; default: print ''; break; } break; } } } } else { print ''; } } function set_branch_sort_type() { $type = ''; $branch = ''; /* clean up type string */ if (isset_request_var('type')) { set_request_var('type', sanitize_search_string(get_request_var('type'))); } if (isset_request_var('nodeid')) { $ndata = explode('_', get_request_var('nodeid')); if (sizeof($ndata)) { foreach($ndata as $n) { $parts = explode(':', $n); if (isset($parts[0]) && $parts[0] == 'tbranch') { $branch = $parts[1]; input_validate_input_number($branch); switch(get_request_var('type')) { case 'inherit': $type = TREE_ORDERING_INHERIT; break; case 'manual': $type = TREE_ORDERING_NONE; break; case 'alpha': $type = TREE_ORDERING_ALPHABETIC; break; case 'natural': $type = TREE_ORDERING_NATURAL; break; case 'numeric': $type = TREE_ORDERING_NUMERIC; break; default: break; } if (is_numeric($type) && is_numeric($branch)) { db_execute_prepared('UPDATE graph_tree_items SET sort_children_type = ? WHERE id = ?', array($type, $branch)); } $first_child = db_fetch_row_prepared('SELECT id, graph_tree_id FROM graph_tree_items WHERE parent = ? ORDER BY position LIMIT 1', array($branch)); if (!empty($first_child)) { api_tree_sort_branch($first_child['id'], $first_child['graph_tree_id']); } break; } } } } } /* -------------------------- The Save Function -------------------------- */ function form_save() { /* clear graph tree cache on save - affects current user only, other users should see changes in <5 minutes */ if (isset($_SESSION['dhtml_tree'])) { unset($_SESSION['dhtml_tree']); } if (isset_request_var('save_component_tree')) { /* ================= input validation ================= */ get_filter_request_var('id'); /* ==================================================== */ if (get_filter_request_var('id') > 0) { $prev_order = db_fetch_cell_prepared('SELECT sort_type FROM graph_tree WHERE id = ?', array(get_request_var('id'))); } else { $prev_order = 1; } $save['id'] = get_request_var('id'); $save['name'] = form_input_validate(get_nfilter_request_var('name'), 'name', '', false, 3); $save['sort_type'] = form_input_validate(get_nfilter_request_var('sort_type'), 'sort_type', '', true, 3); $save['last_modified'] = date('Y-m-d H:i:s', time()); $save['enabled'] = get_nfilter_request_var('enabled') == 'true' ? 'on':'-'; $save['modified_by'] = $_SESSION['sess_user_id']; if (empty($save['sequence'])) { $save['sequence'] = tree_get_max_sequence() + 1; } if (empty($save['id'])) { $save['user_id'] = $_SESSION['sess_user_id']; } if (!is_error_message()) { $tree_id = sql_save($save, 'graph_tree'); if ($tree_id) { raise_message(1); /* sort the tree using the algorithm chosen by the user */ if ($save['sort_type'] != $prev_order) { if ($save['sort_type'] != TREE_ORDERING_NONE) { sort_recursive(0, $tree_id); } } } else { raise_message(2); } } header("Location: tree.php?header=false&action=edit&id=$tree_id"); exit; } } function sort_recursive($branch, $tree_id) { $leaves = db_fetch_assoc_prepared('SELECT * FROM graph_tree_items WHERE graph_tree_id = ? AND parent = ? AND local_graph_id = 0 AND host_id = 0', array($tree_id, $branch)); if (sizeof($leaves)) { foreach($leaves as $leaf) { if ($leaf['sort_children_type'] == TREE_ORDERING_INHERIT) { $first_child = db_fetch_cell_prepared('SELECT id FROM graph_tree_items WHERE parent = ?', array($leaf['id'])); if (!empty($first_child)) { api_tree_sort_branch($first_child, $tree_id); if (leaves_exist($leaf['id'], $tree_id)) { sort_recursive($first_child, $tree_id); } } } } } } function leaves_exist($parent, $tree_id) { return db_fetch_assoc_prepared('SELECT COUNT(*) FROM graph_tree_items WHERE graph_tree_id = ? AND parent = ? AND local_graph_id = 0 AND host_id = 0', array($tree_id, $parent)); } /* ----------------------- Tree Item Functions ----------------------- */ function form_actions() { global $tree_actions; /* ================= input validation ================= */ get_filter_request_var('drp_action', FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => '/^([a-zA-Z0-9_]+)$/'))); /* ==================================================== */ /* if we are to save this form, instead of display it */ if (isset_request_var('selected_items')) { $selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items')); if ($selected_items != false) { if (get_nfilter_request_var('drp_action') == '1') { // delete db_execute('DELETE FROM graph_tree WHERE ' . array_to_sql_or($selected_items, 'id')); db_execute('DELETE FROM graph_tree_items WHERE ' . array_to_sql_or($selected_items, 'graph_tree_id')); } elseif (get_nfilter_request_var('drp_action') == '2') { // publish db_execute("UPDATE graph_tree SET enabled='on', last_modified=NOW(), modified_by=" . $_SESSION['sess_user_id'] . ' WHERE ' . array_to_sql_or($selected_items, 'id')); } elseif (get_nfilter_request_var('drp_action') == '3') { // un-publish db_execute("UPDATE graph_tree SET enabled='', last_modified=NOW(), modified_by=" . $_SESSION['sess_user_id'] . ' WHERE ' . array_to_sql_or($selected_items, 'id')); } } header('Location: tree.php?header=false'); exit; } /* setup some variables */ $tree_list = ''; $i = 0; /* loop through each of the selected items */ foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ $tree_list .= '
  • ' . htmlspecialchars(db_fetch_cell_prepared('SELECT name FROM graph_tree WHERE id = ?', array($matches[1]))) . '
  • '; $tree_array[$i] = $matches[1]; $i++; } } top_header(); form_start('tree.php'); html_start_box($tree_actions[get_nfilter_request_var('drp_action')], '60%', '', '3', 'center', ''); if (isset($tree_array) && sizeof($tree_array)) { if (get_nfilter_request_var('drp_action') == '1') { // delete print "

    " . __n('Click \'Continue\' to delete the following Tree.', 'Click \'Continue\' to delete following Trees.', sizeof($tree_array)) . "

      $tree_list
    \n"; $save_html = " "; } elseif (get_nfilter_request_var('drp_action') == '2') { // publish print "

    " . __n('Click \'Continue\' to publish the following Tree.', 'Click \'Continue\' to publish following Trees.', sizeof($tree_array)) . "

      $tree_list
    \n"; $save_html = " "; } elseif (get_nfilter_request_var('drp_action') == '3') { // un-publish print "

    " . __n('Click \'Continue\' to un-publish the following Tree.', 'Click \'Continue\' to un-publish following Trees.', sizeof($tree_array)) . "

      $tree_list
    \n"; $save_html = " "; } } else { print "" . __('You must select at least one Tree.') . "\n"; $save_html = ""; } print " $save_html \n"; html_end_box(); form_end(); bottom_footer(); } /* --------------------- Tree Functions --------------------- */ function tree_edit() { global $fields_tree_edit; /* ================= input validation ================= */ get_filter_request_var('id'); get_filter_request_var('type'); /* ==================================================== */ /* clean up search string */ if (isset_request_var('filter')) { set_request_var('filter', sanitize_search_string(get_request_var('filter'))); } load_current_session_value('filter', 'sess_tree_edit_filter', ''); load_current_session_value('type', 'sess_tree_edit_type', '0'); if (!isempty_request_var('id')) { $tree = db_fetch_row_prepared('SELECT * FROM graph_tree WHERE id = ?', array(get_request_var('id'))); $header_label = __('Trees [edit: %s]', htmlspecialchars($tree['name']) ); // Reset the cookie state if tree id has changed if (isset($_SESSION['sess_tree_id']) && $_SESSION['sess_tree_id'] != get_request_var('id')) { $select_first = true; } else { $select_first = false; } $_SESSION['sess_tree_id'] = get_request_var('id'); } else { $tree = array(); $header_label = __('Trees [new]'); } form_start('tree.php', 'tree_edit'); // Remove inherit from the main tree option unset($fields_tree_edit['sort_type']['array'][0]); html_start_box($header_label, '100%', true, '3', 'center', ''); if (!sizeof($tree)) { unset($fields_tree_edit['enabled']); } draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => inject_form_variables($fields_tree_edit, (isset($tree) ? $tree : array())) ) ); html_end_box(true, true); $lockdiv = ''; if (isset($tree['locked']) && $tree['locked'] == 0) { $lockdiv = "
    " . __('To Edit this tree, you must first lock it by pressing the Edit Tree button.') . "
    \n"; $editable = false; } elseif (isset($tree['locked']) && $tree['locked'] == 1) { $lockdiv = "
    " . __('This tree has been locked for Editing on %1$s by %2$s.', $tree['locked_date'], get_username($tree['modified_by'])); if ($tree['modified_by'] == $_SESSION['sess_user_id']) { $editable = true; $lockdiv .= '
    '; } else { $editable = false; $lockdiv .= __('To edit the tree, you must first unlock it and then lock it as yourself') . ''; } } else { $tree['id'] = 0; $editable = true; } if ($editable) { form_save_button('tree.php', 'return'); } if (!isempty_request_var('id')) { print $lockdiv; print "\n"; html_end_box(); print "\n"; html_end_box(); print "\n"; html_end_box(); print "
    \n"; html_start_box( __('Tree Items'), '100%', '', '3', 'center', ''); echo "
    \n"; html_start_box( __('Available Devices'), '100%', '', '3', 'center', ''); ?>
    '>
    \n"; display_hosts(); echo "
    \n"; html_start_box( __('Available Graphs'), '100%', '', '3', 'center', ''); ?>
    '>
    \n"; display_graphs(); echo "
    \n"; ?>
  • " . $h['description'] . ' (' . $h['hostname'] . ')' . "
  • \n"; } } } function display_graphs() { if (get_request_var('filter') != '') { $sql_where = "WHERE (title_cache LIKE '%" . get_request_var('filter') . "%' OR gt.name LIKE '%" . get_request_var('filter') . "%') AND local_graph_id>0"; } else { $sql_where = 'WHERE local_graph_id>0'; } $graphs = db_fetch_assoc("SELECT gtg.local_graph_id AS id, gtg.title_cache AS title, gt.name AS template_name FROM graph_templates_graph AS gtg LEFT JOIN graph_templates AS gt ON gt.id=gtg.graph_template_id $sql_where ORDER BY title_cache LIMIT 20"); if (sizeof($graphs)) { foreach($graphs as $g) { if (is_graph_allowed($g['id'])) { echo "
    • " . html_escape($g['title']) . '
    '; } } } } function tree() { global $tree_actions, $item_rows; /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'sequence', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ) ); validate_store_request_vars($filters, 'sess_tree'); /* ================= input validation ================= */ /* if the number of rows is -1, set it to the default */ if (get_request_var('rows') == -1) { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } ?> 'tree.php?action=edit', 'callback' => true, 'title' => __esc('Add Tree'), 'class' => 'fa fa-plus' ), array( 'href' => 'tree.php?action=sortasc', 'callback' => true, 'title' => __esc('Sort Trees Ascending'), 'class' => 'fa fa-sort-alpha-asc' ), array( 'href' => 'tree.php?action=sortdesc', 'callback' => true, 'title' => __esc('Sort Trees Descending'), 'class' => 'fa fa-sort-alpha-desc' ) ); html_start_box(__('Trees'), '100%', '', '3', 'center', $buttons); ?>
    '> ' title=''> ' title=''>
    0 THEN 1 ELSE 0 END) AS hosts, SUM(CASE WHEN ti.local_graph_id>0 THEN 1 ELSE 0 END) AS graphs, SUM(CASE WHEN ti.local_graph_id=0 AND host_id=0 THEN 1 ELSE 0 END) AS branches FROM graph_tree AS t LEFT JOIN graph_tree_items AS ti ON t.id=ti.graph_tree_id $sql_where GROUP BY t.id $sql_order $sql_limit"); $total_rows = db_fetch_cell("SELECT COUNT(DISTINCT(ti.graph_tree_id)) FROM graph_tree AS t LEFT JOIN graph_tree_items AS ti ON t.id=ti.graph_tree_id $sql_where"); $nav = html_nav_bar('tree.php?filter=' . get_request_var('filter'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 11, __('Trees'), 'page', 'main'); form_start('tree.php', 'chk'); print $nav; html_start_box('', '100%', '', '3', 'center', ''); $display_text = array( 'name' => array('display' => __('Tree Name'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __('The name by which this Tree will be referred to as.')), 'id' => array('display' => __('ID'), 'align' => 'right', 'sort' => 'ASC', 'tip' => __('The internal database ID for this Tree. Useful when performing automation or debugging.')), 'enabled' => array('display' => __('Published'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __('Unpublished Trees cannot be viewed from the Graph tab')), 'locked' => array('display' => __('Locked'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __('A Tree must be locked in order to be edited.')), 'user_id' => array('display' => __('Owner'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __('The original author of this Tree.')), 'sequence' => array('display' => __('Order'), 'align' => 'center', 'sort' => 'ASC', 'tip' => __('To change the order of the trees, first sort by this column, press the up or down arrows once they appear.')), 'last_modified' => array('display' => __('Last Edited'), 'align' => 'right', 'sort' => 'ASC', 'tip' => __('The date that this Tree was last edited.')), 'modified_by' => array('display' => __('Edited By'), 'align' => 'right', 'sort' => 'ASC', 'tip' => __('The last user to have modified this Tree.')), 'branches' => array('display' => __('Branches'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __('The total number of Branches in this Tree.')), 'hosts' => array('display' => __('Devices'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __('The total number of individual Devices in this Tree.')), 'graphs' => array('display' => __('Graphs'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __('The total number of individual Graphs in this Tree.'))); html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false); $i = 1; if (sizeof($trees)) { foreach ($trees as $tree) { $sequence = ''; if (get_request_var('sort_column') == 'sequence' && get_request_var('sort_direction') == 'ASC') { if ($i == 1 && sizeof($trees) == 1) { $sequence .= ''; $sequence .= ''; } elseif ($i == 1) { $sequence .= ''; $sequence .= ''; } elseif ($i == sizeof($trees)) { $sequence .= ''; $sequence .= ''; } else { $sequence .= ''; $sequence .= ''; } } form_alternate_row('line' . $tree['id'], true); form_selectable_cell(filter_value($tree['name'], get_request_var('filter'), 'tree.php?action=edit&id=' . $tree['id']), $tree['id']); form_selectable_cell($tree['id'], $tree['id'], '', 'text-align:right'); form_selectable_cell($tree['enabled'] == 'on' ? __('Yes'):__('No'), $tree['id']); form_selectable_cell($tree['locked'] == '1' ? __('Yes'):__('No'), $tree['id']); form_selectable_cell(get_username($tree['user_id']), $tree['id']); form_selectable_cell($sequence, $tree['id'], '', 'nowrap center'); form_selectable_cell(substr($tree['last_modified'],0,16), $tree['id'], '', 'text-align:right'); form_selectable_cell(get_username($tree['modified_by']), $tree['id'], '', 'text-align:right'); form_selectable_cell($tree['branches'] > 0 ? number_format_i18n($tree['branches'], '-1'):'-', $tree['id'], '', 'text-align:right'); form_selectable_cell($tree['hosts'] > 0 ? number_format_i18n($tree['hosts'], '-1'):'-', $tree['id'], '', 'text-align:right'); form_selectable_cell($tree['graphs'] > 0 ? number_format_i18n($tree['graphs'], '-1'):'-', $tree['id'], '', 'text-align:right'); form_checkbox_cell($tree['name'], $tree['id']); form_end_row(); $i++; } } else { print "" . __('No Trees Found') . ""; } html_end_box(false); if (sizeof($trees)) { print $nav; } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($tree_actions); form_end(); if (get_request_var('sort_column') == 'sequence' && get_request_var('sort_direction') == 'ASC') { ?> 0) { $_SESSION['import_debug_info'] = $debug_data; } header('Location: templates_import.php?preview=' . $preview_only); } } /* --------------------------- Template Import Functions --------------------------- */ function import() { global $hash_type_names, $fields_template_import; print "
    \n"; $display_hideme = false; if ((isset($_SESSION['import_debug_info'])) && (is_array($_SESSION['import_debug_info']))) { import_display_results($_SESSION['import_debug_info'], array(), true, get_filter_request_var('preview')); kill_session_var('import_debug_info'); $display_hideme = true; } html_start_box(__('Import Template'), '100%', true, '3', 'center', ''); $default_profile = db_fetch_cell('SELECT id FROM data_source_profiles WHERE `default`="on"'); if (empty($default_profile)) { $default_profile = db_fetch_cell('SELECT id FROM data_source_profiles ORDER BY id LIMIT 1'); } $fields_template_import['import_data_source_profile']['default'] = $default_profile; draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => $fields_template_import ) ); html_end_box(true, true); form_hidden_box('save_component_import','1',''); form_save_button('', 'import'); ?>
    " . html_escape($xml_data) . '
    '; bottom_footer(); } elseif (get_nfilter_request_var('output_format') == '2') { header('Content-type: application/xml'); if ($export_errors) echo __('WARNING: Export Errors Encountered. Refresh Browser Window for Details!') . "\n"; print $xml_data; } elseif (get_nfilter_request_var('output_format') == '3') { if ($export_errors) { header('Location: templates_export.php'); } else { header('Content-type: application/xml'); header('Content-Disposition: attachment; filename=cacti_' . get_nfilter_request_var('export_type') . '_' . strtolower(clean_up_file_name(db_fetch_cell(str_replace('|id|', get_nfilter_request_var('export_item_id'), $export_types[get_nfilter_request_var('export_type')]['title_sql'])))) . '.xml'); print $xml_data; } } } } /* --------------------------- Template Export Functions --------------------------- */ function export() { global $export_types; /* 'graph_template' should be the default */ if (!isset_request_var('export_type')) { set_request_var('export_type', 'host_template'); } $type_found = false; foreach($export_types as $id => $type) { $export_array[$id] = $type['name']; if (get_nfilter_request_var('export_type') == $id) { $type_found = true; } } if (!$type_found) { set_request_var('export_type', 'host_template'); } $form_template_export1 = array( 'export_type' => array( 'friendly_name' => __('What would you like to export?'), 'description' => __('Select the Template type that you wish to export from Cacti.'), 'method' => 'drop_array', 'value' => get_nfilter_request_var('export_type'), 'array' => $export_array, 'default' => 'host_template' ) ); $form_template_export2 = array( 'export_item_id' => array( 'friendly_name' => __('Device Template to Export'), 'description' => __('Choose the Template to export to XML.'), 'method' => 'drop_sql', 'value' => '0', 'default' => '0', 'sql' => $export_types[get_nfilter_request_var('export_type')]['dropdown_sql'] ), 'include_deps' => array( 'friendly_name' => __('Include Dependencies'), 'description' => __('Some templates rely on other items in Cacti to function properly. It is highly recommended that you select this box or the resulting import may fail.'), 'value' => 'on', 'method' => 'checkbox', 'default' => 'on' ), 'output_format' => array( 'friendly_name' => __('Output Format'), 'description' => __('Choose the format to output the resulting XML file in.'), 'method' => 'radio', 'value' => '3', 'default' => '0', 'items' => array( 0 => array( 'radio_value' => '1', 'radio_caption' => __('Output to the Browser (within Cacti)'), ), 1 => array( 'radio_value' => '2', 'radio_caption' => __('Output to the Browser (raw XML)'), ), 2 => array( 'radio_value' => '3', 'radio_caption' => __('Save File Locally') ) ) ) ); form_start('templates_export.php', 'export'); html_start_box( __('Export Templates'), '100%', '', '3', 'center', ''); draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => $form_template_export1 ) ); html_end_box(); html_start_box( __('Available Templates [%s]', $export_types[get_nfilter_request_var('export_type')]['name']), '100%', '', '3', 'center', ''); draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => $form_template_export2 ) ); form_hidden_box('save_component_export','1',''); html_end_box(); ?> get_request_var('local_graph_id'), 'results' => $results)); } else { echo __("FATAL: Spike Kill Not Allowed\n"); } cacti-1.1.38/snmpagent_persist.php0000664000175000017500000001325613264740213016542 0ustar tromantroman#!/usr/bin/php This script is only meant to run at the command line.'); } /* we are not talking to the browser */ $no_http_headers = true; /* let's report all errors */ error_reporting(E_ALL); /* allow the script to hang around waiting for connections. */ set_time_limit(0); chdir(dirname(__FILE__)); include_once('./include/global.php'); /* translate well-known textual conventions and SNMP base types to net-snmp */ $smi_base_datatypes = array( 'integer' => 'INTEGER', 'integer32' => 'Integer32', 'unsigned32' => 'Unsigned32', 'gauge' => 'Gauge', 'gauge32' => 'Gauge32', 'counter' => 'Counter', 'counter32' => 'Counter32', 'counter64' => 'Counter64', 'timeticks' => 'TimeTicks', 'octect string' => 'OCTET STRING', 'opaque' => 'Opaque', 'object identifier' => 'OBJECT IDENTIFIER', 'ipaddress' => 'IpAddress', 'networkaddress' => 'IpAddress', 'bits' => 'OCTET STRING', 'displaystring' => 'STRING', 'physaddress' => 'OCTET STRING', 'macaddress' => 'OCTET STRING', 'truthvalue' => 'INTEGER', 'testandincr' => 'Integer32', 'autonomoustype' => 'OBJECT IDENTIFIER', 'variablepointer' => 'OBJECT IDENTIFIER', 'rowpointer' => 'OBJECT IDENTIFIER', 'rowstatus' => 'INTEGER', 'timestamp' => 'TimeTicks', 'timeinterval' => 'Integer32', 'dateandtime' => 'STRING', 'storagetype' => 'INTEGER', 'tdomain' => 'OBJECT IDENTIFIER', 'taddress' => 'OCTET STRING' ); $data = false; $eol = "\n"; $cache = array(); $cache_last_refresh = false; /* start background caching process if not running */ $php = read_config_option('path_php_binary'); $extra_args = '-q "./snmpagent_mibcache.php"'; if(strstr(PHP_OS, 'WIN')) { /* windows part missing */ pclose(popen("start \"CactiSNMPCache\" /I /B \"" . $php . "\" " . $extra_args, "r")); } else { exec('ps -ef | grep -v grep | grep -v "sh -c" | grep snmpagent_mibcache.php', $output); if(!sizeof($output)) { exec($php . " " . $extra_args . " > /dev/null &"); } } /* activate circular reference collector */ gc_enable(); while(1) { $input = trim(fgets(STDIN)); switch($input) { case '': exit(0); case 'PING': fwrite(STDOUT, 'PONG' . $eol); cache_refresh(); break; case 'get': $oid = trim(fgets(STDIN)); if($data = cache_read($oid)) { fwrite(STDOUT, $oid . $eol . (isset($smi_base_datatypes[$data['type']]) ? $smi_base_datatypes[$data['type']] : 'INTEGER') . $eol . $data['value'] . $eol); }else { fwrite(STDOUT, 'NONE' . $eol); } break; case 'getnext': $oid = trim(fgets(STDIN)); if( $next_oid = cache_get_next($oid)) { if($data = cache_read($next_oid)) { fwrite(STDOUT, $next_oid . $eol . (isset($smi_base_datatypes[$data['type']]) ? $smi_base_datatypes[$data['type']] : 'INTEGER') . $eol . $data['value'] . $eol); }else { fwrite(STDOUT, 'NONE' . $eol); } }else { fwrite(STDOUT, 'NONE' . $eol); } break; case 'debug': fwrite(STDOUT, print_r($cache, true)); break; case 'shutdown': fwrite(STDOUT, 'BYE' . $eol); exit(0); } } function cache_read($oid) { global $cache; return (isset($cache[$oid]) && $cache[$oid]) ? $cache[$oid] : false; } function cache_get_next($oid) { global $cache; return (isset($cache[$oid]['next'])) ? $cache[$oid]['next'] : false; } function cache_refresh() { global $config, $cache, $cache_last_refresh; $path_mibcache = $config['base_path'] . '/cache/mibcache/mibcache.tmp'; $path_mibcache_lock = $config['base_path'] . '/cache/mibcache/mibcache.lock'; /* check temporary cache file */ clearstatcache(); $cache_refresh_time = @filemtime( $path_mibcache ); if($cache_refresh_time !== false) { /* initial phase */ if( $cache_last_refresh === false || $cache_refresh_time > $cache_last_refresh ) { while( is_file( $path_mibcache_lock ) !== false ) { sleep(1); clearstatcache(); } $cache = NULL; gc_collect_cycles(); $cache_last_refresh = $cache_refresh_time; include( $path_mibcache ); } } return; }cacti-1.1.38/snmpagent_mibcachechild.php0000664000175000017500000000766313264740213017615 0ustar tromantromanThis script is only meant to run at the command line."); } /* we are not talking to the browser */ $no_http_headers = true; /* let's report all errors */ error_reporting(E_ALL); /* allow the script to hang around. */ set_time_limit(0); chdir(dirname(__FILE__)); include_once('./include/global.php'); $last_time = time()-30; $path_mibcache = $config['base_path'] . '/cache/mibcache/mibcache.tmp'; $path_mibcache_lock = $config['base_path'] . '/cache/mibcache/mibcache.lock'; /* check mib cache table status */ $mibcache_changed = db_fetch_cell_prepared("SHOW TABLE STATUS WHERE `Name` LIKE 'snmpagent_cache' AND (UNIX_TIMESTAMP(`Update_time`)) >= ?", array($last_time)); if($mibcache_changed !== NULL || file_exists($path_mibcache) === false ) { $objects = db_fetch_assoc("SELECT `oid`, LOWER(type) as type, `otype`, `max-access`, `value` FROM snmpagent_cache"); if($objects && sizeof($objects)>0) { $oids = array(); foreach($objects as &$object) { $oids[] = $object['oid']; $object = ($object['otype'] == 'DATA' && $object['max-access'] != 'not-accessible') ? array('type' => $object['type'], 'value' => $object['value']) : false; } /* natural sorting with MySQL is not available - especially not for OIDs */ natsort($oids); $last_accessible_object = false; $next_accessible_object_required = array(); foreach($oids as $key => $oid) { if($objects[$key]) { if($last_accessible_object) { $cache[$last_accessible_object]['next'] = $oid; } if(sizeof($next_accessible_object_required)>0) { foreach($next_accessible_object_required as $next_accessible_object_required_oid) { $cache[$next_accessible_object_required_oid]['next'] = $oid; } $next_accessible_object_required = array(); } $last_accessible_object = $oid; }else { $next_accessible_object_required[] = $oid; } $cache[$oid] = $objects[$key]; } } /* create lock file */ $lock = fopen($path_mibcache_lock, 'w'); /* Note: If SNMPAgent plugin has been disabled the cache will be truncated automatically */ file_put_contents($path_mibcache, ' cacti-1.1.38/snmpagent_mibcache.php0000664000175000017500000000523713264740213016604 0ustar tromantromanThis script is only meant to run at the command line."); } /* we are not talking to the browser */ $no_http_headers = true; /* let's report all errors */ error_reporting(E_ALL); /* allow the script to hang around. */ set_time_limit(0); chdir(dirname(__FILE__)); include_once('./include/global.php'); $path_mibcache = $config['base_path'] . '/cache/mibcache/mibcache.tmp'; $path_mibcache_lock = $config['base_path'] . '/cache/mibcache/mibcache.lock'; /* remove temporary cache */ @unlink($path_mibcache); /* remove lock file */ @unlink($path_mibcache_lock); /* start background caching process if not running */ $php = read_config_option("path_php_binary"); $extra_args = " \"./snmpagent_mibcachechild.php\""; while(1) { if(strstr(PHP_OS, "WIN")) { popen("start \"CactiSNMPCacheChild\" /I \"" . $php . "\" " . $extra_args, "r"); } else { exec($php . " " . $extra_args . " > /dev/null &"); } sleep(30 - time() % 30); } ?> cacti-1.1.38/sites.php0000664000175000017500000004240413264740213014121 0ustar tromantroman __('Delete') ); /* file: sites.php, action: edit */ $fields_site_edit = array( 'spacer0' => array( 'method' => 'spacer', 'friendly_name' => __('Site Information'), 'collapsible' => 'true' ), 'name' => array( 'method' => 'textbox', 'friendly_name' => __('Name'), 'description' => __('The primary name for the Site.'), 'value' => '|arg1:name|', 'size' => '50', 'default' => __('New Site'), 'max_length' => '100' ), 'address1' => array( 'method' => 'textbox', 'friendly_name' => __('Address1'), 'description' => __('The primary address for the Site.'), 'value' => '|arg1:address1|', 'placeholder' => __('Enter the Site Address'), 'size' => '70', 'max_length' => '100' ), 'address2' => array( 'method' => 'textbox', 'friendly_name' => __('Address2'), 'description' => __('Additional address information for the Site.'), 'value' => '|arg1:address2|', 'placeholder' => __('Additional Site Address information'), 'size' => '70', 'max_length' => '100' ), 'city' => array( 'method' => 'textbox', 'friendly_name' => __('City'), 'description' => __('The city or locality for the Site.'), 'value' => '|arg1:city|', 'placeholder' => __('Enter the City or Locality'), 'size' => '30', 'max_length' => '30' ), 'state' => array( 'method' => 'textbox', 'friendly_name' => __('State'), 'description' => __('The state for the Site.'), 'value' => '|arg1:state|', 'placeholder' => __('Enter the state'), 'size' => '15', 'max_length' => '20' ), 'postal_code' => array( 'method' => 'textbox', 'friendly_name' => __('Postal/Zip Code'), 'description' => __('The postal or zip code for the Site.'), 'value' => '|arg1:postal_code|', 'placeholder' => __('Enter the postal code'), 'size' => '20', 'max_length' => '20' ), 'country' => array( 'method' => 'textbox', 'friendly_name' => __('Country'), 'description' => __('The country for the Site.'), 'value' => '|arg1:country|', 'placeholder' => __('Enter the country'), 'size' => '20', 'max_length' => '30' ), 'timezone' => array( 'method' => 'drop_callback', 'friendly_name' => __('TimeZone'), 'description' => __('The TimeZone for the Site.'), 'sql' => 'SELECT Name AS id, Name AS name FROM mysql.time_zone_name ORDER BY name', 'action' => 'ajax_tz', 'id' => '|arg1:timezone|', 'value' => '|arg1:timezone|' ), 'latitude' => array( 'method' => 'textbox', 'friendly_name' => __('Latitude'), 'description' => __('The Latitude for this Site.'), 'value' => '|arg1:latitude|', 'placeholder' => __('example 38.889488'), 'size' => '20', 'max_length' => '30' ), 'longitude' => array( 'method' => 'textbox', 'friendly_name' => __('Longitude'), 'description' => __('The Longitude for this Site.'), 'value' => '|arg1:longitude|', 'placeholder' => __('example -77.0374678'), 'size' => '20', 'max_length' => '30' ), 'notes' => array( 'method' => 'textarea', 'friendly_name' => __('Site Notes'), 'textarea_rows' => '3', 'textarea_cols' => '70', 'description' => __('Additional area use for random notes related to this Site.'), 'value' => '|arg1:notes|', 'max_length' => '255', 'placeholder' => __('Enter some useful information about the Site.'), 'class' => 'textAreaNotes' ), 'alternate_id' => array( 'method' => 'textbox', 'friendly_name' => __('Alternate Name'), 'description' => __('Used for cases where a Site has an alternate named used to describe it'), 'value' => '|arg1:alternate_id|', 'placeholder' => __('If the Site is known by another name enter it here.'), 'size' => '50', 'max_length' => '30' ), 'id' => array( 'method' => 'hidden_zero', 'value' => '|arg1:id|' ), 'save_component_site' => array( 'method' => 'hidden', 'value' => '1' ) ); /* set default action */ set_default_action(); switch (get_request_var('action')) { case 'save': form_save(); break; case 'actions': form_actions(); break; case 'ajax_tz': print json_encode(db_fetch_assoc_prepared('SELECT Name AS label, Name AS `value` FROM mysql.time_zone_name WHERE Name LIKE ? ORDER BY Name LIMIT ' . read_config_option('autocomplete_rows'), array('%' . get_nfilter_request_var('term') . '%'))); break; case 'edit': top_header(); site_edit(); bottom_footer(); break; default: top_header(); sites(); bottom_footer(); break; } /* -------------------------- Global Form Functions -------------------------- */ /* -------------------------- The Save Function -------------------------- */ function form_save() { if (isset_request_var('save_component_site')) { $save['id'] = get_filter_request_var('id'); $save['name'] = form_input_validate(get_nfilter_request_var('name'), 'name', '', false, 3); $save['address1'] = form_input_validate(get_nfilter_request_var('address1'), 'address1', '', true, 3); $save['address2'] = form_input_validate(get_nfilter_request_var('address2'), 'address2', '', true, 3); $save['city'] = form_input_validate(get_nfilter_request_var('city'), 'city', '', true, 3); $save['state'] = form_input_validate(get_nfilter_request_var('state'), 'state', '', true, 3); $save['postal_code'] = form_input_validate(get_nfilter_request_var('postal_code'), 'postal_code', '', true, 3); $save['country'] = form_input_validate(get_nfilter_request_var('country'), 'country', '', true, 3); $save['timezone'] = form_input_validate(get_nfilter_request_var('timezone'), 'timezone', '', true, 3); $save['latitude'] = form_input_validate(get_nfilter_request_var('latitude'), 'latitude', '^-?[0-9]\d*(\.\d+)?$', true, 3); $save['longitude'] = form_input_validate(get_nfilter_request_var('longitude'), 'longitude', '^-?[0-9]\d*(\.\d+)?$', true, 3); $save['alternate_id'] = form_input_validate(get_nfilter_request_var('alternate_id'), 'alternate_id', '', true, 3); $save['notes'] = form_input_validate(get_nfilter_request_var('notes'), 'notes', '', true, 3); if (!is_error_message()) { $site_id = sql_save($save, 'sites'); if ($site_id) { raise_message(1); } else { raise_message(2); } } header('Location: sites.php?header=false&action=edit&id=' . (empty($site_id) ? get_nfilter_request_var('id') : $site_id)); } } /* ------------------------ The 'actions' function ------------------------ */ function form_actions() { global $site_actions; /* ================= input validation ================= */ get_filter_request_var('drp_action', FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => '/^([a-zA-Z0-9_]+)$/'))); /* ==================================================== */ /* if we are to save this form, instead of display it */ if (isset_request_var('selected_items')) { $selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items')); if ($selected_items != false) { if (get_nfilter_request_var('drp_action') == '1') { /* delete */ db_execute('DELETE FROM sites WHERE ' . array_to_sql_or($selected_items, 'id')); db_execute('UPDATE host SET site_id=0 WHERE ' . array_to_sql_or($selected_items, 'site_id')); } } header('Location: sites.php?header=false'); exit; } /* setup some variables */ $site_list = ''; $i = 0; /* loop through each of the graphs selected on the previous page and get more info about them */ foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ $site_list .= '
  • ' . htmlspecialchars(db_fetch_cell_prepared('SELECT name FROM sites WHERE id = ?', array($matches[1]))) . '
  • '; $site_array[$i] = $matches[1]; $i++; } } top_header(); form_start('sites.php'); html_start_box($site_actions[get_nfilter_request_var('drp_action')], '60%', '', '3', 'center', ''); if (isset($site_array) && sizeof($site_array)) { if (get_nfilter_request_var('drp_action') == '1') { /* delete */ print "

    " . __n('Click \'Continue\' to delete the following Site. Note, all devices will be disassociated from this site.', 'Click \'Continue\' to delete all following Sites. Note, all devices will be disassociated from this site.', sizeof($site_array)) . "

      $site_list
    \n"; $save_html = " "; } } else { print "" . __('You must select at least one Site.') . "\n"; $save_html = ""; } print " $save_html \n"; html_end_box(); form_end(); bottom_footer(); } /* --------------------- Site Functions --------------------- */ function site_edit() { global $fields_site_edit; /* ================= input validation ================= */ get_filter_request_var('id'); /* ==================================================== */ if (!isempty_request_var('id')) { $site = db_fetch_row_prepared('SELECT * FROM sites WHERE id = ?', array(get_request_var('id'))); $header_label = __('Site [edit: %s]', htmlspecialchars($site['name'])); } else { $header_label = __('Site [new]'); } form_start('sites.php', 'site'); html_start_box($header_label, '100%', true, '3', 'center', ''); draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => inject_form_variables($fields_site_edit, (isset($site) ? $site : array())) ) ); html_end_box(true, true); form_save_button('sites.php', 'return'); } function sites() { global $site_actions, $item_rows; /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'name', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ) ); validate_store_request_vars($filters, 'sess_site'); /* ================= input validation ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } html_start_box( __('Sites'), '100%', '', '3', 'center', 'sites.php?action=edit'); ?>
    '> ' title=''> ' title=''>
    array('display' => __('Site Name'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __('The name of this Site.')), 'id' => array('display' => __('ID'), 'align' => 'right', 'sort' => 'ASC', 'tip' => __('The unique id associated with this Site.')), 'hosts' => array('display' => __('Devices'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __('The number of Devices associated with this Site.')), 'city' => array('display' => __('City'), 'align' => 'left', 'sort' => 'DESC', 'tip' => __('The City associated with this Site.')), 'state' => array('display' => __('State'), 'align' => 'left', 'sort' => 'DESC', 'tip' => __('The State associated with this Site.')), 'country' => array('display' => __('Country'), 'align' => 'left', 'sort' => 'DESC', 'tip' => __('The Country associated with this Site.'))); html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false); $i = 0; if (sizeof($site_list)) { foreach ($site_list as $site) { form_alternate_row('line' . $site['id'], true); form_selectable_cell(filter_value($site['name'], get_request_var('filter'), 'sites.php?action=edit&id=' . $site['id']), $site['id']); form_selectable_cell($site['id'], $site['id'], '', 'right'); form_selectable_cell(number_format_i18n($site['hosts'], '-1'), $site['id'], '', 'right'); form_selectable_cell($site['city'], $site['id'], '', 'left'); form_selectable_cell($site['state'], $site['id'], '', 'left'); form_selectable_cell($site['country'], $site['id'], '', 'left'); form_checkbox_cell($site['name'], $site['id']); form_end_row(); } } else { print "" . __('No Sites Found') . "\n"; } html_end_box(false); if (sizeof($site_list)) { print $nav; } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($site_actions); form_end(); } cacti-1.1.38/settings.php0000664000175000017500000010050613264740213014630 0ustar tromantroman 'sanitize_search_string')); switch (get_request_var('action')) { case 'save': $errors = array(); foreach ($settings{get_request_var('tab')} as $field_name => $field_array) { if (($field_array['method'] == 'header') || ($field_array['method'] == 'spacer' )){ /* do nothing */ } elseif ($field_array['method'] == 'checkbox') { if (isset_request_var($field_name)) { db_execute_prepared("REPLACE INTO settings (name, value) VALUES (?, 'on')", array($field_name)); } else { db_execute_prepared("REPLACE INTO settings (name, value) VALUES (?, '')", array($field_name)); } } elseif ($field_array['method'] == 'checkbox_group') { foreach ($field_array['items'] as $sub_field_name => $sub_field_array) { if (isset_request_var($sub_field_name)) { db_execute_prepared("REPLACE INTO settings (name, value) VALUES (?, 'on')", array($sub_field_name)); } else { db_execute_prepared("REPLACE INTO settings (name, value) VALUES (?, '')", array($sub_field_name)); } } } elseif ($field_array['method'] == 'dirpath') { if (get_nfilter_request_var($field_name) != '' && !is_dir(get_nfilter_request_var($field_name))) { $_SESSION['sess_error_fields'][$field_name] = $field_name; $_SESSION['sess_field_values'][$field_name] = get_nfilter_request_var($field_name); $errors[8] = 8; } else { db_execute_prepared('REPLACE INTO settings (name, value) VALUES (?, ?)', array($field_name, get_nfilter_request_var($field_name))); } } elseif ($field_array['method'] == 'filepath') { if (get_nfilter_request_var($field_name) != '' && !is_file(get_nfilter_request_var($field_name))) { $_SESSION['sess_error_fields'][$field_name] = $field_name; $_SESSION['sess_field_values'][$field_name] = get_nfilter_request_var($field_name); $errors[36] = 36; } else { $continue = true; if ($field_name == 'path_cactilog') { $extension = pathinfo(get_nfilter_request_var($field_name), PATHINFO_EXTENSION); if ($extension != 'log') { $_SESSION['sess_error_fields'][$field_name] = $field_name; $_SESSION['sess_field_values'][$field_name] = get_nfilter_request_var($field_name); $errors[9] = 9; $continue = false; } } if ($continue) { db_execute_prepared('REPLACE INTO settings (name, value) VALUES (?, ?)', array($field_name, get_nfilter_request_var($field_name))); } } } elseif ($field_array['method'] == 'textbox_password') { if (get_nfilter_request_var($field_name) != get_nfilter_request_var($field_name . '_confirm')) { $_SESSION['sess_error_fields'][$field_name] = $field_name; $_SESSION['sess_field_values'][$field_name] = get_nfilter_request_var($field_name); $errors[4] = 4; break; } elseif (!isempty_request_var($field_name)) { db_execute_prepared('REPLACE INTO settings (name, value) VALUES (?, ?)', array($field_name, get_nfilter_request_var($field_name))); } } elseif ((isset($field_array['items'])) && (is_array($field_array['items']))) { foreach ($field_array['items'] as $sub_field_name => $sub_field_array) { if (isset_request_var($sub_field_name)) { db_execute_prepared('REPLACE INTO settings (name, value) VALUES (?, ?)', array($sub_field_name, get_nfilter_request_var($sub_field_name))); } } } elseif ($field_array['method'] == 'drop_multi') { if (isset_request_var($field_name)) { if (is_array(get_nfilter_request_var($field_name))) { db_execute_prepared('REPLACE INTO settings (name, value) VALUES (?, ?)', array($field_name, implode(',', get_nfilter_request_var($field_name)))); } else { db_execute_prepared('REPLACE INTO settings (name, value) VALUES (?, ?)', array($field_name, get_nfilter_request_var($field_name))); } } else { db_execute_prepared('REPLACE INTO settings (name, value) VALUES (?, "")', array($field_name)); } } elseif (isset_request_var($field_name)) { if (is_array(get_nfilter_request_var($field_name))) { db_execute_prepared('REPLACE INTO settings (name, value) VALUES (?, ?)', array($field_name, implode(',', get_nfilter_request_var($field_name)))); } else { db_execute_prepared('REPLACE INTO settings (name, value) VALUES (?, ?)', array($field_name, get_nfilter_request_var($field_name))); } } } if (isset_request_var('log_verbosity')) { if (!isset_request_var('selective_debug')) { db_execute('REPLACE INTO settings (name, value) VALUES ("selective_debug", "")'); } if (!isset_request_var('selective_plugin_debug')) { db_execute('REPLACE INTO settings (name, value) VALUES ("selective_plugin_debug", "")'); } } /* update snmpcache */ snmpagent_global_settings_update(); api_plugin_hook_function('global_settings_update'); if (sizeof($errors) == 0) { raise_message(1); } else { raise_message(35); foreach($errors as $error) { raise_message($error); } } /* reset local settings cache so the user sees the new settings */ kill_session_var('sess_config_array'); if (isset_request_var('header') && get_nfilter_request_var('header') == 'false') { header('Location: settings.php?header=false&tab=' . get_request_var('tab')); } else { header('Location: settings.php?tab=' . get_request_var('tab')); } break; case 'send_test': email_test(); break; default: top_header(); /* set the default settings category */ if (!isset_request_var('tab')) { /* there is no selected tab; select the first one */ if (isset($_SESSION['sess_settings_tab'])) { $current_tab = $_SESSION['sess_settings_tab']; } else { $current_tab = array_keys($tabs); $current_tab = $current_tab[0]; } } else { $current_tab = get_request_var('tab'); } // If the tab no longer exists, use the first if (!isset($tabs[$current_tab])) { $current_tab = array_keys($tabs); $current_tab = $current_tab[0]; } $_SESSION['sess_settings_tab'] = $current_tab; $system_tabs = array('general', 'path', 'snmp', 'poller', 'data', 'visual', 'authentication', 'boost', 'spikes', 'mail'); /* draw the categories tabs on the top of the page */ print "
    \n"; print "
    \n"; print "
    \n"; form_start('settings.php', 'chk'); html_start_box( __('Cacti Settings (%s)', $tabs[$current_tab]), '100%', true, '3', 'center', ''); $form_array = array(); if (isset($settings[$current_tab])) { foreach ($settings[$current_tab] as $field_name => $field_array) { $form_array += array($field_name => $field_array); if ((isset($field_array['items'])) && (is_array($field_array['items']))) { foreach ($field_array['items'] as $sub_field_name => $sub_field_array) { if (config_value_exists($sub_field_name)) { $form_array[$field_name]['items'][$sub_field_name]['form_id'] = 1; } $form_array[$field_name]['items'][$sub_field_name]['value'] = db_fetch_cell_prepared('SELECT value FROM settings WHERE name = ?', array($sub_field_name)); } } else { if (config_value_exists($field_name)) { $form_array[$field_name]['form_id'] = 1; } $form_array[$field_name]['value'] = db_fetch_cell_prepared('SELECT value FROM settings WHERE name = ?', array($field_name)); } } } draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => $form_array ) ); html_end_box(true, true); form_hidden_box('tab', $current_tab, ''); form_save_button('', 'save'); ?> ; close(PROCESS); $webhits =~ s/[\s]*([0-9]+).*//; print $1; cacti-1.1.38/scripts/weatherbug.pl0000664000175000017500000000152113264740213016435 0ustar tromantroman#!/usr/bin/perl $output = `/bin/bash -c 'wget --quiet -O - \"http:\/\/wisapidata.weatherbug.com\/WxDataISAPI\/WxDataISAPI.dll?Magic=10991&RegNum=3647055&ZipCode=17241&StationID=NWVLL&Units=0&Version=2.7&Fore=1&t=1015084854\/"'`; $output =~ s/[^-0-9|\|.]*//gi; @weather = split(/\|/, $output); # docs # [0] - ID? # [1] - Current Time # [2] - Current Date # [3] - Current Temperature # [5] - Wind Speed (MPH) # [7] - Gust Wind Speed (MPH) # [10] - Barometer (Moisture) # [11] - Humidity (%) # [12] - High Tempurature # [13] - Low Temperature # [14] - Dew Point # [15] - Wind Chill print "current_temp:" . $weather[3] . " wind_speed:" . $weather[5] . " barometer:" . $weather[10] . " humidity:" . $weather[11] . " high_temp:" . $weather[12] . " low_temp:" . $weather[13] . " dew_point_temp:" . $weather[14] . " wind_chill_temp:" . $weather[15]; cacti-1.1.38/scripts/unix_users.pl0000664000175000017500000000060213264740213016503 0ustar tromantroman#!/usr/bin/perl delete @ENV{qw(PATH)}; $ENV{PATH} = "/usr/bin:/bin"; $path = $ENV{'PATH'}; my $grep_string= $ARGV[0]; ($grep_string) = $grep_string =~ /^([\w]+)$/; chomp $grep_string; if ($grep_string eq '') { open(PROCESS, "who | grep -c : |"); }else{ open(PROCESS, "who | grep : | grep -c $grep_string |"); } $output = ; close(PROCESS); chomp($output); print $output; cacti-1.1.38/scripts/unix_tcp_connections.pl0000664000175000017500000000062513264740213020537 0ustar tromantroman#!/usr/bin/perl delete @ENV{qw(PATH)}; $ENV{PATH} = "/usr/bin:/bin"; $path = $ENV{'PATH'}; my $grep_string= $ARGV[0]; ($grep_string) = $grep_string =~ /^([\w]+)$/; chomp $grep_string; if ($grep_string eq '') { open(PROCESS, "netstat -n | grep -c tcp | "); }else{ open(PROCESS, "netstat -n | grep tcp | grep -c $grep_string |"); } $output = ; close(PROCESS); chomp($output); print $output; cacti-1.1.38/scripts/unix_processes.pl0000664000175000017500000000030613264740213017351 0ustar tromantroman#!/usr/bin/perl delete @ENV{qw(PATH)}; $ENV{PATH} = "/usr/bin:/bin"; $path = $ENV{'PATH'}; open(PROCESS, "ps ax | grep -c : |"); $output = ; close(PROCESS); chomp($output); print $output; cacti-1.1.38/scripts/ss_sql.php0000664000175000017500000000226213264740213015763 0ustar tromantromanThis script is only meant to run at the command line."); } /* display no errors */ error_reporting(0); if (!isset($called_by_script_server)) { include_once(dirname(__FILE__) . "/../include/global.php"); print call_user_func("ss_sql"); } function ss_sql() { global $database_username; global $database_password; global $database_hostname; if ($database_password != "") { $result = `mysqladmin --host=$database_hostname --user=$database_username --password=$database_password status`; } else { $result = `mysqladmin --host=$database_hostname --user=$database_username status`; } $result = preg_replace("/: /", ":", $result); $result = preg_replace("/ /", " ", $result); $result = preg_replace("/Slow queries/", "SlowQueries", $result); $result = preg_replace("/Open tables/", "OpenTables", $result); $result = preg_replace("/Queries per second avg/", "QPS", $result); $result = preg_replace("/Flush tables/", "FlushTables", $result); return trim($result); } cacti-1.1.38/scripts/ss_net_snmp_disk_io.php0000664000175000017500000001223613264740213020512 0ustar tromantromanThis script is only meant to run at the command line.'); } $no_http_headers = true; if (isset($config)) { include_once(dirname(__FILE__) . '/../lib/snmp.php'); } if (!isset($called_by_script_server)) { include_once(dirname(__FILE__) . '/../include/global.php'); include_once(dirname(__FILE__) . '/../lib/snmp.php'); array_shift($_SERVER['argv']); print call_user_func_array('ss_net_snmp_disk_io', $_SERVER['argv']); } function ss_net_snmp_disk_io($host_id_or_hostname) { global $environ, $poller_id, $config; if (!is_numeric($host_id_or_hostname)) { $host_id = db_fetch_cell_prepared('SELECT id FROM host WHERE hostname = ?', array($host_id_or_hostname)); } else { $host_id = $host_id_or_hostname; } if ($config['cacti_server_os'] == 'win32') { $tmpdir = getenv('TEMP'); } else { $tmpdir = '/tmp'; } if ($environ != 'realtime') { $tmpdir = $tmpdir . '/cacti/net-snmp-devio'; $tmpfile = $host_id . '_io'; } else { $tmpdir = $tmpdir . '/cacti/net-snmp-devio'; $tmpfile = $host_id . '_' . $poller_id . '_io_rt'; } if (!is_dir($tmpdir)) { mkdir($tmpdir, 0777, true); } $previous = array(); $found = false; if (file_exists("$tmpdir/$tmpfile")) { $previous = json_decode(file_get_contents("$tmpdir/$tmpfile"), true); $found = true; } $indexes = array(); $host = db_fetch_row_prepared('SELECT * FROM host WHERE id = ?', array($host_id)); $uptime = cacti_snmp_get($host['hostname'], $host['snmp_community'], '.1.3.6.1.2.1.1.3.0', $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_port'], $host['snmp_timeout'], $host['ping_retries'], $host['max_oids'], SNMP_POLLER, $host['snmp_engine_id']); $current['uptime'] = $uptime; $names = cacti_snmp_walk($host['hostname'], $host['snmp_community'], '.1.3.6.1.4.1.2021.13.15.1.1.2', $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_port'], $host['snmp_timeout'], $host['ping_retries'], $host['max_oids'], SNMP_POLLER, $host['snmp_engine_id']); foreach($names as $measure) { if (substr($measure['value'],0,2) == 'sd') { if (is_numeric(substr(strrev($measure['value']),0,1))) { continue; } $parts = explode('.', $measure['oid']); $indexes[$parts[sizeof($parts)-1]] = $parts[sizeof($parts)-1]; } } $reads = $writes = 0; if (sizeof($indexes)) { $iops = cacti_snmp_walk($host['hostname'], $host['snmp_community'], '.1.3.6.1.4.1.2021.13.15.1.1.5', $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_port'], $host['snmp_timeout'], $host['ping_retries'], $host['max_oids'], SNMP_POLLER, $host['snmp_engine_id']); foreach($iops as $measure) { $parts = explode('.', $measure['oid']); $index = $parts[sizeof($parts)-1]; if (array_key_exists($index, $indexes)) { if (!isset($previous['uptime'])) { $reads = 'U'; } elseif ($current['uptime'] < $previous['uptime']) { $reads = 'U'; } elseif (!isset($previous["dr$index"])) { $reads = 'U'; } elseif ($previous["dr$index"] > $measure['value']) { $reads += $measure['value'] + 4294967295 - $previous["dr$index"] - $previous["dr$index"]; } else { $reads += $measure['value'] - $previous["dr$index"]; } $current["dr$index"] = $measure['value']; } } $iops = cacti_snmp_walk($host['hostname'], $host['snmp_community'], '.1.3.6.1.4.1.2021.13.15.1.1.6', $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_port'], $host['snmp_timeout'], $host['ping_retries'], $host['max_oids'], SNMP_POLLER, $host['snmp_engine_id']); foreach($iops as $measure) { $parts = explode('.', $measure['oid']); $index = $parts[sizeof($parts)-1]; if (array_key_exists($index, $indexes)) { if (!isset($previous['uptime'])) { $writes = 'U'; } elseif ($current['uptime'] < $previous['uptime']) { $writes = 'U'; } elseif (!isset($previous["dw$index"])) { $writes = 'U'; } elseif ($previous["dw$index"] > $measure['value']) { $writes += $measure['value'] + 4294967295 - $previous["dw$index"] - $previous["dw$index"]; } else { $writes += $measure['value'] - $previous["dw$index"]; } $current["dw$index"] = $measure['value']; } } $data = "'" . json_encode($current) . "'"; shell_exec("echo $data > $tmpdir/$tmpfile"); } if ($found) { return "reads:$reads writes:$writes"; } else { return 'reads:0 writes:0'; } } cacti-1.1.38/scripts/ss_net_snmp_disk_bytes.php0000664000175000017500000001242713264740213021233 0ustar tromantromanThis script is only meant to run at the command line.'); } $no_http_headers = true; if (isset($config)) { include_once(dirname(__FILE__) . '/../lib/snmp.php'); } if (!isset($called_by_script_server)) { include_once(dirname(__FILE__) . '/../include/global.php'); include_once(dirname(__FILE__) . '/../lib/snmp.php'); array_shift($_SERVER['argv']); print call_user_func_array('ss_net_snmp_disk_bytes', $_SERVER['argv']); } function ss_net_snmp_disk_bytes($host_id_or_hostname) { global $environ, $poller_id, $config; if (!is_numeric($host_id_or_hostname)) { $host_id = db_fetch_cell_prepared('SELECT id FROM host WHERE hostname = ?', array($host_id_or_hostname)); } else { $host_id = $host_id_or_hostname; } if ($config['cacti_server_os'] == 'win32') { $tmpdir = getenv('TEMP'); } else { $tmpdir = '/tmp'; } if ($environ != 'realtime') { $tmpdir = $tmpdir . '/cacti/net-snmp-devio'; $tmpfile = $host_id . '_bytes'; } else { $tmpdir = $tmpdir . '/cacti/net-snmp-devio'; $tmpfile = $host_id . '_' . $poller_id . '_bytes_rt'; } if (!is_dir($tmpdir)) { mkdir($tmpdir, 0777, true); } $found = false; $previous = array(); if (is_file("$tmpdir/$tmpfile")) { $previous = json_decode(file_get_contents("$tmpdir/$tmpfile"), true); $found = true; } $indexes = array(); $host = db_fetch_row_prepared('SELECT * FROM host WHERE id = ?', array($host_id)); $uptime = cacti_snmp_get($host['hostname'], $host['snmp_community'], '.1.3.6.1.2.1.1.3.0', $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_port'], $host['snmp_timeout'], $host['ping_retries'], $host['max_oids'], SNMP_POLLER, $host['snmp_engine_id']); $current['uptime'] = $uptime; $names = cacti_snmp_walk($host['hostname'], $host['snmp_community'], '.1.3.6.1.4.1.2021.13.15.1.1.2', $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_port'], $host['snmp_timeout'], $host['ping_retries'], $host['max_oids'], SNMP_POLLER, $host['snmp_engine_id']); foreach($names as $measure) { if (substr($measure['value'],0,2) == 'sd') { if (is_numeric(substr(strrev($measure['value']),0,1))) { continue; } $parts = explode('.', $measure['oid']); $indexes[$parts[sizeof($parts)-1]] = $parts[sizeof($parts)-1]; } } $bytesread = $byteswritten = 0; if (sizeof($indexes)) { $bytes = cacti_snmp_walk($host['hostname'], $host['snmp_community'], '.1.3.6.1.4.1.2021.13.15.1.1.12', $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_port'], $host['snmp_timeout'], $host['ping_retries'], $host['max_oids'], SNMP_POLLER, $host['snmp_engine_id']); foreach($bytes as $measure) { $parts = explode('.', $measure['oid']); $index = $parts[sizeof($parts)-1]; if (array_key_exists($index, $indexes)) { if (!isset($previous['uptime'])) { $bytesread = 'U'; } elseif ($current['uptime'] < $previous['uptime']) { $bytesread = 'U'; } elseif (!isset($previous["br$index"])) { $bytesread = 'U'; } elseif ($previous["br$index"] > $measure['value']) { $bytesread += $measure['value'] + 18446744073709551615 - $previous["br$index"] - $previous["br$index"]; } else { $bytesread += $measure['value'] - $previous["br$index"]; } $current["br$index"] = $measure['value']; } } $bytes = cacti_snmp_walk($host['hostname'], $host['snmp_community'], '.1.3.6.1.4.1.2021.13.15.1.1.13', $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_port'], $host['snmp_timeout'], $host['ping_retries'], $host['max_oids'], SNMP_POLLER, $host['snmp_engine_id']); foreach($bytes as $measure) { $parts = explode('.', $measure['oid']); $index = $parts[sizeof($parts)-1]; if (array_key_exists($index, $indexes)) { if (!isset($previous['uptime'])) { $byteswritten = 'U'; } elseif ($current['uptime'] < $previous['uptime']) { $byteswritten = 'U'; } elseif (!isset($previous["bw$index"])) { $byteswritten = 'U'; } elseif ($previous["bw$index"] > $measure['value']) { $byteswritten += $measure['value'] + 18446744073709551615 - $previous["bw$index"] - $previous["bw$index"]; } else { $byteswritten += $measure['value'] - $previous["bw$index"]; } $current["bw$index"] = $measure['value']; } } $data = "'" . json_encode($current) . "'"; shell_exec("echo $data > $tmpdir/$tmpfile"); } if ($found) { return "bytesread:$bytesread byteswritten:$byteswritten"; } else { return 'bytesread:0 byteswritten:0'; } } cacti-1.1.38/scripts/ss_host_disk.php0000664000175000017500000001131313264740213017150 0ustar tromantromanThis script is only meant to run at the command line.'); } global $config; $no_http_headers = true; /* display No errors */ error_reporting(0); if (!isset($called_by_script_server)) { include_once(dirname(__FILE__) . '/../include/global.php'); include_once(dirname(__FILE__) . '/../lib/snmp.php'); array_shift($_SERVER['argv']); print call_user_func_array('ss_host_disk', $_SERVER['argv']); }else{ include_once($config['library_path'] . '/snmp.php'); } function ss_host_disk($hostname, $host_id, $snmp_auth, $cmd, $arg1 = '', $arg2 = '') { $snmp = explode(':', $snmp_auth); $snmp_version = $snmp[0]; $snmp_port = $snmp[1]; $snmp_timeout = $snmp[2]; $ping_retries = $snmp[3]; $max_oids = $snmp[4]; $snmp_auth_username = ''; $snmp_auth_password = ''; $snmp_auth_protocol = ''; $snmp_priv_passphrase = ''; $snmp_priv_protocol = ''; $snmp_context = ''; $snmp_community = ''; if ($snmp_version == 3) { $snmp_auth_username = $snmp[6]; $snmp_auth_password = $snmp[7]; $snmp_auth_protocol = $snmp[8]; $snmp_priv_passphrase = $snmp[9]; $snmp_priv_protocol = $snmp[10]; $snmp_context = $snmp[11]; } else { $snmp_community = $snmp[5]; } $oids = array( 'total' => '.1.3.6.1.2.1.25.2.3.1.5', 'totalin' => '.1.3.6.1.2.1.25.2.3.1.5', 'used' => '.1.3.6.1.2.1.25.2.3.1.6', 'failures' => '.1.3.6.1.2.1.25.2.3.1.7', 'index' => '.1.3.6.1.2.1.25.2.3.1.1', 'description' => '.1.3.6.1.2.1.25.2.3.1.3', 'sau' => '.1.3.6.1.2.1.25.2.3.1.4' ); if ($cmd == 'index') { $return_arr = ss_host_disk_reindex( cacti_snmp_walk($hostname, $snmp_community, $oids['index'], $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids, SNMP_POLLER) ); for ($i=0;($i $host_id, 'arg' => $arg, 'index' => $index)); if (is_array($value)) { if (($arg == 'total') || ($arg == 'used')) { $sau = preg_replace('/[^0-9]/i', '', db_fetch_cell_prepared("SELECT field_value FROM host_snmp_cache WHERE host_id = ? AND field_name = 'hrStorageAllocationUnits' AND snmp_index = ?", array($host_id, $index))); $snmp_data = cacti_snmp_get($hostname, $snmp_community, $oids[$arg] . ".$index", $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, SNMP_POLLER); if ($snmp_data < 0) { return (abs($snmp_data) + 2147483647) * $sau; } elseif (is_numeric($snmp_data) && is_numeric($sau)) { return $snmp_data * $sau; } else { return 'U'; } } else { return cacti_snmp_get($hostname, $snmp_community, $oids[$arg] . ".$index", $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, SNMP_POLLER); } } else { return $value; } } } function ss_host_disk_reindex($arr) { $return_arr = array(); for ($i=0;($iThis script is only meant to run at the command line.'); } global $config; $no_http_headers = true; /* display No errors */ error_reporting(0); if (!isset($called_by_script_server)) { include_once(dirname(__FILE__) . '/../include/global.php'); include_once(dirname(__FILE__) . '/../lib/snmp.php'); array_shift($_SERVER['argv']); print call_user_func_array('ss_host_cpu', $_SERVER['argv']); }else{ include_once($config['library_path'] . '/snmp.php'); } function ss_host_cpu($hostname, $host_id, $snmp_auth, $cmd, $arg1 = '', $arg2 = '') { $snmp = explode(':', $snmp_auth); $snmp_version = $snmp[0]; $snmp_port = $snmp[1]; $snmp_timeout = $snmp[2]; $ping_retries = $snmp[3]; $max_oids = $snmp[4]; $snmp_auth_username = ''; $snmp_auth_password = ''; $snmp_auth_protocol = ''; $snmp_priv_passphrase = ''; $snmp_priv_protocol = ''; $snmp_context = ''; $snmp_community = ''; if ($snmp_version == 3) { $snmp_auth_username = $snmp[6]; $snmp_auth_password = $snmp[7]; $snmp_auth_protocol = $snmp[8]; $snmp_priv_passphrase = $snmp[9]; $snmp_priv_protocol = $snmp[10]; $snmp_context = $snmp[11]; } else { $snmp_community = $snmp[5]; } $oids = array( 'index' => '.1.3.6.1.2.1.25.3.3.1.2', 'usage' => '.1.3.6.1.2.1.25.3.3.1.2' ); if (($cmd == 'index')) { $value = api_plugin_hook_function('hmib_get_cpu_indexes', array('host_id' => $host_id)); if (is_array($value)) { $arr_index = ss_host_cpu_get_indexes($hostname, $snmp_community, $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids); foreach($arr_index as $value) { print $value . "\n"; } } else { $indexes = explode(',', $value); foreach($indexes as $index) { print $index . "\n"; } } } elseif (($cmd == 'num_indexes')) { $value = api_plugin_hook_function('hmib_get_cpu_indexes', array('host_id' => $host_id)); if (is_array($value)) { $arr_index = ss_host_cpu_get_indexes($hostname, $snmp_community, $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids); return sizeof($arr_index); } else { $indexes = explode(',', $value); return sizeof($indexes); } } elseif ($cmd == 'query') { $value = api_plugin_hook_function('hmib_get_cpu_indexes', array('host_id' => $host_id)); if (is_array($value)) { $arg = $arg1; $arr_index = ss_host_cpu_get_indexes($hostname, $snmp_community, $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids); $arr = ss_host_cpu_get_cpu_usage($hostname, $snmp_community, $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids); foreach ($arr_index as $index => $value) { if ($arg == 'usage') { print $index . '!' . $arr[$index] . "\n"; } elseif ($arg == 'index') { print $index . '!' . $value . "\n"; } } } else { $indexes = explode(',', $value); foreach($indexes as $index) { print $index . '!' . $index . "\n"; } } } elseif ($cmd == 'get') { $arg = $arg1; $index = rtrim($arg2); $value = api_plugin_hook_function('hmib_get_cpu', array('host_id' => $host_id, 'arg' => $arg, 'index' => $index)); if (is_array($value)) { $arr_index = ss_host_cpu_get_indexes($hostname, $snmp_community, $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids); $arr = ss_host_cpu_get_cpu_usage($hostname, $snmp_community, $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids); if (isset($arr_index[$index]) && isset($arr[$index])) { return $arr[$index]; } else { cacti_log('ERROR: Invalid Return Value in ss_host_cpu.php for get ' . $index . ' and host_id ' . $host_id, false); return 'U'; } } else { return $value; } } } function ss_host_cpu_get_cpu_usage($hostname, $snmp_community, $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids) { $arr = ss_host_cpu_reindex(cacti_snmp_walk($hostname, $snmp_community, '.1.3.6.1.2.1.25.3.3.1.2', $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids, SNMP_POLLER)); $return_arr = array(); $sum = 0; foreach($arr as $index => $value) { if (is_numeric($value)) { $return_arr[$index] = $value; $sum += $value; } } if (sizeof($return_arr)) { $return_arr[4000] = round($sum / sizeof($return_arr)); } else { $return_arr[4000] = 0; } return $return_arr; } function ss_host_cpu_get_indexes($hostname, $snmp_community, $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids) { $arr = ss_host_cpu_reindex(cacti_snmp_walk($hostname, $snmp_community, '.1.3.6.1.2.1.25.3.3.1.2', $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids, SNMP_POLLER)); $return_arr = array(); foreach($arr as $index => $value) { if (is_numeric($value)) { $return_arr[$index] = $index; } } $return_arr[4000] = 'Total'; return $return_arr; } function ss_host_cpu_reindex($arr) { $return_arr = array(); foreach($arr as $index => $value) { $return_arr[$index] = $value['value']; } return $return_arr; } cacti-1.1.38/scripts/ss_fping.php0000664000175000017500000000503213264740213016265 0ustar tromantromanThis script is only meant to run at the command line."); } /* display no errors */ error_reporting(0); include_once(dirname(__FILE__) . "/../include/global.php"); include_once(dirname(__FILE__) . "/../lib/snmp.php"); include_once(dirname(__FILE__) . "/../lib/ping.php"); if (!isset($called_by_script_server)) { array_shift($_SERVER["argv"]); print call_user_func_array("ss_fping", $_SERVER["argv"]); } //End header. function ss_fping($hostname, $ping_sweeps=6, $ping_type="ICMP", $port=80) { /* record start time */ list($micro,$seconds) = explode(" ", microtime()); $ss_fping_start = $seconds + $micro; $ping = new Net_Ping; $time = array(); $total_time = 0; $failed_results = 0; $ping->host["hostname"] = gethostbyname($hostname); $ping->retries = 1; $ping->port = $port; $max = 0.0; $min = 9999.99; $dev = 0.0; $script_timeout = read_config_option("script_timeout"); $ping_timeout = read_config_option("ping_timeout"); switch ($ping_type) { case "ICMP": $method = PING_ICMP; break; case "TCP": $method = PING_TCP; break; case "UDP": $method = PING_UDP; break; } $i = 0; while ($i < $ping_sweeps) { $result = $ping->ping(AVAIL_PING, $method, read_config_option("ping_timeout"), 1); if (!$result) { $failed_results++; } else { $time[$i] = $ping->ping_status; $total_time += $ping->ping_status; if ($ping->ping_status < $min) $min = $ping->ping_status; if ($ping->ping_status > $max) $max = $ping->ping_status; } $i++; /* get current time */ list($micro,$seconds) = explode(" ", microtime()); $ss_fping_current = $seconds + $micro; /* if called from script server, end one second before a timeout occurs */ if ((isset($called_by_script_server)) && (($ss_fping_current - $ss_fping_start + ($ping_timeout/1000) + 1) > $script_timeout)) { $ping_sweeps = $i; break; } } if ($failed_results == $ping_sweeps) { return "min:U avg:U max:U dev:U loss:100.00"; } else { $loss = ($failed_results/$ping_sweeps) * 100; $avg = $total_time/($ping_sweeps-$failed_results); /* calculate standard deviation */ $predev = 0; foreach($time as $sample) { $predev += pow(($sample-$avg),2); } $dev = sqrt($predev / count($time)); return sprintf("min:%0.4f avg:%0.4f max:%0.4f dev:%0.4f loss:%0.4f", $min, $avg, $max, $dev, $loss); } } cacti-1.1.38/scripts/ss_count_oids.php0000664000175000017500000000222013264740213017324 0ustar tromantroman 0) { $host = db_fetch_row("SELECT hostname, snmp_community, snmp_version, snmp_username, snmp_password, snmp_auth_protocol, snmp_priv_passphrase, snmp_priv_protocol, snmp_context, snmp_port, snmp_timeout, max_oids FROM host WHERE id=$hostid"); if (sizeof($host)) { $walk = cacti_snmp_walk($host['hostname'], $host['snmp_community'], $oid, $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_port'], $host['snmp_timeout'], read_config_option('snmp_retries'), $host['max_oids'], SNMP_WEBUI); if (sizeof($walk)) { return sizeof($walk); } } } return '0'; } ?> cacti-1.1.38/scripts/sql.php0000664000175000017500000000116013264740213015252 0ustar tromantromanThis script is only meant to run at the command line."); } error_reporting(0); include(dirname(__FILE__) . "/../include/global.php"); if ($database_password == "") { $sql = `mysqladmin -h $database_hostname -u $database_username status | awk '{print $6 }'`; } else { $sql = `mysqladmin -h $database_hostname -u $database_username -p$database_password status | awk '{print $6 }'`; } print trim($sql); cacti-1.1.38/scripts/query_unix_partitions.pl0000664000175000017500000000242513264740213020770 0ustar tromantroman#!/usr/bin/perl delete @ENV{qw(PATH)}; $ENV{PATH} = "/usr/bin:/bin"; $path = $ENV{'PATH'}; $val1 = $ARGV[0]; ($val1) = $val1 =~ /^([\w]+)$/; $val2 = $ARGV[1]; ($val2) = $val2 =~ /^([\w]+)$/; $val3 = $ARGV[2]; ($val3) = $val3 =~ /^([\w\/-]+)$/; if (($val1 ne "query") && ($val1 ne "get") && ($val1 ne "index") && ($val1 ne "num_indexes")) { print "usage:\n\n"; print "./query_unix_partitions.pl index\n"; print "./query_unix_partitions.pl num_indexes\n"; print "./query_unix_partitions.pl query {device,mount,total,used,available,percent}\n"; print "./query_unix_partitions.pl get {device,mount,total,used,available,percent} DEVICE\n"; exit; } open(DF, "/bin/df -P -k -l|"); $count=0; while () { #/dev/hda2 20157744 18553884 579860 97% /var if (/^(\/\S+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)%\s+(\/\S*)$/) { my %output = ( device => $1, mount => $6, total => $2, used => $3, available => $4, percent => $5 ); if ($val1 eq "index") { print "$1\n"; }elsif ($val1 eq "num_indexes") { $count++; }elsif (($val1 eq "get") && ($val3 eq $1)) { print $output{$val2}; }elsif ($val1 eq "query") { print "$output{device}:$output{$val2}\n"; } } } close(DF); if ($val1 eq "num_indexes") { print "$count\n"; } cacti-1.1.38/scripts/query_host_partitions.php0000664000175000017500000001024213264740213021132 0ustar tromantromanThis script is only meant to run at the command line."); } error_reporting(0); include(dirname(__FILE__) . "/../include/global.php"); include(dirname(__FILE__) . "/../lib/snmp.php"); $oids = array( "total" => ".1.3.6.1.2.1.25.2.3.1.5", "used" => ".1.3.6.1.2.1.25.2.3.1.6", "failures" => ".1.3.6.1.2.1.25.2.3.1.7", "index" => ".1.3.6.1.2.1.25.2.3.1.1", "description" => ".1.3.6.1.2.1.25.2.3.1.3", "sau" => ".1.3.6.1.2.1.25.2.3.1.4" ); $hostname = $_SERVER["argv"][1]; $host_id = $_SERVER["argv"][2]; $snmp_auth = $_SERVER["argv"][3]; $cmd = $_SERVER["argv"][4]; /* support for SNMP V2 and SNMP V3 parameters */ $snmp = explode(":", $snmp_auth); $snmp_version = $snmp[0]; $snmp_port = $snmp[1]; $snmp_timeout = $snmp[2]; $ping_retries = $snmp[3]; $max_oids = $snmp[4]; $snmp_auth_username = ""; $snmp_auth_password = ""; $snmp_auth_protocol = ""; $snmp_priv_passphrase = ""; $snmp_priv_protocol = ""; $snmp_context = ""; $snmp_community = ""; if ($snmp_version == 3) { $snmp_auth_username = $snmp[6]; $snmp_auth_password = $snmp[7]; $snmp_auth_protocol = $snmp[8]; $snmp_priv_passphrase = $snmp[9]; $snmp_priv_protocol = $snmp[10]; $snmp_context = $snmp[11]; } else { $snmp_community = $snmp[5]; } /* * process INDEX requests */ if ($cmd == "index") { $return_arr = reindex(cacti_snmp_walk($hostname, $snmp_community, $oids["index"], $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids, SNMP_POLLER)); for ($i=0;($iThis script is only meant to run at the command line."); } error_reporting(0); include(dirname(__FILE__) . "/../include/global.php"); include(dirname(__FILE__) . "/../lib/snmp.php"); $oids = array( "index" => ".1.3.6.1.2.1.25.3.3.1", "usage" => ".1.3.6.1.2.1.25.3.3.1" ); $hostname = $_SERVER["argv"][1]; $host_id = $_SERVER["argv"][2]; $snmp_auth = $_SERVER["argv"][3]; $cmd = $_SERVER["argv"][4]; /* support for SNMP V2 and SNMP V3 parameters */ $snmp = explode(":", $snmp_auth); $snmp_version = $snmp[0]; $snmp_port = $snmp[1]; $snmp_timeout = $snmp[2]; $ping_retries = $snmp[3]; $max_oids = $snmp[4]; $snmp_auth_username = ""; $snmp_auth_password = ""; $snmp_auth_protocol = ""; $snmp_priv_passphrase = ""; $snmp_priv_protocol = ""; $snmp_context = ""; $snmp_community = ""; if ($snmp_version == 3) { $snmp_auth_username = $snmp[6]; $snmp_auth_password = $snmp[7]; $snmp_auth_protocol = $snmp[8]; $snmp_priv_passphrase = $snmp[9]; $snmp_priv_protocol = $snmp[10]; $snmp_context = $snmp[11]; } else { $snmp_community = $snmp[5]; } /* * process INDEX requests */ if ($cmd == "index") { $arr_index = get_indexes($hostname, $snmp_community, $snmp_version, $snmp_auth_username, $snmp_auth_password, $snmp_auth_protocol, $snmp_priv_passphrase, $snmp_priv_protocol, $snmp_context, $snmp_port, $snmp_timeout, $ping_retries, $max_oids, SNMP_POLLER); for ($i=0;($i&1 | grep -E '(icmp_[s|r]eq.*time|unknown host|Unknown host|not supported|Name or service not known|No address associated with name)' 2>/dev/null |"); $ping = ; close(PROCESS); chomp($ping); if (($ping =~ 'unknown host') || ($ping =~ 'Unknown host') || ($ping =~ 'not supported') || ($ping =~ 'Name or service not known') || ($ping =~ 'No address associated with name')) { if ((-f '/bin/ping6') || (-f '/sbin/ping6')) { open(PROCESS, "ping6 -c 1 $host 2>&1 | grep 'icmp_[s|r]eq.*time' 2>/dev/null |"); $ping = ; close(PROCESS); chomp($ping); } } $ping =~ m/(.*time=)(.*) (ms|usec)/; if ($2 == '') { print 'U'; # avoid cacti errors, but do not fake rrdtool stats }elsif ($3 eq 'usec') { print $2/1000; # re-calculate in units of 'ms' }else{ print $2; } cacti-1.1.38/scripts/loadavg_multi.pl0000664000175000017500000000056213264740213017133 0ustar tromantroman#!/usr/bin/perl delete @ENV{qw(PATH)}; $ENV{PATH} = "/usr/bin:/bin"; $path = $ENV{'PATH'}; #get load avg for 1;5;10 min open(PROCESS, "env LC_ALL=C uptime |"); $avg = ; close(PROCESS); # 9:36pm up 15 days, 11:37, 2 users, load average: 0.14, 0.13, 0.10 $avg =~ s/^.*:\s(\d+\.\d{2}),?\s(\d+\.\d{2}),?\s(\d+\.\d{2})$//; print "1min:$1 5min:$2 10min:$3"; cacti-1.1.38/scripts/loadavg.pl0000664000175000017500000000103413264740213015714 0ustar tromantroman#!/usr/bin/perl delete @ENV{qw(PATH)}; $ENV{PATH} = "/usr/bin:/bin"; $path = $ENV{'PATH'}; $val1 = $ARGV[0]; ($val1) = $val1 =~ /^([\d]+)$/; #get load avg for 5;15;30 min open(PROCESS,"uptime |"); $avg = ; $avg =~ s/.*:\s*//; close(PROCESS); if ($val1 eq "5") { $avg = `echo "$avg" | awk '\{print \$1 \}'`; } if ($val1 eq "15") { $avg = `echo "$avg" | awk '\{print \$2 \}'`; } if ($val1 eq "30") { $avg = `echo "$avg" | awk '\{print \$3 \}'`; } chomp $avg; $avg =~ s/,//; $avg =~ s/\n//; print $avg; cacti-1.1.38/scripts/linux_memory.pl0000664000175000017500000000045613264740213017035 0ustar tromantroman#!/usr/bin/perl delete @ENV{qw(PATH)}; $ENV{PATH} = "/usr/bin:/bin"; $path = $ENV{'PATH'}; $val1 = $ARGV[0]; ($val1) = $val1 =~ /^([\w.:]+)$/; open(PROCESS, "cat /proc/meminfo | grep -w $val1 |"); foreach () { if ($_ =~ /($ARGV[0].*\s)(.*[0-9])( kB)/) { print $2; } } close(PROCESS); cacti-1.1.38/scripts/index.php0000664000175000017500000000005013264740213015557 0ustar tromantroman) { if ($_ =~ /($ARGV[0])(.* )(.*[0-9])(.* )(.*[0-9])(.* )(.*[0-9])(.* )(.*[0-9])%(.* )/) { print "megabytes:$7 percent:$9"; } } close(PROCESS); cacti-1.1.38/scripts/3com_cable_modem.pl0000664000175000017500000000030513264740213017447 0ustar tromantroman#!/usr/bin/perl open(PROCESS, "/bin/bash -c 'wget --quiet -O - http://192.168.100.1/cgibin/opcfg | grep \"10.18.18.11\" -c' |"); $status = ; close(PROCESS); chomp $status; print $status; cacti-1.1.38/script_server.php0000664000175000017500000002544513264740213015672 0ustar tromantromanThis script is only meant to run at the command line.'); } $no_http_headers = true; declare(ticks = 1); /* need to capture signals from users */ function sig_handler($signo) { global $include_file, $function, $parameters; switch ($signo) { case SIGTERM: case SIGINT: case SIGABRT: case SIGQUIT: case SIGSEGV: cacti_log("WARNING: Script Server terminated with signal '$signo' in file:'" . basename($include_file) . "', function:'$function', params:'$parameters'", false, 'PHPSVR'); db_close(); exit; break; default: cacti_log("WARNING: Script Server received signal '$signo' in file:'$include_file', function:'$function', params:'$parameters'", false, 'PHPSVR'); break; } } /* used for includes */ /* install signal handlers for UNIX only */ if (function_exists('pcntl_signal')) { pcntl_signal(SIGTERM, 'sig_handler'); pcntl_signal(SIGINT, 'sig_handler'); pcntl_signal(SIGABRT, 'sig_handler'); pcntl_signal(SIGQUIT, 'sig_handler'); pcntl_signal(SIGSEGV, 'sig_handler'); } error_reporting(0); include_once(dirname(__FILE__) . '/include/global.php'); /* define STDOUT/STDIN file descriptors if not running under CLI */ if (php_sapi_name() != 'cli') { define('STDIN', fopen('php://stdin', 'r')); define('STDOUT', fopen('php://stdout', 'w')); } /* signal for realtime */ global $environ, $poller_id; /* record the script start time */ $start = microtime(true); /* some debugging */ $pid = getmypid(); $ctr = 0; /* if multiple polling intervals are defined, compensate for them */ $polling_interval = read_config_option('poller_interval'); if (!empty($polling_interval)) { $num_polling_items = db_fetch_cell_prepared('SELECT count(*) FROM poller_item WHERE rrd_next_step <= 0 AND poller_id = ?', array($config['poller_id']), 'count(*)'); define('MAX_POLLER_RUNTIME', $polling_interval); } else { $num_polling_items = db_fetch_cell_prepared('SELECT count(*) FROM poller_item WHERE poller_id = ?', array($config['poller_id']), 'count(*)'); define('MAX_POLLER_RUNTIME', 300); } /* Let PHP only run 1 second longer than the max runtime */ ini_set('max_execution_time', MAX_POLLER_RUNTIME + 1); /* Record the calling environment */ if ($_SERVER['argc'] >= 2) { if ($_SERVER['argv'][1] == 'spine') $environ = 'spine'; else if (($_SERVER['argv'][1] == 'cmd.php') || ($_SERVER['argv'][1] == 'cmd')) $environ = 'cmd'; elseif ($_SERVER['argv'][1] == 'realtime') $environ = 'realtime'; else $environ = 'other'; if ($_SERVER['argc'] == 3) $poller_id = $_SERVER['argv'][2]; else $poller_id = 1; } else { $environ = 'cmd'; $poller_id = 1; } cacti_log('DEBUG: SERVER: ' . $environ, false, 'PHPSVR', POLLER_VERBOSITY_DEBUG); if ($config['cacti_server_os'] == 'win32') { cacti_log('DEBUG: GETCWD: ' . strtolower(strtr(getcwd(),"\\",'/')), false, 'PHPSVR', POLLER_VERBOSITY_DEBUG); cacti_log('DEBUG: DIRNAM: ' . strtolower(strtr(dirname(__FILE__),"\\",'/')), false, 'PHPSVR', POLLER_VERBOSITY_DEBUG); } else { cacti_log('DEBUG: GETCWD: ' . strtr(getcwd(),"\\",'/'), false, 'PHPSVR', POLLER_VERBOSITY_DEBUG); cacti_log('DEBUG: DIRNAM: ' . strtr(dirname(__FILE__),"\\",'/'), false, 'PHPSVR', POLLER_VERBOSITY_DEBUG); } cacti_log('DEBUG: FILENM: ' . __FILE__, false, 'PHPSVR', POLLER_VERBOSITY_DEBUG); /* send status back to the server */ cacti_log('PHP Script Server has Started - Parent is ' . $environ, false, 'PHPSVR', POLLER_VERBOSITY_HIGH); fputs(STDOUT, 'PHP Script Server has Started - Parent is ' . $environ . "\n"); fflush(STDOUT); /* process waits for input and then calls functions as required */ while (1) { $result = ''; $input_string = fgets(STDIN, 1024); $function = ''; $parameters = ''; $parameter_array = array(); if ($input_string !== false) { $input_string = trim($input_string); if (substr($input_string,0,4) == 'quit') { fputs(STDOUT, 'PHP Script Server Shutdown request received, exiting\n'); fflush(STDOUT); cacti_log('DEBUG: PHP Script Server Shutdown request received, exiting', false, 'PHPSVR', POLLER_VERBOSITY_DEBUG); db_close(); exit(0); } if ($input_string != '') { /* pull off the parameters */ $i = 0; while ( true ) { $pos = strpos($input_string, ' '); if ($pos > 0) { switch ($i) { case 0: /* cut off include file as first part of input string and keep rest for further parsing */ $include_file = trim(substr($input_string,0,$pos)); $input_string = trim(strchr($input_string, ' ')) . ' '; break; case 1: /* cut off function as second part of input string and keep rest for further parsing */ $function = trim(substr($input_string,0,$pos)); $input_string = trim(strchr($input_string, ' ')) . ' '; break; case 2: /* take the rest as parameter(s) to the function stripped off previously */ $parameters = trim($input_string); break 2; } } else { break; } $i++; } if (!parseArgs($parameters, $parameter_array)) { cacti_log("WARNING: Script Server count not parse '$parameters' for $function", false, 'PHPSVR'); fputs(STDOUT, "U\n"); fflush(STDOUT); continue; } cacti_log("DEBUG: PID[$pid] CTR[$ctr] INC: '". basename($include_file) . "' FUNC: '$function' PARMS: '" . implode('\', \'',$parameter_array) . "'", false, 'PHPSVR', POLLER_VERBOSITY_DEBUG); /* validate the existance of the function, and include if applicable */ if (!function_exists($function)) { if (file_exists($include_file)) { /* quirk in php on Windows, believe it or not.... */ /* path must be lower case */ if ($config['cacti_server_os'] == 'win32') { $include_file = strtolower($include_file); } /* set this variable so the calling script can determine if it was called * by the script server or stand-alone */ $called_by_script_server = true; /* turn on output buffering to avoid problems with nasty scripts */ ob_start(); include_once($include_file); ob_end_clean(); } else { cacti_log('WARNING: PHP Script File to be included, does not exist', false, 'PHPSVR'); } } if (function_exists($function)) { if ($parameters == '') { $result = call_user_func($function); } else { $result = call_user_func_array($function, $parameter_array); } fputs(STDOUT, trim($result) . "\n"); fflush(STDOUT); cacti_log("DEBUG: PID[$pid] CTR[$ctr] RESPONSE:'$result'", false, 'PHPSVR', POLLER_VERBOSITY_DEBUG); $ctr++; } else { cacti_log("WARNING: Function does not exist INC: '". basename($include_file) . "' FUNC: '" .$function . "' PARMS: '" . $parameters . "'", false, 'PHPSVR'); fputs(STDOUT, "U\n"); fflush(STDOUT); } } } else { cacti_log('ERROR: Input Expected, Script Server Terminating', false, 'PHPSVR'); fputs(STDOUT, "ERROR: Input Expected, Script Server Terminating\n"); fflush(STDOUT); exit (-1); } /* end the process if the runtime exceeds MAX_POLLER_RUNTIME */ if (($start + MAX_POLLER_RUNTIME) < time()) { cacti_log('Maximum runtime of ' . MAX_POLLER_RUNTIME . ' seconds exceeded for the Script Server. Exiting.', true, 'PHPSVR'); exit (-1); } } function parseArgs($string, &$str_list, $debug = false) { $delimiters = array("'",'"'); $delimited = false; $str_list = array(); if ($debug) echo "String: '" . $string . "'\n"; foreach($delimiters as $delimiter) { if (strpos($string, $delimiter) !== false) { $delimited = true; break; } } /* process the simple case */ if (!$delimited) { $str_list = explode(' ', $string); if ($debug) echo "Output: '" . implode(",", $str_list) . "'\n"; return true; } /* Break str down into an array of characters and process */ $char_array = str_split($string); $escaping = false; $indelim = false; $parse_ok = true; $curstr = ''; foreach($char_array as $char) { switch ($char) { case '\'': case '"': if (!$indelim) { if (!$escaping) { $indelim = true; } else { $curstr .= $char; $escaping = false; } } elseif (!$escaping) { $str_list[] = $curstr; $curstr = ''; $indelim = false; } elseif ($escaping) { $curstr .= $char; $escaping = false; } break; case '\\': if ($escaping) { $curstr .= $char; $escaping = false; } else { $escaping = true; } break; case ' ': if ($escaping) { $parse_ok = false; $msg = 'Parse error attempting to parse string'; } elseif ($indelim) { $curstr .= $char; } elseif ($curstr != '') { $str_list[] = $curstr; $curstr = ''; } break; case '`': $parse_ok = false; $msg = 'Backtic (`) characters not allowed'; break; default: if ($escaping) { $parse_ok = false; $msg = 'Parse error attempting to parse string'; } else { $curstr .= $char; } break; } if (!$parse_ok) { break; } } /* Add the last str to the string array */ if ($indelim || $escaping) { $parse_ok = false; $msg = 'Parse error attempting to parse string'; } if (!$parse_ok) { echo 'ERROR: ' . $msg . " '" . $string . "'\n"; } elseif ($curstr != '') { $str_list[] = $curstr; } if ($debug) echo "Output: '" . implode(",", $str_list) . "'\n"; return $parse_ok; } cacti-1.1.38/rrdcleaner.php0000664000175000017500000004477713264740213015132 0ustar tromantroman __x('dropdown action', 'Delete'), 3 => __x('dropdown action', 'Archive') ); $rra_path = $config['rra_path'] . '/'; /* set default action */ set_default_action(); if (isset_request_var('rescan')) { set_request_var('action', 'restart'); } switch(get_request_var('action')) { case 'actions' : top_header(); do_rrd(); /* show current table again */ list_rrd(); bottom_footer(); break; case 'restart' : top_header(); /* fill files name table */ rrdclean_fill_table(); list_rrd(); bottom_footer(); break; case 'remall' : case 'arcall' : top_header(); /* fill files name table */ remove_all_rrds(); list_rrd(); bottom_footer(); break; default : top_header(); /* fill files name table */ list_rrd(); bottom_footer(); break; } /* * Fill RRDCleaner's table */ function rrdclean_fill_table() { global $config, $rra_path; /* suppress warnings */ error_reporting(0); /* install the rrdclean error handler */ set_error_handler('rrdclean_error_handler'); /* delete old file names table */ rrdclean_truncate_tables(); get_files(); clearstatcache(); /* restore original error handler */ restore_error_handler(); } /* * Determine the last time the rrdcleaner table was updated */ function rrdcleaner_lastupdate() { $status = db_fetch_row("SHOW TABLE STATUS LIKE 'data_source_purge_temp'"); if (sizeof($status)) { return $status['Update_time']; } } /* * Delete RRDCleaner's intermediate tables */ function rrdclean_truncate_tables() { global $config; /* suppress warnings */ error_reporting(0); /* install the rrdclean error handler */ set_error_handler('rrdclean_error_handler'); $sql = 'TRUNCATE TABLE `data_source_purge_temp`'; db_execute($sql); /* clear old data_source_purge_action table */ $sql = 'TRUNCATE TABLE `data_source_purge_action`'; db_execute($sql); /* restore original error handler */ restore_error_handler(); } /* * PHP Error Handler */ function rrdclean_error_handler($errno, $errmsg, $filename, $linenum, $vars) { global $debug; if ($debug) { /* define all error types */ $errortype = array ( E_ERROR => 'Error', E_WARNING => 'Warning', E_PARSE => 'Parsing Error', E_NOTICE => 'Notice', E_CORE_ERROR => 'Core Error', E_CORE_WARNING => 'Core Warning', E_COMPILE_ERROR => 'Compile Error', E_COMPILE_WARNING => 'Compile Warning', E_USER_ERROR => 'User Error', E_USER_WARNING => 'User Warning', E_USER_NOTICE => 'User Notice', # E_STRICT => 'Runtime Notice', # E_RECOVERABLE_ERROR => 'Catchable Fatal Error' ); /* create an error string for the log */ $err = "ERRNO:'" . $errno . "' TYPE:'" . $errortype[$errno] . "' MESSAGE:'" . $errmsg . "' IN FILE:'" . $filename . "' LINE NO:'" . $linenum . "'"; /* let's ignore some lesser issues */ if (substr_count($errmsg, 'date_default_timezone')) return; if (substr_count($errmsg, 'Only variables')) return; print ('PROGERR: ' . $err . "\n"); # print_r($vars); print(''); } return; } /* * Find all unused files from Cacti tables * and get file system information for them */ function get_files() { global $config, $rra_path; /* suppress warnings */ error_reporting(0); /* install the rrdclean error handler */ set_error_handler('rrdclean_error_handler'); $files_unused = array (); $arc_path = read_config_option('rrd_archive'); if (substr_count($arc_path, $rra_path)) { $archive = true; $arcbase = basename($arc_path); } else { $archive = false; $arcbase = ''; } /* insert the files into the table from cacti */ db_execute("INSERT INTO data_source_purge_temp (local_data_id, data_template_id, name_cache, name, in_cacti) SELECT local_data_id, data_template_id, name_cache, replace(data_source_path, '/', '') AS file, '1' AS in_cacti FROM data_template_data WHERE local_data_id>0 ON DUPLICATE KEY UPDATE local_data_id=VALUES(local_data_id)"); $dir_iterator = new RecursiveDirectoryIterator($rra_path); $iterator = new RecursiveIteratorIterator($dir_iterator, RecursiveIteratorIterator::SELF_FIRST); $size = 0; $sql = array(); foreach ($iterator as $file) { if (substr($file->getPathname(),-3) == 'rrd' && !($archive && strstr($file->getPathname(), $arcbase . '/') !== false)) { $sql[] = "('" . str_replace($rra_path, '', $file->getPathname()) . "', " . $file->getSize() . ", '" . date('Y-m-d H:i:s', $file->getMTime()) . "',0)"; $size++; if ($size == 400) { db_execute('INSERT INTO data_source_purge_temp (name, size, last_mod, in_cacti) VALUES ' . implode(',', $sql) . ' ON DUPLICATE KEY UPDATE size=VALUES(size), last_mod=VALUES(last_mod)'); $size = 0; $sql = array(); } } } if ($size > 0) { db_execute('INSERT INTO data_source_purge_temp (name, size, last_mod, in_cacti) VALUES ' . implode(',', $sql) . ' ON DUPLICATE KEY UPDATE size=VALUES(size), last_mod=VALUES(last_mod)'); } /* restore original error handler */ restore_error_handler(); } /* * Display all rrd file entries */ function list_rrd() { global $config, $item_rows, $ds_actions, $rra_path; /* suppress warnings */ error_reporting(0); /* install the rrdclean error handler */ set_error_handler('rrdclean_error_handler'); /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'name', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ), 'age' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '0' ) ); validate_store_request_vars($filters, 'sess_rrdc'); /* ================= input validation and session storage ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } html_start_box( __('RRD Cleaner'), '100%', '', '3', 'center', ''); filter(); html_end_box(); $sql_where = 'WHERE in_cacti=0'; /* form the 'where' clause for our main sql query */ if (get_request_var('filter') != '') { $sql_where .= " AND (rc.name LIKE '%" . get_request_var('filter') . "%' OR rc.name_cache LIKE '%" . get_request_var('filter') . "%' OR dt.name LIKE '%" . get_request_var('filter') . "%')"; } $secsback = get_request_var('age'); if (get_request_var('age') == 0) { $sql_where .= " AND last_mod>='" . date("Y-m-d H:i:s", time()-(86400*7)) . "'"; } else { $sql_where .= " AND last_mod<='" . date("Y-m-d H:i:s", (time() - $secsback)) . "'"; } $total_rows = db_fetch_cell("SELECT COUNT(rc.name) FROM data_source_purge_temp AS rc LEFT JOIN data_template AS dt ON dt.id = rc.data_template_id $sql_where"); $total_size = db_fetch_cell("SELECT ROUND(SUM(size),2) FROM data_source_purge_temp AS rc LEFT JOIN data_template AS dt ON dt.id = rc.data_template_id $sql_where"); $sql_order = get_order_string(); $sql_limit = ' LIMIT ' . ($rows*(get_request_var('page')-1)) . ',' . $rows; $file_list = db_fetch_assoc("SELECT rc.id, rc.name, rc.last_mod, rc.size, rc.name_cache, rc.local_data_id, rc.data_template_id, dt.name AS data_template_name FROM data_source_purge_temp AS rc LEFT JOIN data_template AS dt ON dt.id = rc.data_template_id $sql_where $sql_order $sql_limit"); $nav = html_nav_bar($config['url_path'] . 'rrdcleaner.php?filter'. get_request_var('filter'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 8, __('RRD Files'), 'page', 'main'); form_start('rrdcleaner.php'); print $nav; html_start_box('', $width, '', '3', 'center', ''); $display_text = array( 'name' => array( __('RRD File Name'), 'ASC'), 'name_cache' => array( __('DS Name'), 'ASC'), 'local_data_id' => array( __('DS ID'), 'ASC'), 'data_template_id' => array( __('Template ID'), 'ASC'), 'data_template_name' => array( __('Template'), 'ASC'), 'last_mod' => array( __('Last Modified'), 'DESC'), 'size' => array( __('Size [KB]'), 'DESC') ); html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false); if (sizeof($file_list)) { foreach($file_list as $file) { $data_template_name = ((empty($file['data_template_name'])) ? 'None' : $file['data_template_name']); form_alternate_row('line' . $file['id'], true); form_selectable_cell(filter_value($file['name'], get_request_var('filter')), $file['id']); form_selectable_cell(filter_value($file['name_cache'], get_request_var('filter'), $config['url_path'] . 'data_sources.php?action=ds_edit&id=' . $file['local_data_id']), $file['id']); form_selectable_cell($file['local_data_id'] > 0 ? $file['local_data_id']:'' . __('Deleted') . '', $file['id']); form_selectable_cell($file['data_template_id'] > 0 ? $file['data_template_id']: '' . __('Deleted') . '', $file['id']); form_selectable_cell(filter_value($file['data_template_name'], get_request_var('filter')), $file['id']); form_selectable_cell($file['last_mod'], $file['id']); form_selectable_cell(round($file['size']/1024,2), $file['id']); form_checkbox_cell($file['id'], $file['id']); form_end_row(); } } else { print "" . __('No unused RRD Files') . "\n"; } html_end_box(false); if (sizeof($file_list)) { print $nav; } rrdcleaner_legend($total_size); draw_actions_dropdown($ds_actions); form_end(); /* restore original error handler */ restore_error_handler(); } function rrdcleaner_legend($total_size) { html_start_box('', '100%', '', '3', 'center', ''); print ''; print '' . __('Total Size [MB]:') . ' ' . round($total_size/1024/1024,2) . ''; print ''; print '' . __('Last Scan:') . ' ' . rrdcleaner_lastupdate() . ''; print ''; html_end_box(false); } function remove_all_rrds() { global $config, $rra_path; /* suppress warnings */ error_reporting(0); /* install the rrdclean error handler */ set_error_handler('rrdclean_error_handler'); $action = get_nfilter_request_var('raction'); /* add to data_source_purge_action table */ db_execute_prepared('INSERT INTO data_source_purge_action (name, local_data_id, action) SELECT name, local_data_id, ? AS action FROM data_source_purge_temp WHERE in_cacti = 0 ON DUPLICATE KEY UPDATE action = VALUES(action)', array($action)); /* remove the entries from the data_source_purge_temp location */ db_execute('DELETE FROM data_source_purge_temp WHERE in_cacti = 0'); /* restore original error handler */ restore_error_handler(); } /* * Read all checked list items and put them into * a temporary table for the poller */ function do_rrd() { global $config, $rra_path; /* suppress warnings */ error_reporting(0); /* install the rrdclean error handler */ set_error_handler('rrdclean_error_handler'); foreach ($_POST as $var => $val) { if (preg_match('/^chk_(.*)$/', $var, $matches)) { /* recreate the file name */ $unused_file = db_fetch_row_prepared('SELECT id, name, local_data_id FROM data_source_purge_temp WHERE id = ?', array($matches[1])); /* add to data_source_purge_action table */ $sql = "INSERT INTO data_source_purge_action (name, local_data_id, action) VALUES(?, ?, ?) ON DUPLICATE KEY UPDATE local_data_id = VALUES(local_data_id)"; db_execute_prepared($sql, array($unused_file['name'], $unused_file['local_data_id'], get_nfilter_request_var('drp_action'))); /* drop from data_source_purge table */ db_execute_prepared('DELETE FROM data_source_purge_temp WHERE id = ?', array($matches[1])); } } /* restore original error handler */ restore_error_handler(); } function filter() { global $item_rows; ?>
    '> '> '> ' name='rescan'> ' title=''> ' title=''>
    Require all denied # Apache 2.2 Order Allow,Deny Deny from all cacti-1.1.38/resource/0000775000175000017500000000000013264740213014104 5ustar tromantromancacti-1.1.38/resource/snmp_queries/0000775000175000017500000000000013264740213016616 5ustar tromantromancacti-1.1.38/resource/snmp_queries/net-snmp_disk.xml0000664000175000017500000000276713264740213022127 0ustar tromantroman Get Monitored Partitions .1.3.6.1.4.1.2021.9.1.1 dskDevice:dskIndex numeric |chosen_order_field| Index walk value input .1.3.6.1.4.1.2021.9.1.1 Mount Point walk value input .1.3.6.1.4.1.2021.9.1.2 Device Name walk value input .1.3.6.1.4.1.2021.9.1.3 Total Space walk value output .1.3.6.1.4.1.2021.9.1.6 Available Space walk value output .1.3.6.1.4.1.2021.9.1.7 Used Space walk value output .1.3.6.1.4.1.2021.9.1.8 Used Percent walk value output .1.3.6.1.4.1.2021.9.1.9 cacti-1.1.38/resource/snmp_queries/net-snmp_devio.xml0000664000175000017500000000470213264740213022272 0ustar tromantroman Get Disk I/O Queries a net-snmp host for a device I/O listing Get more Cacti graphs at http://www.rodre.com .1.3.6.1.4.1.2021.13.15.1.1.1 diskIODevice:diskIOIndex numeric |chosen_order_field| Index walk value input .1.3.6.1.4.1.2021.13.15.1.1.1 Device walk value input .1.3.6.1.4.1.2021.13.15.1.1.2 BytesRead walk value output .1.3.6.1.4.1.2021.13.15.1.1.12 BytesWritten walk value output .1.3.6.1.4.1.2021.13.15.1.1.13 DeviceReads walk value output .1.3.6.1.4.1.2021.13.15.1.1.5 DeviceWrites walk value output .1.3.6.1.4.1.2021.13.15.1.1.6 DiskIO-LoadAvg1min walk value output .1.3.6.1.4.1.2021.13.15.1.1.9 DiskIO-LoadAvg5min walk value output .1.3.6.1.4.1.2021.13.15.1.1.10 DiskIO-LoadAvg15min walk value output .1.3.6.1.4.1.2021.13.15.1.1.11 cacti-1.1.38/resource/snmp_queries/interface.xml0000664000175000017500000001564213264740213021310 0ustar tromantroman Get SNMP Interfaces Queries a host for a list of monitorable interfaces .1.3.6.1.2.1.2.2.1.1 .1.3.6.1.2.1.2.1.0 ifDescr:ifName:ifHwAddr:ifIndex numeric |chosen_order_field| Index walk value input .1.3.6.1.2.1.2.2.1.1 Status walk VALUE/REGEXP:[a-zA-Z]{1,}\(([1-]{1})+\)$ input-output .1.3.6.1.2.1.2.2.1.8 Description walk value input .1.3.6.1.2.1.2.2.1.2 Name (IF-MIB) walk value input .1.3.6.1.2.1.31.1.1.1.1 Alias (IF-MIB) walk value input .1.3.6.1.2.1.31.1.1.1.18 Type walk value input .1.3.6.1.2.1.2.2.1.3 Speed walk value input .1.3.6.1.2.1.2.2.1.5 High Speed walk value input .1.3.6.1.2.1.31.1.1.1.15 Hardware Address walk value input .1.3.6.1.2.1.2.2.1.6 Bytes In walk value output .1.3.6.1.2.1.2.2.1.10 Bytes Out walk value output .1.3.6.1.2.1.2.2.1.16 Bytes In - 64-bit Counters walk value output .1.3.6.1.2.1.31.1.1.1.6 Bytes Out - 64-bit Counters walk value output .1.3.6.1.2.1.31.1.1.1.10 IPv4 Bytes In walk value output .1.3.6.1.2.1.4.31.3.1.5.1 IPv4 Bytes Out walk value output .1.3.6.1.2.1.4.31.3.1.32.1 IPv4 Bytes In - 64-bit Counters walk value output .1.3.6.1.2.1.4.31.3.1.6.1 IPv4 Bytes Out - 64-bit Counters walk value output .1.3.6.1.2.1.4.31.3.1.33.1 IPv6 Bytes In walk value output .1.3.6.1.2.1.4.31.3.1.5.2 IPv6 Bytes Out walk value output .1.3.6.1.2.1.4.31.3.1.32.2 IPv6 Bytes In - 64-bit Counters walk value output .1.3.6.1.2.1.4.31.3.1.6.2 IPv6 Bytes Out - 64-bit Counters walk value output .1.3.6.1.2.1.4.31.3.1.33.2 Discarded Packets In walk value output .1.3.6.1.2.1.2.2.1.13 Discarded Packets Out walk value output .1.3.6.1.2.1.2.2.1.19 Non-Unicast Packets In walk value output .1.3.6.1.2.1.2.2.1.12 Non-Unicast Packets Out walk value output .1.3.6.1.2.1.2.2.1.18 Unicast Packets In walk value output .1.3.6.1.2.1.2.2.1.11 Unicast Packets Out walk value output .1.3.6.1.2.1.2.2.1.17 Multicast Packets In (Legacy) walk value output .1.3.6.1.2.1.31.1.1.1.2 Multicast Packets Out (Legacy) walk value output .1.3.6.1.2.1.31.1.1.1.4 Broadcast Packets In (Legacy) walk value output .1.3.6.1.2.1.31.1.1.1.3 Broadcast Packets Out (Legacy) walk value output .1.3.6.1.2.1.31.1.1.1.5 Errors In walk value output .1.3.6.1.2.1.2.2.1.14 Errors Out walk value output .1.3.6.1.2.1.2.2.1.20 IP Address walk OID/REGEXP:^\.?1\.3\.6\.1\.2\.1\.4\.20\.1\.2\.([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}).* input .1.3.6.1.2.1.4.20.1.2 cacti-1.1.38/resource/snmp_queries/index.php0000664000175000017500000000005013264740213020431 0ustar tromantroman Get Host Partition Information numeric .1.3.6.1.2.1.25.2.3.1.1 Index walk value input .1.3.6.1.2.1.25.2.3.1.1 Description walk value input .1.3.6.1.2.1.25.2.3.1.3 Storage Allocation Units walk value input .1.3.6.1.2.1.25.2.3.1.4 Total Size walk value output .1.3.6.1.2.1.25.2.3.1.5 Total Used walk value output .1.3.6.1.2.1.25.2.3.1.6 Allocation Failures walk value output .1.3.6.1.2.1.25.2.3.1.7 cacti-1.1.38/resource/script_server/0000775000175000017500000000000013264740213016776 5ustar tromantromancacti-1.1.38/resource/script_server/index.php0000664000175000017500000000005013264740213020611 0ustar tromantroman Get Host MIB Partitions |path_cacti|/scripts/ss_host_disk.php ss_host_disk php |host_hostname| |host_id| |host_snmp_version|:|host_snmp_port|:|host_snmp_timeout|:|host_ping_retries|:|host_max_oids|:|host_snmp_community|:|host_snmp_username|:|host_snmp_password|:|host_snmp_auth_protocol|:|host_snmp_priv_passphrase|:|host_snmp_priv_protocol|:|host_snmp_context| index query get num_indexes ! hrStorageDescr:hrStorageIndex numeric |chosen_order_field| Index input index Description input description Storage Allocation Units input sau Total Size output total Total Used output used Allocation Failures output failures cacti-1.1.38/resource/script_server/host_cpu.xml0000664000175000017500000000220713264740213021345 0ustar tromantroman Get Host MIB CPU's |path_cacti|/scripts/ss_host_cpu.php ss_host_cpu php |host_hostname| |host_id| |host_snmp_version|:|host_snmp_port|:|host_snmp_timeout|:|host_ping_retries|:|host_max_oids|:|host_snmp_community|:|host_snmp_username|:|host_snmp_password|:|host_snmp_auth_protocol|:|host_snmp_priv_passphrase|:|host_snmp_priv_protocol|:|host_snmp_context| index query get num_indexes ! hrProcessorFrwID numeric CPU#|chosen_order_field| Processor Index Number input index Processor Usage output usage cacti-1.1.38/resource/script_queries/0000775000175000017500000000000013264740213017145 5ustar tromantromancacti-1.1.38/resource/script_queries/unix_disk.xml0000664000175000017500000000252313264740213021666 0ustar tromantroman Get Unix Mounted Partitions Queries a list of mounted partitions on a unix-based host with the 'df' command. perl |path_cacti|/scripts/query_unix_partitions.pl index query get num_indexes : dskDevice alphabetic |chosen_order_field| Device Name input device Mount Point input mount Total Blocks output total Used Blocks output used Available Blocks output available Percent Used output percent cacti-1.1.38/resource/script_queries/index.php0000664000175000017500000000005013264740213020760 0ustar tromantroman Get Host MIB Partitions |path_php_binary| -q |path_cacti|/scripts/query_host_partitions.php |host_hostname| |host_id| |host_snmp_version|:|host_snmp_port|:|host_snmp_timeout|:|host_ping_retries|:|host_max_oids|:|host_snmp_community|:|host_snmp_username|:|host_snmp_password|:|host_snmp_auth_protocol|:|host_snmp_priv_passphrase|:|host_snmp_priv_protocol|:|host_snmp_context| index query get num_indexes ! hrStorageDescr:hrStorageIndex numeric |chosen_order_field| Index input index Description input description Storage Allocation Units input sau Total Size output total Total Used output used Allocation Failures output failures cacti-1.1.38/resource/script_queries/host_cpu.xml0000664000175000017500000000211313264740213021510 0ustar tromantroman Get Host MIB CPU's |path_php_binary| -q |path_cacti|/scripts/query_host_cpu.php |host_hostname| |host_id| |host_snmp_version|:|host_snmp_port|:|host_snmp_timeout|:|host_ping_retries|:|host_max_oids|:|host_snmp_community|:|host_snmp_username|:|host_snmp_password|:|host_snmp_auth_protocol|:|host_snmp_priv_passphrase|:|host_snmp_priv_protocol|:|host_snmp_context| index query get num_indexes ! hrProcessorFrwID numeric CPU#|chosen_order_field| Processor Index Number input index Processor Usage output usage cacti-1.1.38/resource/index.php0000664000175000017500000000005013264740213015717 0ustar tromantroman 'sanitize_search_string')); /* set a longer execution time for large reports */ ini_set('max_execution_time', '300'); /* set default action */ set_default_action(); switch (get_request_var('action')) { case 'save': reports_form_save(); break; case 'send': get_filter_request_var('id'); reports_send(get_request_var('id')); header('Location: reports_admin.php?action=edit&tab=' . get_request_var('tab') . '&id=' . get_request_var('id')); break; case 'actions': reports_form_actions(); break; case 'item_movedown': get_filter_request_var('id'); reports_item_movedown(); header('Location: reports_admin.php?action=edit&tab=items&id=' . get_request_var('id')); break; case 'item_moveup': get_filter_request_var('id'); reports_item_moveup(); header('Location: reports_admin.php?action=edit&tab=items&id=' . get_request_var('id')); break; case 'item_remove': get_filter_request_var('id'); reports_item_remove(); header('Location: reports_admin.php?action=edit&tab=items&id=' . get_request_var('id')); break; case 'item_edit': general_header(); reports_item_edit(); bottom_footer(); break; case 'edit': general_header(); reports_edit(); bottom_footer(); break; default: general_header(); reports(); bottom_footer(); break; } cacti-1.1.38/remote_agent.php0000664000175000017500000003270413264740213015445 0ustar tromantroman 'sanitize_search_string')); get_filter_request_var('effective_user'); $local_graph_id = get_filter_request_var('local_graph_id'); $rra_id = get_filter_request_var('rra_id'); $graph_data_array = array(); /* override: graph start time (unix time) */ if (!isempty_request_var('graph_start') && get_request_var('graph_start') < 1600000000) { $graph_data_array['graph_start'] = get_request_var('graph_start'); } /* override: graph end time (unix time) */ if (!isempty_request_var('graph_end') && get_request_var('graph_end') < 1600000000) { $graph_data_array['graph_end'] = get_request_var('graph_end'); } /* override: graph height (in pixels) */ if (!isempty_request_var('graph_height') && get_request_var('graph_height') < 3000) { $graph_data_array['graph_height'] = get_request_var('graph_height'); } /* override: graph width (in pixels) */ if (!isempty_request_var('graph_width') && get_request_var('graph_width') < 3000) { $graph_data_array['graph_width'] = get_request_var('graph_width'); } /* override: skip drawing the legend? */ if (!isempty_request_var('graph_nolegend')) { $graph_data_array['graph_nolegend'] = get_request_var('graph_nolegend'); } /* print RRDtool graph source? */ if (!isempty_request_var('show_source')) { $graph_data_array['print_source'] = get_request_var('show_source'); } /* disable cache check */ if (isset_request_var('disable_cache')) { $graph_data_array['disable_cache'] = true; } /* set the theme */ if (isset_request_var('graph_theme')) { $graph_data_array['graph_theme'] = get_request_var('graph_theme'); } /* set the theme */ if (isset_request_var('effective_user')) { $user = get_request_var('effective_user'); } else { $user = 0; } $graph_data_array['graphv'] = true; $xport_options = array(); print @rrdtool_function_graph($local_graph_id, $rra_id, $graph_data_array, null, $xport_options, $user); return true; } function get_snmp_data() { $host_id = get_filter_request_var('host_id'); $oid = get_nfilter_request_var('oid'); if (!empty($host_id)) { $host = db_fetch_row_prepared('SELECT * FROM host WHERE id = ?', array($host_id)); $session = cacti_snmp_session($host['hostname'], $host['snmp_community'], $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_engine_id'], $host['snmp_port'], $host['snmp_timeout'], $host['ping_retries'], $host['max_oids']); if ($session === false) { $output = 'U'; } else { $output = cacti_snmp_session_get($session, $oid); $session->close(); } } print $output; } function get_snmp_data_walk() { $host_id = get_filter_request_var('host_id'); $oid = get_nfilter_request_var('oid'); if (!empty($host_id)) { $host = db_fetch_row_prepared('SELECT * FROM host WHERE id = ?', array($host_id)); $session = cacti_snmp_session($host['hostname'], $host['snmp_community'], $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_engine_id'], $host['snmp_port'], $host['snmp_timeout'], $host['ping_retries'], $host['max_oids']); if ($session === false) { $output = 'U'; } else { $output = cacti_snmp_session_walk($session, $oid); $session->close(); } } if (sizeof($output)) { print json_encode($output); } else { print 'U'; } } function ping_device() { $host_id = get_filter_request_var('host_id'); api_device_ping_device($host_id, true); } function poll_for_data() { global $config; $local_data_ids = get_nfilter_request_var('local_data_ids'); $host_id = get_filter_request_var('host_id'); $poller_id = get_nfilter_request_var('poller_id'); $return = array(); $i = 0; if (sizeof($local_data_ids)) { foreach($local_data_ids as $local_data_id) { input_validate_input_number($local_data_id); $items = db_fetch_assoc_prepared('SELECT * FROM poller_item WHERE host_id = ? AND local_data_id = ?', array($host_id, $local_data_id)); $script_server_calls = db_fetch_cell_prepared('SELECT COUNT(*) FROM poller_item WHERE host_id = ? AND local_data_id = ? AND action = 2', array($host_id, $local_data_id)); if (sizeof($items)) { foreach($items as $item) { switch ($item['action']) { case POLLER_ACTION_SNMP: /* snmp */ if (($item['snmp_version'] == 0) || (($item['snmp_community'] == '') && ($item['snmp_version'] != 3))) { $output = 'U'; } else { $host = db_fetch_row_prepared('SELECT ping_retries, max_oids FROM host WHERE hostname = ?', array($item['hostname'])); $session = cacti_snmp_session($item['hostname'], $item['snmp_community'], $item['snmp_version'], $item['snmp_username'], $item['snmp_password'], $item['snmp_auth_protocol'], $item['snmp_priv_passphrase'], $item['snmp_priv_protocol'], $item['snmp_context'], $item['snmp_engine_id'], $item['snmp_port'], $item['snmp_timeout'], $host['ping_retries'], $host['max_oids']); if ($session === false) { $output = 'U'; } else { $output = cacti_snmp_session_get($session, $item['arg1']); $session->close(); } if (prepare_validate_result($output) === false) { if (strlen($output) > 20) { $strout = 20; } else { $strout = strlen($output); } $output = 'U'; } } $return[$i]['value'] = $output; $return[$i]['rrd_name'] = $item['rrd_name']; $return[$i]['local_data_id'] = $local_data_id; break; case POLLER_ACTION_SCRIPT: /* script (popen) */ $output = trim(exec_poll($item['arg1'])); if (prepare_validate_result($output) === false) { if (strlen($output) > 20) { $strout = 20; } else { $strout = strlen($output); } $output = 'U'; } $return[$i]['value'] = $output; $return[$i]['rrd_name'] = $item['rrd_name']; $return[$i]['local_data_id'] = $local_data_id; break; case POLLER_ACTION_SCRIPT_PHP: /* script (php script server) */ $cactides = array( 0 => array('pipe', 'r'), // stdin is a pipe that the child will read from 1 => array('pipe', 'w'), // stdout is a pipe that the child will write to 2 => array('pipe', 'w') // stderr is a pipe to write to ); if (function_exists('proc_open')) { $cactiphp = proc_open(read_config_option('path_php_binary') . ' -q ' . $config['base_path'] . '/script_server.php realtime ' . $poller_id, $cactides, $pipes); $output = fgets($pipes[1], 1024); $using_proc_function = true; } else { $using_proc_function = false; } if ($using_proc_function == true) { $output = trim(str_replace("\n", '', exec_poll_php($item['arg1'], $using_proc_function, $pipes, $cactiphp))); if (prepare_validate_result($output) === false) { if (strlen($output) > 20) { $strout = 20; } else { $strout = strlen($output); } $output = 'U'; } } else { $output = 'U'; } $return[$i]['value'] = $output; $return[$i]['rrd_name'] = $item['rrd_name']; $return[$i]['local_data_id'] = $local_data_id; if (($using_proc_function == true) && ($script_server_calls > 0)) { /* close php server process */ fwrite($pipes[0], "quit\r\n"); fclose($pipes[0]); fclose($pipes[1]); fclose($pipes[2]); $return_value = proc_close($cactiphp); } break; } $i++; } } } } print json_encode($return); } function run_remote_data_query() { $host_id = get_filter_request_var('host_id'); $data_query_id = get_filter_request_var('data_query_id'); if ($host_id > 0 && $data_query_id > 0) { run_data_query($host_id, $data_query_id); } } function run_remote_discovery() { global $config; $poller_id = $config['poller_id']; $network = get_filter_request_var('network'); $php = read_config_option('path_php_binary'); $path = read_config_option('path_webroot') . '/poller_automation.php'; $options = ' --poller=' . $poller_id . ' --network=' . $network . ' --force'; if (isset_request_var('debug')) { $options .= ' --debug'; } exec_background($php, '-q ' . $path . $options); sleep(2); return; } cacti-1.1.38/pollers.php0000664000175000017500000006153713264740213014462 0ustar tromantroman __('Delete'), 2 => __('Disable'), 3 => __('Enable'), 4 => __('Full Sync') ); $poller_status = array( 0 => '
    ' . __('New/Idle') . '
    ', 1 => '
    ' . __('Running') . '
    ', 2 => '
    ' . __('Idle') . '
    ', 3 => '
    ' . __('Unknown/Down') . '
    ', 4 => '
    ' . __('Disabled') . '
    ', 5 => '
    ' . __('Recovering') . '
    ' ); /* file: pollers.php, action: edit */ $fields_poller_edit = array( 'spacer0' => array( 'method' => 'spacer', 'friendly_name' => __('Data Collector Information'), ), 'name' => array( 'method' => 'textbox', 'friendly_name' => __('Name'), 'description' => __('The primary name for this Data Collector.'), 'value' => '|arg1:name|', 'size' => '50', 'default' => __('New Data Collector'), 'max_length' => '100' ), 'hostname' => array( 'method' => 'textbox', 'friendly_name' => __('Web Site Hostname'), 'description' => __('The hostname for Data Collector. It may have to be a Fully Qualified Domain name for the remote Pollers to contact it for activities such as re-indexing, Real-time graphing, etc.'), 'value' => '|arg1:hostname|', 'size' => '50', 'default' => '', 'max_length' => '100' ), 'notes' => array( 'method' => 'textarea', 'friendly_name' => __('Notes'), 'description' => __('Notes for this Data Collectors Database.'), 'value' => '|arg1:notes|', 'textarea_rows' => 4, 'textarea_cols' => 50 ), 'spacer1' => array( 'method' => 'spacer', 'friendly_name' => __('Remote Database Connection'), ), 'dbhost' => array( 'method' => 'textbox', 'friendly_name' => __('Hostname'), 'description' => __('The hostname for the remote database server.'), 'value' => '|arg1:dbhost|', 'size' => '50', 'default' => '', 'max_length' => '100' ), 'dbdefault' => array( 'method' => 'textbox', 'friendly_name' => __('Remote Database Name'), 'description' => __('The name of the remote database.'), 'value' => '|arg1:dbdefault|', 'size' => '20', 'default' => $database_default, 'max_length' => '20' ), 'dbuser' => array( 'method' => 'textbox', 'friendly_name' => __('Remote Database User'), 'description' => __('The user name to use to connect to the remote database.'), 'value' => '|arg1:dbuser|', 'size' => '20', 'default' => $database_username, 'max_length' => '20' ), 'dbpass' => array( 'method' => 'textbox_password', 'friendly_name' => __('Remote Database Password'), 'description' => __('The user password to use to connect to the remote database.'), 'value' => '|arg1:dbpass|', 'size' => '40', 'default' => $database_password, 'max_length' => '64' ), 'dbport' => array( 'method' => 'textbox', 'friendly_name' => __('Remote Database Port'), 'description' => __('The TCP port to use to connect to the remote database.'), 'value' => '|arg1:dbport|', 'size' => '5', 'default' => $database_port, 'max_length' => '5' ), 'dbssl' => array( 'method' => 'checkbox', 'friendly_name' => __('Remote Database SSL'), 'description' => __('If the remote database uses SSL to connect, check the checkbox below.'), 'value' => '|arg1:dbssl|', 'default' => $database_ssl ? 'on':'' ), 'id' => array( 'method' => 'hidden', 'value' => '|arg1:id|', ), 'save_component_poller' => array( 'method' => 'hidden', 'value' => '1' ) ); /* set default action */ set_default_action(); switch (get_request_var('action')) { case 'save': form_save(); break; case 'actions': form_actions(); break; case 'ping': test_database_connection(); break; case 'edit': top_header(); poller_edit(); bottom_footer(); break; default: top_header(); pollers(); bottom_footer(); break; } /* -------------------------- Global Form Functions -------------------------- */ /* -------------------------- The Save Function -------------------------- */ function form_save() { if (isset_request_var('save_component_poller')) { $save['id'] = get_filter_request_var('id'); $save['name'] = form_input_validate(get_nfilter_request_var('name'), 'name', '', false, 3); $save['hostname'] = form_input_validate(get_nfilter_request_var('hostname'), 'hostname', '', false, 3); $save['notes'] = form_input_validate(get_nfilter_request_var('notes'), 'notes', '', true, 3); $save['dbdefault'] = form_input_validate(get_nfilter_request_var('dbdefault'), 'dbdefault', '', true, 3); $save['dbhost'] = form_input_validate(get_nfilter_request_var('dbhost'), 'dbhost', '', true, 3); $save['dbuser'] = form_input_validate(get_nfilter_request_var('dbuser'), 'dbuser', '', true, 3); $save['dbpass'] = form_input_validate(get_nfilter_request_var('dbpass'), 'dbpass', '', true, 3); $save['dbport'] = form_input_validate(get_nfilter_request_var('dbport'), 'dbport', '', true, 3); $save['dbssl'] = isset_request_var('dbssl') ? 'on':''; if (!is_error_message()) { $poller_id = sql_save($save, 'poller'); if ($poller_id) { raise_message(1); } else { raise_message(2); } } header('Location: pollers.php?header=false&action=edit&id=' . (empty($poller_id) ? get_nfilter_request_var('id') : $poller_id)); } } /* ------------------------ The 'actions' function ------------------------ */ function form_actions() { global $poller_actions; /* ================= input validation ================= */ get_filter_request_var('drp_action', FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => '/^([a-zA-Z0-9_]+)$/'))); /* ==================================================== */ /* if we are to save this form, instead of display it */ if (isset_request_var('selected_items')) { $selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items')); if ($selected_items != false) { if (get_nfilter_request_var('drp_action') == '1') { // delete db_execute('DELETE FROM poller WHERE ' . array_to_sql_or($selected_items, 'id')); db_execute('UPDATE host SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id')); db_execute('UPDATE automation_networks SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id')); db_execute('UPDATE automation_processes SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id')); db_execute('UPDATE poller_command SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id')); db_execute('UPDATE poller_item SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id')); db_execute('UPDATE poller_output_realtime SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id')); db_execute('UPDATE poller_time SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id')); cacti_log('NOTE: The poller(s) with the id(s): ' . implode(',', $selected_items) . ' deleted by user ' . $_SESSION['sess_user_id'], false, 'WEBUI'); } elseif (get_request_var('drp_action') == '2') { // disable db_execute('UPDATE poller SET disabled="on" WHERE ' . array_to_sql_or($selected_items, 'id')); cacti_log('NOTE: The poller(s) with the id(s): ' . implode(',', $selected_items) . ' disabled by user ' . $_SESSION['sess_user_id'], false, 'WEBUI'); } elseif (get_request_var('drp_action') == '3') { // enable db_execute('UPDATE poller SET disabled="" WHERE ' . array_to_sql_or($selected_items, 'id')); cacti_log('NOTE: The poller(s) with the id(s): ' . implode(',', $selected_items) . ' enabled by user ' . $_SESSION['sess_user_id'], false, 'WEBUI'); } elseif (get_request_var('drp_action') == '4') { // full sync foreach($selected_items as $item) { replicate_out($item); } cacti_log('NOTE: The poller(s) with the id(s): ' . implode(',', $selected_items) . ' synchronized by user ' . $_SESSION['sess_user_id'], false, 'WEBUI'); } } header('Location: pollers.php?header=false'); exit; } /* setup some variables */ $pollers = ''; $i = 0; /* loop through each of the graphs selected on the previous page and get more info about them */ foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ $pollers .= '
  • ' . htmlspecialchars(db_fetch_cell_prepared('SELECT name FROM poller WHERE id = ?', array($matches[1]))) . '
  • '; $poller_array[$i] = $matches[1]; $i++; } } top_header(); form_start('pollers.php'); html_start_box($poller_actions[get_nfilter_request_var('drp_action')], '60%', '', '3', 'center', ''); if (isset($poller_array) && sizeof($poller_array)) { if (get_nfilter_request_var('drp_action') == '1') { // delete print "

    " . __n('Click \'Continue\' to delete the following Data Collector. Note, all devices will be disassociated from this Data Collector and mapped back to the Main Cacti Data Collector.', 'Click \'Continue\' to delete all following Data Collectors. Note, all devices will be disassociated from these Data Collectors and mapped back to the Main Cacti Data Collector.', sizeof($poller_array)) . "

      $pollers
    \n"; $save_html = " "; } elseif (get_request_var('drp_action') == '2') { // disable print "

    " . __n('Click \'Continue\' to disable the following Data Collector.', 'Click \'Continue\' to disable the following Data Collectors.', sizeof($poller_array)) . "

      $pollers
    \n"; $save_html = " "; } elseif (get_request_var('drp_action') == '3') { // enable print "

    " . __n('Click \'Continue\' to enable the following Data Collector.', 'Click \'Continue\' to enable the following Data Collectors.', sizeof($poller_array)) . "

      $pollers
    \n"; $save_html = " "; } elseif (get_request_var('drp_action') == '4') { // full sync print "

    " . __n('Click \'Continue\' to Synchronize the Remote Data Collector for Offline Operation.', 'Click \'Continue\' to Synchronize the Remote Data Collectors for Offline Operation.', sizeof($poller_array)) . "

      $pollers
    \n"; $save_html = " "; } } else { print "" . __('You must select at least one Site.') . "\n"; $save_html = ""; } print " $save_html \n"; html_end_box(); form_end(); bottom_footer(); } /* --------------------- Site Functions --------------------- */ function poller_edit() { global $fields_poller_edit; /* ================= input validation ================= */ get_filter_request_var('id'); /* ==================================================== */ if (!isempty_request_var('id')) { $poller = db_fetch_row_prepared('SELECT * FROM poller WHERE id = ?', array(get_request_var('id'))); $header_label = __('Site [edit: %s]', htmlspecialchars($poller['name'])); } else { $header_label = __('Site [new]'); } form_start('pollers.php', 'poller'); html_start_box($header_label, '100%', true, '3', 'center', ''); if (isset($poller) && sizeof($poller)) { if ($poller['id'] == 1) { unset($fields_poller_edit['spacer1']); unset($fields_poller_edit['dbdefault']); unset($fields_poller_edit['dbhost']); unset($fields_poller_edit['dbuser']); unset($fields_poller_edit['dbpass']); unset($fields_poller_edit['dbport']); unset($fields_poller_edit['dbssl']); } } draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => inject_form_variables($fields_poller_edit, (isset($poller) ? $poller : array())) ) ); $tip_text = __('Remote Data Collectors must be able to communicate to the Main Data Collector, and vice versa. Use this button to verify that the Main Data Collector can communicate to this Remote Data Collector.'); if (read_config_option('hide_form_description') == 'on') { $tooltip = '
    ' . $tip_text . ''; } else { $tooltip = '
    ' . str_replace("\n", '', display_tooltip($tip_text)) . '
    '; } $row_html = '
    ' . __('Test Database Connection') . $tooltip . '
    '; if (isset($poller) && sizeof($poller)) { if ($poller['id'] > 1) { ?> array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'name', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ) ); validate_store_request_vars($filters, 'sess_pollers'); /* ================= input validation ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } html_start_box( __('Data Collectors'), '100%', '', '3', 'center', ''); ?>
    '> ' title=''> ' title=''>
    array('display' => __('Collector Name'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __('The Name of this Data Collector.')), 'id' => array('display' => __('ID'), 'align' => 'right', 'sort' => 'ASC', 'tip' => __('The unique id associated with this Data Collector.')), 'hostname' => array('display' => __('Hostname'), 'align' => 'right', 'sort' => 'ASC', 'tip' => __('The Hostname where the Data Collector is running.')), 'status' => array('display' => __('Status'), 'align' => 'center', 'sort' => 'DESC', 'tip' => __('The Status of this Data Collector.')), 'total_time' => array('display' => __('Polling Time'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __('The last data collection time for this Data Collector.')), 'hosts' => array('display' => __('Devices'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __('The number of Devices associated with this Data Collector.')), 'snmp' => array('display' => __('SNMP Gets'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __('The number of SNMP gets associated with this Collector.')), 'script' => array('display' => __('Scripts'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __('The number of script calls associated with this Data Collector.')), 'server' => array('display' => __('Servers'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __('The number of script server calls associated with this Data Collector.')), 'last_update' => array('display' => __('Last Finished'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __('The last time this Data Collector completed.')), 'last_status' => array('display' => __('Last Update'), 'align' => 'right', 'sort' => 'DESC', 'tip' => __('The last time this Data Collector checked in with the main Cacti site.'))); html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false); $i = 0; if (sizeof($pollers)) { foreach ($pollers as $poller) { if ($poller['id'] == 1) { $disabled = true; } else { $disabled = false; } if ($poller['disabled'] == 'on') { $poller['status'] = 4; }else if (time()-strtotime($poller['last_status']) > 310) { $poller['status'] = 3; } form_alternate_row('line' . $poller['id'], true, $disabled); form_selectable_cell(filter_value($poller['name'], get_request_var('filter'), 'pollers.php?action=edit&id=' . $poller['id']), $poller['id']); form_selectable_cell($poller['id'], $poller['id'], '', 'right'); form_selectable_cell($poller['hostname'], $poller['id'], '', 'right'); form_selectable_cell($poller_status[$poller['status']], $poller['id'], '', 'center'); form_selectable_cell(number_format_i18n($poller['total_time'], 2), $poller['id'], '', 'right'); form_selectable_cell(number_format_i18n($poller['hosts'], '-1'), $poller['id'], '', 'right'); form_selectable_cell(number_format_i18n($poller['snmp'], '-1'), $poller['id'], '', 'right'); form_selectable_cell(number_format_i18n($poller['script'], '-1'), $poller['id'], '', 'right'); form_selectable_cell(number_format_i18n($poller['server'], '-1'), $poller['id'], '', 'right'); form_selectable_cell($poller['last_update'], $poller['id'], '', 'right'); form_selectable_cell($poller['last_status'], $poller['id'], '', 'right'); form_checkbox_cell($poller['name'], $poller['id'], $disabled); form_end_row(); } } else { print "" . __('No Data Collectors Found') . "\n"; } html_end_box(false); if (sizeof($pollers)) { print $nav; } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($poller_actions); form_end(); } cacti-1.1.38/poller_spikekill.php0000664000175000017500000001577013264740213016344 0ustar tromantroman#!/usr/bin/php -q This script is only meant to run at the command line.'); } include('./include/global.php'); ini_set('memory_limit', '512M'); /* process calling arguments */ $parms = $_SERVER['argv']; array_shift($parms); global $debug, $start, $seed, $forcerun; $debug = false; $forcerun = false; $templates = false; $kills = 0; if (sizeof($parms)) { foreach($parms as $parameter) { if (strpos($parameter, '=')) { list($arg, $value) = explode('=', $parameter); } else { $arg = $parameter; $value = ''; } switch ($arg) { case '-d': case '--debug': $debug = true; break; case '--templates': $templates = $value; break; case '-f': case '--force': $forcerun = true; break; case '--version': case '-V': case '-v': display_version(); exit; case '--help': case '-H': case '-h': display_help(); exit; default: print 'ERROR: Invalid Parameter ' . $parameter . "\n\n"; display_help(); exit; } } } echo "NOTE: SpikeKill Running\n"; if (!$templates) { $templates = db_fetch_cell("SELECT value FROM settings WHERE name='spikekill_templates'"); $templates = explode(',', $templates); } else { $templates = explode(',', $templates); } if (!sizeof($templates)) { print "ERROR: No valid Graph Templates selected\n\n"; exit(1); } else { foreach($templates as $template) { if (!is_numeric($template)) { print "ERROR: Graph Template '" . $template . "' Invalid\n\n"; exit(1); } } } if (timeToRun()) { debug('Starting Spikekill Process'); list($micro,$seconds) = explode(' ', microtime()); $start = $seconds + $micro; $graphs = kill_spikes($templates, $kills); list($micro,$seconds) = explode(' ', microtime()); $end = $seconds + $micro; $cacti_stats = sprintf( 'Time:%01.4f ' . 'Graphs:%s ' . 'Kills:%s', round($end-$start,2), $graphs, $kills); /* log to the database */ db_execute_prepared('REPLACE INTO settings (name,value) VALUES ("stats_spikekill", ?)', array($cacti_stats)); /* log to the logfile */ cacti_log('SPIKEKILL STATS: ' . $cacti_stats , true, 'SYSTEM'); } echo "NOTE: SpikeKill Finished\n"; function timeToRun() { global $forcerun; $lastrun = read_config_option('spikekill_lastrun'); $frequency = read_config_option('spikekill_batch') * 3600; $basetime = strtotime(read_config_option('spikekill_basetime')); $baseupper = 300; $baselower = $frequency - 300; $now = time(); debug("LastRun:'$lastrun', Frequency:'$frequency', BaseTime:'" . date('Y-m-d H:i:s', $basetime) . "', BaseUpper:'$baseupper', BaseLower:'$baselower', Now:'" . date('Y-m-d H:i:s', $now) . "'"); if ($frequency > 0 && ($now - $lastrun > $frequency)) { debug("Frequency is '$frequency' Seconds"); $nowfreq = $now % $frequency; debug("Now Frequency is '$nowfreq'"); if ((empty($lastrun)) && ($nowfreq > $baseupper) && ($nowfreq < $baselower)) { debug('Time to Run'); db_execute_prepared('REPLACE INTO settings (name,value) VALUES ("spikekill_lastrun", ?)', array(time())); return true; } elseif (($now - $lastrun > 3600) && ($nowfreq > $baseupper) && ($nowfreq < $baselower)) { debug('Time to Run'); db_execute_prepared('REPLACE INTO settings (name,value) VALUES ("spikekill_lastrun", ?)', array(time())); return true; } else { debug('Not Time to Run'); return false; } } elseif ($forcerun) { debug('Force to Run'); db_execute_prepared('REPLACE INTO settings (name,value) VALUES ("spikekill_lastrun", ?', array(time())); return true; } else { debug('Not time to Run'); return false; } } function debug($message) { global $debug; if ($debug) { echo 'DEBUG: ' . trim($message) . "\n"; } } function kill_spikes($templates, &$found) { global $debug, $config; $rrdfiles = array_rekey(db_fetch_assoc('SELECT DISTINCT rrd_path FROM graph_templates AS gt INNER JOIN graph_templates_item AS gti ON gt.id=gti.graph_template_id INNER JOIN data_template_rrd AS dtr ON gti.task_item_id=dtr.id INNER JOIN poller_item AS pi ON pi.local_data_id=dtr.local_data_id WHERE gt.id IN (' . implode(',', $templates) . ')'), 'rrd_path', 'rrd_path'); if (sizeof($rrdfiles)) { foreach($rrdfiles as $f) { debug("Removing Spikes from '$f'"); $response = exec(read_config_option('path_php_binary') . ' -q ' . $config['base_path'] . '/cli/removespikes.php --rrdfile=' . $f . ($debug ? ' --debug':'')); if (substr_count($response, 'Spikes Found and Remediated')) { $found++; } debug(str_replace('NOTE: ', '', $response)); } } return sizeof($rrdfiles); } /* display_version - displays version information */ function display_version() { $version = get_cacti_version(); echo "Cacti SpikeKiller Batch Poller, Version $version, " . COPYRIGHT_YEARS . "\n"; } function display_help() { display_version(); echo "\nusage: poller_spikekill.php [--templates=N,N,...] [--force] [--debug]\n\n"; echo "Cacti's SpikeKill batch removal poller. This poller will remove spikes\n"; echo "in Cacti's RRDfiles based upon the settings maintained in Cacti's database.\n\n"; echo "Optional:\n"; echo " --templates=N,N,... - Only despike the templates provided.\n"; echo " --force - Force running the despiking immediately.\n"; echo " --debug - Display verbose output during execution.\n"; } cacti-1.1.38/poller_reports.php0000664000175000017500000001301413264740213016040 0ustar tromantroman#!/usr/bin/php -q This script is only meant to run at the command line.'); } $dir = dirname(__FILE__); chdir($dir); /* include important functions */ include_once('./include/global.php'); include_once($config['base_path'] . '/lib/poller.php'); include_once($config['base_path'] . '/lib/rrd.php'); include_once($config['base_path'] . '/lib/reports.php'); global $current_user; /* process calling arguments */ $parms = $_SERVER['argv']; array_shift($parms); $debug = false; $force = false; if (sizeof($parms)) { foreach($parms as $parameter) { if (strpos($parameter, '=')) { list($arg, $value) = explode('=', $parameter); } else { $arg = $parameter; $value = ''; } switch ($arg) { case '-f': case '--force': $force = true; break; case '-d': case '--debug': $debug = true; break; case '--version': case '-V': case '-v': display_version(); exit; case '--help': case '-H': case '-h': display_help(); exit; default: print 'ERROR: Invalid Parameter ' . $parameter . "\n\n"; display_help(); exit; } } } /* install signal handlers for UNIX only */ if (function_exists('pcntl_signal')) { pcntl_signal(SIGTERM, 'sig_handler'); pcntl_signal(SIGINT, 'sig_handler'); } /* take time and log performance data */ $start = microtime(true); /* let's give this script lot of time to run for ever */ ini_set('max_execution_time', '0'); $t = time(); $number_sent = 0; # fetch all enabled reports that have a stratime in the past if (!$force) { $reports = db_fetch_assoc_prepared('SELECT * FROM reports WHERE mailtime < ? AND enabled="on"', array($t)); } else { $reports = db_fetch_assoc("SELECT * FROM reports WHERE enabled='on'"); } reports_log('Cacti Reports reports found: ' . sizeof($reports), true, 'REPORTS', POLLER_VERBOSITY_MEDIUM); # execute each of those reports if (sizeof($reports)) { foreach ($reports as $report) { reports_log('Reports processing report: ' . $report['name'], true, 'REPORTS', POLLER_VERBOSITY_MEDIUM); $current_user = db_fetch_row_prepared('SELECT * FROM user_auth WHERE id = ?', array($report['user_id'])); if (isset($report['email'])) { generate_report($report, false, 'poller'); $number_sent++; } } /* record the end time */ $end = microtime(true); /* log statistics */ $reports_stats = sprintf('Time:%01.4f Reports:%s', $end - $start, $number_sent); reports_log('Reports STATS: ' . $reports_stats, true, 'REPORTS', POLLER_VERBOSITY_LOW); db_execute_prepared('REPLACE INTO settings (name, value) VALUES ("stats_reports", ?)', array($reports_stats)); } cacti-1.1.38/poller_recovery.php0000664000175000017500000002146013264740213016204 0ustar tromantroman#!/usr/bin/php -q This script is only meant to run at the command line.'); } $dir = dirname(__FILE__); chdir($dir); if (strpos($dir, 'boost') !== false) { chdir('../../'); } /* include important functions */ include_once('./include/global.php'); include_once($config['base_path'] . '/lib/poller.php'); include_once($config['base_path'] . '/lib/boost.php'); include_once($config['base_path'] . '/lib/dsstats.php'); global $local_db_cnn_id, $remote_db_cnn_id; $recovery_pid = db_fetch_cell("SELECT value FROM settings WHERE name='recovery_pid'", true, $local_db_cnn_id); $packet_data = db_fetch_row("SHOW GLOBAL VARIABLES LIKE 'max_allowed_packet'", true, $remote_db_cnn_id); if (isset($packet_data['Value'])) { $max_allowed_packet = $packet_data['Value']; } else { $max_allowed_packet = 1E6; } /* process calling arguments */ $parms = $_SERVER['argv']; array_shift($parms); $debug = false; $forcerun = false; $verbose = false; $poller_id = $config['poller_id']; if (sizeof($parms)) { foreach($parms as $parameter) { if (strpos($parameter, '=')) { list($arg, $value) = explode('=', $parameter); } else { $arg = $parameter; $value = ''; } switch ($arg) { case '-d': case '--debug': $debug = true; break; case '-f': case '--force': $forcerun = true; break; case '--verbose': $verbose = true; break; case '--version': case '-V': case '-v': display_version(); exit; case '--help': case '-H': case '-h': display_help(); exit; default: print 'ERROR: Invalid Parameter ' . $parameter . "\n\n"; display_help(); exit; } } } /* check for an invalid run locaiton */ if ($poller_id == 1) { print "ERROR: This command is only to be run on remote Cacti Data Collectors\n"; exit(1); } /* install signal handlers for UNIX only */ if (function_exists('pcntl_signal')) { pcntl_signal(SIGTERM, 'sig_handler'); pcntl_signal(SIGINT, 'sig_handler'); } /* take time and log performance data */ $start = microtime(true); $record_limit = 10000; $inserted = 0; $sleep_time = 3; debug('About to start recovery processing'); if (!empty($recovery_pid)) { $pid = posix_kill($recovery_pid, 0); if ($pid === false) { $run = true; } else { $run = false; } } else { $run = true; } if ($run) { debug('No pid exists, starting recovery process!'); db_execute("DELETE FROM settings WHERE name='recovery_pid'", true, $local_db_cnn_id); $end_count = 0; /* let the console know you are in recovery mode */ db_execute_prepared('UPDATE poller SET status="5" WHERE id= ?', array($poller_id), true, $remote_db_cnn_id); while (true) { $time_records = db_fetch_assoc('SELECT time, count(*) AS entries FROM poller_output_boost GROUP BY time', true, $local_db_cnn_id); debug('There are ' . sizeof($time_records) . ' in the recovery database'); $total_records = db_affected_rows(); $found = 0; if (!sizeof($time_records)) { // This should happen, but only after purging at least some records break; } else { $i = 0; $purge_time = 0; /* traverse through the records getting the totals * continue doing this till you get to the end * or hit the record limit */ foreach ($time_records as $record) { $time = $record['time']; $found += $record['entries']; $i++; if ($found > $record_limit) { if ($i == $total_records) { if ($end_count > 1) { $operator = '<='; } else { $operator = '<'; } $end_count++; $sleep_time = 3; } else { $operator = '<='; $sleep_time = 0; } $purge_time = $time; break; } elseif ($i == $total_records) { if ($end_count > 1) { $operator = '<='; } else { $operator = '<'; } $end_count++; $purge_time = $time; } } if ($purge_time == 0) { $rows = db_fetch_assoc("SELECT * FROM poller_output_boost ORDER BY time ASC", true, $local_db_cnn_id); } else { $rows = db_fetch_assoc("SELECT * FROM poller_output_boost WHERE time $operator '$purge_time' ORDER BY time ASC", true, $local_db_cnn_id); } if (sizeof($rows)) { $count = 0; $sql_array = array(); foreach($rows as $r) { $sql = '(' . $r['local_data_id'] . ',' . db_qstr($r['rrd_name']) . ',' . db_qstr($r['time']) . ',' . db_qstr($r['output']) . ')'; $count += strlen($sql); if ($count >= $max_allowed_packet) { db_execute('INSERT IGNORE INTO poller_output_boost (local_data_id, rrd_name, time, output) VALUES ' . implode(',', $sql_array), true, $remote_db_cnn_id); $inserted += sizeof($sql_array); $sql_array = array(); $count = 0; } $sql_array[] = $sql; } if ($count > 0) { db_execute("INSERT IGNORE INTO poller_output_boost (local_data_id, rrd_name, time, output) VALUES " . implode(',', $sql_array), true, $remote_db_cnn_id); $inserted += $count; } /* remove the recovery records */ if ($purge_time == 0) { db_execute("DELETE FROM poller_output_boost", true, $local_db_cnn_id); } else { db_execute("DELETE FROM poller_output_boost WHERE time $operator '$purge_time'", true, $local_db_cnn_id); } } sleep($sleep_time); } } /* let the console know you are in online mode */ db_execute_prepared('UPDATE poller SET status="2" WHERE id= ?', array($poller_id), false, $remote_db_cnn_id); } else { debug('Recovery process still running, exiting'); cacti_log('Recovery process still running for Poller ' . $poller_id . '. PID is ' . $recovery_pid); exit(1); } $end = microtime(true); cacti_log('RECOVERY STATS: Time:' . round($end - $start, 2) . ' Records:' . $inserted, false, 'SYSTEM'); exit(0); cacti-1.1.38/poller_realtime.php0000664000175000017500000002350313264740213016150 0ustar tromantroman#!/usr/bin/php -q This script is only meant to run at the command line.'); } /* start initialization section */ include('./include/global.php'); include_once($config['base_path'] . '/lib/poller.php'); include_once($config['base_path'] . '/lib/data_query.php'); include_once($config['base_path'] . '/lib/rrd.php'); /* force Cacti to store realtime data locally */ $config['force_storage_location_local'] = true; /* initialize some additional variables */ $force = false; $debug = false; $graph_id = false; $interval = false; $poller_id = ''; /* process calling arguments */ $parms = $_SERVER['argv']; array_shift($parms); if (sizeof($parms)) { foreach($parms as $parameter) { if (strpos($parameter, '=')) { list($arg, $value) = explode('=', $parameter); } else { $arg = $parameter; $value = ''; } switch ($arg) { case '-d': case '--debug': $debug = true; break; case '--force': $force = true; break; case '--graph': $graph_id = (int)$value; break; case '--interval': $interval = (int)$value; break; case '--poller_id': $poller_id = $value; break; case '--version': case '-V': case '-v': display_version(); exit; case '--help': case '-H': case '-h': display_help(); exit; default: echo "ERROR: Invalid Argument: ($arg)\n\n"; display_help(); exit(1); } } } if ($graph_id === false || $graph_id < 0) { echo "ERROR: No --graph=ID specified\n\n"; display_help(); exit(1); } if ($interval === false || $interval < 0) { echo "ERROR: No --interval=SEC specified\n\n"; display_help(); exit(1); } /* record the start time */ $poller_start = microtime(true); /* get number of polling items from the database */ $poller_interval = 1; /* retreive the last time the poller ran */ $poller_lastrun = read_config_option('poller_lastrun'); /* get the current cron interval from the database */ $cron_interval = read_config_option('cron_interval'); if ($cron_interval != 60) { $cron_interval = 300; } /* assume a scheduled task of either 60 or 300 seconds */ define('MAX_POLLER_RUNTIME', 298); /* let PHP only run 1 second longer than the max runtime, plus the poller needs lot's of memory */ ini_set('max_execution_time', MAX_POLLER_RUNTIME + 1); /* initialize file creation flags */ $change_files = false; /* obtain some defaults from the database */ $max_threads = read_config_option('max_threads'); /* Determine Command Name */ $command_string = read_config_option('path_php_binary'); $extra_args = '-q ' . $config['base_path'] . "/cmd_realtime.php $poller_id $graph_id $interval"; /* Determine if Realtime will work or not */ $cache_dir = read_config_option('realtime_cache_path'); if (!is_dir($cache_dir)) { cacti_log("FATAL: Realtime Cache Directory '$cache_dir' Does Not Exist!"); return -1; } elseif (!is_writable($cache_dir)) { cacti_log("FATAL: Realtime Cache Directory '$cache_dir' is Not Writable!"); return -2; } shell_exec("$command_string $extra_args"); /* open a pipe to rrdtool for writing */ $rrdtool_pipe = rrd_init(); /* process poller output */ process_poller_output_rt($rrdtool_pipe, $poller_id, $interval); /* close rrd */ rrd_close($rrdtool_pipe); /* close db */ db_close(); /* display_version - displays version information */ function display_version() { $version = get_cacti_version(); echo "Cacti Realtime Poller, Version $version, " . COPYRIGHT_YEARS . "\n"; } function display_help() { display_version(); echo "\nusage: poller_rt.php --graph=ID [--interval=SEC] [--force] [--debug]\n\n"; echo "Cacti's Realtime graphing poller. This poller behavies very similary\n"; echo "to Cacti's main poller with the exception that it only polls data source\n"; echo "that are specific to the graph being rendered in the Cacti UI.\n\n"; echo "Required:\n"; echo " --graph=ID Specify the graph id to convert (realtime)\n\n"; echo "Optional:\n"; echo " --interval=SEC Specify the graph interval (realtime)\n"; echo " --force Override poller overrun detection and force a poller run\n"; echo " --debug|-d Output debug information. Similar to cacti's DEBUG logging level.\n\n"; } /* process_poller_output REAL TIME MODIFIED */ function process_poller_output_rt($rrdtool_pipe, $poller_id, $interval) { global $config; include_once($config['library_path'] . '/rrd.php'); /* let's count the number of rrd files we processed */ $rrds_processed = 0; /* create/update the rrd files */ $results = db_fetch_assoc_prepared('SELECT port.output, port.time, port.local_data_id, poller_item.rrd_path, poller_item.rrd_name, poller_item.rrd_num FROM (poller_output_realtime AS port, poller_item) WHERE (port.local_data_id=poller_item.local_data_id AND port.rrd_name=poller_item.rrd_name) AND port.poller_id = ?', array($poller_id)); if (sizeof($results) > 0) { /* create an array keyed off of each .rrd file */ foreach ($results as $item) { $rt_graph_path = read_config_option('realtime_cache_path') . '/user_' . $poller_id . '_' . $item['local_data_id'] . '.rrd'; $data_source_path = get_data_source_path($item['local_data_id'], true); /* create rt rrd */ if (!file_exists($rt_graph_path)) { /* get the syntax */ $command = @rrdtool_function_create($item['local_data_id'], true); /* replace path */ $command = str_replace($data_source_path, $rt_graph_path, $command); /* replace step */ $command = preg_replace('/--step\s(\d+)/', '--step ' . $interval, $command); /* WIN32: before sending this command off to rrdtool, get rid of all of the '\' characters. Unix does not care; win32 does. Also make sure to replace all of the fancy \'s at the end of the line, but make sure not to get rid of the "\n"'s that are supposed to be in there (text format) */ $command = str_replace("\\\n", " ", $command); /* create the rrdfile */ shell_exec($command); /* change permissions so that the poller can clear */ @chmod($rt_graph_path, 0644); } else { /* change permissions so that the poller can clear */ @chmod($rt_graph_path, 0644); } /* now, let's update the path to keep the RRD's updated */ $item['rrd_path'] = $rt_graph_path; /* cleanup the value */ $value = trim($item['output']); $unix_time = strtotime($item['time']); $rrd_update_array[$item['rrd_path']]['local_data_id'] = $item['local_data_id']; /* single one value output */ if ((is_numeric($value)) || ($value == 'U')) { $rrd_update_array[$item['rrd_path']]['times'][$unix_time][$item['rrd_name']] = $value; /* multiple value output */ } else { $values = explode(' ', $value); $rrd_field_names = array_rekey(db_fetch_assoc_prepared('SELECT data_template_rrd.data_source_name, data_input_fields.data_name FROM (data_template_rrd,data_input_fields) WHERE data_template_rrd.data_input_field_id=data_input_fields.id AND data_template_rrd.local_data_id = ?', array($item['local_data_id'])), 'data_name', 'data_source_name'); for ($i=0; $iThis script is only meant to run at the command line.'); } /* let PHP run just as long as it has to */ ini_set('max_execution_time', '0'); error_reporting(E_ALL); $dir = dirname(__FILE__); chdir($dir); /* record the start time */ $poller_start = microtime(true); include ('./include/global.php'); global $config, $database_default, $archived, $purged; /* process calling arguments */ $parms = $_SERVER['argv']; array_shift($parms); $debug = false; $force = false; $archived = 0; $purged = 0; if (sizeof($parms)) { foreach ($parms as $parameter) { if (strpos($parameter, '=')) { list($arg, $value) = explode('=', $parameter); } else { $arg = $parameter; $value = ''; } switch ($arg) { case '--version' : case '-V' : case '-v' : display_version(); exit; case '--help' : case '-H' : case '-h' : display_help(); exit; case '--force' : $force = true; break; case '--debug' : $debug = true; break; default : echo 'ERROR: Invalid Parameter ' . $parameter . "\n\n"; display_help(); exit; } } } maint_debug('Checking for Purge Actions'); if ($config['poller_id'] == 1) { /* are my tables already present? */ $purge = db_fetch_cell('SELECT count(*) FROM data_source_purge_action'); /* if the table that holds the actions is present, work on it */ if ($purge) { maint_debug("Purging Required - Files Found $purge"); /* take the purge in steps */ while (true) { maint_debug('Grabbing 1000 RRDfiles to Remove'); $file_array = db_fetch_assoc('SELECT id, name, local_data_id, action FROM data_source_purge_action ORDER BY name LIMIT 1000'); if (sizeof($file_array) == 0) { break; } if (sizeof($file_array) || $force) { /* there's something to do for us now */ remove_files($file_array); if ($force) { cleanup_ds_and_graphs(); } } } /* record the start time */ $poller_end = microtime(true); $string = sprintf('RRDMAINT STATS: Time:%4.4f Purged:%s Archived:%s', ($poller_end - $poller_start), $purged, $archived); cacti_log($string, true, 'SYSTEM'); } /* removing security tokens older than 90 days */ if (read_config_option('auth_cache_enabled') == 'on') { db_execute_prepared('DELETE FROM user_auth_cache WHERE last_update < ?', array(date('Y-m-d H:i:s', time()-(86400*90)))); } else { db_execute('TRUNCATE TABLE user_auth_cache'); } // Check expired accounts secpass_check_expired(); } // Check the realtime cache and poller realtime_purge_cache(); // Check whether the cacti log. Rotations takes place around midnight if (read_config_option('logrotate_enabled') == 'on') { $frequency = read_config_option('logrotate_frequency'); if (empty($frequency)) { $frequency = 1; } $last = read_config_option('logrotate_lastrun'); $now = time(); if (empty($last)) { $last = time(); set_config_option('logrotate_lastrun', $last); } $date_now = new DateTime(); $date_now->setTimestamp($now); // Take the last date/time, set the time to 59 seconds past midnight // then remove one minute to make it the previous evening $date_orig = new DateTime(); $date_orig->setTimestamp($last); $date_last = new DateTime(); $date_last->setTimestamp($last)->setTime(0,0,59)->modify('-1 minute'); // Make sure we clone the last date, or we end up modifying the same object! $date_next = clone $date_last; $date_next->modify('+'.$frequency.'day'); cacti_log('Cacti Log Rotation - TIMECHECK Ran: ' . $date_orig->format('Y-m-d H:i:s') . ', Now: ' . $date_now->format('Y-m-d H:i:s') . ', Next: ' . $date_next->format('Y-m-d H:i:s'), true, 'MAINT', POLLER_VERBOSITY_HIGH); if ($date_next < $date_now) { logrotate_rotatenow(); } } exit(0); /** realtime_purge_cache() - This function will purge files in the realtime directory * that are older than 2 hours without changes */ function realtime_purge_cache() { /* remove all Realtime files over than 2 hours */ if (read_config_option('realtime_cache_path') != '') { $cache_path = read_config_option('realtime_cache_path'); if (is_dir($cache_path) && is_writeable($cache_path)) { foreach (new DirectoryIterator($cache_path) as $fileInfo) { if ($fileInfo->isDot()) { continue; } // only remove .png and .rrd files if ( (substr($fileInfo->getFilename(), -4, 4) == '.png') || (substr($fileInfo->getFilename(), -4, 4) == '.rrd') ) { if ((time() - $fileInfo->getMTime()) >= 7200) { unlink($fileInfo->getRealPath()); } } } } } db_execute("DELETE FROM poller_output_realtime WHERE timesetTimestamp($run_time)->modify('-1day'); clearstatcache(); if (is_writable(dirname($log) . '/') && is_writable($log)) { $perms = octdec(substr(decoct( fileperms($log) ), 2)); $owner = fileowner($log); $group = filegroup($log); if ($owner !== false) { $ext = $date_log->format('Ymd'); if (file_exists($log . '-' . $ext)) { $ext_inc = 1; while (file_exists($log . '-' . $ext . '-' . $ext_inc) && $ext_inc < 99) { $ext_inc++; } $ext = $ext . '-' . $ext_inc; } if (rename($log, $log . '-' . $ext)) { touch($log); chown($log, $owner); chgrp($log, $group); chmod($log, $perms); cacti_log('Cacti Log Rotation - Created Log ' . basename($log) . '-' . $ext, true, 'MAINT'); } else { cacti_log('Cacti Log Rotation - ERROR: Could not rename ' . basename($log) . ' to ' . basename($log) . '-' . $ext, true, 'MAINT'); } } else { cacti_log('Cacti Log Rotation - ERROR: Permissions issue. Please check your log directory', true, 'MAINT'); } } else { cacti_log('Cacti Log Rotation - ERROR: Permissions issue. Directory / Log not writable.', true, 'MAINT'); } logrotate_cleanold(); /* record the start time */ $poller_end = microtime(true); $string = sprintf('LOGMAINT STATS: Time:%4.4f', ($poller_end - $poller_start)); cacti_log($string, true, 'SYSTEM'); } /* * logrotate_cleanold * Cleans up any old log files that should be removed */ function logrotate_cleanold () { global $config; $logfile = read_config_option('path_cactilog'); if ($logfile == '') { $logfile = $config['base_path'] . '/log/cacti.log'; } $baselogfile = basename($logfile) . '-'; $baseloglen = strlen($baselogfile); $dir = scandir(dirname($logfile)); $r = read_config_option('logrotate_retain'); if ($r == '' || $r < 0) { $r = 7; } if ($r > 365) { $r = 365; } if ($r == 0) { return; } if (sizeof($dir)) { $run_time = time(); $date = new DateTime(); $date_log = $date->setTimestamp($run_time)->modify('-'.$r.'day'); $e = $date_log->format('Ymd'); cacti_log('Cacti Log Rotation - Purging all logs before '.$e, true, 'MAINT'); foreach ($dir as $d) { if (substr($d, 0, $baseloglen) == $baselogfile && strlen($d) >= $baseloglen + 8) { $f = substr($d, 10, 8); if ($f < $e) { if (is_writable(dirname($logfile) . '/' . $d)) { @unlink(dirname($logfile) . '/' . $d); cacti_log('Cacti Log Rotation - Purging Log : ' . $d, true, 'MAINT'); } else { cacti_log('Cacti Log Rotation - ERROR: Can not purge log : ' . $d, true, 'MAINT'); } } else { cacti_log('Cacti Log Rotation - NOTE: Not expired, keeping log : ' . $d, true, 'MAINT', POLLER_VERBOSITY_HIGH); } } else { cacti_log('Cacti Log Rotation - NOTE: File not in expected naming format, ignoring : ' . $d, true, 'MAINT', POLLER_VERBOSITY_HIGH); } } } clearstatcache(); } /* * secpass_check_expired * Checks user accounts to determine if the accounts and/or their passwords should be expired */ function secpass_check_expired () { maint_debug('Checking for Account / Password expiration'); // Expire Old Accounts $e = read_config_option('secpass_expireaccount'); if ($e > 0 && is_numeric($e)) { $t = time(); db_execute_prepared("UPDATE user_auth SET lastlogin = ? WHERE lastlogin = -1 AND realm = 0 AND enabled = 'on'", array($t)); $t = $t - (intval($e) * 86400); db_execute_prepared("UPDATE user_auth SET enabled = '' WHERE realm = 0 AND enabled = 'on' AND lastlogin < ? AND id > 1", array($t)); } $e = read_config_option('secpass_expirepass'); if ($e > 0 && is_numeric($e)) { $t = time(); db_execute_prepared("UPDATE user_auth SET lastchange = ? WHERE lastchange = -1 AND realm = 0 AND enabled = 'on'", array($t)); $t = $t - (intval($e) * 86400); db_execute_prepared("UPDATE user_auth SET must_change_password = 'on' WHERE realm = 0 AND enabled = 'on' AND lastchange < ?", array($t)); } } /* * remove_files * remove all unwanted files; the list is given by table data_source_purge_action */ function remove_files($file_array) { global $config, $debug, $archived, $purged; include_once ($config['library_path'] . '/api_graph.php'); include_once ($config['library_path'] . '/api_data_source.php'); maint_debug('RRDClean is now running on ' . sizeof($file_array) . ' items'); /* determine the location of the RRA files */ if (isset ($config['rra_path'])) { $rra_path = $config['rra_path']; } else { $rra_path = $config['base_path'] . '/rra'; } /* let's prepare the archive directory */ $rrd_archive = read_config_option('rrd_archive', true); if ($rrd_archive == '') { $rrd_archive = $rra_path . '/archive'; } rrdclean_create_path($rrd_archive); /* now scan the files */ foreach ($file_array as $file) { $source_file = $rra_path . '/' . $file['name']; switch ($file['action']) { case '1' : if (unlink($source_file)) { maint_debug('Deleted: ' . $file['name']); } else { cacti_log($file['name'] . " ERROR: RRDfile Maintenance unable to delete from $rra_path!", true, 'MAINT'); } $purged++; break; case '3' : $target_file = $rrd_archive . '/' . $file['name']; $target_dir = dirname($target_file); if (!is_dir($target_dir)) { rrdclean_create_path($target_dir); } if (rename($source_file, $target_file)) { maint_debug('Moved: ' . $file['name'] . ' to: ' . $rrd_archive); } else { cacti_log($file['name'] . " ERROR: RRDfile Maintenance unable to move to $rrd_archive!", true, 'MAINT'); } $archived++; break; } /* drop from data_source_purge_action table */ db_execute_prepared('DELETE FROM `data_source_purge_action` WHERE name = ?', array($file['name'])); maint_debug('Delete from data_source_purge_action: ' . $file['name']); //fetch all local_graph_id's according to this data source $lgis = db_fetch_assoc_prepared('SELECT DISTINCT gl.id FROM graph_local AS gl INNER JOIN graph_templates_item AS gti ON gl.id = gti.local_graph_id INNER JOIN data_template_rrd AS dtr ON dtr.id=gti.task_item_id INNER JOIN data_local AS dl ON dtr.local_data_id=dl.id WHERE (local_data_id=?)', array($file['local_data_id'])); if (sizeof($lgis)) { /* anything found? */ maint_debug('Processing ' . sizeof($lgis) . ' Graphs for data source id: ' . $file['local_data_id']); /* get them all */ foreach ($lgis as $item) { $remove_lgis[] = $item['id']; maint_debug('remove local_graph_id=' . $item['id']); } /* and remove them in a single run */ if (!empty ($remove_lgis)) { api_graph_remove_multi($remove_lgis); } } /* remove related data source if any */ if ($file['local_data_id'] > 0) { maint_debug('Removing Data Source: ' . $file['local_data_id']); api_data_source_remove($file['local_data_id']); } } maint_debug('RRDClean has finished a purge pass of ' . sizeof($file_array) . ' items'); } function rrdclean_create_path($path) { global $config; if (!is_dir($path)) { if (mkdir($path, 0775)) { if ($config['cacti_server_os'] != 'win32') { $owner_id = fileowner($config['rra_path']); $group_id = filegroup($config['rra_path']); // NOTE: chown/chgrp fails for non-root users, checking their // result is therefore irrevelevant @chown($path, $owner_id); @chgrp($path, $group_id); } } else { cacti_log("ERROR: RRDfile Maintenance unable to create directory '" . $path . "'", false, 'MAINT'); } } // if path existed, we can return true return is_dir($path) && is_writable($path); } /* * cleanup_ds_and_graphs - courtesy John Rembo */ function cleanup_ds_and_graphs() { global $config; include_once ($config['library_path'] . '/rrd.php'); include_once ($config['library_path'] . '/utility.php'); include_once ($config['library_path'] . '/api_graph.php'); include_once ($config['library_path'] . '/api_data_source.php'); include_once ($config['library_path'] . '/functions.php'); $remove_ldis = array (); $remove_lgis = array (); maint_debug('RRDClean now cleans up all data sources and graphs'); //fetch all local_data_id's which have appropriate data-sources $rrds = db_fetch_assoc("SELECT local_data_id, name_cache, data_source_path FROM data_template_data WHERE name_cache > ''"); //filter those whose rrd files doesn't exist foreach ($rrds as $item) { $ldi = $item['local_data_id']; $name = $item['name_cache']; $ds_pth = $item['data_source_path']; $real_pth = str_replace('', $config['rra_path'], $ds_pth); if (!file_exists($real_pth)) { if (!in_array($ldi, $remove_ldis)) { $remove_ldis[] = $ldi; maint_debug("RRD file is missing for data source name: $name (local_data_id=$ldi)"); } } } if (empty ($remove_ldis)) { maint_debug('No missing rrd files found'); return 0; } maint_debug('Processing Graphs'); //fetch all local_graph_id's according to filtered rrds $lgis = db_fetch_assoc('SELECT DISTINCT gl.id FROM graph_local AS gl INNER JOIN graph_templates_item AS gti ON gl.id=gti.local_graph_id INNER JOIN data_template_rrd AS dtr ON dtr.id=gti.task_item_id INNER JOIN data_local AS dl ON dtr.local_data_id=dl.id WHERE (' . array_to_sql_or($remove_ldis, 'local_data_id') . ')'); foreach ($lgis as $item) { $remove_lgis[] = $item['id']; maint_debug('RRD file missing for local_graph_id=' . $item['id']); } if (!empty ($remove_lgis)) { maint_debug('removing graphs'); api_graph_remove_multi($remove_lgis); } maint_debug('removing data sources'); api_data_source_remove_multi($remove_ldis); maint_debug('removed graphs:' . count($remove_lgis) . ' removed data-sources:' . count($remove_ldis)); } function maint_debug($message) { global $debug; if ($debug) { echo trim($message) . "\n"; } } /* display_version - displays version information */ function display_version() { $version = get_cacti_version(); echo "Cacti Maintenance Poller, Version $version, " . COPYRIGHT_YEARS . "\n"; } /* * display_help * displays the usage of the function */ function display_help() { display_version(); echo "\nusage: poller_maintenance.php [--force] [--debug]\n\n"; echo "Cacti's maintenance poller. This poller is repsonsible for executing periodic\n"; echo "maintenance activities for Cacti including log rotation, deactivating accounts, etc.\n\n"; echo "Optional:\n"; echo " --force - Force immediate execution, e.g. for testing.\n"; echo " --debug - Display verbose output during execution.\n\n"; } cacti-1.1.38/poller_dsstats.php0000664000175000017500000002007513264740213016034 0ustar tromantroman#!/usr/bin/php -q This script is only meant to run at the command line.'); } /* include important functions */ include_once('./include/global.php'); include_once($config['base_path'] . '/lib/poller.php'); include_once($config['base_path'] . '/lib/rrd.php'); include_once($config['base_path'] . '/lib/dsstats.php'); /* process calling arguments */ $parms = $_SERVER['argv']; array_shift($parms); $debug = false; $forcerun = false; $forcerun_maint = false; if (sizeof($parms)) { foreach($parms as $parameter) { if (strpos($parameter, '=')) { list($arg, $value) = explode('=', $parameter); } else { $arg = $parameter; $value = ''; } switch ($arg) { case '-d': case '--debug': $debug = true; break; case '-f': case '--force': $forcerun = true; break; case '--version': case '-v': case '-V': display_version(); exit; case '--help': case '-h': case '-H': display_help(); exit; default: print 'ERROR: Invalid Parameter ' . $parameter . "\n\n"; display_help(); exit; } } } /* install signal handlers for UNIX only */ if (function_exists('pcntl_signal')) { pcntl_signal(SIGTERM, 'sig_handler'); pcntl_signal(SIGINT, 'sig_handler'); } /* take time and log performance data */ $start = microtime(true); /* let's give this script lot of time to run for ever */ ini_set('max_execution_time', '0'); dsstats_memory_limit(); /* send a gentle message to the log and stdout */ dsstats_debug('Polling Starting'); /* only run if enabled, or forced */ if (read_config_option('dsstats_enable') == 'on' || $forcerun) { /* read some important settings relative to timing from the database */ $major_time = date('H:i:s', strtotime(read_config_option('dsstats_major_update_time'))); $daily_interval = read_config_option('dsstats_daily_interval'); $hourly_window = date('Y-m-d H:i:s', time() - (read_config_option('dsstats_hourly_duration') * 60)); /* check to see when the daily averages were updated last */ $last_run_daily = read_config_option('dsstats_last_daily_run_time'); $last_run_major = read_config_option('dsstats_last_major_run_time'); /* remove old records from the cache first */ if (db_fetch_cell_prepared('SELECT count(*) FROM data_source_stats_hourly_cache WHERE time < ?', array($hourly_window))) { db_execute_prepared('DELETE FROM data_source_stats_hourly_cache WHERE time < ?', array($hourly_window)); } /* store the current averages into the hourly table */ db_execute("INSERT INTO data_source_stats_hourly (local_data_id, rrd_name, average, peak) (SELECT local_data_id, rrd_name, AVG(`value`), MAX(`value`) FROM (SELECT local_data_id, rrd_name, `value` FROM data_source_stats_hourly_cache WHERE `value` IS NOT NULL) AS sally GROUP BY local_data_id, rrd_name) ON DUPLICATE KEY UPDATE average=VALUES(average), peak=VALUES(peak)"); log_dsstats_statistics('HOURLY'); /* see if boost is active or not */ $boost_active = read_config_option('boost_rrd_update_enable'); /* next let's see if it's time to update the daily interval */ $current_time = time(); if ($boost_active == 'on') { /* boost will spawn the collector */ } else { if ($daily_interval == 'boost' || $boost_active == 'on') { cacti_log("WARNING: Daily update interval set to 'boost' and Boost Plugin Not Enabled, reseting to default of 1 hour", false, 'DSSTATS'); set_config_option('dsstats_daily_interval', 60); $daily_interval = 60; } /* determine if it's time to determine hourly averages */ if ($last_run_daily == '') { /* since the poller has never run before, let's fake it out */ set_config_option('dsstats_last_daily_run_time', date('Y-m-d G:i:s', $current_time)); } /* if it's time to update daily statistics, do so now */ if (($last_run_daily != '' && ((strtotime($last_run_daily) + ($daily_interval * 60)) < $current_time)) || $forcerun) { /* run the daily stats */ dsstats_get_and_store_ds_avgpeak_values('daily'); log_dsstats_statistics('DAILY'); set_config_option('dsstats_last_daily_run_time', date('Y-m-d G:i:s', $current_time)); } } /* lastly, let's see if it's time to run the major stats */ if ($last_run_major == '') { /* since the poller has never run before, let's fake it out */ set_config_option('dsstats_last_major_run_time', date('Y-m-d G:i:s', $current_time)); } else { $last_major_day = date('Y-m-d', strtotime($last_run_major)); $next_major_day = strtotime($last_major_day . ' ' . $major_time) + 86400; } /* if its time to run major statistics, do so now */ if (($last_run_major != '' && ($next_major_day < $current_time)) || $forcerun) { /* run the major stats, log first to keep other processes from running */ set_config_option('dsstats_last_major_run_time', date('Y-m-d G:i:s', $current_time)); dsstats_get_and_store_ds_avgpeak_values('weekly'); dsstats_get_and_store_ds_avgpeak_values('monthly'); dsstats_get_and_store_ds_avgpeak_values('yearly'); log_dsstats_statistics('MAJOR'); } } dsstats_debug('Polling Ending'); cacti-1.1.38/poller_commands.php0000664000175000017500000001263013264740213016146 0ustar tromantroman#!/usr/bin/php -q This script is only meant to run at the command line.'); } /* Start Initialization Section */ include(dirname(__FILE__) . '/include/global.php'); include_once($config['base_path'] . '/lib/poller.php'); include_once($config['base_path'] . '/lib/data_query.php'); include_once($config['base_path'] . '/lib/rrd.php'); $poller_id = $config['poller_id']; /* process calling arguments */ $parms = $_SERVER['argv']; array_shift($parms); if (sizeof($parms)) { foreach($parms as $parameter) { if (strpos($parameter, '=')) { list($arg, $value) = explode('=', $parameter); } else { $arg = $parameter; $value = ''; } switch ($arg) { case '--version': case '-V': display_version(); exit; case '-H': case '--help': display_help(); exit(0); case '--poller': case '-p': $poller_id = $value; break; case '--debug': case '-d': $debug = true; break; default: echo "ERROR: Invalid Argument: ($arg)\n\n"; display_help(); exit(1); } } } /* Record Start Time */ $start = microtime(true); $poller_commands = db_fetch_assoc_prepared('SELECT action, command FROM poller_command WHERE poller_id = ?', array($poller_id)); $last_host_id = 0; $first_host = true; $recached_hosts = 0; if (sizeof($poller_commands) > 0) { foreach ($poller_commands as $command) { switch ($command['action']) { case POLLER_COMMAND_REINDEX: list($host_id, $data_query_id) = explode(':', $command['command']); if ($last_host_id != $host_id) { $last_host_id = $host_id; $first_host = true; $recached_hosts++; } else { $first_host = false; } if ($first_host) { cacti_log("Device[$host_id] WARNING: Recache Event Detected for Device", true, 'PCOMMAND'); } cacti_log("Device[$host_id] RECACHE: Recache for Device, data query #$data_query_id", true, 'PCOMMAND', POLLER_VERBOSITY_DEBUG); run_data_query($host_id, $data_query_id); cacti_log("Device[$host_id] RECACHE: Recache successful.", true, 'PCOMMAND', POLLER_VERBOSITY_DEBUG); break; default: cacti_log('ERROR: Unknown poller command issued', true, 'PCOMMAND'); } /* record current_time */ $current = microtime(true); /* end if runtime has been exceeded */ if (($current-$start) > MAX_RECACHE_RUNTIME) { cacti_log("ERROR: Poller Command processing timed out after processing '" . $command . "'",true,'PCOMMAND'); break; } } db_execute_prepared('DELETE FROM poller_command WHERE poller_id = ?', array($poller_id)); } /* take time to log performance data */ $recache = microtime(true); $recache_stats = sprintf('Poller:%i RecacheTime:%01.4f DevicesRecached:%s', $poller_id, round($recache - $start, 4), $recached_hosts); if ($recached_hosts > 0) { cacti_log('STATS: ' . $recache_stats, true, 'RECACHE'); } /* insert poller stats into the settings table */ db_execute_prepared('REPLACE INTO settings (name, value) VALUES (?, ?)', array('stats_recache_' . $poller_id, $recache_stats)); /* display_version - displays version information */ function display_version() { $version = get_cacti_version(); print "Cacti Poller Commands Poller, Version $version " . COPYRIGHT_YEARS . "\n"; } function display_help () { display_version(); echo "\nusage: poller_commands.php [--poller=ID] [--debug]\n\n"; echo "Cacti's commands poller. This poller can receive specifically crafted commands from\n"; echo "either the Cacti UI, or from the main poller, and then run them in the background.\n\n"; echo "Optional:\n"; echo " --poller=ID - The poller to run as. Defaults to the system poller\n"; echo " --debug - Display verbose output during execution\n\n"; } cacti-1.1.38/poller_boost.php0000664000175000017500000003462313264740213015501 0ustar tromantroman#!/usr/bin/php -q This script is only meant to run at the command line.'); } /* we are not talking to the browser */ $no_http_headers = true; $dir = dirname(__FILE__); chdir($dir); if (strpos($dir, 'boost') !== false) { chdir('../../'); } /* include important functions */ include_once('./include/global.php'); include_once($config['base_path'] . '/lib/poller.php'); include_once($config['base_path'] . '/lib/boost.php'); include_once($config['base_path'] . '/lib/dsstats.php'); /* get the boost polling cycle */ $max_run_duration = read_config_option('boost_rrd_update_max_runtime'); /* process calling arguments */ $parms = $_SERVER['argv']; array_shift($parms); $debug = false; $forcerun = false; $verbose = false; if (sizeof($parms)) { foreach($parms as $parameter) { if (strpos($parameter, '=')) { list($arg, $value) = explode('=', $parameter); } else { $arg = $parameter; $value = ''; } switch ($arg) { case '-d': case '--debug': $debug = true; break; case '-f': case '--force': $forcerun = true; break; case '--verbose': $verbose = true; break; case '--version': case '-V': case '-v': display_version(); exit; case '--help': case '-H': case '-h': display_help(); exit; default: print 'ERROR: Invalid Parameter ' . $parameter . "\n\n"; display_help(); exit; } } } /* install signal handlers for UNIX only */ if (function_exists('pcntl_signal')) { pcntl_signal(SIGTERM, 'sig_handler'); pcntl_signal(SIGINT, 'sig_handler'); } /* take time and log performance data */ $start = microtime(true); /* let's give this script lot of time to run for ever */ ini_set('max_execution_time', '0'); boost_memory_limit(); if ((read_config_option('boost_rrd_update_enable') == 'on') || $forcerun) { /* turn on the system level updates as that is what dictates "on/off" */ if ((!$forcerun) && (read_config_option('boost_rrd_update_system_enable') != 'on')) { db_execute("REPLACE INTO settings (name,value) VALUES ('boost_rrd_update_system_enable','on')"); } $seconds_offset = read_config_option('boost_rrd_update_interval') * 60; /* find out if it's time to collect device information */ $last_run_time = strtotime(read_config_option('boost_last_run_time')); $next_run_time = strtotime(read_config_option('boost_next_run_time')); /* determine the next start time */ $current_time = time(); if (empty($last_run_time)) { /* since the poller has never run before, let's fake it out */ $next_run_time = $current_time + $seconds_offset; db_execute("REPLACE INTO settings (name, value) VALUES ('boost_last_run_time', '" . date('Y-m-d G:i:s', $current_time) . "')"); $last_run_time = $current_time; } else { $next_run_time = $last_run_time + $seconds_offset; } $time_till_next_run = $next_run_time - $current_time; /* determine if you must output boost table now */ $max_records = read_config_option('boost_rrd_update_max_records'); $current_records = boost_get_total_rows(); if (($time_till_next_run <= 0) || ($forcerun) || ($current_records >= $max_records) || ($next_run_time <= $current_time)) { db_execute("REPLACE INTO settings (name, value) VALUES ('boost_last_run_time', '" . date('Y-m-d G:i:s', $current_time) . "')"); /* output all the rrd data to the rrd files */ $rrd_updates = output_rrd_data($current_time, $forcerun); if ($rrd_updates != '-1') { log_boost_statistics($rrd_updates); $next_run_time = $current_time + $seconds_offset; } else { /* rollback last run time */ db_execute("REPLACE INTO settings (name, value) VALUES ('boost_last_run_time', '" . date('Y-m-d G:i:s', $last_run_time) . "')"); } dsstats_boost_bottom(); api_plugin_hook('boost_poller_bottom'); } /* store the next run time so that people understand */ db_execute("REPLACE INTO settings (name, value) VALUES ('boost_next_run_time', '" . date('Y-m-d G:i:s', $next_run_time) . "')"); } else { /* turn off the system level updates */ if (read_config_option('boost_rrd_update_system_enable') == 'on') { db_execute("REPLACE INTO settings (name,value) VALUES ('boost_rrd_update_system_enable','')"); } $rows = boost_get_total_rows(); if ($rows > 0) { /* determine the time to clear the table */ $current_time = time(); /* output all the rrd data to the rrd files */ $rrd_updates = output_rrd_data($current_time, $forcerun); if ($rrd_updates != '-1') { log_boost_statistics($rrd_updates); } } } purge_cached_png_files($forcerun); exit(0); function sig_handler($signo) { switch ($signo) { case SIGTERM: case SIGINT: cacti_log('WARNING: Boost Poller terminated by user', false, 'BOOST'); /* tell the main poller that we are done */ db_execute("REPLACE INTO settings (name, value) VALUES ('boost_poller_status', 'terminated - end time:" . date('Y-m-d G:i:s') ."')"); exit; break; default: /* ignore all other signals */ } } function output_rrd_data($start_time, $force = false) { global $start, $max_run_duration, $config, $database_default, $debug, $get_memory, $memory_used; include_once($config['base_path'] . '/lib/rrd.php'); $boost_poller_status = read_config_option('boost_poller_status'); $rrd_updates = 0; /* implement process lock control for boost */ if (!db_fetch_cell("SELECT GET_LOCK('poller_boost', 1)")) { if ($debug){ cacti_log('DEBUG: Found lock, so another boost process is running'); } return -1; } /* detect a process that has overrun it's warning time */ if (substr_count($boost_poller_status, 'running')) { $status_array = explode(':', $boost_poller_status); if (!empty($status_array[1])) { $previous_start_time = strtotime($status_array[1]); /* if the runtime was exceeded, allow the next process to run */ if ($previous_start_time + $max_run_duration < $start_time) { cacti_log('WARNING: Detected Poller Boost Overrun, Possible Boost Poller Crash', false, 'BOOST SVR'); } } } /* if the poller is not running, or has never run, start */ /* mark the boost server as running */ db_execute("REPLACE INTO settings (name, value) VALUES ('boost_poller_status', 'running - start time:" . date('Y-m-d G:i:s') ."')"); $current_time = date('Y-m-d G:i:s', $start_time); $rrdtool_pipe = rrd_init(); $runtime_exceeded = false; /* let's set and track memory usage will we */ if (!function_exists('memory_get_peak_usage')) { $get_memory = true; $memory_used = memory_get_usage(); } else { $get_memory = false; } $delayed_inserts = db_fetch_row("SHOW STATUS LIKE 'Not_flushed_delayed_rows'"); while($delayed_inserts['Value']){ cacti_log('BOOST WAIT: Waiting 1s for delayed inserts are made' , true, 'SYSTEM'); usleep(1000000); $delayed_inserts = db_fetch_row("SHOW STATUS LIKE 'Not_flushed_delayed_rows'"); } /* split poller_output_boost */ $archive_table = 'poller_output_boost_arch_' . time(); db_execute("RENAME TABLE poller_output_boost TO $archive_table"); db_execute("CREATE TABLE poller_output_boost LIKE $archive_table"); $more_arch_tables = db_fetch_assoc_prepared("SELECT table_name AS name FROM information_schema.tables WHERE table_schema = ? AND table_name LIKE 'poller_output_boost_arch_%' AND table_name != ?", array($database_default, $archive_table)); if (count($more_arch_tables)) { foreach($more_arch_tables as $table) { $table_name = $table['name']; $rows = db_fetch_cell("SELECT count(*) FROM $table_name"); if (is_numeric($rows) && intval($rows) > 0) { db_execute("INSERT INTO $archive_table SELECT * FROM $table_name"); db_execute("TRUNCATE TABLE $table_name"); } } } if ($archive_table == '') { cacti_log('ERROR: Failed to retrieve archive table name'); return -1; } while (true) { $rows = db_fetch_cell("SELECT count(*) FROM $archive_table"); if ($rows > 0) { $rrd_updates += boost_process_poller_output('', $rrdtool_pipe, $current_time); if ($get_memory) { $cur_memory = memory_get_usage(); if ($cur_memory > $memory_used) { $memory_used = $cur_memory; } } } else { break; } if (((time()-$start) > $max_run_duration) && (!$runtime_exceeded)) { cacti_log('WARNING: RRD On Demand Updater Exceeded Runtime Limits. Continuing to Process!!!'); $runtime_exceeded = true; } } /* tell the main poller that we are done */ db_execute("REPLACE INTO settings (name, value) VALUES ('boost_poller_status', 'complete - end time:" . date('Y-m-d G:i:s') ."')"); /* log memory usage */ if (function_exists('memory_get_peak_usage')) { db_execute("REPLACE INTO settings (name, value) VALUES ('boost_peak_memory', '" . memory_get_peak_usage() . "')"); } else { db_execute("REPLACE INTO settings (name, value) VALUES ('boost_peak_memory', '" . $memory_used . "')"); } rrd_close($rrdtool_pipe); /* cleanup - remove empty arch tables */ $tables = db_fetch_assoc("SELECT table_name AS name FROM information_schema.tables WHERE table_schema=SCHEMA() AND table_name LIKE 'poller_output_boost_arch_%'"); if (count($tables)) { foreach($tables as $table) { $rows = db_fetch_cell('SELECT count(*) FROM ' . $table['name']); if (is_numeric($rows) && intval($rows) == 0) { db_execute('DROP TABLE ' . $table['name']); } } } db_execute("SELECT RELEASE_LOCK('poller_boost');"); return $rrd_updates; } function log_boost_statistics($rrd_updates) { global $start, $boost_stats_log, $verbose; /* take time and log performance data */ $end = microtime(true); $cacti_stats = sprintf( 'Time:%01.4f ' . 'RRDUpdates:%s', round($end-$start,2), $rrd_updates); /* log to the database */ db_execute_prepared("REPLACE INTO settings (name,value) VALUES ('stats_boost', ?)", array($cacti_stats)); /* log to the logfile */ cacti_log('BOOST STATS: ' . $cacti_stats , true, 'SYSTEM'); if (isset($boost_stats_log)) { $overhead = boost_timer_get_overhead(); $outstr = ''; $timer_cycles = 0; foreach($boost_stats_log as $area => $entry) { if (isset($entry[BOOST_TIMER_TOTAL])) { $outstr .= ($outstr != '' ? ', ' : '') . $area . ':' . round($entry[BOOST_TIMER_TOTAL] - (($overhead * $entry[BOOST_TIMER_CYCLES])/BOOST_TIMER_OVERHEAD_MULTIPLIER), 2); } $timer_cycles += $entry[BOOST_TIMER_CYCLES]; } if ($outstr != '') { $outstr = "RRDUpdates:$rrd_updates, TotalTime:" . round($end - $start, 0) . ', ' . $outstr; $timer_overhead = round((($overhead * $timer_cycles)/BOOST_TIMER_OVERHEAD_MULTIPLIER), 0); if ($timer_overhead > 0) { $outstr .= ", timer_overhead:~$timer_overhead"; } /* log to the database */ db_execute_prepared("REPLACE INTO settings (name,value) VALUES ('stats_detail_boost', ?)", array(str_replace(',', '', $outstr))); /* log to the logfile */ if ($verbose) { cacti_log('BOOST DETAIL STATS: ' . $outstr, true, 'SYSTEM'); } } } } function purge_cached_png_files($forcerun) { /* remove stale png's from the cache. I consider png's stale afer 1 hour */ if ((read_config_option('boost_png_cache_enable') == 'on') || $forcerun) { $cache_directory = read_config_option('boost_png_cache_directory'); $remove_time = time() - 3600; $directory_contents = array(); if (is_dir($cache_directory)) { if ($handle = opendir($cache_directory)) { /* This is the correct way to loop over the directory. */ while (false !== ($file = readdir($handle))) { $directory_contents[] = $file; } closedir($handle); } /* remove age old files */ if (sizeof($directory_contents)) { /* goto the cache directory */ chdir($cache_directory); /* check and fry as applicable */ foreach($directory_contents as $file) { if (is_writable($file)) { $modify_time = filemtime($file); if ($modify_time < $remove_time) { /* only remove jpeg's and png's */ if ((substr_count(strtolower($file), '.png')) || (substr_count(strtolower($file), '.jpg'))) { unlink($file); } } } } } } } } /* do NOT run this script through a web browser */ /* display_version - displays version information */ function display_version() { $version = get_cacti_version(); print "Cacti Boost RRD Update Poller, Version $version " . COPYRIGHT_YEARS . "\n"; } /* display_help - displays the usage of the function */ function display_help () { display_version(); print "\nusage: poller_boost.php [--verbose] [--force] [--debug]\n\n"; print "Cacti's performance boosting poller. This poller will purge the boost cache periodically. You may\n"; print "force the processing of the boost cache by using the --force option.\n\n"; print "Optional:\n"; print " --verbose - Show details logs at the command line\n"; print " --force - Force the execution of a update process\n"; print " --debug - Display verbose output during execution\n\n"; } cacti-1.1.38/poller_automation.php0000664000175000017500000007143413264740213016534 0ustar tromantroman#!/usr/bin/php -q 0) { clearTask($network_id, getmypid()); exit; } elseif($thread == 0 && !$master) { $pids = array_rekey(db_fetch_assoc_prepared("SELECT pid FROM automation_processes WHERE network_id = ? AND task!='tmaster'", array($network_id)), 'pid', 'pid'); if (sizeof($pids)) { foreach($pids as $pid) { posix_kill($pid, SIGTERM); } } clearTask($network_id, getmypid()); db_execute_prepared('DELETE FROM automation_ips WHERE network_id = ?', array($network_id)); } else { $pids = array_rekey(db_fetch_assoc_prepared("SELECT pid FROM automation_processes WHERE poller_id = ? AND task='tmaster'", array($poller_id)), 'pid', 'pid'); if (sizeof($pids)) { foreach($pids as $pid) { posix_kill($pid, SIGTERM); } } clearTask($network_id, getmypid()); } exit; break; default: /* ignore all other signals */ } } /* let PHP run just as long as it has to */ if (!isset($_SERVER['argv'][0]) || isset($_SERVER['REQUEST_METHOD']) || isset($_SERVER['REMOTE_ADDR'])) { die('
    This script is only meant to run at the command line.'); } /* take time and log performance data */ $start = microtime(true); // Unix Timestamp for Database $startTime = time(); /* let PHP run just as long as it has to */ ini_set('max_execution_time', '0'); $dir = dirname(__FILE__); chdir($dir); include('./include/global.php'); include_once($config['base_path'] . '/lib/snmp.php'); include_once($config['base_path'] . '/lib/ping.php'); include_once($config['base_path'] . '/lib/poller.php'); include_once($config['base_path'] . '/lib/utility.php'); include_once($config['base_path'] . '/lib/api_data_source.php'); include_once($config['base_path'] . '/lib/api_graph.php'); include_once($config['base_path'] . '/lib/snmp.php'); include_once($config['base_path'] . '/lib/data_query.php'); include_once($config['base_path'] . '/lib/api_device.php'); include_once($config['base_path'] . '/lib/sort.php'); include_once($config['base_path'] . '/lib/html_form_template.php'); include_once($config['base_path'] . '/lib/template.php'); include_once($config['base_path'] . '/lib/api_tree.php'); include_once($config['base_path'] . '/lib/api_automation.php'); /* process calling arguments */ $parms = $_SERVER['argv']; array_shift($parms); $debug = false; $force = false; $network_id = 0; $poller_id = $config['poller_id']; $thread = 0; $master = false; global $debug, $poller_id, $network_id, $thread, $master; if (sizeof($parms)) { foreach($parms as $parameter) { if (strpos($parameter, '=')) { list($arg, $value) = explode('=', $parameter); } else { $arg = $parameter; $value = ''; } switch ($arg) { case '-d': case '--debug': $debug = true; break; case '-M': case '--master': $master = true; break; case '--poller': $poller_id = $value; break; case '-f': case '--force': $force = true; break; case '--network': $network_id = $value; break; case '--thread': $thread = $value; break; case '-v': case '--version': display_version(); exit; case '-h': case '--help': display_help(); exit; default: print 'ERROR: Invalid Parameter ' . $parameter . "\n\n"; display_help(); exit; } } } /* install signal handlers for UNIX only */ if (function_exists('pcntl_signal')) { pcntl_signal(SIGTERM, 'sig_handler'); pcntl_signal(SIGINT, 'sig_handler'); } // Let's ensure that we were called correctly if (!$master && !$network_id) { print "FATAL: You must specify -M to Start the Master Control Process, or the Network ID using --network\n"; exit; } // Simple check for a disabled network if (!$master && $thread == 0) { $status = db_fetch_cell_prepared('SELECT enabled FROM automation_networks WHERE id = ? AND poller_id = ?', array($network_id, $poller_id)); if ($status != 'on' && !$force) { cacti_log("WARNING: The Network ID: $network_id is disabled. You must use the 'force' option to force it's execution.", true, 'AUTOM8'); exit; } } if ($master) { $networks = db_fetch_assoc_prepared('SELECT * FROM automation_networks WHERE poller_id = ?', array($poller_id)); $launched = 0; if (sizeof($networks)) { foreach($networks as $network) { if (api_automation_is_time_to_start($network['id']) || $force) { automation_debug("Launching Network Master for '" . $network['name'] . "'\n"); exec_background(read_config_option('path_php_binary'), '-q ' . read_config_option('path_webroot') . '/poller_automation.php --poller=' . $poller_id . ' --network=' . $network['id'] . ($force ? ' --force':'') . ($debug ? ' --debug':'')); $launched++; } else { automation_debug("Not time to Run Discovery for '" . $network['name'] . "'\n"); } } } exit; } // Check for Network Master if (!$master && $thread == 0) { automation_debug("Thread master about to launch collector threads\n"); // Remove any stale entries $pids = array_rekey( db_fetch_assoc_prepared('SELECT pid FROM automation_processes WHERE network_id = ?', array($network_id)), 'pid', 'pid' ); automation_debug("Killing any prior running threads\n"); if (sizeof($pids)) { foreach($pids as $pid) { if (isProcessRunning($pid)) { killProcess($pid); cacti_log("WARNING: Automation Process $pid is still running for Network ID: $network_id", true, 'AUTOM8'); } else { cacti_log("WARNING: Process $pid claims to be running but not found for Network ID: $network_id", true, 'AUTOM8'); } } } automation_debug("Removing any orphan entries\n"); db_execute_prepared('DELETE FROM automation_ips WHERE network_id = ?', array($network_id)); db_execute_prepared('DELETE FROM automation_processes WHERE network_id = ?', array($network_id)); registerTask($network_id, getmypid(), $poller_id, 'tmaster'); cacti_log("Network Discover is now running for Subnet Range '$network_id'", true, 'AUTOM8'); automation_primeIPAddressTable($network_id); $threads = db_fetch_cell_prepared('SELECT threads FROM automation_networks WHERE id = ?', array($network_id)); if ($threads <= 0) { $threads = 1; } automation_debug("Automation will use $threads Threads\n"); db_execute_prepared('UPDATE automation_networks SET last_started = ? WHERE id = ?', array(date('Y-m-d H:i:s', $startTime), $network_id)); $curthread = 1; while($curthread <= $threads) { automation_debug("Launching Thread $curthread\n"); exec_background(read_config_option('path_php_binary'), '-q ' . read_config_option('path_webroot') . '/poller_automation.php --poller=' . $poller_id . " --thread=$curthread --network=$network_id" . ($force ? ' --force':'') . ($debug ? ' --debug':'')); $curthread++; } sleep(5); automation_debug("Checking for Running Threads\n"); $failcount = 0; while (true) { $command = db_fetch_cell_prepared('SELECT command FROM automation_processes WHERE network_id = ? AND task="tmaster"', array($network_id)); if ($command == 'cancel') { killProcess(getmypid()); } $running = db_fetch_cell_prepared('SELECT count(*) FROM automation_processes WHERE network_id = ? AND task!="tmaster" AND status="running"', array($network_id)); automation_debug("Found $running Threads\n"); if ($running == 0 && $failcount > 3) { db_execute_prepared('DELETE FROM automation_ips WHERE network_id = ?', array($network_id)); $totals = db_fetch_row_prepared('SELECT SUM(up_hosts) AS up, SUM(snmp_hosts) AS snmp FROM automation_processes WHERE network_id = ?', array($network_id)); /* take time and log performance data */ $end = microtime(true); db_execute_prepared('UPDATE automation_networks SET up_hosts = ?, snmp_hosts = ?, last_started = ?, last_runtime = ? WHERE id = ?', array($totals['up'], $totals['snmp'], date('Y-m-d H:i:s', $startTime), ($end - $start), $network_id)); clearAllTasks($network_id); exit; } else { $failcount++; } sleep(5); } } else { registerTask($network_id, getmypid(), $poller_id); discoverDevices($network_id, $thread); endTask($network_id, getmypid()); } exit; function discoverDevices($network_id, $thread) { $network = db_fetch_row_prepared('SELECT * FROM automation_networks WHERE id = ?', array($network_id)); $temp = db_fetch_assoc('SELECT automation_templates.*, host_template.name FROM automation_templates LEFT JOIN host_template ON (automation_templates.host_template=host_template.id)'); $dns = trim($network['dns_servers']); /* Let's do some stats! */ $stats = array(); $stats['scanned'] = 0; $stats['ping'] = 0; $stats['snmp'] = 0; $stats['added'] = 0; $count_graph = 0; $count = 0; while(true) { // set and ip to be scanned db_execute_prepared('UPDATE automation_ips SET pid = ?, thread = ? WHERE network_id = ? AND status=0 AND pid=0 LIMIT 1', array(getmypid(), $thread, $network_id)); $device = db_fetch_row_prepared('SELECT * FROM automation_ips WHERE pid = ? AND thread = ? AND status=0', array(getmypid(), $thread)); if (sizeof($device) && isset($device['ip_address'])) { $count++; if ($dns != '') { $dnsname = automation_get_dns_from_ip($device['ip_address'], $dns, 300); if ($dnsname != $device['ip_address'] && $dnsname != 'timed_out') { automation_debug("Device: " . $device['ip_address'] . ", Checking DNS: Found '" . $dnsname . "'"); db_execute_prepared('UPDATE automation_ips SET hostname = ? WHERE ip_address = ?', array($dnsname, $device['ip_address'])); $device['hostname'] = $dnsname; $device['dnsname'] = $dnsname; $device['dnsname_short'] = preg_split('/[\.]+/', strtolower($dnsname), -1, PREG_SPLIT_NO_EMPTY); } elseif ($network['enable_netbios'] == 'on') { automation_debug("Device: " . $device['ip_address'] . ", Checking DNS: Not found, Checking NetBIOS:"); $netbios = ping_netbios_name($device['ip_address']); if ($netbios === false) { automation_debug(" Not found"); $device['hostname'] = $device['ip_address']; $device['dnsname'] = ''; $device['dnsname_short'] = ''; } else { automation_debug(" Found: '" . $netbios . "'"); db_execute_prepared('UPDATE automation_ips SET hostname = ? WHERE ip_address = ?', array($device['hostname'], $device['ip_address'])); $device['dnsname'] = $netbios; $device['dnsname_short'] = $netbios; } } else { automation_debug("Device: " . $device['ip_address'] . ", Checking DNS: Not found"); $device['hostname'] = $device['ip_address']; $device['dnsname'] = ''; $device['dnsname_short'] = ''; } } else { $dnsname = @gethostbyaddr($device['ip_address']); $device['hostname'] = $dnsname; if ($dnsname != $device['ip_address']) { automation_debug("Device: " . $device['ip_address'] . ", Checking DNS: Found '" . $dnsname . "'"); db_execute_prepared('UPDATE automation_ips SET hostname = ? WHERE ip_address = ?', array($dnsname, $device['ip_address'])); $device['dnsname'] = $dnsname; $device['dnsname_short'] = preg_split('/[\.]+/', strtolower($dnsname), -1, PREG_SPLIT_NO_EMPTY); } elseif ($network['enable_netbios'] == 'on') { automation_debug("Device: " . $device['ip_address'] . ", Checking DNS: Not found, Checking NetBIOS:"); $netbios = ping_netbios_name($device['ip_address']); if ($netbios === false) { automation_debug(" Not found"); $device['hostname'] = $device['ip_address']; $device['dnsname'] = ''; $device['dnsname_short'] = ''; } else { automation_debug(" Found: '" . $netbios . "'"); db_execute_prepared('UPDATE automation_ips SET hostname = ? WHERE ip_address = ?', array($device['hostname'], $device['ip_address'])); $device['dnsname'] = $netbios; $device['dnsname_short'] = $netbios; } } else { automation_debug("Device: " . $device['ip_address'] . ", Checking DNS: Not found"); $device['hostname'] = $device['ip_address']; $device['dnsname'] = ''; $device['dnsname_short'] = ''; } } $exists = db_fetch_row_prepared('SELECT id, snmp_version, status FROM host WHERE hostname IN (?,?)', array($device['ip_address'], $device['hostname'])); if (!sizeof($exists)) { automation_debug(", Status: Not in Cacti"); if (substr($device['ip_address'], -3) < 255) { automation_debug(', Ping: '); // Set status to running markIPRunning($device['ip_address'], $network_id); $stats['scanned']++; $device['snmp_status'] = 0; $device['ping_status'] = 0; $device['snmp_id'] = $network['snmp_id']; $device['poller_id'] = $network['poller_id']; $device['site_id'] = $network['site_id']; $device['snmp_version'] = ''; $device['snmp_port'] = ''; $device['snmp_community'] = ''; $device['snmp_username'] = ''; $device['snmp_password'] = ''; $device['snmp_auth_protocol'] = ''; $device['snmp_auth_passphrase'] = ''; $device['snmp_auth_protocol'] = ''; $device['snmp_context'] = ''; $device['snmp_port'] = ''; $device['snmp_timeout'] = ''; $device['snmp_sysDescr'] = ''; $device['snmp_sysObjectID'] = ''; $device['snmp_sysUptime'] = 0; $device['snmp_sysName'] = ''; $device['snmp_sysName_short'] = ''; $device['snmp_sysLocation'] = ''; $device['snmp_sysContact'] = ''; $device['os'] = ''; $device['snmp_priv_passphrase'] = ''; $device['snmp_priv_protocol'] = ''; /* create new ping socket for host pinging */ $ping = new Net_Ping; $ping->host['hostname'] = $device['ip_address']; $ping->retries = $network['ping_retries']; $ping->port = $network['ping_port'];; /* perform the appropriate ping check of the host */ $result = $ping->ping(AVAIL_PING, $network['ping_method'], $network['ping_timeout'], 1); if (!$result) { automation_debug(" No response"); updateDownDevice($network_id, $device['ip_address']); } else { automation_debug(" Responded"); $stats['ping']++; addUpDevice($network_id, getmypid()); } if ($result && automation_valid_snmp_device($device)) { $snmp_sysName = trim($device['snmp_sysName']); $snmp_sysName_short = ''; if (!is_ipaddress($snmp_sysName)) { $parts = explode('.', $snmp_sysName); foreach($parts as $part) { if (is_numeric($part)) { $snmp_sysName_short = $snmp_sysName; break; } } if ($snmp_sysName_short == '') { $snmp_sysName_short = $parts[0]; } } else { $snmp_sysName_short = $snmp_sysName; } $exists = db_fetch_row_prepared('SELECT id, status, snmp_version FROM host WHERE hostname IN (?,?)', array($snmp_sysName_short, $snmp_sysName)); if (sizeof($exists)) { if ($exists['status'] == 3 || $exists['status'] == 2) { addUpDevice($network_id, getmypid()); if ($exists['snmp_version'] > 0) { addSNMPDevice($network_id, getmypid()); } // Rerun data queries if specified rerunDataQueries($exists['id'], $network); } automation_debug(' Device is in Cacti!'); markIPDone($device['ip_address'], $network_id); } else { $host_id = 0; if ($snmp_sysName != '') { $isCactiSysName = db_fetch_cell_prepared('SELECT COUNT(*) FROM host WHERE snmp_sysName = ?', array($snmp_sysName)); if ($isCactiSysName) { automation_debug(", Skipping sysName '" . $snmp_sysName . "' already in Cacti!\n"); markIPDone($device['ip_address'], $network_id); continue; } $isDuplicateSysName = db_fetch_cell_prepared('SELECT COUNT(*) FROM automation_devices WHERE network_id = ? AND sysName != "" AND ip != ? AND sysName = ?', array($device['ip_address'], $network_id, $snmp_sysName)); if ($isDuplicateSysName) { automation_debug(", Skipping sysName '" . $snmp_sysName . "' already Discovered!\n"); markIPDone($device['ip_address'], $network_id); continue; } $stats['snmp']++; addSNMPDevice($network_id, getmypid()); automation_debug(" Responded"); $fos = automation_find_os($device['snmp_sysDescr'], $device['snmp_sysObjectID'], $device['snmp_sysName']); if ($fos != false && $network['add_to_cacti'] == 'on') { automation_debug(", Template: " . $fos['name']); $device['os'] = $fos['name']; $device['host_template'] = $fos['host_template']; $device['availability_method'] = $fos['availability_method']; $host_id = automation_add_device($device); if (!empty($host_id)) { if (isset($device['snmp_sysDescr']) && $device['snmp_sysDescr'] != '') { db_execute_prepared('UPDATE host SET snmp_sysDescr = ? WHERE id = ?', array($device['snmp_sysDescr'], $host_id)); } if (isset($device['snmp_sysObjectID']) && $device['snmp_sysObjectID'] != '') { db_execute_prepared('UPDATE host SET snmp_sysObjectID = ? WHERE id = ?', array($device['snmp_sysObjectID'], $host_id)); } if (isset($device['snmp_sysUptime']) && $device['snmp_sysUptime'] != '') { db_execute_prepared('UPDATE host SET snmp_sysUptimeInstance = ? WHERE id = ?', array($device['snmp_sysUptime'], $host_id)); } if (isset($device['snmp_sysContact']) && $device['snmp_sysContact'] != '') { db_execute_prepared('UPDATE host SET snmp_sysContact = ? WHERE id = ?', array($device['snmp_sysContact'], $host_id)); } if (isset($device['snmp_sysName']) && $device['snmp_sysName'] != '') { db_execute_prepared('UPDATE host SET snmp_sysName = ? WHERE id = ?', array($device['snmp_sysName'], $host_id)); } if (isset($device['snmp_sysLocation']) && $device['snmp_sysLocation'] != '') { db_execute_prepared('UPDATE host SET snmp_sysLocation = ? WHERE id = ?', array($device['snmp_sysLocation'], $host_id)); } automation_update_device($host_id); } $stats['added']++; } elseif ($fos == false) { automation_debug(", Template: Not found, Not adding to Cacti"); } else { automation_debug(", Template: " . $fos['name']); $device['os'] = $fos['name']; automation_debug(", Skipped: Add to Cacti disabled"); } } // if the devices template is not discovered, add to found table if ($host_id == 0) { db_execute('REPLACE INTO automation_devices (network_id, hostname, ip, snmp_community, snmp_version, snmp_port, snmp_username, snmp_password, snmp_auth_protocol, snmp_priv_passphrase, snmp_priv_protocol, snmp_context, sysName, sysLocation, sysContact, sysDescr, sysUptime, os, snmp, up, time) VALUES (' . $network_id . ', ' . db_qstr($device['dnsname']) . ', ' . db_qstr($device['ip_address']) . ', ' . db_qstr($device['snmp_community']) . ', ' . db_qstr($device['snmp_version']) . ', ' . db_qstr($device['snmp_port']) . ', ' . db_qstr($device['snmp_username']) . ', ' . db_qstr($device['snmp_password']) . ', ' . db_qstr($device['snmp_auth_protocol']) . ', ' . db_qstr($device['snmp_priv_passphrase']) . ', ' . db_qstr($device['snmp_priv_protocol']) . ', ' . db_qstr($device['snmp_context']) . ', ' . db_qstr($device['snmp_sysName']) . ', ' . db_qstr($device['snmp_sysLocation']) . ', ' . db_qstr($device['snmp_sysContact']) . ', ' . db_qstr($device['snmp_sysDescr']) . ', ' . db_qstr($device['snmp_sysUptime']) . ', ' . db_qstr($device['os']) . ', ' . '1, 1,' . time() . ')'); } markIPDone($device['ip_address'], $network_id); } }else if ($result) { db_execute('REPLACE INTO automation_devices (network_id, hostname, ip, snmp_community, snmp_version, snmp_port, snmp_username, snmp_password, snmp_auth_protocol, snmp_priv_passphrase, snmp_priv_protocol, snmp_context, sysName, sysLocation, sysContact, sysDescr, sysUptime, os, snmp, up, time) VALUES (' . $network_id . ', ' . db_qstr($device['dnsname']) . ', ' . db_qstr($device['ip_address']) . ', ' . db_qstr($device['snmp_community']) . ', ' . db_qstr($device['snmp_version']) . ', ' . db_qstr($device['snmp_port']) . ', ' . db_qstr($device['snmp_username']) . ', ' . db_qstr($device['snmp_password']) . ', ' . db_qstr($device['snmp_auth_protocol']) . ', ' . db_qstr($device['snmp_priv_passphrase']) . ', ' . db_qstr($device['snmp_priv_protocol']) . ', ' . db_qstr($device['snmp_context']) . ', ' . db_qstr($device['snmp_sysName']) . ', ' . db_qstr($device['snmp_sysLocation']) . ', ' . db_qstr($device['snmp_sysContact']) . ', ' . db_qstr($device['snmp_sysDescr']) . ', ' . db_qstr($device['snmp_sysUptime']) . ', ' . '"", 0, 1,' . time() . ')'); automation_debug(", Alive no SNMP!"); markIPDone($device['ip_address'], $network_id); } else { markIPDone($device['ip_address'], $network_id); } automation_debug("\n"); } else { automation_debug(", Status: Ignoring Address (PHP Bug does not allow us to ping .255 as it thinks its a broadcast IP)!\n"); markIPDone($device['ip_address'], $network_id); } } else { if ($exists['status'] == 3 || $exists['status'] == 2) { addUpDevice($network_id, getmypid()); if ($exists['snmp_version'] > 0) { addSNMPDevice($network_id, getmypid()); } // Rerun data queries if specified rerunDataQueries($exists['id'], $network); } automation_debug(", Status: Already in Cacti\n"); markIPDone($device['ip_address'], $network_id); } } else { // no more ips to scan break; } } cacti_log('Network ' . $network['name'] . " Thread $thread Finished, " . $stats['scanned'] . ' IPs Scanned, ' . $stats['ping'] . ' IPs Responded to Ping, ' . $stats['snmp'] . ' Responded to SNMP, ' . $stats['added'] . ' Device Added, ' . $count_graph . ' Graphs Added to Cacti', true, 'AUTOM8'); return true; } /* display_version - displays version information */ function display_version() { $version = get_cacti_version(); print "Cacti Network Discovery Scanner, Version $version, " . COPYRIGHT_YEARS . "\n"; } /* display_help - displays the usage of the function */ function display_help () { display_version(); print "\nusage: poller_automation.php -M [--poller=ID] | --network=network_id [-T=thread_id]\n"; print " [--debug] [--force]\n\n"; print "Cacti's automation poller. This poller has two operating modes, Master and Slave.\n"; print "The Master process tracks and launches all Slaves based upon Cacti's automation\n"; print "settings. If you only want to force a network to be collected, you only need to\n"; print "specify the Network ID and the force options.\n\n"; print "Master Process:\n"; print " -M | --master - Master poller for all Automation\n"; print " --poller=ID - Master Poller ID, Defaults to 0 or WebServer\n\n"; print "Network Masters and Workers:\n"; print " --network=n - Network ID to discover\n"; print " --thread=n - Thread ID, Defaults to 0 or Network Master\n\n"; print "General Options:\n"; print " --force - Force the execution of a discovery process\n"; print " --debug - Display verbose output during execution\n\n"; } function isProcessRunning($pid) { return posix_kill($pid, 0); } function killProcess($pid) { return posix_kill($pid, SIGTERM); } function rerunDataQueries($host_id, &$network) { if ($network['rerun_data_queries'] == 'on') { $snmp_queries = db_fetch_assoc_prepared('SELECT snmp_query_id FROM host_snmp_query WHERE host_id = ?', array($host_id)); if (sizeof($snmp_queries)) { foreach($snmp_queries as $query) { run_data_query($host_id, $query['snmp_query_id']); } } } } function registerTask($network_id, $pid, $poller_id, $task = 'collector') { db_execute_prepared("REPLACE INTO automation_processes (pid, poller_id, network_id, task, status, heartbeat) VALUES (?, ?, ?, ?, 'running', NOW())", array($pid, $poller_id, $network_id, $task)); } function endTask($network_id, $pid) { db_execute_prepared("UPDATE automation_processes SET status='done', heartbeat=NOW() WHERE pid = ? AND network_id = ?", array($pid, $network_id)); } function addUpDevice($network_id, $pid) { db_execute_prepared('UPDATE automation_processes SET up_hosts=up_hosts+1, heartbeat=NOW() WHERE pid = ? AND network_id = ?', array($pid, $network_id)); } function addSNMPDevice($network_id, $pid) { db_execute_prepared('UPDATE automation_processes SET snmp_hosts=snmp_hosts+1, heartbeat=NOW() WHERE pid = ? AND network_id = ?', array($pid, $network_id)); } function clearTask($network_id, $pid) { db_execute_prepared('DELETE FROM automation_processes WHERE pid = ? AND network_id = ?', array($pid, $network_id)); db_execute_prepared('DELETE FROM automation_ips WHERE network_id = ?', array($pid, $network_id)); } function clearAllTasks($network_id) { db_execute_prepared('DELETE FROM automation_processes WHERE network_id = ?', array($network_id)); } function markIPRunning($ip_address, $network_id) { db_execute_prepared('UPDATE automation_ips SET status=1 WHERE ip_address = ? AND network_id = ?', array($ip_address, $network_id)); } function markIPDone($ip_address, $network_id) { db_execute_prepared('UPDATE automation_ips SET status=2 WHERE ip_address = ? AND network_id = ?', array($ip_address, $network_id)); } function updateDownDevice($network_id, $ip) { $exists = db_fetch_cell_prepared('SELECT COUNT(*) FROM automation_devices WHERE ip = ? AND network_id = ?', array($ip, $network_id)); if ($exists) { db_execute_prepared("UPDATE automation_devices SET up='0' WHERE ip = ? AND network_id = ?", array($ip, $network_id)); } } cacti-1.1.38/poller.php0000664000175000017500000006123513264740213014272 0ustar tromantroman#!/usr/bin/php -q This script is only meant to run at the command line.'); } /* start initialization section */ include(dirname(__FILE__) . '/include/global.php'); include_once($config['base_path'] . '/lib/poller.php'); include_once($config['base_path'] . '/lib/data_query.php'); include_once($config['base_path'] . '/lib/rrd.php'); include_once($config['base_path'] . '/lib/dsstats.php'); include_once($config['base_path'] . '/lib/boost.php'); include_once($config['base_path'] . '/lib/reports.php'); /* initialize some variables */ $force = false; $debug = false; $mibs = false; /* set the poller_id */ $poller_id = $config['poller_id']; $hostname = php_uname('n'); /* requires for remote poller stage out */ chdir(dirname(__FILE__)); /* process calling arguments */ $parms = $_SERVER['argv']; array_shift($parms); if (sizeof($parms)) { foreach($parms as $parameter) { if (strpos($parameter, '=')) { list($arg, $value) = explode('=', $parameter); } else { $arg = $parameter; $value = ''; } switch ($arg) { case '-p': case '--poller': $poller_id = $value; break; case '-d': case '--debug': $debug = true; break; case '--force': $force = true; break; case '--version': case '-V': case '-v': display_version(); exit; case '-H': case '-h': case '--help': display_help(); exit; default: echo "ERROR: Invalid Argument: ($arg)\n\n"; display_help(); exit(1); } } } // Update the pollers hostname if it is blank, otherwise allow the user to edit it if (db_fetch_cell_prepared('SELECT hostname FROM poller where id = ?', array($poller_id), 'hostname') == '') { db_execute_prepared('UPDATE poller SET hostname = ? WHERE id = ?', array($hostname, $poller_id)); } // Check to see if the poller is disabled poller_enabled_check($poller_id); // install signal handlers for UNIX only if (function_exists('pcntl_signal')) { pcntl_signal(SIGTERM, 'sig_handler'); pcntl_signal(SIGINT, 'sig_handler'); } api_plugin_hook('poller_top'); // Prime the poller_resource_cache for multiple pollers update_resource_cache($poller_id); // record the start time $poller_start = microtime(true); $overhead_time = 0; // get number of polling items from the database $poller_interval = read_config_option('poller_interval'); // retreive the last time the poller ran $poller_lastrun = read_config_option('poller_lastrun_' . $poller_id); // collect the system mibs every 4 hours if ($poller_lastrun % 14440 < time() % 14440 || empty($poller_lastrun)) { $mibs = true; } // get the current cron interval from the database $cron_interval = read_config_option('cron_interval'); if ($cron_interval != 60) { $cron_interval = 300; } // see if the user wishes to use process leveling $process_leveling = read_config_option('process_leveling'); // retreive the number of concurrent process settings $concurrent_processes = read_config_option('concurrent_processes'); // correct for possible poller output not empty occurances $ds_needing_fixes = db_fetch_assoc_prepared('SELECT local_data_id, MIN(rrd_next_step) AS next_step, COUNT(DISTINCT rrd_next_step) AS instances FROM poller_item WHERE poller_id = ? AND rrd_num > 1 GROUP BY local_data_id HAVING instances > 1', array($poller_id)); if (sizeof($ds_needing_fixes)) { foreach($ds_needing_fixes as $ds) { db_execute_prepared('UPDATE poller_item SET rrd_next_step = ? WHERE local_data_id = ?', array($ds['next_step'], $ds['local_data_id'])); } } // assume a scheduled task of either 60 or 300 seconds if (!empty($poller_interval)) { $poller_runs = intval($cron_interval / $poller_interval); $sql_where = 'WHERE rrd_next_step<=0 AND poller_id = ' . $poller_id; define('MAX_POLLER_RUNTIME', $poller_runs * $poller_interval - 2); } else { $sql_where = 'WHERE poller_id = ' . $poller_id; $poller_runs = 1; $poller_interval = 300; define('MAX_POLLER_RUNTIME', 298); } $num_polling_items = db_fetch_cell('SELECT ' . SQL_NO_CACHE . ' COUNT(*) FROM poller_item ' . $sql_where); if (isset($concurrent_processes) && $concurrent_processes > 1) { $items_perhost = array_rekey(db_fetch_assoc("SELECT " . SQL_NO_CACHE . " host_id, COUNT(*) AS data_sources FROM poller_item $sql_where GROUP BY host_id ORDER BY host_id"), 'host_id', 'data_sources'); } if (isset($items_perhost) && sizeof($items_perhost)) { $items_per_process = floor($num_polling_items / $concurrent_processes); if ($items_per_process == 0) { $process_leveling = 'off'; } } else { $process_leveling = 'off'; } /* some text formatting for platform specific vocabulary */ if ($config['cacti_server_os'] == 'unix') { $task_type = 'Cron'; } else { $task_type = 'Scheduled Task'; } if ($debug) { $level = POLLER_VERBOSITY_NONE; } else { $level = POLLER_VERBOSITY_MEDIUM; } $poller_seconds_sincerun = 'never'; if (isset($poller_lastrun)) { $poller_seconds_sincerun = $poller_start - $poller_lastrun; } cacti_log("NOTE: Poller Int: '$poller_interval', $task_type Int: '$cron_interval', Time Since Last: '" . round($poller_seconds_sincerun,2) . "', Max Runtime '" . MAX_POLLER_RUNTIME. "', Poller Runs: '$poller_runs'", true, 'POLLER', $level); /* our cron can run at either 1 or 5 minute intervals */ if ($poller_interval <= 60) { $min_period = '60'; } else { $min_period = '300'; } /* get to see if we are polling faster than reported by the settings, if so, exit */ if ((isset($poller_lastrun) && isset($poller_interval) && $poller_lastrun > 0) && (!$force)) { /* give the user some flexibility to run a little moe often */ if ((($poller_start - $poller_lastrun)*1.3) < MAX_POLLER_RUNTIME) { cacti_log("NOTE: $task_type is configured to run too often! The Poller Interval is '$poller_interval' seconds, with a minimum $task_type period of '$min_period' seconds, but only " . number_format_i18n($poller_start - $poller_lastrun, 1) . ' seconds have passed since the poller last ran.', true, 'POLLER', $level); exit; } } /* check to see whether we have the poller interval set lower than the poller is actually ran, if so, issue a warning */ if ((($poller_start - $poller_lastrun - 5) > MAX_POLLER_RUNTIME) && ($poller_lastrun > 0)) { cacti_log("WARNING: $task_type is out of sync with the Poller Interval! The Poller Interval is '$poller_interval' seconds, with a maximum of a '$min_period' second $task_type, but " . number_format_i18n($poller_start - $poller_lastrun, 1) . ' seconds have passed since the last poll!', true, 'POLLER'); } db_execute_prepared('REPLACE INTO settings (name, value) VALUES (?, ?)', array('poller_lastrun_' . $poller_id, (int)$poller_start)); /* let PHP only run 1 second longer than the max runtime, plus the poller needs lot's of memory */ ini_set('max_execution_time', MAX_POLLER_RUNTIME + 1); ini_set('memory_limit', '512M'); $poller_runs_completed = 0; $poller_items_total = 0; while ($poller_runs_completed < $poller_runs) { /* record the start time for this loop */ $loop_start = microtime(true); if ($poller_id == '1') { $polling_hosts = array_merge( array(0 => array('id' => '0')), db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' id FROM host WHERE poller_id = ? AND disabled="" ORDER BY id', array($poller_id))); } else { $polling_hosts = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' id FROM host WHERE poller_id = ? AND disabled="" ORDER BY id', array($poller_id)); } $script = $server = $snmp = 0; $totals = db_fetch_assoc_prepared('SELECT action, count(*) AS totals FROM poller_item WHERE poller_id = ? GROUP BY action', array($poller_id)); if (sizeof($totals)) { foreach($totals as $value) { switch($value['action']) { case '0': // SNMP $snmp = $value['totals']; break; case '1': // Script $script = $value['totals']; break; case '2': // Server $server = $value['totals']; break; } } } /* update statistics */ db_execute_prepared('INSERT INTO poller (id, snmp, script, server, last_status, status) VALUES (?, ?, ?, ?, NOW(), 1) ON DUPLICATE KEY UPDATE snmp=VALUES(snmp), script=VALUES(script), server=VALUES(server), last_status=VALUES(last_status), status=VALUES(status)', array($poller_id, $snmp, $script, $server)); /* calculate overhead time */ if ($overhead_time == 0) { $overhead_time = $loop_start - $poller_start; } /* initialize counters for script file handling */ $host_count = 1; /* initialize file creation flags */ $change_proc = false; /* initialize file and host count pointers */ $started_processes = 0; $first_host = 0; $last_host = 0; /* update web paths for the poller */ db_execute("REPLACE INTO settings (name, value) VALUES ('path_webroot','" . addslashes(($config['cacti_server_os'] == 'win32') ? strtr(strtolower(substr(dirname(__FILE__), 0, 1)) . substr(dirname(__FILE__), 1),"\\", '/') : dirname(__FILE__)) . "')"); /* obtain some defaults from the database */ $poller_type = read_config_option('poller_type'); $max_threads = read_config_option('max_threads'); /* initialize poller_time and poller_output tables, check poller_output for issues */ $running_processes = db_fetch_cell_prepared('SELECT ' . SQL_NO_CACHE . ' COUNT(*) FROM poller_time WHERE poller_id = ? AND end_time="0000-00-00 00:00:00"', array($poller_id)); if ($running_processes) { cacti_log("WARNING: There are '$running_processes' detected as overrunning a polling process, please investigate", true, 'POLLER'); } db_execute_prepared('DELETE FROM poller_time WHERE poller_id = ?', array($poller_id)); // Only report issues for the main poller or from bad local data ids, other pollers may insert somewhat asynchornously $issues_limit = 20; if ($poller_id == 1) { $issues = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' local_data_id, rrd_name FROM poller_output AS po LEFT JOIN data_local AS dl ON po.local_data_id=dl.id LEFT JOIN host AS h ON dl.host_id=h.id WHERE h.poller_id = ? OR h.id IS NULL LIMIT ' . $issues_limit, array($poller_id)); } elseif ($config['connection'] == 'online') { $issues = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' local_data_id, rrd_name FROM poller_output AS po LEFT JOIN data_local AS dl ON po.local_data_id=dl.id LEFT JOIN host AS h ON dl.host_id=h.id WHERE (h.poller_id = ? OR h.id IS NULL) AND time < FROM_UNIXTIME(UNIX_TIMESTAMP()-600) LIMIT ' . $issues_limit, array($poller_id)); } else{ $issues = array(); } if (sizeof($issues)) { $count = db_fetch_cell_prepared('SELECT ' . SQL_NO_CACHE . ' COUNT(*) FROM poller_output AS po LEFT JOIN data_local AS dl ON po.local_data_id=dl.id LEFT JOIN host AS h ON dl.host_id=h.id WHERE h.poller_id = ? OR h.id IS NULL', array($poller_id)); if (sizeof($issues)) { $issue_list = 'DS['; $i = 0; foreach($issues as $issue) { $issue_list .= ($i > 0 ? ', ' : '') . $issue['local_data_id']; $i++; } $issue_list .= ']'; } if ($count > $issues_limit) { $issue_list .= ", Additional Issues Remain. Only showing first $issues_limit"; } cacti_log("WARNING: Poller Output Table not Empty. Issues: $count, $issue_list", true, 'POLLER'); db_execute_prepared('DELETE po FROM poller_output AS po LEFT JOIN data_local AS dl ON po.local_data_id=dl.id LEFT JOIN host AS h ON dl.host_id=h.id WHERE h.poller_id = ? OR h.id IS NULL', array($poller_id)); } /* mainline */ if (read_config_option('poller_enabled') == 'on') { /* determine the number of hosts to process per file */ $hosts_per_process = ceil(($poller_id == '1' ? sizeof($polling_hosts)-1 : sizeof($polling_hosts)) / $concurrent_processes ); $items_launched = 0; /* exit poller if spine is selected and file does not exist */ if (($poller_type == '2') && (!file_exists(read_config_option('path_spine')))) { cacti_log('ERROR: The path: ' . read_config_option('path_spine') . ' is invalid. Can not continue', true, 'POLLER'); exit; } /* Determine Command Name */ if ($poller_type == '2') { $command_string = read_config_option('path_spine'); if (read_config_option('path_spine_config') != '' && file_exists(read_config_option('path_spine_config'))) { $extra_args = ' -C ' . read_config_option('path_spine_config'); } else { $extra_args = ''; } $method = 'spine'; $total_procs = $concurrent_processes * $max_threads; chdir(dirname(read_config_option('path_spine'))); }else if ($config['cacti_server_os'] == 'unix') { $command_string = read_config_option('path_php_binary'); $extra_args = '-q "' . $config['base_path'] . '/cmd.php"'; $method = 'cmd.php'; $total_procs = $concurrent_processes; } else { $command_string = read_config_option('path_php_binary'); $extra_args = '-q "' . strtolower($config['base_path'] . '/cmd.php"'); $method = 'cmd.php'; $total_procs = $concurrent_processes; } $extra_args = api_plugin_hook_function('poller_command_args', $extra_args); if ($poller_id > 1) { $extra_args .= ' --mode=' . $config['connection']; } /* Populate each execution file with appropriate information */ foreach ($polling_hosts as $item) { if ($host_count == 1) { $first_host = $item['id']; } if ($process_leveling != 'on') { if ($host_count == $hosts_per_process) { $last_host = $item['id']; $change_proc = true; } } else { if (isset($items_perhost[$item['id']])) { $items_launched += $items_perhost[$item['id']]; } if (($items_launched >= $items_per_process) || (sizeof($items_perhost) == $concurrent_processes)) { $last_host = $item['id']; /* if this is the dummy entry for externally updated data sources * that are not related to any host (host id = 0), do NOT change_proc */ $change_proc = ($item['id'] == 0 ? false : true); $items_launched = 0; } } $host_count ++; if ($change_proc) { exec_background($command_string, "$extra_args --poller=$poller_id --first=$first_host --last=$last_host" . ($mibs ? ' --mibs':'')); usleep(100000); $host_count = 1; $change_proc = false; $first_host = 0; $last_host = 0; $started_processes++; } /* end change_process */ } /* end for each */ /* launch the last process */ if ($host_count > 1) { $last_host = $item['id']; exec_background($command_string, "$extra_args --poller=$poller_id --first=$first_host --last=$last_host" . ($mibs ? ' --mibs':'')); usleep(100000); $started_processes++; } if ($poller_id == 1) { /* insert the current date/time for graphs */ db_execute("REPLACE INTO settings (name, value) VALUES ('date', NOW())"); /* open a pipe to rrdtool for writing */ $rrdtool_pipe = rrd_init(); } if ($poller_type == '1') { $max_threads = 'N/A'; } $rrds_processed = 0; $poller_finishing_dispatched = false; while (1) { $finished_processes = db_fetch_cell_prepared('SELECT ' . SQL_NO_CACHE . " count(*) FROM poller_time WHERE poller_id = ? AND end_time >'0000-00-00 00:00:00'", array($poller_id)); if ($finished_processes >= $started_processes) { /* all scheduled pollers are finished */ if ($poller_finishing_dispatched === false) { api_plugin_hook('poller_finishing'); $poller_finishing_dispatched = true; } if ($poller_id == 1) { $rrds_processed = $rrds_processed + process_poller_output($rrdtool_pipe, true); } log_cacti_stats($loop_start, $method, $concurrent_processes, $max_threads, ($poller_id == '1' ? sizeof($polling_hosts) - 1 : sizeof($polling_hosts)), $hosts_per_process, $num_polling_items, $rrds_processed); break; }else { if (read_config_option('log_verbosity') >= POLLER_VERBOSITY_MEDIUM || $debug) { print 'Waiting on ' . ($started_processes - $finished_processes) . ' of ' . $started_processes . " pollers.\n"; } $mtb = microtime(true); if ($poller_id == 1) { $rrds_processed = $rrds_processed + process_poller_output($rrdtool_pipe); } /* end the process if the runtime exceeds MAX_POLLER_RUNTIME */ if (($poller_start + MAX_POLLER_RUNTIME) < time()) { cacti_log('Maximum runtime of ' . MAX_POLLER_RUNTIME . ' seconds exceeded. Exiting.', true, 'POLLER'); /* generate a snmp notification */ snmpagent_poller_exiting(); api_plugin_hook_function('poller_exiting'); log_cacti_stats($loop_start, $method, $concurrent_processes, $max_threads, ($poller_id == '1' ? sizeof($polling_hosts) - 1 : sizeof($polling_hosts)), $hosts_per_process, $num_polling_items, $rrds_processed); break; } elseif (microtime(true) - $mtb < 1) { sleep(1); } } } if ($poller_id == 1) { rrd_close($rrdtool_pipe); } /* process poller commands */ if (db_fetch_cell_prepared('SELECT ' . SQL_NO_CACHE . ' COUNT(*) FROM poller_command WHERE poller_id = ?', array($poller_id)) > 0) { $command_string = read_config_option('path_php_binary'); $extra_args = '-q "' . $config['base_path'] . "/poller_commands.php\" --poller=$poller_id"; exec_background($command_string, $extra_args); } else { /* no re-index or Rechache present on this run * in case, we have more PCOMMANDS than recaching, this has to be moved to poller_commands.php * but then we'll have to call it each time to make sure, stats are updated */ db_execute("REPLACE INTO settings (name,value) VALUES ('stats_recache_$poller_id','RecacheTime:0.0 DevicesRecached:0')"); } if ($method == 'spine') { $webroot = read_config_option('path_webroot'); if (is_dir($webroot)) { chdir($webroot); } } } else { cacti_log('NOTE: There are no items in your poller for this polling cycle!', true, 'POLLER', $level); } $poller_runs_completed++; /* record the start time for this loop */ $loop_end = microtime(true); $loop_time = $loop_end - $loop_start; if ($loop_time < $poller_interval) { /* sleep the appripriate amount of time */ if ($poller_runs_completed < $poller_runs) { $plugin_start = microtime(true); /* all plugins moved to core */ if ($poller_id == 1) { snmpagent_poller_bottom(); dsstats_poller_bottom(); boost_poller_bottom(); api_plugin_hook('poller_bottom'); } /* record the start time for this loop */ $loop_end = microtime(true); $cur_loop_time = $loop_end - $loop_start; if ($poller_runs_completed == 1) { $sleep_time = $poller_interval - $cur_loop_time - $overhead_time; } else { $sleep_time = $poller_interval - $cur_loop_time; } /* log some nice debug information */ if ($debug) { echo 'Loop Time is: ' . round($loop_time, 2) . "\n"; echo 'Sleep Time is: ' . round($sleep_time, 2) . "\n"; echo 'Total Time is: ' . round($loop_end - $poller_start, 2) . "\n"; } $plugin_end = microtime(true); if (($sleep_time - ($plugin_end - $plugin_start)) > 0) { usleep(($sleep_time - ($plugin_end - $plugin_start)) * 1000000); } api_plugin_hook('poller_top'); } } else { cacti_log('WARNING: Cacti Polling Cycle Exceeded Poller Interval by ' . $loop_end-$loop_start-$poller_interval . ' seconds', true, 'POLLER', $level); } // Flush the boost table if in recovery mode poller_recovery_flush_boost($poller_id); } function poller_enabled_check($poller_id) { $disabled = db_fetch_cell_prepared('SELECT disabled FROM poller WHERE id = ?', array($poller_id)); if ($disabled == 'on') { db_execute_prepared('UPDATE poller SET last_status=NOW() WHERE id = ?', array($poller_id)); cacti_log('WARNING: Poller ' . $poller_id . ' is Disabled, graphing or other activities are running', true, 'SYSTEM'); exit(1); } } function log_cacti_stats($loop_start, $method, $concurrent_processes, $max_threads, $num_hosts, $hosts_per_process, $num_polling_items, $rrds_processed) { global $poller_id; /* take time and log performance data */ $loop_end = microtime(true); $perf_data = array( round($loop_end-$loop_start,4), $method, $concurrent_processes, $max_threads, $num_hosts, $hosts_per_process, $num_polling_items, $rrds_processed ); $cacti_stats = vsprintf('Time:%01.4f Method:%s Processes:%s Threads:%s Hosts:%s HostsPerProcess:%s DataSources:%s RRDsProcessed:%s', $perf_data); cacti_log('STATS: ' . $cacti_stats , true, 'SYSTEM'); /* insert poller stats into the settings table */ db_execute_prepared('REPLACE INTO settings (name, value) VALUES ("stats_poller",?)', array($cacti_stats)); db_execute_prepared('INSERT INTO poller (id, total_time, last_update, last_status, status) VALUES (?, ?, NOW(), NOW(), 2) ON DUPLICATE KEY UPDATE total_time=VALUES(total_time), last_update=VALUES(last_update), last_status=VALUES(last_status), status=VALUES(status)', array($poller_id, round($loop_end-$loop_start,4))); /* update snmpcache */ snmpagent_cacti_stats_update($perf_data); api_plugin_hook_function('cacti_stats_update', $perf_data); } /** * function for bulk spikekill that only runs on the main cacti server */ function spikekill_poller_bottom () { global $config; include_once($config['base_path'] . '/lib/poller.php'); $command_string = read_config_option('path_php_binary'); $extra_args = '-q ' . $config['base_path'] . '/poller_spikekill.php'; exec_background($command_string, $extra_args); } /* display_version - displays version information */ function display_version() { $version = get_cacti_version(); echo "Cacti Main Poller, Version $version, " . COPYRIGHT_YEARS . "\n"; } function display_help() { display_version(); echo "\nusage: poller.php [--poller=ID] [--force] [--debug]\n\n"; echo "Cacti's main poller. This poller is the launcher of cmd.php, spine, and all other\n"; echo "background processes. It is the heart of Cacti's data collection engine.\n\n"; echo "Optional:\n"; echo " --poller=ID Run as the poller indicated and not the default poller.\n"; echo " --force Override poller overrun detection and force a poller run.\n"; echo " --debug|-d Output debug information. Similar to cacti's DEBUG logging level.\n\n"; } /* start post data processing */ if ($poller_id == 1) { snmpagent_poller_bottom(); boost_poller_bottom(); dsstats_poller_bottom(); reports_poller_bottom(); spikekill_poller_bottom(); automation_poller_bottom(); poller_maintenance(); api_plugin_hook('poller_bottom'); } else { automation_poller_bottom(); poller_maintenance(); } cacti-1.1.38/plugins/0000775000175000017500000000000013264740213013736 5ustar tromantromancacti-1.1.38/plugins/index.php0000664000175000017500000000005013264740213015551 0ustar tromantroman __('Install'), 'enable' => __('Enable'), 'disable' => __('Disable'), 'uninstall' => __('Uninstall'), ); $status_names = array( -1 => __('Not Compatible'), 0 => __('Not Installed'), 1 => __('Active'), 2 => __('Awaiting Configuration'), 3 => __('Awaiting Upgrade'), 4 => __('Installed') ); /* get the comprehensive list of plugins */ $pluginslist = retrieve_plugin_list(); /* Check to see if we are installing, etc... */ $modes = array( 'installold', 'uninstallold', 'install', 'uninstall', 'disable', 'enable', 'check', 'moveup', 'movedown' ); if (isset_request_var('mode') && in_array(get_nfilter_request_var('mode'), $modes) && isset_request_var('id')) { get_filter_request_var('id', FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => '/^([a-zA-Z0-9 _]+)$/'))); $mode = get_nfilter_request_var('mode'); $id = sanitize_search_string(get_request_var('id')); if (isset_request_var('header')) { $option = 'header=false'; } else { $option = ''; } switch ($mode) { case 'install': if (!in_array($id, $plugins_integrated)) { api_plugin_install($id); } if ($_SESSION['sess_plugins_state'] != '-3') { header('Location: plugins.php?state=5' . ($option != '' ? '&' . $option:'')); } else { header('Location: plugins.php' . ($option != '' ? '?' . $option:'')); } exit; break; case 'uninstall': if (!in_array($id, $pluginslist)) break; api_plugin_uninstall($id); header('Location: plugins.php' . ($option != '' ? '?' . $option:'')); exit; break; case 'disable': if (!in_array($id, $pluginslist)) break; api_plugin_disable($id); header('Location: plugins.php' . ($option != '' ? '?' . $option:'')); exit; break; case 'enable': if (!in_array($id, $pluginslist)) break; if (!in_array($id, $plugins_integrated)) { api_plugin_enable($id); } header('Location: plugins.php' . ($option != '' ? '?' . $option:'')); exit; break; case 'check': if (!in_array($id, $pluginslist)) break; break; case 'moveup': if (!in_array($id, $pluginslist)) break; if (in_array($id, $plugins_integrated)) break; api_plugin_moveup($id); header('Location: plugins.php' . ($option != '' ? '?' . $option:'')); exit; break; case 'movedown': if (!in_array($id, $pluginslist)) break; if (in_array($id, $plugins_integrated)) break; api_plugin_movedown($id); header('Location: plugins.php' . ($option != '' ? '&' . $option:'')); exit; break; } } function retrieve_plugin_list() { $pluginslist = array(); $temp = db_fetch_assoc('SELECT directory FROM plugin_config ORDER BY name'); foreach ($temp as $t) { $pluginslist[] = $t['directory']; } return $pluginslist; } top_header(); update_show_current(); bottom_footer(); function plugins_temp_table_exists($table) { return sizeof(db_fetch_row("SHOW TABLES LIKE '$table'")); } function plugins_load_temp_table() { global $config, $plugins, $plugins_integrated; $table = 'plugin_temp_table_' . rand(); $x = 0; while ($x < 30) { if (!plugins_temp_table_exists($table)) { $_SESSION['plugin_temp_table'] = $table; db_execute("CREATE TEMPORARY TABLE IF NOT EXISTS $table LIKE plugin_config"); db_execute("TRUNCATE $table"); db_execute("INSERT INTO $table SELECT * FROM plugin_config"); break; } else { $table = 'plugin_temp_table_' . rand(); } $x++; } if (!db_column_exists($table, 'requires')) { db_execute("ALTER TABLE $table ADD COLUMN requires varchar(80) DEFAULT NULL, ADD COLUMN infoname varchar(20) DEFAULT NULL"); } $path = $config['base_path'] . '/plugins/'; $dh = opendir($path); if ($dh !== false) { while (($file = readdir($dh)) !== false) { if (is_dir("$path$file") && file_exists("$path$file/setup.php") && !in_array($file, $plugins_integrated)) { if (file_exists("$path$file/INFO")) { $cinfo[$file] = plugin_load_info_file("$path/$file/INFO"); if (!isset($cinfo[$file]['author'])) $cinfo[$file]['author'] = __('Unknown'); if (!isset($cinfo[$file]['homepage'])) $cinfo[$file]['homepage'] = __('Not Stated'); if (isset($cinfo[$file]['webpage'])) $cinfo[$file]['homepage'] = $cinfo[$file]['webpage']; if (!isset($cinfo[$file]['longname'])) $cinfo[$file]['longname'] = ucfirst($file); if (!isset($cinfo[$file]['version'])) $cinfo[$file]['version'] = __('Unknown'); if (!isset($cinfo[$file]['requires'])) $cinfo[$file]['requires'] = ''; $cinfo[$file]['status'] = 0; $pluginslist[] = $file; if (strstr($file, ' ') !== false) { $cinfo[$file]['status'] = -3; } elseif ($file != $cinfo[$file]['name']) { $cinfo[$file]['status'] = -2; } elseif (!isset($cinfo[$file]['compat']) || cacti_version_compare(CACTI_VERSION, $cinfo[$file]['compat'], '<')) { $cinfo[$file]['status'] = -1; } } else { $cinfo[$file] = array( 'name' => ucfirst($file), 'longname' => ucfirst($file), 'author' => '', 'homepage' => '', 'version' => __('Unknown'), 'compat' => '0.8', 'requires' => '', 'status' => -4 ); } $exists = db_fetch_cell_prepared("SELECT COUNT(*) FROM $table WHERE directory = ?", array($file)); if (!$exists) { db_execute_prepared("INSERT INTO $table (directory, name, status, author, webpage, version, requires, infoname) VALUES (?, ?, ?, ?, ?, ?, ?, ?)", array( $file, $cinfo[$file]['longname'], $cinfo[$file]['status'], $cinfo[$file]['author'], $cinfo[$file]['homepage'], $cinfo[$file]['version'], $cinfo[$file]['requires'], $cinfo[$file]['name'] ) ); } else { db_execute_prepared("UPDATE $table SET infoname = ?, requires = ? WHERE directory = ?", array($cinfo[$file]['name'], $cinfo[$file]['requires'], $file)); } } } closedir($dh); } return $table; } function update_show_current () { global $plugins, $pluginslist, $config, $status_names, $actions, $item_rows; /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'name', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ), 'state' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-3' ) ); validate_store_request_vars($filters, 'sess_plugins'); /* ================= input validation ================= */ $table = plugins_load_temp_table(); ?>
    '> ' title=''> ' title=''>
    -3) { if (get_request_var('state') == 5) { $sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' status IN(1,4)'; } else { $sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' status=' . get_request_var('state'); } } if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } $total_rows = db_fetch_cell("SELECT count(*) FROM $table $sql_where"); $sql_order = get_order_string(); $sql_limit = ' LIMIT ' . ($rows*(get_request_var('page')-1)) . ',' . $rows; $sql_order = str_replace('version ', 'version+0 ', $sql_order); $sql_order = str_replace('id DESC', 'id ASC', $sql_order); $plugins = db_fetch_assoc("SELECT * FROM $table $sql_where $sql_order $sql_limit"); $nav = html_nav_bar('plugins.php?filter=' . get_request_var('filter'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 8, __('Plugins'), 'page', 'main'); form_start('plugins.php', 'chk'); print $nav; html_start_box('', '100%', '', '3', 'center', ''); $display_text = array( 'nosort' => array('display' => __('Actions'), 'align' => 'left', 'sort' => '', 'tip' => __('Actions available include \'Install\', \'Activate\', \'Disable\', \'Enable\', \'Uninstall\'.')), 'directory' => array('display' => __('Plugin Name'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __('The name for this Plugin. The name is controlled by the directory it resides in.')), 'name' => array('display' => __('Plugin Description'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __('A description that the Plugins author has given to the Plugin.')), 'status' => array('display' => __('Status'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __('The status of this Plugin.')), 'author' => array('display' => __('Author'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __('The author of this Plugin.')), 'requires' => array('display' => __('Requires'), 'align' => 'left', 'sort' => 'ASC', 'tip' => __('This Plugin requires the following Plugins be installed first.')), 'version' => array('display' => __('Version'), 'align' => 'right', 'sort' => 'ASC', 'tip' => __('The version of this Plugin.')), 'id' => array('display' => __('Load Order'), 'align' => 'right', 'sort' => 'ASC', 'tip' => __('The load order of the Plugin. You can change the load order by first sorting by it, then moving a Plugin either up or down.')) ); html_header_sort($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), 1); $i = 0; if (sizeof($plugins)) { $j = 0; foreach ($plugins as $plugin) { if ((isset($plugins[$j+1]) && $plugins[$j+1]['status'] < 0) || (!isset($plugins[$j+1]))) { $last_plugin = true; } else { $last_plugin = false; } if ($plugin['status'] <= 0 || (get_request_var('sort_column') != 'id')) { $load_ordering = false; } else { $load_ordering = true; } form_alternate_row('', true); print format_plugin_row($plugin, $last_plugin, $load_ordering, $table); $i++; $j++; } } else { print '' . __('No Plugins Found') . ''; } html_end_box(false); if (sizeof($plugins)) { print $nav; } form_end(); $uninstall_msg = __('Uninstalling this Plugin will remove all Plugin Data and Settings. If you really want to Uninstall the Pluign, click \'Uninstall\' below. Otherwise click \'Cancel\''); $uninstall_title = __('Are you sure you want to Uninstall?'); ?> " . (get_request_var('filter') != '' ? preg_replace('/(' . preg_quote(get_request_var('filter')) . ')/i', "\\1", ucfirst($plugin['directory'])) : ucfirst($plugin['directory'])) . '' . (is_dir($config['base_path'] . '/plugins/' . $plugin['directory']) ? '':' (' . __('ERROR: Directory Missing') . ')') . ''; $row .= "" . filter_value($plugin['name'], get_request_var('filter')) . "\n"; if ($plugin['status'] == '-1') { $status = plugin_is_compatible($plugin['directory']); $row .= "" . __('Not Compatible, %s', $status['requires']) . "\n"; } elseif ($plugin['status'] < -1) { $row .= "" . __('Plugin Error') . "\n"; } else { $row .= "" . $status_names[$plugin['status']] . "\n"; } $row .= "" . $plugin['author'] . "\n"; $row .= "" . ucfirst($plugin['requires']) . "\n"; $row .= "" . $plugin['version'] . "\n"; if ($include_ordering) { $row .= ""; if (!$first_plugin) { $row .= ""; } else { $row .= ''; } if (!$last_plugin) { $row .= ""; } else { $row .= ''; } $row .= "\n"; } else { $row .= "\n"; } $row .= "\n"; if ($include_ordering) { $first_plugin = false; } return $row; } function plugin_required_for_others($plugin, $table) { $required_for_others = db_fetch_cell("SELECT GROUP_CONCAT(directory) FROM $table WHERE requires LIKE '%" . $plugin['directory'] . "%' AND status IN (1,4)"); if ($required_for_others) { return $required_for_others; } else { return false; } } function plugin_required_installed($plugin, $table) { $not_installed = ''; $requires = db_fetch_cell_prepared("SELECT requires FROM $table WHERE directory = ?", array($plugin['directory'])); if ($requires != '') { $requires = explode(' ', $requires); foreach($requires as $r) { $installed = db_fetch_cell_prepared("SELECT status FROM $table WHERE directory = ?", array($r)); if (!$installed) { $not_installed .= ($not_installed != '' ? ', ':'') . $r; } } } return $not_installed; } function plugin_actions($plugin, $table) { global $config, $pluginslist, $plugins_integrated; $link = ''; switch ($plugin['status']) { case '0': // Not Installed $not_installed = plugin_required_installed($plugin, $table); if ($not_installed != '') { $link .= ""; } else { $link .= ""; } $link .= ""; break; case '1': // Currently Active $required = plugin_required_for_others($plugin, $table); if ($required != '') { $link .= ""; } else { $link .= ""; } $link .= ""; break; case '2': // Configuration issues $link .= ""; break; case '4': // Installed but not active $required = plugin_required_for_others($plugin, $table); if ($required != '') { $link .= ""; } else { $link .= ""; } $link .= ""; break; case '-4': // Plugins can have spaces in their names $link .= ""; break; case '-3': // Plugins can have spaces in their names $link .= ""; break; case '-2': // Naming issues $link .= ""; break; default: // Old PIA $path = $config['base_path'] . '/plugins/' . $plugin['directory']; $directory = $plugin['name']; if (!file_exists("$path/setup.php")) { $link .= ""; } elseif (!file_exists("$path/INFO")) { $link .= ""; } elseif (in_array($directory, $plugins_integrated)) { $link .= ""; } else { $link .= ""; } break; } $link .= ''; return $link; } cacti-1.1.38/permission_denied.php0000664000175000017500000000625113264740213016472 0ustar tromantroman[" . __('Return') . " | " . __('Login Again') . "]"; } else { $goBack = "[" . __('Return') . " | " . __('Login Again') . "]"; } print "\n"; print "\n"; print "\n"; html_common_header(__('Permission Denied')); print "\n"; print "
    " . __('Permission Denied') . "

    " . __('You are not permitted to access this section of Cacti.') . '

    ' . __('If you feel that this is an error. Please contact your Cacti Administrator.') . "

    " . $goBack . "
    " . __('Version') . " " . $version . " | " . COPYRIGHT_YEARS_SHORT . "
    "; include_once('./include/global_session.php'); print " \n"; exit; cacti-1.1.38/mibs/0000775000175000017500000000000013264740213013207 5ustar tromantromancacti-1.1.38/mibs/index.php0000664000175000017500000000005013264740213015022 0ustar tromantroman-MIB |Module name: |Architecture: Plugin mibs have to reserve the first three sub-trees for: + |-Appl(1) |-Stats(2) |-Events(3) |-MibGroups(4) The plugin name has to be written in lower cases only. As reference plugin developers should take a look at the CACTI-THOLD-MIB." ::= { cacti 4 } -- -- Cacti MIB Groups -- cactiMibGroups OBJECT-IDENTITY STATUS current DESCRIPTION "reserved for group definitions" ::= { cacti 5 } cactiApplPollerGroup OBJECT-GROUP OBJECTS { cactiApplPollerEnabled, cactiApplPollerType, cactiApplPollerInterval, cactiApplPollerMaxProcesses, cactiApplPollerLoadBalance } STATUS current DESCRIPTION "A collection of poller settings." ::= { cactiMibGroups 1 } cactiApplSpineGroup OBJECT-GROUP OBJECTS { cactiApplSpineMaxThreads, cactiApplSpineScriptServers, cactiApplSpineScriptTimeout, cactiApplSpineMaxOids } STATUS current DESCRIPTION "A collection of Spine specific parameters." ::= { cactiMibGroups 2 } cactiStatsTotalsDeviceGroup OBJECT-GROUP OBJECTS { cactiStatsTotalsDevices, cactiStatsTotalsDeviceStatusUnknown, cactiStatsTotalsDeviceStatusDown, cactiStatsTotalsDeviceStatusRecovering, cactiStatsTotalsDeviceStatusUp, cactiStatsTotalsDeviceStatusDisabled } STATUS current DESCRIPTION "A collection of Spine specific parameters." ::= { cactiMibGroups 3 } cactiNotifyGroup NOTIFICATION-GROUP NOTIFICATIONS { cactiNotify, cactiNotifyDeviceDown, cactiNotifyDeviceRecovering, cactiNotifyPollerRuntimeExceeding, cactiNotifyDeviceFailedPoll } STATUS current DESCRIPTION "The group of notifications Cacti supports." ::= { cactiMibGroups 4 } END cacti-1.1.38/mibs/CACTI-BOOST-MIB0000664000175000017500000004057413264740213015260 0ustar tromantroman-- ***************************************************************** -- CACTI-BOOST-MIB -- -- Jan 2015, Andreas Braun (aka browniebraun) -- -- Copyright (c) 2004-2017 by The Cacti Group -- All rights reserved. -- -- ***************************************************************** CACTI-BOOST-MIB DEFINITIONS ::= BEGIN IMPORTS OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY, Unsigned32, Integer32, Counter64 FROM SNMPv2-SMI OBJECT-GROUP, NOTIFICATION-GROUP FROM SNMPv2-CONF TEXTUAL-CONVENTION, DisplayString, TruthValue FROM SNMPv2-TC cactiPlugins FROM CACTI-MIB ; boost MODULE-IDENTITY LAST-UPDATED "201603080000Z" ORGANIZATION "The Cacti Group" CONTACT-INFO "The Cacti Group E-mail: developers@cacti.net" DESCRIPTION "This modules defines a MIB for Boost, the Large Site Performance Booster plugin for Cacti. The Structure of Management Information for Boost +- boostAppl | | | +- boostApplLastUpdate | +- boostApplVersion | | | +- boostApplRrdUpdateEnabled | +- boostApplRrdUpdateInterval | +- boostApplRrdUpdateMaxRecords | +- boostApplRrdUpdateMaxRecordsPerSelect | +- boostApplRrdUpdateMaxStringLength | +- boostApplRrdUpdatePollerMemLimit | +- boostApplRrdUpdateMaxRunTime | +- boostApplRrdUpdateRedirect | | | +- boostApplServerEnabled | +- boostApplServerMultiprocess | +- boostApplServerHostname | +- boostApplServerListenPort | +- boostApplServerTimeOut | | | +- boostApplImageCacheEnabled | +- boostApplLoggingEnabled | +- boostApplStorageDatabaseEngine | +- boostApplStorageMaxTableSize | +- boostApplStorageMaxRecords | +- boostStats | | | +- boostStatsLastUpdate | +- boostStatsRrdUpdateProcessStatus | +- boostStatsRrdUpdateLastRun | +- boostStatsRrdUpdateDuration | +- boostStatsRrdUpdateUtilization | +- boostStatsRrdUpdatePollerPeakMemory | +- boostStatsRrdUpdateNextRun | | | +- boostStatsRecordsStatusTable | | | | | +- boostStatsRecordsStatusEntry | | | | | +- boostStatsRecordsStatusIndex | | +- boostStatsRecordsStatusCounter | | | +- boostStatsStorageTableSize | +- boostStatsStorageAverageRecordSize | +- boostStatsStorageMaxRecordLength | +- boostStatsStorageMaxRecords | | | +- boostStatsRuntimeTimersTable | | | | | +- boostStatsRuntimeTimersEntry | | | | | +- boostStatsRuntimeTimersIndex | | +- boostStatsRuntimeTimersValue | | | +- boostStatsImageCacheFiles | +- boostStatsImageCacheFileSize | +- boostStatsTotalsImagesCacheReads | +- boostStatsTotalsImagesCacheWrites | +- boostEvents +- boostMibGroups | +- boostApplRrdUpdate +- boostApplServer +- boostStatsRrdUpdate +- boostStatsStorage +- boostStatsImageCache " REVISION "201603080000Z" DESCRIPTION "- With decommission of the BOOST SERVER status of: boostApplServerEnabled, boostApplServerMultiprocess, boostApplServerHostname boostApplServerListenPort, boostApplServerTimeOut and cactiStatsPollerRunTime has been set to obsolete." REVISION "201303230000Z" DESCRIPTION "Initial version of this MIB module." ::= { cactiPlugins 2 } -- assigned by the Cacti Group -- -- BOOST APPLICATION DATA -- boostAppl OBJECT-IDENTITY STATUS current DESCRIPTION "reserved for Boost application data" ::= { boost 1 } -- -- Global Boost Monitoring Variables -- boostApplLastUpdate OBJECT-TYPE SYNTAX Unsigned32 UNITS "seconds" MAX-ACCESS read-only STATUS current DESCRIPTION "Unix timestamp when this data has been updated for the last time." ::= { boostAppl 1 } boostApplRrdUpdateEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If Boost on demand RRD updating has been enabled this object is set to true(1)." DEFVAL { true } ::= { boostAppl 2 } boostApplRrdUpdateInterval OBJECT-TYPE SYNTAX Unsigned32 (30|60|120|240|360) UNITS "minutes" MAX-ACCESS read-only STATUS current DESCRIPTION "If Boost has been enabled this interval determines when RRDfiles will be updated automatically." ::= { boostAppl 3 } boostApplRrdUpdateMaxRecords OBJECT-TYPE SYNTAX Unsigned32 (1..4294967295) UNITS "records" MAX-ACCESS read-only STATUS current DESCRIPTION "Represents the maximum size in records of the Boost output table. If the boost output table exceeds this size, in records, an update will take place." ::= { boostAppl 4 } boostApplRrdUpdateMaxRecordsPerSelect OBJECT-TYPE SYNTAX Unsigned32 (2000|5000|10000|15000|25000|50000|100000|200000|400000) UNITS "records per select" MAX-ACCESS read-only STATUS current DESCRIPTION "Defines the maximum number of data source items that should be retrieved in one single pass." DEFVAL { 50000 } ::= { boostAppl 5 } boostApplRrdUpdateMaxStringLength OBJECT-TYPE SYNTAX Unsigned32 (1..4294967295) UNITS "characters" MAX-ACCESS read-only STATUS current DESCRIPTION "Defines the maximum argument length Boost must not exceed for update commands to RRDtool. This limit varies by operating system and kernel level." ::= { boostAppl 6 } boostApplRrdUpdatePollerMemLimit OBJECT-TYPE SYNTAX Unsigned32 (32|64|128|256|512|1024|1536|2048|3072) UNITS "MBytes" MAX-ACCESS read-only STATUS current DESCRIPTION "Returns the maximum amount of memory for the Cacti Poller and Boost's Poller." ::= { boostAppl 7 } boostApplRrdUpdateMaxRunTime OBJECT-TYPE SYNTAX Unsigned32 (1200|2400|3600|4800) UNITS "seconds" MAX-ACCESS read-only STATUS current DESCRIPTION "Represents the maximum boot poller run time in seconds being allowed." ::= { boostAppl 8 } boostApplRrdUpdateRedirect OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If direct population of poller_output_boost table by spine has been enabled this object is set to true(1). This enables direct insert of records into poller output boost." DEFVAL { false } ::= { boostAppl 9 } boostApplServerEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS obsolete DESCRIPTION "If Boost Server will be used for RRDUpdates this object is set to true (1)." DEFVAL { false } ::= { boostAppl 10 } boostApplServerMultiprocess OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS obsolete DESCRIPTION "This object returns true (1) if Boost Server should fork a separate update process for each boost request" DEFVAL { false } ::= { boostAppl 11 } boostApplServerHostname OBJECT-TYPE SYNTAX DisplayString (SIZE(1..100)) MAX-ACCESS read-only STATUS obsolete DESCRIPTION "Returns the Hostname/IP of the boost server." ::= { boostAppl 12 } boostApplServerListenPort OBJECT-TYPE SYNTAX DisplayString (SIZE(1..10)) MAX-ACCESS read-only STATUS obsolete DESCRIPTION "Returns the TCP port the boost server will listen on." ::= { boostAppl 13 } boostApplServerTimeOuts OBJECT-TYPE SYNTAX Unsigned32 (1..4294967295) UNITS "seconds" MAX-ACCESS read-only STATUS obsolete DESCRIPTION "Defines the maximum number of seconds a client should wait on the Boost server before giving up." ::= { boostAppl 14 } boostApplImageCacheEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If image caching has been enabled this object is set to true (1)." DEFVAL { false } ::= { boostAppl 15 } boostApplLoggingEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If Boost debug logging is enabled this object will return true (1)." DEFVAL { false } ::= { boostAppl 16 } boostApplStorageDatabaseEngine OBJECT-TYPE SYNTAX DisplayString (SIZE(1..20)) MAX-ACCESS read-only STATUS current DESCRIPTION "Returns the database engine being used for the boost storage." ::= { boostAppl 17 } boostApplStorageMaxTableSize OBJECT-TYPE SYNTAX Integer32 UNITS "kbytes" MAX-ACCESS read-only STATUS current DESCRIPTION "This object contains the maximum size in kbytes a boost memory (1) table is allowed to have. If boostApplStorageDatabaseEngine is set to myisam (2) the table size is unlimited and this object returns -1." DEFVAL { -1 } ::= { boostAppl 18 } boostApplStorageMaxRecords OBJECT-TYPE SYNTAX Unsigned32 UNITS "records" MAX-ACCESS read-only STATUS current DESCRIPTION "This object contains the estimated number of records a boost memory (1) table can store. If boostApplStorageDatabaseEngine is set to myisam (2) the number of maximum records is unlimited and this object returns 0." DEFVAL { 0 } ::= { boostAppl 19 } -- -- BOOST STATISTICS -- boostStats OBJECT-IDENTITY STATUS current DESCRIPTION "reserved for boost statistics" ::= { boost 2 } -- -- Global Boost Stats Variables -- boostStatsLastUpdate OBJECT-TYPE SYNTAX Unsigned32 UNITS "seconds" MAX-ACCESS read-only STATUS current DESCRIPTION "Unix timestamp when this data has been updated for the last time." ::= { boostStats 1 } boostStatsRrdUpdateProcessStatus OBJECT-TYPE SYNTAX INTEGER { disabled(0), neverrun(1), complete(2), running(3), overrun(4), timeout(5), other(6) } MAX-ACCESS read-only STATUS current DESCRIPTION "The status the update process of Boost can have: disabled(0) - RRD update process has been disabled. neverrun(1) - RRD update process is enabled but did not run so far complete(2) - Last RRD update process has been completed running(3) - RRD update process is still running overrun(4) - Overrun detected ? *review* timeout(5) - Time out detected ? *review* other(6) - Undefined state *review*" ::= { boostStats 2 } boostStatsRrdUpdateLastRun OBJECT-TYPE SYNTAX DisplayString (SIZE(19)) MAX-ACCESS read-only STATUS current DESCRIPTION "Date of last run" ::= { boostStats 3 } boostStatsRrdUpdates OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "Number of RRDs being updated." ::= { boostStats 4 } boostStatsRrdUpdateDuration OBJECT-TYPE SYNTAX DisplayString (SIZE(1..16)) UNITS "seconds" MAX-ACCESS read-only STATUS current DESCRIPTION "Represents the duration of the last update process in seconds." ::= { boostStats 5 } boostStatsRrdUpdateUtilization OBJECT-TYPE SYNTAX DisplayString (SIZE(1..16)) UNITS "percent" MAX-ACCESS read-only STATUS current DESCRIPTION "The proportion of the maximum upate frequency in percent Boost requires to update all rrds." ::= { boostStats 6 } boostStatsRrdUpdatePollerPeakMemory OBJECT-TYPE SYNTAX Unsigned32 (1..4294967295) UNITS "Bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "Returns the peak of memory in bytes that has been allocated by Boost during the last rrd update process." ::= { boostStats 7 } boostStatsRrdUpdateNextRun OBJECT-TYPE SYNTAX DisplayString (SIZE(19)) MAX-ACCESS read-only STATUS current DESCRIPTION "Date of next run" ::= { boostStats 8 } boostStatsTotalsDataSources OBJECT-TYPE SYNTAX Unsigned32 UNITS "seconds" MAX-ACCESS read-only STATUS current DESCRIPTION "Represents the total number of poller items Boost has to take care of." DEFVAL { 0 } ::= { boostStats 9 } boostStatsTotalsRecords OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "Returns the total number of records being handled by Boost." DEFVAL { 0 } ::= { boostStats 10 } boostStatsTotalsRecordsPending OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of records marked as pending." DEFVAL { 0 } ::= { boostStats 11 } boostStatsTotalsRecordsArchived OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of records marked as archived." DEFVAL { 0 } ::= { boostStats 12 } boostStatsStorageTableSize OBJECT-TYPE SYNTAX Unsigned32 UNITS "kbytes" MAX-ACCESS read-only STATUS current DESCRIPTION "This object contains the current size of the boost memory table in kBytes." DEFVAL { 0 } ::= { boostStats 13 } boostStatsStorageAverageRecordSize OBJECT-TYPE SYNTAX Unsigned32 UNITS "bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "Returns the average record size of the boost memory table in bytes." DEFVAL { 0 } ::= { boostStats 14 } boostStatsStorageMaxRecordLength OBJECT-TYPE SYNTAX Unsigned32 UNITS "bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "Returns size of longest record within the boost memory table in bytes." DEFVAL { 0 } ::= { boostStats 15 } boostStatsTotalsImagesCacheSize OBJECT-TYPE SYNTAX Unsigned32 UNITS "images" MAX-ACCESS read-only STATUS current DESCRIPTION "Represents the total number of RRD image files being currently cached by Boost." DEFVAL { 0 } ::= { boostStats 16 } boostStatsTotalsImagesCacheReads OBJECT-TYPE SYNTAX Counter64 MAX-ACCESS read-only STATUS current DESCRIPTION "Number of succesful read operations." ::= { boostStats 17 } boostStatsTotalsImagesCacheWrites OBJECT-TYPE SYNTAX Counter64 MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates the number of uncached read operations." ::= { boostStats 18 } -- boostStatsRrdUpdateNextRun -- -- BOOST EVENTS -- boostEvents OBJECT-IDENTITY STATUS current DESCRIPTION "reserved for boost events" ::= { boost 3 } -- -- BOOST MIB GROUPS -- boostMibGroups OBJECT-IDENTITY STATUS current DESCRIPTION "reserved for group definitions" ::= { boost 4 } END cacti-1.1.38/managers.php0000664000175000017500000011110013264740213014555 0ustar tromantroman __('Delete'), 2 => __('Enable'), 3 => __('Disable') ); $manager_notification_actions = array( 1 => __('Disable'), 2 => __('Enable') ); $tabs_manager_edit = array( 'general' => __('General'), 'notifications' => __('Notifications'), 'logs' => __('Logs'), ); /* set default action */ set_default_action(); get_filter_request_var('tab', FILTER_CALLBACK, array('options' => 'sanitize_search_string')); switch (get_request_var('action')) { case 'save': form_save(); break; case 'actions': form_actions(); break; case 'edit': top_header(); manager_edit(); bottom_footer(); break; default: top_header(); manager(); bottom_footer(); break; } function manager(){ global $manager_actions, $item_rows; /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'hostname', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ) ); validate_store_request_vars($filters, 'sess_snmp_mgr'); /* ================= input validation ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } ?>
    ' onChange='applyFilter()'> ' title=''> ' title=''>
    array( __('Description'), 'ASC'), 'id' => array( __('Id'), 'ASC'), 'disabled' => array( __('Status'), 'ASC'), 'hostname' => array( __('Hostname'), 'ASC'), 'count_notify' => array( __('Notifications'), 'ASC'), 'count_log' => array( __('Logs'), 'ASC') ); /* generate page list */ $nav = html_nav_bar('managers.php?filter=' . get_request_var('filter'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 11, __('Receivers'), 'page', 'main'); form_start('managers.php', 'chk'); print $nav; html_start_box('', '100%', '', '3', 'center', ''); html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false); $i = 0; if (sizeof($managers)) { foreach ($managers as $item) { $description = filter_value($item['description'], get_request_var('filter')); $hostname = filter_value($item['hostname'], get_request_var('filter')); form_alternate_row('line' . $item['id'], false); form_selectable_cell('' . $description . '', $item['id']); form_selectable_cell($item['id'], $item['id']); form_selectable_cell($item['disabled'] ? '' . __('Disabled') . '' : '' . __('Enabled') . '', $item['id']); form_selectable_cell($hostname, $item['id']); form_selectable_cell('' . ($item['count_notify'] ? $item['count_notify'] : 0) . '' , $item['id']); form_selectable_cell('' . ($item['count_log'] ? $item['count_log'] : 0 ) . '', $item['id']); form_checkbox_cell($item['description'], $item['id']); form_end_row(); } } else { print '' . __('No SNMP Notification Receivers') . ''; } html_end_box(false); if (sizeof($managers)) { print $nav; } form_hidden_box('action_receivers', '1', ''); draw_actions_dropdown($manager_actions); form_end(); } function manager_edit() { global $config, $snmp_auth_protocols, $snmp_priv_protocols, $snmp_versions, $tabs_manager_edit, $fields_manager_edit, $manager_notification_actions; /* ================= input validation ================= */ get_filter_request_var('id'); /* ==================================================== */ if (!isset_request_var('tab')) { set_request_var('tab', 'general'); } $id = (isset_request_var('id') ? get_request_var('id') : '0'); if ($id) { $manager = db_fetch_row_prepared('SELECT * FROM snmpagent_managers WHERE id = ?', array(get_request_var('id'))); $header_label = __('SNMP Notification Receiver [edit: %s]', html_escape($manager['description'])); } else { $header_label = __('SNMP Notification Receiver [new]'); } if (sizeof($tabs_manager_edit) && isset_request_var('id')) { $i = 0; /* draw the tabs */ print "
    '; if (read_config_option('legacy_menu_nav') != 'on') { ?> array('no_form_tag' => true), 'fields' => inject_form_variables($fields_manager_edit, (isset($manager) ? $manager : array())) ) ); html_end_box(true, true); form_save_button('managers.php', 'return'); ?> 0) { foreach($mibs as $mib) { $registered_mibs[] = $mib['mib']; } } /* ================= input validation ================= */ if (!$id | !is_numeric($id)) { die_html_input_error(); } if (!in_array(get_request_var('mib'), $registered_mibs) && get_request_var('mib') != '-1' && get_request_var('mib') != '') { die_html_input_error(); } /* ==================================================== */ /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'mib' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '-1', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'name', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ) ); validate_store_request_vars($filters, 'sess_snmp_cache'); /* ================= input validation ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } html_start_box($header_label, '100%', '', '3', 'center', ''); ?>
    ' onChange='applyFilter()'> ' title=''> ' title=''>
    0) { foreach($registered_notifications as $registered_notification) { $notifications[$registered_notification['mib']][$registered_notification['notification']] = 1; } } $display_text = array( __('Name'), __('OID'), __('MIB'), __('Kind'), __('Max-Access'), __('Monitored') ); /* generate page list */ $nav = html_nav_bar('managers.php?action=edit&id=' . $id . '&tab=notifications&mib=' . get_request_var('mib') . '&filter=' . get_request_var('filter'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, sizeof($display_text)+1, __('Notifications'), 'page', 'main'); print $nav; html_start_box('', '100%', '', '3', 'center', ''); html_header_checkbox($display_text, true, 'managers.php?action=edit&tab=notifications&id=' . $id); if (sizeof($snmp_cache)) { foreach ($snmp_cache as $item) { $row_id = $item['mib'] . '__' . $item['name']; $oid = filter_value($item['oid'], get_request_var('filter')); $name = filter_value($item['name'], get_request_var('filter')); $mib = filter_value($item['mib'], get_request_var('filter')); form_alternate_row('line' . $row_id, false); if ($item['description']) { print '' . $name . ''; }else { form_selectable_cell($name, $row_id); } form_selectable_cell($oid, $row_id); form_selectable_cell($mib, $row_id); form_selectable_cell($item['kind'], $row_id); form_selectable_cell($item['max-access'],$row_id); form_selectable_cell(((isset($notifications[$item['mib']]) && isset($notifications[$item['mib']][$item['name']])) ? '' .__('Enabled') : '' . __('Disabled')) . '', $row_id); form_checkbox_cell($item['oid'], $row_id); form_end_row(); } } else { print '' . __('No SNMP Notifications') . ''; } ?> '> 'LOW', SNMPAGENT_EVENT_SEVERITY_MEDIUM => 'MEDIUM', SNMPAGENT_EVENT_SEVERITY_HIGH => 'HIGH', SNMPAGENT_EVENT_SEVERITY_CRITICAL => 'CRITICAL' ); $severity_colors = array( SNMPAGENT_EVENT_SEVERITY_LOW => '#00FF00', SNMPAGENT_EVENT_SEVERITY_MEDIUM => '#FFFF00', SNMPAGENT_EVENT_SEVERITY_HIGH => '#FF0000', SNMPAGENT_EVENT_SEVERITY_CRITICAL => '#FF00FF' ); if (isset_request_var('purge')) { db_execute_prepared('DELETE FROM snmpagent_notifications_log WHERE manager_id = ?', array($id)); set_request_var('clear', true); } /* ================= input validation ================= */ if (!$id | !is_numeric($id)) { die_html_input_error(); } if (!in_array(get_request_var('severity'), array_keys($severity_levels)) && get_request_var('severity') != '-1' && get_request_var('severity') != '') { die_html_input_error(); } /* ==================================================== */ /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'severity' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '-1' ) ); validate_store_request_vars($filters, 'sess_snmp_logs'); /* ================= input validation ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } html_start_box($header_label, '100%', '', '3', 'center', ''); ?>
    '> ' title=''> ' title=''> ' title=''>
    '>
    "; print "" . date('Y/m/d H:i:s', $item['time']) . ''; if ($item['description']) { $description = ''; $lines = preg_split( '/\r\n|\r|\n/', $item['description']); foreach($lines as $line) { $description .= html_escape(trim($line)) . '
    '; } print '' . $item['notification'] . ''; }else { print "{$item['notification']}"; } print "$varbinds"; form_end_row(); } } else { print '' . __('No SNMP Notification Log Entries') . ''; } html_end_box(); if (sizeof($logs)) { print $nav; } ?> '> $notifications) { foreach($notifications as $notification => $state) { db_execute_prepared('DELETE FROM snmpagent_managers_notifications WHERE `manager_id` = ? AND `mib` = ? AND `notification` = ? LIMIT 1', array(get_nfilter_request_var('id'), $mib, $notification)); } } } elseif (get_nfilter_request_var('drp_action') == '2') { // enable foreach($selected_items as $mib => $notifications) { foreach($notifications as $notification => $state) { db_execute_prepared('INSERT IGNORE INTO snmpagent_managers_notifications (`manager_id`, `notification`, `mib`) VALUES (?, ?, ?)', array(get_nfilter_request_var('id'), $notification, $mib)); } } } } header('Location: managers.php?action=edit&id=' . get_nfilter_request_var('id') . '&tab=notifications&header=false'); exit; } }else { if (isset_request_var('action_receivers')) { $selected_items = array(); $list = ''; foreach($_POST as $key => $value) { if (strstr($key, 'chk_')) { /* grep manager's id */ $id = substr($key, 4); /* ================= input validation ================= */ input_validate_input_number($id); /* ==================================================== */ $list .= '
  • ' . db_fetch_cell_prepared('SELECT description FROM snmpagent_managers WHERE id = ?', array($id)) . '
  • '; $selected_items[] = $id; } } top_header(); form_start('managers.php'); html_start_box($manager_actions[get_nfilter_request_var('drp_action')], '60%', '', '3', 'center', ''); if (sizeof($selected_items)) { if (get_nfilter_request_var('drp_action') == '1') { // delete $msg = __n('Click \'Continue\' to delete the following Notification Receiver', 'Click \'Continue\' to delete following Notification Receiver', sizeof($selected_items)); } elseif (get_nfilter_request_var('drp_action') == '2') { // enable $msg = __n('Click \'Continue\' to enable the following Notification Receiver', 'Click \'Continue\' to enable following Notification Receiver', sizeof($selected_items)); } elseif (get_nfilter_request_var('drp_action') == '3') { // disable $msg = __n('Click \'Continue\' to disable the following Notification Receiver', 'Click \'Continue\' to disable following Notification Receiver', sizeof($selected_items)); } print "

    $msg

      $list
    "; $save_html = ""; } else { print "" . __('You must select at least one Notification Receiver.') . ""; $save_html = ""; } print " $save_html \n"; html_end_box(); form_end(); bottom_footer(); }else { $selected_items = array(); $list = ''; /* ================= input validation ================= */ get_filter_request_var('id'); /* ==================================================== */ foreach($_POST as $key => $value) { if (strstr($key, 'chk_')) { /* grep mib and notification name */ $row_id = substr($key, 4); list($mib, $name) = explode('__', $row_id); $list .= '
  • ' . $name . ' (' . $mib .')
  • '; $selected_items[$mib][$name] = 1; } } top_header(); form_start('managers.php'); html_start_box($manager_notification_actions[get_nfilter_request_var('drp_action')], '60%', '', '3', 'center', ''); if (sizeof($selected_items)) { $msg = (get_nfilter_request_var('drp_action') == 2) ? __('Click \'Continue\' to forward the following Notification Objects to this Notification Receiver.') : __('Click \'Continue\' to disable forwarding the following Notification Objects to this Notification Receiver.'); print "

    $msg

      $list

    "; $save_html = " "; } else { print "" . __('You must select at least one notification object.') . "\n"; $save_html = ""; } print " $save_html "; html_end_box(); form_end(); bottom_footer(); } } } cacti-1.1.38/logout.php0000664000175000017500000001047013264740213014301 0ustar tromantroman\n"; print "\n"; print "\n"; html_common_header(__('Logout of Cacti')); print "\n"; print "
    " . __('Automatic Logout') . "

    " . __('You have been logged out of Cacti due to a session timeout.') . "

    " . __('Please close your browser or %sLogin Again%s', '

    [', ']
    ') . "
    " . __('Version %s', $version) . " | " . COPYRIGHT_YEARS_SHORT . "
    "; include('./include/global_session.php'); print " \n"; } elseif (read_config_option('auth_method') == '2') { clear_auth_cookie(); if (api_plugin_hook_function('custom_logout_message', OPER_MODE_NATIVE) == OPER_MODE_RESKIN) { exit; } print "\n"; print "\n"; print "\n"; html_common_header(__('Logout of Cacti')); print "\n"; print "
    " . __('Automatic Logout') . "

    " . __('You have been logged out of Cacti due to a session timeout.') . "

    " . __('Please close your browser or %sLogin Again%s', '

    [', ']
    ') . "
    "; include('./include/global_session.php'); print " \n"; } else { /* Default action */ clear_auth_cookie(); header('Location: index.php'); } cacti-1.1.38/log/0000775000175000017500000000000013264740213013036 5ustar tromantromancacti-1.1.38/log/.htaccess0000664000175000017500000000025213264740213014633 0ustar tromantroman# Apache 2.4 Require all denied # Apache 2.2 Order Allow,Deny Deny from all cacti-1.1.38/locales/0000775000175000017500000000000013264740214013700 5ustar tromantromancacti-1.1.38/locales/po/0000775000175000017500000000000013264740213014315 5ustar tromantromancacti-1.1.38/locales/po/swedish_sweden.po0000664000175000017500000142140013264740213017672 0ustar tromantromanmsgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-05-20 13:01+0200\n" "PO-Revision-Date: 2017-05-20 13:01+0200\n" "Last-Translator: Patrick Rademaker\n" "Language-Team: \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.0.2\n" #: ../about.php:29 ../lib/functions.php:2424 msgid "About Cacti" msgstr "Om Cacti" #: ../about.php:35 ../index.php:73 ../logout.php:77 #, php-format msgid "Version %s" msgstr "" #: ../about.php:42 msgid "" "Cacti is designed to be a complete graphing solution based on the RRDtool's " "framework. Its goal is to make a network administrator's job easier by " "taking care of all the necessary details necessary to create meaningful " "graphs." msgstr "" #: ../about.php:44 #, php-format msgid "" "Please see the official %sCacti website%s for information, support, and " "updates." msgstr "" #: ../about.php:46 msgid "Cacti Developers" msgstr "" #: ../about.php:58 msgid "Thanks" msgstr "" #: ../about.php:61 #, php-format msgid "" "A very special thanks to %sTobi Oetiker%s, the creator of %sRRDtool%s and " "the very popular %sMRTG%s." msgstr "" #: ../about.php:64 #, fuzzy msgid "The users of Cacti" msgstr "Återgå till Cacti" #: ../about.php:65 msgid "" "Especially anyone who has taken the time to create an issue report, or " "otherwise help fix a Cacti related problems. Also to anyone who has " "contributed to supporting Cacti." msgstr "" #: ../about.php:70 msgid "License" msgstr "Licens" #: ../about.php:72 msgid "Cacti is licensed under the GNU GPL:" msgstr "Cacti är licensierat under GNU GPL:" #: ../about.php:74 msgid "" "This program is free software; you can redistribute it and/or modify it " "under the terms of the GNU General Public License as published by the Free " "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" #: ../about.php:76 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" #: ../aggregate_graphs.php:40 ../aggregate_templates.php:29 #: ../automation_graph_rules.php:32 ../automation_networks.php:31 #: ../automation_snmp.php:29 ../automation_snmp.php:727 #: ../automation_templates.php:29 ../automation_tree_rules.php:32 #: ../cdef.php:29 ../cdef.php:619 ../color.php:28 ../color_templates.php:28 #: ../color_templates.php:122 ../data_input.php:29 ../data_input.php:490 #: ../data_input.php:528 ../data_queries.php:30 ../data_queries.php:638 #: ../data_queries.php:736 ../data_queries.php:950 #: ../data_source_profiles.php:29 ../data_source_profiles.php:513 #: ../data_sources.php:35 ../data_sources.php:942 ../data_templates.php:33 #: ../data_templates.php:571 ../gprint_presets.php:28 ../graph_templates.php:33 #: ../graph_templates.php:440 ../graphs.php:44 ../host.php:38 #: ../host_templates.php:30 ../host_templates.php:485 ../host_templates.php:542 #: ../include/global_arrays.php:1234 ../lib/api_automation.php:1246 #: ../lib/api_automation.php:1309 ../lib/api_automation.php:1373 #: ../lib/html.php:970 ../lib/html_form.php:1096 ../lib/html_reports.php:1291 #: ../links.php:28 ../managers.php:28 ../pollers.php:29 ../sites.php:28 #: ../tree.php:1051 ../tree.php:1204 ../tree.php:1264 ../user_admin.php:28 #: ../user_domains.php:29 ../user_group_admin.php:30 ../vdef.php:29 msgid "Delete" msgstr "Ta bort" #: ../aggregate_graphs.php:41 msgid "Migrate Aggregate to use a Template" msgstr "" #: ../aggregate_graphs.php:42 msgid "Create New Aggregate from Aggregates" msgstr "" #: ../aggregate_graphs.php:46 msgid "Associate with Aggregate" msgstr "" #: ../aggregate_graphs.php:47 msgid "Disassociate with Aggregate" msgstr "" #: ../aggregate_graphs.php:80 ../graphs.php:128 #, php-format msgid "Place on a Tree (%s)" msgstr "" #: ../aggregate_graphs.php:318 msgid "Click 'Continue' to delete the following Aggregate Graph(s)." msgstr "" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 ../automation_devices.php:199 #: ../automation_graph_rules.php:284 ../automation_networks.php:358 #: ../automation_snmp.php:253 ../automation_snmp.php:356 #: ../automation_templates.php:195 ../automation_tree_rules.php:286 #: ../cdef.php:282 ../cdef.php:292 ../cdef.php:344 ../color.php:192 #: ../color_templates.php:232 ../color_templates.php:242 #: ../color_templates_items.php:280 ../data_input.php:218 ../data_input.php:266 #: ../data_queries.php:322 ../data_queries.php:425 #: ../data_source_profiles.php:266 ../data_source_profiles.php:276 #: ../data_source_profiles.php:324 ../data_sources.php:468 #: ../data_sources.php:478 ../data_sources.php:487 ../data_sources.php:496 #: ../data_sources.php:505 ../data_sources.php:511 ../data_templates.php:358 #: ../data_templates.php:368 ../data_templates.php:384 #: ../gprint_presets.php:153 ../graph_templates.php:317 #: ../graph_templates.php:327 ../graph_templates.php:347 #: ../graph_templates.php:356 ../graphs.php:818 ../graphs.php:845 #: ../graphs.php:856 ../graphs.php:867 ../graphs.php:882 ../graphs.php:905 #: ../graphs.php:1029 ../graphs.php:1072 ../graphs.php:1094 ../graphs.php:1102 #: ../graphs.php:1535 ../host.php:381 ../host.php:390 ../host.php:432 #: ../host.php:441 ../host.php:450 ../host.php:464 ../host.php:478 #: ../host.php:487 ../host.php:495 ../host_templates.php:261 #: ../host_templates.php:275 ../host_templates.php:286 #: ../host_templates.php:334 ../host_templates.php:394 #: ../lib/clog_webapi.php:129 ../lib/html_form.php:1095 #: ../lib/html_form.php:1107 ../lib/html_form.php:1118 #: ../lib/html_utility.php:198 ../links.php:196 ../links.php:205 #: ../links.php:214 ../managers.php:1012 ../managers.php:1069 #: ../pollers.php:288 ../pollers.php:297 ../pollers.php:306 ../pollers.php:315 #: ../sites.php:280 ../tree.php:490 ../tree.php:499 ../tree.php:508 #: ../user_admin.php:350 ../user_admin.php:390 ../user_admin.php:401 #: ../user_admin.php:412 ../user_admin.php:434 ../user_domains.php:227 #: ../user_domains.php:236 ../user_domains.php:245 ../user_domains.php:254 #: ../user_group_admin.php:446 ../user_group_admin.php:465 #: ../user_group_admin.php:476 ../user_group_admin.php:487 ../vdef.php:270 #: ../vdef.php:280 ../vdef.php:332 msgid "Cancel" msgstr "" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 ../automation_devices.php:199 #: ../automation_graph_rules.php:284 ../automation_networks.php:350 #: ../automation_snmp.php:228 ../automation_snmp.php:357 #: ../automation_templates.php:195 ../automation_tree_rules.php:286 #: ../cdef.php:282 ../cdef.php:292 ../cdef.php:345 ../color.php:192 #: ../color_templates.php:232 ../color_templates.php:242 #: ../color_templates_items.php:281 ../data_input.php:218 ../data_input.php:267 #: ../data_queries.php:322 ../data_queries.php:426 #: ../data_source_profiles.php:266 ../data_source_profiles.php:276 #: ../data_source_profiles.php:325 ../data_sources.php:468 #: ../data_sources.php:478 ../data_sources.php:487 ../data_sources.php:496 #: ../data_sources.php:505 ../data_sources.php:511 ../data_templates.php:358 #: ../data_templates.php:368 ../data_templates.php:384 #: ../gprint_presets.php:153 ../graph_templates.php:317 #: ../graph_templates.php:327 ../graph_templates.php:347 #: ../graph_templates.php:356 ../graphs.php:818 ../graphs.php:845 #: ../graphs.php:856 ../graphs.php:867 ../graphs.php:882 ../graphs.php:905 #: ../graphs.php:1029 ../graphs.php:1072 ../graphs.php:1094 ../graphs.php:1102 #: ../host.php:381 ../host.php:390 ../host.php:432 ../host.php:441 #: ../host.php:450 ../host.php:464 ../host.php:478 ../host.php:487 #: ../host.php:495 ../host_templates.php:261 ../host_templates.php:275 #: ../host_templates.php:286 ../host_templates.php:335 #: ../host_templates.php:395 ../lib/clog_webapi.php:130 #: ../lib/html_reports.php:643 ../lib/html_utility.php:198 ../links.php:196 #: ../links.php:205 ../links.php:214 ../managers.php:1012 ../managers.php:1069 #: ../pollers.php:288 ../pollers.php:297 ../pollers.php:306 ../pollers.php:315 #: ../sites.php:280 ../tree.php:490 ../tree.php:499 ../tree.php:508 #: ../user_admin.php:350 ../user_admin.php:390 ../user_admin.php:401 #: ../user_admin.php:412 ../user_admin.php:434 ../user_domains.php:227 #: ../user_domains.php:236 ../user_domains.php:245 ../user_domains.php:254 #: ../user_group_admin.php:446 ../user_group_admin.php:465 #: ../user_group_admin.php:476 ../user_group_admin.php:487 ../vdef.php:270 #: ../vdef.php:280 ../vdef.php:333 msgid "Continue" msgstr "" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../graphs.php:818 #, fuzzy msgid "Delete Graph(s)" msgstr "Uppdatera grafer" #: ../aggregate_graphs.php:349 msgid "" "The selected Aggregate Graphs represent elements from more than one Graph " "Template." msgstr "" #: ../aggregate_graphs.php:350 msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, they must only be using one Graph Template. Please press " "'Return' and then select only Aggregate Graph that utilize the same Graph " "Template." msgstr "" #: ../aggregate_graphs.php:355 ../aggregate_graphs.php:395 #: ../aggregate_graphs.php:442 ../aggregate_templates.php:316 #: ../auth_changepassword.php:308 ../automation_devices.php:203 #: ../automation_graph_rules.php:282 ../automation_networks.php:359 #: ../automation_snmp.php:253 ../automation_templates.php:199 #: ../automation_tree_rules.php:284 ../cdef.php:296 ../color.php:196 #: ../color_templates.php:246 ../data_input.php:221 ../data_queries.php:325 #: ../data_source_profiles.php:280 ../data_sources.php:515 #: ../data_templates.php:388 ../gprint_presets.php:157 #: ../graph_templates.php:360 ../graphs.php:1031 ../graphs.php:1081 #: ../graphs.php:1084 ../graphs.php:1107 ../host.php:499 #: ../host_templates.php:290 ../include/auth.php:115 ../lib/html_form.php:1116 #: ../lib/html_utility.php:196 ../links.php:218 ../managers.php:1072 #: ../permission_denied.php:30 ../permission_denied.php:32 ../pollers.php:319 #: ../sites.php:284 ../tree.php:512 ../user_admin.php:439 #: ../user_domains.php:258 ../user_group_admin.php:491 ../vdef.php:284 msgid "Return" msgstr "" #: ../aggregate_graphs.php:368 msgid "" "Click 'Continue' and the following Aggregate Graph(s) will be migrated to " "use the Aggregate Template that you choose below." msgstr "" #: ../aggregate_graphs.php:374 #, fuzzy msgid "Aggregate Template:" msgstr "Grafmall" #: ../aggregate_graphs.php:388 msgid "" "There are currently no Aggregate Templates defined for the selected Legacy " "Aggregates." msgstr "" #: ../aggregate_graphs.php:389 #, php-format msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, first create an Aggregate Template for the Graph Template '%s'." msgstr "" #: ../aggregate_graphs.php:390 msgid "Please press 'Return' to continue." msgstr "" #: ../aggregate_graphs.php:401 msgid "" "Click 'Continue' to combine the following Aggregate Graph(s) into a single " "Aggregate Graph." msgstr "" #: ../aggregate_graphs.php:406 #, fuzzy msgid "Aggregate Name:" msgstr "Mallnamn" #: ../aggregate_graphs.php:407 msgid "New Aggregate" msgstr "" #: ../aggregate_graphs.php:413 msgid "" "Click 'Continue' to associate the following Graph(s) with the Aggregate " "Graph." msgstr "" #: ../aggregate_graphs.php:418 #, fuzzy msgid "Associate Graph(s)" msgstr "Uppdatera grafer" #: ../aggregate_graphs.php:422 msgid "" "Click 'Continue' to disassociate the following Graph(s) from the Aggregate." msgstr "" #: ../aggregate_graphs.php:427 msgid "Dis-Associate Graph(s)" msgstr "" #: ../aggregate_graphs.php:431 msgid "" "Click 'Continue' to place the following Aggregate Graph(s) under the Tree " "Branch." msgstr "" #: ../aggregate_graphs.php:433 ../host.php:470 msgid "Destination Branch:" msgstr "" #: ../aggregate_graphs.php:438 ../graphs.php:882 #, fuzzy msgid "Place Graph(s) on Tree" msgstr "Grafträd" #: ../aggregate_graphs.php:441 msgid "You must select at least one graph." msgstr "" #: ../aggregate_graphs.php:476 ../graphs.php:1140 msgid "Graph Items [new]" msgstr "" #: ../aggregate_graphs.php:492 ../graphs.php:1160 #, php-format msgid "Graph Items [edit: %s]" msgstr "" #: ../aggregate_graphs.php:560 ../aggregate_graphs.php:563 #: ../lib/html_reports.php:1060 ../lib/html_reports.php:1065 #: ../lib/html_reports.php:1104 ../utilities.php:1699 msgid "Details" msgstr "" #: ../aggregate_graphs.php:560 ../lib/html_reports.php:1060 #: ../lib/html_reports.php:1151 ../utilities.php:306 msgid "Items" msgstr "" #: ../aggregate_graphs.php:560 ../aggregate_graphs.php:563 ../lib/html.php:1559 #: ../lib/html_reports.php:1060 #, fuzzy msgid "Preview" msgstr "Förhandsgrandskning" #: ../aggregate_graphs.php:607 msgid "Turn Off Graph Debug Mode" msgstr "" #: ../aggregate_graphs.php:609 msgid "Turn On Graph Debug Mode" msgstr "" #: ../aggregate_graphs.php:615 ../aggregate_graphs.php:880 msgid "Show Item Details" msgstr "" #: ../aggregate_graphs.php:621 #, php-format msgid "Aggregate Preview [%s]" msgstr "" #: ../aggregate_graphs.php:633 ../graph.php:431 ../graphs.php:1398 msgid "RRDTool Command:" msgstr "" #: ../aggregate_graphs.php:635 ../graph.php:434 ../graphs.php:1400 msgid "RRDTool Says:" msgstr "" #: ../aggregate_graphs.php:660 #, fuzzy, php-format msgid "Aggregate Graph %s" msgstr "Uppdatera grafer" #: ../aggregate_graphs.php:798 ../lib/api_aggregate.php:1221 msgid "Total" msgstr "" #: ../aggregate_graphs.php:802 #, fuzzy msgid "All Items" msgstr "Trädvy" #: ../aggregate_graphs.php:825 ../graphs.php:1414 ../lib/api_aggregate.php:1367 msgid "Graph Configuration" msgstr "" #: ../aggregate_graphs.php:875 ../automation_graph_rules.php:513 #: ../automation_graph_rules.php:528 ../automation_graph_rules.php:544 #: ../automation_tree_rules.php:379 ../automation_tree_rules.php:529 msgid "Show" msgstr "" #: ../aggregate_graphs.php:877 msgid "Hide Item Details" msgstr "" #: ../aggregate_graphs.php:998 #, fuzzy msgid "Matching Graphs" msgstr "Uppdatera grafer" #: ../aggregate_graphs.php:1007 ../aggregate_graphs.php:1326 #: ../aggregate_templates.php:538 ../automation_devices.php:448 #: ../automation_graph_rules.php:701 ../automation_networks.php:1061 #: ../automation_networks.php:1082 ../automation_snmp.php:828 #: ../automation_templates.php:412 ../automation_tree_rules.php:715 #: ../cdef.php:722 ../color.php:529 ../color_templates.php:439 #: ../data_input.php:619 ../data_queries.php:1048 #: ../data_source_profiles.php:719 ../data_sources.php:1251 #: ../data_templates.php:754 ../gprint_presets.php:262 #: ../graph_templates.php:628 ../graph_view.php:517 ../graph_view.php:818 #: ../graphs.php:1687 ../graphs_new.php:548 ../host.php:1375 #: ../host_templates.php:700 ../lib/api_automation.php:133 #: ../lib/api_automation.php:460 ../lib/api_automation.php:683 #: ../lib/api_automation.php:988 ../lib/clog_webapi.php:380 #: ../lib/html_filter.php:63 ../lib/html_graph.php:206 #: ../lib/html_graph.php:432 ../lib/html_reports.php:1378 #: ../lib/html_tree.php:121 ../lib/html_tree.php:605 ../lib/html_tree.php:879 #: ../links.php:309 ../managers.php:150 ../managers.php:533 ../managers.php:724 #: ../plugins.php:276 ../pollers.php:517 ../rrdcleaner.php:475 #: ../settings.php:204 ../settings.php:221 ../settings.php:267 ../sites.php:387 #: ../tree.php:633 ../tree.php:668 ../tree.php:1485 ../user_admin.php:2193 #: ../user_admin.php:2531 ../user_admin.php:2640 ../user_admin.php:2728 #: ../user_admin.php:2833 ../user_admin.php:2920 ../user_admin.php:3007 #: ../user_domains.php:621 ../user_group_admin.php:1806 #: ../user_group_admin.php:2133 ../user_group_admin.php:2243 #: ../user_group_admin.php:2348 ../user_group_admin.php:2435 #: ../user_group_admin.php:2522 ../utilities.php:689 ../utilities.php:1045 #: ../utilities.php:1282 ../utilities.php:1594 ../utilities.php:2257 #: ../utilities.php:2510 ../vdef.php:659 #, fuzzy msgid "Search" msgstr "Sök:" #: ../aggregate_graphs.php:1013 ../aggregate_graphs.php:1111 #: ../aggregate_graphs.php:1354 ../color_templates.php:549 #: ../graph_view.php:395 ../graph_view.php:556 ../graphs.php:1693 #: ../host.php:1501 ../include/global_arrays.php:686 #: ../include/global_arrays.php:865 ../lib/api_automation.php:274 #: ../lib/functions.php:1856 ../lib/html.php:1308 ../lib/html.php:1310 #: ../lib/html.php:1383 ../lib/html_graph.php:212 ../lib/html_tree.php:658 #: ../lib/html_tree.php:1076 ../tree.php:1568 ../user_admin.php:998 #: ../user_admin.php:1242 ../user_admin.php:2559 ../user_group_admin.php:813 #: ../user_group_admin.php:966 ../user_group_admin.php:2161 #: ../utilities.php:268 msgid "Graphs" msgstr "Grafer" #: ../aggregate_graphs.php:1017 ../aggregate_graphs.php:1358 #: ../aggregate_templates.php:554 ../automation_devices.php:533 #: ../automation_graph_rules.php:743 ../automation_networks.php:1071 #: ../automation_snmp.php:838 ../automation_templates.php:422 #: ../automation_tree_rules.php:735 ../cdef.php:732 ../color.php:539 #: ../color_templates.php:453 ../data_input.php:629 ../data_queries.php:1058 #: ../data_source_profiles.php:729 ../data_source_profiles.php:848 #: ../data_sources.php:1287 ../data_templates.php:780 ../gprint_presets.php:272 #: ../graph_templates.php:638 ../graph_view.php:560 ../graphs.php:1697 #: ../graphs_new.php:530 ../host.php:1400 ../host_templates.php:710 #: ../include/global_form.php:79 ../lib/api_automation.php:176 #: ../lib/api_automation.php:470 ../lib/api_automation.php:693 #: ../lib/api_automation.php:1031 ../lib/html_reports.php:1398 ../links.php:319 #: ../managers.php:160 ../managers.php:543 ../plugins.php:299 #: ../pollers.php:527 ../rrdcleaner.php:501 ../sites.php:397 ../tree.php:1495 #: ../user_admin.php:2203 ../user_admin.php:2563 ../user_admin.php:2650 #: ../user_admin.php:2756 ../user_admin.php:2843 ../user_admin.php:2930 #: ../user_admin.php:3017 ../user_domains.php:32 ../user_domains.php:631 #: ../user_domains.php:716 ../user_group_admin.php:1816 #: ../user_group_admin.php:2165 ../user_group_admin.php:2271 #: ../user_group_admin.php:2358 ../user_group_admin.php:2445 #: ../user_group_admin.php:2532 ../utilities.php:665 ../utilities.php:1326 #: ../utilities.php:1615 ../utilities.php:2282 ../utilities.php:2546 #: ../vdef.php:669 msgid "Default" msgstr "" #: ../aggregate_graphs.php:1031 msgid "Part of Aggregate" msgstr "" #: ../aggregate_graphs.php:1034 ../aggregate_graphs.php:1369 #: ../aggregate_templates.php:574 ../automation_devices.php:468 #: ../automation_graph_rules.php:754 ../automation_networks.php:1082 #: ../automation_snmp.php:849 ../automation_templates.php:433 #: ../automation_tree_rules.php:746 ../cdef.php:749 ../color.php:562 #: ../color_templates.php:472 ../data_input.php:640 ../data_queries.php:1069 #: ../data_source_profiles.php:746 ../data_sources.php:1241 #: ../data_templates.php:797 ../gprint_presets.php:289 #: ../graph_templates.php:655 ../graph_view.php:571 ../graphs.php:1677 #: ../graphs_new.php:554 ../host.php:1365 ../host_templates.php:727 #: ../lib/api_automation.php:187 ../lib/api_automation.php:452 #: ../lib/api_automation.php:704 ../lib/api_automation.php:1042 #: ../lib/clog_webapi.php:340 ../lib/html.php:1154 ../lib/html_filter.php:81 #: ../lib/html_graph.php:190 ../lib/html_reports.php:1408 #: ../lib/html_tree.php:642 ../links.php:328 ../managers.php:171 #: ../managers.php:554 ../managers.php:743 ../plugins.php:310 #: ../pollers.php:538 ../sites.php:408 ../tree.php:1506 ../user_admin.php:2214 #: ../user_admin.php:2580 ../user_admin.php:2667 ../user_admin.php:2773 #: ../user_admin.php:2860 ../user_admin.php:2947 ../user_admin.php:3034 msgid "Go" msgstr "Utför" #: ../aggregate_graphs.php:1034 ../aggregate_graphs.php:1369 #: ../automation_devices.php:468 ../automation_snmp.php:849 #: ../automation_templates.php:433 ../cdef.php:749 ../color.php:562 #: ../data_input.php:640 ../data_queries.php:1069 #: ../data_source_profiles.php:746 ../data_sources.php:1241 #: ../data_templates.php:797 ../gprint_presets.php:289 #: ../graph_templates.php:655 ../graph_view.php:571 ../graphs.php:1677 #: ../graphs_new.php:554 ../host.php:1365 ../host_templates.php:727 #: ../lib/html_graph.php:190 ../managers.php:171 ../managers.php:554 #: ../managers.php:743 ../plugins.php:310 ../pollers.php:538 ../sites.php:408 #: ../tree.php:1506 ../user_admin.php:2214 ../user_admin.php:2580 #: ../user_admin.php:2667 ../user_admin.php:2773 ../user_admin.php:2860 #: ../user_admin.php:2947 ../user_admin.php:3034 ../user_domains.php:642 #: ../user_group_admin.php:1827 ../user_group_admin.php:2182 #: ../user_group_admin.php:2288 ../user_group_admin.php:2375 #: ../user_group_admin.php:2462 ../user_group_admin.php:2549 #: ../utilities.php:676 ../utilities.php:1009 ../utilities.php:1337 #: ../utilities.php:1584 ../utilities.php:2293 ../utilities.php:2557 msgid "Set/Refresh Filters" msgstr "" #: ../aggregate_graphs.php:1037 ../aggregate_graphs.php:1372 #: ../aggregate_templates.php:577 ../automation_devices.php:471 #: ../automation_graph_rules.php:757 ../automation_networks.php:1085 #: ../automation_snmp.php:852 ../automation_templates.php:436 #: ../automation_tree_rules.php:749 ../cdef.php:752 ../color.php:565 #: ../color_templates.php:475 ../data_input.php:643 ../data_queries.php:1072 #: ../data_source_profiles.php:749 ../data_sources.php:1244 #: ../data_templates.php:800 ../gprint_presets.php:292 #: ../graph_templates.php:658 ../graph_view.php:574 ../graphs.php:1680 #: ../graphs_new.php:555 ../host.php:1368 ../host_templates.php:730 #: ../lib/api_automation.php:190 ../lib/api_automation.php:455 #: ../lib/api_automation.php:707 ../lib/api_automation.php:1045 #: ../lib/clog_webapi.php:343 ../lib/html_filter.php:86 #: ../lib/html_graph.php:193 ../lib/html_graph.php:322 #: ../lib/html_reports.php:1411 ../lib/html_tree.php:645 #: ../lib/html_tree.php:768 ../links.php:331 ../managers.php:174 #: ../managers.php:557 ../managers.php:746 ../plugins.php:313 #: ../pollers.php:541 ../sites.php:411 ../tree.php:1509 ../user_admin.php:2217 #: ../user_admin.php:2583 ../user_admin.php:2670 ../user_admin.php:2776 #: ../user_admin.php:2863 ../user_admin.php:2950 ../user_admin.php:3037 #: ../user_domains.php:645 msgid "Clear" msgstr "Rensa" #: ../aggregate_graphs.php:1037 ../aggregate_graphs.php:1372 #: ../automation_snmp.php:852 ../automation_templates.php:436 ../cdef.php:752 #: ../color.php:565 ../data_input.php:643 ../data_queries.php:1072 #: ../data_source_profiles.php:749 ../data_sources.php:1244 #: ../data_templates.php:800 ../gprint_presets.php:292 #: ../graph_templates.php:658 ../graph_view.php:574 ../graphs.php:1680 #: ../graphs_new.php:555 ../host.php:1368 ../host_templates.php:730 #: ../lib/html_graph.php:193 ../lib/html_tree.php:645 ../managers.php:174 #: ../managers.php:557 ../managers.php:746 ../plugins.php:313 #: ../pollers.php:541 ../sites.php:411 ../tree.php:1509 ../user_admin.php:2217 #: ../user_admin.php:2583 ../user_admin.php:2670 ../user_admin.php:2776 #: ../user_admin.php:2863 ../user_admin.php:2950 ../user_admin.php:3037 #: ../user_domains.php:645 ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 ../user_group_admin.php:2465 #: ../user_group_admin.php:2552 ../utilities.php:679 ../utilities.php:1012 #: ../utilities.php:1340 ../utilities.php:1587 ../utilities.php:2296 #: ../utilities.php:2558 msgid "Clear Filters" msgstr "" #: ../aggregate_graphs.php:1116 ../aggregate_graphs.php:1435 #: ../graph_view.php:619 ../graphs.php:1058 ../lib/api_automation.php:561 #: ../user_admin.php:1006 ../user_group_admin.php:821 msgid "Graph Title" msgstr "Graftitel" #: ../aggregate_graphs.php:1117 ../aggregate_graphs.php:1436 #: ../automation_graph_rules.php:856 ../automation_tree_rules.php:843 #: ../data_queries.php:1153 ../data_sources.php:1406 ../data_templates.php:910 #: ../graph_templates.php:762 ../graphs.php:1788 ../host.php:1500 #: ../host_templates.php:815 ../lib/api_automation.php:273 ../pollers.php:612 #: ../sites.php:482 ../tree.php:1559 ../user_admin.php:1006 #: ../user_admin.php:1101 ../user_admin.php:1242 ../user_admin.php:1384 #: ../user_admin.php:1521 ../user_group_admin.php:675 #: ../user_group_admin.php:821 ../user_group_admin.php:966 #: ../user_group_admin.php:1109 ../user_group_admin.php:1243 msgid "ID" msgstr "" #: ../aggregate_graphs.php:1118 msgid "Included in Aggregate" msgstr "" #: ../aggregate_graphs.php:1119 ../aggregate_graphs.php:1438 #: ../graph_templates.php:765 ../graphs.php:1790 msgid "Size" msgstr "Storlek" #: ../aggregate_graphs.php:1129 ../cdef.php:869 ../color.php:722 #: ../color.php:724 ../color_templates.php:566 ../data_input.php:741 #: ../data_queries.php:1173 ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 ../data_sources.php:1450 #: ../data_sources.php:1451 ../data_templates.php:930 ../gprint_presets.php:411 #: ../graph_templates.php:783 ../host_templates.php:834 #: ../include/global_settings.php:398 ../include/global_settings.php:1254 #: ../install/index.php:527 ../install/index.php:548 ../tree.php:1593 #: ../tree.php:1594 ../user_admin.php:2285 ../user_domains.php:731 #: ../user_group_admin.php:1897 ../vdef.php:864 msgid "No" msgstr "Nej" #: ../aggregate_graphs.php:1129 ../cdef.php:869 ../color.php:722 #: ../color.php:724 ../color_templates.php:566 ../data_input.php:741 #: ../data_queries.php:1173 ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 ../data_sources.php:1450 #: ../data_sources.php:1451 ../data_templates.php:930 ../gprint_presets.php:411 #: ../graph_templates.php:783 ../host_templates.php:834 #: ../include/global_settings.php:398 ../include/global_settings.php:1254 #: ../install/index.php:526 ../install/index.php:527 ../install/index.php:547 #: ../install/index.php:548 ../tree.php:1593 ../tree.php:1594 #: ../user_admin.php:2283 ../user_domains.php:729 ../user_domains.php:731 #: ../user_group_admin.php:1895 ../vdef.php:864 msgid "Yes" msgstr "Ja" #: ../aggregate_graphs.php:1135 ../graphs.php:1810 #: ../lib/api_automation.php:588 msgid "No Graphs Found" msgstr "Inga grafer funna" #: ../aggregate_graphs.php:1317 ../aggregate_graphs.php:1426 #: ../lib/functions.php:2550 #, fuzzy msgid "Aggregate Graphs" msgstr "Uppdatera grafer" #: ../aggregate_graphs.php:1332 ../data_sources.php:1206 ../graph_view.php:524 #: ../graphs.php:1653 ../host.php:1347 ../lib/api_automation.php:434 #: ../lib/html_graph.php:159 ../lib/html_tree.php:611 ../rrdcleaner.php:351 #: ../user_admin.php:2537 ../user_admin.php:2734 ../user_group_admin.php:2139 #: ../user_group_admin.php:2249 ../utilities.php:1555 #, fuzzy msgid "Template" msgstr "Mallnamn" #: ../aggregate_graphs.php:1336 ../automation_devices.php:458 #: ../automation_devices.php:488 ../automation_devices.php:503 #: ../automation_devices.php:518 ../automation_graph_rules.php:711 #: ../automation_graph_rules.php:733 ../data_sources.php:1210 #: ../graphs.php:1657 ../graphs_items.php:308 ../graphs_items.php:329 #: ../host.php:1316 ../host.php:1334 ../host.php:1351 ../host.php:1385 #: ../lib/api_automation.php:143 ../lib/api_automation.php:161 #: ../lib/api_automation.php:421 ../lib/api_automation.php:438 #: ../lib/api_automation.php:998 ../lib/api_automation.php:1016 #: ../lib/html.php:1633 ../lib/html_reports.php:1388 ../managers.php:522 #: ../managers.php:734 ../user_admin.php:2541 ../user_admin.php:2738 #: ../user_group_admin.php:2143 ../user_group_admin.php:2253 #: ../utilities.php:654 ../utilities.php:1293 ../utilities.php:1559 #: ../utilities.php:1604 ../utilities.php:2267 ../utilities.php:2520 #: ../utilities.php:2533 msgid "Any" msgstr "Vilken som helst" #: ../aggregate_graphs.php:1337 ../aggregate_graphs.php:1450 #: ../automation_graph_rules.php:866 ../automation_graph_rules.php:867 #: ../automation_networks.php:421 ../automation_networks.php:633 #: ../automation_tree_rules.php:855 ../data_sources.php:824 #: ../data_sources.php:1211 ../data_sources.php:1436 ../data_templates.php:932 #: ../graph_view.php:782 ../graphs.php:1326 ../graphs.php:1658 #: ../graphs_items.php:309 ../graphs_items.php:330 ../host.php:1013 #: ../host.php:1317 ../host.php:1352 ../include/global_arrays.php:330 #: ../include/global_arrays.php:383 ../include/global_arrays.php:459 #: ../include/global_arrays.php:571 ../include/global_arrays.php:594 #: ../include/global_arrays.php:1318 ../include/global_form.php:389 #: ../include/global_form.php:712 ../include/global_form.php:721 #: ../include/global_form.php:732 ../include/global_form.php:775 #: ../include/global_form.php:782 ../include/global_form.php:808 #: ../include/global_form.php:837 ../include/global_form.php:845 #: ../include/global_form.php:1032 ../include/global_form.php:1041 #: ../include/global_form.php:2097 ../include/global_form.php:2139 #: ../include/global_settings.php:445 ../include/global_settings.php:453 #: ../include/global_settings.php:900 ../include/global_settings.php:1324 #: ../lib/api_automation.php:144 ../lib/api_automation.php:422 #: ../lib/api_automation.php:439 ../lib/api_automation.php:576 #: ../lib/api_automation.php:999 ../lib/html.php:1634 ../lib/html_form.php:315 #: ../lib/html_graph.php:396 ../lib/html_reports.php:280 #: ../lib/html_reports.php:328 ../lib/html_reports.php:340 #: ../lib/html_reports.php:349 ../lib/html_reports.php:359 #: ../lib/html_tree.php:843 ../settings.php:197 ../settings.php:214 #: ../settings.php:237 ../user_admin.php:2542 ../user_admin.php:2739 #: ../user_group_admin.php:2144 ../user_group_admin.php:2254 #: ../utilities.php:1560 msgid "None" msgstr "Ingen" #: ../aggregate_graphs.php:1435 msgid "The title for the Aggregate Graphs" msgstr "" #: ../aggregate_graphs.php:1436 msgid "The internal database identifier for this object" msgstr "" #: ../aggregate_graphs.php:1437 ../graphs.php:1062 #, fuzzy msgid "Aggregate Template" msgstr "Grafmall" #: ../aggregate_graphs.php:1437 msgid "The Aggregate Template that this Aggregate Graphs is based upon" msgstr "" #: ../aggregate_graphs.php:1456 #, fuzzy msgid "No Aggregate Graphs Found" msgstr "Inga grafer funna" #: ../aggregate_items.php:346 msgid "Override Values for Graph Item" msgstr "" #: ../aggregate_items.php:357 ../lib/api_aggregate.php:1392 msgid "Override this Value" msgstr "" #: ../aggregate_templates.php:307 msgid "Click 'Continue' to Delete the following Aggregate Graph Template(s)." msgstr "" #: ../aggregate_templates.php:312 #, fuzzy msgid "Delete Color Template(s)" msgstr "Exportera mallar" #: ../aggregate_templates.php:315 msgid "You must select at least one Aggregate Graph Template." msgstr "" #: ../aggregate_templates.php:351 #, php-format msgid "Aggregate Template [edit: %s]" msgstr "" #: ../aggregate_templates.php:353 msgid "Aggregate Template [new]" msgstr "" #: ../aggregate_templates.php:531 ../aggregate_templates.php:631 #: ../lib/functions.php:2532 #, fuzzy msgid "Aggregate Templates" msgstr "Grafmallar" #: ../aggregate_templates.php:544 ../automation_templates.php:418 #: ../automation_templates.php:503 ../color_templates.php:550 #: ../include/global_arrays.php:695 ../include/global_arrays.php:753 #: ../install/index.php:898 ../user_admin.php:2839 ../user_group_admin.php:2354 #, fuzzy msgid "Templates" msgstr "Grafmallar" #: ../aggregate_templates.php:571 ../cdef.php:746 ../color.php:559 #: ../color_templates.php:469 ../data_sources.php:1278 #: ../gprint_presets.php:286 ../graph_templates.php:652 ../vdef.php:683 #, fuzzy msgid "Has Graphs" msgstr "Grafer" #: ../aggregate_templates.php:640 ../color_templates.php:547 msgid "Template Title" msgstr "Mallens titel" #: ../aggregate_templates.php:641 msgid "" "Aggregate Templates that are in use can not be Deleted. In use is defined " "as being referenced by an Aggregate." msgstr "" #: ../aggregate_templates.php:641 ../cdef.php:852 ../color.php:699 #: ../color_templates.php:548 ../data_input.php:723 ../data_queries.php:1154 #: ../data_source_profiles.php:849 ../data_sources.php:1408 #: ../data_templates.php:911 ../gprint_presets.php:392 #: ../graph_templates.php:763 ../host_templates.php:816 ../vdef.php:846 #, fuzzy msgid "Deletable" msgstr "Ta bort" #: ../aggregate_templates.php:642 ../cdef.php:853 ../color.php:700 #: ../data_queries.php:912 ../data_queries.php:1155 ../gprint_presets.php:393 #: ../graph_templates.php:764 ../vdef.php:847 #, fuzzy msgid "Graphs Using" msgstr "Grafer" #: ../aggregate_templates.php:643 ../graph_view.php:619 #: ../include/global_arrays.php:655 ../include/global_arrays.php:989 #: ../include/global_form.php:1323 ../include/global_form.php:1551 #: ../lib/html_reports.php:345 ../tree.php:1286 msgid "Graph Template" msgstr "Grafmall" #: ../aggregate_templates.php:665 #, fuzzy msgid "No Aggregate Templates Found" msgstr "Inga grafer funna" #: ../auth_changepassword.php:93 msgid "You cannot use a previously entered password!" msgstr "" #: ../auth_changepassword.php:110 ../auth_changepassword.php:120 msgid "Your current password is not correct. Please try again." msgstr "" #: ../auth_changepassword.php:115 ../auth_changepassword.php:125 msgid "" "Your new password cannot be the same as the old password. Please try again." msgstr "" #: ../auth_changepassword.php:131 #, fuzzy msgid "Your new passwords do not match, please retype." msgstr "Dina lösenord matchar inte, prova igen:" #: ../auth_changepassword.php:224 #, fuzzy msgid "Forced password change" msgstr "*** Forcerar ändring av lösenord ***" #: ../auth_changepassword.php:228 msgid "Password requirements include:" msgstr "" #: ../auth_changepassword.php:232 #, php-format msgid "Must be at least %d characters in length" msgstr "" #: ../auth_changepassword.php:236 msgid "Must include mixed case" msgstr "" #: ../auth_changepassword.php:240 msgid "Must include at least 1 number" msgstr "" #: ../auth_changepassword.php:244 msgid "Must include at least 1 special character" msgstr "" #: ../auth_changepassword.php:248 #, php-format msgid "Cannot be reused for %d password changes" msgstr "" #: ../auth_changepassword.php:258 ../auth_changepassword.php:284 #: ../include/global_form.php:1468 ../lib/functions.php:1826 #, fuzzy msgid "Change Password" msgstr "Lösenord:" #: ../auth_changepassword.php:290 #, fuzzy msgid "Please enter your current password and your new
    Cacti password." msgstr "Skriv in ett nytt lösenord för cacti:" #: ../auth_changepassword.php:295 #, fuzzy msgid "Current password" msgstr "Nuvarande" #: ../auth_changepassword.php:299 #, fuzzy msgid "New password" msgstr "Lösenord:" #: ../auth_changepassword.php:303 msgid "Confirm new password" msgstr "" #: ../auth_changepassword.php:307 ../lib/html_form.php:1113 #: ../lib/html_form.php:1122 ../lib/html_graph.php:197 ../lib/html_tree.php:649 msgid "Save" msgstr "Spara" #: ../auth_changepassword.php:316 ../auth_login.php:649 #, php-format msgid "Version %1$s | %2$s" msgstr "" #: ../auth_login.php:50 msgid "" "Web Basic Authentication configured, but no username was passed from the web " "server. Please make sure you have authentication enabled on the web server." msgstr "" #: ../auth_login.php:97 #, php-format msgid "" "%s authenticated by Web Server, but both Template and Guest Users are not " "defined in Cacti." msgstr "" #: ../auth_login.php:116 ../auth_login.php:405 #, fuzzy, php-format msgid "LDAP Search Error: %s" msgstr "LDAP sökfel:" #: ../auth_login.php:142 ../auth_login.php:445 #, fuzzy, php-format msgid "LDAP Error: %s" msgstr "LDAP fel:" #: ../auth_login.php:219 ../auth_login.php:437 #, php-format msgid "Template user %s does not exist." msgstr "" #: ../auth_login.php:234 #, php-format msgid "Guest user %s does not exist." msgstr "" #: ../auth_login.php:269 msgid "Access Denied, user account disabled." msgstr "Åtkomst nekad, användarkonto avstängt." #: ../auth_login.php:355 msgid "Access Denied, please contact you Cacti Administrator." msgstr "Åtkomst nekad, kontakta din Cacti administratör." #: ../auth_login.php:519 #, fuzzy msgid "Login to Cacti" msgstr "Återgå till Cacti" #: ../auth_login.php:552 #, fuzzy msgid "User Login" msgstr "Logga in" #: ../auth_login.php:564 #, fuzzy msgid "Enter your Username and Password below" msgstr "Skriv in ditt Cacti användarnamn och lösenord nedan:" #: ../auth_login.php:570 ../auth_login.php:573 #: ../include/global_settings.php:1187 ../lib/functions.php:3801 #, fuzzy msgid "Username" msgstr "Användarnamn:" #: ../auth_login.php:578 ../include/global_form.php:1435 #: ../lib/functions.php:3802 #, fuzzy msgid "Password" msgstr "Lösenord:" #: ../auth_login.php:590 ../include/global_settings.php:1574 #: ../lib/auth.php:287 ../lib/auth.php:299 ../lib/auth.php:310 msgid "Local" msgstr "" #: ../auth_login.php:594 ../include/global_arrays.php:582 ../lib/auth.php:311 msgid "LDAP" msgstr "" #: ../auth_login.php:605 ../user_admin.php:2266 ../user_group_admin.php:675 msgid "Realm" msgstr "" #: ../auth_login.php:621 msgid "Keep me signed in" msgstr "" #: ../auth_login.php:627 msgid "Login" msgstr "Logga in" #: ../auth_login.php:640 msgid "Invalid User Name/Password Please Retype" msgstr "" #: ../auth_login.php:643 msgid "User Account Disabled" msgstr "Användare spärrad" #: ../auth_profile.php:150 #, fuzzy msgid "User Account Details" msgstr "Användare spärrad" #: ../auth_profile.php:161 ../include/global_arrays.php:565 #: ../include/global_settings.php:1910 ../lib/html.php:1519 #: ../lib/html.php:1541 msgid "Tree View" msgstr "Trädvy" #: ../auth_profile.php:165 ../include/global_arrays.php:566 #: ../lib/html.php:1526 ../lib/html.php:1550 msgid "List View" msgstr "Listvy" #: ../auth_profile.php:169 ../include/global_arrays.php:567 #: ../lib/html.php:1533 msgid "Preview View" msgstr "Förhandsgrandskning" #: ../auth_profile.php:182 ../include/global_form.php:1411 #: ../user_admin.php:2263 #, fuzzy msgid "User Name" msgstr "Användarnamn:" #: ../auth_profile.php:183 ../include/global_form.php:1412 msgid "The login name for this user." msgstr "" #: ../auth_profile.php:190 ../include/global_form.php:1419 #: ../user_admin.php:2264 ../user_group_admin.php:675 ../utilities.php:764 #, fuzzy msgid "Full Name" msgstr "Namn" #: ../auth_profile.php:191 ../include/global_form.php:1420 msgid "" "A more descriptive name for this user, that can include spaces or special " "characters." msgstr "" #: ../auth_profile.php:198 ../include/global_form.php:1427 msgid "Email Address" msgstr "" #: ../auth_profile.php:199 msgid "An Email Address you be reached at." msgstr "" #: ../auth_profile.php:206 ../auth_profile.php:208 msgid "Clear Private Data" msgstr "" #: ../auth_profile.php:207 msgid "Clear Private Data including Column sizing." msgstr "" #: ../auth_profile.php:217 ../auth_profile.php:219 #, fuzzy msgid "Logout Everywhere" msgstr "Logga ut användare" #: ../auth_profile.php:218 msgid "Clear all your Login Session Tokens." msgstr "" #: ../auth_profile.php:239 ../user_admin.php:1928 ../user_group_admin.php:1649 #, fuzzy msgid "User Settings" msgstr "Inställningar för Cacti" #: ../auth_profile.php:296 msgid "Private Data Cleared" msgstr "" #: ../auth_profile.php:296 msgid "Your Private Data has been cleared." msgstr "" #: ../auth_profile.php:316 msgid "All your login sessions have been cleared." msgstr "" #: ../auth_profile.php:316 msgid "User Sessions Cleared" msgstr "" #: ../automation_devices.php:31 #, fuzzy msgid "Add Device" msgstr "Enheter" #: ../automation_devices.php:39 ../automation_devices.php:271 #: ../automation_devices.php:389 ../automation_devices.php:399 #: ../automation_devices.php:622 ../automation_devices.php:623 ../host.php:1390 #: ../lib/api_automation.php:166 ../lib/api_automation.php:1021 #: ../lib/html_utility.php:811 msgid "Down" msgstr "Nere" #: ../automation_devices.php:40 ../automation_devices.php:271 #: ../automation_devices.php:391 ../automation_devices.php:401 #: ../automation_devices.php:622 ../automation_devices.php:623 ../host.php:1389 #: ../lib/api_automation.php:165 ../lib/api_automation.php:1020 #: ../lib/html_utility.php:817 msgid "Up" msgstr "Uppe" #: ../automation_devices.php:90 msgid "Added manually through device automation interface." msgstr "" #: ../automation_devices.php:106 #, fuzzy msgid "Added to Cacti" msgstr "Återgå till Cacti" #: ../automation_devices.php:106 ../automation_devices.php:108 #: ../data_sources.php:822 ../graph_view.php:619 ../graphs.php:1331 #: ../graphs_items.php:304 ../include/global_arrays.php:651 #: ../include/global_arrays.php:696 ../include/global_arrays.php:1434 #: ../lib/api_automation.php:417 ../lib/functions.php:3796 ../lib/html.php:1629 #: ../lib/html.php:1659 ../lib/html_reports.php:335 ../lib/html_tree.php:349 #: ../lib/html_tree.php:377 ../utilities.php:1409 #, fuzzy msgid "Device" msgstr "Enheter" #: ../automation_devices.php:108 #, fuzzy msgid "Not Added to Cacti" msgstr "Återgå till Cacti" #: ../automation_devices.php:177 msgid "Click 'Continue' to add the following Discovered device(s)." msgstr "" #: ../automation_devices.php:183 ../pollers.php:602 msgid "Pollers" msgstr "Insamlare" #: ../automation_devices.php:187 #, fuzzy msgid "Select Template" msgstr "Exportera mall" #: ../automation_devices.php:193 ../automation_templates.php:307 #: ../automation_templates.php:513 #, fuzzy msgid "Availability Method" msgstr "Åtkomstbarhet" #: ../automation_devices.php:199 #, fuzzy msgid "Add Device(s)" msgstr "Enheter" #: ../automation_devices.php:202 msgid "You must select at least one Device." msgstr "" #: ../automation_devices.php:239 ../automation_devices.php:529 ../host.php:1303 #: ../host.php:1396 ../host.php:1489 ../include/global_arrays.php:683 #: ../include/global_arrays.php:735 ../lib/api_automation.php:172 #: ../lib/api_automation.php:466 ../lib/functions.php:2136 ../pollers.php:616 #: ../sites.php:483 ../tree.php:1567 ../user_admin.php:1234 #: ../user_admin.php:2752 ../user_group_admin.php:958 #: ../user_group_admin.php:2267 ../utilities.php:263 msgid "Devices" msgstr "Enheter" #: ../automation_devices.php:248 #, fuzzy msgid "Device Name" msgstr "Enheter" #: ../automation_devices.php:249 msgid "IP" msgstr "" #: ../automation_devices.php:250 #, fuzzy msgid "SNMP Name" msgstr "Namn" #: ../automation_devices.php:251 ../include/global_settings.php:1570 #, fuzzy msgid "Location" msgstr "Funktion" #: ../automation_devices.php:252 msgid "Contact" msgstr "" #: ../automation_devices.php:253 ../include/global_form.php:970 #: ../include/global_form.php:1006 ../include/global_form.php:1287 #: ../include/global_form.php:1630 ../install/index.php:899 #: ../lib/api_automation.php:269 ../lib/api_automation.php:1137 #: ../managers.php:222 ../tree.php:647 ../user_admin.php:1101 #: ../user_admin.php:1242 ../user_group_admin.php:966 #: ../user_group_admin.php:1883 msgid "Description" msgstr "Beskrivning" #: ../automation_devices.php:254 ../automation_devices.php:499 msgid "OS" msgstr "" #: ../automation_devices.php:255 ../host.php:1505 #: ../include/global_arrays.php:331 msgid "Uptime" msgstr "" #: ../automation_devices.php:256 ../automation_devices.php:514 #: ../utilities.php:1605 msgid "SNMP" msgstr "" #: ../automation_devices.php:257 ../automation_devices.php:484 #: ../automation_graph_rules.php:729 ../automation_networks.php:964 #: ../automation_tree_rules.php:721 ../data_sources.php:1231 #: ../data_templates.php:915 ../host.php:686 ../host.php:778 ../host.php:1381 #: ../host.php:1503 ../lib/api_automation.php:157 ../lib/api_automation.php:271 #: ../lib/api_automation.php:560 ../lib/api_automation.php:1012 #: ../lib/api_automation.php:1140 ../lib/html_reports.php:1384 #: ../managers.php:224 ../plugins.php:282 ../plugins.php:377 ../pollers.php:614 #: ../user_admin.php:1242 ../user_group_admin.php:966 msgid "Status" msgstr "" #: ../automation_devices.php:258 msgid "Last Check" msgstr "" #: ../automation_devices.php:285 ../automation_devices.php:614 msgid "Not Detected" msgstr "" #: ../automation_devices.php:303 ../host.php:1547 #, fuzzy msgid "No Devices Found" msgstr "Inga grafer funna" #: ../automation_devices.php:439 msgid "Discovery Filters" msgstr "" #: ../automation_devices.php:454 msgid "Network" msgstr "" #: ../automation_devices.php:471 msgid "Reset fields to defaults" msgstr "" #: ../automation_devices.php:474 ../color.php:571 ../lib/html_form.php:1128 msgid "Export" msgstr "" #: ../automation_devices.php:474 msgid "Export to a file" msgstr "" #: ../automation_devices.php:477 ../lib/clog_webapi.php:120 #: ../lib/clog_webapi.php:346 ../managers.php:749 msgid "Purge" msgstr "" #: ../automation_devices.php:477 msgid "Purge Discovered Devices" msgstr "" #: ../automation_graph_rules.php:29 ../automation_snmp.php:30 #: ../automation_tree_rules.php:29 ../cdef.php:30 ../color_templates.php:29 #: ../data_templates.php:34 ../graph_templates.php:34 ../graphs.php:63 #: ../host_templates.php:31 ../include/global_arrays.php:1231 ../vdef.php:30 msgid "Duplicate" msgstr "Duplicera" #: ../automation_graph_rules.php:30 ../automation_networks.php:33 #: ../automation_tree_rules.php:30 ../data_sources.php:38 ../host.php:39 #: ../include/global_arrays.php:1232 ../include/global_settings.php:1145 #: ../links.php:29 ../managers.php:29 ../managers.php:35 ../plugins.php:29 #: ../pollers.php:31 ../user_admin.php:30 ../user_domains.php:31 #: ../user_domains.php:402 ../user_group_admin.php:32 #, fuzzy msgid "Enable" msgstr "Aktiverad" #: ../automation_graph_rules.php:31 ../automation_networks.php:32 #: ../automation_tree_rules.php:31 ../data_sources.php:39 ../host.php:40 #: ../include/global_arrays.php:1233 ../links.php:30 ../managers.php:30 #: ../managers.php:34 ../plugins.php:30 ../pollers.php:30 ../user_admin.php:31 #: ../user_domains.php:30 ../user_group_admin.php:33 msgid "Disable" msgstr "" #: ../automation_graph_rules.php:251 msgid "Press 'Continue' to delete the following Graph Rules." msgstr "" #: ../automation_graph_rules.php:258 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Graph Rules." msgstr "" #: ../automation_graph_rules.php:260 ../automation_tree_rules.php:262 #: ../graphs.php:851 ../graphs.php:862 #, fuzzy msgid "Title Format" msgstr "Format för utdata" #: ../automation_graph_rules.php:260 ../automation_tree_rules.php:262 msgid "rule_name" msgstr "" #: ../automation_graph_rules.php:266 ../automation_tree_rules.php:268 msgid "Click 'Continue' to enable the following Rule(s)." msgstr "" #: ../automation_graph_rules.php:268 ../automation_tree_rules.php:270 msgid "Make sure, that those rules have successfully been tested!" msgstr "" #: ../automation_graph_rules.php:274 ../automation_tree_rules.php:276 msgid "Click 'Continue' to disable the following Rule(s)." msgstr "" #: ../automation_graph_rules.php:281 ../automation_tree_rules.php:283 msgid "You must select at least one Rule." msgstr "" #: ../automation_graph_rules.php:284 ../automation_tree_rules.php:286 msgid "Apply requested action" msgstr "" #: ../automation_graph_rules.php:414 ../automation_tree_rules.php:471 msgid "Are You Sure?" msgstr "Är du säker?" #: ../automation_graph_rules.php:414 #, fuzzy, php-format msgid "Are you sure you want to delete the Rule '%s'?" msgstr "Är du säker på att du vill ta bort fältet?" #: ../automation_graph_rules.php:497 #, php-format msgid "Rule Selection [edit: %s]" msgstr "" #: ../automation_graph_rules.php:503 msgid "Rule Selection [new]" msgstr "" #: ../automation_graph_rules.php:513 ../automation_graph_rules.php:528 #: ../automation_graph_rules.php:544 ../automation_tree_rules.php:379 #: ../automation_tree_rules.php:529 msgid "Don't Show" msgstr "" #: ../automation_graph_rules.php:513 msgid "Rule Details." msgstr "" #: ../automation_graph_rules.php:528 msgid "Matching Devices." msgstr "" #: ../automation_graph_rules.php:544 msgid "Matching Objects." msgstr "" #: ../automation_graph_rules.php:580 msgid "Device Selection Criteria" msgstr "" #: ../automation_graph_rules.php:586 msgid "Graph Creation Criteria" msgstr "" #: ../automation_graph_rules.php:692 ../automation_graph_rules.php:739 #: ../automation_graph_rules.php:846 ../include/global_arrays.php:706 #: ../include/global_form.php:1571 ../lib/functions.php:2586 #, fuzzy msgid "Graph Rules" msgstr "Graftitel" #: ../automation_graph_rules.php:707 ../automation_graph_rules.php:857 #: ../include/global_arrays.php:992 ../include/global_form.php:1561 #: ../include/global_form.php:2176 msgid "Data Query" msgstr "Dataförfrågning" #: ../automation_graph_rules.php:734 ../automation_graph_rules.php:859 #: ../automation_networks.php:496 ../automation_tree_rules.php:848 #: ../automation_tree_rules.php:866 ../data_sources.php:1236 ../host.php:1386 #: ../include/global_arrays.php:614 ../include/global_form.php:1443 #: ../include/global_settings.php:339 ../lib/api_automation.php:162 #: ../lib/api_automation.php:1017 ../lib/html_reports.php:1389 #: ../lib/html_reports.php:1482 ../lib/html_reports.php:1493 #: ../lib/html_reports.php:1529 ../links.php:381 ../managers.php:249 #: ../managers.php:628 ../user_admin.php:1101 ../user_admin.php:1113 #: ../user_admin.php:2265 ../user_domains.php:341 ../user_domains.php:718 #: ../user_group_admin.php:87 ../user_group_admin.php:675 #: ../user_group_admin.php:690 ../user_group_admin.php:1887 #: ../utilities.php:2142 msgid "Enabled" msgstr "Aktiverad" #: ../automation_graph_rules.php:735 ../automation_networks.php:979 #: ../automation_tree_rules.php:866 ../data_sources.php:1237 #: ../data_templates.php:934 ../host.php:1387 ../include/global_arrays.php:613 #: ../include/global_arrays.php:1159 ../include/global_arrays.php:1442 #: ../include/global_settings.php:339 ../include/global_settings.php:1021 #: ../include/global_settings.php:1035 ../include/global_settings.php:1047 #: ../include/global_settings.php:1072 ../include/global_settings.php:1086 #: ../include/global_settings.php:1145 ../include/global_settings.php:1764 #: ../lib/api_automation.php:163 ../lib/api_automation.php:1018 #: ../lib/html_reports.php:1390 ../lib/html_reports.php:1529 #: ../lib/html_utility.php:807 ../managers.php:249 ../managers.php:628 #: ../pollers.php:40 ../user_admin.php:1113 ../user_domains.php:402 #: ../user_group_admin.php:690 ../utilities.php:2142 #, fuzzy msgid "Disabled" msgstr "Aktiverad" #: ../automation_graph_rules.php:855 ../automation_tree_rules.php:842 #, fuzzy msgid "Rule Name" msgstr "Mallnamn" #: ../automation_graph_rules.php:855 msgid "The name of this rule." msgstr "" #: ../automation_graph_rules.php:856 msgid "" "The internal database ID for this rule. Useful in performing debugging and " "automation." msgstr "" #: ../automation_graph_rules.php:858 ../include/global_form.php:1803 #: ../include/global_form.php:1886 ../include/global_form.php:1988 #: ../include/global_form.php:2187 #, fuzzy msgid "Graph Type" msgstr "Graftitel" #: ../automation_graph_rules.php:881 #, fuzzy msgid "No Graph Rules Found" msgstr "Inga grafer funna" #: ../automation_networks.php:34 msgid "Discover Now" msgstr "" #: ../automation_networks.php:35 msgid "Cancel Discovery" msgstr "" #: ../automation_networks.php:185 #, php-format msgid "ERROR: You must specificy the day of the week. Disabling Network %s!." msgstr "" #: ../automation_networks.php:191 #, php-format msgid "" "ERROR: You must specificy both the Months and Days of Month. Disabling " "Network %s!." msgstr "" #: ../automation_networks.php:197 #, php-format msgid "" "ERROR: You must specificy the Months, Weeks of Months, and Days of Week. " "Disabling Network %s!." msgstr "" #: ../automation_networks.php:215 #, php-format msgid "ERROR: Network '%s' is Invalid." msgstr "" #: ../automation_networks.php:312 msgid "Click 'Continue' to delete the following Network(s)." msgstr "" #: ../automation_networks.php:319 msgid "Click 'Continue' to enable the following Network(s)." msgstr "" #: ../automation_networks.php:326 msgid "Click 'Continue' to disable the following Network(s)." msgstr "" #: ../automation_networks.php:333 msgid "Click 'Continue' to discover the following Network(s)." msgstr "" #: ../automation_networks.php:340 msgid "Click 'Continue' to cancel on going Network Discovery(s)." msgstr "" #: ../automation_networks.php:347 msgid "You must select at least one Network." msgstr "" #: ../automation_networks.php:378 ../automation_networks.php:952 #: ../tree.php:1087 msgid "Manual" msgstr "" #: ../automation_networks.php:379 ../automation_networks.php:953 #: ../include/global_arrays.php:500 msgid "Daily" msgstr "" #: ../automation_networks.php:380 ../automation_networks.php:954 #, fuzzy msgid "Weekly" msgstr "1 vecka" #: ../automation_networks.php:381 ../automation_networks.php:955 #, fuzzy msgid "Monthly" msgstr "1 månad" #: ../automation_networks.php:382 ../automation_networks.php:956 msgid "Monthly on Day" msgstr "" #: ../automation_networks.php:386 #, php-format msgid "Network Discovery Range [edit: %s]" msgstr "" #: ../automation_networks.php:388 msgid "Network Discovery Range [new]" msgstr "" #: ../automation_networks.php:395 ../include/global_form.php:1855 #: ../include/global_form.php:1955 ../include/global_settings.php:51 #: ../lib/html_reports.php:30 #, fuzzy msgid "General Settings" msgstr "Inställningar för Cacti" #: ../automation_networks.php:400 ../automation_snmp.php:645 #: ../data_input.php:468 ../data_input.php:502 ../data_queries.php:594 #: ../data_queries.php:690 ../data_queries.php:910 #: ../data_source_profiles.php:486 ../graph_templates.php:423 #: ../include/global_form.php:35 ../include/global_form.php:104 #: ../include/global_form.php:154 ../include/global_form.php:174 #: ../include/global_form.php:215 ../include/global_form.php:339 #: ../include/global_form.php:366 ../include/global_form.php:473 #: ../include/global_form.php:930 ../include/global_form.php:962 #: ../include/global_form.php:1259 ../include/global_form.php:1279 #: ../include/global_form.php:1349 ../include/global_form.php:1377 #: ../include/global_form.php:2070 ../include/global_form.php:2168 #: ../include/global_form.php:2215 ../install/index.php:466 #: ../install/index.php:543 ../install/index.php:899 ../lib/vdef.php:74 #: ../managers.php:607 ../pollers.php:52 ../sites.php:40 ../user_admin.php:1101 #: ../user_domains.php:317 ../utilities.php:466 ../utilities.php:2338 msgid "Name" msgstr "Namn" #: ../automation_networks.php:401 msgid "Give this Network a meaningful name." msgstr "" #: ../automation_networks.php:404 msgid "New Network Discovery Range" msgstr "" #: ../automation_networks.php:408 ../automation_networks.php:961 #: ../host.php:1330 msgid "Data Collector" msgstr "" #: ../automation_networks.php:409 ../include/global_form.php:1022 msgid "" "Choose the Cacti Data Collector/Poller to be used to gather data from this " "Device." msgstr "" #: ../automation_networks.php:416 #, fuzzy msgid "Associated Site" msgstr "Dataförfrågningar" #: ../automation_networks.php:417 msgid "" "Choose the Cacti Site that you wish to associate discovered Devices with." msgstr "" #: ../automation_networks.php:425 msgid "Subnet Range" msgstr "" #: ../automation_networks.php:426 msgid "" "Enter valid Network Ranges separated by commas. You may use an IP address, " "a Network range such as 192.168.1.0/24 or 192.168.1.0/255.255.255.0, or " "using wildcards such as 192.168.*.*" msgstr "" #: ../automation_networks.php:435 msgid "Total IP Addresses" msgstr "" #: ../automation_networks.php:436 msgid "Total addressable IP Addresses in this Network Range." msgstr "" #: ../automation_networks.php:441 msgid "Alternate DNS Servers" msgstr "" #: ../automation_networks.php:442 msgid "" "A space delimited list of alternate DNS Servers to use for DNS resolution. " "If blank, the poller OS will be used to resolve DNS names." msgstr "" #: ../automation_networks.php:445 msgid "Enter IPs or FQDNs of DNS Servers" msgstr "" #: ../automation_networks.php:449 msgid "Schedule Type" msgstr "" #: ../automation_networks.php:450 msgid "Define the collection frequency." msgstr "" #: ../automation_networks.php:457 msgid "Discovery Threads" msgstr "" #: ../automation_networks.php:458 msgid "Define the number of threads to use for discovering this Network Range." msgstr "" #: ../automation_networks.php:461 #, php-format msgid "%d Thread" msgstr "" #: ../automation_networks.php:462 ../automation_networks.php:463 #: ../automation_networks.php:464 ../automation_networks.php:465 #: ../automation_networks.php:466 ../automation_networks.php:467 #: ../automation_networks.php:468 ../automation_networks.php:469 #: ../automation_networks.php:470 ../automation_networks.php:471 #: ../automation_networks.php:472 ../include/global_arrays.php:548 #: ../include/global_arrays.php:549 ../include/global_arrays.php:550 #: ../include/global_arrays.php:551 ../include/global_arrays.php:552 #, php-format msgid "%d Threads" msgstr "" #: ../automation_networks.php:478 msgid "Run Limit" msgstr "" #: ../automation_networks.php:479 msgid "After the selected Run Limit, the discovery process will be terminated." msgstr "" #: ../automation_networks.php:482 #, fuzzy, php-format msgid "%d Minute" msgstr "Varje minut" #: ../automation_networks.php:483 ../automation_networks.php:484 #: ../automation_networks.php:485 ../automation_networks.php:486 #: ../data_sources.php:1071 ../include/global_arrays.php:490 #: ../include/global_arrays.php:491 ../include/global_arrays.php:492 #: ../include/global_arrays.php:493 ../include/global_arrays.php:523 #: ../include/global_arrays.php:524 ../include/global_arrays.php:525 #: ../include/global_arrays.php:526 ../include/global_arrays.php:527 #: ../include/global_arrays.php:528 ../include/global_arrays.php:846 #: ../include/global_arrays.php:847 ../include/global_arrays.php:1166 #: ../include/global_arrays.php:1170 ../include/global_arrays.php:1178 #: ../include/global_arrays.php:1179 ../include/global_arrays.php:1201 #: ../include/global_arrays.php:1202 ../include/global_arrays.php:1203 #: ../include/global_arrays.php:1204 ../include/global_arrays.php:1205 #: ../include/global_arrays.php:1216 ../include/global_settings.php:1088 #: ../include/global_settings.php:1089 ../include/global_settings.php:1090 #: ../include/global_settings.php:1091 ../include/global_settings.php:1092 #: ../include/global_settings.php:1837 #, fuzzy, php-format msgid "%d Minutes" msgstr "Varje minut" #: ../automation_networks.php:487 ../include/global_arrays.php:1071 #, php-format msgid "%d Hour" msgstr "" #: ../automation_networks.php:488 ../automation_networks.php:489 #: ../automation_networks.php:490 ../data_source_profiles.php:656 #: ../include/global_arrays.php:495 ../include/global_arrays.php:496 #: ../include/global_arrays.php:497 ../include/global_arrays.php:498 #: ../include/global_arrays.php:499 ../include/global_arrays.php:530 #: ../include/global_arrays.php:531 ../include/global_arrays.php:532 #: ../include/global_arrays.php:533 ../include/global_arrays.php:1072 #: ../include/global_arrays.php:1073 ../include/global_arrays.php:1074 #: ../include/global_arrays.php:1075 ../include/global_arrays.php:1118 #: ../include/global_arrays.php:1119 ../include/global_arrays.php:1120 #: ../include/global_arrays.php:1121 ../include/global_arrays.php:1122 #: ../include/global_arrays.php:1139 ../include/global_arrays.php:1140 #: ../include/global_arrays.php:1141 ../include/global_arrays.php:1142 #: ../include/global_arrays.php:1143 ../include/global_settings.php:1094 #: ../include/global_settings.php:1095 ../include/global_settings.php:1096 #: ../include/global_settings.php:1097 #, php-format msgid "%d Hours" msgstr "" #: ../automation_networks.php:497 msgid "Enable this Network Range Enabled." msgstr "" #: ../automation_networks.php:502 msgid "Enable NetBIOS" msgstr "" #: ../automation_networks.php:503 msgid "Use NetBIOS to attempt to result the hostname of up hosts." msgstr "" #: ../automation_networks.php:509 msgid "Automatically Add to Cacti" msgstr "" #: ../automation_networks.php:510 msgid "" "For any newly discovered Devices that are reachable using SNMP and who match " "a Device Rule, add them to Cacti." msgstr "" #: ../automation_networks.php:515 #, fuzzy msgid "Rerun Data Queries" msgstr "Dataförfrågningar" #: ../automation_networks.php:516 msgid "" "If a device, previously added to Cacti, is found, rerun its data queries." msgstr "" #: ../automation_networks.php:521 #, fuzzy msgid "Discovery Timing" msgstr "Påväg upp" #: ../automation_networks.php:526 msgid "Starting Date/Time" msgstr "" #: ../automation_networks.php:527 msgid "What time will this Network discover item start?" msgstr "" #: ../automation_networks.php:535 msgid "Rerun Every" msgstr "" #: ../automation_networks.php:536 msgid "Rerun discovery for this Network Range every X." msgstr "" #: ../automation_networks.php:551 msgid "Days of Week" msgstr "" #: ../automation_networks.php:552 ../automation_networks.php:610 msgid "What Day(s) of the week will this Network Range be discovered." msgstr "" #: ../automation_networks.php:554 ../automation_networks.php:612 #: ../include/global_arrays.php:1492 msgid "Sunday" msgstr "" #: ../automation_networks.php:555 ../automation_networks.php:613 #: ../include/global_arrays.php:1493 msgid "Monday" msgstr "" #: ../automation_networks.php:556 ../automation_networks.php:614 #: ../include/global_arrays.php:1494 msgid "Tuesday" msgstr "" #: ../automation_networks.php:557 ../automation_networks.php:615 #: ../include/global_arrays.php:1495 msgid "Wednesday" msgstr "" #: ../automation_networks.php:558 ../automation_networks.php:616 #: ../include/global_arrays.php:1496 msgid "Thursday" msgstr "" #: ../automation_networks.php:559 ../automation_networks.php:617 #: ../include/global_arrays.php:1497 msgid "Friday" msgstr "" #: ../automation_networks.php:560 ../automation_networks.php:618 #: ../include/global_arrays.php:1498 msgid "Saturday" msgstr "" #: ../automation_networks.php:567 msgid "Months of Year" msgstr "" #: ../automation_networks.php:568 msgid "What Months(s) of the Year will this Network Range be discovered." msgstr "" #: ../automation_networks.php:570 ../include/global_arrays.php:1462 msgid "January" msgstr "" #: ../automation_networks.php:571 ../include/global_arrays.php:1463 msgid "February" msgstr "" #: ../automation_networks.php:572 ../include/global_arrays.php:1464 #, fuzzy msgid "March" msgstr "Sök:" #: ../automation_networks.php:573 ../include/global_arrays.php:1465 msgid "April" msgstr "" #: ../automation_networks.php:574 ../include/global_arrays.php:1466 msgid "May" msgstr "" #: ../automation_networks.php:575 ../include/global_arrays.php:1467 msgid "June" msgstr "" #: ../automation_networks.php:576 ../include/global_arrays.php:1468 msgid "July" msgstr "" #: ../automation_networks.php:577 ../include/global_arrays.php:1469 msgid "August" msgstr "" #: ../automation_networks.php:578 ../include/global_arrays.php:1470 msgid "September" msgstr "" #: ../automation_networks.php:579 ../include/global_arrays.php:1471 msgid "October" msgstr "" #: ../automation_networks.php:580 ../include/global_arrays.php:1472 msgid "November" msgstr "" #: ../automation_networks.php:581 ../include/global_arrays.php:1473 msgid "December" msgstr "" #: ../automation_networks.php:588 #, fuzzy msgid "Days of Month" msgstr "1 månad" #: ../automation_networks.php:589 msgid "What Day(s) of the Month will this Network Range be discovered." msgstr "" #: ../automation_networks.php:590 ../automation_networks.php:602 msgid "Last" msgstr "" #: ../automation_networks.php:596 msgid "Week(s) of Month" msgstr "" #: ../automation_networks.php:597 msgid "What Week(s) of the Month will this Network Range be discovered." msgstr "" #: ../automation_networks.php:599 msgid "First" msgstr "" #: ../automation_networks.php:600 msgid "Second" msgstr "" #: ../automation_networks.php:601 msgid "Third" msgstr "" #: ../automation_networks.php:609 msgid "Day(s) of Week" msgstr "" #: ../automation_networks.php:625 #, fuzzy msgid "Reachability Settings" msgstr "Inställningar för Cacti" #: ../automation_networks.php:630 ../include/global_arrays.php:708 #: ../include/global_form.php:1062 ../include/global_form.php:1662 msgid "SNMP Options" msgstr "" #: ../automation_networks.php:631 msgid "Select the SNMP Options to use for discovery of this Network Range." msgstr "" #: ../automation_networks.php:637 ../include/global_form.php:1187 msgid "Ping Method" msgstr "" #: ../automation_networks.php:638 msgid "The type of ping packet to send." msgstr "" #: ../automation_networks.php:646 ../include/global_form.php:1197 #: ../include/global_settings.php:561 msgid "Ping Port" msgstr "" #: ../automation_networks.php:648 ../include/global_form.php:1199 msgid "TCP or UDP port to attempt connection." msgstr "" #: ../automation_networks.php:654 ../include/global_form.php:1205 #: ../include/global_settings.php:569 msgid "Ping Timeout Value" msgstr "" #: ../automation_networks.php:655 ../include/global_form.php:1206 #: ../include/global_settings.php:570 msgid "" "The timeout value to use for host ICMP and UDP pinging. This host SNMP " "timeout value applies for SNMP pings." msgstr "" #: ../automation_networks.php:663 ../include/global_form.php:1214 #: ../include/global_settings.php:577 msgid "Ping Retry Count" msgstr "" #: ../automation_networks.php:664 ../include/global_form.php:1215 msgid "" "After an initial failure, the number of ping retries Cacti will attempt " "before failing." msgstr "" #: ../automation_networks.php:704 msgid "Select the days(s) of the week" msgstr "" #: ../automation_networks.php:714 msgid "Select the month(s) of the year" msgstr "" #: ../automation_networks.php:724 msgid "Select the day(s) of the month" msgstr "" #: ../automation_networks.php:734 msgid "Select the week(s) of the month" msgstr "" #: ../automation_networks.php:744 msgid "Select the day(s) of the week" msgstr "" #: ../automation_networks.php:817 ../automation_networks.php:834 msgid "every X Days" msgstr "" #: ../automation_networks.php:817 ../automation_networks.php:834 msgid "every X Weeks" msgstr "" #: ../automation_networks.php:818 msgid "every X Days." msgstr "" #: ../automation_networks.php:818 ../automation_networks.php:835 msgid "every X." msgstr "" #: ../automation_networks.php:835 msgid "every X Weeks." msgstr "" #: ../automation_networks.php:933 msgid "Network Filters" msgstr "" #: ../automation_networks.php:943 ../automation_networks.php:1067 #: ../include/global_arrays.php:703 msgid "Networks" msgstr "" #: ../automation_networks.php:960 #, fuzzy msgid "Network Name" msgstr "Användarnamn:" #: ../automation_networks.php:962 msgid "Schedule" msgstr "" #: ../automation_networks.php:963 msgid "Total IPs" msgstr "" #: ../automation_networks.php:964 msgid "The Current Status of this Networks Discovery" msgstr "" #: ../automation_networks.php:965 msgid "Pending/Running/Done" msgstr "" #: ../automation_networks.php:965 msgid "Progress" msgstr "" #: ../automation_networks.php:966 #, fuzzy msgid "Up/SNMP Hosts" msgstr "Inga värdar" #: ../automation_networks.php:967 msgid "Threads" msgstr "" #: ../automation_networks.php:968 msgid "Last Runtime" msgstr "" #: ../automation_networks.php:969 msgid "Next Start" msgstr "" #: ../automation_networks.php:970 msgid "Last Started" msgstr "" #: ../automation_networks.php:995 ../pollers.php:37 ../utilities.php:1952 msgid "Running" msgstr "" #: ../automation_networks.php:1015 ../pollers.php:38 ../utilities.php:1951 msgid "Idle" msgstr "" #: ../automation_networks.php:1030 ../automation_snmp.php:705 #: ../automation_snmp.php:706 ../automation_snmp.php:707 #: ../automation_snmp.php:708 ../automation_snmp.php:709 #: ../automation_snmp.php:710 ../lib/html.php:937 ../user_admin.php:2278 #: ../utilities.php:406 ../utilities.php:792 ../utilities.php:2015 #: ../utilities.php:2115 ../utilities.php:2118 ../utilities.php:2121 #: ../utilities.php:2127 ../utilities.php:2358 msgid "N/A" msgstr "" #: ../automation_networks.php:1036 #, fuzzy msgid "No Networks Found" msgstr "Inga grafer funna" #: ../automation_networks.php:1085 msgid "Clear Filtered" msgstr "" #: ../automation_snmp.php:225 msgid "You must select at least one SNMP Option." msgstr "" #: ../automation_snmp.php:233 msgid "Click 'Continue' to delete the following SNMP Option(s)." msgstr "" #: ../automation_snmp.php:240 msgid "" "Click 'Continue' to duplicate the following SNMP Options. You can optionally " "change the title format for the new SNMP Options." msgstr "" #: ../automation_snmp.php:242 msgid "Name Format" msgstr "" #: ../automation_snmp.php:242 #, fuzzy msgid "name" msgstr "Värdnamn" #: ../automation_snmp.php:348 msgid "Click 'Continue' to delete the following SNMP Option Item." msgstr "" #: ../automation_snmp.php:349 msgid "SNMP Option:" msgstr "" #: ../automation_snmp.php:350 #, php-format msgid "SNMP Version: %s" msgstr "" #: ../automation_snmp.php:351 #, php-format msgid "SNMP Community/Username: %s" msgstr "" #: ../automation_snmp.php:357 msgid "Remove SNMP Item" msgstr "" #: ../automation_snmp.php:416 #, php-format msgid "SNMP Options [edit: %s]" msgstr "" #: ../automation_snmp.php:418 msgid "SNMP Options [new]" msgstr "" #: ../automation_snmp.php:434 ../include/global_form.php:1067 #: ../include/global_form.php:1667 #, fuzzy msgid "SNMP Version" msgstr "SNMP version" #: ../automation_snmp.php:435 msgid "Choose the SNMP version for this host." msgstr "" #: ../automation_snmp.php:443 msgid "SNMP Community String" msgstr "" #: ../automation_snmp.php:444 msgid "Fill in the SNMP read community for this device." msgstr "" #: ../automation_snmp.php:452 ../include/global_form.php:1147 #: ../include/global_form.php:1737 msgid "SNMP Port" msgstr "" #: ../automation_snmp.php:453 msgid "The UDP/TCP Port to poll the SNMP agent on." msgstr "" #: ../automation_snmp.php:461 ../include/global_form.php:1156 #: ../include/global_form.php:1746 msgid "SNMP Timeout" msgstr "" #: ../automation_snmp.php:462 ../include/global_form.php:1157 #: ../include/global_form.php:1747 msgid "" "The maximum number of milliseconds Cacti will wait for an SNMP response " "(does not work with php-snmp support)." msgstr "" #: ../automation_snmp.php:470 msgid "SNMP Retries" msgstr "" #: ../automation_snmp.php:471 msgid "" "The maximum number of attempts to reach a device via an SNMP readstring " "prior to giving up." msgstr "" #: ../automation_snmp.php:479 msgid "Maximum OID's Per Get Request" msgstr "" #: ../automation_snmp.php:480 ../include/global_form.php:1166 msgid "" "Specified the number of OIDs that can be obtained in a single SNMP Get " "request." msgstr "" #: ../automation_snmp.php:488 ../include/global_form.php:1086 #: ../include/global_form.php:1686 msgid "SNMP Username (v3)" msgstr "" #: ../automation_snmp.php:489 ../include/global_form.php:1087 #: ../include/global_form.php:1687 msgid "SNMP v3 username for this device." msgstr "" #: ../automation_snmp.php:497 ../include/global_form.php:1095 msgid "SNMP Password (v3)" msgstr "" #: ../automation_snmp.php:498 msgid "SNMP v3 password for this device." msgstr "" #: ../automation_snmp.php:506 ../include/global_form.php:1104 #: ../include/global_form.php:1704 msgid "SNMP Auth Protocol (v3)" msgstr "" #: ../automation_snmp.php:507 ../include/global_settings.php:499 msgid "Choose the SNMPv3 Authorization Protocol." msgstr "" #: ../automation_snmp.php:514 ../include/global_form.php:1112 msgid "SNMP Privacy Passphrase (v3)" msgstr "" #: ../automation_snmp.php:515 ../include/global_form.php:1713 #: ../include/global_settings.php:506 msgid "Choose the SNMPv3 Privacy Passphrase." msgstr "" #: ../automation_snmp.php:523 ../include/global_form.php:1121 #: ../include/global_form.php:1721 msgid "SNMP Privacy Protocol (v3)" msgstr "" #: ../automation_snmp.php:524 ../include/global_settings.php:513 msgid "Choose the SNMPv3 Privacy Protocol." msgstr "" #: ../automation_snmp.php:531 msgid "SNMP Context" msgstr "" #: ../automation_snmp.php:532 msgid "Enter the SNMP Context to use for this device." msgstr "" #: ../automation_snmp.php:544 ../include/global_form.php:921 #: ../include/global_form.php:2117 ../include/global_form.php:2159 #: ../include/global_form.php:2313 ../lib/api_automation.php:1207 #: ../lib/api_automation.php:1269 ../lib/api_automation.php:1332 #: ../lib/html_reports.php:399 ../lib/html_reports.php:1210 msgid "Sequence" msgstr "" #: ../automation_snmp.php:545 ../lib/html_reports.php:400 msgid "Sequence of Item." msgstr "" #: ../automation_snmp.php:632 #, fuzzy, php-format msgid "SNMP Option Set [edit: %s]" msgstr "[redigera: " #: ../automation_snmp.php:634 msgid "SNMP Option Set [new]" msgstr "" #: ../automation_snmp.php:646 msgid "Fill in the name of this SNMP Option Set." msgstr "" #: ../automation_snmp.php:671 ../automation_snmp.php:820 msgid "Automation SNMP Options" msgstr "" #: ../automation_snmp.php:674 ../cdef.php:584 ../lib/api_automation.php:1206 #: ../lib/api_automation.php:1268 ../lib/api_automation.php:1331 #: ../lib/html_reports.php:1209 ../vdef.php:564 msgid "Item" msgstr "" #: ../automation_snmp.php:675 ../include/auth.php:154 #: ../include/global_settings.php:469 ../permission_denied.php:67 #: ../plugins.php:379 msgid "Version" msgstr "" #: ../automation_snmp.php:676 ../include/global_settings.php:476 msgid "Community" msgstr "" #: ../automation_snmp.php:677 ../lib/functions.php:3797 msgid "Port" msgstr "" #: ../automation_snmp.php:678 ../include/global_settings.php:518 msgid "Timeout" msgstr "" #: ../automation_snmp.php:679 ../include/global_settings.php:534 msgid "Retries" msgstr "" #: ../automation_snmp.php:680 msgid "Max OIDS" msgstr "" #: ../automation_snmp.php:681 #, fuzzy msgid "Auth Username" msgstr "Användarnamn:" #: ../automation_snmp.php:682 #, fuzzy msgid "Auth Password" msgstr "Lösenord:" #: ../automation_snmp.php:683 msgid "Auth Protocol" msgstr "" #: ../automation_snmp.php:684 msgid "Priv Passphrase" msgstr "" #: ../automation_snmp.php:685 msgid "Priv Protocol" msgstr "" #: ../automation_snmp.php:686 msgid "Context" msgstr "" #: ../automation_snmp.php:687 ../data_queries.php:914 ../utilities.php:1600 #, fuzzy msgid "Action" msgstr "Funktion" #: ../automation_snmp.php:700 msgid "none" msgstr "" #: ../automation_snmp.php:715 ../automation_templates.php:545 ../cdef.php:607 #: ../color_templates.php:110 ../data_queries.php:624 ../data_queries.php:722 #: ../lib/api_automation.php:1233 ../lib/api_automation.php:1296 #: ../lib/api_automation.php:1360 ../lib/html.php:959 #: ../lib/html_reports.php:1284 ../lib/html_reports.php:1286 ../tree.php:1578 #: ../tree.php:1582 ../tree.php:1585 ../tree.php:1586 ../vdef.php:588 #, fuzzy msgid "Move Down" msgstr "Nere" #: ../automation_snmp.php:721 ../automation_templates.php:551 ../cdef.php:613 #: ../color_templates.php:116 ../data_queries.php:629 ../data_queries.php:727 #: ../lib/api_automation.php:1239 ../lib/api_automation.php:1302 #: ../lib/api_automation.php:1366 ../lib/html.php:964 #: ../lib/html_reports.php:1286 ../lib/html_reports.php:1288 ../vdef.php:594 msgid "Move Up" msgstr "" #: ../automation_snmp.php:735 msgid "No SNMP Items" msgstr "" #: ../automation_snmp.php:770 msgid "Delete SNMP Option Item" msgstr "" #: ../automation_snmp.php:834 msgid "SNMP Rules" msgstr "" #: ../automation_snmp.php:923 msgid "SNMP Option Sets" msgstr "" #: ../automation_snmp.php:932 msgid "SNMP Option Set" msgstr "" #: ../automation_snmp.php:933 msgid "Networks Using" msgstr "" #: ../automation_snmp.php:934 msgid "SNMP Entries" msgstr "" #: ../automation_snmp.php:935 msgid "V1 Entries" msgstr "" #: ../automation_snmp.php:936 msgid "V2 Entries" msgstr "" #: ../automation_snmp.php:937 msgid "V3 Entries" msgstr "" #: ../automation_snmp.php:957 msgid "No SNMP Option Sets Found" msgstr "" #: ../automation_templates.php:190 msgid "Click 'Continue' to delete the folling Automation Template(s)." msgstr "" #: ../automation_templates.php:195 msgid "Delete Automation Template(s)" msgstr "" #: ../automation_templates.php:198 msgid "You must select at least one Automation Template." msgstr "" #: ../automation_templates.php:300 ../include/global_arrays.php:993 #: ../include/global_form.php:1038 ../include/global_form.php:1546 #: ../lib/html_reports.php:325 #, fuzzy msgid "Device Template" msgstr "Grafmall" #: ../automation_templates.php:301 msgid "Select a Device Template that Devices will be matched to." msgstr "" #: ../automation_templates.php:308 msgid "Choose the Availability Method to use for Discovered Devices." msgstr "" #: ../automation_templates.php:315 ../automation_templates.php:514 #, fuzzy msgid "System Description Match" msgstr "Beskrivning" #: ../automation_templates.php:316 msgid "" "This is a unique string that will be matched to a devices sysDescr string to " "pair it to this Discovery Template. Any Perl regular expression can be used " "in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:322 ../automation_templates.php:515 msgid "System Name Match" msgstr "" #: ../automation_templates.php:323 msgid "" "This is a unique string that will be matched to a devices sysName string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:329 msgid "System OID Match" msgstr "" #: ../automation_templates.php:330 msgid "" "This is a unique string that will be matched to a devices sysOid string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:350 #, php-format msgid "Automation Templates [edit: %s]" msgstr "" #: ../automation_templates.php:352 msgid "Automation Templates [new]" msgstr "" #: ../automation_templates.php:403 msgid "Device Automation Templates" msgstr "" #: ../automation_templates.php:512 ../data_sources.php:1410 ../graphs.php:1789 #: ../user_admin.php:1384 ../user_group_admin.php:1109 msgid "Template Name" msgstr "Mallnamn" #: ../automation_templates.php:516 msgid "System ObjectId Match" msgstr "" #: ../automation_templates.php:520 ../data_queries.php:595 #: ../data_queries.php:691 ../links.php:382 ../tree.php:1563 msgid "Order" msgstr "" #: ../automation_templates.php:530 #, fuzzy msgid "Unknown Template" msgstr "Exportera mall" #: ../automation_templates.php:565 msgid "No Automation Device Templates Found" msgstr "" #: ../automation_tree_rules.php:253 msgid "Click 'Continue' to delete the following Rule(s)." msgstr "" #: ../automation_tree_rules.php:260 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Rules." msgstr "" #: ../automation_tree_rules.php:379 #, fuzzy msgid "Created Trees" msgstr "Grafträd" #: ../automation_tree_rules.php:471 #, fuzzy, php-format msgid "Are you sure you want to DELETE the Rule '%s'?" msgstr "Är du säker på att du vill ta bort fältet?" #: ../automation_tree_rules.php:529 msgid "Eligible Objects" msgstr "" #: ../automation_tree_rules.php:542 #, php-format msgid "Tree Rule Selection [edit: %s]" msgstr "" #: ../automation_tree_rules.php:544 msgid "Tree Rules Selection [new]" msgstr "" #: ../automation_tree_rules.php:706 ../automation_tree_rules.php:731 #: ../automation_tree_rules.php:833 ../include/global_arrays.php:707 #: ../include/global_form.php:1576 ../lib/functions.php:2610 #, fuzzy msgid "Tree Rules" msgstr "Trädvy" #: ../automation_tree_rules.php:844 msgid "Hook into Tree" msgstr "" #: ../automation_tree_rules.php:845 msgid "At Subtree" msgstr "" #: ../automation_tree_rules.php:846 msgid "This Type" msgstr "" #: ../automation_tree_rules.php:847 msgid "Using Grouping" msgstr "" #: ../automation_tree_rules.php:856 msgid "ROOT" msgstr "" #: ../automation_tree_rules.php:872 #, fuzzy msgid "No Tree Rules Found" msgstr "Inga grafer funna" #: ../cdef.php:277 msgid "Click 'Continue' to delete the following CDEF." msgid_plural "Click 'Continue' to delete all following CDEFs." msgstr[0] "" msgstr[1] "" #: ../cdef.php:282 #, fuzzy msgid "Delete CDEF" msgid_plural "Delete CDEFs" msgstr[0] "Ta bort" msgstr[1] "Ta bort" #: ../cdef.php:286 msgid "" "Click 'Continue' to duplicate the following CDEF. You can optionally change " "the title format for the new CDEF." msgid_plural "" "Click 'Continue' to duplicate the following CDEFs. You can optionally change " "the title format for the new CDEFs." msgstr[0] "" msgstr[1] "" #: ../cdef.php:292 #, fuzzy msgid "Duplicate CDEF" msgid_plural "Duplicate CDEFs" msgstr[0] "Duplicera" msgstr[1] "Duplicera" #: ../cdef.php:295 msgid "You must select at least one CDEF." msgstr "" #: ../cdef.php:337 msgid "Click 'Continue' to delete the following CDEF Item." msgstr "" #: ../cdef.php:338 #, php-format msgid "CDEF Name: '%s'" msgstr "" #: ../cdef.php:345 msgid "Remove CDEF Item" msgstr "" #: ../cdef.php:424 #, fuzzy msgid "CDEF Preview" msgstr "Förhandsgrandskning" #: ../cdef.php:430 #, php-format msgid "CDEF Items [edit: %s]" msgstr "" #: ../cdef.php:442 msgid "CDEF Item Type" msgstr "" #: ../cdef.php:443 msgid "Choose what type of CDEF item this is." msgstr "" #: ../cdef.php:464 msgid "CDEF Item Value" msgstr "" #: ../cdef.php:465 msgid "Enter a value for this CDEF item." msgstr "" #: ../cdef.php:558 #, fuzzy, php-format msgid "CDEF [edit: %s]" msgstr "[redigera: " #: ../cdef.php:560 #, fuzzy msgid "CDEF [new]" msgstr "[nytt]" #: ../cdef.php:581 ../lib/functions.php:1986 msgid "CDEF Items" msgstr "" #: ../cdef.php:585 ../vdef.php:565 #, fuzzy msgid "Item Value" msgstr "Värde" #: ../cdef.php:598 ../vdef.php:579 #, php-format msgid "Item #%d" msgstr "" #: ../cdef.php:657 msgid "Delete CDEF Item" msgstr "" #: ../cdef.php:713 ../cdef.php:728 ../cdef.php:842 #: ../include/global_arrays.php:712 ../lib/functions.php:1968 msgid "CDEFs" msgstr "" #: ../cdef.php:851 #, fuzzy msgid "CDEF Name" msgstr "Namn" #: ../cdef.php:851 ../data_source_profiles.php:847 msgid "The name of this CDEF." msgstr "" #: ../cdef.php:852 msgid "" "CDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: ../cdef.php:853 msgid "The number of Graphs using this CDEF." msgstr "" #: ../cdef.php:854 ../color.php:701 ../data_input.php:725 #: ../data_queries.php:1156 ../data_source_profiles.php:854 #: ../gprint_presets.php:394 ../vdef.php:848 #, fuzzy msgid "Templates Using" msgstr "Mallens titel" #: ../cdef.php:854 msgid "The number of Graphs Templates using this CDEF." msgstr "" #: ../cdef.php:876 msgid "No CDEFs" msgstr "" #: ../clog.php:33 ../clog_user.php:32 msgid "FATAL: YOU DO NO HAVE ACCESS TO THIS AREA OF CACTI" msgstr "" #: ../color.php:170 msgid "Unnamed Color" msgstr "" #: ../color.php:187 msgid "Click 'Continue' to delete the following Color" msgid_plural "Click 'Continue' to delete the following Colors" msgstr[0] "" msgstr[1] "" #: ../color.php:192 #, fuzzy msgid "Delete Color" msgid_plural "Delete Colors" msgstr[0] "Ta bort" msgstr[1] "Ta bort" #: ../color.php:195 msgid "You must select at least one Color." msgstr "" #: ../color.php:351 msgid "Cacti has imported the following items:" msgstr "Cacti har importerat följande:" #: ../color.php:365 ../color.php:568 #, fuzzy msgid "Import Colors" msgstr "Importera resultat" #: ../color.php:368 #, fuzzy msgid "Import Colors from Local File" msgstr "Importera mall från lokal fil" #: ../color.php:369 msgid "" "Please specify the location of the CSV file containing your Color " "information." msgstr "" #: ../color.php:373 ../lib/html_form.php:463 #, fuzzy msgid "Select a File" msgstr "Markera alla" #: ../color.php:380 msgid "Overwrite Existing Data?" msgstr "" #: ../color.php:381 msgid "" "Should the import process be allowed to overwrite existing data? Please " "note, this does not mean delete old rows, only update duplicate rows." msgstr "" #: ../color.php:384 msgid "Allow Existing Rows to be Updated?" msgstr "" #: ../color.php:389 msgid "Required File Format Notes" msgstr "" #: ../color.php:392 msgid "The file must contain a header row with the following column headings." msgstr "" #: ../color.php:394 msgid "name - The Color Name" msgstr "" #: ../color.php:395 msgid "hex - The Hex Value" msgstr "" #: ../color.php:416 #, php-format msgid "Colors [edit: %s]" msgstr "" #: ../color.php:418 msgid "Colors [new]" msgstr "" #: ../color.php:520 ../color.php:535 ../include/global_arrays.php:714 #: ../lib/functions.php:2034 msgid "Colors" msgstr "" #: ../color.php:553 msgid "Named Colors" msgstr "" #: ../color.php:568 ../lib/html_form.php:1126 #, fuzzy msgid "Import" msgstr "Importera resultat" #: ../color.php:571 #, fuzzy msgid "Export Colors" msgstr "Exportera mallar" #: ../color.php:695 ../color_templates.php:74 msgid "Hex" msgstr "" #: ../color.php:695 msgid "The Hex Value for this Color." msgstr "" #: ../color.php:696 #, fuzzy msgid "Color Name" msgstr "Användarnamn:" #: ../color.php:696 msgid "The name of this Color definition." msgstr "" #: ../color.php:697 msgid "Is this color a named color which are read only." msgstr "" #: ../color.php:697 msgid "Named Color" msgstr "" #: ../color.php:698 ../color_templates.php:73 ../include/global_arrays.php:700 #: ../include/global_form.php:812 ../include/global_form.php:2058 msgid "Color" msgstr "" #: ../color.php:698 msgid "The Color as shown on the screen." msgstr "" #: ../color.php:699 msgid "" "Colors in use cannot be Deleted. In use is defined as being referenced " "either by a Graph or a Graph Template." msgstr "" #: ../color.php:700 msgid "The number of Graph using this Color." msgstr "" #: ../color.php:701 msgid "The number of Graph Templates using this Color." msgstr "" #: ../color.php:731 #, fuzzy msgid "No Colors Found" msgstr "Inga grafer funna" #: ../color_templates.php:72 msgid "Color Item" msgstr "" #: ../color_templates.php:93 ../lib/api_aggregate.php:1290 #: ../lib/api_aggregate.php:1293 ../lib/api_aggregate.php:1297 #: ../lib/html.php:896 #, php-format msgid "Item # %d" msgstr "" #: ../color_templates.php:132 ../graph_templates_inputs.php:222 #: ../lib/api_aggregate.php:1349 ../lib/html.php:978 msgid "No Items" msgstr "" #: ../color_templates.php:227 msgid "Click 'Continue' to delete the following Color Template" msgid_plural "Click 'Continue' to delete following Color Templates" msgstr[0] "" msgstr[1] "" #: ../color_templates.php:232 #, fuzzy msgid "Delete Color Template" msgid_plural "Delete Color Templates" msgstr[0] "Exportera mall" msgstr[1] "Exportera mall" #: ../color_templates.php:236 msgid "" "Click 'Continue' to duplicate the following Color Template. You can " "optionally change the title format for the new color template." msgid_plural "" "Click 'Continue' to duplicate following Color Templates. You can optionally " "change the title format for the new color templates." msgstr[0] "" msgstr[1] "" #: ../color_templates.php:238 ../data_source_profiles.php:272 #: ../data_templates.php:364 ../graph_templates.php:323 #: ../host_templates.php:267 ../vdef.php:276 #, fuzzy msgid "Title Format:" msgstr "Format för utdata" #: ../color_templates.php:242 #, fuzzy msgid "Duplicate Color Template" msgid_plural "Duplicate Color Templates" msgstr[0] "Exportera mall" msgstr[1] "Exportera mall" #: ../color_templates.php:245 msgid "You must select at least one Color Template." msgstr "" #: ../color_templates.php:278 msgid "Color Template Items [new]" msgstr "" #: ../color_templates.php:289 #, php-format msgid "Color Template Items [edit: %s]" msgstr "" #: ../color_templates.php:322 msgid "Delete Color Item" msgstr "" #: ../color_templates.php:349 #, php-format msgid "Color Template [edit: %s]" msgstr "" #: ../color_templates.php:351 #, fuzzy msgid "Color Template [new]" msgstr "Exportera mall" #: ../color_templates.php:432 ../color_templates.php:445 #: ../lib/functions.php:2508 #, fuzzy msgid "Color Templates" msgstr "Exportera mallar" #: ../color_templates.php:548 msgid "" "Color Templates that are in use cannot be Deleted. In use is defined as " "being referenced by an Aggregate Template." msgstr "" #: ../color_templates.php:573 #, fuzzy msgid "No Color Templates Found" msgstr "Inga grafer funna" #: ../color_templates_items.php:273 msgid "Click 'Continue' to delete the following Color Template Color." msgstr "" #: ../color_templates_items.php:274 #, fuzzy msgid "Color Name:" msgstr "Användarnamn:" #: ../color_templates_items.php:275 msgid "Color Hex:" msgstr "" #: ../color_templates_items.php:281 msgid "Remove Color Item" msgstr "" #: ../color_templates_items.php:339 #, php-format msgid "Color Template Items [edit Report Item: %s]" msgstr "" #: ../color_templates_items.php:342 #, php-format msgid "Color Template Items [new Report Item: %s]" msgstr "" #: ../data_input.php:212 msgid "Click 'Continue' to delete the following Data Input Method" msgid_plural "Click 'Continue' to delete the following Data Input Method" msgstr[0] "" msgstr[1] "" #: ../data_input.php:218 msgid "Delete Data Input Method" msgid_plural "Delete Data Input Methods" msgstr[0] "" msgstr[1] "" #: ../data_input.php:220 msgid "You must select at least one data input method." msgstr "" #: ../data_input.php:259 msgid "Click 'Continue' to delete the following Data Input Field." msgstr "" #: ../data_input.php:260 #, php-format msgid "Field Name: %s" msgstr "" #: ../data_input.php:261 #, php-format msgid "Friendly Name: %s" msgstr "" #: ../data_input.php:267 ../host_templates.php:335 ../host_templates.php:395 msgid "Remove Data Input Field" msgstr "" #: ../data_input.php:362 #, php-format msgid "Output Fields [edit: %s]" msgstr "" #: ../data_input.php:363 ../include/global_form.php:461 #, fuzzy msgid "Output Field" msgstr "Format för utdata" #: ../data_input.php:365 #, php-format msgid "Input Fields [edit: %s]" msgstr "" #: ../data_input.php:366 #, fuzzy msgid "Input Field" msgstr "Typ" #: ../data_input.php:432 #, php-format msgid "Data Input Methods [edit: %s]" msgstr "" #: ../data_input.php:434 msgid "Data Input Methods [new]" msgstr "" #: ../data_input.php:444 ../include/global_arrays.php:316 msgid "SNMP Get" msgstr "" #: ../data_input.php:447 ../include/global_arrays.php:317 #, fuzzy msgid "SNMP Query" msgstr "Dataförfrågning" #: ../data_input.php:450 ../include/global_arrays.php:319 #, fuzzy msgid "Script Query" msgstr "Dataförfrågning" #: ../data_input.php:453 ../include/global_arrays.php:321 msgid "Script Query - Script Server" msgstr "" #: ../data_input.php:466 #, fuzzy msgid "Input Fields" msgstr "Typ" #: ../data_input.php:469 ../data_input.php:503 msgid "Field Order" msgstr "" #: ../data_input.php:470 ../data_input.php:504 ../include/global_form.php:275 msgid "Friendly Name" msgstr "" #: ../data_input.php:484 ../data_input.php:519 msgid "(Not In Use)" msgstr "" #: ../data_input.php:496 msgid "No Input Fields" msgstr "" #: ../data_input.php:500 #, fuzzy msgid "Output Fields" msgstr "Format för utdata" #: ../data_input.php:505 #, fuzzy msgid "Update RRA" msgstr "Uppdatera grafer" #: ../data_input.php:534 msgid "No Output Fields" msgstr "" #: ../data_input.php:556 ../host_templates.php:600 msgid "Delete Data Input Field" msgstr "" #: ../data_input.php:610 ../include/global_arrays.php:693 #: ../include/global_arrays.php:861 ../lib/functions.php:2172 msgid "Data Input Methods" msgstr "" #: ../data_input.php:625 ../data_input.php:713 #, fuzzy msgid "Input Methods" msgstr "Typ" #: ../data_input.php:722 msgid "Data Input Name" msgstr "" #: ../data_input.php:722 msgid "The name of this Data Input Method." msgstr "" #: ../data_input.php:723 msgid "" "Data Inputs that are in use cannot be Deleted. In use is defined as being " "referenced either by a Data Source or a Data Template." msgstr "" #: ../data_input.php:724 ../data_source_profiles.php:853 #: ../data_templates.php:912 #, fuzzy msgid "Data Sources Using" msgstr "Datakällor" #: ../data_input.php:724 msgid "The number of Data Sources that use this Data Input Method." msgstr "" #: ../data_input.php:725 msgid "The number of Data Templates that use this Data Input Method." msgstr "" #: ../data_input.php:726 ../data_queries.php:1157 #: ../include/global_arrays.php:985 ../include/global_form.php:385 #: ../include/global_form.php:1304 msgid "Data Input Method" msgstr "" #: ../data_input.php:726 msgid "The method used to gather information for this Data Input Method." msgstr "" #: ../data_input.php:749 #, fuzzy msgid "No Data Input Methods Found" msgstr "Inga grafer funna" #: ../data_queries.php:316 msgid "Click 'Continue' to delete the following Data Query." msgid_plural "Click 'Continue' to delete following Data Queries." msgstr[0] "" msgstr[1] "" #: ../data_queries.php:322 #, fuzzy msgid "Delete Data Query" msgid_plural "Delete Data Query" msgstr[0] "Dataförfrågning" msgstr[1] "Dataförfrågning" #: ../data_queries.php:324 msgid "You must select at least one data query." msgstr "" #: ../data_queries.php:419 msgid "Click 'Continue' to delete the following Data Query Graph Association." msgstr "" #: ../data_queries.php:420 #, fuzzy, php-format msgid "Graph Name: %s" msgstr "Grafträd" #: ../data_queries.php:426 ../vdef.php:333 msgid "Remove VDEF Item" msgstr "" #: ../data_queries.php:479 #, php-format msgid "Associated Graph/Data Templates [edit: %s]" msgstr "" #: ../data_queries.php:502 msgid "Associated Data Templates" msgstr "" #: ../data_queries.php:520 #, fuzzy, php-format msgid "Data Template - %s" msgstr "Grafmallar" #: ../data_queries.php:550 ../data_sources.php:881 ../data_templates.php:516 #: ../include/global_arrays.php:698 ../include/global_form.php:797 #: ../lib/api_aggregate.php:1215 ../lib/html.php:856 msgid "Data Source" msgstr "Datakälla" #: ../data_queries.php:585 msgid "Suggested Values - Graph Names" msgstr "" #: ../data_queries.php:596 ../data_queries.php:692 #, fuzzy msgid "Equation" msgstr "Funktion" #: ../data_queries.php:647 ../data_queries.php:746 #, fuzzy msgid "No Suggested Values Found" msgstr "Inga grafer funna" #: ../data_queries.php:656 ../data_queries.php:755 #: ../include/global_form.php:2093 ../include/global_form.php:2135 #: ../lib/api_automation.php:1333 ../utilities.php:1409 #, fuzzy msgid "Field Name" msgstr "Mallnamn" #: ../data_queries.php:662 ../data_queries.php:761 msgid "Suggested Value" msgstr "" #: ../data_queries.php:668 ../data_queries.php:767 ../host.php:762 #: ../host.php:879 ../host_templates.php:515 ../host_templates.php:569 #: ../lib/html.php:37 ../lib/html_filter.php:55 msgid "Add" msgstr "Lägg till" #: ../data_queries.php:668 msgid "Add Graph Title Suggested Name" msgstr "" #: ../data_queries.php:678 msgid "Suggested Values - Data Source Names" msgstr "" #: ../data_queries.php:767 msgid "Add Data Source Name Suggested Name" msgstr "" #: ../data_queries.php:874 #, fuzzy, php-format msgid "Data Queries [edit: %s]" msgstr "Dataförfrågningar" #: ../data_queries.php:876 #, fuzzy msgid "Data Queries [new]" msgstr "Dataförfrågningar" #: ../data_queries.php:896 msgid "Successfully located XML file" msgstr "" #: ../data_queries.php:899 msgid "Could not locate XML file." msgstr "" #: ../data_queries.php:907 ../host.php:681 ../host_templates.php:466 #: ../lib/functions.php:2226 #, fuzzy msgid "Associated Graph Templates" msgstr "Grafmallar" #: ../data_queries.php:911 ../graph_templates.php:761 ../graphs_new.php:597 #: ../host.php:685 ../lib/api_automation.php:563 #, fuzzy msgid "Graph Template Name" msgstr "Grafmall" #: ../data_queries.php:913 msgid "Mapping ID" msgstr "" #: ../data_queries.php:954 msgid "Mapped Graph Templates with Graphs are read only" msgstr "" #: ../data_queries.php:961 #, fuzzy msgid "No Graph Templates Defined." msgstr "Grafmallar" #: ../data_queries.php:985 #, fuzzy msgid "Delete Associated Graph" msgstr "Ladda om associerad fråga" #: ../data_queries.php:1039 ../data_queries.php:1054 ../data_queries.php:1143 #: ../include/global_arrays.php:692 ../include/global_arrays.php:862 #: ../lib/api_automation.php:1027 ../lib/functions.php:2208 msgid "Data Queries" msgstr "Dataförfrågningar" #: ../data_queries.php:1152 ../host.php:776 ../utilities.php:1409 #, fuzzy msgid "Data Query Name" msgstr "Dataförfrågning" #: ../data_queries.php:1152 msgid "The name of this Data Query." msgstr "" #: ../data_queries.php:1153 ../graph_templates.php:762 msgid "" "The internal ID for this Graph Template. Useful when performing automation " "or debugging." msgstr "" #: ../data_queries.php:1154 msgid "" "Data Queries that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: ../data_queries.php:1155 msgid "The number of Graphs using this Data Query." msgstr "" #: ../data_queries.php:1156 msgid "The number of Graphs Templates using this Data Query." msgstr "" #: ../data_queries.php:1157 msgid "" "The Data Input Method used to collect data for Data Sources associated with " "this Data Query." msgstr "" #: ../data_queries.php:1181 #, fuzzy msgid "No Data Queries Found" msgstr "Dataförfrågningar" #: ../data_source_profiles.php:261 msgid "Click 'Continue' to delete the following Data Source Profile" msgid_plural "Click 'Continue' to delete following Data Source Profiles" msgstr[0] "" msgstr[1] "" #: ../data_source_profiles.php:266 #, fuzzy msgid "Delete Data Source Profile" msgid_plural "Delete Data Source Profiles" msgstr[0] "Uppdatera datakällor" msgstr[1] "Uppdatera datakällor" #: ../data_source_profiles.php:270 msgid "" "Click 'Continue' to duplicate the following Data Source Profile. You can " "optionally change the title format for the new Data Source Profile" msgid_plural "" "Click 'Continue' to duplicate following Data Source Profiles. You can " "optionally change the title format for the new Data Source Profiles." msgstr[0] "" msgstr[1] "" #: ../data_source_profiles.php:276 #, fuzzy msgid "Duplicate Data Source Profile" msgid_plural "Duplicate Date Source Profiles" msgstr[0] "Uppdatera datakällor" msgstr[1] "Uppdatera datakällor" #: ../data_source_profiles.php:279 msgid "You must select at least one Data Source Profile." msgstr "" #: ../data_source_profiles.php:318 msgid "Click 'Continue' to delete the following Data Source Profile RRA." msgstr "" #: ../data_source_profiles.php:319 #, php-format msgid "Profile Name: %s" msgstr "" #: ../data_source_profiles.php:325 msgid "Remove Data Source Profile RRA" msgstr "" #: ../data_source_profiles.php:374 ../data_source_profiles.php:384 msgid "Each Insert is New Row" msgstr "" #: ../data_source_profiles.php:393 #, fuzzy, php-format msgid "RRA [edit: %s]" msgstr "[redigera: " #: ../data_source_profiles.php:460 #, php-format msgid "Data Source Profile [edit: %s]" msgstr "" #: ../data_source_profiles.php:462 #, fuzzy msgid "Data Source Profile [new]" msgstr "Datakälla" #: ../data_source_profiles.php:480 msgid "Data Source Profile RRAs (press save to update timespans)" msgstr "" #: ../data_source_profiles.php:482 msgid "Data Source Profile RRAs (Read Only)" msgstr "" #: ../data_source_profiles.php:487 #, fuzzy msgid "Effective Timespan" msgstr "Tidsspann" #: ../data_source_profiles.php:488 msgid "Steps" msgstr "Steg" #: ../data_source_profiles.php:489 ../graphs_new.php:526 #: ../include/global_form.php:121 ../lib/html.php:323 ../lib/html_filter.php:73 #: ../lib/rrd.php:2689 ../pollers.php:523 ../utilities.php:468 #: ../utilities.php:1322 msgid "Rows" msgstr "Rader" #: ../data_source_profiles.php:535 msgid "Select Consolidation Function(s)" msgstr "" #: ../data_source_profiles.php:561 msgid "Delete Data Source Profile Item" msgstr "" #: ../data_source_profiles.php:621 ../include/global_arrays.php:1088 #: ../include/global_settings.php:1027 #, fuzzy, php-format msgid "%d Years" msgstr "1 år" #: ../data_source_profiles.php:621 msgid "1 Year" msgstr "1 år" #: ../data_source_profiles.php:630 ../include/global_arrays.php:1082 #: ../rrdcleaner.php:489 #, fuzzy, php-format msgid "%d Month" msgstr "1 månad" #: ../data_source_profiles.php:630 ../include/global_arrays.php:1083 #: ../include/global_arrays.php:1084 ../include/global_arrays.php:1085 #: ../include/global_arrays.php:1086 ../rrdcleaner.php:490 #: ../rrdcleaner.php:491 ../rrdcleaner.php:492 #, fuzzy, php-format msgid "%d Months" msgstr "1 månad" #: ../data_source_profiles.php:639 ../include/global_arrays.php:1080 #: ../rrdcleaner.php:485 ../rrdcleaner.php:486 #, fuzzy, php-format msgid "%d Week" msgstr "1 vecka" #: ../data_source_profiles.php:639 ../include/global_arrays.php:1081 #: ../rrdcleaner.php:487 ../rrdcleaner.php:488 #, fuzzy, php-format msgid "%d Weeks" msgstr "1 vecka" #: ../data_source_profiles.php:648 ../include/global_arrays.php:1076 #, fuzzy, php-format msgid "%d Day" msgstr "1 dag" #: ../data_source_profiles.php:648 ../include/global_arrays.php:1077 #: ../include/global_arrays.php:1078 ../include/global_arrays.php:1079 #: ../include/global_settings.php:1022 ../include/global_settings.php:1023 #: ../include/global_settings.php:1024 ../include/global_settings.php:1025 #: ../include/global_settings.php:1036 ../include/global_settings.php:1037 #: ../include/global_settings.php:1038 ../include/global_settings.php:1039 #, fuzzy, php-format msgid "%d Days" msgstr "1 dag" #: ../data_source_profiles.php:656 ../include/global_arrays.php:494 #: ../include/global_arrays.php:529 ../include/global_arrays.php:1117 #: ../include/global_arrays.php:1138 ../include/global_arrays.php:1171 #: ../include/global_arrays.php:1180 ../include/global_arrays.php:1206 #: ../include/global_settings.php:1093 msgid "1 Hour" msgstr "" #: ../data_source_profiles.php:710 ../include/global_arrays.php:869 #, fuzzy msgid "Data Source Profiles" msgstr "Datakällor" #: ../data_source_profiles.php:725 ../data_source_profiles.php:838 msgid "Profiles" msgstr "" #: ../data_source_profiles.php:743 ../data_templates.php:794 #, fuzzy msgid "Has Data Sources" msgstr "Datakällor" #: ../data_source_profiles.php:847 #, fuzzy msgid "Data Source Profile Name" msgstr "Datakälla" #: ../data_source_profiles.php:848 msgid "Is this the default Profile for all new Data Templates?" msgstr "" #: ../data_source_profiles.php:849 msgid "" "Profiles that are in use cannot be Deleted. In use is defined as being " "referenced by a Data Source or a Data Template." msgstr "" #: ../data_source_profiles.php:850 msgid "Profiles that are in use by Data Sources become read only for now." msgstr "" #: ../data_source_profiles.php:850 ../include/global_form.php:190 msgid "Read Only" msgstr "" #: ../data_source_profiles.php:851 ../data_sources.php:1407 #: ../include/global_settings.php:855 msgid "Poller Interval" msgstr "" #: ../data_source_profiles.php:851 msgid "The Polling Frequency for the Profile" msgstr "" #: ../data_source_profiles.php:852 ../include/global_form.php:52 #: ../include/global_form.php:453 msgid "Heartbeat" msgstr "" #: ../data_source_profiles.php:852 msgid "" "The Amount of Time, in seconds, without good data before Data is stored as " "Unknown" msgstr "" #: ../data_source_profiles.php:853 msgid "The number of Data Sources using this Profile." msgstr "" #: ../data_source_profiles.php:854 msgid "The number of Data Templates using this Profile." msgstr "" #: ../data_source_profiles.php:886 #, fuzzy msgid "No Data Source Profiles" msgstr "Inga datakällor" #: ../data_sources.php:36 ../data_sources.php:478 ../graphs.php:54 #, fuzzy msgid "Change Device" msgstr "Enheter" #: ../data_sources.php:37 ../graphs.php:55 msgid "Reapply Suggested Names" msgstr "" #: ../data_sources.php:446 msgid "Click 'Continue' to delete the following Data Source" msgid_plural "Click 'Continue' to delete following Data Sources" msgstr[0] "" msgstr[1] "" #: ../data_sources.php:450 msgid "The following graph is using these data sources:" msgid_plural "The following graphs are using these data sources:" msgstr[0] "" msgstr[1] "" #: ../data_sources.php:459 msgid "Leave the Graph untouched." msgid_plural "Leave all Graphs untouched." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:460 msgid "" "Delete all Graph Items that reference this Data Source." msgid_plural "" "Delete all Graph Items that reference these Data Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:461 msgid "Delete all Graphs that reference this Data Source." msgid_plural "" "Delete all Graphs that reference these Data Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:468 #, fuzzy msgid "Delete Data Source" msgid_plural "Delete Data Sources" msgstr[0] "Datakälla" msgstr[1] "Datakälla" #: ../data_sources.php:472 msgid "Choose a new Device for this Data Source and click 'Continue'." msgid_plural "Choose a new Device for these Data Sources and click 'Continue'" msgstr[0] "" msgstr[1] "" #: ../data_sources.php:474 #, fuzzy msgid "New Device:" msgstr "Enheter" #: ../data_sources.php:482 msgid "Click 'Continue' to enable the following Data Source." msgid_plural "Click 'Continue' to enable all following Data Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:487 #, fuzzy msgid "Enable Data Source" msgid_plural "Enable Data Sources" msgstr[0] "Datakälla" msgstr[1] "Datakälla" #: ../data_sources.php:491 msgid "Click 'Continue' to disable the following Data Source." msgid_plural "Click 'Continue' to disable all following Data Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:496 #, fuzzy msgid "Disable Data Source" msgstr "Uppdatera datakällor" #: ../data_sources.php:500 msgid "" "Click 'Continue' to re-apply the suggested name to the following Data Source." msgid_plural "" "Click 'Continue' to re-apply the suggested names to all following Data " "Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:505 msgid "Reapply Suggested Naming to Data Source" msgstr "" #: ../data_sources.php:514 msgid "You must select at least one data source." msgstr "" #: ../data_sources.php:572 ../data_templates.php:631 #, php-format msgid "Custom Data [data input: %s]" msgstr "" #: ../data_sources.php:605 #, php-format msgid "(From Device: %s)" msgstr "" #: ../data_sources.php:608 #, fuzzy msgid "(From Data Template)" msgstr "Grafmall" #: ../data_sources.php:609 msgid "Nothing Entered" msgstr "" #: ../data_sources.php:624 ../data_templates.php:684 msgid "No Input Fields for the Selected Data Input Source" msgstr "" #: ../data_sources.php:700 #, php-format msgid "Data Source %d does not exist." msgstr "" #: ../data_sources.php:705 #, php-format msgid "Data Template Selection [edit: %s]" msgstr "" #: ../data_sources.php:711 msgid "Data Template Selection [new]" msgstr "" #: ../data_sources.php:744 msgid "Turn Off Data Source Debug Mode." msgstr "" #: ../data_sources.php:744 msgid "Turn On Data Source Debug Mode." msgstr "" #: ../data_sources.php:745 msgid "Turn Off Data Source Info Mode." msgstr "" #: ../data_sources.php:745 msgid "Turn On Data Source Info Mode." msgstr "" #: ../data_sources.php:748 #, fuzzy msgid "Edit Data Template." msgstr "Exportera mall" #: ../data_sources.php:751 ../graphs.php:1294 #, fuzzy msgid "Edit Device." msgstr "Enheter" #: ../data_sources.php:814 msgid "Selected Data Template" msgstr "" #: ../data_sources.php:815 #, php-format msgid "" "The name given to this data template. Please note that you may only change " "Graph Templates to a 100% compatible Graph Template, which means that it " "includes identical Data Sources." msgstr "" #: ../data_sources.php:823 msgid "Choose the Device that this Data Source belongs to." msgstr "" #: ../data_sources.php:869 msgid "Supplemental Data Template Data" msgstr "" #: ../data_sources.php:871 #, fuzzy msgid "Data Source Fields" msgstr "Datakällor" #: ../data_sources.php:872 #, fuzzy msgid "Data Source Item Fields" msgstr "Datakällor" #: ../data_sources.php:873 msgid "Custom Data" msgstr "" #: ../data_sources.php:957 #, fuzzy, php-format msgid "Data Source Item %s" msgstr "Datakällor" #: ../data_sources.php:960 msgid "New" msgstr "" #: ../data_sources.php:1019 #, fuzzy msgid "Data Source Debug" msgstr "Datakälla" #: ../data_sources.php:1039 msgid "RRDtool Tune Info" msgstr "" #: ../data_sources.php:1065 msgid "External" msgstr "" #: ../data_sources.php:1067 ../include/global_arrays.php:519 #: ../include/global_arrays.php:520 ../include/global_arrays.php:521 #: ../include/global_arrays.php:841 ../include/global_arrays.php:842 #: ../include/global_arrays.php:843 ../include/global_arrays.php:844 #: ../include/global_arrays.php:1160 ../include/global_arrays.php:1161 #: ../include/global_arrays.php:1162 ../include/global_arrays.php:1163 #: ../include/global_arrays.php:1164 ../include/global_arrays.php:1197 #: ../include/global_arrays.php:1198 ../include/global_arrays.php:1210 #: ../include/global_arrays.php:1211 ../include/global_arrays.php:1212 #: ../include/global_arrays.php:1213 ../include/global_arrays.php:1214 #: ../include/global_settings.php:1837 #, php-format msgid "%d Seconds" msgstr "" #: ../data_sources.php:1069 ../include/global_arrays.php:522 #: ../include/global_arrays.php:845 ../include/global_arrays.php:1165 #: ../include/global_arrays.php:1199 ../include/global_arrays.php:1215 #: ../include/global_settings.php:1087 ../include/global_settings.php:1837 #, fuzzy msgid "1 Minute" msgstr "Varje minut" #: ../data_sources.php:1196 ../graphs_items.php:292 #, fuzzy, php-format msgid "Data Sources [%s]" msgstr "Datakällor" #: ../data_sources.php:1196 #, fuzzy msgid "No Device" msgstr "Enheter" #: ../data_sources.php:1235 ../data_sources.php:1261 ../data_sources.php:1277 #: ../data_templates.php:764 ../graph_view.php:781 ../graphs_new.php:504 #: ../lib/clog_webapi.php:331 ../lib/html_graph.php:395 #: ../lib/html_reports.php:290 ../lib/html_tree.php:842 ../plugins.php:286 #: ../settings.php:196 ../settings.php:213 ../settings.php:236 #: ../utilities.php:636 ../utilities.php:1000 msgid "All" msgstr "" #: ../data_sources.php:1257 ../data_templates.php:760 msgid "Profile" msgstr "" #: ../data_sources.php:1273 ../data_sources.php:1279 msgid "Orphaned" msgstr "" #: ../data_sources.php:1283 ../data_sources.php:1396 ../host.php:1502 #: ../include/global_arrays.php:687 ../lib/api_automation.php:275 #: ../lib/functions.php:2118 ../user_admin.php:1242 ../user_group_admin.php:966 #: ../utilities.php:273 msgid "Data Sources" msgstr "Datakällor" #: ../data_sources.php:1405 ../utilities.php:1698 #, fuzzy msgid "Data Source Name" msgstr "Datakälla" #: ../data_sources.php:1405 msgid "" "The name of this Data Source. Generally programtically generated from the " "Data Template definition." msgstr "" #: ../data_sources.php:1406 msgid "" "The internal database ID for this Data Source. Useful when performing " "automation or debugging." msgstr "" #: ../data_sources.php:1407 msgid "The frequency that data is collected for this Data Source." msgstr "" #: ../data_sources.php:1408 msgid "If this Data Source is no long in use by Graphs, it can be Deleted." msgstr "" #: ../data_sources.php:1409 ../data_templates.php:934 ../plugins.php:38 #: ../plugins.php:287 msgid "Active" msgstr "Aktiv" #: ../data_sources.php:1409 msgid "" "Whether or not data will be collected for this Data Source. Controlled at " "the Data Template level." msgstr "" #: ../data_sources.php:1410 msgid "The Data Template that this Data Source was based upon." msgstr "" #: ../data_sources.php:1457 #, fuzzy msgid "No Data Sources Found" msgstr "Inga datakällor" #: ../data_templates.php:35 msgid "Change Profile" msgstr "" #: ../data_templates.php:353 msgid "" "Click 'Continue' to delete the following Data Template(s). Any data sources " "attached to these templates will become individual Data Source(s) and all " "Templating benefits will be removed." msgstr "" #: ../data_templates.php:358 msgid "Delete Data Template(s)" msgstr "" #: ../data_templates.php:362 msgid "" "Click 'Continue' to duplicate the following Data Template(s). You can " "optionally change the title format for the new Data Template(s)." msgstr "" #: ../data_templates.php:364 #, fuzzy msgid "template_title" msgstr "Mallens titel" #: ../data_templates.php:368 msgid "Duplicate Data Template(s)" msgstr "" #: ../data_templates.php:372 msgid "" "Click 'Continue' to change the default Data Source Profile for the following " "Data Template(s)." msgstr "" #: ../data_templates.php:374 #, fuzzy msgid "New Data Source Profile" msgstr "Inga datakällor" #: ../data_templates.php:380 msgid "" "NOTE: This change only will affect future Data Sources and does not alter " "existing Data Sources." msgstr "" #: ../data_templates.php:384 #, fuzzy msgid "Change Data Source Profile" msgstr "Uppdatera datakällor" #: ../data_templates.php:387 msgid "You must select at least one data template." msgstr "" #: ../data_templates.php:499 #, php-format msgid "Data Templates [edit: %s]" msgstr "" #: ../data_templates.php:501 #, fuzzy msgid "Data Templates [new]" msgstr "Grafmallar" #: ../data_templates.php:527 msgid "This field is always templated." msgstr "" #: ../data_templates.php:531 ../data_templates.php:603 #: ../data_templates.php:671 msgid "Use Per-Data Source Value (Ignore this Value)" msgstr "" #: ../data_templates.php:584 #, fuzzy, php-format msgid "Data Source Item [%s]" msgstr "Datakällor" #: ../data_templates.php:676 msgid "Value will be derived from the device if this field is left empty." msgstr "" #: ../data_templates.php:745 ../data_templates.php:776 #: ../data_templates.php:900 ../include/global_arrays.php:873 #: ../lib/functions.php:2100 #, fuzzy msgid "Data Templates" msgstr "Grafmallar" #: ../data_templates.php:909 #, fuzzy msgid "Data Template Name" msgstr "Mallnamn" #: ../data_templates.php:909 msgid "The name of this Data Template." msgstr "" #: ../data_templates.php:910 msgid "" "The internal database ID for this Data Template. Useful when performing " "automation or debugging." msgstr "" #: ../data_templates.php:911 msgid "" "Data Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Data Source." msgstr "" #: ../data_templates.php:912 msgid "The number of Data Sources using this Data Template." msgstr "" #: ../data_templates.php:913 #, fuzzy msgid "Input Method" msgstr "Typ" #: ../data_templates.php:913 msgid "The method that is used to place Data into the Data Source RRDfile." msgstr "" #: ../data_templates.php:914 msgid "Profile Name" msgstr "" #: ../data_templates.php:914 msgid "The default Data Source Profile for this Data Template." msgstr "" #: ../data_templates.php:915 msgid "" "Data Sources based on Inactive Data Templates will not be updated when the " "poller runs." msgstr "" #: ../data_templates.php:939 #, fuzzy msgid "No Data Templates Found" msgstr "Inga grafer funna" #: ../gprint_presets.php:148 msgid "Click 'Continue' to delete the folling GPRINT Preset(s)." msgstr "" #: ../gprint_presets.php:153 msgid "Delete GPRINT Preset(s)" msgstr "" #: ../gprint_presets.php:156 msgid "You must select at least one GPRINT Preset." msgstr "" #: ../gprint_presets.php:185 #, php-format msgid "GPRINT Presets [edit: %s]" msgstr "" #: ../gprint_presets.php:187 msgid "GPRINT Presets [new]" msgstr "" #: ../gprint_presets.php:253 ../lib/functions.php:1950 msgid "GPRINT Presets" msgstr "" #: ../gprint_presets.php:268 ../gprint_presets.php:381 #: ../include/global_arrays.php:715 msgid "GPRINTs" msgstr "" #: ../gprint_presets.php:390 msgid "GPRINT Preset Name" msgstr "" #: ../gprint_presets.php:390 msgid "The name of this GPRINT Preset." msgstr "" #: ../gprint_presets.php:391 #, fuzzy msgid "Format" msgstr "Format för utdata" #: ../gprint_presets.php:391 msgid "The GPRINT format string." msgstr "" #: ../gprint_presets.php:392 msgid "" "GPRINTs that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: ../gprint_presets.php:393 msgid "The number of Graphs using this GPRINT." msgstr "" #: ../gprint_presets.php:394 msgid "The number of Graphs Templates using this GPRINT." msgstr "" #: ../gprint_presets.php:418 msgid "No GPRINT Presets" msgstr "" #: ../graph.php:94 #, fuzzy msgid "Viewing Graph" msgstr "Se grafer" #: ../graph.php:124 ../lib/html.php:292 msgid "Graph Details, Zooming and Debugging Utilities" msgstr "" #: ../graph.php:125 msgid "CSV Export" msgstr "" #: ../graph.php:126 msgid "Real-time" msgstr "" #: ../graph.php:179 #, fuzzy msgid "Utility View" msgstr "Tillbehör" #: ../graph.php:277 #, fuzzy msgid "Graph Utility View" msgstr "Graftitel" #: ../graph.php:290 msgid "Graph Source/Properties" msgstr "" #: ../graph.php:294 #, fuzzy msgid "Graph Data" msgstr "Grafmall" #: ../graph.php:307 ../graph_realtime.php:267 ../lib/clog_webapi.php:351 #: ../lib/html_graph.php:319 ../lib/html_tree.php:765 ../lib/html_tree.php:785 #: ../utilities.php:1020 ../utilities.php:1904 msgid "Refresh" msgstr "" #: ../graph.php:429 msgid "RRDtool Graph Syntax" msgstr "" #: ../graph_realtime.php:195 msgid "Real-time has been disabled by your administrator." msgstr "" #: ../graph_realtime.php:202 msgid "" "The Image Cache Directory does not exist. Please first create it and set " "permissions and then attempt to open another Real-time graph." msgstr "" #: ../graph_realtime.php:209 msgid "" "The Image Cache Directory is not writable. Please set permissions and then " "attempt to open another Real-time graph." msgstr "" #: ../graph_realtime.php:224 msgid "Cacti Real-time Graphing" msgstr "" #: ../graph_realtime.php:253 ../lib/html_graph.php:327 ../lib/html_tree.php:773 msgid "Window" msgstr "" #: ../graph_realtime.php:283 #, php-format msgid "%d seconds left." msgstr "" #: ../graph_realtime.php:311 msgid "seconds left." msgstr "" #: ../graph_templates.php:35 msgid "Resize" msgstr "" #: ../graph_templates.php:36 #, fuzzy msgid "Sync Graphs" msgstr "Grafer" #: ../graph_templates.php:312 msgid "" "Click 'Continue' to delete the following Graph Template(s). Any Graph(s) " "associated with the Template(s) will become individual Graph(s)." msgstr "" #: ../graph_templates.php:317 #, fuzzy msgid "Delete Graph Template(s)" msgstr "Grafmallar" #: ../graph_templates.php:321 msgid "" "Click 'Continue' to duplicate the following Graph Template(s). You can " "optionally change the title format for the new Graph Template(s)." msgstr "" #: ../graph_templates.php:327 #, fuzzy msgid "Duplicate Graph Template(s)" msgstr "Grafmallar" #: ../graph_templates.php:331 msgid "" "Click 'Continue' to resize the following Graph Template(s) and Graph(s) to " "the Height and Width below. The defaults below are maintained in Settings." msgstr "" #: ../graph_templates.php:340 ../lib/html_reports.php:117 #, fuzzy msgid "Graph Height" msgstr "Graftitel" #: ../graph_templates.php:342 ../lib/html_reports.php:109 #, fuzzy msgid "Graph Width" msgstr "Graftitel" #: ../graph_templates.php:347 #, fuzzy msgid "Resize Selected Graph Template(s)" msgstr "Grafmallar" #: ../graph_templates.php:351 msgid "" "Click 'Continue' to Synchronize your Graphs the following Graph Template(s). " "This function is important if you have Graphs that exist with multiple " "versions of a Graph Template and wish to make them all common in appearance." msgstr "" #: ../graph_templates.php:356 msgid "Synchronize Graphs to Graph Template(s)" msgstr "" #: ../graph_templates.php:359 msgid "ERROR: You must select at least one graph template." msgstr "" #: ../graph_templates.php:413 #, fuzzy, php-format msgid "Graph Template Items [edit: %s]" msgstr "Grafmallar" #: ../graph_templates.php:420 ../lib/functions.php:2070 #, fuzzy msgid "Graph Item Inputs" msgstr "Grafmallar" #: ../graph_templates.php:446 msgid "No Inputs" msgstr "" #: ../graph_templates.php:491 #, fuzzy, php-format msgid "Template [edit: %s]" msgstr "Mallens titel" #: ../graph_templates.php:493 #, fuzzy msgid "Template [new]" msgstr "Mallnamn" #: ../graph_templates.php:509 #, fuzzy msgid "Graph Template Options" msgstr "Grafmallar" #: ../graph_templates.php:524 msgid "Use Per-Graph Value (Ignore this Value)" msgstr "" #: ../graph_templates.php:619 ../graph_templates.php:634 #: ../graph_templates.php:752 ../graphs_new.php:592 #: ../include/global_arrays.php:872 ../lib/functions.php:2046 #: ../user_admin.php:1376 ../user_group_admin.php:1101 msgid "Graph Templates" msgstr "Grafmallar" #: ../graph_templates.php:761 #, fuzzy msgid "The name of this Graph Template." msgstr "Grafmall" #: ../graph_templates.php:763 msgid "" "Graph Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Graph." msgstr "" #: ../graph_templates.php:764 msgid "The number of Graphs using this Graph Template." msgstr "" #: ../graph_templates.php:765 msgid "The default size of the resulting Graphs." msgstr "" #: ../graph_templates.php:766 msgid "Image Format" msgstr "" #: ../graph_templates.php:766 msgid "The default image format for the resulting Graphs." msgstr "" #: ../graph_templates.php:767 msgid "The vertical label for the resulting Graphs." msgstr "" #: ../graph_templates.php:767 msgid "Vertical Label" msgstr "" #: ../graph_templates.php:793 #, fuzzy msgid "No Graph Templates Found" msgstr "Grafmallar" #: ../graph_templates_inputs.php:145 #, php-format msgid "Graph Item Inputs [edit graph: %s]" msgstr "" #: ../graph_templates_inputs.php:191 msgid "Associated Graph Items" msgstr "" #: ../graph_templates_items.php:99 ../graph_templates_items.php:125 #: ../graphs_items.php:118 msgid "Cur:" msgstr "" #: ../graph_templates_items.php:106 ../graph_templates_items.php:132 #: ../graphs_items.php:125 msgid "Avg:" msgstr "" #: ../graph_templates_items.php:113 ../graph_templates_items.php:146 #: ../graphs_items.php:139 msgid "Max:" msgstr "" #: ../graph_templates_items.php:139 ../graphs_items.php:132 msgid "Min:" msgstr "" #: ../graph_templates_items.php:391 #, php-format msgid "Graph Template Items [edit graph: %s]" msgstr "" #: ../graph_view.php:242 msgid "YOU DO NOT HAVE RIGHTS FOR TREE VIEW" msgstr "" #: ../graph_view.php:320 msgid "YOU DO NOT HAVE RIGHTS FOR PREVIEW VIEW" msgstr "" #: ../graph_view.php:326 #, fuzzy msgid "Graph Preview Filters" msgstr "Grafträd" #: ../graph_view.php:326 msgid "[ Custom Graph List Applied - Filtering from List ]" msgstr "" #: ../graph_view.php:422 msgid "YOU DO NOT HAVE RIGHTS FOR LIST VIEW" msgstr "" #: ../graph_view.php:509 msgid "Graph List View Filters" msgstr "" #: ../graph_view.php:509 msgid "[ Custom Graph List Applied - Filter FROM List ]" msgstr "" #: ../graph_view.php:528 ../graph_view.php:770 ../graph_view.php:775 #: ../lib/html_graph.php:163 ../lib/html_graph.php:384 #: ../lib/html_graph.php:389 ../lib/html_tree.php:615 ../lib/html_tree.php:831 #: ../lib/html_tree.php:836 #, fuzzy msgid "All Graphs & Templates" msgstr "Grafmallar" #: ../graph_view.php:577 ../graph_view.php:654 #, fuzzy msgid "View" msgstr "Listvy" #: ../graph_view.php:577 ../graph_view.php:654 ../include/global_arrays.php:853 #: ../lib/clog_webapi.php:249 msgid "View Graphs" msgstr "Se grafer" #: ../graph_view.php:619 #, fuzzy msgid "Graph Size" msgstr "Graftitel" #: ../graph_view.php:633 #, fuzzy msgid "Aggregated Device" msgstr "Mallnamn" #: ../graph_view.php:636 #, fuzzy msgid "Non-Device" msgstr "Enheter" #: ../graph_view.php:637 msgid "Not Applicable" msgstr "" #: ../graph_view.php:772 ../lib/html_graph.php:386 ../lib/html_tree.php:833 #: ../settings.php:227 #, fuzzy msgid "Templates Selected" msgstr "Mallens titel" #: ../graphs.php:49 ../graphs.php:845 ../lib/functions.php:1920 #, fuzzy msgid "Change Graph Template" msgstr "Grafmall" #: ../graphs.php:56 msgid "Create Aggregate Graph" msgstr "" #: ../graphs.php:57 msgid "Create Aggregate from Template" msgstr "" #: ../graphs.php:58 ../graphs.php:1094 ../host.php:43 msgid "Apply Automation Rules" msgstr "" #: ../graphs.php:64 ../graphs.php:867 #, fuzzy msgid "Convert to Graph Template" msgstr "Grafmall" #: ../graphs.php:176 ../graphs_new.php:228 ../graphs_new.php:244 #, fuzzy, php-format msgid "Created graph: %s" msgstr "Uppdatera grafer" #: ../graphs.php:184 ../graphs_new.php:236 ../graphs_new.php:252 msgid "ERROR: no Data Source associated. Check Template" msgstr "" #: ../graphs.php:795 msgid "" "Click 'Continue' to delete the following Graph(s). Note that if you choose " "to Delete Data Sources, only those Data Sources not in use elsewhere will " "also be Deleted." msgstr "" #: ../graphs.php:799 msgid "The following Data Source(s) are in use by these Graph(s)." msgstr "" #: ../graphs.php:808 msgid "" "Delete all Data Source(s) referenced by these Graph(s) that are not in use " "elsewhere." msgstr "" #: ../graphs.php:810 msgid "Leave the Data Source(s) untouched." msgstr "" #: ../graphs.php:822 msgid "" "Choose a Graph Template and click 'Continue' to change the Graph Template " "for the following Graph(s). Please note, that only compatible Graph " "Templates will be displayed. Compatible is identified by those having " "identical Data Sources." msgstr "" #: ../graphs.php:824 #, fuzzy msgid "New Graph Template" msgstr "Grafmall" #: ../graphs.php:849 msgid "" "Click 'Continue' to duplicate the following Graph(s). You can optionally " "change the title format for the new Graph(s)." msgstr "" #: ../graphs.php:852 msgid " (1)" msgstr "" #: ../graphs.php:856 #, fuzzy msgid "Duplicate Graph(s)" msgstr "Grafmallar" #: ../graphs.php:860 msgid "" "Click 'Continue' to convert the following Graph(s) into Graph Template(s). " "You can optionally change the title format for the new Graph Template(s)." msgstr "" #: ../graphs.php:863 #, fuzzy msgid " Template" msgstr "Grafmall" #: ../graphs.php:871 msgid "" "Click 'Continue' to place the following Graph(s) under the Tree Branch " "selected below." msgstr "" #: ../graphs.php:873 msgid "Destination Branch" msgstr "" #: ../graphs.php:886 msgid "Choose a new Device for these Graph(s) and click 'Continue'." msgstr "" #: ../graphs.php:888 #, fuzzy msgid "New Device" msgstr "Enheter" #: ../graphs.php:900 msgid "" "Click 'Continue' to re-apply suggested naming to the following Graph(s)." msgstr "" #: ../graphs.php:905 msgid "Reapply Suggested Naming to Graph(s)" msgstr "" #: ../graphs.php:921 msgid "" "Click 'Continue' to create an Aggregate Graph from the selected Graph(s)." msgstr "" #: ../graphs.php:928 msgid "The following data sources are in use by these graphs:" msgstr "" #: ../graphs.php:961 msgid "Please confirm" msgstr "" #: ../graphs.php:1029 msgid "Resize Selected Graph(s)" msgstr "" #: ../graphs.php:1051 msgid "" "Select the Aggregate Template to use and press 'Continue' to create your " "Aggregate Graph. Otherwise press 'Cancel' to return." msgstr "" #: ../graphs.php:1072 msgid "Create Aggregate" msgstr "" #: ../graphs.php:1076 msgid "" "There are presently no Aggregate Templates defined for this Graph Template. " "Please either first create an Aggregate Template for the selected Graphs " "Graph Template and try again, or simply crease an un-templated Aggregate " "Graph." msgstr "" #: ../graphs.php:1077 msgid "Press 'Return' to return and select different Graphs." msgstr "" #: ../graphs.php:1089 msgid "Click 'Continue' to apply Automation Rules to the following Graphs." msgstr "" #: ../graphs.php:1105 msgid "You must select at least one Graph." msgstr "" #: ../graphs.php:1245 #, fuzzy, php-format msgid "Graph [edit: %s]" msgstr "Grafmallar" #: ../graphs.php:1251 #, fuzzy msgid "Graph [new]" msgstr "Graftitel" #: ../graphs.php:1276 msgid "Turn Off Graph Debug Mode." msgstr "" #: ../graphs.php:1278 msgid "Turn On Graph Debug Mode." msgstr "" #: ../graphs.php:1291 #, fuzzy msgid "Edit Graph Template." msgstr "Grafmall" #: ../graphs.php:1297 msgid "Unlock Graph." msgstr "" #: ../graphs.php:1299 msgid "Lock Graph." msgstr "" #: ../graphs.php:1323 #, fuzzy msgid "Selected Graph Template" msgstr "Grafmall" #: ../graphs.php:1324 #, php-format msgid "" "Choose a Graph Template to apply to this Graph. Please note that you may " "only change Graph Templates to a 100% compatible Graph Template, which means " "that it includes identical Data Sources." msgstr "" #: ../graphs.php:1332 msgid "Choose the Device that this Graph belongs to." msgstr "" #: ../graphs.php:1371 #, fuzzy msgid "Supplemental Graph Template Data" msgstr "Grafmall" #: ../graphs.php:1373 #, fuzzy msgid "Graph Fields" msgstr "Graftitel" #: ../graphs.php:1374 #, fuzzy msgid "Graph Item Fields" msgstr "Grafträd" #: ../graphs.php:1643 ../lib/functions.php:1908 #, fuzzy msgid "Graph Management" msgstr "Användarhantering" #: ../graphs.php:1787 ../include/global_form.php:1859 #: ../lib/html_reports.php:355 ../tree.php:681 #, fuzzy msgid "Graph Name" msgstr "Grafmall" #: ../graphs.php:1787 msgid "" "The Title of this Graph. Generally programatically generated from the Graph " "Template definition or Suggested Naming rules. The max length of the Title " "is controlled under Settings->Visual." msgstr "" #: ../graphs.php:1788 msgid "" "The internal database ID for this Graph. Useful when performing automation " "or debugging." msgstr "" #: ../graphs.php:1789 msgid "The Graph Template that this Graph was based upon." msgstr "" #: ../graphs.php:1790 msgid "The size of this Graph when not in Preview mode." msgstr "" #: ../graphs_items.php:290 #, fuzzy msgid "Data Sources [No Device]" msgstr "Datakällor" #: ../graphs_items.php:325 ../include/global_arrays.php:984 #: ../include/global_form.php:1556 #, fuzzy msgid "Data Template" msgstr "Grafmall" #: ../graphs_items.php:377 #, php-format msgid "Graph Items [graph: %s]" msgstr "" #: ../graphs_new.php:75 #, fuzzy msgid "Default Settings Saved" msgstr "Inställningar för Cacti" #: ../graphs_new.php:281 #, fuzzy, php-format msgid "Create Graph from %s" msgstr "Uppdatera grafer" #: ../graphs_new.php:302 #, php-format msgid "Created %s Graphs from %s" msgstr "" #: ../graphs_new.php:304 #, php-format msgid "Created 1 Graph from %s" msgstr "" #: ../graphs_new.php:345 #, fuzzy, php-format msgid "Graph [Template: %s]" msgstr "Grafmallar" #: ../graphs_new.php:346 #, fuzzy, php-format msgid "Graph Items [Template: %s]" msgstr "Grafmallar" #: ../graphs_new.php:351 #, fuzzy, php-format msgid "Data Source [Template: %s]" msgstr "Datakällor" #: ../graphs_new.php:361 #, php-format msgid "Custom Data [Template: %s]" msgstr "" #: ../graphs_new.php:446 #, fuzzy, php-format msgid "New Graphs for [ %s ]" msgstr "Nya grafer" #: ../graphs_new.php:449 msgid "New Graphs for [ All Devices ]" msgstr "" #: ../graphs_new.php:454 msgid "New Graphs for None Host Type" msgstr "" #: ../graphs_new.php:500 #, fuzzy msgid "Graph Types" msgstr "Grafträd" #: ../graphs_new.php:505 #, fuzzy msgid "Graph Template Based" msgstr "Grafmallar" #: ../graphs_new.php:541 #, fuzzy msgid "Edit this Device" msgstr "Uppdatera det här fältet" #: ../graphs_new.php:542 msgid "Create New Device" msgstr "" #: ../graphs_new.php:598 ../graphs_new.php:880 ../user_admin.php:1593 #: ../user_group_admin.php:1316 msgid "Select All" msgstr "Markera alla" #: ../graphs_new.php:674 ../include/global_arrays.php:679 #: ../include/global_arrays.php:750 ../lib/html_form.php:1111 #: ../lib/html_form.php:1124 ../tree.php:1025 msgid "Create" msgstr "Skapa" #: ../graphs_new.php:676 msgid "(Select a graph type to create)" msgstr "" #: ../graphs_new.php:760 #, fuzzy, php-format msgid "Data Query [%s]" msgstr "Dataförfrågning" #: ../graphs_new.php:876 msgid "From there you can get more information." msgstr "" #: ../graphs_new.php:876 msgid "" "This Data Query returned 0 rows, perhaps there was a problem executing this " "Data Query." msgstr "" #: ../graphs_new.php:876 msgid "You can run this Data Query in debug mode" msgstr "" #: ../graphs_new.php:919 msgid "Search Returned no Rows." msgstr "" #: ../graphs_new.php:924 msgid "Error in data query." msgstr "" #: ../graphs_new.php:948 msgid "Select a Graph Type to Create" msgstr "" #: ../graphs_new.php:951 msgid "Make selection default" msgstr "" #: ../graphs_new.php:951 msgid "Set Default" msgstr "" #: ../host.php:41 #, fuzzy msgid "Change Device Settings" msgstr "Inställningar för Cacti" #: ../host.php:42 msgid "Clear Statistics" msgstr "" #: ../host.php:44 msgid "Sync to Device Template" msgstr "" #: ../host.php:376 msgid "Click 'Continue' to enable the following Device(s)." msgstr "" #: ../host.php:381 #, fuzzy msgid "Enable Device(s)" msgstr "Enheter" #: ../host.php:385 msgid "Click 'Continue' to disable the following Device(s)." msgstr "" #: ../host.php:390 msgid "Disable Device(s)" msgstr "" #: ../host.php:394 msgid "" "Click 'Continue' to change the Device options below for multiple Device(s). " "Please check the box next to the fields you want to update, and then fill in " "the new value." msgstr "" #: ../host.php:417 msgid "Update this Field" msgstr "Uppdatera det här fältet" #: ../host.php:432 msgid "Change Device(s) SNMP Options" msgstr "" #: ../host.php:436 msgid "Click 'Continue' to clear the counters for the following Device(s)." msgstr "" #: ../host.php:441 msgid "Clear Statistics on Device(s)" msgstr "" #: ../host.php:445 msgid "" "Click 'Continue' to Synchronize the following Device(s) to their Device " "Template." msgstr "" #: ../host.php:450 msgid "Synchronize Device(s)" msgstr "" #: ../host.php:454 msgid "Click 'Continue' to delete the following Device(s)." msgstr "" #: ../host.php:457 msgid "" "Leave all Graph(s) and Data Source(s) untouched. Data Source(s) will be " "disabled however." msgstr "" #: ../host.php:458 msgid "Delete all associated Graph(s) and Data Source(s)." msgstr "" #: ../host.php:464 #, fuzzy msgid "Delete Device(s)" msgstr "Enheter" #: ../host.php:468 msgid "" "Click 'Continue' to place the following Device(s) under the branch selected " "below." msgstr "" #: ../host.php:478 msgid "Place Device(s) on Tree" msgstr "" #: ../host.php:482 msgid "Click 'Continue' to apply Automation Rules to the following Devices(s)." msgstr "" #: ../host.php:487 msgid "Run Automation on Device(s)" msgstr "" #: ../host.php:498 msgid "You must select at least one device." msgstr "" #: ../host.php:598 #, fuzzy msgid "Device [new]" msgstr "Enheter" #: ../host.php:604 #, php-format msgid "Device [edit: %s]" msgstr "" #: ../host.php:606 msgid "Disable Device Debug" msgstr "" #: ../host.php:608 msgid "Enable Device Debug" msgstr "" #: ../host.php:622 msgid "Create Graphs for this Device" msgstr "" #: ../host.php:624 #, fuzzy msgid "Data Source List" msgstr "Datakällor" #: ../host.php:625 #, fuzzy msgid "Graph List" msgstr "Graftitel" #: ../host.php:631 msgid "Contacting Device" msgstr "" #: ../host.php:663 msgid "Data Query Debug Information" msgstr "" #: ../host.php:666 ../templates_import.php:141 msgid "Hide" msgstr "" #: ../host.php:737 ../tree.php:1145 ../tree.php:1219 ../tree.php:1306 msgid "Edit" msgstr "" #: ../host.php:737 msgid "Is Being Graphed" msgstr "" #: ../host.php:737 msgid "Not Being Graphed" msgstr "" #: ../host.php:740 #, fuzzy msgid "Delete Graph Template Association" msgstr "Grafmallar" #: ../host.php:747 ../host_templates.php:493 msgid "No associated graph templates." msgstr "" #: ../host.php:756 ../host_templates.php:502 #, fuzzy msgid "Add Graph Template" msgstr "Grafmall" #: ../host.php:762 #, fuzzy msgid "Add Graph Template to Device" msgstr "Grafmall" #: ../host.php:772 ../host_templates.php:525 #, fuzzy msgid "Associated Data Queries" msgstr "Dataförfrågningar" #: ../host.php:777 ../host.php:873 msgid "Re-Index Method" msgstr "" #: ../host.php:779 ../lib/api_automation.php:1212 #: ../lib/api_automation.php:1274 ../lib/api_automation.php:1338 #: ../lib/functions.php:1926 ../lib/functions.php:1992 #: ../lib/functions.php:2058 ../lib/functions.php:2094 #: ../lib/functions.php:2112 ../lib/functions.php:2130 #: ../lib/functions.php:2148 ../lib/functions.php:2178 #: ../lib/functions.php:2214 ../lib/functions.php:2244 #: ../lib/functions.php:2334 ../lib/functions.php:2520 #: ../lib/functions.php:2544 ../lib/functions.php:2562 #: ../lib/functions.php:2580 ../lib/functions.php:2598 #: ../lib/functions.php:2622 ../lib/html_reports.php:1216 ../links.php:377 #: ../plugins.php:374 #, fuzzy msgid "Actions" msgstr "Funktion" #: ../host.php:840 msgid "Fail" msgstr "" #: ../host.php:840 ../lib/functions.php:3811 ../lib/functions.php:3816 #, fuzzy msgid "Success" msgstr "[lyckad]" #: ../host.php:843 #, fuzzy msgid "Reload Query" msgstr "Dataförfrågning" #: ../host.php:844 msgid "Verbose Query" msgstr "" #: ../host.php:845 msgid "Remove Query" msgstr "" #: ../host.php:851 #, fuzzy msgid "No Associated Data Queries." msgstr "Ladda om associerad fråga" #: ../host.php:867 ../host_templates.php:559 #, fuzzy msgid "Add Data Query" msgstr "Dataförfrågning" #: ../host.php:879 #, fuzzy msgid "Add Data Query to Device" msgstr "Dataförfrågningar" #: ../host.php:1014 ../include/global_arrays.php:460 msgid "Ping and SNMP Uptime" msgstr "" #: ../host.php:1015 ../include/global_arrays.php:462 msgid "SNMP Uptime" msgstr "" #: ../host.php:1016 ../include/global_arrays.php:465 msgid "Ping" msgstr "" #: ../host.php:1017 ../include/global_arrays.php:461 msgid "Ping or SNMP Uptime" msgstr "" #: ../host.php:1018 ../include/global_arrays.php:463 msgid "SNMP Desc" msgstr "" #: ../host.php:1019 msgid "SNMP GetNext" msgstr "" #: ../host.php:1312 ../include/global_settings.php:441 msgid "Site" msgstr "" #: ../host.php:1388 ../lib/api_automation.php:164 #: ../lib/api_automation.php:1019 msgid "Not Up" msgstr "" #: ../host.php:1391 ../lib/api_automation.php:167 #: ../lib/api_automation.php:1022 ../lib/html_utility.php:814 ../pollers.php:41 msgid "Recovering" msgstr "Påväg upp" #: ../host.php:1392 ../lib/api_automation.php:168 #: ../lib/api_automation.php:1023 ../lib/html_utility.php:823 #: ../plugins.php:166 ../utilities.php:2011 msgid "Unknown" msgstr "Okänd" #: ../host.php:1498 ../lib/api_automation.php:557 #, fuzzy msgid "Device Description" msgstr "Beskrivning" #: ../host.php:1498 msgid "The name by which this Device will be referred to." msgstr "" #: ../host.php:1499 msgid "" "Either an IP address, or hostname. If a hostname, it must be resolvable by " "either DNS, or from your hosts file." msgstr "" #: ../host.php:1499 ../include/global_form.php:1013 #: ../include/global_form.php:1638 ../lib/api_automation.php:270 #: ../lib/api_automation.php:558 ../lib/api_automation.php:809 #: ../lib/api_automation.php:1138 ../managers.php:225 ../pollers.php:82 #: ../pollers.php:613 ../user_admin.php:1242 ../user_group_admin.php:966 msgid "Hostname" msgstr "Värdnamn" #: ../host.php:1500 msgid "" "The internal database ID for this Device. Useful when performing automation " "or debugging." msgstr "" #: ../host.php:1501 msgid "The total number of Graphs generated from this Device." msgstr "" #: ../host.php:1502 msgid "The total number of Data Sources generated from this Device." msgstr "" #: ../host.php:1503 msgid "" "The monitoring status of the Device based upon ping results. If this Device " "is a special type Device, by using the hostname \"localhost\", or due to the " "setting to not perform an Availability Check, it will always remain Up. " "When using cmd.php data collector, a Device with no Graphs, is not pinged by " "the data collector and will remain in an \"Unknown\" state." msgstr "" #: ../host.php:1504 msgid "In State" msgstr "" #: ../host.php:1504 msgid "The amount of time that this Device has been in its current state." msgstr "" #: ../host.php:1505 msgid "The current amount of time that the host has been up." msgstr "" #: ../host.php:1506 #, fuzzy msgid "Poll Time" msgstr "Insamlare" #: ../host.php:1506 msgid "The amount of time it takes to collect data from this Device." msgstr "" #: ../host.php:1507 msgid "Current (ms)" msgstr "Nuvarande" #: ../host.php:1507 msgid "The current ping time in milliseconds to reach the Device." msgstr "" #: ../host.php:1508 msgid "Average (ms)" msgstr "Genomsnitt" #: ../host.php:1508 msgid "" "The average ping time in milliseconds to reach the Device since the counters " "were cleared for this Device." msgstr "" #: ../host.php:1509 msgid "Availability" msgstr "Åtkomstbarhet" #: ../host.php:1509 msgid "" "The availability percentage based upon ping results since the counters were " "cleared for this Device." msgstr "" #: ../host_templates.php:32 #, fuzzy msgid "Sync Devices" msgstr "Enheter" #: ../host_templates.php:256 msgid "Click 'Continue' to delete the following Device Template(s)." msgstr "" #: ../host_templates.php:261 msgid "Delete Device Template(s)" msgstr "" #: ../host_templates.php:265 msgid "" "Click 'Continue' to duplicate the following Device Template(s). Optionally " "change the title for the new Device Template(s)." msgstr "" #: ../host_templates.php:275 msgid "Duplicate Device Template(s)" msgstr "" #: ../host_templates.php:279 msgid "" "Click 'Continue' to Synchronize Devices associated with the selected Device " "Template(s). Note that this action may take some time depending on the " "number of Devices mapped to the Device Template." msgstr "" #: ../host_templates.php:286 msgid "Sync Devices to Device Template(s)" msgstr "" #: ../host_templates.php:289 msgid "You must select at least one host template." msgstr "" #: ../host_templates.php:328 msgid "" "Click 'Continue' to delete the following Graph Template will be " "disassociated from the Device Template." msgstr "" #: ../host_templates.php:329 #, fuzzy, php-format msgid "Graph Template Name: %s" msgstr "Grafmallar" #: ../host_templates.php:388 msgid "" "Click 'Continue' to delete the following Data Queries will be disassociated " "from the Device Template." msgstr "" #: ../host_templates.php:389 #, fuzzy, php-format msgid "Data Query Name: %s" msgstr "Dataförfrågningar" #: ../host_templates.php:442 #, php-format msgid "Device Templates [edit: %s]" msgstr "" #: ../host_templates.php:444 msgid "Device Templates [new]" msgstr "" #: ../host_templates.php:461 msgid "Default Submit Button" msgstr "" #: ../host_templates.php:515 msgid "Add Graph Template to Device Template" msgstr "" #: ../host_templates.php:550 #, fuzzy msgid "No associated data queries." msgstr "Ladda om associerad fråga" #: ../host_templates.php:569 msgid "Add Data Query to Device Template" msgstr "" #: ../host_templates.php:691 ../host_templates.php:706 #: ../host_templates.php:805 ../include/global_arrays.php:874 #: ../lib/functions.php:2082 #, fuzzy msgid "Device Templates" msgstr "Grafmallar" #: ../host_templates.php:724 #, fuzzy msgid "Has Devices" msgstr "Enheter" #: ../host_templates.php:814 ../lib/api_automation.php:272 #: ../lib/api_automation.php:559 ../lib/api_automation.php:1139 #, fuzzy msgid "Device Template Name" msgstr "Mallnamn" #: ../host_templates.php:814 msgid "The name of this Device Template." msgstr "" #: ../host_templates.php:815 msgid "" "The internal database ID for this Device Template. Useful when performing " "automation or debugging." msgstr "" #: ../host_templates.php:816 msgid "" "Device Templates in use cannot be Deleted. In use is defined as being " "referenced by a Device." msgstr "" #: ../host_templates.php:817 #, fuzzy msgid "Devices Using" msgstr "Enheter" #: ../host_templates.php:817 msgid "The number of Devices using this Device Template." msgstr "" #: ../host_templates.php:840 msgid "No Device Templates Found" msgstr "" #: ../include/auth.php:115 ../include/auth.php:117 ../permission_denied.php:30 #: ../permission_denied.php:32 #, fuzzy msgid "Login Again" msgstr "Logga in" #: ../include/auth.php:125 ../include/auth.php:146 ../permission_denied.php:60 #, fuzzy msgid "Permission Denied" msgstr "Åtkomst nekad" #: ../include/auth.php:148 ../permission_denied.php:62 #, fuzzy msgid "" "If you feel that this is an error. Please contact your Cacti Administrator." msgstr "Åtkomst nekad, kontakta din Cacti administratör." #: ../include/auth.php:148 ../permission_denied.php:62 msgid "You are not permitted to access this section of Cacti." msgstr "" #: ../include/global_arrays.php:88 msgid "Save Successful." msgstr "" #: ../include/global_arrays.php:91 #, fuzzy msgid "Save Failed." msgstr "Spara fil lokalt" #: ../include/global_arrays.php:94 msgid "Save Failed: Field Input Error (Check Red Fields)." msgstr "" #: ../include/global_arrays.php:97 #, fuzzy msgid "Passwords do not match, please retype." msgstr "Dina lösenord matchar inte, prova igen:" #: ../include/global_arrays.php:100 msgid "You must select at least one field." msgstr "" #: ../include/global_arrays.php:103 msgid "" "You must have built in user authentication turned on to use this feature." msgstr "" #: ../include/global_arrays.php:106 msgid "XML parse error." msgstr "" #: ../include/global_arrays.php:109 msgid "Username already in use." msgstr "" #: ../include/global_arrays.php:112 msgid "XML: Cacti version does not exist." msgstr "" #: ../include/global_arrays.php:115 msgid "XML: Hash version does not exist." msgstr "" #: ../include/global_arrays.php:118 msgid "XML: Generated with a newer version of Cacti." msgstr "" #: ../include/global_arrays.php:121 msgid "XML: Cannot locate type code." msgstr "" #: ../include/global_arrays.php:124 msgid "Username already exists." msgstr "" #: ../include/global_arrays.php:127 msgid "Username change not permitted for designated template or guest user." msgstr "" #: ../include/global_arrays.php:130 msgid "User delete not permitted for designated template or guest user." msgstr "" #: ../include/global_arrays.php:133 msgid "User delete not permitted for designated graph export user." msgstr "" #: ../include/global_arrays.php:136 msgid "" "Data Template Includes Deleted Data Source Profile. Please resave the Data " "Template with an existing Data Source Profile." msgstr "" #: ../include/global_arrays.php:139 msgid "" "Graph Template Includes Deleted GPrint Prefix. Please run Database Repair " "Script to Identify and/or Correct." msgstr "" #: ../include/global_arrays.php:142 msgid "" "Graph Template Includes Deleted CDEFs. Please run Database Repair Script to " "Identify and/or Correct." msgstr "" #: ../include/global_arrays.php:145 msgid "" "Graph Template Includes Deleted Data Input Method. Please run Database " "Repair Script to Identify." msgstr "" #: ../include/global_arrays.php:148 msgid "" "Data Template Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: ../include/global_arrays.php:151 msgid "" "Device Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: ../include/global_arrays.php:154 msgid "" "Data Query Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: ../include/global_arrays.php:157 msgid "" "Graph Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: ../include/global_arrays.php:160 msgid "" "Graph not found. Either it has been deleted or your database needs repair." msgstr "" #: ../include/global_arrays.php:163 msgid "SNMPv3 Auth Passphrases must be 8 characters or greater." msgstr "" #: ../include/global_arrays.php:166 msgid "" "Some Graphs not Updated. Unable to Change Device for Data Query based Graphs." msgstr "" #: ../include/global_arrays.php:169 msgid "Unable to Change Device for Data Query based Graphs." msgstr "" #: ../include/global_arrays.php:172 msgid "Cacti Log purged successfully" msgstr "" #: ../include/global_arrays.php:175 msgid "" "Error: If you force a password change, you must also allow the user to " "change their password." msgstr "" #: ../include/global_arrays.php:178 msgid "Error: You are not allowed to change your password." msgstr "" #: ../include/global_arrays.php:181 msgid "Error: LDAP/AD based password change not supported." msgstr "" #: ../include/global_arrays.php:184 msgid "Error: Unable to clear log, no write permissions" msgstr "" #: ../include/global_arrays.php:187 msgid "Error: Unable to clear log, file does not exist" msgstr "" #: ../include/global_arrays.php:190 msgid "Invalid Timestamp. Select timestamp in the future." msgstr "" #: ../include/global_arrays.php:193 msgid "Data Collector(s) Synchronized for Offline Operation" msgstr "" #: ../include/global_arrays.php:196 msgid "Data Collector(s) Not found when attempting Synchronization" msgstr "" #: ../include/global_arrays.php:199 msgid "Unable to establish MySQL connection with remote Data Collector." msgstr "" #: ../include/global_arrays.php:202 msgid "" "Data Collector Synchronization must be initiated from the main Cacti server." msgstr "" #: ../include/global_arrays.php:205 msgid "Report Saved" msgstr "" #: ../include/global_arrays.php:208 msgid "Report Save Failed" msgstr "" #: ../include/global_arrays.php:211 msgid "Report Item Saved" msgstr "" #: ../include/global_arrays.php:214 msgid "Report Item Save Failed" msgstr "" #: ../include/global_arrays.php:306 ../include/global_arrays.php:619 msgid "Function" msgstr "Funktion" #: ../include/global_arrays.php:307 ../include/global_arrays.php:621 #, fuzzy msgid "Special Data Source" msgstr "Uppdatera datakällor" #: ../include/global_arrays.php:308 ../include/global_arrays.php:623 msgid "Custom String" msgstr "" #: ../include/global_arrays.php:318 ../include/global_arrays.php:325 msgid "Script/Command" msgstr "" #: ../include/global_arrays.php:320 ../include/global_arrays.php:326 #: ../utilities.php:1607 msgid "Script Server" msgstr "" #: ../include/global_arrays.php:332 msgid "Index Count" msgstr "" #: ../include/global_arrays.php:333 msgid "Verify All" msgstr "" #: ../include/global_arrays.php:337 msgid "" "All Re-Indexing will be manual or managed through scripts or Device " "Automation." msgstr "" #: ../include/global_arrays.php:338 msgid "" "When the Devices SNMP uptime goes backward, a Re-Index will be performed." msgstr "" #: ../include/global_arrays.php:339 msgid "When the Data Query index count changes, a Re-Index will be performed." msgstr "" #: ../include/global_arrays.php:340 msgid "Every polling cycle, a Re-Index will be performed. Very expensive." msgstr "" #: ../include/global_arrays.php:344 msgid "SNMP Field Name (Dropdown)" msgstr "" #: ../include/global_arrays.php:345 msgid "SNMP Field Value (From User)" msgstr "" #: ../include/global_arrays.php:346 msgid "SNMP Output Type (Dropdown)" msgstr "" #: ../include/global_arrays.php:365 ../include/global_arrays.php:371 msgid "Normal" msgstr "" #: ../include/global_arrays.php:366 msgid "Light" msgstr "" #: ../include/global_arrays.php:367 ../include/global_arrays.php:372 msgid "Mono" msgstr "" #: ../include/global_arrays.php:376 msgid "North" msgstr "" #: ../include/global_arrays.php:377 msgid "South" msgstr "" #: ../include/global_arrays.php:378 msgid "West" msgstr "" #: ../include/global_arrays.php:379 msgid "East" msgstr "" #: ../include/global_arrays.php:384 msgid "Left" msgstr "" #: ../include/global_arrays.php:385 msgid "Right" msgstr "" #: ../include/global_arrays.php:386 msgid "Justified" msgstr "" #: ../include/global_arrays.php:387 msgid "Center" msgstr "" #: ../include/global_arrays.php:391 msgid "Top -> Down" msgstr "" #: ../include/global_arrays.php:392 msgid "Bottom -> Up" msgstr "" #: ../include/global_arrays.php:396 ../tree.php:1129 msgid "Numeric" msgstr "" #: ../include/global_arrays.php:397 #, fuzzy msgid "Timestamp" msgstr "Tidsspann" #: ../include/global_arrays.php:398 #, fuzzy msgid "Duration" msgstr "Beskrivning" #: ../include/global_arrays.php:430 msgid "Not In Use" msgstr "" #: ../include/global_arrays.php:431 ../include/global_arrays.php:432 #: ../include/global_arrays.php:433 ../include/global_arrays.php:589 #: ../include/global_arrays.php:590 #, php-format msgid "Version %d" msgstr "" #: ../include/global_arrays.php:437 msgid "MD5 (default)" msgstr "" #: ../include/global_arrays.php:438 msgid "SHA" msgstr "" #: ../include/global_arrays.php:442 #, fuzzy msgid "[None]" msgstr "Ingen" #: ../include/global_arrays.php:443 msgid "DES (default)" msgstr "" #: ../include/global_arrays.php:444 msgid "AES" msgstr "" #: ../include/global_arrays.php:453 msgid "Logfile Only" msgstr "" #: ../include/global_arrays.php:454 msgid "Logfile and Syslog/Eventlog" msgstr "" #: ../include/global_arrays.php:455 msgid "Syslog/Eventlog Only" msgstr "" #: ../include/global_arrays.php:464 msgid "SNMP getNext" msgstr "" #: ../include/global_arrays.php:469 msgid "ICMP Ping" msgstr "" #: ../include/global_arrays.php:470 msgid "TCP Ping" msgstr "" #: ../include/global_arrays.php:471 msgid "UDP Ping" msgstr "" #: ../include/global_arrays.php:475 msgid "NONE - Syslog Only if Selected" msgstr "INGEN - Enbart syslog om vald" #: ../include/global_arrays.php:476 msgid "LOW - Statistics and Errors" msgstr "LÅG - Statistik och fel" #: ../include/global_arrays.php:477 msgid "MEDIUM - Statistics, Errors and Results" msgstr "MEDIUM - Statistik, fel och resultat" #: ../include/global_arrays.php:478 msgid "HIGH - Statistics, Errors, Results and Major I/O Events" msgstr "HÖG - Statistik, fel, resultat och större I/O händelser" #: ../include/global_arrays.php:479 msgid "DEBUG - Statistics, Errors, Results, I/O and Program Flow" msgstr "DEBUG - Statistik, fel, resultat, I/O och programflöde" #: ../include/global_arrays.php:480 msgid "DEVEL - Developer DEBUG Level" msgstr "" #: ../include/global_arrays.php:489 msgid "Selected Poller Interval" msgstr "" #: ../include/global_arrays.php:504 ../include/global_arrays.php:505 #: ../include/global_arrays.php:506 ../include/global_arrays.php:507 #: ../include/global_arrays.php:538 ../include/global_arrays.php:539 #: ../include/global_arrays.php:540 ../include/global_arrays.php:541 #, php-format msgid "Every %d Seconds" msgstr "" #: ../include/global_arrays.php:508 ../include/global_arrays.php:542 #: ../include/global_arrays.php:556 msgid "Every Minute" msgstr "Varje minut" #: ../include/global_arrays.php:509 ../include/global_arrays.php:510 #: ../include/global_arrays.php:511 ../include/global_arrays.php:512 #: ../include/global_arrays.php:543 ../include/global_arrays.php:557 #, fuzzy, php-format msgid "Every %d Minutes" msgstr "Varje minut" #: ../include/global_arrays.php:513 #, fuzzy msgid "Every Hour" msgstr "Varje minut" #: ../include/global_arrays.php:514 ../include/global_arrays.php:515 #: ../include/global_arrays.php:1444 ../include/global_arrays.php:1445 #: ../include/global_arrays.php:1446 ../include/global_arrays.php:1447 #: ../include/global_arrays.php:1448 ../include/global_settings.php:1765 #: ../include/global_settings.php:1766 #, php-format msgid "Every %d Hours" msgstr "" #: ../include/global_arrays.php:534 ../include/global_settings.php:1098 msgid "1 Day" msgstr "1 dag" #: ../include/global_arrays.php:547 msgid "1 Thread (default)" msgstr "" #: ../include/global_arrays.php:572 msgid "Builtin Authentication" msgstr "" #: ../include/global_arrays.php:573 msgid "Web Basic Authentication" msgstr "" #: ../include/global_arrays.php:577 msgid "LDAP Authentication" msgstr "" #: ../include/global_arrays.php:578 msgid "Multiple LDAP/AD Domains" msgstr "" #: ../include/global_arrays.php:583 msgid "Active Directory" msgstr "" #: ../include/global_arrays.php:595 ../include/global_settings.php:1324 msgid "SSL" msgstr "" #: ../include/global_arrays.php:596 ../include/global_settings.php:1324 msgid "TLS" msgstr "" #: ../include/global_arrays.php:600 #, fuzzy msgid "No Searching" msgstr "Sök:" #: ../include/global_arrays.php:601 msgid "Anonymous Searching" msgstr "" #: ../include/global_arrays.php:602 msgid "Specific Searching" msgstr "" #: ../include/global_arrays.php:615 msgid "Enabled (strict mode)" msgstr "" #: ../include/global_arrays.php:620 ../include/global_form.php:2101 #: ../include/global_form.php:2143 ../lib/api_automation.php:1210 #: ../lib/api_automation.php:1272 msgid "Operator" msgstr "" #: ../include/global_arrays.php:622 msgid "Another CDEF" msgstr "" #: ../include/global_arrays.php:641 msgid "Inherit Parent Sorting" msgstr "" #: ../include/global_arrays.php:642 msgid "Manual Ordering (No Sorting)" msgstr "" #: ../include/global_arrays.php:643 msgid "Alphabetic Ordering" msgstr "" #: ../include/global_arrays.php:644 msgid "Natural Ordering" msgstr "" #: ../include/global_arrays.php:645 msgid "Numeric Ordering" msgstr "" #: ../include/global_arrays.php:649 ../lib/rrd.php:2624 msgid "Header" msgstr "" #: ../include/global_arrays.php:650 ../include/global_arrays.php:697 #: ../include/global_arrays.php:1269 ../include/global_arrays.php:1433 #: ../lib/html_tree.php:351 #, fuzzy msgid "Graph" msgstr "Grafer" #: ../include/global_arrays.php:656 ../tree.php:1295 #, fuzzy msgid "Data Query Index" msgstr "Dataförfrågning" #: ../include/global_arrays.php:660 #, fuzzy msgid "Current Graph Item Data Source" msgstr "Uppdatera datakällor" #: ../include/global_arrays.php:661 msgid "Current Graph Item Polling Interval" msgstr "" #: ../include/global_arrays.php:662 msgid "All Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:663 msgid "All Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:664 msgid "All Similar Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:665 msgid "All Similar Data Sources (Do not Include Duplicates) Polling Interval" msgstr "" #: ../include/global_arrays.php:666 msgid "All Similar Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:667 msgid "Current Data Source Item: Minimum Value" msgstr "" #: ../include/global_arrays.php:668 msgid "Current Data Source Item: Maximum Value" msgstr "" #: ../include/global_arrays.php:669 msgid "Graph: Lower Limit" msgstr "" #: ../include/global_arrays.php:670 msgid "Graph: Upper Limit" msgstr "" #: ../include/global_arrays.php:671 msgid "Count of All Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:672 msgid "Count of All Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:673 msgid "Count of All Similar Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:674 msgid "Count of All Similar Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:680 ../lib/html_form_template.php:562 #: ../lib/html_form_template.php:577 msgid "New Graphs" msgstr "Nya grafer" #: ../include/global_arrays.php:682 ../include/global_arrays.php:734 #: ../include/global_arrays.php:751 #, fuzzy msgid "Management" msgstr "Användarhantering" #: ../include/global_arrays.php:684 ../sites.php:378 ../sites.php:393 #: ../sites.php:472 msgid "Sites" msgstr "" #: ../include/global_arrays.php:685 ../include/global_arrays.php:866 #: ../tree.php:1476 ../tree.php:1491 ../tree.php:1549 ../user_admin.php:1513 #: ../user_admin.php:2926 ../user_admin.php:3013 ../user_group_admin.php:1235 #: ../user_group_admin.php:2441 #, fuzzy msgid "Trees" msgstr "Grafträd" #: ../include/global_arrays.php:688 msgid "Aggregates" msgstr "" #: ../include/global_arrays.php:690 ../include/global_arrays.php:737 #: ../include/global_arrays.php:752 msgid "Data Collection" msgstr "" #: ../include/global_arrays.php:691 ../include/global_arrays.php:738 #: ../pollers.php:508 msgid "Data Collectors" msgstr "" #: ../include/global_arrays.php:699 msgid "Aggregate" msgstr "" #: ../include/global_arrays.php:702 ../include/global_arrays.php:754 #: ../include/global_settings.php:413 msgid "Automation" msgstr "" #: ../include/global_arrays.php:704 msgid "Discovered Devices" msgstr "" #: ../include/global_arrays.php:705 #, fuzzy msgid "Device Rules" msgstr "Enheter" #: ../include/global_arrays.php:710 ../include/global_arrays.php:755 #: ../lib/html_filter.php:178 ../lib/html_graph.php:255 #: ../lib/html_tree.php:701 msgid "Presets" msgstr "" #: ../include/global_arrays.php:711 #, fuzzy msgid "Data Profiles" msgstr "Dataförfrågningar" #: ../include/global_arrays.php:713 ../lib/functions.php:2328 ../vdef.php:651 #: ../vdef.php:665 ../vdef.php:836 msgid "VDEFs" msgstr "" #: ../include/global_arrays.php:717 ../include/global_arrays.php:756 msgid "Import/Export" msgstr "" #: ../include/global_arrays.php:718 ../lib/functions.php:2442 #: ../templates_import.php:115 msgid "Import Templates" msgstr "Importera mallar" #: ../include/global_arrays.php:719 ../lib/functions.php:2430 #: ../templates_export.php:94 msgid "Export Templates" msgstr "Exportera mallar" #: ../include/global_arrays.php:721 ../include/global_arrays.php:740 #: ../include/global_arrays.php:757 ../lib/plugins.php:763 msgid "Configuration" msgstr "" #: ../include/global_arrays.php:722 ../include/global_arrays.php:741 #, fuzzy msgid "Settings" msgstr "Inställningar för Cacti" #: ../include/global_arrays.php:723 ../lib/functions.php:2376 #: ../user_admin.php:2199 ../user_admin.php:2254 ../user_group_admin.php:667 #: ../user_group_admin.php:2528 msgid "Users" msgstr "" #: ../include/global_arrays.php:724 ../lib/functions.php:2406 msgid "User Groups" msgstr "" #: ../include/global_arrays.php:725 ../lib/functions.php:2394 #: ../user_domains.php:612 ../user_domains.php:705 msgid "User Domains" msgstr "" #: ../include/global_arrays.php:727 ../include/global_arrays.php:743 #: ../include/global_arrays.php:758 ../lib/functions.php:2256 msgid "Utilities" msgstr "Tillbehör" #: ../include/global_arrays.php:728 ../include/global_arrays.php:744 msgid "System Utilities" msgstr "Systemtillbehör" #: ../include/global_arrays.php:729 ../include/global_arrays.php:772 #: ../include/global_arrays.php:855 ../links.php:90 ../links.php:301 #: ../links.php:370 ../links.php:483 msgid "External Links" msgstr "" #: ../include/global_arrays.php:781 msgid "All Lines" msgstr "" #: ../include/global_arrays.php:782 ../include/global_arrays.php:783 #: ../include/global_arrays.php:784 ../include/global_arrays.php:785 #: ../include/global_arrays.php:786 ../include/global_arrays.php:787 #: ../include/global_arrays.php:788 ../include/global_arrays.php:789 #: ../include/global_arrays.php:790 ../include/global_arrays.php:791 #: ../include/global_arrays.php:792 ../include/global_arrays.php:793 #, php-format msgid "%d Lines" msgstr "" #: ../include/global_arrays.php:848 msgid "Never" msgstr "" #: ../include/global_arrays.php:852 msgid "Console Access" msgstr "" #: ../include/global_arrays.php:854 msgid "Update Profile" msgstr "" #: ../include/global_arrays.php:857 ../user_admin.php:2178 msgid "User Management" msgstr "Användarhantering" #: ../include/global_arrays.php:858 #, fuzzy msgid "Settings and Utilities" msgstr "Systemtillbehör" #: ../include/global_arrays.php:859 #, fuzzy msgid "Automation Settings" msgstr "Inställningar för Cacti" #: ../include/global_arrays.php:864 msgid "Sites/Devices/Data Sources/Data Collectors" msgstr "" #: ../include/global_arrays.php:867 msgid "Remove Spikes from Graphs" msgstr "" #: ../include/global_arrays.php:870 msgid "Colors/GPrints/CDEFs/VDEFs" msgstr "" #: ../include/global_arrays.php:876 #, fuzzy msgid "Export Data" msgstr "Exportera mall" #: ../include/global_arrays.php:877 #, fuzzy msgid "Import Data" msgstr "Importera mallar" #: ../include/global_arrays.php:879 ../include/global_settings.php:665 #, fuzzy msgid "Log Management" msgstr "Användarhantering" #: ../include/global_arrays.php:880 #, fuzzy msgid "Log Viewing" msgstr "Listvy" #: ../include/global_arrays.php:882 #, fuzzy msgid "Reports Management" msgstr "Användarhantering" #: ../include/global_arrays.php:883 msgid "Reports Creation" msgstr "" #: ../include/global_arrays.php:981 msgid "CDEF" msgstr "" #: ../include/global_arrays.php:982 msgid "CDEF Item" msgstr "" #: ../include/global_arrays.php:983 msgid "GPRINT Preset" msgstr "" #: ../include/global_arrays.php:986 #, fuzzy msgid "Data Input Field" msgstr "Uppdatera det här fältet" #: ../include/global_arrays.php:987 ../include/global_form.php:394 #: ../include/global_form.php:1613 #, fuzzy msgid "Data Source Profile" msgstr "Datakälla" #: ../include/global_arrays.php:988 #, fuzzy msgid "Data Template Item" msgstr "Mallens titel" #: ../include/global_arrays.php:990 #, fuzzy msgid "Graph Template Item" msgstr "Grafmall" #: ../include/global_arrays.php:991 #, fuzzy msgid "Graph Template Input" msgstr "Grafmall" #: ../include/global_arrays.php:994 msgid "VDEF" msgstr "" #: ../include/global_arrays.php:995 msgid "VDEF Item" msgstr "" #: ../include/global_arrays.php:1039 msgid "Last Half Hour" msgstr "" #: ../include/global_arrays.php:1040 msgid "Last Hour" msgstr "" #: ../include/global_arrays.php:1041 ../include/global_arrays.php:1042 #: ../include/global_arrays.php:1043 ../include/global_arrays.php:1044 #, php-format msgid "Last %d Hours" msgstr "" #: ../include/global_arrays.php:1045 #, fuzzy msgid "Last Day" msgstr "1 dag" #: ../include/global_arrays.php:1046 ../include/global_arrays.php:1047 #: ../include/global_arrays.php:1048 #, php-format msgid "Last %d Days" msgstr "" #: ../include/global_arrays.php:1049 #, fuzzy msgid "Last Week" msgstr "1 vecka" #: ../include/global_arrays.php:1050 #, php-format msgid "Last %d Weeks" msgstr "" #: ../include/global_arrays.php:1051 #, fuzzy msgid "Last Month" msgstr "1 månad" #: ../include/global_arrays.php:1052 ../include/global_arrays.php:1053 #: ../include/global_arrays.php:1054 ../include/global_arrays.php:1055 #, php-format msgid "Last %d Months" msgstr "" #: ../include/global_arrays.php:1056 #, fuzzy msgid "Last Year" msgstr "1 år" #: ../include/global_arrays.php:1057 #, php-format msgid "Last %d Years" msgstr "" #: ../include/global_arrays.php:1058 msgid "Day Shift" msgstr "" #: ../include/global_arrays.php:1059 #, fuzzy msgid "This Day" msgstr "1 dag" #: ../include/global_arrays.php:1060 #, fuzzy msgid "This Week" msgstr "1 vecka" #: ../include/global_arrays.php:1061 #, fuzzy msgid "This Month" msgstr "1 månad" #: ../include/global_arrays.php:1062 #, fuzzy msgid "This Year" msgstr "1 år" #: ../include/global_arrays.php:1063 #, fuzzy msgid "Previous Day" msgstr "Föregående" #: ../include/global_arrays.php:1064 #, fuzzy msgid "Previous Week" msgstr "Föregående" #: ../include/global_arrays.php:1065 #, fuzzy msgid "Previous Month" msgstr "Föregående" #: ../include/global_arrays.php:1066 #, fuzzy msgid "Previous Year" msgstr "Föregående" #: ../include/global_arrays.php:1070 #, php-format msgid "%d Min" msgstr "" #: ../include/global_arrays.php:1087 ../include/global_settings.php:1026 #: ../rrdcleaner.php:493 #, fuzzy, php-format msgid "%d Year" msgstr "1 år" #: ../include/global_arrays.php:1102 msgid "Month Number, Day, Year" msgstr "" #: ../include/global_arrays.php:1103 msgid "Month Name, Day, Year" msgstr "" #: ../include/global_arrays.php:1104 msgid "Day, Month Number, Year" msgstr "" #: ../include/global_arrays.php:1105 msgid "Day, Month Name, Year" msgstr "" #: ../include/global_arrays.php:1106 msgid "Year, Month Number, Day" msgstr "" #: ../include/global_arrays.php:1107 msgid "Year, Month Name, Day" msgstr "" #: ../include/global_arrays.php:1116 msgid "After Boost" msgstr "" #: ../include/global_arrays.php:1126 ../include/global_arrays.php:1127 #: ../include/global_arrays.php:1128 ../include/global_arrays.php:1129 #: ../include/global_arrays.php:1130 ../include/global_arrays.php:1185 #: ../include/global_arrays.php:1186 ../include/global_arrays.php:1187 #: ../include/global_arrays.php:1188 ../include/global_arrays.php:1189 #, php-format msgid "%d MBytes" msgstr "" #: ../include/global_arrays.php:1131 ../include/global_arrays.php:1190 msgid "1 GByte" msgstr "" #: ../include/global_arrays.php:1132 ../include/global_arrays.php:1191 #, php-format msgid "%s GBytes" msgstr "" #: ../include/global_arrays.php:1133 ../include/global_arrays.php:1134 #: ../include/global_arrays.php:1192 ../include/global_arrays.php:1193 #, php-format msgid "%d GBytes" msgstr "" #: ../include/global_arrays.php:1147 #, fuzzy msgid "2,000 Data Source Items" msgstr "Datakällor" #: ../include/global_arrays.php:1148 #, fuzzy msgid "5,000 Data Source Items" msgstr "Datakällor" #: ../include/global_arrays.php:1149 #, fuzzy msgid "10,000 Data Source Items" msgstr "Inga datakällor" #: ../include/global_arrays.php:1150 #, fuzzy msgid "15,000 Data Source Items" msgstr "Inga datakällor" #: ../include/global_arrays.php:1151 #, fuzzy msgid "25,000 Data Source Items" msgstr "Inga datakällor" #: ../include/global_arrays.php:1152 msgid "50,000 Data Source Items (Default)" msgstr "" #: ../include/global_arrays.php:1153 #, fuzzy msgid "100,000 Data Source Items" msgstr "Inga datakällor" #: ../include/global_arrays.php:1154 #, fuzzy msgid "200,000 Data Source Items" msgstr "Inga datakällor" #: ../include/global_arrays.php:1155 #, fuzzy msgid "400,000 Data Source Items" msgstr "Inga datakällor" #: ../include/global_arrays.php:1172 msgid "2 Hours" msgstr "" #: ../include/global_arrays.php:1173 msgid "4 Hours" msgstr "" #: ../include/global_arrays.php:1174 msgid "6 Hours" msgstr "" #: ../include/global_arrays.php:1181 #, php-format msgid "%s Hours" msgstr "" #: ../include/global_arrays.php:1200 #, fuzzy, php-format msgid "%s Minutes" msgstr "Varje minut" #: ../include/global_arrays.php:1220 msgid "1 Megabyte" msgstr "" #: ../include/global_arrays.php:1221 ../include/global_arrays.php:1222 #: ../include/global_arrays.php:1223 ../include/global_arrays.php:1224 #: ../include/global_arrays.php:1225 ../include/global_arrays.php:1226 #, php-format msgid "%d Megabytes" msgstr "" #: ../include/global_arrays.php:1230 msgid "Send Now" msgstr "" #: ../include/global_arrays.php:1238 msgid "Take Ownership" msgstr "" #: ../include/global_arrays.php:1242 msgid "Inline PNG Image" msgstr "" #: ../include/global_arrays.php:1247 msgid "Inline JPEG Image" msgstr "" #: ../include/global_arrays.php:1248 msgid "Inline GIF Image" msgstr "" #: ../include/global_arrays.php:1251 msgid "Attached PNG Image" msgstr "" #: ../include/global_arrays.php:1254 msgid "Attached JPEG Image" msgstr "" #: ../include/global_arrays.php:1255 msgid "Attached GIF Image" msgstr "" #: ../include/global_arrays.php:1259 msgid "Inline PNG Image, LN Style" msgstr "" #: ../include/global_arrays.php:1261 msgid "Inline JPEG Image, LN Style" msgstr "" #: ../include/global_arrays.php:1262 msgid "Inline GIF Image, LN Style" msgstr "" #: ../include/global_arrays.php:1267 msgid "Text" msgstr "" #: ../include/global_arrays.php:1268 ../include/global_form.php:2223 #, fuzzy msgid "Tree" msgstr "Trädvy" #: ../include/global_arrays.php:1270 msgid "Horizontal Rule" msgstr "" #: ../include/global_arrays.php:1274 msgid "left" msgstr "" #: ../include/global_arrays.php:1275 msgid "center" msgstr "" #: ../include/global_arrays.php:1276 msgid "right" msgstr "" #: ../include/global_arrays.php:1280 msgid "Minute(s)" msgstr "" #: ../include/global_arrays.php:1281 msgid "Hour(s)" msgstr "" #: ../include/global_arrays.php:1282 msgid "Day(s)" msgstr "" #: ../include/global_arrays.php:1283 #, fuzzy msgid "Week(s)" msgstr "1 vecka" #: ../include/global_arrays.php:1284 msgid "Month(s), Day of Month" msgstr "" #: ../include/global_arrays.php:1285 msgid "Month(s), Day of Week" msgstr "" #: ../include/global_arrays.php:1286 #, fuzzy msgid "Year(s)" msgstr "1 år" #: ../include/global_arrays.php:1290 #, fuzzy msgid "Keep Graph Types" msgstr "Grafträd" #: ../include/global_arrays.php:1291 msgid "Keep Type and STACK" msgstr "" #: ../include/global_arrays.php:1292 msgid "Convert to AREA/STACK Graph" msgstr "" #: ../include/global_arrays.php:1293 msgid "Convert to LINE1 Graph" msgstr "" #: ../include/global_arrays.php:1294 msgid "Convert to LINE2 Graph" msgstr "" #: ../include/global_arrays.php:1295 msgid "Convert to LINE3 Graph" msgstr "" #: ../include/global_arrays.php:1299 msgid "No Totals" msgstr "" #: ../include/global_arrays.php:1300 msgid "Print all Legend Items" msgstr "" #: ../include/global_arrays.php:1301 msgid "Print totaling Legend Items Only" msgstr "" #: ../include/global_arrays.php:1305 #, fuzzy msgid "Total Similar Data Sources" msgstr "Inga datakällor" #: ../include/global_arrays.php:1306 #, fuzzy msgid "Total All Data Sources" msgstr "Inga datakällor" #: ../include/global_arrays.php:1310 #, fuzzy msgid "No Reordering" msgstr "Påväg upp" #: ../include/global_arrays.php:1311 #, fuzzy msgid "Data Source, Graph" msgstr "Datakälla" #: ../include/global_arrays.php:1312 #, fuzzy msgid "Graph, Data Source" msgstr "Datakälla" #: ../include/global_arrays.php:1319 msgid "contains" msgstr "" #: ../include/global_arrays.php:1320 msgid "does not contain" msgstr "" #: ../include/global_arrays.php:1321 msgid "begins with" msgstr "" #: ../include/global_arrays.php:1322 msgid "does not begin with" msgstr "" #: ../include/global_arrays.php:1323 msgid "ends with" msgstr "" #: ../include/global_arrays.php:1324 msgid "does not end with" msgstr "" #: ../include/global_arrays.php:1325 msgid "matches" msgstr "" #: ../include/global_arrays.php:1326 msgid "does not match with" msgstr "" #: ../include/global_arrays.php:1327 msgid "is less than" msgstr "" #: ../include/global_arrays.php:1328 msgid "is less than or equal" msgstr "" #: ../include/global_arrays.php:1329 msgid "is greater than" msgstr "" #: ../include/global_arrays.php:1330 msgid "is greater than or equal" msgstr "" #: ../include/global_arrays.php:1331 #, fuzzy msgid "is unknown" msgstr "Okänd" #: ../include/global_arrays.php:1332 msgid "is not unknown" msgstr "" #: ../include/global_arrays.php:1333 msgid "is empty" msgstr "" #: ../include/global_arrays.php:1334 msgid "is not empty" msgstr "" #: ../include/global_arrays.php:1335 msgid "matches regular expression" msgstr "" #: ../include/global_arrays.php:1336 msgid "does not match regular expression" msgstr "" #: ../include/global_arrays.php:1438 msgid "Fixed String" msgstr "" #: ../include/global_arrays.php:1443 msgid "Every 1 Hour" msgstr "" #: ../include/global_arrays.php:1449 msgid "Every Day" msgstr "" #: ../include/global_arrays.php:1450 #, fuzzy msgid "Every Week" msgstr "Varje minut" #: ../include/global_arrays.php:1451 ../include/global_arrays.php:1452 #, php-format msgid "Every %d Weeks" msgstr "" #: ../include/global_arrays.php:1477 msgctxt "A short textual representation of a month, three letters" msgid "Jan" msgstr "" #: ../include/global_arrays.php:1478 msgctxt "A short textual representation of a month, three letters" msgid "Feb" msgstr "" #: ../include/global_arrays.php:1479 msgctxt "A short textual representation of a month, three letters" msgid "Mar" msgstr "" #: ../include/global_arrays.php:1480 msgctxt "A short textual representation of a month, three letters" msgid "Apr" msgstr "" #: ../include/global_arrays.php:1481 msgctxt "A short textual representation of a month, three letters" msgid "May" msgstr "" #: ../include/global_arrays.php:1482 msgctxt "A short textual representation of a month, three letters" msgid "Jun" msgstr "" #: ../include/global_arrays.php:1483 msgctxt "A short textual representation of a month, three letters" msgid "Jul" msgstr "" #: ../include/global_arrays.php:1484 msgctxt "A short textual representation of a month, three letters" msgid "Aug" msgstr "" #: ../include/global_arrays.php:1485 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Sep" msgstr "Steg" #: ../include/global_arrays.php:1486 msgctxt "A short textual representation of a month, three letters" msgid "Oct" msgstr "" #: ../include/global_arrays.php:1487 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Nov" msgstr "Nej" #: ../include/global_arrays.php:1488 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Dec" msgstr "Enheter" #: ../include/global_arrays.php:1502 msgctxt "A textual representation of a day, three letters" msgid "Sun" msgstr "" #: ../include/global_arrays.php:1503 #, fuzzy msgctxt "A textual representation of a day, three letters" msgid "Mon" msgstr "1 månad" #: ../include/global_arrays.php:1504 msgctxt "A textual representation of a day, three letters" msgid "Tue" msgstr "" #: ../include/global_arrays.php:1505 msgctxt "A textual representation of a day, three letters" msgid "Wed" msgstr "" #: ../include/global_arrays.php:1506 msgctxt "A textual representation of a day, three letters" msgid "Thu" msgstr "" #: ../include/global_arrays.php:1507 msgctxt "A textual representation of a day, three letters" msgid "Fri" msgstr "" #: ../include/global_arrays.php:1508 msgctxt "A textual representation of a day, three letters" msgid "Sat" msgstr "" #: ../include/global_form.php:36 msgid "A useful name for this Data Storage and Polling Profile." msgstr "" #: ../include/global_form.php:40 msgid "New Profile" msgstr "" #: ../include/global_form.php:44 msgid "Polling Interval" msgstr "" #: ../include/global_form.php:45 msgid "The frequency that data will be collected from the Data Source?" msgstr "" #: ../include/global_form.php:53 msgid "" "How long can data be missing before RRDtool records unknown data. \n" "\t\t\tIncrease this value if your Data Source is unstable and you wish to " "carry forward \n" "\t\t\told data rather than show gaps in your graphs. This value is " "multiplied by the\n" "\t\t\tX-Files Factor to determine the actual amount of time." msgstr "" #: ../include/global_form.php:63 msgid "X-Files Factor" msgstr "" #: ../include/global_form.php:64 msgid "The amount of unknown data that can still be regarded as known." msgstr "" #: ../include/global_form.php:72 msgid "Consolidation Functions" msgstr "" #: ../include/global_form.php:73 ../include/global_form.php:105 msgid "How data is to be entered in RRAs." msgstr "" #: ../include/global_form.php:80 msgid "Is this the default storage profile?" msgstr "" #: ../include/global_form.php:86 msgid "RRDfile Size (in Bytes)" msgstr "" #: ../include/global_form.php:87 msgid "" "Based upon the number of Rows in all RRAs and the number of Consolidation " "Functions selected, the size of this entire in the RRDfile." msgstr "" #: ../include/global_form.php:109 msgid "New Profile RRA" msgstr "" #: ../include/global_form.php:113 msgid "Aggregation Level" msgstr "" #: ../include/global_form.php:114 msgid "" "The number of samples required prior to filling a row in the RRA " "specification. The first RRA should always have a value of 1." msgstr "" #: ../include/global_form.php:122 msgid "How many generations data is kept in the RRA." msgstr "" #: ../include/global_form.php:130 msgid "Effective Retention" msgstr "" #: ../include/global_form.php:131 msgid "" "Based upon the Aggregation Level, the Rows, and the Polling Interval the " "amount of data that will be retained in the RRA" msgstr "" #: ../include/global_form.php:136 msgid "RRA Size (in Bytes)" msgstr "" #: ../include/global_form.php:137 msgid "" "Based upon the number of Rows and the number of Consolidation Functions " "selected, the size of this RRA in the RRDfile." msgstr "" #: ../include/global_form.php:155 msgid "A useful name for this CDEF." msgstr "" #: ../include/global_form.php:175 msgid "The name of this Color." msgstr "" #: ../include/global_form.php:182 #, fuzzy msgid "Hex Value" msgstr "Värde" #: ../include/global_form.php:183 msgid "The hex value for this color; valid range: 000000-FFFFFF." msgstr "" #: ../include/global_form.php:191 msgid "Any named color should be read only." msgstr "" #: ../include/global_form.php:216 ../include/global_form.php:276 msgid "Enter a meaningful name for this data input method." msgstr "" #: ../include/global_form.php:223 msgid "Input Type" msgstr "Typ" #: ../include/global_form.php:224 msgid "" "Choose the method you wish to use to collect data for this Data Input method." msgstr "" #: ../include/global_form.php:230 msgid "Input String" msgstr "" #: ../include/global_form.php:231 msgid "" "The data that is sent to the script, which includes the complete path to the " "script and input sources in <> brackets." msgstr "" #: ../include/global_form.php:252 ../include/global_form.php:263 #, php-format msgid "Field [%s]" msgstr "" #: ../include/global_form.php:253 #, php-format msgid "Choose the associated field from the %s field." msgstr "" #: ../include/global_form.php:264 #, php-format msgid "" "Enter a name for this %s field. Note: If using name value pairs in your " "script, for example: NAME:VALUE, it is important that the name match your " "output field name identically to the script output name or names." msgstr "" #: ../include/global_form.php:283 msgid "Update RRDfile" msgstr "" #: ../include/global_form.php:284 msgid "Whether data from this output field is to be entered into the RRDfile." msgstr "" #: ../include/global_form.php:291 msgid "Regular Expression Match" msgstr "" #: ../include/global_form.php:292 msgid "" "If you want to require a certain regular expression to be matched against " "input data, enter it here (preg_match format)." msgstr "" #: ../include/global_form.php:299 msgid "Allow Empty Input" msgstr "" #: ../include/global_form.php:300 msgid "Check here if you want to allow NULL input in this field from the user." msgstr "" #: ../include/global_form.php:307 msgid "Special Type Code" msgstr "" #: ../include/global_form.php:308 #, php-format msgid "" "If this field should be treated specially by host templates, indicate so " "here. Valid keywords for this field are %s" msgstr "" #: ../include/global_form.php:340 msgid "The name given to this data template." msgstr "" #: ../include/global_form.php:371 msgid "" "Choose a name for this data source. It can include replacement variables " "such as |host_description| or |query_fieldName|.\n" " For a complete list of supported replacement tags, please see " "the Cacti documentation." msgstr "" #: ../include/global_form.php:376 #, fuzzy msgid "Data Source Path" msgstr "Datakälla" #: ../include/global_form.php:381 msgid "The full path to the RRDfile." msgstr "" #: ../include/global_form.php:390 msgid "The script/source used to gather data for this data source." msgstr "" #: ../include/global_form.php:396 ../include/global_form.php:1615 msgid "" "Select the Data Source Profile. The Data Source Profile controls polling " "interval, the data aggregation, and retention policy for the resulting Data " "Sources." msgstr "" #: ../include/global_form.php:402 #, fuzzy msgid "Step" msgstr "Steg" #: ../include/global_form.php:407 msgid "The amount of time in seconds between expected updates." msgstr "" #: ../include/global_form.php:411 #, fuzzy msgid "Data Source Active" msgstr "Datakälla" #: ../include/global_form.php:414 msgid "Whether Cacti should gather data for this data source or not." msgstr "" #: ../include/global_form.php:422 #, fuzzy msgid "Internal Data Source Name" msgstr "Uppdatera datakällor" #: ../include/global_form.php:427 msgid "" "Choose unique name to represent this piece of data inside of the RRDfile." msgstr "" #: ../include/global_form.php:430 msgid "Minimum Value (\"U\" for No Minimum)" msgstr "" #: ../include/global_form.php:435 msgid "The minimum value of data that is allowed to be collected." msgstr "" #: ../include/global_form.php:438 msgid "Maximum Value (\"U\" for No Maximum)" msgstr "" #: ../include/global_form.php:443 msgid "The maximum value of data that is allowed to be collected." msgstr "" #: ../include/global_form.php:446 #, fuzzy msgid "Data Source Type" msgstr "Datakälla" #: ../include/global_form.php:450 msgid "How data is represented in the RRA." msgstr "" #: ../include/global_form.php:458 msgid "" "The maximum amount of time that can pass before data is entered as " "'unknown'. (Usually 2x300=600)" msgstr "" #: ../include/global_form.php:464 msgid "Not Selected" msgstr "" #: ../include/global_form.php:465 msgid "" "When data is gathered, the data for this field will be put into this data " "source." msgstr "" #: ../include/global_form.php:474 msgid "" "Enter a name for this GPRINT preset, make sure it is something you recognize." msgstr "" #: ../include/global_form.php:481 msgid "GPRINT Text" msgstr "" #: ../include/global_form.php:482 msgid "Enter the custom GPRINT string here." msgstr "" #: ../include/global_form.php:500 msgid "Common Options" msgstr "" #: ../include/global_form.php:505 msgid "Title (--title)" msgstr "" #: ../include/global_form.php:509 msgid "" "The name that is printed on the graph. It can include replacement variables " "such as |host_description| or |query_fieldName|.\n" "\t\t\tFor a complete list of supported replacement tags, please see the " "Cacti documentation." msgstr "" #: ../include/global_form.php:514 msgid "Vertical Label (--vertical-label)" msgstr "" #: ../include/global_form.php:518 msgid "The label vertically printed to the left of the graph." msgstr "" #: ../include/global_form.php:522 msgid "Image Format (--imgformat)" msgstr "" #: ../include/global_form.php:526 msgid "" "The type of graph that is generated; PNG, GIF or SVG. The selection of " "graph image type is very RRDtool dependent." msgstr "" #: ../include/global_form.php:529 msgid "Height (--height)" msgstr "" #: ../include/global_form.php:533 msgid "" "The height (in pixels) of the graph area within the graph. This area does " "not include the legend, axis legends, or title." msgstr "" #: ../include/global_form.php:537 msgid "Width (--width)" msgstr "" #: ../include/global_form.php:541 msgid "" "The width (in pixels) of the graph area within the graph. This area does not " "include the legend, axis legends, or title." msgstr "" #: ../include/global_form.php:545 msgid "Base Value (--base)" msgstr "" #: ../include/global_form.php:549 msgid "Should be set to 1024 for memory and 1000 for traffic measurements." msgstr "" #: ../include/global_form.php:553 msgid "Slope Mode (--slope-mode)" msgstr "" #: ../include/global_form.php:556 msgid "" "Using Slope Mode evens out the shape of the graphs at the expense of\n" "\t\t\tsome on screen resolution." msgstr "" #: ../include/global_form.php:560 msgid "Scaling Options" msgstr "" #: ../include/global_form.php:565 msgid "Auto Scale" msgstr "" #: ../include/global_form.php:568 msgid "" "Auto scale the y-axis instead of defining an upper and lower limit. Note: if " "this is check both the\n" "\t\t\tUpper and Lower limit will be ignored." msgstr "" #: ../include/global_form.php:573 msgid "Auto Scale Options" msgstr "" #: ../include/global_form.php:576 msgid "" "Use
    \n" "\t\t\t--alt-autoscale to scale to the absolute minimum and maximum
    \n" "\t\t\t--alt-autoscale-max to scale to the maximum value, using a given lower " "limit
    \n" "\t\t\t--alt-autoscale-min to scale to the minimum value, using a given upper " "limit
    \n" "\t\t\t--alt-autoscale (with limits) to scale using both lower and upper " "limits (RRDtool default)
    " msgstr "" #: ../include/global_form.php:584 msgid "Use --alt-autoscale (ignoring given limits)" msgstr "" #: ../include/global_form.php:588 msgid "Use --alt-autoscale-max (accepting a lower limit)" msgstr "" #: ../include/global_form.php:592 msgid "Use --alt-autoscale-min (accepting an upper limit)" msgstr "" #: ../include/global_form.php:596 msgid "Use --alt-autoscale (accepting both limits, RRDtool default)" msgstr "" #: ../include/global_form.php:601 msgid "Logarithmic Scaling (--logarithmic)" msgstr "" #: ../include/global_form.php:605 msgid "Use Logarithmic y-axis scaling" msgstr "" #: ../include/global_form.php:608 msgid "SI Units for Logarithmic Scaling (--units=si)" msgstr "" #: ../include/global_form.php:611 msgid "" "Use SI Units for Logarithmic Scaling instead of using exponential notation." "
    \n" "\t\t\tNote: Linear graphs use SI notation by default." msgstr "" #: ../include/global_form.php:615 msgid "Rigid Boundaries Mode (--rigid)" msgstr "" #: ../include/global_form.php:618 msgid "" "Do not expand the lower and upper limit if the graph contains a value " "outside the valid range." msgstr "" #: ../include/global_form.php:621 msgid "Upper Limit (--upper-limit)" msgstr "" #: ../include/global_form.php:625 msgid "The maximum vertical value for the graph." msgstr "" #: ../include/global_form.php:629 msgid "Lower Limit (--lower-limit)" msgstr "" #: ../include/global_form.php:633 msgid "The minimum vertical value for the graph." msgstr "" #: ../include/global_form.php:637 #, fuzzy msgid "Grid Options" msgstr "Beskrivning" #: ../include/global_form.php:642 msgid "Unit Grid Value (--unit/--y-grid)" msgstr "" #: ../include/global_form.php:646 msgid "" "Sets the exponent value on the Y-axis for numbers. Note: This option is\n" "\t\t\tdeprecated and replaced by the --y-grid option. In this option, Y-" "axis grid lines appear\n" "\t\t\tat each grid step interval. Labels are placed every label factor " "lines." msgstr "" #: ../include/global_form.php:652 msgid "Unit Exponent Value (--units-exponent)" msgstr "" #: ../include/global_form.php:656 msgid "" "What unit cacti should use on the Y-axis. Use 3 to display everything in \"k" "\" or -6\n" "\t\t\tto display everything in \"u\" (micro)." msgstr "" #: ../include/global_form.php:661 msgid "Unit Length (--units-length <length>)" msgstr "" #: ../include/global_form.php:666 msgid "" "How many digits should RRDtool assume the y-axis labels to be? You may have " "to use this \n" "\t\t\toption to make enough space once you start fiddling with the y-axis " "labeling." msgstr "" #: ../include/global_form.php:670 msgid "No Gridfit (--no-gridfit)" msgstr "" #: ../include/global_form.php:673 msgid "" "In order to avoid anti-aliasing blurring effects RRDtool snaps points to " "device \n" "\t\t\tresolution pixels, this results in a crisper appearance. If this is " "not to your liking, you can \n" "\t\t\tuse this switch to turn this behavior off.
    Note: Gridfitting is turned off for PDF, EPS, SVG output by default." msgstr "" #: ../include/global_form.php:678 msgid "Alternative Y Grid (--alt-y-grid)" msgstr "" #: ../include/global_form.php:681 msgid "" "The algorithm ensures that you always have a grid, that there are enough but " "not too many grid lines, \n" "\t\t\tand that the grid is metric. This parameter will also ensure that you " "get enough decimals displayed \n" "\t\t\teven if your graph goes from 69.998 to 70.001.
    Note: This parameter may interfere with --alt-autoscale options." msgstr "" #: ../include/global_form.php:686 msgid "Axis Options" msgstr "" #: ../include/global_form.php:691 msgid "Right Axis (--right-axis <scale:shift>)" msgstr "" #: ../include/global_form.php:696 msgid "" "A second axis will be drawn to the right of the graph. It is tied to the " "left axis via the \n" "\t\t\tscale and shift parameters." msgstr "" #: ../include/global_form.php:700 msgid "Right Axis Label (--right-axis-label <string>)" msgstr "" #: ../include/global_form.php:705 msgid "The label for the right axis." msgstr "" #: ../include/global_form.php:708 msgid "Right Axis Format (--right-axis-format <format>)" msgstr "" #: ../include/global_form.php:713 #, php-format msgid "" "By default, the format of the axis labels gets determined automatically. \n" "\t\t\tIf you want to do this yourself, use this option with the same %lf " "arguments you know from the PRINT and GPRINT commands." msgstr "" #: ../include/global_form.php:717 msgid "Right Axis Formatter (--right-axis-formatter <formatname>)" msgstr "" #: ../include/global_form.php:722 msgid "" "When you setup the right axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted " "as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S" "\"). See also --units-length and --right-axis-format. Finally\n" "\t\t\t\"duration\" where values are interpreted as duration in " "milliseconds. Formatting follows the rules of valstrfduration qualified " "PRINT/GPRINT." msgstr "" #: ../include/global_form.php:728 msgid "Left Axis Formatter (--left-axis-formatter <formatname>)" msgstr "" #: ../include/global_form.php:733 msgid "" "When you setup the left axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted " "as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S" "\"). See also --units-length. Finally \"duration\" where values\n" "\t\t\tare interpreted as duration in milliseconds. Formatting follows the " "rules of valstrfduration qualified PRINT/GPRINT." msgstr "" #: ../include/global_form.php:739 msgid "Legend Options" msgstr "" #: ../include/global_form.php:744 msgid "Auto Padding" msgstr "" #: ../include/global_form.php:747 msgid "" "Pad text so that legend and graph data always line up. Note: this could " "cause\n" "\t\t\tgraphs to take longer to render because of the larger overhead. Also " "Auto Padding may not\n" "\t\t\tbe accurate on all types of graphs, consistent labeling usually helps." msgstr "" #: ../include/global_form.php:752 msgid "Dynamic Labels (--dynamic-labels)" msgstr "" #: ../include/global_form.php:755 msgid "Draw line markers as a line." msgstr "" #: ../include/global_form.php:758 msgid "Force Rules Legend (--force-rules-legend)" msgstr "" #: ../include/global_form.php:761 msgid "Force the generation of HRULE and VRULE legends." msgstr "" #: ../include/global_form.php:764 msgid "Tab Width (--tabwidth <pixels>)" msgstr "" #: ../include/global_form.php:769 msgid "By default the tab-width is 40 pixels, use this option to change it." msgstr "" #: ../include/global_form.php:772 msgid "Legend Position (--legend-position=<position>)" msgstr "" #: ../include/global_form.php:776 msgid "Place the legend at the given side of the graph." msgstr "" #: ../include/global_form.php:779 msgid "Legend Direction (--legend-direction=<direction>)" msgstr "" #: ../include/global_form.php:783 msgid "Place the legend items in the given vertical order." msgstr "" #: ../include/global_form.php:790 ../lib/api_aggregate.php:1216 #: ../lib/html.php:857 #, fuzzy msgid "Graph Item Type" msgstr "Grafmall" #: ../include/global_form.php:794 msgid "How data for this item is represented visually on the graph." msgstr "" #: ../include/global_form.php:809 msgid "The data source to use for this graph item." msgstr "" #: ../include/global_form.php:816 msgid "The color to use for the legend." msgstr "" #: ../include/global_form.php:819 msgid "Opacity/Alpha Channel" msgstr "" #: ../include/global_form.php:823 msgid "The opacity/alpha channel of the color." msgstr "" #: ../include/global_form.php:826 ../lib/rrd.php:2688 msgid "Consolidation Function" msgstr "" #: ../include/global_form.php:830 msgid "How data for this item is represented statistically on the graph." msgstr "" #: ../include/global_form.php:833 #, fuzzy msgid "CDEF Function" msgstr "Funktion" #: ../include/global_form.php:838 msgid "A CDEF (math) function to apply to this item on the graph or legend." msgstr "" #: ../include/global_form.php:841 #, fuzzy msgid "VDEF Function" msgstr "Funktion" #: ../include/global_form.php:846 msgid "A VDEF (math) function to apply to this item on the graph legend." msgstr "" #: ../include/global_form.php:849 msgid "Shift Data" msgstr "" #: ../include/global_form.php:852 msgid "" "Offset your data on the time axis (x-axis) by the amount specified in the " "'value' field." msgstr "" #: ../include/global_form.php:855 ../lib/rrd.php:2658 ../utilities.php:2338 msgid "Value" msgstr "Värde" #: ../include/global_form.php:860 msgid "" "[HRULE|VRULE]: The value of the graph item.
    \n" "\t\t\t[TICK]: The fraction for the tick line.
    \n" "\t\t\t[SHIFT]: The time offset in seconds." msgstr "" #: ../include/global_form.php:865 msgid "GPRINT Type" msgstr "" #: ../include/global_form.php:869 msgid "" "If this graph item is a GPRINT, you can optionally choose another format\n" "\t\t\there. You can define additional types under \"GPRINT Presets\"." msgstr "" #: ../include/global_form.php:873 msgid "Text Alignment (TEXTALIGN)" msgstr "" #: ../include/global_form.php:878 msgid "" "All subsequent legend line(s) will be aligned as given here. You may use " "this command multiple times in a single graph.\n" "\t\t\tThis command does not produce tabular layout.
    Note: You may want to insert a <HR> on the preceding graph item.
    \n" "\t\t\tNote: A <HR> on this legend line will obsolete " "this setting!" msgstr "" #: ../include/global_form.php:883 #, fuzzy msgid "Text Format" msgstr "Format för utdata" #: ../include/global_form.php:888 msgid "Text that will be displayed on the legend for this graph item." msgstr "" #: ../include/global_form.php:891 msgid "Insert Hard Return" msgstr "" #: ../include/global_form.php:894 msgid "Forces the legend to the next line after this item." msgstr "" #: ../include/global_form.php:897 msgid "Line Width (decimal)" msgstr "" #: ../include/global_form.php:902 msgid "" "In case LINE was chosen, specify width of line here. You must include a " "decimal precision, for example 2.00" msgstr "" #: ../include/global_form.php:905 msgid "Dashes (dashes[=on_s[,off_s[,on_s,off_s]...]])" msgstr "" #: ../include/global_form.php:910 msgid "The dashes modifier enables dashed line style." msgstr "" #: ../include/global_form.php:913 msgid "Dash Offset (dash-offset=offset)" msgstr "" #: ../include/global_form.php:918 msgid "" "The dash-offset parameter specifies an offset into the pattern at which the " "stroke begins." msgstr "" #: ../include/global_form.php:931 msgid "The name given to this graph template." msgstr "" #: ../include/global_form.php:938 msgid "Multiple Instances" msgstr "" #: ../include/global_form.php:939 msgid "" "Check this checkbox if there can be more than one Graph of this type per " "Device." msgstr "" #: ../include/global_form.php:963 msgid "" "Enter a name for this graph item input, make sure it is something you " "recognize." msgstr "" #: ../include/global_form.php:971 msgid "" "Enter a description for this graph item input to describe what this input is " "used for." msgstr "" #: ../include/global_form.php:978 msgid "Field Type" msgstr "" #: ../include/global_form.php:979 msgid "How data is to be represented on the graph." msgstr "" #: ../include/global_form.php:1002 msgid "General Device Options" msgstr "" #: ../include/global_form.php:1007 msgid "Give this host a meaningful description." msgstr "" #: ../include/global_form.php:1014 ../include/global_form.php:1639 msgid "Fully qualified hostname or IP address for this device." msgstr "" #: ../include/global_form.php:1021 #, fuzzy msgid "Poller Association" msgstr "Insamlingsvarningar" #: ../include/global_form.php:1029 msgid "Device Site Association" msgstr "" #: ../include/global_form.php:1030 msgid "What Site is this Device associated with." msgstr "" #: ../include/global_form.php:1039 msgid "" "Choose the Device Template to use to define the default Graph Templates and " "Data Queries associated with this Device." msgstr "" #: ../include/global_form.php:1046 msgid "Number of Collection Threads" msgstr "" #: ../include/global_form.php:1047 msgid "" "The number of concurrent threads to use for polling this device. This " "applies to the Spine poller only." msgstr "" #: ../include/global_form.php:1054 msgid "Disable Device" msgstr "" #: ../include/global_form.php:1055 msgid "Check this box to disable all checks for this host." msgstr "" #: ../include/global_form.php:1068 ../include/global_form.php:1668 msgid "Choose the SNMP version for this device." msgstr "" #: ../include/global_form.php:1076 ../include/global_form.php:1676 msgid "SNMP Community" msgstr "" #: ../include/global_form.php:1077 ../include/global_form.php:1677 msgid "SNMP read community for this device." msgstr "" #: ../include/global_form.php:1096 msgid "SNMP v3 authentication pass phrase for this device." msgstr "" #: ../include/global_form.php:1105 msgid "Choose the SNMPv3 authentication protocol." msgstr "" #: ../include/global_form.php:1113 msgid "Choose the SNMPv3 privacy passphrase." msgstr "" #: ../include/global_form.php:1122 msgid "Choose the SNMPv3 privacy protocol." msgstr "" #: ../include/global_form.php:1129 msgid "SNMP Context (v3)" msgstr "" #: ../include/global_form.php:1130 msgid "Enter the SNMP v3 context to use for this device." msgstr "" #: ../include/global_form.php:1138 msgid "SNMP Engine ID (v3)" msgstr "" #: ../include/global_form.php:1139 msgid "" "Enter the SNMP v3 Engine Id to use for this device. Leave this field empty " "to use the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "" #: ../include/global_form.php:1148 #, fuzzy msgid "Enter the UDP port number to use for SNMP (default is 161)." msgstr "Fördefinierad UDP-port för SNMP förfrågningar. Vanligen 161" #: ../include/global_form.php:1165 msgid "Maximum OIDs Per Get Request" msgstr "" #: ../include/global_form.php:1174 msgid "Availability/Reachability Options" msgstr "" #: ../include/global_form.php:1178 ../include/global_settings.php:547 msgid "Downed Device Detection" msgstr "" #: ../include/global_form.php:1179 ../include/global_settings.php:548 msgid "" "The method Cacti will use to determine if a host is available for polling. " "
    NOTE: It is recommended that, at a minimum, SNMP always be selected." msgstr "" #: ../include/global_form.php:1188 msgid "" "The type of ping packet to sent.
    NOTE: ICMP on Linux/UNIX requires " "root privileges." msgstr "" #: ../include/global_form.php:1225 ../include/global_form.php:1763 msgid "Additional Options" msgstr "" #: ../include/global_form.php:1229 ../include/global_form.php:1768 #: ../pollers.php:70 msgid "Notes" msgstr "" #: ../include/global_form.php:1230 ../include/global_form.php:1769 msgid "Enter notes to this host." msgstr "" #: ../include/global_form.php:1237 msgid "External ID" msgstr "" #: ../include/global_form.php:1238 msgid "External ID for linking Cacti data to external monitoring systems." msgstr "" #: ../include/global_form.php:1260 msgid "A useful name for this host template." msgstr "" #: ../include/global_form.php:1280 msgid "A name for this data query." msgstr "" #: ../include/global_form.php:1288 msgid "A description for this data query." msgstr "" #: ../include/global_form.php:1295 msgid "XML Path" msgstr "" #: ../include/global_form.php:1296 msgid "" "The full path to the XML file containing definitions for this data query." msgstr "" #: ../include/global_form.php:1305 msgid "" "Choose the input method for this Data Query. This input method defines how " "data is collected for each Device associated with the Data Query." msgstr "" #: ../include/global_form.php:1324 msgid "" "Choose the Graph Template to use for this Data Query Graph Template item." msgstr "" #: ../include/global_form.php:1350 msgid "A name for this associated graph." msgstr "" #: ../include/global_form.php:1378 msgid "A useful name for this graph tree." msgstr "" #: ../include/global_form.php:1385 ../include/global_form.php:2281 #: ../lib/api_automation.php:1334 ../tree.php:1279 msgid "Sorting Type" msgstr "" #: ../include/global_form.php:1386 ../include/global_form.php:2282 msgid "Choose how items in this tree will be sorted." msgstr "" #: ../include/global_form.php:1392 msgid "Publish" msgstr "" #: ../include/global_form.php:1393 msgid "Should this Tree be published for users to access?" msgstr "" #: ../include/global_form.php:1428 msgid "An Email Address where the User can be reached." msgstr "" #: ../include/global_form.php:1436 msgid "" "Enter the password for this user twice. Remember that passwords are case " "sensitive!" msgstr "" #: ../include/global_form.php:1444 ../user_group_admin.php:88 msgid "Determines if user is able to login." msgstr "" #: ../include/global_form.php:1450 ../tree.php:1561 msgid "Locked" msgstr "" #: ../include/global_form.php:1451 #, fuzzy msgid "Determines if the user account is locked." msgstr "Åtkomst nekad, användarkonto avstängt." #: ../include/global_form.php:1456 msgid "Account Options" msgstr "" #: ../include/global_form.php:1458 msgid "Set any user account specific options here." msgstr "" #: ../include/global_form.php:1462 msgid "Must Change Password at Next Login" msgstr "" #: ../include/global_form.php:1474 msgid "Maintain Custom Graph and User Settings" msgstr "" #: ../include/global_form.php:1481 #, fuzzy msgid "Graph Options" msgstr "Grafmallar" #: ../include/global_form.php:1483 msgid "Set any graph specific options here." msgstr "" #: ../include/global_form.php:1487 msgid "User Has Rights to Tree View" msgstr "" #: ../include/global_form.php:1493 msgid "User Has Rights to List View" msgstr "" #: ../include/global_form.php:1499 msgid "User Has Rights to Preview View" msgstr "" #: ../include/global_form.php:1506 ../user_group_admin.php:130 msgid "Login Options" msgstr "" #: ../include/global_form.php:1509 msgid "What to do when this user logs in." msgstr "" #: ../include/global_form.php:1514 msgid "Show the page that user pointed their browser to." msgstr "" #: ../include/global_form.php:1518 msgid "Show the default console screen." msgstr "" #: ../include/global_form.php:1522 msgid "Show the default graph screen." msgstr "" #: ../include/global_form.php:1528 ../utilities.php:765 msgid "Authentication Realm" msgstr "" #: ../include/global_form.php:1529 msgid "" "Only used if you have LDAP or Web Basic Authentication enabled. Changing " "this to a non-enabled realm will effectively disable the user." msgstr "" #: ../include/global_form.php:1566 #, fuzzy msgid "Discovery Rules" msgstr "Enheter" #: ../include/global_form.php:1584 msgid "Import Template from Local File" msgstr "Importera mall från lokal fil" #: ../include/global_form.php:1585 msgid "" "If the XML file containing template data is located on your local machine, " "select it here." msgstr "" "Om XML-filen som innehåller mallen finns på din lokala maskin, välj den här." #: ../include/global_form.php:1590 msgid "Import Template from Text" msgstr "Importera mall från text" #: ../include/global_form.php:1591 #, fuzzy msgid "" "If you have the XML file containing template data as text, you can paste it " "into this box to import it." msgstr "" "Om XML-filen som innehåller mallen finns på din lokala maskin, välj den här." #: ../include/global_form.php:1599 msgid "Preview Import Only" msgstr "" #: ../include/global_form.php:1601 msgid "" "If checked, Cacti will not import the template, but rather compare the " "imported Template to the existing Template data. If you are acceptable of " "the change, you can them import." msgstr "" #: ../include/global_form.php:1606 msgid "Remove Orphaned Graph Items" msgstr "" #: ../include/global_form.php:1608 msgid "" "If checked, Cacti will delete any Graph Items from both the Graph Template " "and associated Graphs that are not included in the imported Graph Template." msgstr "" #: ../include/global_form.php:1625 msgid "General SNMP Entity Options" msgstr "" #: ../include/global_form.php:1631 msgid "Give this SNMP entity a meaningful description." msgstr "" #: ../include/global_form.php:1646 msgid "Disable SNMP Notification Receiver" msgstr "" #: ../include/global_form.php:1647 msgid "" "Check this box if you temporary do not want to send SNMP notifications to " "this host." msgstr "" #: ../include/global_form.php:1654 msgid "Maximum Log Size" msgstr "Maximal loggstorlek" #: ../include/global_form.php:1655 msgid "" "Maximum number of day's notification log entries for this receiver need to " "be stored." msgstr "" #: ../include/global_form.php:1695 msgid "SNMP Auth Password (v3)" msgstr "" #: ../include/global_form.php:1696 msgid "SNMP v3 user password for this device." msgstr "" #: ../include/global_form.php:1705 msgid "" "Choose the SNMPv3 Authorization Protocol.
    Note: SHA authentication " "support is only available if you have OpenSSL installed." msgstr "" #: ../include/global_form.php:1712 msgid "SNMP Privacy Password (v3)" msgstr "" #: ../include/global_form.php:1722 msgid "" "Choose the SNMPv3 Privacy Protocol.
    Note: DES/AES encryption support is " "only available if you have OpenSSL installed." msgstr "" #: ../include/global_form.php:1728 msgid "SNMP Engine ID" msgstr "" #: ../include/global_form.php:1729 msgid "" "Defines the unique SNMP Engine ID to identify this peer. Following format " "will be recommended:
    FlexibleLength+Enterprise(8000) + IANA-Cacti(5d75) + " "MAC-Following(03) + YOUR-MAC-ADDRESS(e.g.:D89D67287B00).
    Per default the " "locally administrated MAC 02-FF-FF-FF-FF-FF will be used." msgstr "" #: ../include/global_form.php:1738 #, fuzzy msgid "The UDP port to be used for SNMP traps. Typically, 162." msgstr "Fördefinierad UDP-port för SNMP förfrågningar. Vanligen 161" #: ../include/global_form.php:1754 msgid "SNMP Message Type" msgstr "" #: ../include/global_form.php:1755 msgid "" "SNMP traps are always unacknowledged. To send out acknowledged SNMP " "notifications, formally called \"INFORMS\", SNMPv2 or above will be required." msgstr "" #: ../include/global_form.php:1787 ../include/global_form.php:2046 #: ../links.php:379 #, fuzzy msgid "Title" msgstr "Graftitel" #: ../include/global_form.php:1788 msgid "The new Title of the aggregated Graph." msgstr "" #: ../include/global_form.php:1795 ../include/global_form.php:1878 #: ../include/global_form.php:1980 msgid "Prefix" msgstr "" #: ../include/global_form.php:1796 msgid "A Prefix for all GPRINT lines to distinguish e.g. different hosts." msgstr "" #: ../include/global_form.php:1804 ../include/global_form.php:1887 #: ../include/global_form.php:1989 msgid "" "Use this Option to create e.g. STACKed graphs.
    AREA/STACK: 1st graph " "keeps AREA/STACK items, others convert to STACK
    LINE1: all items convert " "to LINE1 items
    LINE2: all items convert to LINE2 items
    LINE3: all " "items convert to LINE3 items" msgstr "" #: ../include/global_form.php:1815 ../include/global_form.php:1898 #: ../include/global_form.php:2000 msgid "Totaling" msgstr "" #: ../include/global_form.php:1816 ../include/global_form.php:1899 #: ../include/global_form.php:2001 msgid "" "Please check those Items that shall be totaled in the \"Total\" column, when " "selecting any totaling option here." msgstr "" #: ../include/global_form.php:1823 ../include/global_form.php:1907 #: ../include/global_form.php:2009 #, fuzzy msgid "Total Type" msgstr "Typ" #: ../include/global_form.php:1824 ../include/global_form.php:1908 #: ../include/global_form.php:2010 msgid "Which type of totaling shall be performed." msgstr "" #: ../include/global_form.php:1831 ../include/global_form.php:1916 #: ../include/global_form.php:2018 msgid "Prefix for GPRINT Totals" msgstr "" #: ../include/global_form.php:1832 ../include/global_form.php:1917 #: ../include/global_form.php:2019 msgid "A Prefix for all totaling GPRINT lines." msgstr "" #: ../include/global_form.php:1839 ../include/global_form.php:1924 #: ../include/global_form.php:2026 msgid "Reorder Type" msgstr "" #: ../include/global_form.php:1840 ../include/global_form.php:1925 #: ../include/global_form.php:2027 msgid "Reordering of Graphs." msgstr "" #: ../include/global_form.php:1860 msgid "Please name this Aggregate Graph." msgstr "" #: ../include/global_form.php:1867 msgid "Propagation Enabled" msgstr "" #: ../include/global_form.php:1868 msgid "Is this to carry the template?" msgstr "" #: ../include/global_form.php:1874 msgid "Aggregate Graph Settings" msgstr "" #: ../include/global_form.php:1879 ../include/global_form.php:1981 msgid "" "A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may " "use both Host as well as Data Query replacement variables in this prefix." msgstr "" #: ../include/global_form.php:1959 #, fuzzy msgid "Aggregate Template Name" msgstr "Mallnamn" #: ../include/global_form.php:1960 msgid "Please name this Aggregate Template." msgstr "" #: ../include/global_form.php:1967 #, fuzzy msgid "Source Graph Template" msgstr "Grafmall" #: ../include/global_form.php:1968 msgid "The Graph Template that this Aggregate Template is based upon." msgstr "" #: ../include/global_form.php:1976 msgid "Aggregate Template Settings" msgstr "" #: ../include/global_form.php:2050 msgid "The name of this Color Template." msgstr "" #: ../include/global_form.php:2061 msgid "A nice Color" msgstr "" #: ../include/global_form.php:2071 msgid "A useful name for this Template." msgstr "" #: ../include/global_form.php:2085 ../include/global_form.php:2127 #: ../lib/api_automation.php:1208 ../lib/api_automation.php:1270 #, fuzzy msgid "Operation" msgstr "Beskrivning" #: ../include/global_form.php:2086 ../include/global_form.php:2128 msgid "Logical operation to combine rules." msgstr "" #: ../include/global_form.php:2094 ../include/global_form.php:2136 msgid "The Field Name that shall be used for this Rule Item." msgstr "" #: ../include/global_form.php:2102 ../include/global_form.php:2144 msgid "Operator." msgstr "" #: ../include/global_form.php:2109 ../include/global_form.php:2151 #: ../include/global_form.php:2297 msgid "Matching Pattern" msgstr "" #: ../include/global_form.php:2110 ../include/global_form.php:2152 msgid "The Pattern to be matched against." msgstr "" #: ../include/global_form.php:2118 ../include/global_form.php:2160 #: ../include/global_form.php:2314 msgid "Sequence." msgstr "" #: ../include/global_form.php:2169 ../include/global_form.php:2216 msgid "A useful name for this Rule." msgstr "" #: ../include/global_form.php:2177 msgid "Choose a Data Query to apply to this rule." msgstr "" #: ../include/global_form.php:2188 msgid "Choose any of the available Graph Types to apply to this rule." msgstr "" #: ../include/global_form.php:2203 ../include/global_form.php:2261 #, fuzzy msgid "Enable Rule" msgstr "Aktiverad" #: ../include/global_form.php:2204 ../include/global_form.php:2262 msgid "Check this box to enable this rule." msgstr "" #: ../include/global_form.php:2224 msgid "Choose a Tree for the new Tree Items." msgstr "" #: ../include/global_form.php:2231 msgid "Leaf Item Type" msgstr "" #: ../include/global_form.php:2232 msgid "The Item Type that shall be dynamically added to the tree." msgstr "" #: ../include/global_form.php:2239 #, fuzzy msgid "Graph Grouping Style" msgstr "Graftitel" #: ../include/global_form.php:2240 msgid "" "Choose how graphs are grouped when drawn for this particular host on the " "tree." msgstr "" #: ../include/global_form.php:2250 msgid "Optional: Sub-Tree Item" msgstr "" #: ../include/global_form.php:2251 msgid "" "Choose a Sub-Tree Item to hook in.
    Make sure, that it is still there when " "this rule is executed!" msgstr "" #: ../include/global_form.php:2272 msgid "Header Type" msgstr "" #: ../include/global_form.php:2273 msgid "Choose an Object to build a new Sub-header." msgstr "" #: ../include/global_form.php:2289 msgid "Propagate Changes" msgstr "" #: ../include/global_form.php:2290 msgid "" "Propagate all options on this form (except for 'Title') to all child " "'Header' items." msgstr "" #: ../include/global_form.php:2298 msgid "" "The String Pattern (Regular Expression) to match against.
    Enclosing '/' " "must NOT be provided!" msgstr "" #: ../include/global_form.php:2305 msgid "Replacement Pattern" msgstr "" #: ../include/global_form.php:2306 msgid "" "The Replacement String Pattern for use as a Tree Header.
    Refer to a Match " "by e.g. \\${1} for the first match!" msgstr "" #: ../include/global_languages.php:592 msgid " T" msgstr "" #: ../include/global_languages.php:594 msgid " G" msgstr "" #: ../include/global_languages.php:596 msgid " M" msgstr "" #: ../include/global_languages.php:598 msgid " K" msgstr "" #: ../include/global_session.php:91 ../lib/html_filter.php:66 msgid "Enter a search term" msgstr "" #: ../include/global_session.php:92 msgid "Enter a regular expression" msgstr "" #: ../include/global_settings.php:38 ../include/global_settings.php:836 #: ../include/global_settings.php:940 ../include/global_settings.php:1565 #: ../managers.php:39 ../user_admin.php:1921 ../user_group_admin.php:1642 msgid "General" msgstr "Allmän" #: ../include/global_settings.php:39 msgid "Paths" msgstr "" #: ../include/global_settings.php:40 #, fuzzy msgid "Device Defaults" msgstr "Enheter" #: ../include/global_settings.php:41 ../include/global_settings.php:449 #, fuzzy msgid "Poller" msgstr "Insamlare" #: ../include/global_settings.php:42 #, fuzzy msgid "Data Storage" msgstr "Datakälla" #: ../include/global_settings.php:43 msgid "Visual" msgstr "" #: ../include/global_settings.php:44 ../lib/functions.php:3800 #: ../lib/functions.php:3805 #, fuzzy msgid "Authentication" msgstr "Funktion" #: ../include/global_settings.php:45 #, fuzzy msgid "Data Source Statistics" msgstr "Datakällor" #: ../include/global_settings.php:46 msgid "Performance" msgstr "" #: ../include/global_settings.php:47 msgid "Spikes" msgstr "" #: ../include/global_settings.php:48 msgid "Mail/Reporting/DNS" msgstr "" #: ../include/global_settings.php:52 msgid "Time Spanning/Shifting" msgstr "" #: ../include/global_settings.php:53 #, fuzzy msgid "Graph Thumbnail Settings" msgstr "Miniatyrgrafer" #: ../include/global_settings.php:54 #, fuzzy msgid "Tree Settings" msgstr "Inställningar för Cacti" #: ../include/global_settings.php:55 #, fuzzy msgid "Graph Fonts" msgstr "Grafer" #: ../include/global_settings.php:85 #, fuzzy msgid "Required Tool Paths" msgstr "Versioner på verktyg som krävs" #: ../include/global_settings.php:90 msgid "snmpwalk Binary Path" msgstr "" #: ../include/global_settings.php:91 msgid "The path to your snmpwalk binary." msgstr "" #: ../include/global_settings.php:96 msgid "snmpget Binary Path" msgstr "" #: ../include/global_settings.php:97 msgid "The path to your snmpget binary." msgstr "" #: ../include/global_settings.php:102 msgid "snmpbulkwalk Binary Path" msgstr "" #: ../include/global_settings.php:103 msgid "The path to your snmpbulkwalk binary." msgstr "" #: ../include/global_settings.php:108 msgid "snmpgetnext Binary Path" msgstr "" #: ../include/global_settings.php:109 msgid "The path to your snmpgetnext binary." msgstr "" #: ../include/global_settings.php:114 msgid "snmptrap Binary Path" msgstr "" #: ../include/global_settings.php:115 msgid "The path to your snmptrap binary." msgstr "" #: ../include/global_settings.php:120 msgid "RRDtool Binary Path" msgstr "" #: ../include/global_settings.php:121 msgid "The path to the rrdtool binary." msgstr "" #: ../include/global_settings.php:126 msgid "PHP Binary Path" msgstr "" #: ../include/global_settings.php:127 msgid "" "The path to your PHP binary file (may require a php recompile to get this " "file)." msgstr "" #: ../include/global_settings.php:132 msgid "Logging" msgstr "Loggning" #: ../include/global_settings.php:137 msgid "Cacti Log Path" msgstr "" #: ../include/global_settings.php:138 msgid "" "The path to your Cacti log file (if blank, defaults to /log/" "cacti.log)" msgstr "" #: ../include/global_settings.php:144 msgid "Rotate the Cacti Log Nightly" msgstr "" #: ../include/global_settings.php:145 msgid "This will rotate the Cacti Log every night at midnight." msgstr "" #: ../include/global_settings.php:150 msgid "Log Retention" msgstr "" #: ../include/global_settings.php:151 msgid "" "The number of days to retain old logs. Use 0 to never remove any logs. " "(0-365)" msgstr "" #: ../include/global_settings.php:157 msgid "Alternate Poller Path" msgstr "" #: ../include/global_settings.php:162 msgid "Spine Binary File Location" msgstr "" #: ../include/global_settings.php:163 msgid "The path to Spine binary." msgstr "" #: ../include/global_settings.php:168 msgid "Spine Config File Path" msgstr "" #: ../include/global_settings.php:169 msgid "" "The path to Spine configuration file. By default, in the cwd of spine, or /" "etc if not specified." msgstr "" #: ../include/global_settings.php:174 ../lib/functions.php:2238 #: ../rrdcleaner.php:296 #, fuzzy msgid "RRD Cleaner" msgstr "Rensa" #: ../include/global_settings.php:179 msgid "RRDfile Auto Clean" msgstr "" #: ../include/global_settings.php:180 msgid "" "Automatically Delete, Archive, or Delete RRDfiles when removed from Cacti" msgstr "" #: ../include/global_settings.php:185 msgid "RRDfile Auto Clean Method" msgstr "" #: ../include/global_settings.php:186 msgid "The method used to Clean RRDfiles from Cacti after their deletion." msgstr "" #: ../include/global_settings.php:192 msgid "Archive directory" msgstr "" #: ../include/global_settings.php:193 msgid "" "This is the directory where RRDfiles are moved for " "Archive" msgstr "" #: ../include/global_settings.php:201 msgid "Event Logging" msgstr "Eventloggning" #: ../include/global_settings.php:206 #, fuzzy msgid "Log Destination" msgstr "Beskrivning" #: ../include/global_settings.php:207 msgid "How will Cacti handle event logging." msgstr "Hur Cacti hanterar eventloggning." #: ../include/global_settings.php:213 msgid "Web Events" msgstr "" #: ../include/global_settings.php:214 msgid "What Cacti website messages should be placed in the log." msgstr "" #: ../include/global_settings.php:219 msgid "SNMP Messages" msgstr "" #: ../include/global_settings.php:223 #, fuzzy msgid "Graph Syntax" msgstr "Graftitel" #: ../include/global_settings.php:227 msgid "Developer Mode" msgstr "" #: ../include/global_settings.php:233 #, fuzzy msgid "Log Settings" msgstr "Inställningar för Cacti" #: ../include/global_settings.php:238 msgid "Generic Log Level" msgstr "" #: ../include/global_settings.php:239 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: ../include/global_settings.php:245 msgid "Selective File Debug" msgstr "" #: ../include/global_settings.php:246 msgid "" "Select which files you wish to place in Debug mode regardless of the Generic " "Log Level setting. Any files selected will be treated as they are in Debug " "mode." msgstr "" #: ../include/global_settings.php:252 msgid "Selective Plugin Debug" msgstr "" #: ../include/global_settings.php:253 msgid "" "Select which Plugins you wish to place in Debug mode regardless of the " "Generic Log Level setting. Any files used by this plugin will be treated as " "they are in Debug mode." msgstr "" #: ../include/global_settings.php:259 msgid "Selective Device Debug" msgstr "" #: ../include/global_settings.php:260 msgid "" "A comma delimited list of Device ID's that you wish to be in Debug mode " "during data collection. This Debug level is only in place during the Cacti " "polling process." msgstr "" #: ../include/global_settings.php:267 msgid "Poller Syslog/Eventlog Selection" msgstr "" #: ../include/global_settings.php:268 msgid "" "If you are using the Syslog/Eventlog, What Cacti poller messages should be " "placed in the Syslog/Eventlog." msgstr "" #: ../include/global_settings.php:273 msgid "Statistics" msgstr "" #: ../include/global_settings.php:277 ../lib/clog_webapi.php:333 #: ../utilities.php:1002 #, fuzzy msgid "Warnings" msgstr "Insamlingsvarningar" #: ../include/global_settings.php:281 ../lib/clog_webapi.php:334 #: ../utilities.php:1003 msgid "Errors" msgstr "" #: ../include/global_settings.php:287 msgid "Other Defaults" msgstr "" #: ../include/global_settings.php:292 msgid "Has Graphs/Data Sources Checked" msgstr "" #: ../include/global_settings.php:293 msgid "Should the Has Graphs and Has Data Sources be Checked by Default." msgstr "" #: ../include/global_settings.php:298 #, fuzzy msgid "Graph Template Image Format" msgstr "Grafmall" #: ../include/global_settings.php:299 msgid "The default Image Format to be used for all new Graph Templates." msgstr "" #: ../include/global_settings.php:305 #, fuzzy msgid "Graph Template Height" msgstr "Grafmall" #: ../include/global_settings.php:306 ../include/global_settings.php:314 msgid "The default Graph Width to be used for all new Graph Templates." msgstr "" #: ../include/global_settings.php:313 #, fuzzy msgid "Graph Template Width" msgstr "Grafmall" #: ../include/global_settings.php:321 msgid "Language Support" msgstr "" #: ../include/global_settings.php:322 msgid "" "Choose 'enabled' to allow the localization of Cacti. The strict mode " "requires that the requested language will also be supported by all plugins " "being installed at your system. If that's not the fact everything will be " "displayed in English." msgstr "" #: ../include/global_settings.php:328 msgid "Language" msgstr "" #: ../include/global_settings.php:329 msgid "Default language for this system." msgstr "" #: ../include/global_settings.php:335 msgid "Auto Language Detection" msgstr "" #: ../include/global_settings.php:336 msgid "" "Allow to automatically determine the 'default' language of the user and " "provide it at login time if that language is supported by Cacti. If " "disabled, the default language will be in force until the user elects " "another language." msgstr "" #: ../include/global_settings.php:342 ../include/global_settings.php:1819 msgid "Date Display Format" msgstr "" #: ../include/global_settings.php:343 msgid "The System default date format to use in Cacti." msgstr "" #: ../include/global_settings.php:349 ../include/global_settings.php:1826 msgid "Date Separator" msgstr "" #: ../include/global_settings.php:350 msgid "The System default date separator to be used in Cacti." msgstr "" #: ../include/global_settings.php:356 #, fuzzy msgid "Other Settings" msgstr "Inställningar för Cacti" #: ../include/global_settings.php:361 ../utilities.php:258 #, fuzzy msgid "RRDtool Version" msgstr "RRDTool version" #: ../include/global_settings.php:362 #, fuzzy msgid "The version of RRDtool that you have installed." msgstr "Versionen av RRDTool som är installerad." #: ../include/global_settings.php:368 msgid "Graph Permission Method" msgstr "" #: ../include/global_settings.php:369 msgid "" "There are two methods for determining a User's Graph Permissions. The first " "is 'Permissive'. Under the 'Permissive' setting, a User only needs access " "to either the Graph, Device or Graph Template to gain access to the Graphs " "that apply to them. Under 'Restrictive', the User must have access to the " "Graph, the Device, and the Graph Template to gain access to the Graph." msgstr "" #: ../include/global_settings.php:376 msgid "Graph/Data Source Creation Method" msgstr "" #: ../include/global_settings.php:377 msgid "" "If set to Simple, Graphs and Data Sources can only be created from New " "Graphs. If Advanced, legacy Graph and Data Source creation is supported." msgstr "" #: ../include/global_settings.php:382 msgid "Show Form/Setting Help Inline" msgstr "" #: ../include/global_settings.php:383 msgid "" "When checked, Form and Setting Help will be show inline. Otherwise it will " "be presented when hovering over the help button." msgstr "" #: ../include/global_settings.php:388 msgid "Deletion Verification" msgstr "" #: ../include/global_settings.php:389 msgid "Prompt user before item deletion." msgstr "Fråga användare innan borttagning av något i Cacti." #: ../include/global_settings.php:394 msgid "Hide Cacti Console" msgstr "" #: ../include/global_settings.php:395 msgid "" "For use with Cacti's External Link Support. Using this setting, you can " "replace the Cacti Console with your own page." msgstr "" #: ../include/global_settings.php:401 msgid "Enable Drag-N-Drop" msgstr "" #: ../include/global_settings.php:402 msgid "" "Some of Cacti's interfaces support Drag-N-Drop. If checked this option will " "be enabled. Note: For visually impaired user, this option may be disabled." msgstr "" #: ../include/global_settings.php:407 msgid "Force Connections over HTTPS" msgstr "" #: ../include/global_settings.php:408 msgid "" "When checked, any attempts to access Cacti will be redirected to HTTPS to " "insure high security." msgstr "" #: ../include/global_settings.php:419 msgid "Enable Automatic Graph Creation" msgstr "" #: ../include/global_settings.php:420 msgid "" "When disabled, Cacti Automation will not actively create any Graph.This is " "useful when adjusting Host settings so as to avoid creating new Graphs each " "time you save an object. Invoking Automation Rules manually will still be " "possible." msgstr "" #: ../include/global_settings.php:427 msgid "Enable Automatic Tree Item Creation" msgstr "" #: ../include/global_settings.php:428 msgid "" "When disabled, Cacti Automation will not actively create any Tree Item.This " "is useful when adjusting Host or Graph settings so as to avoid creating new " "Tree Entries each time you save an object. Invoking Rules manually will " "still be possible." msgstr "" #: ../include/global_settings.php:436 #, fuzzy msgid "General Defaults" msgstr "Enheter" #: ../include/global_settings.php:442 msgid "The default Site for all new Devices." msgstr "" #: ../include/global_settings.php:450 msgid "The default Poller for all new Devices." msgstr "" #: ../include/global_settings.php:457 msgid "Re-index Method for Data Queries" msgstr "" #: ../include/global_settings.php:458 msgid "The default Re-index Method to use for all Data Queries." msgstr "" #: ../include/global_settings.php:464 msgid "SNMP Defaults" msgstr "" #: ../include/global_settings.php:470 msgid "Default SNMP version for all new hosts." msgstr "" #: ../include/global_settings.php:477 msgid "Default SNMP read community for all new hosts." msgstr "" #: ../include/global_settings.php:483 #, fuzzy msgid "Username (v3)" msgstr "Användarnamn:" #: ../include/global_settings.php:484 msgid "The SNMP v3 Username for polling hosts." msgstr "" #: ../include/global_settings.php:490 #, fuzzy msgid "Password (v3)" msgstr "Lösenord:" #: ../include/global_settings.php:491 msgid "The SNMP v3 Password for polling hosts." msgstr "" #: ../include/global_settings.php:498 msgid "Auth Protocol (v3)" msgstr "" #: ../include/global_settings.php:505 msgid "Privacy Passphrase (v3)" msgstr "" #: ../include/global_settings.php:512 msgid "Privacy Protocol (v3)" msgstr "" #: ../include/global_settings.php:519 msgid "Default SNMP timeout in milli-seconds." msgstr "Fördefinierad SNMP timeout i millisekunder." #: ../include/global_settings.php:526 msgid "Port Number" msgstr "" #: ../include/global_settings.php:527 #, fuzzy msgid "Default UDP port to be used for SNMP Calls. Typically, 161." msgstr "Fördefinierad UDP-port för SNMP förfrågningar. Vanligen 161" #: ../include/global_settings.php:535 msgid "" "The number of times the SNMP poller will attempt to reach the host before " "failing." msgstr "" #: ../include/global_settings.php:542 #, fuzzy msgid "Availability/Reachability" msgstr "Åtkomstbarhet" #: ../include/global_settings.php:554 #, fuzzy msgid "Ping Type" msgstr "Typ" #: ../include/global_settings.php:555 msgid "" "The type of ping packet to send.
    NOTE: ICMP requires that the Cacti " "Service ID have root privileges in UNIX/Linux." msgstr "" #: ../include/global_settings.php:562 msgid "" "When choosing either TCP or UDP Ping, which port should be checked for " "availability of the host prior to polling." msgstr "" #: ../include/global_settings.php:578 msgid "The number of times Cacti will attempt to ping a host before failing." msgstr "" #: ../include/global_settings.php:585 #, fuzzy msgid "Up/Down Settings" msgstr "Inställningar för Cacti" #: ../include/global_settings.php:590 msgid "Failure Count" msgstr "" #: ../include/global_settings.php:591 msgid "" "The number of polling intervals a host must be down before logging an error " "and reporting host as down." msgstr "" #: ../include/global_settings.php:598 #, fuzzy msgid "Recovery Count" msgstr "Påväg upp" #: ../include/global_settings.php:599 msgid "" "The number of polling intervals a host must remain up before returning host " "to an up status and issuing a notice." msgstr "" #: ../include/global_settings.php:608 #, fuzzy msgid "Theme Settings" msgstr "Inställningar för Cacti" #: ../include/global_settings.php:613 ../include/global_settings.php:764 #: ../include/global_settings.php:1792 msgid "Theme" msgstr "" #: ../include/global_settings.php:614 ../include/global_settings.php:1793 msgid "Please select one of the available Themes to skin your Cacti with." msgstr "" #: ../include/global_settings.php:620 #, fuzzy msgid "Table Settings" msgstr "Inställningar för Cacti" #: ../include/global_settings.php:625 msgid "Rows Per Page" msgstr "" #: ../include/global_settings.php:626 msgid "The default number of rows to display on for a table." msgstr "" #: ../include/global_settings.php:632 msgid "Graph/Data Source/Data Query Settings" msgstr "" #: ../include/global_settings.php:637 msgid "Maximum Title Length" msgstr "" #: ../include/global_settings.php:638 msgid "The maximum allowable Graph or Data Source titles." msgstr "" #: ../include/global_settings.php:645 #, fuzzy msgid "Data Source Field Length" msgstr "Datakälla" #: ../include/global_settings.php:646 msgid "The maximum Data Query field length." msgstr "" #: ../include/global_settings.php:653 #, fuzzy msgid "Graph Creation" msgstr "Grafmall" #: ../include/global_settings.php:658 msgid "Default Graph Type" msgstr "" #: ../include/global_settings.php:659 msgid "When creating graphs, what Graph Type would you like pre-selected?" msgstr "" #: ../include/global_settings.php:662 msgid "All Types" msgstr "" #: ../include/global_settings.php:662 #, fuzzy msgid "By Template/Data Query" msgstr "Dataförfrågning" #: ../include/global_settings.php:670 msgid "Default Log Tail Lines" msgstr "" #: ../include/global_settings.php:671 msgid "Default number of lines of the Cacti log file to tail." msgstr "" #: ../include/global_settings.php:677 msgid "Maximum number of rows per page" msgstr "" #: ../include/global_settings.php:678 msgid "" "User defined number of lines for the CLOG to tail when selecting 'All lines'." msgstr "" #: ../include/global_settings.php:685 msgid "Log Tail Refresh" msgstr "" #: ../include/global_settings.php:686 msgid "How often do you want the Cacti log display to update." msgstr "" #: ../include/global_settings.php:692 msgid "RRDtool Graph Watermark" msgstr "" #: ../include/global_settings.php:697 msgid "Watermark Text" msgstr "" #: ../include/global_settings.php:698 msgid "Test to place at the bottom center of every Graph." msgstr "" #: ../include/global_settings.php:705 #, fuzzy msgid "Log Viewer Settings" msgstr "Inställningar för Cacti" #: ../include/global_settings.php:710 msgid "Exclusion Regex" msgstr "" #: ../include/global_settings.php:711 msgid "" "Any strings that match this regex will be excluded from the user display.\n" "\t\t\t\tFor example, if you want to exclude all log lines that " "include the words 'Admin' or 'Login'\n" "\t\t\t\tyou would type '(Admin || Login)'" msgstr "" #: ../include/global_settings.php:720 #, fuzzy msgid "Real-time Graphs" msgstr "Uppdatera grafer" #: ../include/global_settings.php:725 msgid "Enable Real-time Graphing" msgstr "" #: ../include/global_settings.php:726 msgid "" "When an option is checked, users will be able to put Cacti into Real-time " "mode." msgstr "" #: ../include/global_settings.php:731 ../lib/html_reports.php:365 #, fuzzy msgid "Graph Timespan" msgstr "Tidsspann" #: ../include/global_settings.php:732 msgid "This timespan you wish to see on the default graph." msgstr "" #: ../include/global_settings.php:738 ../utilities.php:1893 msgid "Refresh Interval" msgstr "" #: ../include/global_settings.php:739 msgid "This is the time between graph updates." msgstr "" #: ../include/global_settings.php:745 msgid "Cache Directory" msgstr "" #: ../include/global_settings.php:746 msgid "" "This is the location, on the web server where the RRDfiles and PNG files " "will be cached.\n" "\t\t\tThis cache will be managed by the poller.\n" "\t\t\tMake sure you have the correct read and write permissions on this " "folder" msgstr "" #: ../include/global_settings.php:755 msgid "RRDtool Graph Font Control" msgstr "" #: ../include/global_settings.php:760 msgid "Font Selection Method" msgstr "" #: ../include/global_settings.php:761 msgid "How do you wish fonts to be handled by default?" msgstr "" #: ../include/global_settings.php:764 msgid "System" msgstr "" #: ../include/global_settings.php:767 msgid "Default Font" msgstr "" #: ../include/global_settings.php:768 msgid "" "When not using Theme based font control, the Pangon font-config font name to " "use for all Graphs. Optionally, you may leave blank and control font " "settings on a per object basis." msgstr "" #: ../include/global_settings.php:770 ../include/global_settings.php:785 #: ../include/global_settings.php:800 ../include/global_settings.php:815 #: ../include/global_settings.php:830 msgid "Enter Valid Font Config Value" msgstr "" #: ../include/global_settings.php:774 ../include/global_settings.php:1977 msgid "Title Font Size" msgstr "" #: ../include/global_settings.php:775 ../include/global_settings.php:1978 msgid "The size of the font used for Graph Titles" msgstr "" #: ../include/global_settings.php:782 msgid "Title Font Setting" msgstr "" #: ../include/global_settings.php:783 msgid "" "The font to use for Graph Titles. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:789 ../include/global_settings.php:1990 msgid "Legend Font Size" msgstr "" #: ../include/global_settings.php:790 ../include/global_settings.php:1991 msgid "The size of the font used for Graph Legend items" msgstr "" #: ../include/global_settings.php:797 msgid "Legend Font Setting" msgstr "" #: ../include/global_settings.php:798 msgid "" "The font to use for Graph Legends. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:804 ../include/global_settings.php:2003 #, fuzzy msgid "Axis Font Size" msgstr "Maximal loggstorlek" #: ../include/global_settings.php:805 ../include/global_settings.php:2004 msgid "The size of the font used for Graph Axis" msgstr "" #: ../include/global_settings.php:812 msgid "Axis Font Setting" msgstr "" #: ../include/global_settings.php:813 msgid "" "The font to use for Graph Axis items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:819 ../include/global_settings.php:2016 msgid "Unit Font Size" msgstr "" #: ../include/global_settings.php:820 ../include/global_settings.php:2017 msgid "The size of the font used for Graph Units" msgstr "" #: ../include/global_settings.php:827 msgid "Unit Font Setting" msgstr "" #: ../include/global_settings.php:828 msgid "" "The font to use for Graph Unit items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:841 msgid "Data Collection Enabled" msgstr "" #: ../include/global_settings.php:842 msgid "If you wish to stop the polling process completely, uncheck this box." msgstr "" #: ../include/global_settings.php:848 #, fuzzy msgid "Poller Type" msgstr "Insamlare" #: ../include/global_settings.php:849 msgid "" "The poller type to use. This setting will take effect at next polling " "interval." msgstr "" #: ../include/global_settings.php:856 msgid "" "The polling interval in use. This setting will effect how often RRDfiles " "are checked and updated.\n" "\t\t\tNOTE: If you change this value, you must re-populate the " "poller cache. Failure to do so, may result in lost data." msgstr "" #: ../include/global_settings.php:863 msgid "Cron Interval" msgstr "" #: ../include/global_settings.php:864 msgid "" "The cron interval in use. You need to set this setting to the interval that " "your cron or scheduled task is currently running." msgstr "" #: ../include/global_settings.php:870 msgid "Maximum Concurrent Poller Processes" msgstr "" #: ../include/global_settings.php:871 msgid "" "The number of concurrent processes to execute. Using a higher number when " "using cmd.php will improve performance. Performance improvements in spine " "are best resolved with the threads parameter" msgstr "" #: ../include/global_settings.php:878 msgid "Balance Process Load" msgstr "" #: ../include/global_settings.php:879 msgid "" "If you choose this option, Cacti will attempt to balance the load of each " "poller process by equally distributing poller items per process." msgstr "" #: ../include/global_settings.php:884 msgid "Disable increasing OID Check" msgstr "" #: ../include/global_settings.php:885 msgid "Controls disabling check for increasing OID while walking OID tree." msgstr "" #: ../include/global_settings.php:890 msgid "Spine Specific Execution Parameters" msgstr "" #: ../include/global_settings.php:895 #, fuzzy msgid "Invalid Data Logging" msgstr "Eventloggning" #: ../include/global_settings.php:896 msgid "" "How would you like Spine output errors logged? The options are: 'Detailed' " "which is similar to cmd.php logging; 'Summary' which provides the number of " "output errors per host; and 'None', which does not provide error counts." msgstr "" #: ../include/global_settings.php:901 ../utilities.php:193 msgid "Summary" msgstr "" #: ../include/global_settings.php:902 msgid "Detailed" msgstr "" #: ../include/global_settings.php:906 msgid "Maximum Threads per Process" msgstr "" #: ../include/global_settings.php:907 msgid "" "The maximum threads allowed per process. Using a higher number when using " "Spine will improve performance." msgstr "" #: ../include/global_settings.php:914 msgid "Number of PHP Script Servers" msgstr "" #: ../include/global_settings.php:915 msgid "" "The number of concurrent script server processes to run per Spine process. " "Settings between 1 and 10 are accepted. This parameter will help if you are " "running several threads and script server scripts." msgstr "" #: ../include/global_settings.php:922 msgid "Script and Script Server Timeout Value" msgstr "" #: ../include/global_settings.php:923 msgid "" "The maximum time that Cacti will wait on a script to complete. This timeout " "value is in seconds" msgstr "" #: ../include/global_settings.php:930 msgid "The Maximum SNMP OIDs Per SNMP Get Request" msgstr "" #: ../include/global_settings.php:931 msgid "" "The maximum number of SNMP get OIDs to issue per snmpbulkwalk request. " "Increasing this value speeds poller performance over slow links. The " "maximum value is 100 OIDs. Decreasing this value to 0 or 1 will disable " "snmpbulkwalk" msgstr "" #: ../include/global_settings.php:945 msgid "Authentication Method" msgstr "" #: ../include/global_settings.php:946 msgid "" "
    None - No authentication will be used, all users will " "have full access.

    Built-in Authentication - Cacti handles user " "authentication, which allows you to create users and give them rights to " "different areas within Cacti.

    Web Basic Authentication - " "Authentication is handled by the web server. Users can be added or created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used.

    LDAP Authentication - " "Allows for authentication against a LDAP server. Users will be created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used. If PHPs LDAP module is not enabled, " "LDAP Authentication will not appear as a selectable option." "

    Multiple LDAP/AD Domain Authentication - Allows " "administrators to support multiple disparate groups from different LDAP/AD " "directories to access Cacti resources. Just as LDAP Authentication, the PHP " "LDAP module is required to utilize this method.
    " msgstr "" #: ../include/global_settings.php:952 msgid "Support Authentication Cookies" msgstr "" #: ../include/global_settings.php:953 msgid "" "If a user authenticates and selects 'Keep me signed in', an authentication " "cookie will be created on the user's computer allowing that user to stay " "logged in. The authentication cookie expires after 90 days of non-use." msgstr "" #: ../include/global_settings.php:958 msgid "Special Users" msgstr "" #: ../include/global_settings.php:963 #, fuzzy msgid "Guest User" msgstr "Logga ut användare" #: ../include/global_settings.php:964 msgid "The name of the guest user for viewing graphs; is 'No User' by default." msgstr "" #: ../include/global_settings.php:966 ../include/global_settings.php:974 #: ../user_domains.php:335 #, fuzzy msgid "No User" msgstr "Logga ut användare" #: ../include/global_settings.php:971 ../user_domains.php:331 #, fuzzy msgid "User Template" msgstr "Grafmall" #: ../include/global_settings.php:972 msgid "" "The name of the user that cacti will use as a template for new Web Basic and " "LDAP users; is 'guest' by default." msgstr "" #: ../include/global_settings.php:979 msgid "Local Account Complexity Requirements" msgstr "" #: ../include/global_settings.php:984 msgid "Minimum Length" msgstr "" #: ../include/global_settings.php:985 msgid "This is minimal length of allowed passwords." msgstr "" #: ../include/global_settings.php:992 msgid "Require Mix Case" msgstr "" #: ../include/global_settings.php:993 msgid "" "This will require new passwords to contains both lower and upper-case " "characters." msgstr "" #: ../include/global_settings.php:998 msgid "Require Number" msgstr "" #: ../include/global_settings.php:999 msgid "" "This will require new passwords to contain at least 1 numerical character." msgstr "" #: ../include/global_settings.php:1004 msgid "Require Special Character" msgstr "" #: ../include/global_settings.php:1005 msgid "" "This will require new passwords to contain at least 1 special character." msgstr "" #: ../include/global_settings.php:1010 msgid "Force Complexity Upon Old Passwords" msgstr "" #: ../include/global_settings.php:1011 msgid "" "This will require all old passwords to also meet the new complexity " "requirements upon login. If not met, it will force a password change." msgstr "" #: ../include/global_settings.php:1016 msgid "Expire Inactive Accounts" msgstr "" #: ../include/global_settings.php:1017 msgid "" "This is maximum number of days before inactive accounts are disabled. The " "Admin account is excluded from this policy." msgstr "" #: ../include/global_settings.php:1030 #, fuzzy msgid "Expire Password" msgstr "Lösenord:" #: ../include/global_settings.php:1031 msgid "This is maximum number of days before a password is set to expire." msgstr "" #: ../include/global_settings.php:1042 #, fuzzy msgid "Password History" msgstr "Lösenord:" #: ../include/global_settings.php:1043 msgid "Remember this number of old passwords and disallow re-using them." msgstr "" #: ../include/global_settings.php:1048 msgid "1 Change" msgstr "" #: ../include/global_settings.php:1049 ../include/global_settings.php:1050 #: ../include/global_settings.php:1051 ../include/global_settings.php:1052 #: ../include/global_settings.php:1053 ../include/global_settings.php:1054 #: ../include/global_settings.php:1055 ../include/global_settings.php:1056 #: ../include/global_settings.php:1057 ../include/global_settings.php:1058 #: ../include/global_settings.php:1059 #, php-format msgid "%d Changes" msgstr "" #: ../include/global_settings.php:1062 msgid "Account Locking" msgstr "" #: ../include/global_settings.php:1067 msgid "Lock Accounts" msgstr "" #: ../include/global_settings.php:1068 msgid "Lock an account after this many failed attempts in 1 hour." msgstr "" #: ../include/global_settings.php:1073 msgid "1 Attempt" msgstr "" #: ../include/global_settings.php:1074 ../include/global_settings.php:1075 #: ../include/global_settings.php:1076 ../include/global_settings.php:1077 #: ../include/global_settings.php:1078 #, php-format msgid "%d Attempts" msgstr "" #: ../include/global_settings.php:1081 msgid "Auto Unlock" msgstr "" #: ../include/global_settings.php:1082 msgid "" "An account will automatically be unlocked after this many minutes. Even if " "the correct password is entered, the account will not unlock until this time " "limit has been met. Max of 1440 minutes (1 Day)" msgstr "" #: ../include/global_settings.php:1101 msgid "LDAP General Settings" msgstr "" #: ../include/global_settings.php:1105 ../user_domains.php:358 msgid "Server" msgstr "" #: ../include/global_settings.php:1106 msgid "The DNS hostname or IP address of the server." msgstr "" #: ../include/global_settings.php:1111 ../user_domains.php:366 msgid "Port Standard" msgstr "" #: ../include/global_settings.php:1112 msgid "TCP/UDP port for Non-SSL communications." msgstr "" #: ../include/global_settings.php:1119 ../user_domains.php:375 msgid "Port SSL" msgstr "" #: ../include/global_settings.php:1120 ../user_domains.php:376 msgid "TCP/UDP port for SSL communications." msgstr "" #: ../include/global_settings.php:1127 ../user_domains.php:384 #, fuzzy msgid "Protocol Version" msgstr "Versioner på verktyg som krävs" #: ../include/global_settings.php:1128 ../user_domains.php:385 msgid "Protocol Version that the server supports." msgstr "" #: ../include/global_settings.php:1134 ../user_domains.php:391 #, fuzzy msgid "Encryption" msgstr "Beskrivning" #: ../include/global_settings.php:1135 ../user_domains.php:392 msgid "" "Encryption that the server supports. TLS is only supported by Protocol " "Version 3." msgstr "" #: ../include/global_settings.php:1141 ../user_domains.php:398 msgid "Referrals" msgstr "" #: ../include/global_settings.php:1142 ../user_domains.php:399 msgid "" "Enable or Disable LDAP referrals. If disabled, it may increase the speed of " "searches." msgstr "" #: ../include/global_settings.php:1148 ../user_domains.php:405 msgid "Mode" msgstr "" #: ../include/global_settings.php:1149 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the user's " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the user's Distinguished Name (DN)." msgstr "" #: ../include/global_settings.php:1155 ../user_domains.php:412 msgid "Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1156 ../user_domains.php:413 msgid "" "Distinguished Name syntax, such as for windows: \"<username>" "@win2kdomain.local\" or for OpenLDAP: \"uid=<username>," "ou=people,dc=domain,dc=local\". \"<username>\" is replaced with " "the username that was supplied at the login prompt. This is only used when " "in \"No Searching\" mode." msgstr "" #: ../include/global_settings.php:1161 ../user_domains.php:419 #, fuzzy msgid "Require Group Membership" msgstr "Versioner på verktyg som krävs" #: ../include/global_settings.php:1162 ../user_domains.php:420 msgid "" "Require user to be member of group to authenticate. Group settings must be " "set for this to work, enabling without proper group settings will cause " "authentication failure." msgstr "" #: ../include/global_settings.php:1167 ../user_domains.php:425 msgid "LDAP Group Settings" msgstr "" #: ../include/global_settings.php:1171 ../user_domains.php:429 msgid "Group Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1172 ../user_domains.php:430 msgid "Distinguished Name of the group that user must have membership." msgstr "" #: ../include/global_settings.php:1177 ../user_domains.php:436 msgid "Group Member Attribute" msgstr "" #: ../include/global_settings.php:1178 ../user_domains.php:437 msgid "Name of the attribute that contains the usernames of the members." msgstr "" #: ../include/global_settings.php:1183 ../user_domains.php:443 msgid "Group Member Type" msgstr "" #: ../include/global_settings.php:1184 ../user_domains.php:444 msgid "" "Defines if users use full Distinguished Name or just Username in the defined " "Group Member Attribute." msgstr "" #: ../include/global_settings.php:1187 msgid "Distinguished Name" msgstr "" #: ../include/global_settings.php:1190 ../user_domains.php:450 msgid "LDAP Specific Search Settings" msgstr "" #: ../include/global_settings.php:1194 ../user_domains.php:454 #, fuzzy msgid "Search Base" msgstr "Sök:" #: ../include/global_settings.php:1195 msgid "" "Search base for searching the LDAP directory, such as 'dc=win2kdomain," "dc=local' or 'ou=people,dc=domain,dc=local'." msgstr "" #: ../include/global_settings.php:1200 ../user_domains.php:461 #, fuzzy msgid "Search Filter" msgstr "Sök:" #: ../include/global_settings.php:1201 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: '(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))' or for OpenLDAP: " "'(&(objectClass=account)(uid=<username>))'. '<username>' " "is replaced with the username that was supplied at the login prompt. " msgstr "" #: ../include/global_settings.php:1206 ../user_domains.php:468 msgid "Search Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1207 ../user_domains.php:469 msgid "" "Distinguished Name for Specific Searching binding to the LDAP directory." msgstr "" #: ../include/global_settings.php:1212 ../user_domains.php:475 #, fuzzy msgid "Search Password" msgstr "Lösenord:" #: ../include/global_settings.php:1213 ../user_domains.php:476 msgid "Password for Specific Searching binding to the LDAP directory." msgstr "" #: ../include/global_settings.php:1220 msgid "URL Linking" msgstr "" #: ../include/global_settings.php:1225 msgid "Server Base URL" msgstr "" #: ../include/global_settings.php:1226 msgid "" "This is a the server location that will be used for links to the Cacti site." msgstr "" #: ../include/global_settings.php:1233 msgid "" "Emailing Options
    Send a Test Email
    " msgstr "" #: ../include/global_settings.php:1237 msgid "Test Email" msgstr "" #: ../include/global_settings.php:1238 msgid "" "This is a Email account used for sending a test message to ensure everything " "is working properly." msgstr "" #: ../include/global_settings.php:1243 #, fuzzy msgid "Mail Services" msgstr "Enheter" #: ../include/global_settings.php:1244 msgid "Which mail service to use in order to send mail" msgstr "" #: ../include/global_settings.php:1246 ../include/global_settings.php:1247 msgid "PHP Mail() Function" msgstr "" #: ../include/global_settings.php:1247 ../lib/functions.php:3788 msgid "SMTP" msgstr "" #: ../include/global_settings.php:1247 ../lib/functions.php:3783 msgid "Sendmail" msgstr "" #: ../include/global_settings.php:1250 #, fuzzy msgid "Ping Mail Server" msgstr "Enheter" #: ../include/global_settings.php:1251 msgid "Ping the Mail Server before sending test Email?" msgstr "" #: ../include/global_settings.php:1257 ../lib/html_reports.php:186 msgid "From Email Address" msgstr "" #: ../include/global_settings.php:1258 msgid "This is the Email address that the Email will appear from." msgstr "" #: ../include/global_settings.php:1263 ../lib/html_reports.php:178 #, fuzzy msgid "From Name" msgstr "Användarnamn:" #: ../include/global_settings.php:1264 msgid "This is the actual name that the Email will appear from." msgstr "" #: ../include/global_settings.php:1269 msgid "Word Wrap" msgstr "" #: ../include/global_settings.php:1270 msgid "" "This is how many characters will be allowed before a line in the Email is " "automatically word wrapped. (0 = Disabled)" msgstr "" #: ../include/global_settings.php:1277 msgid "Sendmail Options" msgstr "" #: ../include/global_settings.php:1282 ../lib/functions.php:3783 msgid "Sendmail Path" msgstr "" #: ../include/global_settings.php:1283 msgid "" "This is the path to sendmail on your server. (Only used if Sendmail is " "selected as the Mail Service)" msgstr "" #: ../include/global_settings.php:1289 msgid "SMTP Options" msgstr "" #: ../include/global_settings.php:1294 #, fuzzy msgid "SMTP Hostname" msgstr "Värdnamn" #: ../include/global_settings.php:1295 msgid "" "This is the hostname/IP of the SMTP Server you will send the Email to. For " "failover, separate your hosts using a semi-colon." msgstr "" #: ../include/global_settings.php:1301 msgid "SMTP Port" msgstr "" #: ../include/global_settings.php:1302 msgid "The port on the SMTP Server to use." msgstr "" #: ../include/global_settings.php:1309 #, fuzzy msgid "SMTP Username" msgstr "Användarnamn:" #: ../include/global_settings.php:1310 msgid "" "The username to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: ../include/global_settings.php:1315 #, fuzzy msgid "SMTP Password" msgstr "Lösenord:" #: ../include/global_settings.php:1316 msgid "" "The password to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: ../include/global_settings.php:1321 msgid "SMTP Security" msgstr "" #: ../include/global_settings.php:1322 #, fuzzy msgid "The encryption method to use for the Email." msgstr "Detta scriptet skall endast köras i ett skal." #: ../include/global_settings.php:1328 msgid "SMTP Timeout" msgstr "" #: ../include/global_settings.php:1329 #, fuzzy msgid "Please enter the SMTP timeout in seconds." msgstr "Fördefinierad SNMP timeout i millisekunder." #: ../include/global_settings.php:1336 msgid "Reporting Presets" msgstr "" #: ../include/global_settings.php:1341 msgid "Default Graph Image Format" msgstr "" #: ../include/global_settings.php:1342 msgid "" "When creating a new report, what image type should be used for the inline " "graphs." msgstr "" #: ../include/global_settings.php:1348 #, fuzzy msgid "Maximum E-Mail Size" msgstr "Maximal loggstorlek" #: ../include/global_settings.php:1349 msgid "The maximum size of the E-Mail message including all attachements." msgstr "" #: ../include/global_settings.php:1355 msgid "Poller Logging Level for Cacti Reporting" msgstr "" #: ../include/global_settings.php:1356 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: ../include/global_settings.php:1362 msgid "Enable Lotus Notes (R) tweak" msgstr "" #: ../include/global_settings.php:1363 msgid "Enable code tweak for specific handling of Lotus Notes Mail Clients." msgstr "" #: ../include/global_settings.php:1368 msgid "DNS Options" msgstr "" #: ../include/global_settings.php:1373 msgid "Primary DNS IP Address" msgstr "" #: ../include/global_settings.php:1374 msgid "Enter the primary DNS IP Address to utilize for reverse lookups." msgstr "" #: ../include/global_settings.php:1380 msgid "Secondary DNS IP Address" msgstr "" #: ../include/global_settings.php:1381 msgid "Enter the secondary DNS IP Address to utilize for reverse lookups." msgstr "" #: ../include/global_settings.php:1387 msgid "DNS Timeout" msgstr "" #: ../include/global_settings.php:1388 msgid "" "Please enter the DNS timeout in milliseconds. Cacti uses a PHP based DNS " "resolver." msgstr "" #: ../include/global_settings.php:1397 #, fuzzy msgid "Data Sources Statistics" msgstr "Datakällor" #: ../include/global_settings.php:1402 msgid "Enable Data Source Statistics Collection" msgstr "" #: ../include/global_settings.php:1403 msgid "Should Data Source Statistics be collected for this Cacti system?" msgstr "" #: ../include/global_settings.php:1408 msgid "Daily Update Frequency" msgstr "" #: ../include/global_settings.php:1409 msgid "How frequent should Daily Stats be updated?" msgstr "" #: ../include/global_settings.php:1415 msgid "Hourly Average Window" msgstr "" #: ../include/global_settings.php:1416 msgid "" "The number of consecutive hours that represent the hourly\n" "\t\t\taverage. Keep in mind that a setting too high can result in very " "large memory tables" msgstr "" #: ../include/global_settings.php:1423 msgid "Maintenance Time" msgstr "" #: ../include/global_settings.php:1424 msgid "" "What time of day should Weekly, Monthly, and Yearly Data be updated? Format " "is HH:MM [am/pm]" msgstr "" #: ../include/global_settings.php:1431 msgid "Memory Limit for Data Source Statistics Data Collector" msgstr "" #: ../include/global_settings.php:1432 msgid "" "The maximum amount of memory for the Cacti Poller and Data Source Statistics " "Poller" msgstr "" #: ../include/global_settings.php:1438 #, fuzzy msgid "Debugging" msgstr "Loggning" #: ../include/global_settings.php:1443 msgid "Enable Single RRDtool Pipe" msgstr "" #: ../include/global_settings.php:1444 msgid "" "Using a single pipe will speed the RRDtool process by 10x. However, RRDtool " "crashes\n" "\t\t\tproblems can occur. Disable this setting if you need to find a bad " "RRDfile." msgstr "" #: ../include/global_settings.php:1450 msgid "Enable Partial Reference Data Retrieve" msgstr "" #: ../include/global_settings.php:1451 msgid "" "If using a large system, it may be beneficial for you to only gather data as " "needed\n" "\t\t\tduring Cacti poller passes. If you check this box, Data Source " "Statistics will gather data this way." msgstr "" #: ../include/global_settings.php:1459 msgid "On-demand RRD Update Settings" msgstr "" #: ../include/global_settings.php:1464 msgid "Enable On-demand RRD Updating" msgstr "" #: ../include/global_settings.php:1465 msgid "" "Should Boost enable on demand RRD updating in Cacti? If you disable, this " "change will not take effect until after the next polling cycle." msgstr "" #: ../include/global_settings.php:1470 msgid "System Level RRD Updater" msgstr "" #: ../include/global_settings.php:1471 msgid "" "Before RRD On-demand Update Can be Cleared, a poller run must always pass" msgstr "" #: ../include/global_settings.php:1476 msgid "How Often Should Boost Update All RRDs" msgstr "" #: ../include/global_settings.php:1477 msgid "" "When you enable boost, your RRD files are only updated when they are " "requested by a user, or when this time period elapses." msgstr "" #: ../include/global_settings.php:1484 #, fuzzy msgid "Maximum Records" msgstr "Maximal kvarhållningsperiod" #: ../include/global_settings.php:1485 msgid "" "If the boost output table exceeds this size, in records, an update will take " "place." msgstr "" #: ../include/global_settings.php:1492 msgid "Maximum Data Source Items Per Pass" msgstr "" #: ../include/global_settings.php:1493 msgid "" "To optimize performance, the boost RRD updater needs to know how many Data " "Source Items\n" "\t\t\tshould be retrieved in one pass. Please be careful not to set too " "high as graphing performance during\n" "\t\t\tmajor updates can be compromised. If you encounter graphing or " "polling slowness during updates, lower this\n" "\t\t\tnumber. The default value is 50000." msgstr "" #: ../include/global_settings.php:1502 msgid "Maximum Argument Length" msgstr "" #: ../include/global_settings.php:1503 msgid "" "When boost sends update commands to RRDtool, it must not exceed the " "operating systems\n" "\t\t\tMaximum Argument Length. This varies by operating system and kernel " "level. For example:\n" "\t\t\tWindows 2000 <= 2048, FreeBSD <= 65535, Linux 2.6.22-- <= 131072, " "Linux 2.6.23++ unlimited" msgstr "" #: ../include/global_settings.php:1512 msgid "Memory Limit for Boost and Poller" msgstr "" #: ../include/global_settings.php:1513 msgid "The maximum amount of memory for the Cacti Poller and Boosts Poller" msgstr "" #: ../include/global_settings.php:1519 msgid "Maximum RRD Update Script Run Time" msgstr "" #: ../include/global_settings.php:1520 msgid "" "The maximum boot poller run time allowed prior to boost issuing warning\n" "\t\t\tmessages relative to possible hardware/software issues preventing " "proper updates." msgstr "" #: ../include/global_settings.php:1527 msgid "Enable direct population of poller_output_boost table" msgstr "" #: ../include/global_settings.php:1528 msgid "" "Enables direct insert of records into poller output boost with results in a " "25% time reduction in each poll cycle." msgstr "" #: ../include/global_settings.php:1533 ../utilities.php:2139 msgid "Image Caching" msgstr "" #: ../include/global_settings.php:1538 msgid "Enable Image Caching" msgstr "" #: ../include/global_settings.php:1539 msgid "Should image caching be enabled?" msgstr "" #: ../include/global_settings.php:1544 msgid "Location for Image Files" msgstr "" #: ../include/global_settings.php:1545 msgid "" "Specify the location where Boost should place your image files. These files " "will be automatically purged by the poller when they expire." msgstr "" #: ../include/global_settings.php:1551 msgid "Process Interlocking" msgstr "" #: ../include/global_settings.php:1556 msgid "Boost Debug Log" msgstr "" #: ../include/global_settings.php:1557 msgid "" "If this field is non-blank, Boost will log RRDupdate output from the boost" "\tpoller process." msgstr "" #: ../include/global_settings.php:1571 msgid "" "Choose if RRDs will be stored locally or being handled by an external " "RRDtool proxy server." msgstr "" #: ../include/global_settings.php:1574 ../include/global_settings.php:1582 msgid "RRDtool Proxy Server" msgstr "" #: ../include/global_settings.php:1577 msgid "Structured RRD Path (/host_id/local_data_id.rrd)" msgstr "" #: ../include/global_settings.php:1578 msgid "Use a separate subfolder for each hosts RRD files." msgstr "" #: ../include/global_settings.php:1587 ../include/global_settings.php:1619 msgid "Proxy Server" msgstr "" #: ../include/global_settings.php:1588 msgid "The DNS hostname or IP address of the RRDtool proxy server." msgstr "" #: ../include/global_settings.php:1593 ../include/global_settings.php:1625 msgid "Proxy Port Number" msgstr "" #: ../include/global_settings.php:1594 msgid "TCP port for encrypted communication." msgstr "" #: ../include/global_settings.php:1601 ../include/global_settings.php:1633 #: ../utilities.php:248 msgid "RSA Fingerprint" msgstr "" #: ../include/global_settings.php:1602 msgid "" "The fingerprint of the current public RSA key the proxy is using. This is " "required to establish a trusted connection." msgstr "" #: ../include/global_settings.php:1609 msgid "RRDtool Proxy Server - Backup" msgstr "" #: ../include/global_settings.php:1614 msgid "Load Balancing" msgstr "" #: ../include/global_settings.php:1615 msgid "" "If both main and backup proxy are receivable this option allows to spread " "all requests against RRDtool." msgstr "" #: ../include/global_settings.php:1620 msgid "" "The DNS hostname or IP address of the RRDtool backup proxy server if proxy " "is running in MSR mode." msgstr "" #: ../include/global_settings.php:1626 msgid "TCP port for encrypted communication with the backup proxy." msgstr "" #: ../include/global_settings.php:1634 msgid "" "The fingerprint of the current public RSA key the backup proxy is using. " "This required to establish a trusted connection." msgstr "" #: ../include/global_settings.php:1643 #, fuzzy msgid "Spike Kill Settings" msgstr "Inställningar för Cacti" #: ../include/global_settings.php:1648 msgid "Removal Method" msgstr "" #: ../include/global_settings.php:1649 msgid "" "There are two removal methods. The first, Standard Deviation, will remove " "any\n" "\t\t\tsample that is X number of standard deviations away from the average " "of samples. The second method,\n" "\t\t\tVariance, will remove any sample that is X% more than the Variance " "average. The Variance method takes\n" "\t\t\tinto account a certain number of 'outliers'. Those are exceptional " "samples, like the spike, that need\n" "\t\t\tto be excluded from the Variance Average calculation." msgstr "" #: ../include/global_settings.php:1656 msgid "Standard Deviation" msgstr "" #: ../include/global_settings.php:1656 msgid "Variance Based w/Outliers Removed" msgstr "" #: ../include/global_settings.php:1659 ../lib/html.php:1719 msgid "Replacement Method" msgstr "" #: ../include/global_settings.php:1660 msgid "" "There are three replacement methods. The first method replaces the spike " "with the\n" "\t\t\tthe average of the data source in question. The second method " "replaces the spike with a 'NaN'.\n" "\t\t\tThe last replaces the spike with the last known good value found." msgstr "" #: ../include/global_settings.php:1665 ../lib/html.php:1720 #, fuzzy msgid "Average" msgstr "Genomsnitt" #: ../include/global_settings.php:1665 ../lib/html.php:1722 msgid "Last Known Good" msgstr "" #: ../include/global_settings.php:1665 msgid "NaN's" msgstr "" #: ../include/global_settings.php:1668 msgid "Number of Standard Deviations" msgstr "" #: ../include/global_settings.php:1669 msgid "" "Any value that is this many standard deviations above the average will be " "excluded.\n" "\t\t\tA good number will be dependent on the type of data to be operated " "on. We recommend a number no lower\n" "\t\t\tthan 5 Standard Deviations." msgstr "" #: ../include/global_settings.php:1675 ../include/global_settings.php:1676 #: ../include/global_settings.php:1677 ../include/global_settings.php:1678 #: ../include/global_settings.php:1679 ../include/global_settings.php:1680 #: ../include/global_settings.php:1681 ../include/global_settings.php:1682 #: ../include/global_settings.php:1683 ../include/global_settings.php:1684 #, php-format msgid "%d Standard Deviations" msgstr "" #: ../include/global_settings.php:1688 ../lib/html.php:1731 msgid "Variance Percentage" msgstr "" #: ../include/global_settings.php:1689 #, php-format msgid "" "This value represents the percentage above the adjusted sample average once " "outliers\n" "\t\t\thave been removed from the sample. For example, a Variance Percentage " "of 100% on an adjusted average of 50\n" "\t\t\twould remove any sample above the quantity of 100 from the graph." msgstr "" #: ../include/global_settings.php:1710 msgid "Variance Number of Outliers" msgstr "" #: ../include/global_settings.php:1711 msgid "" "This value represents the number of high and low average samples will be " "removed from the\n" "\t\t\tsample set prior to calculating the Variance Average. If you choose " "an outlier value of 5, then both the top\n" "\t\t\tand bottom 5 averages are removed." msgstr "" #: ../include/global_settings.php:1717 ../include/global_settings.php:1718 #: ../include/global_settings.php:1719 ../include/global_settings.php:1720 #: ../include/global_settings.php:1721 ../include/global_settings.php:1722 #: ../include/global_settings.php:1723 ../include/global_settings.php:1724 #, php-format msgid "%d High/Low Samples" msgstr "" #: ../include/global_settings.php:1728 msgid "Max Kills Per RRA" msgstr "" #: ../include/global_settings.php:1729 msgid "" "This value represents the maximum number of spikes to remove from a Graph " "RRA." msgstr "" #: ../include/global_settings.php:1733 ../include/global_settings.php:1734 #: ../include/global_settings.php:1735 ../include/global_settings.php:1736 #: ../include/global_settings.php:1737 ../include/global_settings.php:1738 #: ../include/global_settings.php:1739 ../include/global_settings.php:1740 #, php-format msgid "%d Samples" msgstr "" #: ../include/global_settings.php:1744 msgid "RRDfile Backup Directory" msgstr "" #: ../include/global_settings.php:1745 msgid "" "If this directory is not empty, then your original RRDfiles will be backed\n" "\t\t\tup to this location." msgstr "" #: ../include/global_settings.php:1753 #, fuzzy msgid "Batch Spike Kill Settings" msgstr "Inställningar för Cacti" #: ../include/global_settings.php:1758 msgid "Removal Schedule" msgstr "" #: ../include/global_settings.php:1759 msgid "" "Do you wish to periodically remove spikes from your graphs? If so, select " "the frequency\n" "\t\t\tbelow." msgstr "" #: ../include/global_settings.php:1767 msgid "Once a Day" msgstr "" #: ../include/global_settings.php:1768 msgid "Every Other Day" msgstr "" #: ../include/global_settings.php:1772 msgid "Base Time" msgstr "" #: ../include/global_settings.php:1773 msgid "" "The Base Time for Spike removal to occur. For example, if you use '12:00am' " "and you choose\n" "\t\t\tonce per day, the batch removal would begin at approximately midnight " "every day." msgstr "" #: ../include/global_settings.php:1781 #, fuzzy msgid "Graph Templates to Spike Kill" msgstr "Grafmallar" #: ../include/global_settings.php:1783 msgid "" "When performing batch spike removal, only the templates selected below will " "be acted on." msgstr "" #: ../include/global_settings.php:1799 msgid "Default View Mode" msgstr "" #: ../include/global_settings.php:1800 msgid "" "Which Graph mode you want displayed by default when you first visit the " "Graphs page?" msgstr "" #: ../include/global_settings.php:1806 #, fuzzy msgid "User Language" msgstr "Användarhantering" #: ../include/global_settings.php:1807 msgid "Defines the preferred GUI language." msgstr "" #: ../include/global_settings.php:1813 #, fuzzy msgid "Show Graph Title" msgstr "Graftitel" #: ../include/global_settings.php:1814 msgid "" "Display the graph title on the page so that it may be searched using the " "browser." msgstr "" #: ../include/global_settings.php:1820 msgid "The date format to use in Cacti." msgstr "" #: ../include/global_settings.php:1827 msgid "The date separator to be used in Cacti." msgstr "" #: ../include/global_settings.php:1833 msgid "Page Refresh" msgstr "" #: ../include/global_settings.php:1834 msgid "The number of seconds between automatic page refreshes." msgstr "" #: ../include/global_settings.php:1840 msgid "Preview Graphs Per Page" msgstr "" #: ../include/global_settings.php:1841 ../include/global_settings.php:1956 msgid "The number of graphs to display on one page in preview mode." msgstr "" #: ../include/global_settings.php:1849 msgid "Default Time Range" msgstr "" #: ../include/global_settings.php:1850 msgid "The default RRA to use in rare occasions." msgstr "" #: ../include/global_settings.php:1856 msgid "Default Graph View Timespan" msgstr "" #: ../include/global_settings.php:1857 msgid "The default timespan you wish to be displayed when you display graphs" msgstr "" #: ../include/global_settings.php:1863 msgid "Default Graph View Timeshift" msgstr "" #: ../include/global_settings.php:1864 msgid "The default timeshift you wish to be displayed when you display graphs" msgstr "" #: ../include/global_settings.php:1870 msgid "Allow Graph to extend to Future" msgstr "" #: ../include/global_settings.php:1871 msgid "When displaying Graphs, allow Graph Dates to extend 'to future'" msgstr "" #: ../include/global_settings.php:1876 msgid "First Day of the Week" msgstr "" #: ../include/global_settings.php:1877 msgid "The first Day of the Week for weekly Graph Displays" msgstr "" #: ../include/global_settings.php:1883 msgid "Start of Daily Shift" msgstr "" #: ../include/global_settings.php:1884 msgid "Start Time of the Daily Shift." msgstr "" #: ../include/global_settings.php:1891 msgid "End of Daily Shift" msgstr "" #: ../include/global_settings.php:1892 msgid "End Time of the Daily Shift." msgstr "" #: ../include/global_settings.php:1901 msgid "Thumbnail Sections" msgstr "" #: ../include/global_settings.php:1902 msgid "Which portions of Cacti display Thumbnails by default." msgstr "" #: ../include/global_settings.php:1906 ../lib/functions.php:1880 #, fuzzy msgid "Preview Mode" msgstr "Förhandsgrandskning" #: ../include/global_settings.php:1916 msgid "Preview Thumbnail Columns" msgstr "" #: ../include/global_settings.php:1917 msgid "" "The number of columns to use when displaying Thumbnail graphs in Preview " "mode." msgstr "" #: ../include/global_settings.php:1920 ../include/global_settings.php:1927 #: ../lib/html_graph.php:231 ../lib/html_graph.php:232 #: ../lib/html_graph.php:233 ../lib/html_graph.php:234 #: ../lib/html_graph.php:235 ../lib/html_tree.php:677 ../lib/html_tree.php:678 #: ../lib/html_tree.php:679 ../lib/html_tree.php:680 ../lib/html_tree.php:681 #, php-format msgid "%d Columns" msgstr "" #: ../include/global_settings.php:1920 ../include/global_settings.php:1927 msgid "1 Column" msgstr "" #: ../include/global_settings.php:1923 msgid "Tree View Thumbnail Columns" msgstr "" #: ../include/global_settings.php:1924 msgid "" "The number of columns to use when displaying Thumbnail graphs in Tree mode." msgstr "" #: ../include/global_settings.php:1930 msgid "Thumbnail Height" msgstr "" #: ../include/global_settings.php:1931 msgid "The height of Thumbnail graphs in pixels." msgstr "" #: ../include/global_settings.php:1938 msgid "Thumbnail Width" msgstr "" #: ../include/global_settings.php:1939 msgid "The width of Thumbnail graphs in pixels." msgstr "" #: ../include/global_settings.php:1948 msgid "Default Tree" msgstr "" #: ../include/global_settings.php:1949 msgid "The default graph tree to use when displaying graphs in tree mode." msgstr "" #: ../include/global_settings.php:1955 #, fuzzy msgid "Graphs Per Page" msgstr "Grafmall" #: ../include/global_settings.php:1962 #, fuzzy msgid "Expand Devices" msgstr "Enheter" #: ../include/global_settings.php:1963 msgid "" "Choose whether to expand the Graph Templates and Data Queries used by a " "Device on Tree." msgstr "" #: ../include/global_settings.php:1970 msgid "Use Custom Fonts" msgstr "" #: ../include/global_settings.php:1971 msgid "" "Choose whether to use your own custom fonts and font sizes or utilize the " "system defaults." msgstr "" #: ../include/global_settings.php:1984 msgid "Title Font File" msgstr "" #: ../include/global_settings.php:1985 msgid "The font file to use for Graph Titles" msgstr "" #: ../include/global_settings.php:1997 msgid "Legend Font File" msgstr "" #: ../include/global_settings.php:1998 msgid "The font file to be used for Graph Legend items" msgstr "" #: ../include/global_settings.php:2010 msgid "Axis Font File" msgstr "" #: ../include/global_settings.php:2011 msgid "The font file to be used for Graph Axis items" msgstr "" #: ../include/global_settings.php:2023 msgid "Unit Font File" msgstr "" #: ../include/global_settings.php:2024 msgid "The font file to be used for Graph Unit items" msgstr "" #: ../index.php:64 #, php-format msgid "" "You are now logged into Cacti. You can follow " "these basic steps to get started." msgstr "" #: ../index.php:67 #, php-format msgid "Create devices for network" msgstr "" #: ../index.php:68 #, php-format msgid "Create graphs for your new devices" msgstr "" #: ../index.php:69 #, php-format msgid "View your new graphs" msgstr "" #: ../index.php:78 msgid "Offline" msgstr "" #: ../index.php:78 msgid "Online" msgstr "" #: ../index.php:78 #, fuzzy msgid "Recovery" msgstr "Påväg upp" #: ../index.php:78 msgid "Remote Data Collector Status:" msgstr "" #: ../index.php:80 msgid "Number of Offline Records:" msgstr "" #: ../index.php:85 msgid "" "NOTE: You are logged into a Remote Data Collector. When " "'online', you will be able to view and control much of the Main Cacti " "Web Site just as if you were logged into it. Also, it's important to note " "that Remote Data Collectors are required to use the Cacti's Performance " "Boosting Services 'On Demand Updating' feature, and we always " "recommend using Spine. When the Remote Data Collector is 'offline', " "the Remote Data Collectos Web Site will contain much less information. " "However, it will cache all updates until the Main Cacti Database and Web " "Server are reachable. Then it will dump it's Boost table output back to the " "Main Cacti Database for updating." msgstr "" #: ../index.php:90 msgid "" "NOTE: None of the Core Cacti Plugins, to date, have been re-" "designed to work with Remote Data Collectors. Therefore, Plugins such as " "MacTrack, and HMIB, which require direct access to devices will not work " "with Remote Data Collectors at this time. However, plugins such as Thold " "will work so long as the Remote Data Collector is in 'online' mode." msgstr "" #: ../install/index.php:51 ../install/index.php:56 ../install/index.php:61 #: ../install/index.php:302 ../lib/html_utility.php:820 msgid "Error" msgstr "" #: ../install/index.php:53 #, php-format msgid "" "This installation is already up-to-date. Click here to " "use Cacti." msgstr "" #: ../install/index.php:58 #, php-format msgid "" "You are attempting to install Cacti %s onto a 0.6.x database. To continue, " "you must create a new database, import \"cacti.sql\" into it, and update " "\"include/config.php\" to point to the new database." msgstr "" #: ../install/index.php:63 #, php-format msgid "" "You have created a new database, but have not yet imported the 'cacti.sql' " "file. At the command line, execute the following to continue:

    mysql -u %s -p %s < cacti.sql

    This error may also be " "generated if the cacti database user does not have correct permissions on " "the Cacti database. Please ensure that the Cacti database user has the " "ability to SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, DROP, INDEX on the " "Cacti database." msgstr "" #: ../install/index.php:65 #, php-format msgid "" "In Cacti %s, you must also import MySQL TimeZone information into MySQL and " "grant the Cacti user SELECT access to the mysql.time_zone_name table" msgstr "" #: ../install/index.php:68 msgid "On Linux/UNIX, do the following:" msgstr "" #: ../install/index.php:68 msgid "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" msgstr "" #: ../install/index.php:70 msgid "" "On Windows, you must follow the instructions here Time zone description " "table. Once that is complete, you can issue the following command to " "grant the Cacti user access to the tables:" msgstr "" #: ../install/index.php:72 #, php-format msgid "" "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" msgstr "" #: ../install/index.php:304 #, php-format msgid "" "Invalid Cacti version %1$s, cannot upgrade to %2$s" msgstr "" #: ../install/index.php:410 msgid "Cacti Installation Wizard" msgstr "" #: ../install/index.php:418 msgid "License Agreement" msgstr "" #: ../install/index.php:420 msgid "" "Thanks for taking the time to download and install Cacti, the complete " "graphing solution for your network. Before you can start making cool graphs, " "there are a few pieces of data that Cacti needs to know." msgstr "" #: ../install/index.php:421 #, php-format msgid "" "Make sure you have read and followed the required steps needed to install " "Cacti before continuing. Install information can be found for Unix and Win32-based operating systems." msgstr "" #: ../install/index.php:422 #, php-format msgid "" "Also, if this is an upgrade, be sure to reading the Upgrade information file." msgstr "" #: ../install/index.php:423 msgid "" "Cacti is licensed under the GNU General Public License, you must agree to " "its provisions before continuing:" msgstr "" #: ../install/index.php:441 msgid "Pre-installation Checks" msgstr "" #: ../install/index.php:442 msgid "MySQL TimeZone Support" msgstr "" #: ../install/index.php:447 ../install/index.php:451 ../install/index.php:630 #: ../install/index.php:638 msgid "ERROR:" msgstr "" #: ../install/index.php:447 msgid "" "Your MySQL TimeZone database is not populated. Please populate this " "database before proceeding." msgstr "" #: ../install/index.php:451 msgid "" "Your Cacti database login account does not have access to the MySQL TimeZone " "database. Please provide the Cacti database account \"select\" access to " "the \"time_zone_name\" table in the \"mysql\" database, and populate MySQL's " "TimeZone information before proceeding." msgstr "" #: ../install/index.php:456 msgid "" "Your Cacti database account has access to the MySQL TimeZone database and " "that database is populated with global TimeZone information." msgstr "" #: ../install/index.php:459 msgid "Required PHP Module Support" msgstr "" #: ../install/index.php:461 msgid "" "Cacti requires several PHP Modules to be installed to work properly. If any " "of these are not installed, you will be unable to continue the installation " "until corrected. In addition, for optimal system performance Cacti should be " "run with certain MySQL system variables set. Please follow the MySQL " "recommendations at your discretion. Always seek the MySQL documentation if " "you have any questions." msgstr "" #: ../install/index.php:463 msgid "" "The following PHP extensions are mandatory, and MUST be installed before " "continuing your Cacti install." msgstr "" #: ../install/index.php:465 #, fuzzy msgid "Required PHP Modules" msgstr "Versioner på verktyg som krävs" #: ../install/index.php:466 ../install/index.php:543 ../plugins.php:41 #: ../plugins.php:288 ../utilities.php:415 msgid "Installed" msgstr "" #: ../install/index.php:466 msgid "Required" msgstr "" #: ../install/index.php:468 ../utilities.php:387 msgid "PHP Version" msgstr "" #: ../install/index.php:533 msgid "Optional PHP Module Support" msgstr "" #: ../install/index.php:535 msgid "" "The following PHP extensions are recommended, and should be installed before " "continuing your Cacti install." msgstr "" #: ../install/index.php:542 msgid "Optional Modules" msgstr "" #: ../install/index.php:543 msgid "Optional" msgstr "" #: ../install/index.php:553 msgid "" "These MySQL performance tuning settings will help your Cacti system perform " "better without issues for a longer time." msgstr "" #: ../install/index.php:555 msgid "Recommended MySQL System Variable Settings" msgstr "" #: ../install/index.php:560 msgid "Installation Type" msgstr "" #: ../install/index.php:565 #, php-format msgid "Upgrade from %s to %s" msgstr "" #: ../install/index.php:566 msgid "" "WARNING - If you are upgrading from a previous version please close all " "Cacti browser sessions and clear cache before continuing" msgstr "" #: ../install/index.php:569 msgid "Please select the type of installation" msgstr "" #: ../install/index.php:571 msgid "Installation options:" msgstr "" #: ../install/index.php:574 msgid "Choose this for the Primary site." msgstr "" #: ../install/index.php:574 ../install/index.php:580 msgid "New Primary Server" msgstr "" #: ../install/index.php:575 ../install/index.php:581 msgid "New Remote Poller" msgstr "" #: ../install/index.php:575 msgid "" "Remote Pollers are used to access networks that are not readily accessible " "to the Primary site." msgstr "" #: ../install/index.php:585 msgid "" "The following information has been determined from Cacti's configuration " "file. If it is not correct, please edit \"include/config.php\" before " "continuing." msgstr "" #: ../install/index.php:589 msgid "Local Cacti database connection information" msgstr "" #: ../install/index.php:591 ../install/index.php:620 #, php-format msgid "Database: %s" msgstr "" #: ../install/index.php:592 ../install/index.php:621 #, php-format msgid "Database User: %s" msgstr "" #: ../install/index.php:593 ../install/index.php:622 #, php-format msgid "Database Hostname: %s" msgstr "" #: ../install/index.php:594 ../install/index.php:623 #, php-format msgid "Port: %s" msgstr "" #: ../install/index.php:595 ../install/index.php:624 #, php-format msgid "Server Operating System Type: %s" msgstr "" #: ../install/index.php:618 ../install/index.php:627 msgid "Remote Poller Cacti database connection information" msgstr "" #: ../install/index.php:630 msgid "" "Your config.php file must be writable by\n" "\t\t\t\t\t\t\t\t\t\tthe web server during install in order to configure the " "Remote poller. Once\n" "\t\t\t\t\t\t\t\t\t\tinstallation is complete, you must set this file to Read " "Only to prevent\n" "\t\t\t\t\t\t\t\t\t\tpossible security issues." msgstr "" #: ../install/index.php:638 msgid "" "Your Remote Cacti Poller information has not\n" "\t\t\t\t\t\t\t\t\t\tbeen included in your config.php file. Please review " "the config.php.dist, and\n" "\t\t\t\t\t\t\t\t\t\tset the variables: $rdatabase_default, " "$rdatabase_username, etc.\n" "\t\t\t\t\t\t\t\t\t\tThese variables must be set and point back to your " "Primary Cacti database server.\n" "\t\t\t\t\t\t\t\t\t\tCorrect this and try again." msgstr "" #: ../install/index.php:644 msgid "The variables that must be set include the following:" msgstr "" #: ../install/index.php:655 msgid "You must also set the $poller_id variable in the config.php." msgstr "" #: ../install/index.php:657 msgid "" "Once you have the variables set in the config.php file, you must also\n" "\t\t\t\t\t\t\t\t\t\tgrant the $rdatabase_username access to the Cacti " "database. Follow the same procedure you would with\n" "\t\t\t\t\t\t\t\t\t\tany other Cacti install. You may then press the 'Test " "Connection' button. If the test is\n" "\t\t\t\t\t\t\t\t\t\tsuccessful you will be able to proceed and complete the " "install." msgstr "" #: ../install/index.php:682 ../install/index.php:698 ../lib/html.php:342 msgid "Next" msgstr "Nästa" #: ../install/index.php:707 msgid "Upgrade" msgstr "" #: ../install/index.php:720 msgid "Remote Database: " msgstr "" #: ../install/index.php:731 msgid "Critical Binary Locations and Versions" msgstr "" #: ../install/index.php:733 msgid "Make sure all of these values are correct before continuing." msgstr "" #: ../install/index.php:791 msgid "Directory Permission Checks" msgstr "" #: ../install/index.php:793 msgid "" "Please ensure the directory permissions below are correct before " "proceeding. During the install, these directories need to be owned by the " "Web Server user. These permission changes are required to allow the " "Installer to install Device Template packages which include XML and script " "files that will be placed in these directories. If you choose not to " "install the packages, there is an 'install_package.php' cli script that can " "be used from the command line after the install is complete." msgstr "" #: ../install/index.php:796 msgid "" "After the install is complete, you can make some of these directories read " "only to increase security." msgstr "" #: ../install/index.php:798 msgid "" "These directories will be required to stay read writable after the install " "so that the Cacti remote synchronization process can update them as the Main " "Cacti Web Site changes" msgstr "" #: ../install/index.php:829 msgid "Required Writable at Install Time Only" msgstr "" #: ../install/index.php:832 ../install/index.php:842 ../install/index.php:852 msgid "Writable" msgstr "" #: ../install/index.php:834 ../install/index.php:844 ../install/index.php:854 msgid "Not Writable" msgstr "" #: ../install/index.php:839 ../install/index.php:849 msgid "Required Writable after Install Complete" msgstr "" #: ../install/index.php:862 #, php-format msgid "" "Make sure your webserver has read and write access to the entire folder " "structure.
    Example: chown -R apache.apache %s/resource/" msgstr "" #: ../install/index.php:863 msgid "" "For SELINUX-users make sure that you have the correct permissions or set " "'setenforce 0' temporarily." msgstr "" #: ../install/index.php:865 msgid "Check Permissions" msgstr "" #: ../install/index.php:867 msgid "All folders are writable" msgstr "" #: ../install/index.php:873 msgid "" "If you are installing packages, once the packages are installed, you should " "change the scripts directory back to read only as this presents some " "exposure to the web site." msgstr "" #: ../install/index.php:873 ../install/index.php:879 ../install/index.php:915 msgid "NOTE:" msgstr "" #: ../install/index.php:879 msgid "" "For remote pollers, it is critical that\n" "\t\t\t\t\t\t\t\tthe paths that you will be updating frequently, including " "the plugins, scripts,\n" "\t\t\t\t\t\t\t\tand resources paths have read/write access as the data " "collector will have to\n" "\t\t\t\t\t\t\t\tupdate these paths from the main web server content." msgstr "" #: ../install/index.php:889 #, fuzzy msgid "Template Setup" msgstr "Mallnamn" #: ../install/index.php:891 msgid "" "Please select the Device Templates that you wish to use after the Install. " "If you Operating System is Windows, you need to ensure that you select the " "'Windows Device' Template. If your Operating System is Linux/UNIX, make " "sure you select the 'Local Linux Machine' Device Template." msgstr "" #: ../install/index.php:893 msgid "" "Device Templates allow you to monitor and graph a vast assortment of data " "within Cacti. After you select the desired Device Templates, press 'Finish' " "and the installation will complete. Please be patient on this step, as the " "importation of the Device Templates can take a few minutes." msgstr "" #: ../install/index.php:899 ../plugins.php:378 msgid "Author" msgstr "" #: ../install/index.php:899 msgid "Homepage" msgstr "" #: ../install/index.php:917 msgid "" "Press 'Finish' to complete the installation process after selecting your " "Device Templates." msgstr "" #: ../install/index.php:921 #, fuzzy msgid "Upgrade Results" msgstr "Importera resultat" #: ../install/index.php:928 #, fuzzy msgid "[Fail]" msgstr "[lyckades ej]" #: ../install/index.php:929 #, fuzzy msgid "[Success]" msgstr "[lyckad]" #: ../install/index.php:930 msgid "[Skipped]" msgstr "" #: ../install/index.php:934 msgid "Database upgrade completed!" msgstr "" #: ../install/index.php:955 msgid "" "One or more of the SQL queries needed to upgraded your Cacti installation " "has failed. Please see below for more details. Your Cacti MySQL user must " "have SELECT, INSERT, UPDATE, DELETE, ALTER, CREATE, and DROP permissions. You should try executing the failed queries as \"root\" " "to ensure that you do not have a permissions problem." msgstr "" #: ../install/index.php:955 ../utilities.php:2010 ../utilities.php:2011 #: ../utilities.php:2014 ../utilities.php:2015 msgid "WARNING:" msgstr "" #: ../install/index.php:960 msgid "No database action needed." msgstr "" #: ../install/index.php:965 msgid "Important Upgrade Notice" msgstr "" #: ../install/index.php:966 msgid "" "Before you continue with the installation, you must update " "your /etc/crontab file to point to poller.php instead of " "cmd.php." msgstr "" #: ../install/index.php:967 msgid "" "See the sample crontab entry below with the change made in red. Your crontab " "line will look slightly different based upon your setup." msgstr "" #: ../install/index.php:969 msgid "Once you have made this change, please click Finish to continue." msgstr "" #: ../install/index.php:976 #, fuzzy msgctxt "Dialog: previous" msgid "Previous" msgstr "Föregående" #: ../install/index.php:977 msgctxt "Dialog: complete" msgid "Finish" msgstr "" #: ../install/index.php:977 #, fuzzy msgctxt "Dialog: go to the next page" msgid "Next" msgstr "Nästa" #: ../install/index.php:978 msgctxt "Dialog: test connection" msgid "Test Connection" msgstr "" #: ../install/index.php:978 msgid "Test remote database connection" msgstr "" #: ../lib/aggregate.php:42 msgid "Display Graphs from this Aggregate" msgstr "" #: ../lib/api_aggregate.php:1101 msgid "" "The Graphs chosen for the Aggregate Graph below represent Graphs from " "multiple Graph Templates. Aggregate does not support creating Aggregate " "Graphs from multiple Graph Templates." msgstr "" #: ../lib/api_aggregate.php:1102 ../lib/api_aggregate.php:1121 msgid "Press 'Return' to return and select different Graphs" msgstr "" #: ../lib/api_aggregate.php:1120 msgid "" "The Graphs chosen for the Aggregate Graph do not use Graph Templates. " "Aggregate does not support creating Aggregate Graphs from non-templated " "graphs." msgstr "" #: ../lib/api_aggregate.php:1210 ../lib/functions.php:1932 #, fuzzy msgid "Graph Items" msgstr "Graftitel" #: ../lib/api_aggregate.php:1210 ../lib/functions.php:2064 #, fuzzy msgid "Graph Template Items" msgstr "Grafmallar" #: ../lib/api_aggregate.php:1214 ../lib/html.php:855 #, fuzzy msgid "Graph Item" msgstr "Graftitel" #: ../lib/api_aggregate.php:1217 ../lib/html.php:858 msgid "CF Type" msgstr "" #: ../lib/api_aggregate.php:1218 ../lib/html.php:860 msgid "Item Color" msgstr "" #: ../lib/api_aggregate.php:1219 #, fuzzy msgid "Color Template" msgstr "Exportera mall" #: ../lib/api_aggregate.php:1220 msgid "Skip" msgstr "" #: ../lib/api_automation.php:124 #, fuzzy msgid "Matching Devices" msgstr "Enheter" #: ../lib/api_automation.php:139 ../lib/api_automation.php:994 #: ../lib/html_reports.php:268 ../lib/html_reports.php:1211 #: ../lib/html_reports.php:1481 ../lib/html_reports.php:1492 #: ../lib/rrd.php:2653 ../utilities.php:301 ../utilities.php:2338 msgid "Type" msgstr "" #: ../lib/api_automation.php:299 msgid "No Matching Devices" msgstr "" #: ../lib/api_automation.php:408 ../lib/api_automation.php:674 #: ../lib/api_automation.php:799 msgid "Matching Objects" msgstr "" #: ../lib/api_automation.php:562 #, fuzzy msgid "Graph ID" msgstr "Grafer" #: ../lib/api_automation.php:689 msgid "Objects" msgstr "" #: ../lib/api_automation.php:760 msgid "" "A blue font color indicates that the rule will be applied to the objects in " "question. Other objects will not be subject to the rule." msgstr "" #: ../lib/api_automation.php:760 #, php-format msgid "Matching Objects [ %s ]" msgstr "" #: ../lib/api_automation.php:810 #, fuzzy msgid "Device Status" msgstr "Enheter" #: ../lib/api_automation.php:832 msgid "There are no Objects that match this rule." msgstr "" #: ../lib/api_automation.php:876 msgid "Error in data query" msgstr "" #: ../lib/api_automation.php:980 msgid "Matching Items" msgstr "" #: ../lib/api_automation.php:1142 msgid "Resulting Branch" msgstr "" #: ../lib/api_automation.php:1181 #, fuzzy msgid "No Items Found" msgstr "Inga grafer funna" #: ../lib/api_automation.php:1209 ../lib/api_automation.php:1271 msgid "Field" msgstr "" #: ../lib/api_automation.php:1211 ../lib/api_automation.php:1273 msgid "Pattern" msgstr "" #: ../lib/api_automation.php:1254 msgid "No Device Selection Criteria" msgstr "" #: ../lib/api_automation.php:1316 msgid "No Graph Creation Criteria" msgstr "" #: ../lib/api_automation.php:1335 msgid "Propagate Change" msgstr "" #: ../lib/api_automation.php:1336 msgid "Search Pattern" msgstr "" #: ../lib/api_automation.php:1337 msgid "Replace Pattern" msgstr "" #: ../lib/api_automation.php:1381 msgid "No Tree Creation Criteria" msgstr "" #: ../lib/api_automation.php:1941 #, php-format msgid "Rule Item [edit rule item for %s: %s]" msgstr "" #: ../lib/api_automation.php:1943 #, php-format msgid "Rule Item [new rule item for %s: %s]" msgstr "" #: ../lib/api_automation.php:2634 #, fuzzy msgid "Added by Cacti Automation" msgstr "Återgå till Cacti" #: ../lib/api_device.php:398 msgid "Device is Disabled" msgstr "" #: ../lib/api_device.php:399 msgid "Device Availability Check Bypassed" msgstr "" #: ../lib/api_device.php:406 msgid "SNMP Information" msgstr "" #: ../lib/api_device.php:410 msgid "SNMP not in use" msgstr "" #: ../lib/api_device.php:418 ../lib/api_device.php:422 #: ../lib/api_device.php:434 msgid "SNMP error" msgstr "" #: ../lib/api_device.php:441 msgid "System:" msgstr "" #: ../lib/api_device.php:447 msgid "Uptime:" msgstr "" #: ../lib/api_device.php:448 msgid "days" msgstr "" #: ../lib/api_device.php:448 msgid "hours" msgstr "" #: ../lib/api_device.php:448 msgid "minutes" msgstr "" #: ../lib/api_device.php:449 #, fuzzy msgid "Hostname:" msgstr "Värdnamn" #: ../lib/api_device.php:450 msgid "Location:" msgstr "" #: ../lib/api_device.php:451 msgid "Contact:" msgstr "" #: ../lib/api_device.php:480 ../lib/functions.php:3814 #: ../lib/functions.php:3816 ../lib/functions.php:3820 #, fuzzy msgid "Ping Results" msgstr "Importera resultat" #: ../lib/api_device.php:485 msgid "No Ping or SNMP Availability Check in Use" msgstr "" #: ../lib/auth.php:312 msgid "Web Basic" msgstr "" #: ../lib/clog_webapi.php:124 msgid "" "Click 'Continue' to purge the Cacti log file.


    Note: If logging is " "set to Cacti and Syslog, the log information will remain in Syslog." msgstr "" #: ../lib/clog_webapi.php:130 msgid "Purge cacti.log" msgstr "" #: ../lib/clog_webapi.php:156 ../utilities.php:975 msgid "Log Filters" msgstr "" #: ../lib/clog_webapi.php:183 #, php-format msgid "Log [Total Lines: %d %s - Additional Filter in Affect]" msgstr "" #: ../lib/clog_webapi.php:185 #, php-format msgid "Log [Total Lines: %d %s - No Other Filter in Affect]" msgstr "" #: ../lib/clog_webapi.php:195 ../utilities.php:1084 ../utilities.php:1403 #: ../utilities.php:1611 ../utilities.php:1691 ../utilities.php:2332 #: ../utilities.php:2542 msgid "Entries" msgstr "" #: ../lib/clog_webapi.php:311 ../utilities.php:984 msgid "Tail Lines" msgstr "" #: ../lib/clog_webapi.php:327 ../utilities.php:996 msgid "Message Type" msgstr "" #: ../lib/clog_webapi.php:332 ../utilities.php:1001 msgid "Stats" msgstr "" #: ../lib/clog_webapi.php:335 ../utilities.php:1004 msgid "Debug" msgstr "" #: ../lib/clog_webapi.php:336 ../utilities.php:1005 msgid "SQL Calls" msgstr "" #: ../lib/clog_webapi.php:367 ../utilities.php:1032 msgid "Display Order" msgstr "" #: ../lib/clog_webapi.php:371 ../utilities.php:1036 msgid "Newest First" msgstr "" #: ../lib/clog_webapi.php:372 ../utilities.php:1037 msgid "Oldest First" msgstr "" #: ../lib/functions.php:676 #, php-format msgid "Error %s is not readable" msgstr "" #: ../lib/functions.php:1818 ../lib/functions.php:1823 msgid "Logged in as" msgstr "Inloggad som" #: ../lib/functions.php:1818 msgid "Login as Regular User" msgstr "" #: ../lib/functions.php:1818 msgid "guest" msgstr "" #: ../lib/functions.php:1825 msgid "Edit Profile" msgstr "" #: ../lib/functions.php:1827 msgid "Logout" msgstr "Logga ut" #: ../lib/functions.php:1844 ../lib/functions.php:1850 msgid "User Profile (Edit)" msgstr "" #: ../lib/functions.php:1862 ../lib/functions.php:1868 #, fuzzy msgid "Tree Mode" msgstr "Trädvy" #: ../lib/functions.php:1874 #, fuzzy msgid "List Mode" msgstr "Listvy" #: ../lib/functions.php:1896 ../lib/functions.php:1902 #: ../lib/functions.php:2756 ../lib/html.php:1299 ../lib/html.php:1371 #: ../links.php:344 ../user_admin.php:1653 ../user_group_admin.php:1374 msgid "Console" msgstr "" #: ../lib/functions.php:1914 ../lib/functions.php:1956 #: ../lib/functions.php:1974 ../lib/functions.php:2028 #: ../lib/functions.php:2040 ../lib/functions.php:2052 #: ../lib/functions.php:2088 ../lib/functions.php:2106 #: ../lib/functions.php:2124 ../lib/functions.php:2142 #: ../lib/functions.php:2160 ../lib/functions.php:2184 #: ../lib/functions.php:2220 ../lib/functions.php:2340 #: ../lib/functions.php:2364 ../lib/functions.php:2382 #: ../lib/functions.php:2400 ../lib/functions.php:2412 #: ../lib/functions.php:2514 ../lib/functions.php:2538 #: ../lib/functions.php:2556 ../lib/functions.php:2574 #: ../lib/functions.php:2592 ../lib/functions.php:2616 msgid "(Edit)" msgstr "" #: ../lib/functions.php:1938 #, fuzzy msgid "Create New Graphs" msgstr "Nya grafer" #: ../lib/functions.php:1944 msgid "Create Graphs from Data Query" msgstr "" #: ../lib/functions.php:1962 ../lib/functions.php:1980 #: ../lib/functions.php:2076 ../lib/functions.php:2166 #: ../lib/functions.php:2190 ../lib/functions.php:2346 msgid "(Remove)" msgstr "" #: ../lib/functions.php:1998 ../lib/functions.php:2004 #: ../lib/functions.php:2010 ../lib/functions.php:2016 #: ../lib/functions.php:2280 msgid "View Cacti Log" msgstr "" #: ../lib/functions.php:2022 msgid "Graph Trees" msgstr "Grafträd" #: ../lib/functions.php:2154 msgid "Round Robin Archives" msgstr "" #: ../lib/functions.php:2196 #, fuzzy msgid "Data Input Fields" msgstr "Dataförfrågningar" #: ../lib/functions.php:2202 ../lib/functions.php:2232 msgid "(Remove Item)" msgstr "" #: ../lib/functions.php:2250 msgid "List unused Files" msgstr "" #: ../lib/functions.php:2262 ../lib/functions.php:2274 ../utilities.php:1780 msgid "View Poller Cache" msgstr "" #: ../lib/functions.php:2268 ../utilities.php:1784 #, fuzzy msgid "View Data Query Cache" msgstr "Dataförfrågning" #: ../lib/functions.php:2286 ../utilities.php:1168 msgid "Clear Cacti Log" msgstr "" #: ../lib/functions.php:2292 ../utilities.php:1773 msgid "View User Log" msgstr "" #: ../lib/functions.php:2298 msgid "Clear User Log" msgstr "" #: ../lib/functions.php:2304 ../utilities.php:1764 msgid "Technical Support" msgstr "" #: ../lib/functions.php:2310 ../utilities.php:1877 msgid "Boost Status" msgstr "" #: ../lib/functions.php:2316 msgid "View SNMP Agent Cache" msgstr "" #: ../lib/functions.php:2322 msgid "View SNMP Agent Notification Log" msgstr "" #: ../lib/functions.php:2352 msgid "VDEF Items" msgstr "" #: ../lib/functions.php:2358 msgid "View SNMP Notification Receivers" msgstr "" #: ../lib/functions.php:2370 msgid "Cacti Settings" msgstr "Inställningar för Cacti" #: ../lib/functions.php:2388 ../lib/functions.php:2418 #, fuzzy msgid "(Action)" msgstr "Funktion" #: ../lib/functions.php:2436 #, fuzzy msgid "Export Results" msgstr "Importera resultat" #: ../lib/functions.php:2448 ../lib/functions.php:2478 ../lib/html.php:1320 #: ../lib/html.php:1322 ../lib/html.php:1396 msgid "Reporting" msgstr "" #: ../lib/functions.php:2454 ../lib/functions.php:2484 msgid "Report Add" msgstr "" #: ../lib/functions.php:2460 ../lib/functions.php:2490 #, fuzzy msgid "Report Delete" msgstr "Exportera mall" #: ../lib/functions.php:2466 ../lib/functions.php:2496 msgid "Report Edit" msgstr "" #: ../lib/functions.php:2472 ../lib/functions.php:2502 msgid "Report Edit Item" msgstr "" #: ../lib/functions.php:2526 #, fuzzy msgid "Color Template Items" msgstr "Exportera mallar" #: ../lib/functions.php:2568 msgid "Aggregate Items" msgstr "" #: ../lib/functions.php:2604 #, fuzzy msgid "Graph Rule Items" msgstr "Grafträd" #: ../lib/functions.php:2628 msgid "Tree Rule Items" msgstr "" #: ../lib/functions.php:2713 msgid "Leaf" msgstr "" #: ../lib/functions.php:2727 msgid "Non Query Based" msgstr "" #: ../lib/functions.php:3435 msgid "" "Mailer Error: No TO address set!!
    If using the Test Mail " "link, please set the Alert e-mail setting." msgstr "" #: ../lib/functions.php:3747 #, php-format msgid "Authentication failed: %s" msgstr "" #: ../lib/functions.php:3751 #, php-format msgid "HELO failed: %s" msgstr "" #: ../lib/functions.php:3754 #, php-format msgid "Connect failed: %s" msgstr "" #: ../lib/functions.php:3757 #, fuzzy msgid "SMTP error: " msgstr "LDAP fel:" #: ../lib/functions.php:3770 msgid "" "This is a test message generated from Cacti. This message was sent to test " "the configuration of your Mail Settings." msgstr "" #: ../lib/functions.php:3771 msgid "Your email settings are currently set as follows" msgstr "" #: ../lib/functions.php:3772 msgid "Method" msgstr "" #: ../lib/functions.php:3774 msgid "Checking Configuration...
    " msgstr "" #: ../lib/functions.php:3781 msgid "PHP's Mailer Class" msgstr "" #: ../lib/functions.php:3787 msgid "Method: SMTP" msgstr "" #: ../lib/functions.php:3802 msgid "Not Shown for Security Reasons" msgstr "" #: ../lib/functions.php:3803 msgid "Security" msgstr "" #: ../lib/functions.php:3811 msgid "Ping Results:" msgstr "" #: ../lib/functions.php:3820 msgid "Bypassed" msgstr "" #: ../lib/functions.php:3828 msgid "Creating Message Text..." msgstr "" #: ../lib/functions.php:3831 msgid "Sending Message..." msgstr "" #: ../lib/functions.php:3835 msgid "Cacti Test Message" msgstr "" #: ../lib/functions.php:3837 #, fuzzy msgid "Success!" msgstr "[lyckad]" #: ../lib/functions.php:3840 msgid "Message Not Sent due to ping failure." msgstr "" #: ../lib/html.php:233 #, fuzzy msgid "Data Query:" msgstr "Dataförfrågning" #: ../lib/html.php:293 msgid "CSV Export of Graph Data" msgstr "" #: ../lib/html.php:294 #, fuzzy msgid "Time Graph View" msgstr "Se grafer" #: ../lib/html.php:296 msgid "Click to view just this Graph in Real-time" msgstr "" #: ../lib/html.php:299 msgid "Kill Spikes in Graphs" msgstr "" #: ../lib/html.php:336 msgid "Previous" msgstr "Föregående" #: ../lib/html.php:339 #, php-format msgid "%d to %d of %s [ %s ]" msgstr "" #: ../lib/html.php:348 #, fuzzy, php-format msgid "All %d %s" msgstr "Visar rader" #: ../lib/html.php:354 #, fuzzy, php-format msgid "No %s Found" msgstr "Inga grafer funna" #: ../lib/html.php:674 ../lib/html.php:761 #, fuzzy msgid "Select All Rows" msgstr "Markera alla" #: ../lib/html.php:859 msgid "Alpha %" msgstr "" #: ../lib/html.php:900 msgid "No Task" msgstr "" #: ../lib/html.php:1144 msgid "Choose an action" msgstr "" #: ../lib/html.php:1154 msgid "Execute Action" msgstr "" #: ../lib/html.php:1329 ../lib/html.php:1331 ../lib/html.php:1407 #, fuzzy msgid "Cacti Log" msgstr "Inställningar för Cacti" #: ../lib/html.php:1721 msgid "Nan's" msgstr "" #: ../lib/html.php:1725 msgid "Standard Deviations" msgstr "" #: ../lib/html.php:1727 #, php-format msgid "%s Standard Deviations" msgstr "" #: ../lib/html.php:1737 msgid "Variance Outliers" msgstr "" #: ../lib/html.php:1739 #, php-format msgid "%d Outliers" msgstr "" #: ../lib/html.php:1743 msgid "Kills Per RRA" msgstr "" #: ../lib/html.php:1745 #, php-format msgid "%d Spikes" msgstr "" #: ../lib/html.php:1752 msgid "Remove StdDev" msgstr "" #: ../lib/html.php:1753 msgid "Remove Variance" msgstr "" #: ../lib/html.php:1754 msgid "Gap Fill Range" msgstr "" #: ../lib/html.php:1755 msgid "Float Range" msgstr "" #: ../lib/html.php:1756 msgid "Dry Run StdDev" msgstr "" #: ../lib/html.php:1757 msgid "Dry Run Variance" msgstr "" #: ../lib/html.php:1758 msgid "Dry Run Gap Fill Range" msgstr "" #: ../lib/html.php:1759 msgid "Dry Run Float Range" msgstr "" #: ../lib/html_filter.php:82 msgid "Apply filter to table" msgstr "" #: ../lib/html_filter.php:87 msgid "Reset filter to default values" msgstr "" #: ../lib/html_form.php:509 msgid "File Found" msgstr "" #: ../lib/html_form.php:511 msgid "Path is a Directory and not a File" msgstr "" #: ../lib/html_form.php:515 msgid "File is Not Found" msgstr "" #: ../lib/html_form.php:518 msgid "Enter a valid file path" msgstr "" #: ../lib/html_form.php:554 msgid "Directory Found" msgstr "" #: ../lib/html_form.php:556 msgid "Path is a File and not a Directory" msgstr "" #: ../lib/html_form.php:560 msgid "Directory is Not found" msgstr "" #: ../lib/html_form.php:563 msgid "Enter a valid directory path" msgstr "" #: ../lib/html_form.php:1056 msgid "NO FONT VERIFICATION POSSIBLE" msgstr "" #: ../lib/html_form_template.php:562 ../lib/html_form_template.php:577 #, php-format msgid "Data Query Data Sources must be created through %s" msgstr "" #: ../lib/html_graph.php:197 ../lib/html_tree.php:649 msgid "" "Save the current Graphs, Columns, Thumbnail, Preset, and Timeshift " "preferences to your profile" msgstr "" #: ../lib/html_graph.php:226 ../lib/html_tree.php:672 msgid "Columns" msgstr "" #: ../lib/html_graph.php:230 ../lib/html_tree.php:676 #, php-format msgid "%d Column" msgstr "" #: ../lib/html_graph.php:239 ../lib/html_reports.php:125 #: ../lib/html_tree.php:685 #, fuzzy msgid "Thumbnails" msgstr "Miniatyrgrafer" #: ../lib/html_graph.php:261 ../lib/html_tree.php:707 msgid "Custom" msgstr "" #: ../lib/html_graph.php:282 ../lib/html_reports.php:1479 #: ../lib/html_reports.php:1490 ../lib/html_tree.php:728 msgid "From" msgstr "" #: ../lib/html_graph.php:288 ../lib/html_tree.php:734 msgid "Start Date Selector" msgstr "" #: ../lib/html_graph.php:291 ../lib/html_reports.php:1480 #: ../lib/html_reports.php:1491 ../lib/html_tree.php:737 msgid "To" msgstr "" #: ../lib/html_graph.php:297 ../lib/html_tree.php:743 msgid "End Date Selector" msgstr "" #: ../lib/html_graph.php:300 ../lib/html_tree.php:746 msgid "Shift Time Backward" msgstr "" #: ../lib/html_graph.php:303 ../lib/html_tree.php:749 msgid "Define Shifting Interval" msgstr "" #: ../lib/html_graph.php:316 ../lib/html_tree.php:762 msgid "Shift Time Forward" msgstr "" #: ../lib/html_graph.php:319 ../lib/html_tree.php:765 msgid "Refresh selected time span" msgstr "" #: ../lib/html_graph.php:322 ../lib/html_tree.php:768 msgid "Return to the default time span" msgstr "" #: ../lib/html_graph.php:339 msgid "Interval" msgstr "" #: ../lib/html_graph.php:351 ../lib/html_tree.php:797 msgid "Stop" msgstr "" #: ../lib/html_reports.php:35 ../lib/html_reports.php:1474 #, fuzzy msgid "Report Name" msgstr "Mallnamn" #: ../lib/html_reports.php:37 msgid "New Report" msgstr "" #: ../lib/html_reports.php:38 msgid "Give this Report a descriptive Name" msgstr "" #: ../lib/html_reports.php:43 #, fuzzy msgid "Enable Report" msgstr "Aktiverad" #: ../lib/html_reports.php:46 msgid "Check this box to enable this Report." msgstr "" #: ../lib/html_reports.php:51 #, fuzzy msgid "Output Formatting" msgstr "Format för utdata" #: ../lib/html_reports.php:56 msgid "Use Custom Format HTML" msgstr "" #: ../lib/html_reports.php:59 msgid "Check this box if you want to use custom html and CSS for the report." msgstr "" #: ../lib/html_reports.php:64 msgid "Format File to Use" msgstr "" #: ../lib/html_reports.php:67 msgid "" "Choose the custom html wrapper and CSS file to use. This file contains both " "html and CSS to wrap around your report.\n" "\t\tIf it contains more than simply CSS, you need to place a special " " tag inside of the file. This format tag will be replaced by the " "report content. These files are located in the 'formats' directory." msgstr "" #: ../lib/html_reports.php:73 msgid "Default Text Font Size" msgstr "" #: ../lib/html_reports.php:74 msgid "" "Defines the default font size for all text in the report including the " "Report Title." msgstr "" #: ../lib/html_reports.php:81 msgid "Default Object Alignment" msgstr "" #: ../lib/html_reports.php:82 msgid "Defines the default Alignment for Text and Graphs." msgstr "" #: ../lib/html_reports.php:89 #, fuzzy msgid "Graph Linked" msgstr "Graftitel" #: ../lib/html_reports.php:92 msgid "Should the Graphs be linked back to the Cacti site?" msgstr "" #: ../lib/html_reports.php:96 #, fuzzy msgid "Graph Settings" msgstr "Inställningar för Cacti" #: ../lib/html_reports.php:101 #, fuzzy msgid "Graph Columns" msgstr "Miniatyrgrafer" #: ../lib/html_reports.php:105 msgid "The number of Graph columns." msgstr "" #: ../lib/html_reports.php:113 msgid "The Graph width in pixels." msgstr "" #: ../lib/html_reports.php:121 msgid "The Graph height in pixels." msgstr "" #: ../lib/html_reports.php:128 msgid "Should the Graphs be rendered as Thumbnails?" msgstr "" #: ../lib/html_reports.php:132 msgid "Email Frequency" msgstr "" #: ../lib/html_reports.php:137 msgid "Next Timestamp for Sending Mail Report" msgstr "" #: ../lib/html_reports.php:138 msgid "" "Start time for [first|next] mail to take place. All future mailing times " "will be based upon this start time. A good example would be 2:00am. The time " "must be in the future. If a fractional time is used, say 2:00am, it is " "assumed to be in the future." msgstr "" #: ../lib/html_reports.php:146 msgid "Report Interval" msgstr "" #: ../lib/html_reports.php:147 msgid "Defines a Report Frequency relative to the given Mailtime above." msgstr "" #: ../lib/html_reports.php:148 msgid "e.g. 'Week(s)' represents a weekly Reporting Interval." msgstr "" #: ../lib/html_reports.php:155 msgid "Interval Frequency" msgstr "" #: ../lib/html_reports.php:156 msgid "" "Based upon the Timespan of the Report Interval above, defines the Frequency " "within that Interval." msgstr "" #: ../lib/html_reports.php:157 msgid "" "e.g. If the Report Interval is 'Month(s)', then '2' indicates Every '2 " "Month(s) from the next Mailtime.' Lastly, if using the Month(s) Report " "Intervals, the 'Day of Week' and the 'Day of Month' are both calculated " "based upon the Mailtime you specify above." msgstr "" #: ../lib/html_reports.php:165 msgid "Email Sender/Receiver Details" msgstr "" #: ../lib/html_reports.php:170 msgid "Subject" msgstr "" #: ../lib/html_reports.php:172 #, fuzzy msgid "Cacti Report" msgstr "Inställningar för Cacti" #: ../lib/html_reports.php:173 msgid "" "This value will be used as the default Email subject. The report name will " "be used if left blank." msgstr "" #: ../lib/html_reports.php:181 msgid "This Name will be used as the default E-mail Sender" msgstr "" #: ../lib/html_reports.php:189 msgid "This Address will be used as the E-mail Senders address" msgstr "" #: ../lib/html_reports.php:194 msgid "To Email Address(es)" msgstr "" #: ../lib/html_reports.php:200 msgid "Please separate multiple addresses by comma (,)" msgstr "" #: ../lib/html_reports.php:205 msgid "BCC Address(es)" msgstr "" #: ../lib/html_reports.php:211 msgid "Blind carbon copy. Please separate multiple addresses by comma (,)" msgstr "" #: ../lib/html_reports.php:216 msgid "Image attach type" msgstr "" #: ../lib/html_reports.php:219 msgid "Select one of the given Types for the Image Attachments" msgstr "" #: ../lib/html_reports.php:271 msgid "Item Type to be added." msgstr "" #: ../lib/html_reports.php:277 #, fuzzy msgid "Graph Tree" msgstr "Grafträd" #: ../lib/html_reports.php:281 msgid "Select a Tree to use." msgstr "" #: ../lib/html_reports.php:287 #, fuzzy msgid "Graph Tree Branch" msgstr "Grafträd" #: ../lib/html_reports.php:291 msgid "Select a Tree Branch to use." msgstr "" #: ../lib/html_reports.php:293 msgid "Branch:" msgstr "" #: ../lib/html_reports.php:299 ../lib/html_tree.php:593 #, fuzzy msgid "Device:" msgstr "Enheter" #: ../lib/html_reports.php:309 msgid "Cascade to Branches" msgstr "" #: ../lib/html_reports.php:312 msgid "Should all children branch Graphs be rendered?" msgstr "" #: ../lib/html_reports.php:316 msgid "Graph Name Regular Expression" msgstr "" #: ../lib/html_reports.php:319 msgid "" "A Perl compatible regular expression (REGEXP) used to select graphs to " "include from the tree." msgstr "" #: ../lib/html_reports.php:329 msgid "Select a Device Template to use." msgstr "" #: ../lib/html_reports.php:338 msgid "Select a Device to specify a Graph" msgstr "" #: ../lib/html_reports.php:348 msgid "Select a Graph Template for the host" msgstr "" #: ../lib/html_reports.php:358 msgid "The Graph to use for this report item." msgstr "" #: ../lib/html_reports.php:368 msgid "Graph End Time is always set to Cacti's schedule." msgstr "" #: ../lib/html_reports.php:369 msgid "Graph Start Time equals Graph End Time minus given timespan" msgstr "" #: ../lib/html_reports.php:374 ../lib/html_reports.php:1214 msgid "Alignment" msgstr "" #: ../lib/html_reports.php:377 msgid "Alignment of the Item" msgstr "" #: ../lib/html_reports.php:382 msgid "Fixed Text" msgstr "" #: ../lib/html_reports.php:385 msgid "Enter descriptive Text" msgstr "" #: ../lib/html_reports.php:390 ../lib/html_reports.php:1215 #, fuzzy msgid "Font Size" msgstr "Storlek" #: ../lib/html_reports.php:394 msgid "Font Size of the Item" msgstr "" #: ../lib/html_reports.php:457 msgid "Date/Time moved to the same time Tomorrow" msgstr "" #: ../lib/html_reports.php:640 msgid "You must select at least one Report." msgstr "" #: ../lib/html_reports.php:648 msgid "Click 'Continue' to delete the following Report(s)." msgstr "" #: ../lib/html_reports.php:655 msgid "Click 'Continue' to take ownership of the following Report(s)." msgstr "" #: ../lib/html_reports.php:662 msgid "" "Click 'Continue' to duplicate the following Report(s). You may optionally " "change the title for the new Reports" msgstr "" #: ../lib/html_reports.php:664 msgid "Name Format:" msgstr "" #: ../lib/html_reports.php:674 msgid "Click 'Continue' to enable the following Report(s)." msgstr "" #: ../lib/html_reports.php:676 msgid "" "Please be certain that those Report(s) have successfully been tested first!" msgstr "" #: ../lib/html_reports.php:682 msgid "Click 'Continue' to disable the following Reports." msgstr "" #: ../lib/html_reports.php:689 msgid "Click 'Continue' to send the following Report(s) now." msgstr "" #: ../lib/html_reports.php:735 #, php-format msgid "Unable to send Report '%d'. Please set destination e-mail addresses" msgstr "" #: ../lib/html_reports.php:740 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail subject" msgstr "" #: ../lib/html_reports.php:745 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail From Name" msgstr "" #: ../lib/html_reports.php:750 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail from address" msgstr "" #: ../lib/html_reports.php:806 #, fuzzy, php-format msgid "Report Item [edit Report: %s]" msgstr "Grafmallar" #: ../lib/html_reports.php:808 #, php-format msgid "Report Item [new Report: %s]" msgstr "" #: ../lib/html_reports.php:1059 ../user_admin.php:1937 #, fuzzy, php-format msgid "[edit: %s]" msgstr "[redigera: " #: ../lib/html_reports.php:1060 msgid "Events" msgstr "" #: ../lib/html_reports.php:1062 ../lib/import.php:1803 ../user_admin.php:1939 msgid "[new]" msgstr "[nytt]" #: ../lib/html_reports.php:1094 msgid "Send Report" msgstr "" #: ../lib/html_reports.php:1172 msgid "Scheduled Events" msgstr "" #: ../lib/html_reports.php:1183 msgid "Report Preview" msgstr "" #: ../lib/html_reports.php:1212 msgid "Item Details" msgstr "" #: ../lib/html_reports.php:1213 msgid "Timespan" msgstr "Tidsspann" #: ../lib/html_reports.php:1252 msgid "(All Branches)" msgstr "" #: ../lib/html_reports.php:1254 #, fuzzy msgid "(Current Branch)" msgstr "Nuvarande" #: ../lib/html_reports.php:1297 msgid "No Report Items" msgstr "" #: ../lib/html_reports.php:1371 #, fuzzy msgid "Administrator Level" msgstr "Användaradministration" #: ../lib/html_reports.php:1371 #, php-format msgid "Reports [%s]" msgstr "" #: ../lib/html_reports.php:1371 #, fuzzy msgid "User Level" msgstr "Användarnamn:" #: ../lib/html_reports.php:1466 msgid "Reports" msgstr "" #: ../lib/html_reports.php:1475 ../tree.php:1562 msgid "Owner" msgstr "" #: ../lib/html_reports.php:1476 ../lib/html_reports.php:1487 msgid "Frequency" msgstr "" #: ../lib/html_reports.php:1477 ../lib/html_reports.php:1488 msgid "Last Run" msgstr "" #: ../lib/html_reports.php:1478 ../lib/html_reports.php:1489 #, fuzzy msgid "Next Run" msgstr "Nästa" #: ../lib/html_reports.php:1486 #, fuzzy msgid "Report Title" msgstr "Mallens titel" #: ../lib/html_reports.php:1517 msgid "Report Disabled - No Owner" msgstr "" #: ../lib/html_reports.php:1527 msgid "Multiple" msgstr "" #: ../lib/html_reports.php:1528 msgid "Invalid" msgstr "" #: ../lib/html_reports.php:1535 #, fuzzy msgid "No Reports Found" msgstr "Inga grafer funna" #: ../lib/html_tree.php:580 ../lib/html_tree.php:583 ../lib/html_tree.php:586 #, fuzzy msgid "Graph Template:" msgstr "Grafmall" #: ../lib/html_tree.php:591 ../lib/reports.php:886 msgid "Tree:" msgstr "" #: ../lib/html_tree.php:592 ../lib/reports.php:891 msgid "Leaf:" msgstr "" #: ../lib/html_tree.php:596 msgid "Applied" msgstr "" #: ../lib/html_tree.php:596 msgid "Filter" msgstr "" #: ../lib/html_tree.php:596 #, fuzzy msgid "Graph Filters" msgstr "Graftitel" #: ../lib/html_tree.php:642 msgid "Set/Refresh Filter" msgstr "" #: ../lib/html_utility.php:419 ../lib/html_utility.php:635 #, php-format msgid "The search term \"%s\" is not valid. Error is %s" msgstr "" #: ../lib/html_utility.php:766 msgid "There was an internal error!" msgstr "" #: ../lib/html_utility.php:767 msgid "Backtrack limit was exhausted!" msgstr "" #: ../lib/html_utility.php:768 msgid "Recursion limit was exhausted!" msgstr "" #: ../lib/html_utility.php:769 msgid "Bad UTF-8 error!" msgstr "" #: ../lib/html_utility.php:770 msgid "Bad UTF-8 offset error!" msgstr "" #: ../lib/import.php:229 msgid "written" msgstr "" #: ../lib/import.php:231 msgid "could not open" msgstr "" #: ../lib/import.php:237 msgid "not exists" msgstr "" #: ../lib/import.php:240 ../lib/import.php:244 msgid "not writable" msgstr "" #: ../lib/import.php:246 msgid "writable" msgstr "" #: ../lib/import.php:1764 #, fuzzy msgid "Import Preview Results" msgstr "Importera resultat" #: ../lib/import.php:1764 msgid "Import Results" msgstr "Importera resultat" #: ../lib/import.php:1768 msgid "Cacti would make the following changes if the Package was imported:" msgstr "" #: ../lib/import.php:1770 #, fuzzy msgid "Cacti has imported the following items for the Package:" msgstr "Cacti har importerat följande:" #: ../lib/import.php:1773 msgid "Package Files" msgstr "" #: ../lib/import.php:1777 #, fuzzy msgid "[preview] " msgstr "Förhandsgrandskning" #: ../lib/import.php:1782 msgid "Cacti would make the following changes if the Template was imported:" msgstr "" #: ../lib/import.php:1784 #, fuzzy msgid "Cacti has imported the following items for the Template:" msgstr "Cacti har importerat följande:" #: ../lib/import.php:1793 msgid "[success]" msgstr "[lyckad]" #: ../lib/import.php:1795 msgid "[fail]" msgstr "[lyckades ej]" #: ../lib/import.php:1797 msgid "[preview]" msgstr "" #: ../lib/import.php:1801 #, fuzzy msgid "[updated]" msgstr "[uppdatera]" #: ../lib/import.php:1805 msgid "[unchanged]" msgstr "" #: ../lib/import.php:1841 msgid "Found Dependency:" msgstr "Hittade beroende:" #: ../lib/import.php:1843 msgid "Unmet Dependency:" msgstr "Hittade ej beroende:" #: ../lib/ldap.php:197 ../lib/ldap.php:376 msgid "PHP LDAP not enabled" msgstr "" #: ../lib/ldap.php:204 ../lib/ldap.php:384 msgid "No username defined" msgstr "" #: ../lib/ldap.php:232 msgid "Protocol Error, Unable to set version" msgstr "" #: ../lib/ldap.php:243 ../lib/ldap.php:448 msgid "Unable to set referrals option" msgstr "" #: ../lib/ldap.php:255 ../lib/ldap.php:461 msgid "Protocol Error, unable to start TLS communications" msgstr "" #: ../lib/ldap.php:294 ../lib/ldap.php:313 msgid "Authentication Success" msgstr "" #: ../lib/ldap.php:297 msgid "Insufficient access" msgstr "" #: ../lib/ldap.php:304 msgid "Group DN could not be found to compare" msgstr "" #: ../lib/ldap.php:321 ../lib/ldap.php:505 msgid "Protocol Error" msgstr "" #: ../lib/ldap.php:325 msgid "Authentication Failure" msgstr "" #: ../lib/ldap.php:329 ../lib/ldap.php:515 msgid "Insufficient Access" msgstr "" #: ../lib/ldap.php:333 ../lib/ldap.php:520 msgid "Unable to Connect to Server" msgstr "" #: ../lib/ldap.php:337 ../lib/ldap.php:525 msgid "Connection Timeout" msgstr "" #: ../lib/ldap.php:341 ../lib/ldap.php:530 msgid "General Bind Error, LDAP result:" msgstr "" #: ../lib/ldap.php:347 msgid "Unable to Create LDAP Object" msgstr "" #: ../lib/ldap.php:400 ../lib/ldap.php:479 msgid "User found" msgstr "" #: ../lib/ldap.php:407 msgid "Specific DN and Password required" msgstr "" #: ../lib/ldap.php:436 msgid "Protocol Error, unable to set version" msgstr "" #: ../lib/ldap.php:485 msgid "More than one matching user found" msgstr "" #: ../lib/ldap.php:490 ../lib/ldap.php:496 msgid "Unable to find users DN" msgstr "" #: ../lib/ldap.php:510 msgid "Invalid Credentials" msgstr "" #: ../lib/ldap.php:537 msgid "Unable to create LDAP connection object" msgstr "" #: ../lib/ping.php:130 msgid "ICMP Ping timed out" msgstr "" #: ../lib/ping.php:199 ../lib/ping.php:217 #, php-format msgid "ICMP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:204 ../lib/ping.php:222 msgid "ICMP ping Timed out" msgstr "" #: ../lib/ping.php:229 ../lib/ping.php:431 ../lib/ping.php:536 msgid "Destination address not specified" msgstr "" #: ../lib/ping.php:326 ../lib/ping.php:446 msgid "default" msgstr "" #: ../lib/ping.php:356 msgid "PHP version does not support IPv6" msgstr "" #: ../lib/ping.php:378 #, fuzzy, php-format msgid "UDP ping error: %s" msgstr "LDAP fel:" #: ../lib/ping.php:412 #, php-format msgid "UDP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:476 msgid "PHP binary does not support IPv6" msgstr "" #: ../lib/ping.php:500 #, php-format msgid "TCP ping: socket_select() failed, reason: %s" msgstr "" #: ../lib/ping.php:515 #, php-format msgid "TCP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:525 msgid "TCP ping timed out" msgstr "" #: ../lib/ping.php:552 msgid "Ping not performed due to setting." msgstr "" #: ../lib/plugins.php:479 #, php-format msgid "Plugin %s is required for %s, and it is not installed." msgstr "" #: ../lib/plugins.php:486 msgid "Plugin cannot be installed." msgstr "" #: ../lib/plugins.php:763 ../lib/plugins.php:770 ../plugins.php:267 #, fuzzy msgid "Plugin Management" msgstr "Användarhantering" #: ../lib/reports.php:896 #, fuzzy msgid "Host:" msgstr "Ingen värd" #: ../lib/reports.php:901 #, fuzzy msgid "Graph:" msgstr "Grafer" #: ../lib/reports.php:1002 #, fuzzy msgid "(No Graph Template)" msgstr "Grafmall" #: ../lib/reports.php:1421 msgid "Add to Report" msgstr "" #: ../lib/reports.php:1439 msgid "" "Choose the Report to associate these graphs with. The defaults for " "alignment will be used for each graph in the list below." msgstr "" #: ../lib/reports.php:1441 msgid "Report:" msgstr "" #: ../lib/reports.php:1448 #, fuzzy msgid "Graph Timespan:" msgstr "Tidsspann" #: ../lib/reports.php:1451 msgid "Graph Alignment:" msgstr "" #: ../lib/reports.php:1533 #, php-format msgid "Created Report Graph Item '%s'" msgstr "" #: ../lib/reports.php:1535 #, php-format msgid "Failed Adding Report Graph Item '%s' Already Exists" msgstr "" #: ../lib/reports.php:1538 #, php-format msgid "Skipped Report Graph Item '%s' Already Exists" msgstr "" #: ../lib/rrd.php:2414 #, php-format msgid "Required RRD step size is '%s'" msgstr "" #: ../lib/rrd.php:2452 #, php-format msgid "Type for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2457 #, php-format msgid "Heartbeat for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2465 #, php-format msgid "RRD minimum for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2489 #, php-format msgid "RRD maximum for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2499 #, php-format msgid "DS '%s' missing in RRDfile" msgstr "" #: ../lib/rrd.php:2508 #, php-format msgid "DS '%s' missing in Cacti definition" msgstr "" #: ../lib/rrd.php:2525 ../lib/rrd.php:2526 #, php-format msgid "Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: ../lib/rrd.php:2540 ../lib/rrd.php:2541 #, php-format msgid "File RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: ../lib/rrd.php:2572 #, php-format msgid "XFF for cacti RRA id '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2576 #, php-format msgid "Number of rows for Cacti RRA id '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2592 #, php-format msgid "RRA '%s' missing in RRDfile" msgstr "" #: ../lib/rrd.php:2601 #, php-format msgid "RRA '%s' missing in Cacti definition" msgstr "" #: ../lib/rrd.php:2620 msgid "RRD File Information" msgstr "" #: ../lib/rrd.php:2652 #, fuzzy msgid "Data Source Items" msgstr "Datakällor" #: ../lib/rrd.php:2654 msgid "Minimal Heartbeat" msgstr "" #: ../lib/rrd.php:2655 msgid "Min" msgstr "" #: ../lib/rrd.php:2656 msgid "Max" msgstr "" #: ../lib/rrd.php:2657 msgid "Last DS" msgstr "" #: ../lib/rrd.php:2659 #, fuzzy msgid "Unknown Sec" msgstr "Okänd" #: ../lib/rrd.php:2687 msgid "Round Robin Archive" msgstr "" #: ../lib/rrd.php:2690 msgid "Cur Row" msgstr "" #: ../lib/rrd.php:2691 msgid "PDP per Row" msgstr "" #: ../lib/rrd.php:2692 msgid "X Files Factor" msgstr "" #: ../lib/rrd.php:2693 msgid "CDP Prep Value (0)" msgstr "" #: ../lib/rrd.php:2694 msgid "CDP Unknown Data points (0)" msgstr "" #: ../lib/rrd.php:2771 #, php-format msgid "rename %s to %s" msgstr "" #: ../lib/rrd.php:2821 msgid "Error while parsing the XML of rrdtool dump" msgstr "" #: ../lib/rrd.php:2853 ../lib/rrd.php:2908 ../lib/rrd.php:2964 #, php-format msgid "ERROR while writing XML file: %s" msgstr "" #: ../lib/rrd.php:2862 #, php-format msgid "Added Data Source(s) to RRDfile: %s" msgstr "" #: ../lib/rrd.php:2864 ../lib/rrd.php:2919 #, php-format msgid "ERROR: RRDfile %s not writeable" msgstr "" #: ../lib/rrd.php:2891 ../lib/rrd.php:2947 msgid "Error while parsing the XML of RRDtool dump" msgstr "" #: ../lib/rrd.php:2917 #, php-format msgid "Deleted RRA(s) from RRDfile: %s" msgstr "" #: ../lib/rrd.php:2973 #, php-format msgid "Deleted rra(s) from rrd file: %s" msgstr "" #: ../lib/rrd.php:2975 #, php-format msgid "ERROR: RRD file %s not writeable" msgstr "" #: ../lib/rrd.php:3180 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) removed from RRD file\n" msgstr "" #: ../lib/rrd.php:3214 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) adding to RRD file\n" msgstr "" #: ../lib/utility.php:640 msgid "" "MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions " "to choose. Make sure you\n" "\t\t\t\trun the very latest release though which fixes a long standing low " "level networking\n" "\t\t\t\tissue that was casuing spine many issues with reliability." msgstr "" #: ../lib/utility.php:654 ../lib/utility.php:692 #, php-format msgid "" "It is recommended that you enable InnoDB in any %s version greater than 5.1." msgstr "" #: ../lib/utility.php:667 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8_general_ci collation type as some characters take more " "than a single byte. \n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes " "and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the " "internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting " "other languages." msgstr "" #: ../lib/utility.php:677 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8 character set as some characters take more than a single " "byte.\n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes " "and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the " "internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting " "other languages." msgstr "" #: ../lib/utility.php:705 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8mb4_unicode_ci collation type as some characters take more " "than a single byte." msgstr "" #: ../lib/utility.php:712 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8mb4 character set as some characters take more than a " "single byte." msgstr "" #: ../lib/utility.php:722 #, php-format msgid "" "Depending on the number of logins and use of spine data collector, \n" "\t\t\t\t%s will need many connections. The calculation for spine is:\n" "\t\t\t\ttotal_connections = total_processes * (total_threads + " "script_servers + 1), then you\n" "\t\t\t\tmust leave headroom for user connections, which will change " "depending on the number of\n" "\t\t\t\tconcurrent login accounts." msgstr "" #: ../lib/utility.php:731 #, php-format msgid "" "If using the Cacti Performance Booster and choosing a memory storage " "engine,\n" "\t\t\t\tyou have to be careful to flush your Performance Booster buffer " "before the system runs\n" "\t\t\t\tout of memory table space. This is done two ways, first reducing " "the size of your output\n" "\t\t\t\tcolumn to just the right size. This column is in the tables " "poller_output, \n" "\t\t\t\tand poller_output_boost. The second thing you can do is allocate " "more memory to memory\n" "\t\t\t\ttables. We have arbitrarily chosen a recommended value of 10% of " "system memory, but \n" "\t\t\t\tif you are using SSD disk drives, or have a smaller system, you may " "ignore this recommendation\n" "\t\t\t\tor choose a different storage engine. You may see the expected " "consumption of the \n" "\t\t\t\tPerformance Booster tables under Console -> System Utilities -> View " "Boost Status." msgstr "" #: ../lib/utility.php:744 msgid "" "Keeping the table cache larger means less file open/close operations when\n" "\t\t\t\tusing innodb_file_per_table." msgstr "" #: ../lib/utility.php:750 msgid "" "With Remote polling capabilities, large amounts of data \n" "\t\t\t\twill be synced from the main server to the remote pollers. \n" "\t\t\t\tTherefore, keep this value at or above 16M." msgstr "" #: ../lib/utility.php:757 msgid "" "When executing subqueries, having a larger temporary table size, \n" "\t\t\t\tkeep those temporary tables in memory." msgstr "" #: ../lib/utility.php:763 msgid "" "When performing joins, if they are below this size, they will \n" "\t\t\t\tbe kept in memory and never written to a temporary file." msgstr "" #: ../lib/utility.php:769 #, php-format msgid "" "When using InnoDB storage it is important to keep your table spaces\n" "\t\t\t\tseparate. This makes managing the tables simpler for long time " "users of %s.\n" "\t\t\t\tIf you are running with this currently off, you can migrate to the " "per file storage\n" "\t\t\t\tby enabling the feature, and then running an alter statement on all " "InnoDB tables." msgstr "" #: ../lib/utility.php:777 #, php-format msgid "" "InnoDB will hold as much tables and indexes in system memory as is " "possible.\n" "\t\t\t\tTherefore, you should make the innodb_buffer_pool large enough to " "hold as much\n" "\t\t\t\tof the tables and index in memory. Checking the size of the /var/" "lib/mysql/cacti\n" "\t\t\t\tdirectory will help in determining this value. We are recommending " "25% of your systems\n" "\t\t\t\ttotal memory, but your requirements will vary depending on your " "systems size." msgstr "" #: ../lib/utility.php:786 #, php-format msgid "" "With modern SSD type storage, this operation actually degrades the disk\n" "\t\t\t\tmore rapidly and adds a 50% overhead on all write operations." msgstr "" #: ../lib/utility.php:792 msgid "" "This is where metadata is stored. If you had a lot of tables, it would be " "useful to increase this." msgstr "" #: ../lib/utility.php:797 msgid "" "Rogue queries should not for the database to go offline to others. Kill " "these\n" "\t\t\t\tqueries before they kill your system." msgstr "" #: ../lib/utility.php:807 #, php-format msgid "" "Setting this value to 2 means that you will flush all transactions every\n" "\t\t\t\tsecond rather than at commit. This allows %s to perform writing " "less often." msgstr "" #: ../lib/utility.php:813 msgid "" "With modern SSD type storage, having multiple io threads is advantageous " "for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:822 #, php-format msgid "" "As of %s %s, the you can control how often %s flushes transactions to disk. " "The default is 1 second, but in high I/O systems setting to a value greater " "than 1 can allow disk I/O to be more sequential" msgstr "" #: ../lib/utility.php:827 msgid "" "With modern SSD type storage, having multiple read io threads is " "advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:833 msgid "" "With modern SSD type storage, having multiple write io threads is " "advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:839 #, php-format msgid "" "%s will divide the innodb_buffer_pool into memory regions to improve " "performance.\n" "\t\t\t\t\tThe max value is 64. When your innodb_buffer_pool is less than " "1GB, you should use the pool size\n" "\t\t\t\t\tdivided by 128MB. Continue to use this equation upto the max of " "64." msgstr "" #: ../lib/utility.php:846 #, php-format msgid "%s Tuning" msgstr "" #: ../lib/utility.php:846 msgid "Documentation" msgstr "" #: ../lib/utility.php:846 msgid "Note: Many changes below require a database restart" msgstr "" #: ../lib/vdef.php:75 msgid "A useful name for this VDEF." msgstr "" #: ../links.php:191 msgid "Click 'Continue' to Enable the following Page(s)." msgstr "" #: ../links.php:196 msgid "Enable Page(s)" msgstr "" #: ../links.php:200 msgid "Click 'Continue' to Disable the following Page(s)." msgstr "" #: ../links.php:205 msgid "Disable Page(s)" msgstr "" #: ../links.php:209 msgid "Click 'Continue' to Delete the following Page(s)." msgstr "" #: ../links.php:214 #, fuzzy msgid "Delete Page(s)" msgstr "Ta bort" #: ../links.php:217 msgid "You must select at least one page." msgstr "" #: ../links.php:315 msgid "Links" msgstr "" #: ../links.php:328 msgid "Apply Filter" msgstr "" #: ../links.php:331 msgid "Reset filters" msgstr "" #: ../links.php:345 ../links.php:508 ../user_admin.php:1654 #: ../user_group_admin.php:1375 msgid "Top Tab" msgstr "" #: ../links.php:346 ../user_admin.php:1655 ../user_group_admin.php:1376 msgid "Bottom Console" msgstr "" #: ../links.php:347 ../user_admin.php:1656 ../user_group_admin.php:1377 msgid "Top Console" msgstr "" #: ../links.php:378 msgid "Page" msgstr "" #: ../links.php:380 ../links.php:500 ../links.php:505 msgid "Style" msgstr "" #: ../links.php:392 msgid "Edit Page" msgstr "" #: ../links.php:395 #, fuzzy msgid "View Page" msgstr "Se grafer" #: ../links.php:419 msgid "Sort for Ordering" msgstr "" #: ../links.php:428 #, fuzzy msgid "No Pages Found" msgstr "Inga grafer funna" #: ../links.php:509 msgid "Console Menu" msgstr "" #: ../links.php:510 msgid "Bottom of Console Page" msgstr "" #: ../links.php:511 msgid "Top of Console Page" msgstr "" #: ../links.php:513 msgid "Where should this page appear?" msgstr "" #: ../links.php:517 msgid "Console Menu Section" msgstr "" #: ../links.php:520 msgid "" "Under which Console heading should this item appear? (All External Link " "menus will appear between Configuration and Utilities)" msgstr "" #: ../links.php:524 msgid "New Console Section" msgstr "" #: ../links.php:527 msgid "If you don't like any of the choices above, type a new title in here." msgstr "" #: ../links.php:531 #, fuzzy msgid "Tab/Menu Name" msgstr "Mallnamn" #: ../links.php:534 msgid "The text that will appear in the tab or menu." msgstr "" #: ../links.php:538 msgid "Content File/URL" msgstr "" #: ../links.php:542 msgid "Web URL Below" msgstr "" #: ../links.php:543 msgid "" "The file that contains the content for this page. This file needs to be in " "the Cacti 'include/content/' directory." msgstr "" #: ../links.php:547 msgid "Web URL Location" msgstr "" #: ../links.php:549 msgid "" "The valid URL to use for this external link. Must include the type, for " "example http://www.cacti.net. Note that many websites do not allow them to " "be embedded in an iframe from a foreign site, and therefore External Linking " "may not work." msgstr "" #: ../links.php:567 #, php-format msgid "External Links [edit: %s]" msgstr "" #: ../links.php:569 msgid "External Links [new]" msgstr "" #: ../logout.php:70 ../logout.php:119 msgid "Automatic Logout" msgstr "" #: ../logout.php:72 ../logout.php:121 msgid "You have been logged out of Cacti due to a session timeout." msgstr "" #: ../logout.php:73 ../logout.php:122 #, php-format msgid "Please close your browser or %sLogin Again%s" msgstr "" #: ../managers.php:40 ../managers.php:226 msgid "Notifications" msgstr "" #: ../managers.php:41 ../managers.php:227 msgid "Logs" msgstr "" #: ../managers.php:141 ../utilities.php:1821 msgid "SNMP Notification Receivers" msgstr "" #: ../managers.php:156 ../managers.php:231 ../managers.php:539 #: ../managers.php:793 msgid "Receivers" msgstr "" #: ../managers.php:223 msgid "Id" msgstr "" #: ../managers.php:257 msgid "No SNMP Notification Receivers" msgstr "" #: ../managers.php:288 #, php-format msgid "SNMP Notification Receiver [edit: %s]" msgstr "" #: ../managers.php:290 msgid "SNMP Notification Receiver [new]" msgstr "" #: ../managers.php:518 ../managers.php:607 ../utilities.php:2263 #: ../utilities.php:2338 msgid "MIB" msgstr "" #: ../managers.php:607 msgid "Kind" msgstr "" #: ../managers.php:607 ../utilities.php:2338 msgid "Max-Access" msgstr "" #: ../managers.php:607 msgid "Monitored" msgstr "" #: ../managers.php:607 ../utilities.php:1409 ../utilities.php:2338 msgid "OID" msgstr "" #: ../managers.php:634 msgid "No SNMP Notifications" msgstr "" #: ../managers.php:730 ../utilities.php:2516 msgid "Severity" msgstr "" #: ../managers.php:749 ../utilities.php:2559 msgid "Purge Notification Log" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Notification" msgstr "" #: ../managers.php:797 ../utilities.php:2613 #, fuzzy msgid "Time" msgstr "Tidsspann" #: ../managers.php:797 ../utilities.php:2613 msgid "Varbinds" msgstr "" #: ../managers.php:803 msgid "Severity Level" msgstr "" #: ../managers.php:821 ../utilities.php:2635 msgid "No SNMP Notification Log Entries" msgstr "" #: ../managers.php:998 msgid "Click 'Continue' to delete the following Notification Receiver" msgid_plural "Click 'Continue' to delete following Notification Receiver" msgstr[0] "" msgstr[1] "" #: ../managers.php:1000 msgid "Click 'Continue' to enable the following Notification Receiver" msgid_plural "Click 'Continue' to enable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: ../managers.php:1002 msgid "Click 'Continue' to disable the following Notification Receiver" msgid_plural "Click 'Continue' to disable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: ../managers.php:1059 msgid "" "Click 'Continue' to forward the following Notification Objects to this " "Notification Receiver." msgstr "" #: ../managers.php:1060 msgid "" "Click 'Continue' to disable forwarding the following Notification Objects to " "this Notification Receiver." msgstr "" #: ../managers.php:1069 msgid "Disable Notification Objects" msgstr "" #: ../managers.php:1071 msgid "You must select at least one notification object." msgstr "" #: ../plugins.php:28 msgid "Install" msgstr "" #: ../plugins.php:31 msgid "Uninstall" msgstr "" #: ../plugins.php:36 msgid "Not Compatible" msgstr "" #: ../plugins.php:37 ../plugins.php:291 ../utilities.php:417 msgid "Not Installed" msgstr "" #: ../plugins.php:39 msgid "Awaiting Configuration" msgstr "" #: ../plugins.php:40 msgid "Awaiting Upgrade" msgstr "" #: ../plugins.php:167 msgid "Not Stated" msgstr "" #: ../plugins.php:289 msgid "Active/Installed" msgstr "" #: ../plugins.php:290 msgid "Configuration Issues" msgstr "" #: ../plugins.php:295 ../plugins.php:365 msgid "Plugins" msgstr "" #: ../plugins.php:374 msgid "" "Actions available include 'Install', 'Activate', 'Disable', 'Enable', " "'Uninstall'." msgstr "" #: ../plugins.php:375 msgid "Plugin Name" msgstr "" #: ../plugins.php:375 msgid "" "The name for this Plugin. The name is controlled by the directory it " "resides in." msgstr "" #: ../plugins.php:376 msgid "A description that the Plugins author has given to the Plugin." msgstr "" #: ../plugins.php:376 #, fuzzy msgid "Plugin Description" msgstr "Beskrivning" #: ../plugins.php:377 msgid "The status of this Plugin." msgstr "" #: ../plugins.php:378 msgid "The author of this Plugin." msgstr "" #: ../plugins.php:379 msgid "The version of this Plugin." msgstr "" #: ../plugins.php:380 msgid "Load Order" msgstr "" #: ../plugins.php:380 msgid "" "The load order of the Plugin. You can change the load order by first " "sorting by it, then moving a Plugin either up or down." msgstr "" #: ../plugins.php:406 #, fuzzy msgid "No Plugins Found" msgstr "Inga grafer funna" #: ../plugins.php:424 msgid "ERROR: Directory Missing" msgstr "" #: ../plugins.php:434 msgid "Order Before Previous Plugin" msgstr "" #: ../plugins.php:439 msgid "Order After Next Plugin" msgstr "" #: ../plugins.php:463 msgid "Install Plugin" msgstr "" #: ../plugins.php:467 ../plugins.php:471 ../plugins.php:474 msgid "Uninstall Plugin" msgstr "" #: ../plugins.php:468 msgid "Disable Plugin" msgstr "" #: ../plugins.php:475 #, fuzzy msgid "Enable Plugin" msgstr "Aktiverad" #: ../plugins.php:478 msgid "Plugin is not compatible" msgstr "" #: ../pollers.php:32 msgid "Full Sync" msgstr "" #: ../pollers.php:36 msgid "New/Idle" msgstr "" #: ../pollers.php:39 #, fuzzy msgid "Unknown/Down" msgstr "Okänd" #: ../pollers.php:48 msgid "Data Collector Information" msgstr "" #: ../pollers.php:53 msgid "The primary name for this Data Collector." msgstr "" #: ../pollers.php:56 msgid "New Data Collector" msgstr "" #: ../pollers.php:61 #, fuzzy msgid "Web Site Hostname" msgstr "Värdnamn" #: ../pollers.php:62 msgid "" "The hostname for Data Collector. It may have to be a Fully Qualified Domain " "name for the remote Pollers to contact it for activities such as re-" "indexing, Real-time graphing, etc." msgstr "" #: ../pollers.php:71 msgid "Notes for this Data Collectors Database." msgstr "" #: ../pollers.php:78 msgid "Remote Database Connection" msgstr "" #: ../pollers.php:83 msgid "The hostname for the remote database server." msgstr "" #: ../pollers.php:91 #, fuzzy msgid "Remote Database Name" msgstr "Mallnamn" #: ../pollers.php:92 msgid "The name of the remote database." msgstr "" #: ../pollers.php:100 msgid "Remote Database User" msgstr "" #: ../pollers.php:101 msgid "The user name to use to connect to the remote database." msgstr "" #: ../pollers.php:109 msgid "Remote Database Password" msgstr "" #: ../pollers.php:110 msgid "The user password to use to connect to the remote database." msgstr "" #: ../pollers.php:118 msgid "Remote Database Port" msgstr "" #: ../pollers.php:119 msgid "The TCP port to use to connect to the remote database." msgstr "" #: ../pollers.php:127 msgid "Remote Database SSL" msgstr "" #: ../pollers.php:128 msgid "If the remote database uses SSL to connect, check the checkbox below." msgstr "" #: ../pollers.php:283 msgid "" "Click 'Continue' to delete the following Data Collector. Note, all devices " "will be disassociated from this Data Collector and mapped back to the Main " "Cacti Data Collector." msgid_plural "" "Click 'Continue' to delete all following Data Collectors. Note, all devices " "will be disassociated from these Data Collectors and mapped back to the Main " "Cacti Data Collector." msgstr[0] "" msgstr[1] "" #: ../pollers.php:288 msgid "Delete Data Collector" msgid_plural "Delete Data Collectors" msgstr[0] "" msgstr[1] "" #: ../pollers.php:292 msgid "Click 'Continue' to disable the following Data Collector." msgid_plural "Click 'Continue' to disable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: ../pollers.php:297 msgid "Disable Data Collector" msgid_plural "Disable Data Collectors" msgstr[0] "" msgstr[1] "" #: ../pollers.php:301 msgid "Click 'Continue' to enable the following Data Collector." msgid_plural "Click 'Continue' to enable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: ../pollers.php:306 ../pollers.php:315 msgid "Enable Data Collector" msgid_plural "Enable Data Collectors" msgstr[0] "" msgstr[1] "" #: ../pollers.php:310 msgid "" "Click 'Continue' to Synchronize the Remote Data Collector for Offline " "Operation." msgid_plural "" "Click 'Continue' to Synchronize the Remote Data Collectors for Offline " "Operation." msgstr[0] "" msgstr[1] "" #: ../pollers.php:318 ../sites.php:283 msgid "You must select at least one Site." msgstr "" #: ../pollers.php:351 ../sites.php:316 #, fuzzy, php-format msgid "Site [edit: %s]" msgstr "[redigera: " #: ../pollers.php:353 ../sites.php:318 #, fuzzy msgid "Site [new]" msgstr "[nytt]" #: ../pollers.php:379 msgid "" "Remote Data Collectors must be able to communicate to the Main Data " "Collector, and vice versa. Use this button to verify that the Main Data " "Collector can communicate to this Remote Data Collector." msgstr "" #: ../pollers.php:387 msgid "Test Connection" msgstr "" #: ../pollers.php:387 msgid "Test Database Connection" msgstr "" #: ../pollers.php:611 msgid "Collector Name" msgstr "" #: ../pollers.php:611 msgid "The Name of this Data Collector." msgstr "" #: ../pollers.php:612 msgid "The unique id associated with this Data Collector." msgstr "" #: ../pollers.php:613 msgid "The Hostname where the Data Collector is running." msgstr "" #: ../pollers.php:614 msgid "The Status of this Data Collector." msgstr "" #: ../pollers.php:615 msgid "Polling Time" msgstr "" #: ../pollers.php:615 msgid "The last data collection time for this Data Collector." msgstr "" #: ../pollers.php:616 msgid "The number of Devices associated with this Data Collector." msgstr "" #: ../pollers.php:617 msgid "SNMP Gets" msgstr "" #: ../pollers.php:617 msgid "The number of SNMP gets associated with this Collector." msgstr "" #: ../pollers.php:618 msgid "Scripts" msgstr "" #: ../pollers.php:618 msgid "The number of script calls associated with this Data Collector." msgstr "" #: ../pollers.php:619 msgid "Servers" msgstr "" #: ../pollers.php:619 msgid "The number of script server calls associated with this Data Collector." msgstr "" #: ../pollers.php:620 msgid "Last Finished" msgstr "" #: ../pollers.php:620 msgid "The last time this Data Collector completed." msgstr "" #: ../pollers.php:621 msgid "Last Update" msgstr "" #: ../pollers.php:621 msgid "The last time this Data Collector checked in with the main Cacti site." msgstr "" #: ../pollers.php:656 msgid "No Data Collectors Found" msgstr "" #: ../rrdcleaner.php:30 ../tree.php:31 #, fuzzy msgctxt "dropdown action" msgid "Delete" msgstr "Ta bort" #: ../rrdcleaner.php:31 msgctxt "dropdown action" msgid "Archive" msgstr "" #: ../rrdcleaner.php:347 msgid "RRD File Name" msgstr "" #: ../rrdcleaner.php:348 #, fuzzy msgid "DS Name" msgstr "Namn" #: ../rrdcleaner.php:349 msgid "DS ID" msgstr "" #: ../rrdcleaner.php:350 #, fuzzy msgid "Template ID" msgstr "Mallnamn" #: ../rrdcleaner.php:352 msgid "Last Modified" msgstr "" #: ../rrdcleaner.php:353 #, fuzzy msgid "Size [KB]" msgstr "Storlek" #: ../rrdcleaner.php:364 ../rrdcleaner.php:365 #, fuzzy msgid "Deleted" msgstr "Ta bort" #: ../rrdcleaner.php:373 msgid "No unused RRD Files" msgstr "" #: ../rrdcleaner.php:395 msgid "Total Size [MB]:" msgstr "" #: ../rrdcleaner.php:397 msgid "Last Scan:" msgstr "" #: ../rrdcleaner.php:481 msgid "Time Since Update" msgstr "" #: ../rrdcleaner.php:497 msgid "RRDfiles" msgstr "" #: ../rrdcleaner.php:512 ../user_domains.php:642 ../user_group_admin.php:1827 #: ../user_group_admin.php:2182 ../user_group_admin.php:2288 #: ../user_group_admin.php:2375 ../user_group_admin.php:2462 #: ../user_group_admin.php:2549 #, fuzzy msgctxt "filter: use" msgid "Go" msgstr "Utför" #: ../rrdcleaner.php:515 ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 ../user_group_admin.php:2465 #, fuzzy msgctxt "filter: reset" msgid "Clear" msgstr "Rensa" #: ../rrdcleaner.php:518 msgid "Rescan" msgstr "" #: ../rrdcleaner.php:521 #, fuzzy msgid "Delete All" msgstr "Markera alla" #: ../rrdcleaner.php:521 msgid "Delete All Unknown RRDfiles" msgstr "" #: ../rrdcleaner.php:522 msgid "Archive All" msgstr "" #: ../rrdcleaner.php:522 msgid "Archive All Unknown RRDfiles" msgstr "" #: ../settings.php:138 #, fuzzy, php-format msgid "Cacti Settings (%s)" msgstr "Inställningar för Cacti" #: ../settings.php:191 #, fuzzy msgid "Select Plugin(s)" msgstr "Markera alla" #: ../settings.php:193 msgid "Plugins Selected" msgstr "" #: ../settings.php:208 #, fuzzy msgid "Select File(s)" msgstr "Markera alla" #: ../settings.php:210 msgid "Files Selected" msgstr "" #: ../settings.php:225 #, fuzzy msgid "Select Template(s)" msgstr "Exportera mallar" #: ../settings.php:230 #, fuzzy msgid "All Templates Selected" msgstr "Mallens titel" #: ../settings.php:281 msgid "Poller Interval must be less than Cron Interval" msgstr "" #: ../settings.php:303 msgid "Test Email Results" msgstr "" #: ../sites.php:35 msgid "Site Information" msgstr "" #: ../sites.php:41 msgid "The primary name for the Site." msgstr "" #: ../sites.php:44 msgid "New Site" msgstr "" #: ../sites.php:49 msgid "Address1" msgstr "" #: ../sites.php:50 msgid "The primary address for the Site." msgstr "" #: ../sites.php:52 msgid "Enter the Site Address" msgstr "" #: ../sites.php:58 msgid "Address2" msgstr "" #: ../sites.php:59 msgid "Additional address information for the Site." msgstr "" #: ../sites.php:61 msgid "Additional Site Address information" msgstr "" #: ../sites.php:67 ../sites.php:484 msgid "City" msgstr "" #: ../sites.php:68 msgid "The city or locality for the Site." msgstr "" #: ../sites.php:70 msgid "Enter the City or Locality" msgstr "" #: ../sites.php:76 ../sites.php:485 msgid "State" msgstr "" #: ../sites.php:77 msgid "The state for the Site." msgstr "" #: ../sites.php:79 msgid "Enter the state" msgstr "" #: ../sites.php:85 msgid "Postal/Zip Code" msgstr "" #: ../sites.php:86 msgid "The postal or zip code for the Site." msgstr "" #: ../sites.php:88 msgid "Enter the postal code" msgstr "" #: ../sites.php:94 ../sites.php:486 msgid "Country" msgstr "" #: ../sites.php:95 msgid "The country for the Site." msgstr "" #: ../sites.php:97 msgid "Enter the country" msgstr "" #: ../sites.php:103 #, fuzzy msgid "TimeZone" msgstr "Tidsspann" #: ../sites.php:104 msgid "The TimeZone for the Site." msgstr "" #: ../sites.php:110 msgid "Latitude" msgstr "" #: ../sites.php:111 msgid "The Latitude for this Site." msgstr "" #: ../sites.php:113 msgid "example 38.889488" msgstr "" #: ../sites.php:119 msgid "Longitude" msgstr "" #: ../sites.php:120 msgid "The Longitude for this Site." msgstr "" #: ../sites.php:122 msgid "example -77.0374678" msgstr "" #: ../sites.php:128 msgid "Site Notes" msgstr "" #: ../sites.php:131 msgid "Additional area use for random notes related to this Site." msgstr "" #: ../sites.php:134 msgid "Enter some useful information about the Site." msgstr "" #: ../sites.php:139 #, fuzzy msgid "Alternate Name" msgstr "Mallnamn" #: ../sites.php:140 msgid "Used for cases where a Site has an alternate named used to describe it" msgstr "" #: ../sites.php:142 msgid "If the Site is known by another name enter it here." msgstr "" #: ../sites.php:275 msgid "" "Click 'Continue' to delete the following Site. Note, all devices will be " "disassociated from this site." msgid_plural "" "Click 'Continue' to delete all following Sites. Note, all devices will be " "disassociated from this site." msgstr[0] "" msgstr[1] "" #: ../sites.php:280 #, fuzzy msgid "Delete Site" msgid_plural "Delete Sites" msgstr[0] "Ta bort" msgstr[1] "Ta bort" #: ../sites.php:481 #, fuzzy msgid "Site Name" msgstr "Mallnamn" #: ../sites.php:481 msgid "The name of this Site." msgstr "" #: ../sites.php:482 msgid "The unique id associated with this Site." msgstr "" #: ../sites.php:483 msgid "The number of Devices associated with this Site." msgstr "" #: ../sites.php:484 msgid "The City associated with this Site." msgstr "" #: ../sites.php:485 msgid "The State associated with this Site." msgstr "" #: ../sites.php:486 msgid "The Country associated with this Site." msgstr "" #: ../sites.php:504 #, fuzzy msgid "No Sites Found" msgstr "Inga grafer funna" #: ../spikekill.php:37 #, php-format msgid "FATAL: Spike Kill method '%s' is Invalid\n" msgstr "" #: ../spikekill.php:81 msgid "FATAL: Spike Kill Not Allowed\n" msgstr "" #: ../templates_export.php:68 msgid "WARNING: Export Errors Encountered. Refresh Browser Window for Details!" msgstr "" #: ../templates_export.php:101 msgid "What would you like to export?" msgstr "Vad vill du exportera?" #: ../templates_export.php:130 #, php-format msgid "Available Templates [%s]" msgstr "" #: ../templates_export.php:134 #, php-format msgid "%s to Export" msgstr "" #: ../templates_export.php:135 msgid "Choose the exact item to export to XML." msgstr "Välj specifik del att exportera till XML." #: ../templates_export.php:144 ../templates_export.php:148 msgid "Include Dependencies" msgstr "Inkludera beroenden" #: ../templates_export.php:145 msgid "" "Some templates rely on other items in Cacti to function properly. It is " "highly recommended that you select this box or the resulting import may fail." msgstr "" #: ../templates_export.php:154 msgid "Output Format" msgstr "Format för utdata" #: ../templates_export.php:155 msgid "Choose the format to output the resulting XML file in." msgstr "Väj format för för den XML-fil som skrivs." #: ../templates_export.php:159 msgid "Output to the Browser (within Cacti)" msgstr "Skriv direkt till webbläsaren (i Cacti)" #: ../templates_export.php:160 msgid "Output to the Browser (raw XML)" msgstr "Skriv direkt till webbläsaren (rå XML)" #: ../templates_export.php:161 msgid "Save File Locally" msgstr "Spara fil lokalt" #: ../tree.php:32 msgctxt "dropdown action" msgid "Publish" msgstr "" #: ../tree.php:33 msgctxt "dropdown action" msgid "Un Publish" msgstr "" #: ../tree.php:258 msgctxt "ordering of tree items" msgid "inherit" msgstr "" #: ../tree.php:261 msgctxt "ordering of tree items" msgid "manual" msgstr "" #: ../tree.php:264 msgctxt "ordering of tree items" msgid "alpha" msgstr "" #: ../tree.php:267 msgctxt "ordering of tree items" msgid "natural" msgstr "" #: ../tree.php:270 msgctxt "ordering of tree items" msgid "numeric" msgstr "" #: ../tree.php:485 msgid "Click 'Continue' to delete the following Tree." msgid_plural "Click 'Continue' to delete following Trees." msgstr[0] "" msgstr[1] "" #: ../tree.php:490 #, fuzzy msgid "Delete Tree" msgid_plural "Delete Trees" msgstr[0] "Ta bort" msgstr[1] "Ta bort" #: ../tree.php:494 msgid "Click 'Continue' to publish the following Tree." msgid_plural "Click 'Continue' to publish following Trees." msgstr[0] "" msgstr[1] "" #: ../tree.php:499 msgid "Publish Tree" msgid_plural "Publish Trees" msgstr[0] "" msgstr[1] "" #: ../tree.php:503 msgid "Click 'Continue' to un-publish the following Tree." msgid_plural "Click 'Continue' to un-publish following Trees." msgstr[0] "" msgstr[1] "" #: ../tree.php:508 msgid "Un-publish Tree" msgid_plural "Un-publish Trees" msgstr[0] "" msgstr[1] "" #: ../tree.php:511 msgid "You must select at least one Tree." msgstr "" #: ../tree.php:554 #, fuzzy, php-format msgid "Trees [edit: %s]" msgstr "[redigera: " #: ../tree.php:566 #, fuzzy msgid "Trees [new]" msgstr "Trädvy" #: ../tree.php:592 msgid "Edit Tree" msgstr "" #: ../tree.php:592 msgid "" "To Edit this tree, you must first lock it by pressing the Edit Tree button." msgstr "" #: ../tree.php:595 msgid "Add Root Branch" msgstr "" #: ../tree.php:595 msgid "Finish Editing Tree" msgstr "" #: ../tree.php:595 #, php-format msgid "This tree has been locked for Editing on %1$s by %2$s." msgstr "" #: ../tree.php:601 msgid "To edit the tree, you must first unlock it and then lock it as yourself" msgstr "" #: ../tree.php:617 #, fuzzy msgid "Tree Items" msgstr "Trädvy" #: ../tree.php:625 #, fuzzy msgid "Available Devices" msgstr "Åtkomstbarhet" #: ../tree.php:660 #, fuzzy msgid "Available Graphs" msgstr "Se grafer" #: ../tree.php:1039 #, fuzzy msgid "Rename" msgstr "Värdnamn" #: ../tree.php:1066 #, fuzzy msgid "Branch Sorting" msgstr "Inställningar för Cacti" #: ../tree.php:1073 msgid "Inherit" msgstr "" #: ../tree.php:1101 msgid "Alphabetic" msgstr "" #: ../tree.php:1115 msgid "Natural" msgstr "" #: ../tree.php:1152 ../tree.php:1226 ../tree.php:1313 msgid "Cut" msgstr "" #: ../tree.php:1167 ../tree.php:1241 ../tree.php:1328 ../user_admin.php:29 #: ../user_group_admin.php:31 msgid "Copy" msgstr "" #: ../tree.php:1185 msgid "Paste" msgstr "" #: ../tree.php:1558 msgid "The name by which this Tree will be referred to as." msgstr "" #: ../tree.php:1558 ../user_admin.php:1521 ../user_group_admin.php:1243 #, fuzzy msgid "Tree Name" msgstr "Mallnamn" #: ../tree.php:1559 msgid "" "The internal database ID for this Tree. Useful when performing automation " "or debugging." msgstr "" #: ../tree.php:1560 msgid "Published" msgstr "" #: ../tree.php:1560 msgid "Unpublished Trees cannot be viewed from the Graph tab" msgstr "" #: ../tree.php:1561 msgid "A Tree must be locked in order to be edited." msgstr "" #: ../tree.php:1562 msgid "The original author of this Tree." msgstr "" #: ../tree.php:1563 msgid "" "To change the order of the trees, first sort by this column, press the up or " "down arrows once they appear." msgstr "" #: ../tree.php:1564 msgid "Last Edited" msgstr "" #: ../tree.php:1564 msgid "The date that this Tree was last edited." msgstr "" #: ../tree.php:1565 msgid "Edited By" msgstr "" #: ../tree.php:1565 msgid "The last user to have modified this Tree." msgstr "" #: ../tree.php:1566 msgid "Branches" msgstr "" #: ../tree.php:1566 msgid "The total number of Branches in this Tree." msgstr "" #: ../tree.php:1567 msgid "The total number of individual Devices in this Tree." msgstr "" #: ../tree.php:1568 msgid "The total number of individual Graphs in this Tree." msgstr "" #: ../tree.php:1608 #, fuzzy msgid "No Trees Found" msgstr "Inga grafer funna" #: ../user_admin.php:32 msgid "Batch Copy" msgstr "" #: ../user_admin.php:345 msgid "Click 'Continue' to delete the selected User(s)." msgstr "" #: ../user_admin.php:350 #, fuzzy msgid "Delete User(s)" msgstr "Ta bort" #: ../user_admin.php:360 msgid "Click 'Continue' to copy the selected User to a new User below." msgstr "" #: ../user_admin.php:365 #, fuzzy msgid "Template Username:" msgstr "Mallnamn" #: ../user_admin.php:370 #, fuzzy msgid "Username:" msgstr "Användarnamn:" #: ../user_admin.php:377 #, fuzzy msgid "Full Name:" msgstr "Användarnamn:" #: ../user_admin.php:384 msgid "Realm:" msgstr "" #: ../user_admin.php:390 #, fuzzy msgid "Copy User" msgstr "Logga ut användare" #: ../user_admin.php:396 msgid "Click 'Continue' to enable the selected User(s)." msgstr "" #: ../user_admin.php:401 msgid "Enable User(s)" msgstr "" #: ../user_admin.php:407 msgid "Click 'Continue' to disable the selected User(s)." msgstr "" #: ../user_admin.php:412 msgid "Disable User(s)" msgstr "" #: ../user_admin.php:420 msgid "" "Click 'Continue' to overwrite the User(s) settings with the selected " "template User settings and permissions. The original users Full Name, " "Password, Realm and Enable status will be retained, all other fields will be " "overwritten from Template User." msgstr "" #: ../user_admin.php:423 #, fuzzy msgid "Template User:" msgstr "Mallnamn" #: ../user_admin.php:429 msgid "User(s) to update:" msgstr "" #: ../user_admin.php:434 msgid "Reset User(s) Settings" msgstr "" #: ../user_admin.php:437 msgid "You must select at least one user." msgstr "" #: ../user_admin.php:812 ../user_group_admin.php:728 msgid "Allow" msgstr "" #: ../user_admin.php:813 ../user_group_admin.php:729 msgid "Deny" msgstr "" #: ../user_admin.php:838 msgid "" "Note: System Graph Policy is 'Permissive' meaning the User must have " "access to at least one of Graph, Device, or Graph Template to gain access to " "the Graph" msgstr "" #: ../user_admin.php:840 msgid "" "Note: System Graph Policy is 'Restrictive' meaning the User must have " "access to the Graph, Device, and Graph Template to gain access to the Graph" msgstr "" #: ../user_admin.php:844 ../user_group_admin.php:745 msgid "Default Graph Policy" msgstr "" #: ../user_admin.php:849 msgid "Default Graph Policy for this User" msgstr "" #: ../user_admin.php:1006 ../user_admin.php:1242 ../user_admin.php:1384 #: ../user_admin.php:1521 ../user_group_admin.php:821 #: ../user_group_admin.php:966 ../user_group_admin.php:1109 #: ../user_group_admin.php:1243 msgid "Effective Policy" msgstr "" #: ../user_admin.php:1020 ../user_group_admin.php:847 #, fuzzy msgid "No Matching Graphs Found" msgstr "Inga grafer funna" #: ../user_admin.php:1035 ../user_admin.php:1041 ../user_admin.php:1287 #: ../user_admin.php:1293 ../user_admin.php:1426 ../user_admin.php:1432 #: ../user_admin.php:1562 ../user_admin.php:1568 ../user_group_admin.php:862 #: ../user_group_admin.php:868 ../user_group_admin.php:1010 #: ../user_group_admin.php:1016 ../user_group_admin.php:1151 #: ../user_group_admin.php:1157 ../user_group_admin.php:1283 #: ../user_group_admin.php:1289 msgid "Revoke Access" msgstr "" #: ../user_admin.php:1036 ../user_admin.php:1040 ../user_admin.php:1288 #: ../user_admin.php:1292 ../user_admin.php:1427 ../user_admin.php:1431 #: ../user_admin.php:1563 ../user_admin.php:1567 ../user_group_admin.php:62 #: ../user_group_admin.php:863 ../user_group_admin.php:867 #: ../user_group_admin.php:1011 ../user_group_admin.php:1015 #: ../user_group_admin.php:1152 ../user_group_admin.php:1156 #: ../user_group_admin.php:1284 ../user_group_admin.php:1288 msgid "Grant Access" msgstr "" #: ../user_admin.php:1093 ../user_admin.php:2646 ../user_group_admin.php:1812 #: ../user_group_admin.php:1872 msgid "Groups" msgstr "" #: ../user_admin.php:1101 ../user_admin.php:1110 msgid "Member" msgstr "" #: ../user_admin.php:1101 msgid "Policies (Graph/Device/Template)" msgstr "" #: ../user_admin.php:1110 ../user_group_admin.php:688 msgid "Non Member" msgstr "" #: ../user_admin.php:1112 ../user_admin.php:2299 ../user_admin.php:2300 #: ../user_admin.php:2301 ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 ../user_group_admin.php:1906 msgid "ALLOW" msgstr "" #: ../user_admin.php:1112 ../user_admin.php:2299 ../user_admin.php:2300 #: ../user_admin.php:2301 ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 ../user_group_admin.php:1906 msgid "DENY" msgstr "" #: ../user_admin.php:1118 msgid "No Matching User Groups Found" msgstr "" #: ../user_admin.php:1132 msgid "Assign Membership" msgstr "" #: ../user_admin.php:1133 msgid "Remove Membership" msgstr "" #: ../user_admin.php:1149 ../user_group_admin.php:886 msgid "Default Device Policy" msgstr "" #: ../user_admin.php:1154 msgid "Default Device Policy for this User" msgstr "" #: ../user_admin.php:1253 ../user_admin.php:1261 ../user_admin.php:1395 #: ../user_admin.php:1403 ../user_admin.php:1532 ../user_admin.php:1540 #: ../user_group_admin.php:832 ../user_group_admin.php:840 #: ../user_group_admin.php:977 ../user_group_admin.php:985 #: ../user_group_admin.php:1120 ../user_group_admin.php:1128 #: ../user_group_admin.php:1254 ../user_group_admin.php:1262 #, fuzzy msgid "Access Granted" msgstr "Åtkomst nekad" #: ../user_admin.php:1255 ../user_admin.php:1259 ../user_admin.php:1397 #: ../user_admin.php:1401 ../user_admin.php:1534 ../user_admin.php:1538 #: ../user_group_admin.php:834 ../user_group_admin.php:838 #: ../user_group_admin.php:979 ../user_group_admin.php:983 #: ../user_group_admin.php:1122 ../user_group_admin.php:1126 #: ../user_group_admin.php:1256 ../user_group_admin.php:1260 #, fuzzy msgid "Access Restricted" msgstr "Åtkomst nekad" #: ../user_admin.php:1272 ../user_group_admin.php:996 #, fuzzy msgid "No Matching Devices Found" msgstr "Inga grafer funna" #: ../user_admin.php:1310 ../user_group_admin.php:1034 #, fuzzy msgid "Default Graph Template Policy" msgstr "Grafmall" #: ../user_admin.php:1315 msgid "Default Graph Template Policy for this User" msgstr "" #: ../user_admin.php:1384 ../user_group_admin.php:1109 #, fuzzy msgid "Total Graphs" msgstr "Grafer" #: ../user_admin.php:1411 ../user_group_admin.php:1136 #, fuzzy msgid "No Matching Graph Templates Found" msgstr "Grafmallar" #: ../user_admin.php:1449 ../user_group_admin.php:1175 msgid "Default Tree Policy" msgstr "" #: ../user_admin.php:1454 msgid "Default Tree Policy for this User" msgstr "" #: ../user_admin.php:1547 ../user_group_admin.php:1269 #, fuzzy msgid "No Matching Trees Found" msgstr "Inga grafer funna" #: ../user_admin.php:1592 ../user_group_admin.php:1315 #, fuzzy msgid "User Permissions" msgstr "Användaradministration" #: ../user_admin.php:1659 ../user_group_admin.php:1380 msgid "External Link Permissions" msgstr "" #: ../user_admin.php:1716 ../user_group_admin.php:1437 msgid "Plugin Permissions" msgstr "" #: ../user_admin.php:1772 msgid "Legacy 1.x Plugins" msgstr "" #: ../user_admin.php:1807 ../user_group_admin.php:1528 #, fuzzy, php-format msgid "User Settings %s" msgstr "Inställningar för Cacti" #: ../user_admin.php:1922 ../user_group_admin.php:1644 msgid "Permissions" msgstr "" #: ../user_admin.php:1923 msgid "Group Membership" msgstr "" #: ../user_admin.php:1924 ../user_group_admin.php:1645 #, fuzzy msgid "Graph Perms" msgstr "Grafträd" #: ../user_admin.php:1925 ../user_group_admin.php:1646 #, fuzzy msgid "Device Perms" msgstr "Enheter" #: ../user_admin.php:1926 ../user_group_admin.php:1647 #, fuzzy msgid "Template Perms" msgstr "Mallnamn" #: ../user_admin.php:1927 ../user_group_admin.php:1648 #, fuzzy msgid "Tree Perms" msgstr "Trädvy" #: ../user_admin.php:1969 #, fuzzy, php-format msgid "User Management %s" msgstr "Användarhantering" #: ../user_admin.php:2001 msgid "Password Too Short" msgstr "" #: ../user_admin.php:2006 msgid "Password Validation Passes" msgstr "" #: ../user_admin.php:2020 msgid "Passwords do Not Match" msgstr "" #: ../user_admin.php:2023 #, fuzzy msgid "Passwords Match" msgstr "Lösenord:" #: ../user_admin.php:2267 ../user_group_admin.php:1884 #, fuzzy msgid "Graph Policy" msgstr "Graftitel" #: ../user_admin.php:2268 ../user_group_admin.php:1885 #, fuzzy msgid "Device Policy" msgstr "Enheter" #: ../user_admin.php:2269 ../user_group_admin.php:1886 #, fuzzy msgid "Template Policy" msgstr "Mallens titel" #: ../user_admin.php:2270 #, fuzzy msgid "Last Login" msgstr "Logga in" #: ../user_admin.php:2291 #, fuzzy msgid "Unavailable" msgstr "Åtkomstbarhet" #: ../user_admin.php:2307 #, fuzzy msgid "No Users Found" msgstr "Inga grafer funna" #: ../user_admin.php:2522 ../user_group_admin.php:2124 #, php-format msgid "Graph Permissions %s" msgstr "" #: ../user_admin.php:2577 ../user_admin.php:2664 msgid "Show All" msgstr "" #: ../user_admin.php:2631 #, php-format msgid "Group Membership %s" msgstr "" #: ../user_admin.php:2719 ../user_group_admin.php:2234 #, php-format msgid "Devices Permission %s" msgstr "" #: ../user_admin.php:2770 ../user_admin.php:2857 ../user_admin.php:2944 #: ../user_group_admin.php:2179 ../user_group_admin.php:2285 #: ../user_group_admin.php:2372 ../user_group_admin.php:2459 msgid "Show Exceptions" msgstr "" #: ../user_admin.php:2824 ../user_group_admin.php:2339 #, php-format msgid "Template Permission %s" msgstr "" #: ../user_admin.php:2911 ../user_admin.php:2998 ../user_group_admin.php:2426 #, php-format msgid "Tree Permission %s" msgstr "" #: ../user_admin.php:3031 msgid "Show Exceptions<" msgstr "" #: ../user_domains.php:222 msgid "Click 'Continue' to delete the following User Domain." msgid_plural "Click 'Continue' to delete following User Domains." msgstr[0] "" msgstr[1] "" #: ../user_domains.php:227 msgid "Delete User Domain" msgid_plural "Delete User Domains" msgstr[0] "" msgstr[1] "" #: ../user_domains.php:231 msgid "Click 'Continue' to disable the following User Domain." msgid_plural "Click 'Continue' to disable following User Domains." msgstr[0] "" msgstr[1] "" #: ../user_domains.php:236 msgid "Disable User Domain" msgid_plural "Disable User Domains" msgstr[0] "" msgstr[1] "" #: ../user_domains.php:240 msgid "Click 'Continue' to enable the following User Domain." msgstr "" #: ../user_domains.php:245 msgid "Enabled User Domain" msgid_plural "Enable User Domains" msgstr[0] "" msgstr[1] "" #: ../user_domains.php:249 msgid "" "Click 'Continue' to make the following the following User Domain the default " "one." msgstr "" #: ../user_domains.php:254 msgid "Make Selected Domain Default" msgstr "" #: ../user_domains.php:257 msgid "You must select at least one User Domain." msgstr "" #: ../user_domains.php:308 #, php-format msgid "User Domain [edit: %s]" msgstr "" #: ../user_domains.php:310 msgid "User Domain [new]" msgstr "" #: ../user_domains.php:318 msgid "" "Enter a meaningful name for this domain. This will be the name that appears " "in the Login Realm during login." msgstr "" #: ../user_domains.php:324 msgid "Domains Type" msgstr "" #: ../user_domains.php:325 msgid "Choose what type of domain this is." msgstr "" #: ../user_domains.php:332 msgid "" "The name of the user that Cacti will use as a template for new user accounts." msgstr "" #: ../user_domains.php:342 msgid "" "If this checkbox is checked, users will be able to login using this domain." msgstr "" #: ../user_domains.php:359 msgid "The dns hostname or ip address of the server." msgstr "" #: ../user_domains.php:367 msgid "TCP/UDP port for Non SSL communications." msgstr "" #: ../user_domains.php:406 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "

    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the users " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the users Distinguished Name (DN)." msgstr "" #: ../user_domains.php:455 msgid "" "Search base for searching the LDAP directory, such as \"dc=win2kdomain," "dc=local\" or \"ou=people,dc=domain,dc=local\"." msgstr "" #: ../user_domains.php:462 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: \"(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))\" or for OpenLDAP: " "\"(&(objectClass=account)(uid=<username>))\". \"<username>\" " "is replaced with the username that was supplied at the login prompt." msgstr "" #: ../user_domains.php:501 msgid "Domain Properties" msgstr "" #: ../user_domains.php:627 msgid "Domains" msgstr "" #: ../user_domains.php:714 msgid "Domain Name" msgstr "" #: ../user_domains.php:715 msgid "Domain Type" msgstr "" #: ../user_domains.php:717 msgid "Effective User" msgstr "" #: ../user_domains.php:730 msgid "None Selected" msgstr "" #: ../user_domains.php:736 #, fuzzy msgid "No User Domains Found" msgstr "Inga grafer funna" #: ../user_group_admin.php:39 ../user_group_admin.php:58 msgid "Defer to the Users Setting" msgstr "" #: ../user_group_admin.php:43 msgid "Show the Page that the User pointed their browser to" msgstr "" #: ../user_group_admin.php:47 msgid "Show the Console" msgstr "" #: ../user_group_admin.php:51 msgid "Show the default Graph Screen" msgstr "" #: ../user_group_admin.php:66 msgid "Restrict Access" msgstr "" #: ../user_group_admin.php:73 ../user_group_admin.php:1881 #, fuzzy msgid "Group Name" msgstr "Användarnamn:" #: ../user_group_admin.php:74 msgid "The name of this Group." msgstr "" #: ../user_group_admin.php:80 #, fuzzy msgid "Group Description" msgstr "Beskrivning" #: ../user_group_admin.php:81 msgid "" "A more descriptive name for this group, that can include spaces or special " "characters." msgstr "" #: ../user_group_admin.php:93 msgid "General Group Options" msgstr "" #: ../user_group_admin.php:95 msgid "Set any user account-specific options here." msgstr "" #: ../user_group_admin.php:99 msgid "Allow Users of this Group to keep custom User Settings" msgstr "" #: ../user_group_admin.php:106 #, fuzzy msgid "Tree Rights" msgstr "Trädvy" #: ../user_group_admin.php:108 msgid "Should Users of this Group have access to the Tree?" msgstr "" #: ../user_group_admin.php:114 msgid "Graph List Rights" msgstr "" #: ../user_group_admin.php:116 msgid "Should Users of this Group have access to the Graph List?" msgstr "" #: ../user_group_admin.php:122 #, fuzzy msgid "Graph Preview Rights" msgstr "Grafträd" #: ../user_group_admin.php:124 msgid "Should Users of this Group have access to the Graph Preview?" msgstr "" #: ../user_group_admin.php:133 msgid "What to do when a User from this User Group logs in." msgstr "" #: ../user_group_admin.php:441 msgid "Click 'Continue' to delete the following User Group" msgid_plural "Click 'Continue' to delete following User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:446 msgid "Delete User Group" msgid_plural "Delete User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:454 msgid "Click 'Continue' to Copy the following User Group to a new User Group." msgid_plural "" "Click 'Continue' to Copy following User Groups to new User Groups." msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:460 #, fuzzy msgid "Group Prefix:" msgstr "Användarnamn:" #: ../user_group_admin.php:461 #, fuzzy msgid "New Group" msgstr "Nya grafer" #: ../user_group_admin.php:465 #, fuzzy msgid "Copy User Group" msgid_plural "Copy User Groups" msgstr[0] "Logga ut användare" msgstr[1] "Logga ut användare" #: ../user_group_admin.php:471 msgid "Click 'Continue' to enable the following User Group." msgid_plural "Click 'Continue' to enable following User Groups." msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:476 msgid "Enable User Group" msgid_plural "Enable User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:482 msgid "Click 'Continue' to disable the following User Group." msgid_plural "Click 'Continue' to disable following User Groups." msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:487 msgid "Disable User Group" msgid_plural "Disable User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:490 msgid "You must select at least one Group." msgstr "" #: ../user_group_admin.php:675 #, fuzzy msgid "Login Name" msgstr "Logga in" #: ../user_group_admin.php:675 msgid "Membership" msgstr "" #: ../user_group_admin.php:686 msgid "Group Member" msgstr "" #: ../user_group_admin.php:696 msgid "No Matching Group Members Found" msgstr "" #: ../user_group_admin.php:710 msgid "Add to Group" msgstr "" #: ../user_group_admin.php:711 msgid "Remove from Group" msgstr "" #: ../user_group_admin.php:750 ../user_group_admin.php:891 msgid "Default Graph policy for this User Group" msgstr "" #: ../user_group_admin.php:755 ../user_group_admin.php:896 #: ../user_group_admin.php:1044 ../user_group_admin.php:1185 #, fuzzy msgid "Update" msgstr "[uppdatera]" #: ../user_group_admin.php:1039 msgid "Default Graph Template policy for this User Group" msgstr "" #: ../user_group_admin.php:1180 msgid "Default Tree policy for this User Group" msgstr "" #: ../user_group_admin.php:1643 ../user_group_admin.php:1882 msgid "Members" msgstr "" #: ../user_group_admin.php:1655 #, fuzzy, php-format msgid "User Group Management [edit: %s]" msgstr "Användarhantering" #: ../user_group_admin.php:1657 #, fuzzy msgid "User Group Management [new]" msgstr "Användarhantering" #: ../user_group_admin.php:1791 #, fuzzy msgid "User Group Management" msgstr "Användarhantering" #: ../user_group_admin.php:1912 #, fuzzy msgid "No User Groups Found" msgstr "Inga grafer funna" #: ../user_group_admin.php:2513 #, php-format msgid "User Membership %s" msgstr "" #: ../user_group_admin.php:2546 msgid "Show Members" msgstr "" #: ../user_group_admin.php:2552 #, fuzzy msgctxt "filter reset" msgid "Clear" msgstr "Rensa" #: ../utilities.php:164 msgid "" "NET-SNMP Not Installed or its paths are not set. Please install if you wish " "to monitor SNMP enabled devices." msgstr "" #: ../utilities.php:170 #, fuzzy msgid "Configuration Settings" msgstr "Inställningar för Cacti" #: ../utilities.php:170 #, php-format msgid "" "ERROR: Installed RRDtool version does not match configured version." "
    Please visit the %s and select the correct RRDtool Utility Version." msgstr "" #: ../utilities.php:174 #, php-format msgid "" "ERROR: RRDtool 1.2.x+ does not support the GIF images format, but %d\" " "graph(s) and/or templates have GIF set as the image format." msgstr "" #: ../utilities.php:194 msgid "Database" msgstr "" #: ../utilities.php:195 msgid "PHP Info" msgstr "" #: ../utilities.php:202 #, php-format msgid "Technical Support [%s]" msgstr "" #: ../utilities.php:229 msgid "General Information" msgstr "" #: ../utilities.php:231 ../utilities.php:766 msgid "Date" msgstr "" #: ../utilities.php:238 #, fuzzy msgid "Cacti Version" msgstr "Inställningar för Cacti" #: ../utilities.php:243 #, fuzzy msgid "Cacti OS" msgstr "Inställningar för Cacti" #: ../utilities.php:253 #, fuzzy msgid "NET-SNMP Version" msgstr "SNMP version" #: ../utilities.php:281 ../utilities.php:314 #, fuzzy, php-format msgid "Total: %s" msgstr "Grafer" #: ../utilities.php:288 #, fuzzy msgid "Poller Information" msgstr "Insamlingsvarningar" #: ../utilities.php:311 #, php-format msgid "Action[%s]" msgstr "" #: ../utilities.php:316 msgid "No items to poll" msgstr "" #: ../utilities.php:322 msgid "Concurrent Processes" msgstr "" #: ../utilities.php:327 msgid "Max Threads" msgstr "" #: ../utilities.php:332 msgid "PHP Servers" msgstr "" #: ../utilities.php:337 msgid "Script Timeout" msgstr "" #: ../utilities.php:342 msgid "Max OID" msgstr "" #: ../utilities.php:347 msgid "Last Run Statistics" msgstr "" #: ../utilities.php:355 msgid "System Memory" msgstr "" #: ../utilities.php:384 msgid "PHP Information" msgstr "" #: ../utilities.php:391 msgid "" "PHP Version 5.5.0+ is recommended due to strong password hashing support." msgstr "" #: ../utilities.php:396 msgid "PHP OS" msgstr "" #: ../utilities.php:401 msgid "PHP uname" msgstr "" #: ../utilities.php:412 msgid "PHP SNMP" msgstr "" #: ../utilities.php:447 msgid "You've set memory limit to 'unlimited'." msgstr "" #: ../utilities.php:449 #, php-format msgid "" "It is highly suggested that you alter you php.ini memory_limit to %s or " "higher." msgstr "" #: ../utilities.php:450 msgid "" "This suggested memory value is calculated based on the number of data source " "present and is only to be used as a suggestion, actual values may vary " "system to system based on requirements." msgstr "" #: ../utilities.php:458 msgid "MySQL Table Information - Sizes in KBytes" msgstr "" #: ../utilities.php:467 msgid "Engine" msgstr "" #: ../utilities.php:469 msgid "Avg Row Length" msgstr "" #: ../utilities.php:470 msgid "Data Length" msgstr "" #: ../utilities.php:471 msgid "Index Length" msgstr "" #: ../utilities.php:472 msgid "Collation" msgstr "" #: ../utilities.php:473 msgid "Comment" msgstr "" #: ../utilities.php:491 msgid "Unable to retrieve table status" msgstr "" #: ../utilities.php:497 msgid "PHP Module Information" msgstr "" #: ../utilities.php:623 msgid "User Login History" msgstr "" #: ../utilities.php:632 ../utilities.php:763 msgid "User" msgstr "" #: ../utilities.php:637 msgid "Deleted/Invalid" msgstr "" #: ../utilities.php:650 ../utilities.php:767 #, fuzzy msgid "Result" msgstr "Importera resultat" #: ../utilities.php:655 msgid "Success - Pswd" msgstr "" #: ../utilities.php:656 msgid "Success - Token" msgstr "" #: ../utilities.php:657 msgid "Failed" msgstr "" #: ../utilities.php:661 msgid "Attempts" msgstr "" #: ../utilities.php:676 ../utilities.php:1009 ../utilities.php:1337 #: ../utilities.php:1584 ../utilities.php:2293 ../utilities.php:2557 #: ../vdef.php:686 #, fuzzy msgctxt "Button: use filter settings" msgid "Go" msgstr "Utför" #: ../utilities.php:679 ../utilities.php:1012 ../utilities.php:1340 #: ../utilities.php:1587 ../utilities.php:2296 ../utilities.php:2558 #: ../vdef.php:689 #, fuzzy msgctxt "Button: reset filter settings" msgid "Clear" msgstr "Rensa" #: ../utilities.php:682 ../utilities.php:1015 ../utilities.php:2559 msgctxt "Button: delete all table entries" msgid "Purge" msgstr "" #: ../utilities.php:682 msgid "Purge User Log" msgstr "" #: ../utilities.php:756 #, fuzzy msgid "User Logins" msgstr "Logga in" #: ../utilities.php:768 msgid "IP Address" msgstr "" #: ../utilities.php:784 msgid "(User Removed)" msgstr "" #: ../utilities.php:1015 msgid "Purge Log" msgstr "" #: ../utilities.php:1072 #, php-format msgid "Log [Total Lines: %d - Non-Matching Items Hidden]" msgstr "" #: ../utilities.php:1074 #, php-format msgid "Log [Total Lines: %d - All Items Shown]" msgstr "" #: ../utilities.php:1173 #, php-format msgid "%s - WEBUI: Cacti Log Cleared from Web Management Interface." msgstr "" #: ../utilities.php:1175 msgid "Cacti Log Cleared" msgstr "" #: ../utilities.php:1177 msgid "Error: Unable to clear log, no write permissions." msgstr "" #: ../utilities.php:1180 msgid "Error: Unable to clear log, file does not exist." msgstr "" #: ../utilities.php:1273 #, fuzzy msgid "Data Query Cache Items" msgstr "Dataförfrågningar" #: ../utilities.php:1289 #, fuzzy msgid "Query Name" msgstr "Användarnamn:" #: ../utilities.php:1409 #, fuzzy msgid "Field Value" msgstr "Värde" #: ../utilities.php:1409 msgid "Index" msgstr "" #: ../utilities.php:1545 msgid "Poller Cache Items" msgstr "" #: ../utilities.php:1606 msgid "Script" msgstr "" #: ../utilities.php:1722 ../utilities.php:1727 #, fuzzy msgid "SNMP Version:" msgstr "SNMP version" #: ../utilities.php:1723 msgid "Community:" msgstr "" #: ../utilities.php:1724 ../utilities.php:1728 msgid "OID:" msgstr "" #: ../utilities.php:1728 #, fuzzy msgid "User:" msgstr "Användarnamn:" #: ../utilities.php:1731 msgid "Script:" msgstr "" #: ../utilities.php:1733 msgid "Script Server:" msgstr "" #: ../utilities.php:1746 msgid "RRD:" msgstr "" #: ../utilities.php:1765 msgid "Tecnical Support" msgstr "" #: ../utilities.php:1767 msgid "" "Cacti technical support page. Used by developers and technical support " "persons to assist with issues in Cacti. Includes checks for common " "configuration issues." msgstr "" #: ../utilities.php:1769 #, fuzzy msgid "Log Administration" msgstr "Användaradministration" #: ../utilities.php:1771 msgid "" "The Cacti Log stores statistic, error and other message depending on system " "settings. This information can be used to identify problems with the poller " "and application." msgstr "" #: ../utilities.php:1775 msgid "" "Allows Administrators to browse the user log. Administrators can filter and " "export the log as well." msgstr "" #: ../utilities.php:1779 #, fuzzy msgid "Poller Cache Administration" msgstr "Användaradministration" #: ../utilities.php:1782 msgid "" "This is the data that is being passed to the poller each time it runs. This " "data is then in turn executed/interpreted and the results are fed into the " "RRDfiles for graphing or the database for display." msgstr "" #: ../utilities.php:1786 msgid "" "The Data Query Cache stores information gathered from Data Query input " "types. The values from these fields can be used in the text area of Graphs " "for Legends, Vertical Labels, and GPRINTS as well as in CDEF's." msgstr "" #: ../utilities.php:1788 msgid "Rebuild Poller Cache" msgstr "" #: ../utilities.php:1790 msgid "" "The poller cache will be cleared and re-generated if you select this option. " "Sometimes host/data source data can get out of sync with the cache in which " "case it makes sense to clear the cache and start over." msgstr "" #: ../utilities.php:1794 #, fuzzy msgid "Boost Utilities" msgstr "Systemtillbehör" #: ../utilities.php:1795 msgid "View Boost Status" msgstr "" #: ../utilities.php:1797 msgid "" "This menu pick allows you to view various boost settings and statistics " "associated with the current running Boost configuration." msgstr "" #: ../utilities.php:1801 #, fuzzy msgid "RRD Utilities" msgstr "Tillbehör" #: ../utilities.php:1802 #, fuzzy msgid "RRDfile Cleaner" msgstr "Rensa" #: ../utilities.php:1804 msgid "" "When you delete Data Sources from Cacti, the corresponding RRDfiles are not " "removed automatically. Use this utility to facilitate the removal of these " "old files." msgstr "" #: ../utilities.php:1808 #, fuzzy msgid "SNMPAgent Utilities" msgstr "Systemtillbehör" #: ../utilities.php:1809 msgid "View SNMPAgent Cache" msgstr "" #: ../utilities.php:1811 msgid "This shows all objects being handled by the SNMPAgent." msgstr "" #: ../utilities.php:1813 msgid "Rebuild SNMPAgent Cache" msgstr "" #: ../utilities.php:1815 msgid "" "The SNMP cache will be cleared and re-generated if you select this option. " "Note that it takes another poller run to restore the SNMP cache completely." msgstr "" #: ../utilities.php:1817 msgid "View SNMPAgent Notification Log" msgstr "" #: ../utilities.php:1819 msgid "" "This menu pick allows you to view the latest events SNMPAgent has handled in " "relation to the registered notification receivers." msgstr "" #: ../utilities.php:1823 msgid "Allows Administrators to maintain SNMP notification receivers." msgstr "" #: ../utilities.php:1829 #, fuzzy msgid "Cacti System Utilities" msgstr "Systemtillbehör" #: ../utilities.php:1953 #, fuzzy msgid "Overrun Warning" msgstr "Insamlingsvarningar" #: ../utilities.php:1954 msgid "Timed Out" msgstr "" #: ../utilities.php:1955 msgid "Other" msgstr "" #: ../utilities.php:1957 msgid "Never Run" msgstr "" #: ../utilities.php:2010 msgid "Cannot open directory" msgstr "" #: ../utilities.php:2014 msgid "Directory Does NOT Exist!!" msgstr "" #: ../utilities.php:2021 msgid "Current Boost Status" msgstr "" #: ../utilities.php:2024 msgid "Boost On-demand Updating:" msgstr "" #: ../utilities.php:2027 #, fuzzy msgid "Total Data Sources:" msgstr "Inga datakällor" #: ../utilities.php:2031 msgid "Pending Boost Records:" msgstr "" #: ../utilities.php:2034 msgid "Archived Boost Records:" msgstr "" #: ../utilities.php:2037 msgid "Total Boost Records:" msgstr "" #: ../utilities.php:2041 msgid "Boost Storage Statistics" msgstr "" #: ../utilities.php:2045 msgid "Database Engine:" msgstr "" #: ../utilities.php:2049 msgid "Current Boost Table(s) Size:" msgstr "" #: ../utilities.php:2053 msgid "Avg Bytes/Record:" msgstr "" #: ../utilities.php:2081 #, php-format msgid "%d Bytes" msgstr "" #: ../utilities.php:2081 msgid "Max Record Length:" msgstr "" #: ../utilities.php:2087 ../utilities.php:2088 msgid "Unlimited" msgstr "" #: ../utilities.php:2093 msgid "Max Allowed Boost Table Size:" msgstr "" #: ../utilities.php:2097 msgid "Estimated Maximum Records:" msgstr "" #: ../utilities.php:2100 msgid "Runtime Statistics" msgstr "" #: ../utilities.php:2103 msgid "Last Start Time:" msgstr "" #: ../utilities.php:2106 msgid "Last Run Duration:" msgstr "" #: ../utilities.php:2107 #, php-format msgid "%d minutes" msgstr "" #: ../utilities.php:2107 #, php-format msgid "%d seconds" msgstr "" #: ../utilities.php:2108 #, php-format msgid "%0.2f percent of update frequency)" msgstr "" #: ../utilities.php:2112 msgid "RRD Updates:" msgstr "" #: ../utilities.php:2115 ../utilities.php:2121 msgid "MBytes" msgstr "" #: ../utilities.php:2115 msgid "Peak Poller Memory:" msgstr "" #: ../utilities.php:2118 msgid "Detailed Runtime Timers:" msgstr "" #: ../utilities.php:2121 msgid "Max Poller Memory Allowed:" msgstr "" #: ../utilities.php:2124 msgid "Run Time Configuration" msgstr "" #: ../utilities.php:2127 msgid "Update Frequency:" msgstr "" #: ../utilities.php:2130 msgid "Next Start Time:" msgstr "" #: ../utilities.php:2133 #, fuzzy msgid "Maximum Records:" msgstr "Maximal kvarhållningsperiod" #: ../utilities.php:2133 msgid "Records" msgstr "" #: ../utilities.php:2136 #, fuzzy msgid "Maximum Allowed Runtime:" msgstr "Maximal loggstorlek" #: ../utilities.php:2142 msgid "Image Caching Status:" msgstr "" #: ../utilities.php:2145 msgid "Cache Directory:" msgstr "" #: ../utilities.php:2148 msgid "Cached Files:" msgstr "" #: ../utilities.php:2151 msgid "Cached Files Size:" msgstr "" #: ../utilities.php:2248 msgid "SNMPAgent Cache" msgstr "" #: ../utilities.php:2278 msgid "OIDs" msgstr "" #: ../utilities.php:2358 msgid "Column Data" msgstr "" #: ../utilities.php:2358 msgid "Scalar" msgstr "" #: ../utilities.php:2501 msgid "SNMPAgent Notification Log" msgstr "" #: ../utilities.php:2529 ../utilities.php:2613 msgid "Receiver" msgstr "" #: ../utilities.php:2605 msgid "Log Entries" msgstr "" #: ../utilities.php:2620 #, php-format msgid "Severity Level: %s" msgstr "" #: ../vdef.php:265 msgid "Click 'Continue' to delete the following VDEF." msgid_plural "Click 'Continue' to delete following VDEFs." msgstr[0] "" msgstr[1] "" #: ../vdef.php:270 #, fuzzy msgid "Delete VDEF" msgid_plural "Delete VDEFs" msgstr[0] "Ta bort" msgstr[1] "Ta bort" #: ../vdef.php:274 msgid "" "Click 'Continue' to duplicate the following VDEF. You can optionally change " "the title format for the new VDEF." msgid_plural "" "Click 'Continue' to duplicate following VDEFs. You can optionally change the " "title format for the new VDEFs." msgstr[0] "" msgstr[1] "" #: ../vdef.php:280 #, fuzzy msgid "Duplicate VDEF" msgid_plural "Duplicate VDEFs" msgstr[0] "Duplicera" msgstr[1] "Duplicera" #: ../vdef.php:283 msgid "You must select at least one VDEF." msgstr "" #: ../vdef.php:325 msgid "Click 'Continue' to delete the following VDEF's." msgstr "" #: ../vdef.php:385 #, fuzzy msgid "VDEF Preview" msgstr "Förhandsgrandskning" #: ../vdef.php:390 #, php-format msgid "VDEF Items [edit: %s]" msgstr "" #: ../vdef.php:392 msgid "VDEF Items [new]" msgstr "" #: ../vdef.php:408 msgid "Choose what type of VDEF item this is." msgstr "" #: ../vdef.php:408 msgid "VDEF Item Type" msgstr "" #: ../vdef.php:430 msgid "Enter a value for this VDEF item." msgstr "" #: ../vdef.php:430 msgid "VDEF Item Value" msgstr "" #: ../vdef.php:535 #, fuzzy, php-format msgid "VDEFs [edit: %s]" msgstr "[redigera: " #: ../vdef.php:537 #, fuzzy msgid "VDEFs [new]" msgstr "[nytt]" #: ../vdef.php:600 ../vdef.php:639 msgid "Delete VDEF Item" msgstr "" #: ../vdef.php:845 msgid "The name of this VDEF." msgstr "" #: ../vdef.php:845 #, fuzzy msgid "VDEF Name" msgstr "Namn" #: ../vdef.php:846 msgid "" "VDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: ../vdef.php:847 msgid "The number of Graphs using this VDEF." msgstr "" #: ../vdef.php:848 msgid "The number of Graphs Templates using this VDEF." msgstr "" #: ../vdef.php:871 msgid "No VDEFs" msgstr "" #, fuzzy #~ msgid "edit" #~ msgstr "[redigera: " #, fuzzy #~ msgid "new" #~ msgstr "[nytt]" #, fuzzy #~ msgid "Graph Template Selection [edit: %s]" #~ msgstr "Grafmallar" #, fuzzy #~ msgid "Graph Template Selection [new]" #~ msgstr "Grafmall" #, fuzzy #~ msgid "Graph Export" #~ msgstr "Grafmall" #~ msgid "Confirm:" #~ msgstr "Bekräfta:" #~ msgid "Create:" #~ msgstr "Skapa:" #~ msgid "" #~ "How Cacti controls the log size. The default is to overwrite as needed." #~ msgstr "" #~ "Hur Cacti kontrollerar loggstorleken. Normalt är att skriva över om det " #~ "behövs." #~ msgid "Overwrite events as needed" #~ msgstr "Skriv över händelse om det behövs" #~ msgid "Overwrite events older than the maximum days" #~ msgstr "Skriv över händelser äldre än maximal kvarhållningsperiod" #~ msgid "Stop logging if maximum log size is exceeded" #~ msgstr "Sluta logga om max loggstorlek nås" #~ msgid "" #~ "The type of SNMP you have installed. Required if you are using SNMP v2c " #~ "or don't have embedded SNMP support in PHP." #~ msgstr "" #~ "Anger vilken typ av SNMP du har installerad. Behövs om du använder SNMP " #~ "v2c eller om du inte har inbyggd SNMP support i PHP." #~ msgid "To end your Cacti session please close your web browser." #~ msgstr "För att avsluta din Cacti session, stäng ner din webbläsare." #~ msgid "of" #~ msgstr "av" cacti-1.1.38/locales/po/spanish_spain.po0000664000175000017500000301265713264740213017532 0ustar tromantromanmsgid "" msgstr "" "Project-Id-Version: Cacti 1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-09-17 08:36-0400\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.3\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: /var/www/html/cacti/about.php:29 #: /var/www/html/cacti/include/global_session.php:108 #: /var/www/html/cacti/lib/functions.php:2435 msgid "About Cacti" msgstr "Acerca de Cacti" #: /var/www/html/cacti/about.php:35 /var/www/html/cacti/index.php:73 #: /var/www/html/cacti/logout.php:81 #, php-format msgid "Version %s" msgstr "Versión %s" #: /var/www/html/cacti/about.php:42 msgid "" "Cacti is designed to be a complete graphing solution based on the RRDtool's " "framework. Its goal is to make a network administrator's job easier by " "taking care of all the necessary details necessary to create meaningful " "graphs." msgstr "" "Cacti está diseñado para ser una solución de gráficos completa basada en el " "framework de RRDtool. Su objetivo es hacer el trabajo de los administradores " "de red más fácil, ocupándose de todos los detalles necesarios para crear " "gráficos significativos." #: /var/www/html/cacti/about.php:44 #, php-format msgid "" "Please see the official %sCacti website%s for information, support, and " "updates." msgstr "" "Ve al %ssitio web de Cacti%s oficial para información, soporte y " "actualizaciones." #: /var/www/html/cacti/about.php:46 msgid "Cacti Developers" msgstr "Desarrolladores de Cacti" #: /var/www/html/cacti/about.php:58 msgid "Thanks" msgstr "Gracias" #: /var/www/html/cacti/about.php:61 #, php-format msgid "" "A very special thanks to %sTobi Oetiker%s, the creator of %sRRDtool%s and " "the very popular %sMRTG%s." msgstr "" "Gracias totales a %sTobi Oetiker%s, creador de %sRRDtool%s y del popular " "%sMRTG%s." #: /var/www/html/cacti/about.php:64 msgid "The users of Cacti" msgstr "Los usuarios de Cacti" #: /var/www/html/cacti/about.php:65 msgid "" "Especially anyone who has taken the time to create an issue report, or " "otherwise help fix a Cacti related problems. Also to anyone who has " "contributed to supporting Cacti." msgstr "" "Especialmente cualquiera que se haya tomado el tiempo de registrar un fallo, " "o de otra manera ayudar a solucionar problemas relacionados a Cacti. También " "a cualquiera que haya contribuido con Cacti." #: /var/www/html/cacti/about.php:70 msgid "License" msgstr "Licencia" #: /var/www/html/cacti/about.php:72 msgid "Cacti is licensed under the GNU GPL:" msgstr "Cacti está licenciado bajo GNU GPL:" #: /var/www/html/cacti/about.php:74 /var/www/html/cacti/install/index.php:438 msgid "" "This program is free software; you can redistribute it and/or modify it " "under the terms of the GNU General Public License as published by the Free " "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" "Este programa es software libre, puedes redistribuirlo y/o modificarlo bajo " "los terminos de La Licencia Pública General GNU como fue publicada por la " "Free Software Foundation; sea versión 2 de la Licencia, o cualquier versión " "posterior." #: /var/www/html/cacti/about.php:76 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" "Este programa es distribuido con la esperanza de que sea útil, pero SIN " "NINGUNA GARANTIA; sin siquiera la garantía implícita de COMERCIALIZACION o " "APTITUD PARA UN PROPOSITO PARTICULAR. Ver la Licencia Pública General GNU " "para más detalles." #: /var/www/html/cacti/aggregate_graphs.php:40 #: /var/www/html/cacti/aggregate_templates.php:29 #: /var/www/html/cacti/automation_graph_rules.php:32 #: /var/www/html/cacti/automation_networks.php:31 #: /var/www/html/cacti/automation_snmp.php:29 #: /var/www/html/cacti/automation_snmp.php:731 #: /var/www/html/cacti/automation_templates.php:29 #: /var/www/html/cacti/automation_tree_rules.php:32 #: /var/www/html/cacti/cdef.php:29 /var/www/html/cacti/cdef.php:620 #: /var/www/html/cacti/color.php:28 /var/www/html/cacti/color_templates.php:28 #: /var/www/html/cacti/color_templates.php:122 #: /var/www/html/cacti/data_input.php:29 /var/www/html/cacti/data_input.php:490 #: /var/www/html/cacti/data_input.php:529 #: /var/www/html/cacti/data_queries.php:30 #: /var/www/html/cacti/data_queries.php:637 #: /var/www/html/cacti/data_queries.php:735 #: /var/www/html/cacti/data_queries.php:955 #: /var/www/html/cacti/data_source_profiles.php:29 #: /var/www/html/cacti/data_source_profiles.php:583 #: /var/www/html/cacti/data_sources.php:35 #: /var/www/html/cacti/data_sources.php:984 #: /var/www/html/cacti/data_templates.php:33 #: /var/www/html/cacti/data_templates.php:571 #: /var/www/html/cacti/gprint_presets.php:28 #: /var/www/html/cacti/graph_templates.php:33 #: /var/www/html/cacti/graph_templates.php:440 #: /var/www/html/cacti/graphs.php:44 /var/www/html/cacti/host.php:38 #: /var/www/html/cacti/host_templates.php:30 #: /var/www/html/cacti/host_templates.php:485 #: /var/www/html/cacti/host_templates.php:542 #: /var/www/html/cacti/include/global_arrays.php:1287 #: /var/www/html/cacti/lib/api_automation.php:1277 #: /var/www/html/cacti/lib/api_automation.php:1340 #: /var/www/html/cacti/lib/api_automation.php:1404 #: /var/www/html/cacti/lib/html.php:996 #: /var/www/html/cacti/lib/html_form.php:1121 #: /var/www/html/cacti/lib/html_reports.php:1326 #: /var/www/html/cacti/links.php:28 /var/www/html/cacti/managers.php:28 #: /var/www/html/cacti/pollers.php:29 /var/www/html/cacti/sites.php:28 #: /var/www/html/cacti/tree.php:1187 /var/www/html/cacti/tree.php:1340 #: /var/www/html/cacti/tree.php:1400 /var/www/html/cacti/tree.php:1421 #: /var/www/html/cacti/user_admin.php:28 #: /var/www/html/cacti/user_domains.php:29 #: /var/www/html/cacti/user_group_admin.php:30 /var/www/html/cacti/vdef.php:29 msgid "Delete" msgstr "Eliminar" #: /var/www/html/cacti/aggregate_graphs.php:41 msgid "Migrate Aggregate to use a Template" msgstr "Migrar Agregado para usar una Plantilla" #: /var/www/html/cacti/aggregate_graphs.php:42 msgid "Create New Aggregate from Aggregates" msgstr "Crear nuevo Agregado desde Agregados" #: /var/www/html/cacti/aggregate_graphs.php:46 msgid "Associate with Aggregate" msgstr "Asociar con Agregados" #: /var/www/html/cacti/aggregate_graphs.php:47 msgid "Disassociate with Aggregate" msgstr "Desasociar con Agregados" #: /var/www/html/cacti/aggregate_graphs.php:80 #: /var/www/html/cacti/graphs.php:128 #, php-format msgid "Place on a Tree (%s)" msgstr "Colocar en Arbol (%s)" #: /var/www/html/cacti/aggregate_graphs.php:318 msgid "Click 'Continue' to delete the following Aggregate Graph(s)." msgstr "" "Haga click en 'Continuar' para eliminar el/los siguientes Gragicos " "Agregado(s)." #: /var/www/html/cacti/aggregate_graphs.php:323 #: /var/www/html/cacti/aggregate_graphs.php:384 #: /var/www/html/cacti/aggregate_graphs.php:409 #: /var/www/html/cacti/aggregate_graphs.php:418 #: /var/www/html/cacti/aggregate_graphs.php:427 #: /var/www/html/cacti/aggregate_graphs.php:438 #: /var/www/html/cacti/aggregate_templates.php:312 #: /var/www/html/cacti/automation_devices.php:199 #: /var/www/html/cacti/automation_graph_rules.php:289 #: /var/www/html/cacti/automation_networks.php:358 #: /var/www/html/cacti/automation_snmp.php:253 #: /var/www/html/cacti/automation_snmp.php:359 #: /var/www/html/cacti/automation_templates.php:195 #: /var/www/html/cacti/automation_tree_rules.php:286 #: /var/www/html/cacti/cdef.php:282 /var/www/html/cacti/cdef.php:293 #: /var/www/html/cacti/cdef.php:345 /var/www/html/cacti/color.php:192 #: /var/www/html/cacti/color_templates.php:232 #: /var/www/html/cacti/color_templates.php:242 #: /var/www/html/cacti/color_templates_items.php:281 #: /var/www/html/cacti/data_input.php:218 #: /var/www/html/cacti/data_input.php:266 #: /var/www/html/cacti/data_queries.php:322 #: /var/www/html/cacti/data_queries.php:425 #: /var/www/html/cacti/data_source_profiles.php:280 #: /var/www/html/cacti/data_source_profiles.php:290 #: /var/www/html/cacti/data_source_profiles.php:341 #: /var/www/html/cacti/data_sources.php:472 #: /var/www/html/cacti/data_sources.php:482 #: /var/www/html/cacti/data_sources.php:491 #: /var/www/html/cacti/data_sources.php:500 #: /var/www/html/cacti/data_sources.php:509 #: /var/www/html/cacti/data_sources.php:515 #: /var/www/html/cacti/data_templates.php:358 #: /var/www/html/cacti/data_templates.php:368 #: /var/www/html/cacti/data_templates.php:384 #: /var/www/html/cacti/gprint_presets.php:153 #: /var/www/html/cacti/graph_templates.php:317 #: /var/www/html/cacti/graph_templates.php:327 #: /var/www/html/cacti/graph_templates.php:347 #: /var/www/html/cacti/graph_templates.php:356 #: /var/www/html/cacti/graphs.php:805 /var/www/html/cacti/graphs.php:821 #: /var/www/html/cacti/graphs.php:832 /var/www/html/cacti/graphs.php:843 #: /var/www/html/cacti/graphs.php:858 /var/www/html/cacti/graphs.php:872 #: /var/www/html/cacti/graphs.php:881 /var/www/html/cacti/graphs.php:1007 #: /var/www/html/cacti/graphs.php:1050 /var/www/html/cacti/graphs.php:1072 #: /var/www/html/cacti/graphs.php:1080 /var/www/html/cacti/graphs.php:1522 #: /var/www/html/cacti/host.php:385 /var/www/html/cacti/host.php:394 #: /var/www/html/cacti/host.php:436 /var/www/html/cacti/host.php:445 #: /var/www/html/cacti/host.php:454 /var/www/html/cacti/host.php:468 #: /var/www/html/cacti/host.php:482 /var/www/html/cacti/host.php:491 #: /var/www/html/cacti/host.php:499 /var/www/html/cacti/host_templates.php:261 #: /var/www/html/cacti/host_templates.php:275 #: /var/www/html/cacti/host_templates.php:286 #: /var/www/html/cacti/host_templates.php:334 #: /var/www/html/cacti/host_templates.php:394 #: /var/www/html/cacti/lib/clog_webapi.php:160 #: /var/www/html/cacti/lib/html_form.php:1120 #: /var/www/html/cacti/lib/html_form.php:1132 #: /var/www/html/cacti/lib/html_form.php:1143 #: /var/www/html/cacti/lib/html_utility.php:210 #: /var/www/html/cacti/links.php:196 /var/www/html/cacti/links.php:205 #: /var/www/html/cacti/links.php:214 /var/www/html/cacti/managers.php:1034 #: /var/www/html/cacti/managers.php:1091 /var/www/html/cacti/pollers.php:288 #: /var/www/html/cacti/pollers.php:297 /var/www/html/cacti/pollers.php:306 #: /var/www/html/cacti/pollers.php:315 /var/www/html/cacti/sites.php:291 #: /var/www/html/cacti/tree.php:554 /var/www/html/cacti/tree.php:563 #: /var/www/html/cacti/tree.php:572 /var/www/html/cacti/user_admin.php:340 #: /var/www/html/cacti/user_admin.php:380 #: /var/www/html/cacti/user_admin.php:391 #: /var/www/html/cacti/user_admin.php:402 #: /var/www/html/cacti/user_admin.php:424 #: /var/www/html/cacti/user_domains.php:229 #: /var/www/html/cacti/user_domains.php:238 #: /var/www/html/cacti/user_domains.php:247 #: /var/www/html/cacti/user_domains.php:256 #: /var/www/html/cacti/user_group_admin.php:446 #: /var/www/html/cacti/user_group_admin.php:465 #: /var/www/html/cacti/user_group_admin.php:476 #: /var/www/html/cacti/user_group_admin.php:487 #: /var/www/html/cacti/vdef.php:270 /var/www/html/cacti/vdef.php:280 #: /var/www/html/cacti/vdef.php:332 msgid "Cancel" msgstr "Cancelar" #: /var/www/html/cacti/aggregate_graphs.php:323 #: /var/www/html/cacti/aggregate_graphs.php:384 #: /var/www/html/cacti/aggregate_graphs.php:409 #: /var/www/html/cacti/aggregate_graphs.php:418 #: /var/www/html/cacti/aggregate_graphs.php:427 #: /var/www/html/cacti/aggregate_graphs.php:438 #: /var/www/html/cacti/aggregate_templates.php:312 #: /var/www/html/cacti/automation_devices.php:199 #: /var/www/html/cacti/automation_graph_rules.php:289 #: /var/www/html/cacti/automation_networks.php:350 #: /var/www/html/cacti/automation_snmp.php:228 #: /var/www/html/cacti/automation_snmp.php:360 #: /var/www/html/cacti/automation_templates.php:195 #: /var/www/html/cacti/automation_tree_rules.php:286 #: /var/www/html/cacti/cdef.php:282 /var/www/html/cacti/cdef.php:293 #: /var/www/html/cacti/cdef.php:346 /var/www/html/cacti/color.php:192 #: /var/www/html/cacti/color_templates.php:232 #: /var/www/html/cacti/color_templates.php:242 #: /var/www/html/cacti/color_templates_items.php:282 #: /var/www/html/cacti/data_input.php:218 #: /var/www/html/cacti/data_input.php:267 #: /var/www/html/cacti/data_queries.php:322 #: /var/www/html/cacti/data_queries.php:426 #: /var/www/html/cacti/data_source_profiles.php:280 #: /var/www/html/cacti/data_source_profiles.php:290 #: /var/www/html/cacti/data_source_profiles.php:342 #: /var/www/html/cacti/data_sources.php:472 #: /var/www/html/cacti/data_sources.php:482 #: /var/www/html/cacti/data_sources.php:491 #: /var/www/html/cacti/data_sources.php:500 #: /var/www/html/cacti/data_sources.php:509 #: /var/www/html/cacti/data_sources.php:515 #: /var/www/html/cacti/data_templates.php:358 #: /var/www/html/cacti/data_templates.php:368 #: /var/www/html/cacti/data_templates.php:384 #: /var/www/html/cacti/gprint_presets.php:153 #: /var/www/html/cacti/graph_templates.php:317 #: /var/www/html/cacti/graph_templates.php:327 #: /var/www/html/cacti/graph_templates.php:347 #: /var/www/html/cacti/graph_templates.php:356 #: /var/www/html/cacti/graphs.php:805 /var/www/html/cacti/graphs.php:821 #: /var/www/html/cacti/graphs.php:832 /var/www/html/cacti/graphs.php:843 #: /var/www/html/cacti/graphs.php:858 /var/www/html/cacti/graphs.php:872 #: /var/www/html/cacti/graphs.php:881 /var/www/html/cacti/graphs.php:1007 #: /var/www/html/cacti/graphs.php:1050 /var/www/html/cacti/graphs.php:1072 #: /var/www/html/cacti/graphs.php:1080 /var/www/html/cacti/host.php:385 #: /var/www/html/cacti/host.php:394 /var/www/html/cacti/host.php:436 #: /var/www/html/cacti/host.php:445 /var/www/html/cacti/host.php:454 #: /var/www/html/cacti/host.php:468 /var/www/html/cacti/host.php:482 #: /var/www/html/cacti/host.php:491 /var/www/html/cacti/host.php:499 #: /var/www/html/cacti/host_templates.php:261 #: /var/www/html/cacti/host_templates.php:275 #: /var/www/html/cacti/host_templates.php:286 #: /var/www/html/cacti/host_templates.php:335 #: /var/www/html/cacti/host_templates.php:395 #: /var/www/html/cacti/lib/clog_webapi.php:161 #: /var/www/html/cacti/lib/html_reports.php:674 #: /var/www/html/cacti/lib/html_utility.php:210 #: /var/www/html/cacti/links.php:196 /var/www/html/cacti/links.php:205 #: /var/www/html/cacti/links.php:214 /var/www/html/cacti/managers.php:1034 #: /var/www/html/cacti/managers.php:1091 /var/www/html/cacti/pollers.php:288 #: /var/www/html/cacti/pollers.php:297 /var/www/html/cacti/pollers.php:306 #: /var/www/html/cacti/pollers.php:315 /var/www/html/cacti/sites.php:291 #: /var/www/html/cacti/tree.php:554 /var/www/html/cacti/tree.php:563 #: /var/www/html/cacti/tree.php:572 /var/www/html/cacti/user_admin.php:340 #: /var/www/html/cacti/user_admin.php:380 #: /var/www/html/cacti/user_admin.php:391 #: /var/www/html/cacti/user_admin.php:402 #: /var/www/html/cacti/user_admin.php:424 #: /var/www/html/cacti/user_domains.php:229 #: /var/www/html/cacti/user_domains.php:238 #: /var/www/html/cacti/user_domains.php:247 #: /var/www/html/cacti/user_domains.php:256 #: /var/www/html/cacti/user_group_admin.php:446 #: /var/www/html/cacti/user_group_admin.php:465 #: /var/www/html/cacti/user_group_admin.php:476 #: /var/www/html/cacti/user_group_admin.php:487 #: /var/www/html/cacti/vdef.php:270 /var/www/html/cacti/vdef.php:280 #: /var/www/html/cacti/vdef.php:333 msgid "Continue" msgstr "Continuar" #: /var/www/html/cacti/aggregate_graphs.php:323 #: /var/www/html/cacti/aggregate_graphs.php:384 #: /var/www/html/cacti/aggregate_graphs.php:409 #: /var/www/html/cacti/graphs.php:805 msgid "Delete Graph(s)" msgstr "Eliminar gráfico(s)" #: /var/www/html/cacti/aggregate_graphs.php:349 msgid "" "The selected Aggregate Graphs represent elements from more than one Graph " "Template." msgstr "" "Los gráficos Agregados seleccionados representan elementos de mas de una " "Plantilla de gráficos." #: /var/www/html/cacti/aggregate_graphs.php:350 msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, they must only be using one Graph Template. Please press " "'Return' and then select only Aggregate Graph that utilize the same Graph " "Template." msgstr "" "Para migrar los gráficos Agregados debajo a un Agregado basado en " "Plantillas, deben estar usando solamente una Plantilla de gráficos. Por " "favor presiona 'Regresar' y selecciona solamente gráficos Agregados que " "utilicen la misma Plantilla de gráficos." #: /var/www/html/cacti/aggregate_graphs.php:355 #: /var/www/html/cacti/aggregate_graphs.php:395 #: /var/www/html/cacti/aggregate_graphs.php:442 #: /var/www/html/cacti/aggregate_templates.php:316 #: /var/www/html/cacti/auth_changepassword.php:308 #: /var/www/html/cacti/auth_profile.php:420 #: /var/www/html/cacti/auth_profile.php:430 #: /var/www/html/cacti/automation_devices.php:203 #: /var/www/html/cacti/automation_graph_rules.php:287 #: /var/www/html/cacti/automation_networks.php:359 #: /var/www/html/cacti/automation_snmp.php:253 #: /var/www/html/cacti/automation_templates.php:199 #: /var/www/html/cacti/automation_tree_rules.php:284 #: /var/www/html/cacti/cdef.php:297 /var/www/html/cacti/color.php:196 #: /var/www/html/cacti/color_templates.php:246 #: /var/www/html/cacti/data_input.php:221 #: /var/www/html/cacti/data_queries.php:325 #: /var/www/html/cacti/data_source_profiles.php:294 #: /var/www/html/cacti/data_sources.php:519 #: /var/www/html/cacti/data_templates.php:388 #: /var/www/html/cacti/gprint_presets.php:157 #: /var/www/html/cacti/graph_templates.php:360 #: /var/www/html/cacti/graphs.php:1009 /var/www/html/cacti/graphs.php:1059 #: /var/www/html/cacti/graphs.php:1062 /var/www/html/cacti/graphs.php:1085 #: /var/www/html/cacti/host.php:503 /var/www/html/cacti/host_templates.php:290 #: /var/www/html/cacti/include/auth.php:116 #: /var/www/html/cacti/lib/html_form.php:1141 #: /var/www/html/cacti/lib/html_utility.php:208 #: /var/www/html/cacti/links.php:218 /var/www/html/cacti/managers.php:1037 #: /var/www/html/cacti/managers.php:1094 #: /var/www/html/cacti/permission_denied.php:30 #: /var/www/html/cacti/permission_denied.php:32 #: /var/www/html/cacti/pollers.php:319 /var/www/html/cacti/sites.php:295 #: /var/www/html/cacti/tree.php:576 /var/www/html/cacti/user_admin.php:429 #: /var/www/html/cacti/user_domains.php:260 #: /var/www/html/cacti/user_group_admin.php:491 #: /var/www/html/cacti/vdef.php:284 msgid "Return" msgstr "Regresar" #: /var/www/html/cacti/aggregate_graphs.php:368 msgid "" "Click 'Continue' and the following Aggregate Graph(s) will be migrated to " "use the Aggregate Template that you choose below." msgstr "" "Haga click en 'Continuar' y el/los siguientes gráfico(s) Agregado(s) serán " "migrados para usar la Plantilla de Agregados que has seleccionado debajo." #: /var/www/html/cacti/aggregate_graphs.php:374 msgid "Aggregate Template:" msgstr "Plantilla de Agregados:" #: /var/www/html/cacti/aggregate_graphs.php:388 msgid "" "There are currently no Aggregate Templates defined for the selected Legacy " "Aggregates." msgstr "" "Actualmente no hay Plantillas de Agregados definidas para los Antiguos " "Agregados." #: /var/www/html/cacti/aggregate_graphs.php:389 #, php-format msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, first create an Aggregate Template for the Graph Template '%s'." msgstr "" "Para migrar los gráficos Agregados a continuación a un Agregado basado en " "Plantillas, primero crea una Plantilla de Agregados para la Plantilla de " "gráficos '%s'." #: /var/www/html/cacti/aggregate_graphs.php:390 msgid "Please press 'Return' to continue." msgstr "Por favor presiona 'Regresar' para continuar." #: /var/www/html/cacti/aggregate_graphs.php:401 msgid "" "Click 'Continue' to combine the following Aggregate Graph(s) into a single " "Aggregate Graph." msgstr "" "Haga click en 'Continuar' para combinar el/los siguiente(s) gráfico(s) " "Agregado(s) en un simple gráfico Agregado." #: /var/www/html/cacti/aggregate_graphs.php:406 msgid "Aggregate Name:" msgstr "Nombre de Agregado:" #: /var/www/html/cacti/aggregate_graphs.php:407 msgid "New Aggregate" msgstr "Nuevo Agregado" #: /var/www/html/cacti/aggregate_graphs.php:413 msgid "" "Click 'Continue' to associate the following Graph(s) with the Aggregate " "Graph." msgstr "" "Haga click en 'Continuar' para asociar el/los siguiente(s) gráfico(s) con el " "gráfico Agregado." #: /var/www/html/cacti/aggregate_graphs.php:418 msgid "Associate Graph(s)" msgstr "Asociar gráfico(s)" #: /var/www/html/cacti/aggregate_graphs.php:422 msgid "" "Click 'Continue' to disassociate the following Graph(s) from the Aggregate." msgstr "" "Haga click en 'Continuar' para desasociar el/los siguiente gráfico(s) del " "Agregado." #: /var/www/html/cacti/aggregate_graphs.php:427 msgid "Dis-Associate Graph(s)" msgstr "Desasociar gráfico(s)" #: /var/www/html/cacti/aggregate_graphs.php:431 msgid "" "Click 'Continue' to place the following Aggregate Graph(s) under the Tree " "Branch." msgstr "" "Haga click en 'Continuar' para colocar el/los siguiente(s) gráfico(s) " "Agregado(s) bajo la rama del arbol." #: /var/www/html/cacti/aggregate_graphs.php:433 #: /var/www/html/cacti/host.php:474 msgid "Destination Branch:" msgstr "Rama destino:" #: /var/www/html/cacti/aggregate_graphs.php:438 #: /var/www/html/cacti/graphs.php:858 msgid "Place Graph(s) on Tree" msgstr "Colocar gráfico(s) en Arbol" #: /var/www/html/cacti/aggregate_graphs.php:441 msgid "You must select at least one graph." msgstr "Debes seleccionar al menos un gráfico." #: /var/www/html/cacti/aggregate_graphs.php:476 #: /var/www/html/cacti/graphs.php:1118 msgid "Graph Items [new]" msgstr "Items de gráficos [nuevo]" #: /var/www/html/cacti/aggregate_graphs.php:492 #: /var/www/html/cacti/graphs.php:1149 #, php-format msgid "Graph Items [edit: %s]" msgstr "Items de gráficos [editar: %s]" #: /var/www/html/cacti/aggregate_graphs.php:565 #: /var/www/html/cacti/aggregate_graphs.php:572 #: /var/www/html/cacti/lib/html_reports.php:1095 #: /var/www/html/cacti/lib/html_reports.php:1100 #: /var/www/html/cacti/lib/html_reports.php:1139 #: /var/www/html/cacti/utilities.php:1746 msgid "Details" msgstr "Detalles" #: /var/www/html/cacti/aggregate_graphs.php:566 #: /var/www/html/cacti/lib/html_reports.php:1095 #: /var/www/html/cacti/lib/html_reports.php:1186 #: /var/www/html/cacti/utilities.php:319 msgid "Items" msgstr "Items" #: /var/www/html/cacti/aggregate_graphs.php:567 #: /var/www/html/cacti/aggregate_graphs.php:573 #: /var/www/html/cacti/lib/html.php:1599 #: /var/www/html/cacti/lib/html_reports.php:1095 msgid "Preview" msgstr "Vista previa" #: /var/www/html/cacti/aggregate_graphs.php:631 msgid "Turn Off Graph Debug Mode" msgstr "Deshabilitar Modo de Depuración de gráficos" #: /var/www/html/cacti/aggregate_graphs.php:633 msgid "Turn On Graph Debug Mode" msgstr "Habilitar Modo de Depuración de gráficos" #: /var/www/html/cacti/aggregate_graphs.php:639 #: /var/www/html/cacti/aggregate_graphs.php:903 msgid "Show Item Details" msgstr "Mostrar detalles de Items" #: /var/www/html/cacti/aggregate_graphs.php:645 #, php-format msgid "Aggregate Preview [%s]" msgstr "Vista previa de Agregados [%s]" #: /var/www/html/cacti/aggregate_graphs.php:657 #: /var/www/html/cacti/graph.php:483 /var/www/html/cacti/graphs.php:1385 msgid "RRDTool Command:" msgstr "Comando RRDTool:" #: /var/www/html/cacti/aggregate_graphs.php:659 #: /var/www/html/cacti/graph.php:486 /var/www/html/cacti/graphs.php:1387 msgid "RRDTool Says:" msgstr "RRDTool dice:" #: /var/www/html/cacti/aggregate_graphs.php:684 #, php-format msgid "Aggregate Graph %s" msgstr "Gráfico Agregado %s" #: /var/www/html/cacti/aggregate_graphs.php:821 #: /var/www/html/cacti/graphs.php:967 #: /var/www/html/cacti/lib/api_aggregate.php:1301 msgid "Total" msgstr "Total" #: /var/www/html/cacti/aggregate_graphs.php:825 #: /var/www/html/cacti/graphs.php:969 msgid "All Items" msgstr "Todos los items" #: /var/www/html/cacti/aggregate_graphs.php:848 #: /var/www/html/cacti/graphs.php:1401 #: /var/www/html/cacti/lib/api_aggregate.php:1448 msgid "Graph Configuration" msgstr "Configuración de gráfico" #: /var/www/html/cacti/aggregate_graphs.php:898 #: /var/www/html/cacti/automation_graph_rules.php:554 #: /var/www/html/cacti/automation_graph_rules.php:569 #: /var/www/html/cacti/automation_graph_rules.php:585 #: /var/www/html/cacti/automation_tree_rules.php:379 #: /var/www/html/cacti/automation_tree_rules.php:529 msgid "Show" msgstr "Mostrar" #: /var/www/html/cacti/aggregate_graphs.php:900 msgid "Hide Item Details" msgstr "Ocultar Detalles de item" #: /var/www/html/cacti/aggregate_graphs.php:1020 msgid "Matching Graphs" msgstr "Coincidencia de gráficos" #: /var/www/html/cacti/aggregate_graphs.php:1029 #: /var/www/html/cacti/aggregate_graphs.php:1346 #: /var/www/html/cacti/aggregate_templates.php:538 #: /var/www/html/cacti/automation_devices.php:448 #: /var/www/html/cacti/automation_graph_rules.php:747 #: /var/www/html/cacti/automation_networks.php:1061 #: /var/www/html/cacti/automation_networks.php:1083 #: /var/www/html/cacti/automation_snmp.php:831 #: /var/www/html/cacti/automation_templates.php:412 #: /var/www/html/cacti/automation_tree_rules.php:715 #: /var/www/html/cacti/cdef.php:723 /var/www/html/cacti/color.php:529 #: /var/www/html/cacti/color_templates.php:439 #: /var/www/html/cacti/data_input.php:620 #: /var/www/html/cacti/data_queries.php:1053 #: /var/www/html/cacti/data_source_profiles.php:799 #: /var/www/html/cacti/data_sources.php:1292 #: /var/www/html/cacti/data_templates.php:754 #: /var/www/html/cacti/gprint_presets.php:262 #: /var/www/html/cacti/graph_templates.php:628 #: /var/www/html/cacti/graph_view.php:537 #: /var/www/html/cacti/graph_view.php:841 /var/www/html/cacti/graphs.php:1674 #: /var/www/html/cacti/graphs_new.php:570 /var/www/html/cacti/host.php:1496 #: /var/www/html/cacti/host_templates.php:700 #: /var/www/html/cacti/lib/api_automation.php:141 #: /var/www/html/cacti/lib/api_automation.php:469 #: /var/www/html/cacti/lib/api_automation.php:699 #: /var/www/html/cacti/lib/api_automation.php:1019 #: /var/www/html/cacti/lib/clog_webapi.php:461 #: /var/www/html/cacti/lib/html_filter.php:63 #: /var/www/html/cacti/lib/html_graph.php:204 #: /var/www/html/cacti/lib/html_graph.php:422 #: /var/www/html/cacti/lib/html_reports.php:1413 #: /var/www/html/cacti/lib/html_tree.php:121 #: /var/www/html/cacti/lib/html_tree.php:656 #: /var/www/html/cacti/lib/html_tree.php:920 /var/www/html/cacti/links.php:309 #: /var/www/html/cacti/managers.php:150 /var/www/html/cacti/managers.php:523 #: /var/www/html/cacti/managers.php:755 /var/www/html/cacti/plugins.php:288 #: /var/www/html/cacti/pollers.php:517 /var/www/html/cacti/rrdcleaner.php:475 #: /var/www/html/cacti/settings.php:215 /var/www/html/cacti/settings.php:234 #: /var/www/html/cacti/settings.php:283 /var/www/html/cacti/sites.php:398 #: /var/www/html/cacti/tree.php:701 /var/www/html/cacti/tree.php:736 #: /var/www/html/cacti/tree.php:771 /var/www/html/cacti/tree.php:1665 #: /var/www/html/cacti/user_admin.php:2206 #: /var/www/html/cacti/user_admin.php:2544 #: /var/www/html/cacti/user_admin.php:2651 #: /var/www/html/cacti/user_admin.php:2737 #: /var/www/html/cacti/user_admin.php:2840 #: /var/www/html/cacti/user_admin.php:2925 #: /var/www/html/cacti/user_admin.php:3010 #: /var/www/html/cacti/user_domains.php:647 #: /var/www/html/cacti/user_group_admin.php:1827 #: /var/www/html/cacti/user_group_admin.php:2152 #: /var/www/html/cacti/user_group_admin.php:2260 #: /var/www/html/cacti/user_group_admin.php:2363 #: /var/www/html/cacti/user_group_admin.php:2448 #: /var/www/html/cacti/user_group_admin.php:2533 #: /var/www/html/cacti/utilities.php:699 /var/www/html/cacti/utilities.php:1096 #: /var/www/html/cacti/utilities.php:1331 #: /var/www/html/cacti/utilities.php:1641 #: /var/www/html/cacti/utilities.php:2316 #: /var/www/html/cacti/utilities.php:2567 /var/www/html/cacti/vdef.php:659 msgid "Search" msgstr "Buscar" #: /var/www/html/cacti/aggregate_graphs.php:1035 #: /var/www/html/cacti/aggregate_graphs.php:1132 #: /var/www/html/cacti/aggregate_graphs.php:1374 #: /var/www/html/cacti/color_templates.php:548 #: /var/www/html/cacti/graph_view.php:415 #: /var/www/html/cacti/graph_view.php:576 /var/www/html/cacti/graphs.php:1680 #: /var/www/html/cacti/host.php:1560 #: /var/www/html/cacti/include/global_arrays.php:736 #: /var/www/html/cacti/include/global_arrays.php:917 #: /var/www/html/cacti/lib/api_automation.php:281 #: /var/www/html/cacti/lib/functions.php:1867 #: /var/www/html/cacti/lib/html.php:1334 /var/www/html/cacti/lib/html.php:1336 #: /var/www/html/cacti/lib/html.php:1415 #: /var/www/html/cacti/lib/html_graph.php:210 #: /var/www/html/cacti/lib/html_tree.php:707 #: /var/www/html/cacti/lib/html_tree.php:1118 /var/www/html/cacti/tree.php:1747 #: /var/www/html/cacti/user_admin.php:988 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_admin.php:2572 #: /var/www/html/cacti/user_group_admin.php:813 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:2180 #: /var/www/html/cacti/utilities.php:281 msgid "Graphs" msgstr "Gráficos" #: /var/www/html/cacti/aggregate_graphs.php:1039 #: /var/www/html/cacti/aggregate_graphs.php:1378 #: /var/www/html/cacti/aggregate_templates.php:554 #: /var/www/html/cacti/automation_devices.php:533 #: /var/www/html/cacti/automation_graph_rules.php:789 #: /var/www/html/cacti/automation_networks.php:1071 #: /var/www/html/cacti/automation_snmp.php:841 #: /var/www/html/cacti/automation_templates.php:422 #: /var/www/html/cacti/automation_tree_rules.php:735 #: /var/www/html/cacti/cdef.php:733 /var/www/html/cacti/color.php:539 #: /var/www/html/cacti/color_templates.php:453 #: /var/www/html/cacti/data_input.php:630 #: /var/www/html/cacti/data_queries.php:1063 #: /var/www/html/cacti/data_source_profiles.php:809 #: /var/www/html/cacti/data_source_profiles.php:930 #: /var/www/html/cacti/data_sources.php:1328 #: /var/www/html/cacti/data_templates.php:780 #: /var/www/html/cacti/gprint_presets.php:272 #: /var/www/html/cacti/graph_templates.php:638 #: /var/www/html/cacti/graph_view.php:580 /var/www/html/cacti/graphs.php:1684 #: /var/www/html/cacti/graphs_new.php:580 /var/www/html/cacti/host.php:1521 #: /var/www/html/cacti/host_templates.php:710 #: /var/www/html/cacti/include/global_form.php:76 #: /var/www/html/cacti/lib/api_automation.php:184 #: /var/www/html/cacti/lib/api_automation.php:479 #: /var/www/html/cacti/lib/api_automation.php:709 #: /var/www/html/cacti/lib/api_automation.php:1062 #: /var/www/html/cacti/lib/html_reports.php:1433 #: /var/www/html/cacti/links.php:319 /var/www/html/cacti/managers.php:160 #: /var/www/html/cacti/managers.php:533 /var/www/html/cacti/plugins.php:311 #: /var/www/html/cacti/pollers.php:527 /var/www/html/cacti/rrdcleaner.php:501 #: /var/www/html/cacti/sites.php:408 /var/www/html/cacti/tree.php:1675 #: /var/www/html/cacti/user_admin.php:2216 #: /var/www/html/cacti/user_admin.php:2576 #: /var/www/html/cacti/user_admin.php:2661 #: /var/www/html/cacti/user_admin.php:2765 #: /var/www/html/cacti/user_admin.php:2850 #: /var/www/html/cacti/user_admin.php:2935 #: /var/www/html/cacti/user_admin.php:3020 #: /var/www/html/cacti/user_domains.php:32 #: /var/www/html/cacti/user_domains.php:657 #: /var/www/html/cacti/user_domains.php:740 #: /var/www/html/cacti/user_group_admin.php:1837 #: /var/www/html/cacti/user_group_admin.php:2184 #: /var/www/html/cacti/user_group_admin.php:2288 #: /var/www/html/cacti/user_group_admin.php:2373 #: /var/www/html/cacti/user_group_admin.php:2458 #: /var/www/html/cacti/user_group_admin.php:2543 #: /var/www/html/cacti/utilities.php:677 /var/www/html/cacti/utilities.php:1375 #: /var/www/html/cacti/utilities.php:1662 #: /var/www/html/cacti/utilities.php:2341 #: /var/www/html/cacti/utilities.php:2603 /var/www/html/cacti/vdef.php:669 msgid "Default" msgstr "Por Defecto" #: /var/www/html/cacti/aggregate_graphs.php:1052 msgid "Part of Aggregate" msgstr "Parte de Agregados" #: /var/www/html/cacti/aggregate_graphs.php:1057 #: /var/www/html/cacti/aggregate_graphs.php:1390 #: /var/www/html/cacti/aggregate_templates.php:575 #: /var/www/html/cacti/automation_devices.php:469 #: /var/www/html/cacti/automation_graph_rules.php:801 #: /var/www/html/cacti/automation_networks.php:1083 #: /var/www/html/cacti/automation_snmp.php:853 #: /var/www/html/cacti/automation_templates.php:434 #: /var/www/html/cacti/automation_tree_rules.php:747 #: /var/www/html/cacti/cdef.php:751 /var/www/html/cacti/color.php:563 #: /var/www/html/cacti/color_templates.php:473 #: /var/www/html/cacti/data_input.php:642 #: /var/www/html/cacti/data_queries.php:1075 #: /var/www/html/cacti/data_source_profiles.php:827 #: /var/www/html/cacti/data_sources.php:1283 #: /var/www/html/cacti/data_templates.php:798 #: /var/www/html/cacti/gprint_presets.php:290 #: /var/www/html/cacti/graph_templates.php:656 #: /var/www/html/cacti/graph_view.php:592 /var/www/html/cacti/graphs.php:1665 #: /var/www/html/cacti/graphs_new.php:559 /var/www/html/cacti/host.php:1486 #: /var/www/html/cacti/host_templates.php:728 #: /var/www/html/cacti/lib/api_automation.php:196 #: /var/www/html/cacti/lib/api_automation.php:460 #: /var/www/html/cacti/lib/api_automation.php:721 #: /var/www/html/cacti/lib/api_automation.php:1074 #: /var/www/html/cacti/lib/clog_webapi.php:409 #: /var/www/html/cacti/lib/html.php:1180 #: /var/www/html/cacti/lib/html_filter.php:81 #: /var/www/html/cacti/lib/html_graph.php:191 #: /var/www/html/cacti/lib/html_reports.php:1444 #: /var/www/html/cacti/lib/html_tree.php:694 /var/www/html/cacti/links.php:329 #: /var/www/html/cacti/managers.php:172 /var/www/html/cacti/managers.php:545 #: /var/www/html/cacti/managers.php:775 /var/www/html/cacti/plugins.php:323 #: /var/www/html/cacti/pollers.php:539 /var/www/html/cacti/sites.php:420 #: /var/www/html/cacti/tree.php:1687 /var/www/html/cacti/user_admin.php:2228 #: /var/www/html/cacti/user_admin.php:2594 #: /var/www/html/cacti/user_admin.php:2679 #: /var/www/html/cacti/user_admin.php:2783 #: /var/www/html/cacti/user_admin.php:2868 #: /var/www/html/cacti/user_admin.php:2953 #: /var/www/html/cacti/user_admin.php:3038 msgid "Go" msgstr "Ir" #: /var/www/html/cacti/aggregate_graphs.php:1057 #: /var/www/html/cacti/aggregate_graphs.php:1390 #: /var/www/html/cacti/automation_devices.php:469 #: /var/www/html/cacti/automation_snmp.php:853 #: /var/www/html/cacti/automation_templates.php:434 #: /var/www/html/cacti/cdef.php:751 /var/www/html/cacti/color.php:563 #: /var/www/html/cacti/data_input.php:642 #: /var/www/html/cacti/data_queries.php:1075 #: /var/www/html/cacti/data_source_profiles.php:827 #: /var/www/html/cacti/data_sources.php:1283 #: /var/www/html/cacti/data_templates.php:798 #: /var/www/html/cacti/gprint_presets.php:290 #: /var/www/html/cacti/graph_templates.php:656 #: /var/www/html/cacti/graph_view.php:592 /var/www/html/cacti/graphs.php:1665 #: /var/www/html/cacti/graphs_new.php:559 /var/www/html/cacti/host.php:1486 #: /var/www/html/cacti/host_templates.php:728 #: /var/www/html/cacti/lib/html_graph.php:191 #: /var/www/html/cacti/managers.php:172 /var/www/html/cacti/managers.php:545 #: /var/www/html/cacti/managers.php:775 /var/www/html/cacti/plugins.php:323 #: /var/www/html/cacti/pollers.php:539 /var/www/html/cacti/sites.php:420 #: /var/www/html/cacti/tree.php:1687 /var/www/html/cacti/user_admin.php:2228 #: /var/www/html/cacti/user_admin.php:2594 #: /var/www/html/cacti/user_admin.php:2679 #: /var/www/html/cacti/user_admin.php:2783 #: /var/www/html/cacti/user_admin.php:2868 #: /var/www/html/cacti/user_admin.php:2953 #: /var/www/html/cacti/user_admin.php:3038 #: /var/www/html/cacti/user_domains.php:669 #: /var/www/html/cacti/user_group_admin.php:1849 #: /var/www/html/cacti/user_group_admin.php:2202 #: /var/www/html/cacti/user_group_admin.php:2306 #: /var/www/html/cacti/user_group_admin.php:2391 #: /var/www/html/cacti/user_group_admin.php:2476 #: /var/www/html/cacti/user_group_admin.php:2561 #: /var/www/html/cacti/utilities.php:689 /var/www/html/cacti/utilities.php:1048 #: /var/www/html/cacti/utilities.php:1387 #: /var/www/html/cacti/utilities.php:1632 #: /var/www/html/cacti/utilities.php:2353 #: /var/www/html/cacti/utilities.php:2615 msgid "Set/Refresh Filters" msgstr "Definir/Refrescar Filtros" #: /var/www/html/cacti/aggregate_graphs.php:1058 #: /var/www/html/cacti/aggregate_graphs.php:1391 #: /var/www/html/cacti/aggregate_templates.php:576 #: /var/www/html/cacti/automation_devices.php:470 #: /var/www/html/cacti/automation_graph_rules.php:802 #: /var/www/html/cacti/automation_networks.php:1084 #: /var/www/html/cacti/automation_snmp.php:854 #: /var/www/html/cacti/automation_templates.php:435 #: /var/www/html/cacti/automation_tree_rules.php:748 #: /var/www/html/cacti/cdef.php:752 /var/www/html/cacti/color.php:564 #: /var/www/html/cacti/color_templates.php:474 #: /var/www/html/cacti/data_input.php:643 #: /var/www/html/cacti/data_queries.php:1076 #: /var/www/html/cacti/data_source_profiles.php:828 #: /var/www/html/cacti/data_sources.php:1284 #: /var/www/html/cacti/data_templates.php:799 #: /var/www/html/cacti/gprint_presets.php:291 #: /var/www/html/cacti/graph_templates.php:657 #: /var/www/html/cacti/graph_view.php:593 /var/www/html/cacti/graphs.php:1666 #: /var/www/html/cacti/graphs_new.php:560 /var/www/html/cacti/host.php:1487 #: /var/www/html/cacti/host_templates.php:729 #: /var/www/html/cacti/lib/api_automation.php:197 #: /var/www/html/cacti/lib/api_automation.php:461 #: /var/www/html/cacti/lib/api_automation.php:722 #: /var/www/html/cacti/lib/api_automation.php:1075 #: /var/www/html/cacti/lib/clog_webapi.php:410 #: /var/www/html/cacti/lib/html_filter.php:86 #: /var/www/html/cacti/lib/html_graph.php:192 #: /var/www/html/cacti/lib/html_graph.php:308 #: /var/www/html/cacti/lib/html_reports.php:1445 #: /var/www/html/cacti/lib/html_tree.php:695 #: /var/www/html/cacti/lib/html_tree.php:805 /var/www/html/cacti/links.php:330 #: /var/www/html/cacti/managers.php:173 /var/www/html/cacti/managers.php:546 #: /var/www/html/cacti/managers.php:776 /var/www/html/cacti/plugins.php:324 #: /var/www/html/cacti/pollers.php:540 /var/www/html/cacti/sites.php:421 #: /var/www/html/cacti/tree.php:1688 /var/www/html/cacti/user_admin.php:2229 #: /var/www/html/cacti/user_admin.php:2595 #: /var/www/html/cacti/user_admin.php:2680 #: /var/www/html/cacti/user_admin.php:2784 #: /var/www/html/cacti/user_admin.php:2869 #: /var/www/html/cacti/user_admin.php:2954 #: /var/www/html/cacti/user_admin.php:3039 #: /var/www/html/cacti/user_domains.php:670 msgid "Clear" msgstr "Restablecer" #: /var/www/html/cacti/aggregate_graphs.php:1058 #: /var/www/html/cacti/aggregate_graphs.php:1391 #: /var/www/html/cacti/automation_snmp.php:854 #: /var/www/html/cacti/automation_templates.php:435 #: /var/www/html/cacti/cdef.php:752 /var/www/html/cacti/color.php:564 #: /var/www/html/cacti/data_input.php:643 #: /var/www/html/cacti/data_queries.php:1076 #: /var/www/html/cacti/data_source_profiles.php:828 #: /var/www/html/cacti/data_sources.php:1284 #: /var/www/html/cacti/data_templates.php:799 #: /var/www/html/cacti/gprint_presets.php:291 #: /var/www/html/cacti/graph_templates.php:657 #: /var/www/html/cacti/graph_view.php:593 /var/www/html/cacti/graphs.php:1666 #: /var/www/html/cacti/graphs_new.php:560 /var/www/html/cacti/host.php:1487 #: /var/www/html/cacti/host_templates.php:729 #: /var/www/html/cacti/lib/html_graph.php:192 #: /var/www/html/cacti/lib/html_tree.php:695 #: /var/www/html/cacti/managers.php:173 /var/www/html/cacti/managers.php:546 #: /var/www/html/cacti/managers.php:776 /var/www/html/cacti/plugins.php:324 #: /var/www/html/cacti/pollers.php:540 /var/www/html/cacti/sites.php:421 #: /var/www/html/cacti/tree.php:1688 /var/www/html/cacti/user_admin.php:2229 #: /var/www/html/cacti/user_admin.php:2595 #: /var/www/html/cacti/user_admin.php:2680 #: /var/www/html/cacti/user_admin.php:2784 #: /var/www/html/cacti/user_admin.php:2869 #: /var/www/html/cacti/user_admin.php:2954 #: /var/www/html/cacti/user_admin.php:3039 #: /var/www/html/cacti/user_domains.php:670 #: /var/www/html/cacti/user_group_admin.php:1850 #: /var/www/html/cacti/user_group_admin.php:2203 #: /var/www/html/cacti/user_group_admin.php:2307 #: /var/www/html/cacti/user_group_admin.php:2392 #: /var/www/html/cacti/user_group_admin.php:2477 #: /var/www/html/cacti/user_group_admin.php:2562 #: /var/www/html/cacti/utilities.php:690 /var/www/html/cacti/utilities.php:1049 #: /var/www/html/cacti/utilities.php:1388 #: /var/www/html/cacti/utilities.php:1633 #: /var/www/html/cacti/utilities.php:2354 #: /var/www/html/cacti/utilities.php:2616 msgid "Clear Filters" msgstr "Restablecer filtros" #: /var/www/html/cacti/aggregate_graphs.php:1137 #: /var/www/html/cacti/aggregate_graphs.php:1454 #: /var/www/html/cacti/graph_view.php:636 /var/www/html/cacti/graphs.php:1036 #: /var/www/html/cacti/lib/api_automation.php:569 #: /var/www/html/cacti/user_admin.php:996 #: /var/www/html/cacti/user_group_admin.php:821 msgid "Graph Title" msgstr "Título de gráfico" #: /var/www/html/cacti/aggregate_graphs.php:1138 #: /var/www/html/cacti/aggregate_graphs.php:1455 #: /var/www/html/cacti/automation_graph_rules.php:900 #: /var/www/html/cacti/automation_tree_rules.php:841 #: /var/www/html/cacti/data_queries.php:1159 #: /var/www/html/cacti/data_sources.php:1447 #: /var/www/html/cacti/data_templates.php:908 #: /var/www/html/cacti/graph_templates.php:764 #: /var/www/html/cacti/graphs.php:1774 /var/www/html/cacti/host.php:1554 #: /var/www/html/cacti/host_templates.php:817 #: /var/www/html/cacti/lib/api_automation.php:280 #: /var/www/html/cacti/pollers.php:613 /var/www/html/cacti/sites.php:494 #: /var/www/html/cacti/tree.php:1738 /var/www/html/cacti/user_admin.php:996 #: /var/www/html/cacti/user_admin.php:1091 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_admin.php:1376 #: /var/www/html/cacti/user_admin.php:1513 #: /var/www/html/cacti/user_group_admin.php:675 #: /var/www/html/cacti/user_group_admin.php:821 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:1109 #: /var/www/html/cacti/user_group_admin.php:1243 msgid "ID" msgstr "ID" #: /var/www/html/cacti/aggregate_graphs.php:1139 msgid "Included in Aggregate" msgstr "Incluido en Agregados" #: /var/www/html/cacti/aggregate_graphs.php:1140 #: /var/www/html/cacti/aggregate_graphs.php:1457 #: /var/www/html/cacti/graph_templates.php:767 #: /var/www/html/cacti/graphs.php:1776 msgid "Size" msgstr "Tamaño" #: /var/www/html/cacti/aggregate_graphs.php:1150 #: /var/www/html/cacti/cdef.php:872 /var/www/html/cacti/color.php:725 #: /var/www/html/cacti/color.php:727 #: /var/www/html/cacti/color_templates.php:565 #: /var/www/html/cacti/data_input.php:743 #: /var/www/html/cacti/data_queries.php:1179 #: /var/www/html/cacti/data_source_profiles.php:958 #: /var/www/html/cacti/data_source_profiles.php:959 #: /var/www/html/cacti/data_sources.php:1491 #: /var/www/html/cacti/data_sources.php:1492 #: /var/www/html/cacti/data_templates.php:928 #: /var/www/html/cacti/gprint_presets.php:413 #: /var/www/html/cacti/graph_templates.php:785 #: /var/www/html/cacti/host_templates.php:836 #: /var/www/html/cacti/include/global_settings.php:415 #: /var/www/html/cacti/include/global_settings.php:662 #: /var/www/html/cacti/include/global_settings.php:1305 #: /var/www/html/cacti/install/index.php:534 #: /var/www/html/cacti/install/index.php:555 /var/www/html/cacti/tree.php:1772 #: /var/www/html/cacti/tree.php:1773 /var/www/html/cacti/user_admin.php:2297 #: /var/www/html/cacti/user_domains.php:759 #: /var/www/html/cacti/user_group_admin.php:1917 #: /var/www/html/cacti/vdef.php:866 msgid "No" msgstr "No" #: /var/www/html/cacti/aggregate_graphs.php:1150 #: /var/www/html/cacti/cdef.php:872 /var/www/html/cacti/color.php:725 #: /var/www/html/cacti/color.php:727 #: /var/www/html/cacti/color_templates.php:565 #: /var/www/html/cacti/data_input.php:743 #: /var/www/html/cacti/data_queries.php:1179 #: /var/www/html/cacti/data_source_profiles.php:957 #: /var/www/html/cacti/data_source_profiles.php:958 #: /var/www/html/cacti/data_source_profiles.php:959 #: /var/www/html/cacti/data_sources.php:1491 #: /var/www/html/cacti/data_sources.php:1492 #: /var/www/html/cacti/data_templates.php:928 #: /var/www/html/cacti/gprint_presets.php:413 #: /var/www/html/cacti/graph_templates.php:785 #: /var/www/html/cacti/host_templates.php:836 #: /var/www/html/cacti/include/global_settings.php:415 #: /var/www/html/cacti/include/global_settings.php:661 #: /var/www/html/cacti/include/global_settings.php:1305 #: /var/www/html/cacti/install/index.php:533 #: /var/www/html/cacti/install/index.php:534 #: /var/www/html/cacti/install/index.php:554 #: /var/www/html/cacti/install/index.php:555 /var/www/html/cacti/tree.php:1772 #: /var/www/html/cacti/tree.php:1773 /var/www/html/cacti/user_admin.php:2295 #: /var/www/html/cacti/user_domains.php:755 #: /var/www/html/cacti/user_domains.php:759 #: /var/www/html/cacti/user_group_admin.php:1915 #: /var/www/html/cacti/vdef.php:866 msgid "Yes" msgstr "Sí" #: /var/www/html/cacti/aggregate_graphs.php:1156 #: /var/www/html/cacti/graphs.php:1795 #: /var/www/html/cacti/lib/api_automation.php:596 msgid "No Graphs Found" msgstr "Ningún gráfico encontrado" #: /var/www/html/cacti/aggregate_graphs.php:1337 #: /var/www/html/cacti/aggregate_graphs.php:1445 #: /var/www/html/cacti/lib/functions.php:2561 msgid "Aggregate Graphs" msgstr "Gráficos Agregados" #: /var/www/html/cacti/aggregate_graphs.php:1352 #: /var/www/html/cacti/data_sources.php:1247 #: /var/www/html/cacti/graph_view.php:544 /var/www/html/cacti/graphs.php:1640 #: /var/www/html/cacti/host.php:1467 #: /var/www/html/cacti/lib/api_automation.php:441 #: /var/www/html/cacti/lib/html_graph.php:159 #: /var/www/html/cacti/lib/html_tree.php:662 #: /var/www/html/cacti/rrdcleaner.php:351 #: /var/www/html/cacti/user_admin.php:2550 #: /var/www/html/cacti/user_admin.php:2743 #: /var/www/html/cacti/user_group_admin.php:2158 #: /var/www/html/cacti/user_group_admin.php:2266 #: /var/www/html/cacti/utilities.php:1602 msgid "Template" msgstr "Plantilla" #: /var/www/html/cacti/aggregate_graphs.php:1356 #: /var/www/html/cacti/automation_devices.php:458 #: /var/www/html/cacti/automation_devices.php:488 #: /var/www/html/cacti/automation_devices.php:503 #: /var/www/html/cacti/automation_devices.php:518 #: /var/www/html/cacti/automation_graph_rules.php:757 #: /var/www/html/cacti/automation_graph_rules.php:779 #: /var/www/html/cacti/automation_tree_rules.php:725 #: /var/www/html/cacti/data_sources.php:1251 #: /var/www/html/cacti/graphs.php:1644 /var/www/html/cacti/graphs_items.php:330 #: /var/www/html/cacti/host.php:1436 /var/www/html/cacti/host.php:1454 #: /var/www/html/cacti/host.php:1471 /var/www/html/cacti/host.php:1506 #: /var/www/html/cacti/lib/api_automation.php:151 #: /var/www/html/cacti/lib/api_automation.php:169 #: /var/www/html/cacti/lib/api_automation.php:428 #: /var/www/html/cacti/lib/api_automation.php:445 #: /var/www/html/cacti/lib/api_automation.php:1029 #: /var/www/html/cacti/lib/api_automation.php:1047 #: /var/www/html/cacti/lib/html.php:1673 /var/www/html/cacti/lib/html.php:1694 #: /var/www/html/cacti/lib/html_reports.php:1423 #: /var/www/html/cacti/managers.php:512 /var/www/html/cacti/managers.php:765 #: /var/www/html/cacti/user_admin.php:2554 #: /var/www/html/cacti/user_admin.php:2747 #: /var/www/html/cacti/user_group_admin.php:2162 #: /var/www/html/cacti/user_group_admin.php:2270 #: /var/www/html/cacti/utilities.php:666 /var/www/html/cacti/utilities.php:1342 #: /var/www/html/cacti/utilities.php:1606 #: /var/www/html/cacti/utilities.php:1651 #: /var/www/html/cacti/utilities.php:2326 #: /var/www/html/cacti/utilities.php:2577 #: /var/www/html/cacti/utilities.php:2590 msgid "Any" msgstr "Cualquiera" #: /var/www/html/cacti/aggregate_graphs.php:1357 #: /var/www/html/cacti/aggregate_graphs.php:1469 #: /var/www/html/cacti/automation_graph_rules.php:910 #: /var/www/html/cacti/automation_graph_rules.php:911 #: /var/www/html/cacti/automation_networks.php:421 #: /var/www/html/cacti/automation_networks.php:633 #: /var/www/html/cacti/automation_tree_rules.php:853 #: /var/www/html/cacti/data_sources.php:848 #: /var/www/html/cacti/data_sources.php:1252 #: /var/www/html/cacti/data_sources.php:1477 #: /var/www/html/cacti/data_templates.php:930 #: /var/www/html/cacti/graph_view.php:805 /var/www/html/cacti/graphs.php:358 #: /var/www/html/cacti/graphs.php:1312 /var/www/html/cacti/graphs.php:1321 #: /var/www/html/cacti/graphs.php:1645 /var/www/html/cacti/graphs_items.php:331 #: /var/www/html/cacti/graphs_items.php:443 /var/www/html/cacti/host.php:1049 #: /var/www/html/cacti/host.php:1437 /var/www/html/cacti/host.php:1472 #: /var/www/html/cacti/include/global_arrays.php:356 #: /var/www/html/cacti/include/global_arrays.php:409 #: /var/www/html/cacti/include/global_arrays.php:485 #: /var/www/html/cacti/include/global_arrays.php:620 #: /var/www/html/cacti/include/global_arrays.php:643 #: /var/www/html/cacti/include/global_arrays.php:1371 #: /var/www/html/cacti/include/global_form.php:392 #: /var/www/html/cacti/include/global_form.php:699 #: /var/www/html/cacti/include/global_form.php:707 #: /var/www/html/cacti/include/global_form.php:715 #: /var/www/html/cacti/include/global_form.php:753 #: /var/www/html/cacti/include/global_form.php:760 #: /var/www/html/cacti/include/global_form.php:786 #: /var/www/html/cacti/include/global_form.php:815 #: /var/www/html/cacti/include/global_form.php:823 #: /var/www/html/cacti/include/global_form.php:1005 #: /var/www/html/cacti/include/global_form.php:1014 #: /var/www/html/cacti/include/global_form.php:2058 #: /var/www/html/cacti/include/global_form.php:2100 #: /var/www/html/cacti/include/global_settings.php:462 #: /var/www/html/cacti/include/global_settings.php:470 #: /var/www/html/cacti/include/global_settings.php:935 #: /var/www/html/cacti/include/global_settings.php:1375 #: /var/www/html/cacti/lib/api_automation.php:152 #: /var/www/html/cacti/lib/api_automation.php:429 #: /var/www/html/cacti/lib/api_automation.php:446 #: /var/www/html/cacti/lib/api_automation.php:584 #: /var/www/html/cacti/lib/api_automation.php:1030 #: /var/www/html/cacti/lib/html.php:1674 /var/www/html/cacti/lib/html.php:1692 #: /var/www/html/cacti/lib/html_form.php:318 #: /var/www/html/cacti/lib/html_graph.php:386 #: /var/www/html/cacti/lib/html_reports.php:311 #: /var/www/html/cacti/lib/html_reports.php:359 #: /var/www/html/cacti/lib/html_reports.php:371 #: /var/www/html/cacti/lib/html_reports.php:380 #: /var/www/html/cacti/lib/html_reports.php:390 #: /var/www/html/cacti/lib/html_reports.php:850 #: /var/www/html/cacti/lib/html_tree.php:884 #: /var/www/html/cacti/settings.php:208 /var/www/html/cacti/settings.php:227 #: /var/www/html/cacti/settings.php:253 /var/www/html/cacti/user_admin.php:2555 #: /var/www/html/cacti/user_admin.php:2748 #: /var/www/html/cacti/user_group_admin.php:2163 #: /var/www/html/cacti/user_group_admin.php:2271 #: /var/www/html/cacti/utilities.php:1607 msgid "None" msgstr "Ninguno" #: /var/www/html/cacti/aggregate_graphs.php:1454 msgid "The title for the Aggregate Graphs" msgstr "Título para los gráficos Agregados" #: /var/www/html/cacti/aggregate_graphs.php:1455 msgid "The internal database identifier for this object" msgstr "El identificar interno de base de datos para este objecto" #: /var/www/html/cacti/aggregate_graphs.php:1456 #: /var/www/html/cacti/graphs.php:1040 msgid "Aggregate Template" msgstr "Plantilla de Agregados" #: /var/www/html/cacti/aggregate_graphs.php:1456 msgid "The Aggregate Template that this Aggregate Graphs is based upon" msgstr "" "La Plantilla de Agregados en la que estos gráficos Agregados están basados" #: /var/www/html/cacti/aggregate_graphs.php:1475 msgid "No Aggregate Graphs Found" msgstr "Gráficos Agregados no encontrados" #: /var/www/html/cacti/aggregate_items.php:346 msgid "Override Values for Graph Item" msgstr "Reemplazar valores para items de gráficos" #: /var/www/html/cacti/aggregate_items.php:357 #: /var/www/html/cacti/lib/api_aggregate.php:1480 msgid "Override this Value" msgstr "Sobreescribir este valor" #: /var/www/html/cacti/aggregate_templates.php:307 msgid "Click 'Continue' to Delete the following Aggregate Graph Template(s)." msgstr "" "Haga click en 'Continuar' para borrar las siguientes Plantillas de gráficos " "Agregados." #: /var/www/html/cacti/aggregate_templates.php:312 msgid "Delete Color Template(s)" msgstr "Eliminar plantilla(s) de color(es)" #: /var/www/html/cacti/aggregate_templates.php:315 msgid "You must select at least one Aggregate Graph Template." msgstr "Debes seleccionar al menos una plantilla de gráfico Agregado." #: /var/www/html/cacti/aggregate_templates.php:351 #, php-format msgid "Aggregate Template [edit: %s]" msgstr "Plantilla de Agregados [editar: %s]" #: /var/www/html/cacti/aggregate_templates.php:353 msgid "Aggregate Template [new]" msgstr "Plantilla de Agregados [nueva]" #: /var/www/html/cacti/aggregate_templates.php:531 #: /var/www/html/cacti/aggregate_templates.php:630 #: /var/www/html/cacti/lib/functions.php:2543 msgid "Aggregate Templates" msgstr "Plantillas de Agregados" #: /var/www/html/cacti/aggregate_templates.php:544 #: /var/www/html/cacti/automation_templates.php:418 #: /var/www/html/cacti/automation_templates.php:501 #: /var/www/html/cacti/color_templates.php:549 #: /var/www/html/cacti/include/global_arrays.php:745 #: /var/www/html/cacti/include/global_arrays.php:803 #: /var/www/html/cacti/install/index.php:877 #: /var/www/html/cacti/user_admin.php:2846 #: /var/www/html/cacti/user_group_admin.php:2369 msgid "Templates" msgstr "Plantillas" #: /var/www/html/cacti/aggregate_templates.php:570 #: /var/www/html/cacti/cdef.php:746 /var/www/html/cacti/color.php:558 #: /var/www/html/cacti/color_templates.php:468 #: /var/www/html/cacti/data_sources.php:1319 #: /var/www/html/cacti/gprint_presets.php:285 #: /var/www/html/cacti/graph_templates.php:651 /var/www/html/cacti/vdef.php:682 msgid "Has Graphs" msgstr "Contiene gráficos" #: /var/www/html/cacti/aggregate_templates.php:639 #: /var/www/html/cacti/color_templates.php:546 msgid "Template Title" msgstr "Título de Plantilla" #: /var/www/html/cacti/aggregate_templates.php:640 msgid "" "Aggregate Templates that are in use can not be Deleted. In use is defined " "as being referenced by an Aggregate." msgstr "" "Plantillas de Agregados que estan siendo utilizados no pueden ser borradas. " "En uso significa sendo referenciado por un Agregado." #: /var/www/html/cacti/aggregate_templates.php:640 #: /var/www/html/cacti/cdef.php:855 /var/www/html/cacti/color.php:702 #: /var/www/html/cacti/color_templates.php:547 #: /var/www/html/cacti/data_input.php:725 #: /var/www/html/cacti/data_queries.php:1160 #: /var/www/html/cacti/data_source_profiles.php:931 #: /var/www/html/cacti/data_sources.php:1449 #: /var/www/html/cacti/data_templates.php:909 #: /var/www/html/cacti/gprint_presets.php:394 #: /var/www/html/cacti/graph_templates.php:765 #: /var/www/html/cacti/host_templates.php:818 /var/www/html/cacti/vdef.php:848 msgid "Deletable" msgstr "Eliminable" #: /var/www/html/cacti/aggregate_templates.php:641 #: /var/www/html/cacti/cdef.php:856 /var/www/html/cacti/color.php:703 #: /var/www/html/cacti/data_queries.php:917 #: /var/www/html/cacti/data_queries.php:1161 #: /var/www/html/cacti/gprint_presets.php:395 #: /var/www/html/cacti/graph_templates.php:766 /var/www/html/cacti/vdef.php:849 msgid "Graphs Using" msgstr "Gráficos en uso" #: /var/www/html/cacti/aggregate_templates.php:642 #: /var/www/html/cacti/graph_view.php:636 #: /var/www/html/cacti/include/global_arrays.php:705 #: /var/www/html/cacti/include/global_arrays.php:1041 #: /var/www/html/cacti/include/global_form.php:1296 #: /var/www/html/cacti/include/global_form.php:1524 #: /var/www/html/cacti/lib/html_reports.php:376 #: /var/www/html/cacti/tree.php:1443 msgid "Graph Template" msgstr "Plantilla de gráficos" #: /var/www/html/cacti/aggregate_templates.php:664 msgid "No Aggregate Templates Found" msgstr "No se encontraron plantillas de Agregados" #: /var/www/html/cacti/auth_changepassword.php:93 msgid "You cannot use a previously entered password!" msgstr "No puedes usar una contraseña usada anteriormente!" #: /var/www/html/cacti/auth_changepassword.php:110 #: /var/www/html/cacti/auth_changepassword.php:120 msgid "Your current password is not correct. Please try again." msgstr "Tu contraseña actual NO es correcta. Por favor intenta nuevamente." #: /var/www/html/cacti/auth_changepassword.php:115 #: /var/www/html/cacti/auth_changepassword.php:125 msgid "" "Your new password cannot be the same as the old password. Please try again." msgstr "" "Tu contraseña actual no puede ser la misma que tu contraseña vieja. Por " "favor intent nuevamente." #: /var/www/html/cacti/auth_changepassword.php:131 msgid "Your new passwords do not match, please retype." msgstr "Tus contraseñas nuevas no coinciden, por favor re ingresalas." #: /var/www/html/cacti/auth_changepassword.php:224 msgid "Forced password change" msgstr "Forzar cambio de contraseña" #: /var/www/html/cacti/auth_changepassword.php:228 msgid "Password requirements include:" msgstr "Los requisitos de contraseña incluyen:" #: /var/www/html/cacti/auth_changepassword.php:232 #, php-format msgid "Must be at least %d characters in length" msgstr "Debe ser al menos %d catacteres de longitud" #: /var/www/html/cacti/auth_changepassword.php:236 msgid "Must include mixed case" msgstr "Debe incluir mayúsculas y minúsculas" #: /var/www/html/cacti/auth_changepassword.php:240 msgid "Must include at least 1 number" msgstr "Debe incluir al menos 1 número" #: /var/www/html/cacti/auth_changepassword.php:244 msgid "Must include at least 1 special character" msgstr "Debe incluir al menos 1 character especial" #: /var/www/html/cacti/auth_changepassword.php:248 #, php-format msgid "Cannot be reused for %d password changes" msgstr "No puede ser re utilizada por %d cambios de contraseña" #: /var/www/html/cacti/auth_changepassword.php:258 #: /var/www/html/cacti/auth_changepassword.php:284 #: /var/www/html/cacti/include/global_form.php:1441 #: /var/www/html/cacti/lib/functions.php:1837 msgid "Change Password" msgstr "Cambiar contraseña" #: /var/www/html/cacti/auth_changepassword.php:290 msgid "Please enter your current password and your new
    Cacti password." msgstr "" "Por favor, ingresa tu contraseña actual y tu nueva
    contraseña de Cacti." #: /var/www/html/cacti/auth_changepassword.php:295 msgid "Current password" msgstr "Contraseña actual" #: /var/www/html/cacti/auth_changepassword.php:299 msgid "New password" msgstr "Nueva contraseña" #: /var/www/html/cacti/auth_changepassword.php:303 msgid "Confirm new password" msgstr "Confirmar nueva contraseña" #: /var/www/html/cacti/auth_changepassword.php:307 #: /var/www/html/cacti/auth_profile.php:399 #: /var/www/html/cacti/auth_profile.php:430 #: /var/www/html/cacti/graphs_new.php:561 #: /var/www/html/cacti/lib/html_form.php:1138 #: /var/www/html/cacti/lib/html_form.php:1147 #: /var/www/html/cacti/lib/html_graph.php:194 #: /var/www/html/cacti/lib/html_tree.php:697 #: /var/www/html/cacti/settings.php:295 msgid "Save" msgstr "Guardar" #: /var/www/html/cacti/auth_changepassword.php:316 #: /var/www/html/cacti/auth_login.php:737 #, php-format msgid "Version %1$s | %2$s" msgstr "Versión %1$s | %2$s" #: /var/www/html/cacti/auth_login.php:50 msgid "" "Web Basic Authentication configured, but no username was passed from the web " "server. Please make sure you have authentication enabled on the web server." msgstr "" "Se ha configurado autenticación web básica, pero no se ha recibido ningún " "usuario desde el servidor web. Asegúrate de que la autenticación este " "habilitada en el servidor web." #: /var/www/html/cacti/auth_login.php:97 #, php-format msgid "" "%s authenticated by Web Server, but both Template and Guest Users are not " "defined in Cacti." msgstr "" "%s autenticado por el servidor web, pero la plantilla y los usuarios " "invitados no han sido definidos en Cacti." #: /var/www/html/cacti/auth_login.php:116 #: /var/www/html/cacti/auth_login.php:446 #, php-format msgid "LDAP Search Error: %s" msgstr "Error de búsqueda LDAP: %s" #: /var/www/html/cacti/auth_login.php:143 #: /var/www/html/cacti/auth_login.php:510 #, php-format msgid "LDAP Error: %s" msgstr "Error LDAP: %s" #: /var/www/html/cacti/auth_login.php:260 #: /var/www/html/cacti/auth_login.php:502 #, php-format msgid "Template user %s does not exist." msgstr "El usuario de plantilla %s no existe." #: /var/www/html/cacti/auth_login.php:275 #, php-format msgid "Guest user %s does not exist." msgstr "El usuario invitado %s no existe." #: /var/www/html/cacti/auth_login.php:310 msgid "Access Denied, user account disabled." msgstr "Acceso denegado, cuenta de usuario deshabilitada." #: /var/www/html/cacti/auth_login.php:396 msgid "Access Denied, please contact you Cacti Administrator." msgstr "Acceso denegado, póngase en contacto con su administrador de Cacti." #: /var/www/html/cacti/auth_login.php:605 msgid "Login to Cacti" msgstr "Ingresar a Cacti" #: /var/www/html/cacti/auth_login.php:639 msgid "User Login" msgstr "Usuario" #: /var/www/html/cacti/auth_login.php:651 msgid "Enter your Username and Password below" msgstr "Ingresa tu usuario y contraseña a continuacion" #: /var/www/html/cacti/auth_login.php:657 #: /var/www/html/cacti/auth_login.php:660 #: /var/www/html/cacti/include/global_settings.php:1222 #: /var/www/html/cacti/lib/functions.php:3855 msgid "Username" msgstr "Nombre de Usuario" #: /var/www/html/cacti/auth_login.php:665 #: /var/www/html/cacti/include/global_form.php:1408 #: /var/www/html/cacti/lib/functions.php:3856 msgid "Password" msgstr "Contraseña" #: /var/www/html/cacti/auth_login.php:677 #: /var/www/html/cacti/include/global_settings.php:1616 #: /var/www/html/cacti/lib/auth.php:299 /var/www/html/cacti/lib/auth.php:311 #: /var/www/html/cacti/lib/auth.php:322 msgid "Local" msgstr "Local" #: /var/www/html/cacti/auth_login.php:681 #: /var/www/html/cacti/include/global_arrays.php:631 #: /var/www/html/cacti/lib/auth.php:323 msgid "LDAP" msgstr "LDAP" #: /var/www/html/cacti/auth_login.php:692 #: /var/www/html/cacti/user_admin.php:2278 #: /var/www/html/cacti/user_group_admin.php:675 msgid "Realm" msgstr "Permisos" #: /var/www/html/cacti/auth_login.php:709 msgid "Keep me signed in" msgstr "Mantenerme conectado" #: /var/www/html/cacti/auth_login.php:715 msgid "Login" msgstr "Ingresar" #: /var/www/html/cacti/auth_login.php:728 msgid "Invalid User Name/Password Please Retype" msgstr "Usuario/Contraseña inválidos, por favor vuelve a ingresarlos" #: /var/www/html/cacti/auth_login.php:731 msgid "User Account Disabled" msgstr "Cuenta de usuario deshabilitada" #: /var/www/html/cacti/auth_profile.php:150 msgid "User Account Details" msgstr "Detalles de cuenta de usuario" #: /var/www/html/cacti/auth_profile.php:161 #: /var/www/html/cacti/include/global_arrays.php:614 #: /var/www/html/cacti/include/global_session.php:101 #: /var/www/html/cacti/include/global_settings.php:1943 #: /var/www/html/cacti/lib/html.php:1559 /var/www/html/cacti/lib/html.php:1581 msgid "Tree View" msgstr "Vista de árbol" #: /var/www/html/cacti/auth_profile.php:165 #: /var/www/html/cacti/include/global_arrays.php:615 #: /var/www/html/cacti/include/global_session.php:102 #: /var/www/html/cacti/lib/html.php:1566 /var/www/html/cacti/lib/html.php:1590 msgid "List View" msgstr "Vista de lista" #: /var/www/html/cacti/auth_profile.php:169 #: /var/www/html/cacti/include/global_arrays.php:616 #: /var/www/html/cacti/include/global_session.php:103 #: /var/www/html/cacti/lib/html.php:1573 msgid "Preview View" msgstr "Vista previa" #: /var/www/html/cacti/auth_profile.php:182 #: /var/www/html/cacti/include/global_form.php:1384 #: /var/www/html/cacti/user_admin.php:2275 msgid "User Name" msgstr "Nombre de Usuario" #: /var/www/html/cacti/auth_profile.php:183 #: /var/www/html/cacti/include/global_form.php:1385 msgid "The login name for this user." msgstr "El nombre de inicio de sesión para este usuario." #: /var/www/html/cacti/auth_profile.php:190 #: /var/www/html/cacti/include/global_form.php:1392 #: /var/www/html/cacti/include/global_settings.php:1257 #: /var/www/html/cacti/user_admin.php:2276 #: /var/www/html/cacti/user_domains.php:488 #: /var/www/html/cacti/user_group_admin.php:675 #: /var/www/html/cacti/utilities.php:773 msgid "Full Name" msgstr "Nombre completo" #: /var/www/html/cacti/auth_profile.php:191 #: /var/www/html/cacti/include/global_form.php:1393 msgid "" "A more descriptive name for this user, that can include spaces or special " "characters." msgstr "" "Un nombre mas descriptivo para este usuario, puede incluir espacios o " "caracteres especiales." #: /var/www/html/cacti/auth_profile.php:198 #: /var/www/html/cacti/include/global_form.php:1400 msgid "Email Address" msgstr "Direcciones de correo" #: /var/www/html/cacti/auth_profile.php:199 msgid "An Email Address you be reached at." msgstr "Una dirección de correo electrónico." #: /var/www/html/cacti/auth_profile.php:206 #: /var/www/html/cacti/auth_profile.php:208 msgid "Clear Private Data" msgstr "Borrar datos privados" #: /var/www/html/cacti/auth_profile.php:207 msgid "Clear Private Data including Column sizing." msgstr "Borrar datos privados, incluyendo tamaño de columna." #: /var/www/html/cacti/auth_profile.php:217 #: /var/www/html/cacti/auth_profile.php:219 msgid "Logout Everywhere" msgstr "Cerrar sesión en todas partes" #: /var/www/html/cacti/auth_profile.php:218 msgid "Clear all your Login Session Tokens." msgstr "Borrar todos tus tokens de inicio de sesión." #: /var/www/html/cacti/auth_profile.php:239 #: /var/www/html/cacti/user_admin.php:1942 #: /var/www/html/cacti/user_group_admin.php:1671 msgid "User Settings" msgstr "Configuraciones de Usuario" #: /var/www/html/cacti/auth_profile.php:296 msgid "Private Data Cleared" msgstr "Datos privados borrados" #: /var/www/html/cacti/auth_profile.php:296 msgid "Your Private Data has been cleared." msgstr "Tus datos privados han sido borrados." #: /var/www/html/cacti/auth_profile.php:316 msgid "All your login sessions have been cleared." msgstr "Todas tus sesiones de inicio de sesión han sido borradas." #: /var/www/html/cacti/auth_profile.php:316 msgid "User Sessions Cleared" msgstr "Sesiones de usuario borradas" #: /var/www/html/cacti/automation_devices.php:31 msgid "Add Device" msgstr "Agregar dispositivo" #: /var/www/html/cacti/automation_devices.php:39 #: /var/www/html/cacti/automation_devices.php:271 #: /var/www/html/cacti/automation_devices.php:389 #: /var/www/html/cacti/automation_devices.php:399 #: /var/www/html/cacti/automation_devices.php:621 #: /var/www/html/cacti/automation_devices.php:622 #: /var/www/html/cacti/host.php:1511 #: /var/www/html/cacti/lib/api_automation.php:174 #: /var/www/html/cacti/lib/api_automation.php:1052 #: /var/www/html/cacti/lib/html_utility.php:837 msgid "Down" msgstr "Caído" #: /var/www/html/cacti/automation_devices.php:40 #: /var/www/html/cacti/automation_devices.php:271 #: /var/www/html/cacti/automation_devices.php:391 #: /var/www/html/cacti/automation_devices.php:401 #: /var/www/html/cacti/automation_devices.php:621 #: /var/www/html/cacti/automation_devices.php:622 #: /var/www/html/cacti/host.php:1510 #: /var/www/html/cacti/lib/api_automation.php:173 #: /var/www/html/cacti/lib/api_automation.php:1051 #: /var/www/html/cacti/lib/html_utility.php:843 msgid "Up" msgstr "Arriba" #: /var/www/html/cacti/automation_devices.php:90 msgid "Added manually through device automation interface." msgstr "" "Agregado manualmente a través de la interfase the automatización de " "dispositivos." #: /var/www/html/cacti/automation_devices.php:106 msgid "Added to Cacti" msgstr "Agregado a Cacti" #: /var/www/html/cacti/automation_devices.php:106 #: /var/www/html/cacti/automation_devices.php:108 #: /var/www/html/cacti/data_sources.php:846 #: /var/www/html/cacti/graph_view.php:636 /var/www/html/cacti/graphs.php:1317 #: /var/www/html/cacti/include/global_arrays.php:701 #: /var/www/html/cacti/include/global_arrays.php:746 #: /var/www/html/cacti/include/global_arrays.php:1487 #: /var/www/html/cacti/lib/api_automation.php:424 #: /var/www/html/cacti/lib/functions.php:3850 #: /var/www/html/cacti/lib/html.php:1669 /var/www/html/cacti/lib/html.php:1699 #: /var/www/html/cacti/lib/html_reports.php:366 #: /var/www/html/cacti/lib/html_tree.php:354 #: /var/www/html/cacti/lib/html_tree.php:420 #: /var/www/html/cacti/utilities.php:1457 msgid "Device" msgstr "Dispositivo" #: /var/www/html/cacti/automation_devices.php:108 msgid "Not Added to Cacti" msgstr "No agregado a Cacti" #: /var/www/html/cacti/automation_devices.php:177 msgid "Click 'Continue' to add the following Discovered device(s)." msgstr "" "Haga click en 'Continuar' para agregar el/los siguiente(s) dispositivo(s) " "descubierto(s)." #: /var/www/html/cacti/automation_devices.php:183 #: /var/www/html/cacti/pollers.php:603 msgid "Pollers" msgstr "Sondas" #: /var/www/html/cacti/automation_devices.php:187 msgid "Select Template" msgstr "Seleccionar Plantilla" #: /var/www/html/cacti/automation_devices.php:193 #: /var/www/html/cacti/automation_templates.php:307 #: /var/www/html/cacti/automation_templates.php:511 msgid "Availability Method" msgstr "Método de disponibilidad" #: /var/www/html/cacti/automation_devices.php:199 msgid "Add Device(s)" msgstr "Agregar dispositivo(s)" #: /var/www/html/cacti/automation_devices.php:202 msgid "You must select at least one Device." msgstr "Debes seleccionar al menos un dispositivo." #: /var/www/html/cacti/automation_devices.php:239 #: /var/www/html/cacti/automation_devices.php:529 #: /var/www/html/cacti/host.php:1423 /var/www/html/cacti/host.php:1517 #: /var/www/html/cacti/host.php:1617 #: /var/www/html/cacti/include/global_arrays.php:733 #: /var/www/html/cacti/include/global_arrays.php:785 #: /var/www/html/cacti/lib/api_automation.php:180 #: /var/www/html/cacti/lib/api_automation.php:475 #: /var/www/html/cacti/lib/functions.php:2147 #: /var/www/html/cacti/pollers.php:617 /var/www/html/cacti/sites.php:495 #: /var/www/html/cacti/tree.php:1746 /var/www/html/cacti/user_admin.php:1224 #: /var/www/html/cacti/user_admin.php:2761 #: /var/www/html/cacti/user_group_admin.php:958 #: /var/www/html/cacti/user_group_admin.php:2284 #: /var/www/html/cacti/utilities.php:276 msgid "Devices" msgstr "Dispositivos" #: /var/www/html/cacti/automation_devices.php:248 msgid "Device Name" msgstr "Nombre de dispositivo" #: /var/www/html/cacti/automation_devices.php:249 msgid "IP" msgstr "IP" #: /var/www/html/cacti/automation_devices.php:250 msgid "SNMP Name" msgstr "Nombre SNMP" #: /var/www/html/cacti/automation_devices.php:251 #: /var/www/html/cacti/include/global_settings.php:1612 msgid "Location" msgstr "Ubicación" #: /var/www/html/cacti/automation_devices.php:252 msgid "Contact" msgstr "Contacto" #: /var/www/html/cacti/automation_devices.php:253 #: /var/www/html/cacti/include/global_form.php:943 #: /var/www/html/cacti/include/global_form.php:979 #: /var/www/html/cacti/include/global_form.php:1260 #: /var/www/html/cacti/include/global_form.php:1603 #: /var/www/html/cacti/install/index.php:878 #: /var/www/html/cacti/lib/api_automation.php:276 #: /var/www/html/cacti/lib/api_automation.php:1168 #: /var/www/html/cacti/managers.php:216 /var/www/html/cacti/user_admin.php:1091 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:1903 msgid "Description" msgstr "Descripción" #: /var/www/html/cacti/automation_devices.php:254 #: /var/www/html/cacti/automation_devices.php:499 msgid "OS" msgstr "SO" #: /var/www/html/cacti/automation_devices.php:255 #: /var/www/html/cacti/host.php:1584 #: /var/www/html/cacti/include/global_arrays.php:357 msgid "Uptime" msgstr "Uptime" #: /var/www/html/cacti/automation_devices.php:256 #: /var/www/html/cacti/automation_devices.php:514 #: /var/www/html/cacti/utilities.php:1652 msgid "SNMP" msgstr "SNMP" #: /var/www/html/cacti/automation_devices.php:257 #: /var/www/html/cacti/automation_devices.php:484 #: /var/www/html/cacti/automation_graph_rules.php:775 #: /var/www/html/cacti/automation_networks.php:964 #: /var/www/html/cacti/automation_tree_rules.php:721 #: /var/www/html/cacti/data_sources.php:1272 #: /var/www/html/cacti/data_templates.php:913 /var/www/html/cacti/host.php:715 #: /var/www/html/cacti/host.php:814 /var/www/html/cacti/host.php:1502 #: /var/www/html/cacti/host.php:1572 #: /var/www/html/cacti/lib/api_automation.php:165 #: /var/www/html/cacti/lib/api_automation.php:278 #: /var/www/html/cacti/lib/api_automation.php:568 #: /var/www/html/cacti/lib/api_automation.php:1043 #: /var/www/html/cacti/lib/api_automation.php:1171 #: /var/www/html/cacti/lib/html_reports.php:1419 #: /var/www/html/cacti/managers.php:218 /var/www/html/cacti/plugins.php:294 #: /var/www/html/cacti/plugins.php:388 /var/www/html/cacti/pollers.php:615 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_group_admin.php:966 msgid "Status" msgstr "Estado" #: /var/www/html/cacti/automation_devices.php:258 msgid "Last Check" msgstr "Ultimo control" #: /var/www/html/cacti/automation_devices.php:285 #: /var/www/html/cacti/automation_devices.php:613 msgid "Not Detected" msgstr "No detectado" #: /var/www/html/cacti/automation_devices.php:303 #: /var/www/html/cacti/host.php:1660 msgid "No Devices Found" msgstr "Ningún dispositivo encontrado" #: /var/www/html/cacti/automation_devices.php:439 msgid "Discovery Filters" msgstr "Filtros de descubrimiento" #: /var/www/html/cacti/automation_devices.php:454 msgid "Network" msgstr "Red" #: /var/www/html/cacti/automation_devices.php:470 msgid "Reset fields to defaults" msgstr "Resetear campos por defecto" #: /var/www/html/cacti/automation_devices.php:475 #: /var/www/html/cacti/color.php:570 /var/www/html/cacti/host.php:1488 #: /var/www/html/cacti/lib/html_form.php:1153 msgid "Export" msgstr "Exportar" #: /var/www/html/cacti/automation_devices.php:475 msgid "Export to a file" msgstr "Exportar a archivo" #: /var/www/html/cacti/automation_devices.php:476 #: /var/www/html/cacti/lib/clog_webapi.php:151 #: /var/www/html/cacti/lib/clog_webapi.php:411 #: /var/www/html/cacti/managers.php:777 msgid "Purge" msgstr "Purgar" #: /var/www/html/cacti/automation_devices.php:476 msgid "Purge Discovered Devices" msgstr "Purgar dispositivos descubiertos" #: /var/www/html/cacti/automation_devices.php:643 #: /var/www/html/cacti/automation_networks.php:1030 #: /var/www/html/cacti/automation_snmp.php:709 #: /var/www/html/cacti/automation_snmp.php:710 #: /var/www/html/cacti/automation_snmp.php:711 #: /var/www/html/cacti/automation_snmp.php:712 #: /var/www/html/cacti/automation_snmp.php:713 #: /var/www/html/cacti/automation_snmp.php:714 #: /var/www/html/cacti/lib/html.php:963 /var/www/html/cacti/user_admin.php:2290 #: /var/www/html/cacti/utilities.php:419 /var/www/html/cacti/utilities.php:801 #: /var/www/html/cacti/utilities.php:2070 #: /var/www/html/cacti/utilities.php:2167 #: /var/www/html/cacti/utilities.php:2175 #: /var/www/html/cacti/utilities.php:2178 #: /var/www/html/cacti/utilities.php:2181 #: /var/www/html/cacti/utilities.php:2187 #: /var/www/html/cacti/utilities.php:2416 msgid "N/A" msgstr "N/A" #: /var/www/html/cacti/automation_graph_rules.php:29 #: /var/www/html/cacti/automation_snmp.php:30 #: /var/www/html/cacti/automation_tree_rules.php:29 #: /var/www/html/cacti/cdef.php:30 /var/www/html/cacti/color_templates.php:29 #: /var/www/html/cacti/data_templates.php:34 #: /var/www/html/cacti/graph_templates.php:34 /var/www/html/cacti/graphs.php:63 #: /var/www/html/cacti/host_templates.php:31 #: /var/www/html/cacti/include/global_arrays.php:1284 #: /var/www/html/cacti/vdef.php:30 msgid "Duplicate" msgstr "Duplicar" #: /var/www/html/cacti/automation_graph_rules.php:30 #: /var/www/html/cacti/automation_networks.php:33 #: /var/www/html/cacti/automation_tree_rules.php:30 #: /var/www/html/cacti/data_sources.php:38 /var/www/html/cacti/host.php:39 #: /var/www/html/cacti/include/global_arrays.php:1285 #: /var/www/html/cacti/include/global_settings.php:1180 #: /var/www/html/cacti/links.php:29 /var/www/html/cacti/managers.php:29 #: /var/www/html/cacti/managers.php:35 /var/www/html/cacti/plugins.php:29 #: /var/www/html/cacti/pollers.php:31 /var/www/html/cacti/user_admin.php:30 #: /var/www/html/cacti/user_domains.php:31 #: /var/www/html/cacti/user_domains.php:404 #: /var/www/html/cacti/user_group_admin.php:32 msgid "Enable" msgstr "Habilitar" #: /var/www/html/cacti/automation_graph_rules.php:31 #: /var/www/html/cacti/automation_networks.php:32 #: /var/www/html/cacti/automation_tree_rules.php:31 #: /var/www/html/cacti/data_sources.php:39 /var/www/html/cacti/host.php:40 #: /var/www/html/cacti/include/global_arrays.php:1286 #: /var/www/html/cacti/links.php:30 /var/www/html/cacti/managers.php:30 #: /var/www/html/cacti/managers.php:34 /var/www/html/cacti/plugins.php:30 #: /var/www/html/cacti/pollers.php:30 /var/www/html/cacti/user_admin.php:31 #: /var/www/html/cacti/user_domains.php:30 #: /var/www/html/cacti/user_group_admin.php:33 msgid "Disable" msgstr "Deshabilitar" #: /var/www/html/cacti/automation_graph_rules.php:256 msgid "Press 'Continue' to delete the following Graph Rules." msgstr "Presione 'Continuar' para borrar la siguiente Regla de gráficos." #: /var/www/html/cacti/automation_graph_rules.php:263 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Graph Rules." msgstr "" "Haga click en 'Continuar' para duplicar la(s) siguiente(s) Regla(s). " "Opcionalmente, puedes cambiar el formato del título para la nueva Regla de " "gráficos." #: /var/www/html/cacti/automation_graph_rules.php:265 #: /var/www/html/cacti/automation_tree_rules.php:262 #: /var/www/html/cacti/graphs.php:827 /var/www/html/cacti/graphs.php:838 msgid "Title Format" msgstr "Formato de título" #: /var/www/html/cacti/automation_graph_rules.php:265 #: /var/www/html/cacti/automation_tree_rules.php:262 msgid "rule_name" msgstr "nombre_regla" #: /var/www/html/cacti/automation_graph_rules.php:271 #: /var/www/html/cacti/automation_tree_rules.php:268 msgid "Click 'Continue' to enable the following Rule(s)." msgstr "Haga click en 'Continuar' para habilitar la siguiente Regla(s)." #: /var/www/html/cacti/automation_graph_rules.php:273 #: /var/www/html/cacti/automation_tree_rules.php:270 msgid "Make sure, that those rules have successfully been tested!" msgstr "Asegurese que, esas reglas han sido probadas satisfactoriamente!" #: /var/www/html/cacti/automation_graph_rules.php:279 #: /var/www/html/cacti/automation_tree_rules.php:276 msgid "Click 'Continue' to disable the following Rule(s)." msgstr "Haga click en 'Continuar' para deshabilitar la siguiente Regla(s)." #: /var/www/html/cacti/automation_graph_rules.php:286 #: /var/www/html/cacti/automation_tree_rules.php:283 msgid "You must select at least one Rule." msgstr "Debes seleccionar al menos una regla." #: /var/www/html/cacti/automation_graph_rules.php:289 #: /var/www/html/cacti/automation_tree_rules.php:286 msgid "Apply requested action" msgstr "Aplicar la acción solicitada" #: /var/www/html/cacti/automation_graph_rules.php:419 #: /var/www/html/cacti/automation_tree_rules.php:471 msgid "Are You Sure?" msgstr "Estas seguro?" #: /var/www/html/cacti/automation_graph_rules.php:419 #, php-format msgid "Are you sure you want to delete the Rule '%s'?" msgstr "Esta seguro de que queres borrar la regla '%s'?" #: /var/www/html/cacti/automation_graph_rules.php:538 #, php-format msgid "Rule Selection [edit: %s]" msgstr "Selección de regla [edit: %s]" #: /var/www/html/cacti/automation_graph_rules.php:544 msgid "Rule Selection [new]" msgstr "Selección de regla [nueva]" #: /var/www/html/cacti/automation_graph_rules.php:554 #: /var/www/html/cacti/automation_graph_rules.php:569 #: /var/www/html/cacti/automation_graph_rules.php:585 #: /var/www/html/cacti/automation_tree_rules.php:379 #: /var/www/html/cacti/automation_tree_rules.php:529 msgid "Don't Show" msgstr "No mostrar" #: /var/www/html/cacti/automation_graph_rules.php:554 msgid "Rule Details." msgstr "Detalles de la regla." #: /var/www/html/cacti/automation_graph_rules.php:569 msgid "Matching Devices." msgstr "Coincidencia de Dispositivos." #: /var/www/html/cacti/automation_graph_rules.php:585 msgid "Matching Objects." msgstr "Coincidencia de Objetos." #: /var/www/html/cacti/automation_graph_rules.php:625 msgid "Device Selection Criteria" msgstr "Criterio de selección de Dispositivos" #: /var/www/html/cacti/automation_graph_rules.php:631 msgid "Graph Creation Criteria" msgstr "Criterio de creación de gráficos" #: /var/www/html/cacti/automation_graph_rules.php:738 #: /var/www/html/cacti/automation_graph_rules.php:785 #: /var/www/html/cacti/automation_graph_rules.php:890 #: /var/www/html/cacti/include/global_arrays.php:756 #: /var/www/html/cacti/lib/functions.php:2597 msgid "Graph Rules" msgstr "Reglas de gráficos" #: /var/www/html/cacti/automation_graph_rules.php:753 #: /var/www/html/cacti/automation_graph_rules.php:901 #: /var/www/html/cacti/include/global_arrays.php:1044 #: /var/www/html/cacti/include/global_form.php:1534 #: /var/www/html/cacti/include/global_form.php:2137 msgid "Data Query" msgstr "Consulta de datos" #: /var/www/html/cacti/automation_graph_rules.php:780 #: /var/www/html/cacti/automation_graph_rules.php:903 #: /var/www/html/cacti/automation_graph_rules.php:919 #: /var/www/html/cacti/automation_networks.php:496 #: /var/www/html/cacti/automation_tree_rules.php:726 #: /var/www/html/cacti/automation_tree_rules.php:846 #: /var/www/html/cacti/automation_tree_rules.php:864 #: /var/www/html/cacti/data_sources.php:1277 /var/www/html/cacti/host.php:1507 #: /var/www/html/cacti/include/global_arrays.php:664 #: /var/www/html/cacti/include/global_form.php:1416 #: /var/www/html/cacti/include/global_settings.php:356 #: /var/www/html/cacti/lib/api_automation.php:170 #: /var/www/html/cacti/lib/api_automation.php:1048 #: /var/www/html/cacti/lib/html_reports.php:1424 #: /var/www/html/cacti/lib/html_reports.php:1516 #: /var/www/html/cacti/lib/html_reports.php:1527 #: /var/www/html/cacti/lib/html_reports.php:1563 #: /var/www/html/cacti/links.php:380 /var/www/html/cacti/managers.php:243 #: /var/www/html/cacti/managers.php:627 /var/www/html/cacti/user_admin.php:1091 #: /var/www/html/cacti/user_admin.php:1103 #: /var/www/html/cacti/user_admin.php:2277 #: /var/www/html/cacti/user_domains.php:343 #: /var/www/html/cacti/user_domains.php:744 #: /var/www/html/cacti/user_group_admin.php:87 #: /var/www/html/cacti/user_group_admin.php:675 #: /var/www/html/cacti/user_group_admin.php:690 #: /var/www/html/cacti/user_group_admin.php:1907 #: /var/www/html/cacti/utilities.php:2202 msgid "Enabled" msgstr "Habilitado" #: /var/www/html/cacti/automation_graph_rules.php:781 #: /var/www/html/cacti/automation_graph_rules.php:919 #: /var/www/html/cacti/automation_networks.php:979 #: /var/www/html/cacti/automation_tree_rules.php:727 #: /var/www/html/cacti/automation_tree_rules.php:864 #: /var/www/html/cacti/data_sources.php:1278 #: /var/www/html/cacti/data_templates.php:932 /var/www/html/cacti/host.php:1508 #: /var/www/html/cacti/include/global_arrays.php:663 #: /var/www/html/cacti/include/global_arrays.php:1212 #: /var/www/html/cacti/include/global_arrays.php:1495 #: /var/www/html/cacti/include/global_settings.php:356 #: /var/www/html/cacti/include/global_settings.php:1056 #: /var/www/html/cacti/include/global_settings.php:1070 #: /var/www/html/cacti/include/global_settings.php:1082 #: /var/www/html/cacti/include/global_settings.php:1107 #: /var/www/html/cacti/include/global_settings.php:1121 #: /var/www/html/cacti/include/global_settings.php:1180 #: /var/www/html/cacti/include/global_settings.php:1792 #: /var/www/html/cacti/lib/api_automation.php:171 #: /var/www/html/cacti/lib/api_automation.php:1049 #: /var/www/html/cacti/lib/html_reports.php:1425 #: /var/www/html/cacti/lib/html_reports.php:1563 #: /var/www/html/cacti/lib/html_utility.php:833 #: /var/www/html/cacti/managers.php:243 /var/www/html/cacti/managers.php:627 #: /var/www/html/cacti/pollers.php:40 /var/www/html/cacti/user_admin.php:1103 #: /var/www/html/cacti/user_domains.php:404 #: /var/www/html/cacti/user_group_admin.php:690 #: /var/www/html/cacti/utilities.php:2202 msgid "Disabled" msgstr "Deshabilitado" #: /var/www/html/cacti/automation_graph_rules.php:899 #: /var/www/html/cacti/automation_tree_rules.php:840 msgid "Rule Name" msgstr "Nombre de regla" #: /var/www/html/cacti/automation_graph_rules.php:899 msgid "The name of this rule." msgstr "El nombre de esta regla." #: /var/www/html/cacti/automation_graph_rules.php:900 msgid "" "The internal database ID for this rule. Useful in performing debugging and " "automation." msgstr "" "ID de base de datos interno para esta regla. Util cuando realizamos " "depuración y automatizacion." #: /var/www/html/cacti/automation_graph_rules.php:902 #: /var/www/html/cacti/include/global_form.php:1776 #: /var/www/html/cacti/include/global_form.php:1855 #: /var/www/html/cacti/include/global_form.php:1953 #: /var/www/html/cacti/include/global_form.php:2148 msgid "Graph Type" msgstr "Tipo de gráficos" #: /var/www/html/cacti/automation_graph_rules.php:925 msgid "No Graph Rules Found" msgstr "Ninguna regla de gráficos encontrada" #: /var/www/html/cacti/automation_networks.php:34 msgid "Discover Now" msgstr "Ejecutar ahora" #: /var/www/html/cacti/automation_networks.php:35 msgid "Cancel Discovery" msgstr "Cancelar descubrimiento" #: /var/www/html/cacti/automation_networks.php:185 #, php-format msgid "ERROR: You must specificy the day of the week. Disabling Network %s!." msgstr "ERROR: debes especificar el día de la semana. Deshabilitando red %s!." #: /var/www/html/cacti/automation_networks.php:191 #, php-format msgid "" "ERROR: You must specificy both the Months and Days of Month. Disabling " "Network %s!." msgstr "" "ERROR: debes especificar ambos, meses y días de meses. Deshabilitando red %s!" #: /var/www/html/cacti/automation_networks.php:197 #, php-format msgid "" "ERROR: You must specificy the Months, Weeks of Months, and Days of Week. " "Disabling Network %s!." msgstr "" "ERROR: debes especificar los meses, semanas de meses, y días de la semana. " "Deshabilitando %s!" #: /var/www/html/cacti/automation_networks.php:215 #, php-format msgid "ERROR: Network '%s' is Invalid." msgstr "ERROR: red '%s' es inválida." #: /var/www/html/cacti/automation_networks.php:312 msgid "Click 'Continue' to delete the following Network(s)." msgstr "Haga click en 'Continuar' para eliminar la(s) siguiente(s) red(es)." #: /var/www/html/cacti/automation_networks.php:319 msgid "Click 'Continue' to enable the following Network(s)." msgstr "Haga click en 'Continuar' para habilitar la(s) siguiente(s) red(es)." #: /var/www/html/cacti/automation_networks.php:326 msgid "Click 'Continue' to disable the following Network(s)." msgstr "" "Haga click en 'Continuar' para deshabilitar la(s) siguiente(s) red(es)." #: /var/www/html/cacti/automation_networks.php:333 msgid "Click 'Continue' to discover the following Network(s)." msgstr "Haga click en 'Continuar' para descubrir la(s) siguiente(s) red(es)." #: /var/www/html/cacti/automation_networks.php:340 msgid "Click 'Continue' to cancel on going Network Discovery(s)." msgstr "" "Haga click en 'Continuar' para cancelar el proceso de descubrimiento de " "redes." #: /var/www/html/cacti/automation_networks.php:347 msgid "You must select at least one Network." msgstr "Debes seleccionar al menos una red." #: /var/www/html/cacti/automation_networks.php:378 #: /var/www/html/cacti/automation_networks.php:952 #: /var/www/html/cacti/tree.php:1223 msgid "Manual" msgstr "Manual" #: /var/www/html/cacti/automation_networks.php:379 #: /var/www/html/cacti/automation_networks.php:953 #: /var/www/html/cacti/include/global_arrays.php:528 #: /var/www/html/cacti/include/global_arrays.php:1509 msgid "Daily" msgstr "Diario" #: /var/www/html/cacti/automation_networks.php:380 #: /var/www/html/cacti/automation_networks.php:954 #: /var/www/html/cacti/include/global_arrays.php:1510 msgid "Weekly" msgstr "Semanal" #: /var/www/html/cacti/automation_networks.php:381 #: /var/www/html/cacti/automation_networks.php:955 #: /var/www/html/cacti/include/global_arrays.php:1511 msgid "Monthly" msgstr "Mensual" #: /var/www/html/cacti/automation_networks.php:382 #: /var/www/html/cacti/automation_networks.php:956 msgid "Monthly on Day" msgstr "Mensualmente el día" #: /var/www/html/cacti/automation_networks.php:386 #, php-format msgid "Network Discovery Range [edit: %s]" msgstr "Rango de descubrimiento de red [editar:%s]" #: /var/www/html/cacti/automation_networks.php:388 msgid "Network Discovery Range [new]" msgstr "Rango de descubrimiento de redes [nuevo]" #: /var/www/html/cacti/automation_networks.php:395 #: /var/www/html/cacti/include/global_form.php:1824 #: /var/www/html/cacti/include/global_form.php:1920 #: /var/www/html/cacti/include/global_settings.php:51 #: /var/www/html/cacti/lib/html_reports.php:30 msgid "General Settings" msgstr "Opciones generales" #: /var/www/html/cacti/automation_networks.php:400 #: /var/www/html/cacti/automation_snmp.php:649 #: /var/www/html/cacti/data_input.php:468 #: /var/www/html/cacti/data_input.php:502 #: /var/www/html/cacti/data_queries.php:593 #: /var/www/html/cacti/data_queries.php:689 #: /var/www/html/cacti/data_queries.php:915 #: /var/www/html/cacti/data_source_profiles.php:548 #: /var/www/html/cacti/graph_templates.php:423 #: /var/www/html/cacti/include/global_form.php:35 #: /var/www/html/cacti/include/global_form.php:101 #: /var/www/html/cacti/include/global_form.php:158 #: /var/www/html/cacti/include/global_form.php:178 #: /var/www/html/cacti/include/global_form.php:219 #: /var/www/html/cacti/include/global_form.php:343 #: /var/www/html/cacti/include/global_form.php:370 #: /var/www/html/cacti/include/global_form.php:477 #: /var/www/html/cacti/include/global_form.php:903 #: /var/www/html/cacti/include/global_form.php:935 #: /var/www/html/cacti/include/global_form.php:1232 #: /var/www/html/cacti/include/global_form.php:1252 #: /var/www/html/cacti/include/global_form.php:1322 #: /var/www/html/cacti/include/global_form.php:1350 #: /var/www/html/cacti/include/global_form.php:2031 #: /var/www/html/cacti/include/global_form.php:2129 #: /var/www/html/cacti/include/global_form.php:2174 #: /var/www/html/cacti/install/index.php:473 #: /var/www/html/cacti/install/index.php:550 #: /var/www/html/cacti/install/index.php:878 #: /var/www/html/cacti/lib/vdef.php:74 /var/www/html/cacti/managers.php:591 #: /var/www/html/cacti/pollers.php:52 /var/www/html/cacti/sites.php:40 #: /var/www/html/cacti/user_admin.php:1091 #: /var/www/html/cacti/user_domains.php:319 #: /var/www/html/cacti/utilities.php:479 /var/www/html/cacti/utilities.php:2396 msgid "Name" msgstr "Nombre" #: /var/www/html/cacti/automation_networks.php:401 msgid "Give this Network a meaningful name." msgstr "Dar un nombre significativo a esta red." #: /var/www/html/cacti/automation_networks.php:404 msgid "New Network Discovery Range" msgstr "Nuevo rango de descubrimiento de redes" #: /var/www/html/cacti/automation_networks.php:408 #: /var/www/html/cacti/automation_networks.php:961 #: /var/www/html/cacti/host.php:1450 msgid "Data Collector" msgstr "Recolector de datos" #: /var/www/html/cacti/automation_networks.php:409 #: /var/www/html/cacti/include/global_form.php:995 msgid "" "Choose the Cacti Data Collector/Poller to be used to gather data from this " "Device." msgstr "" "Elija el Recolector de datos/Sonda a ser usado para obtener datos de este " "dispositivo." #: /var/www/html/cacti/automation_networks.php:416 msgid "Associated Site" msgstr "Sitio Asociadas" #: /var/www/html/cacti/automation_networks.php:417 msgid "" "Choose the Cacti Site that you wish to associate discovered Devices with." msgstr "" "Elija el sitio de Cacti al que deseas asociar los dispositivos descubiertos." #: /var/www/html/cacti/automation_networks.php:425 msgid "Subnet Range" msgstr "Rango de subred" #: /var/www/html/cacti/automation_networks.php:426 msgid "" "Enter valid Network Ranges separated by commas. You may use an IP address, " "a Network range such as 192.168.1.0/24 or 192.168.1.0/255.255.255.0, or " "using wildcards such as 192.168.*.*" msgstr "" "Ingrese rangos de redes válidos separados por comas. Puedes usar una " "dirección IP, un rango de redes como 192.168.1.0/24 o " "192.168.1.0/255.255.255.0, o usar comodines como 192.168.*.*" #: /var/www/html/cacti/automation_networks.php:435 msgid "Total IP Addresses" msgstr "Direcciones IP Total" #: /var/www/html/cacti/automation_networks.php:436 msgid "Total addressable IP Addresses in this Network Range." msgstr "Direcciones IP Total en este rango de red." #: /var/www/html/cacti/automation_networks.php:441 msgid "Alternate DNS Servers" msgstr "Servidores DNS alternativos" #: /var/www/html/cacti/automation_networks.php:442 msgid "" "A space delimited list of alternate DNS Servers to use for DNS resolution. " "If blank, the poller OS will be used to resolve DNS names." msgstr "" "Una lista delimitada por espacios de servidores DNS a usar para la " "resolución de nombres DNS. Si se deja en blanco, el SO de la Sonda será " "usado para resolver nombres DNS." #: /var/www/html/cacti/automation_networks.php:445 msgid "Enter IPs or FQDNs of DNS Servers" msgstr "Ingresa IPs o FQDN de los servidores DNS" #: /var/www/html/cacti/automation_networks.php:449 msgid "Schedule Type" msgstr "Tipo de tarea programada" #: /var/www/html/cacti/automation_networks.php:450 msgid "Define the collection frequency." msgstr "Definir la frecuencia de recolección." #: /var/www/html/cacti/automation_networks.php:457 msgid "Discovery Threads" msgstr "Procesos simultáneos de descubrimiento" #: /var/www/html/cacti/automation_networks.php:458 msgid "Define the number of threads to use for discovering this Network Range." msgstr "" "Define el número de procesos simultáneos a usar para descubrir este rango de " "redes." #: /var/www/html/cacti/automation_networks.php:461 #, php-format msgid "%d Thread" msgstr "%d proceso" #: /var/www/html/cacti/automation_networks.php:462 #: /var/www/html/cacti/automation_networks.php:463 #: /var/www/html/cacti/automation_networks.php:464 #: /var/www/html/cacti/automation_networks.php:465 #: /var/www/html/cacti/automation_networks.php:466 #: /var/www/html/cacti/automation_networks.php:467 #: /var/www/html/cacti/automation_networks.php:468 #: /var/www/html/cacti/automation_networks.php:469 #: /var/www/html/cacti/automation_networks.php:470 #: /var/www/html/cacti/automation_networks.php:471 #: /var/www/html/cacti/automation_networks.php:472 #: /var/www/html/cacti/include/global_arrays.php:597 #: /var/www/html/cacti/include/global_arrays.php:598 #: /var/www/html/cacti/include/global_arrays.php:599 #: /var/www/html/cacti/include/global_arrays.php:600 #: /var/www/html/cacti/include/global_arrays.php:601 #, php-format msgid "%d Threads" msgstr "%d procesos simultáneos" #: /var/www/html/cacti/automation_networks.php:478 msgid "Run Limit" msgstr "Límite de ejecución" #: /var/www/html/cacti/automation_networks.php:479 msgid "After the selected Run Limit, the discovery process will be terminated." msgstr "" "Después del límite de ejecucón seleccionado, el proceso de descubrimiento " "será terminado." #: /var/www/html/cacti/automation_networks.php:482 #, php-format msgid "%d Minute" msgstr "%d Minuto" #: /var/www/html/cacti/automation_networks.php:483 #: /var/www/html/cacti/automation_networks.php:484 #: /var/www/html/cacti/automation_networks.php:485 #: /var/www/html/cacti/automation_networks.php:486 #: /var/www/html/cacti/data_sources.php:1113 #: /var/www/html/cacti/include/global_arrays.php:518 #: /var/www/html/cacti/include/global_arrays.php:519 #: /var/www/html/cacti/include/global_arrays.php:520 #: /var/www/html/cacti/include/global_arrays.php:521 #: /var/www/html/cacti/include/global_arrays.php:551 #: /var/www/html/cacti/include/global_arrays.php:552 #: /var/www/html/cacti/include/global_arrays.php:553 #: /var/www/html/cacti/include/global_arrays.php:554 #: /var/www/html/cacti/include/global_arrays.php:555 #: /var/www/html/cacti/include/global_arrays.php:556 #: /var/www/html/cacti/include/global_arrays.php:897 #: /var/www/html/cacti/include/global_arrays.php:898 #: /var/www/html/cacti/include/global_arrays.php:1219 #: /var/www/html/cacti/include/global_arrays.php:1223 #: /var/www/html/cacti/include/global_arrays.php:1231 #: /var/www/html/cacti/include/global_arrays.php:1232 #: /var/www/html/cacti/include/global_arrays.php:1254 #: /var/www/html/cacti/include/global_arrays.php:1255 #: /var/www/html/cacti/include/global_arrays.php:1256 #: /var/www/html/cacti/include/global_arrays.php:1257 #: /var/www/html/cacti/include/global_arrays.php:1258 #: /var/www/html/cacti/include/global_arrays.php:1269 #: /var/www/html/cacti/include/global_settings.php:1123 #: /var/www/html/cacti/include/global_settings.php:1124 #: /var/www/html/cacti/include/global_settings.php:1125 #: /var/www/html/cacti/include/global_settings.php:1126 #: /var/www/html/cacti/include/global_settings.php:1127 #: /var/www/html/cacti/include/global_settings.php:1870 #, php-format msgid "%d Minutes" msgstr "%d Minutos" #: /var/www/html/cacti/automation_networks.php:487 #: /var/www/html/cacti/include/global_arrays.php:566 #: /var/www/html/cacti/include/global_arrays.php:1123 #, php-format msgid "%d Hour" msgstr "%d hora" #: /var/www/html/cacti/automation_networks.php:488 #: /var/www/html/cacti/automation_networks.php:489 #: /var/www/html/cacti/automation_networks.php:490 #: /var/www/html/cacti/data_source_profiles.php:736 #: /var/www/html/cacti/include/global_arrays.php:523 #: /var/www/html/cacti/include/global_arrays.php:524 #: /var/www/html/cacti/include/global_arrays.php:525 #: /var/www/html/cacti/include/global_arrays.php:526 #: /var/www/html/cacti/include/global_arrays.php:527 #: /var/www/html/cacti/include/global_arrays.php:558 #: /var/www/html/cacti/include/global_arrays.php:559 #: /var/www/html/cacti/include/global_arrays.php:560 #: /var/www/html/cacti/include/global_arrays.php:561 #: /var/www/html/cacti/include/global_arrays.php:567 #: /var/www/html/cacti/include/global_arrays.php:568 #: /var/www/html/cacti/include/global_arrays.php:569 #: /var/www/html/cacti/include/global_arrays.php:570 #: /var/www/html/cacti/include/global_arrays.php:1124 #: /var/www/html/cacti/include/global_arrays.php:1125 #: /var/www/html/cacti/include/global_arrays.php:1126 #: /var/www/html/cacti/include/global_arrays.php:1127 #: /var/www/html/cacti/include/global_arrays.php:1171 #: /var/www/html/cacti/include/global_arrays.php:1172 #: /var/www/html/cacti/include/global_arrays.php:1173 #: /var/www/html/cacti/include/global_arrays.php:1174 #: /var/www/html/cacti/include/global_arrays.php:1175 #: /var/www/html/cacti/include/global_arrays.php:1192 #: /var/www/html/cacti/include/global_arrays.php:1193 #: /var/www/html/cacti/include/global_arrays.php:1194 #: /var/www/html/cacti/include/global_arrays.php:1195 #: /var/www/html/cacti/include/global_arrays.php:1196 #: /var/www/html/cacti/include/global_settings.php:1129 #: /var/www/html/cacti/include/global_settings.php:1130 #: /var/www/html/cacti/include/global_settings.php:1131 #: /var/www/html/cacti/include/global_settings.php:1132 #, php-format msgid "%d Hours" msgstr "%d horas" #: /var/www/html/cacti/automation_networks.php:497 msgid "Enable this Network Range Enabled." msgstr "Habilita este rango de redes." #: /var/www/html/cacti/automation_networks.php:502 msgid "Enable NetBIOS" msgstr "Habilitar NetBIOS" #: /var/www/html/cacti/automation_networks.php:503 msgid "Use NetBIOS to attempt to result the hostname of up hosts." msgstr "Usa NetBIOS para intentar resolver nombres de equipos." #: /var/www/html/cacti/automation_networks.php:509 msgid "Automatically Add to Cacti" msgstr "Agregar a Cacti automáticamente" #: /var/www/html/cacti/automation_networks.php:510 msgid "" "For any newly discovered Devices that are reachable using SNMP and who match " "a Device Rule, add them to Cacti." msgstr "" "Agregar a Cacti los dispositivos recién descubiertos que son accesibles por " "SNMP y que coincidan con una regla de dispositivos." #: /var/www/html/cacti/automation_networks.php:515 msgid "Rerun Data Queries" msgstr "Volver a ejecutar consultas de datos" #: /var/www/html/cacti/automation_networks.php:516 msgid "" "If a device, previously added to Cacti, is found, rerun its data queries." msgstr "" "Si un dispositivo, previamente agregado a Cacti, es encontrado, vuelve a " "ejecutar las consultas de datos." #: /var/www/html/cacti/automation_networks.php:521 msgid "Discovery Timing" msgstr "Tiempo de descubrimiento" #: /var/www/html/cacti/automation_networks.php:526 msgid "Starting Date/Time" msgstr "Fecha y hora de inicio" #: /var/www/html/cacti/automation_networks.php:527 msgid "What time will this Network discover item start?" msgstr "A qué hora comenzará el descubrimiento de red?" #: /var/www/html/cacti/automation_networks.php:535 msgid "Rerun Every" msgstr "Volver a ejecutar cada" #: /var/www/html/cacti/automation_networks.php:536 msgid "Rerun discovery for this Network Range every X." msgstr "Volver a ejecutar el descubrimiento de este rango de redes cada X." #: /var/www/html/cacti/automation_networks.php:551 msgid "Days of Week" msgstr "Días de la semana" #: /var/www/html/cacti/automation_networks.php:552 #: /var/www/html/cacti/automation_networks.php:610 msgid "What Day(s) of the week will this Network Range be discovered." msgstr "Qué día(s) de la semana será descubierto este rango de redes." #: /var/www/html/cacti/automation_networks.php:554 #: /var/www/html/cacti/automation_networks.php:612 #: /var/www/html/cacti/include/global_arrays.php:1551 msgid "Sunday" msgstr "Domingo" #: /var/www/html/cacti/automation_networks.php:555 #: /var/www/html/cacti/automation_networks.php:613 #: /var/www/html/cacti/include/global_arrays.php:1552 msgid "Monday" msgstr "Lunes" #: /var/www/html/cacti/automation_networks.php:556 #: /var/www/html/cacti/automation_networks.php:614 #: /var/www/html/cacti/include/global_arrays.php:1553 msgid "Tuesday" msgstr "Martes" #: /var/www/html/cacti/automation_networks.php:557 #: /var/www/html/cacti/automation_networks.php:615 #: /var/www/html/cacti/include/global_arrays.php:1554 msgid "Wednesday" msgstr "Miercoles" #: /var/www/html/cacti/automation_networks.php:558 #: /var/www/html/cacti/automation_networks.php:616 #: /var/www/html/cacti/include/global_arrays.php:1555 msgid "Thursday" msgstr "Jueves" #: /var/www/html/cacti/automation_networks.php:559 #: /var/www/html/cacti/automation_networks.php:617 #: /var/www/html/cacti/include/global_arrays.php:1556 msgid "Friday" msgstr "Viernes" #: /var/www/html/cacti/automation_networks.php:560 #: /var/www/html/cacti/automation_networks.php:618 #: /var/www/html/cacti/include/global_arrays.php:1557 msgid "Saturday" msgstr "Sábado" #: /var/www/html/cacti/automation_networks.php:567 msgid "Months of Year" msgstr "Meses del año" #: /var/www/html/cacti/automation_networks.php:568 msgid "What Months(s) of the Year will this Network Range be discovered." msgstr "Qué meses del año será descubierto este rango de redes." #: /var/www/html/cacti/automation_networks.php:570 #: /var/www/html/cacti/include/global_arrays.php:1521 msgid "January" msgstr "Enero" #: /var/www/html/cacti/automation_networks.php:571 #: /var/www/html/cacti/include/global_arrays.php:1522 msgid "February" msgstr "Febrero" #: /var/www/html/cacti/automation_networks.php:572 #: /var/www/html/cacti/include/global_arrays.php:1523 msgid "March" msgstr "Marzo" #: /var/www/html/cacti/automation_networks.php:573 #: /var/www/html/cacti/include/global_arrays.php:1524 msgid "April" msgstr "Abril" #: /var/www/html/cacti/automation_networks.php:574 #: /var/www/html/cacti/include/global_arrays.php:1525 msgid "May" msgstr "Mayo" #: /var/www/html/cacti/automation_networks.php:575 #: /var/www/html/cacti/include/global_arrays.php:1526 msgid "June" msgstr "Junio" #: /var/www/html/cacti/automation_networks.php:576 #: /var/www/html/cacti/include/global_arrays.php:1527 msgid "July" msgstr "Julio" #: /var/www/html/cacti/automation_networks.php:577 #: /var/www/html/cacti/include/global_arrays.php:1528 msgid "August" msgstr "Agosto" #: /var/www/html/cacti/automation_networks.php:578 #: /var/www/html/cacti/include/global_arrays.php:1529 msgid "September" msgstr "Septiembre" #: /var/www/html/cacti/automation_networks.php:579 #: /var/www/html/cacti/include/global_arrays.php:1530 msgid "October" msgstr "Octubre" #: /var/www/html/cacti/automation_networks.php:580 #: /var/www/html/cacti/include/global_arrays.php:1531 msgid "November" msgstr "Noviembre" #: /var/www/html/cacti/automation_networks.php:581 #: /var/www/html/cacti/include/global_arrays.php:1532 msgid "December" msgstr "Diciembre" #: /var/www/html/cacti/automation_networks.php:588 msgid "Days of Month" msgstr "Dias del mes" #: /var/www/html/cacti/automation_networks.php:589 msgid "What Day(s) of the Month will this Network Range be discovered." msgstr "Qué día(s) del mes será descubierto este rango de redes." #: /var/www/html/cacti/automation_networks.php:590 #: /var/www/html/cacti/automation_networks.php:602 msgid "Last" msgstr "Ultimo" #: /var/www/html/cacti/automation_networks.php:596 msgid "Week(s) of Month" msgstr "Semana(s) del Mes" #: /var/www/html/cacti/automation_networks.php:597 msgid "What Week(s) of the Month will this Network Range be discovered." msgstr "Qué semana(s) del mes será descubierto este rango de redes." #: /var/www/html/cacti/automation_networks.php:599 msgid "First" msgstr "Primer" #: /var/www/html/cacti/automation_networks.php:600 msgid "Second" msgstr "Segundo" #: /var/www/html/cacti/automation_networks.php:601 msgid "Third" msgstr "Tercero" #: /var/www/html/cacti/automation_networks.php:609 msgid "Day(s) of Week" msgstr "Dia(s) de la semana" #: /var/www/html/cacti/automation_networks.php:625 msgid "Reachability Settings" msgstr "Opciones de accesibilidad" #: /var/www/html/cacti/automation_networks.php:630 #: /var/www/html/cacti/include/global_arrays.php:758 #: /var/www/html/cacti/include/global_form.php:1035 #: /var/www/html/cacti/include/global_form.php:1635 msgid "SNMP Options" msgstr "Opciones SNMP" #: /var/www/html/cacti/automation_networks.php:631 msgid "Select the SNMP Options to use for discovery of this Network Range." msgstr "" "Selecciona las opciones de SNMP para usar en el descubrimiento de este rango " "de redes." #: /var/www/html/cacti/automation_networks.php:637 #: /var/www/html/cacti/include/global_form.php:1160 msgid "Ping Method" msgstr "Método de Ping" #: /var/www/html/cacti/automation_networks.php:638 msgid "The type of ping packet to send." msgstr "El tipo de paquete de ping a enviar." #: /var/www/html/cacti/automation_networks.php:646 #: /var/www/html/cacti/include/global_form.php:1170 #: /var/www/html/cacti/include/global_settings.php:585 msgid "Ping Port" msgstr "Puerto de Ping" #: /var/www/html/cacti/automation_networks.php:648 #: /var/www/html/cacti/include/global_form.php:1172 msgid "TCP or UDP port to attempt connection." msgstr "Puerto TCP o UDP para intentar la conexión." #: /var/www/html/cacti/automation_networks.php:654 #: /var/www/html/cacti/include/global_form.php:1178 #: /var/www/html/cacti/include/global_settings.php:593 msgid "Ping Timeout Value" msgstr "Valor de tiempo de espera de ping" #: /var/www/html/cacti/automation_networks.php:655 #: /var/www/html/cacti/include/global_form.php:1179 #: /var/www/html/cacti/include/global_settings.php:594 msgid "" "The timeout value to use for host ICMP and UDP pinging. This host SNMP " "timeout value applies for SNMP pings." msgstr "" "El tiempo de espera que se usará para hacer ping ICMP y UDP al equipo. Este " "valor de tiempo de espera SNMP del equipo aplica para los pings SNMP." #: /var/www/html/cacti/automation_networks.php:663 #: /var/www/html/cacti/include/global_form.php:1187 #: /var/www/html/cacti/include/global_settings.php:601 msgid "Ping Retry Count" msgstr "Número de reintentos de Ping" #: /var/www/html/cacti/automation_networks.php:664 #: /var/www/html/cacti/include/global_form.php:1188 msgid "" "After an initial failure, the number of ping retries Cacti will attempt " "before failing." msgstr "" "Después del primer fallido, cuantos reintentos de ping intentará Cacti antes " "de fallar." #: /var/www/html/cacti/automation_networks.php:704 msgid "Select the days(s) of the week" msgstr "Selecciona el/los día(s) de la semana" #: /var/www/html/cacti/automation_networks.php:714 msgid "Select the month(s) of the year" msgstr "Selecciona el/los mes(es) del año" #: /var/www/html/cacti/automation_networks.php:724 msgid "Select the day(s) of the month" msgstr "Selecciona el/los día(s) del mes" #: /var/www/html/cacti/automation_networks.php:734 msgid "Select the week(s) of the month" msgstr "Selecciona el/las semana(s) del mes" #: /var/www/html/cacti/automation_networks.php:744 msgid "Select the day(s) of the week" msgstr "Selecciona el/los día(s) de la semana" #: /var/www/html/cacti/automation_networks.php:817 #: /var/www/html/cacti/automation_networks.php:834 msgid "every X Days" msgstr "cada X días" #: /var/www/html/cacti/automation_networks.php:817 #: /var/www/html/cacti/automation_networks.php:834 msgid "every X Weeks" msgstr "cada X semanas" #: /var/www/html/cacti/automation_networks.php:818 msgid "every X Days." msgstr "cada X días." #: /var/www/html/cacti/automation_networks.php:818 #: /var/www/html/cacti/automation_networks.php:835 msgid "every X." msgstr "cada X." #: /var/www/html/cacti/automation_networks.php:835 msgid "every X Weeks." msgstr "cada X semanas." #: /var/www/html/cacti/automation_networks.php:933 msgid "Network Filters" msgstr "Filtros de red" #: /var/www/html/cacti/automation_networks.php:943 #: /var/www/html/cacti/automation_networks.php:1067 #: /var/www/html/cacti/include/global_arrays.php:753 msgid "Networks" msgstr "Redes" #: /var/www/html/cacti/automation_networks.php:960 msgid "Network Name" msgstr "Nombre" #: /var/www/html/cacti/automation_networks.php:962 msgid "Schedule" msgstr "Tarea programada" #: /var/www/html/cacti/automation_networks.php:963 msgid "Total IPs" msgstr "IPs Totales" #: /var/www/html/cacti/automation_networks.php:964 msgid "The Current Status of this Networks Discovery" msgstr "El estado actual de este descubrimiento de redes" #: /var/www/html/cacti/automation_networks.php:965 msgid "Pending/Running/Done" msgstr "Pendiente/Ejecutando/Terminado" #: /var/www/html/cacti/automation_networks.php:965 msgid "Progress" msgstr "Progreso" #: /var/www/html/cacti/automation_networks.php:966 msgid "Up/SNMP Hosts" msgstr "Equipos SNMP" #: /var/www/html/cacti/automation_networks.php:967 msgid "Threads" msgstr "Procesos simultáneos" #: /var/www/html/cacti/automation_networks.php:968 msgid "Last Runtime" msgstr "Ultima ejecución" #: /var/www/html/cacti/automation_networks.php:969 msgid "Next Start" msgstr "Próximo inicio" #: /var/www/html/cacti/automation_networks.php:970 msgid "Last Started" msgstr "Ultima vez iniciado" #: /var/www/html/cacti/automation_networks.php:995 #: /var/www/html/cacti/pollers.php:37 /var/www/html/cacti/utilities.php:2007 msgid "Running" msgstr "Ejecutando" #: /var/www/html/cacti/automation_networks.php:1015 #: /var/www/html/cacti/pollers.php:38 /var/www/html/cacti/utilities.php:2006 msgid "Idle" msgstr "Ocioso" #: /var/www/html/cacti/automation_networks.php:1036 msgid "No Networks Found" msgstr "No se encontraron redes" #: /var/www/html/cacti/automation_networks.php:1084 msgid "Clear Filtered" msgstr "Borrar filtrado" #: /var/www/html/cacti/automation_snmp.php:225 msgid "You must select at least one SNMP Option." msgstr "Debes seleccionar al menos una opción de SNMP." #: /var/www/html/cacti/automation_snmp.php:233 msgid "Click 'Continue' to delete the following SNMP Option(s)." msgstr "" "Haga click en 'Continuar' para eliminar la(s) siguiente(s) opcion(es) SNMP." #: /var/www/html/cacti/automation_snmp.php:240 msgid "" "Click 'Continue' to duplicate the following SNMP Options. You can optionally " "change the title format for the new SNMP Options." msgstr "" "Haga click en 'Continuar' para duplicar las siguientes opciones SNMP. " "Opcionalmente puedes cambiar el formato de título para las nuevas opciones " "SNMP." #: /var/www/html/cacti/automation_snmp.php:242 msgid "Name Format" msgstr "Nombre de formato" #: /var/www/html/cacti/automation_snmp.php:242 msgid "name" msgstr "nombre" #: /var/www/html/cacti/automation_snmp.php:351 msgid "Click 'Continue' to delete the following SNMP Option Item." msgstr "" "Haga click en 'Continuar' para eliminar el siguiente item de la opción SNMP." #: /var/www/html/cacti/automation_snmp.php:352 msgid "SNMP Option:" msgstr "Opción SNMP:" #: /var/www/html/cacti/automation_snmp.php:353 #, php-format msgid "SNMP Version: %s" msgstr "Versión SNMP: %s" #: /var/www/html/cacti/automation_snmp.php:354 #, php-format msgid "SNMP Community/Username: %s" msgstr "Comunidad/usuario de SNMP: %s" #: /var/www/html/cacti/automation_snmp.php:360 msgid "Remove SNMP Item" msgstr "Remover item SNMP" #: /var/www/html/cacti/automation_snmp.php:420 #, php-format msgid "SNMP Options [edit: %s]" msgstr "Opciones de SNMP: [editar: %s]" #: /var/www/html/cacti/automation_snmp.php:422 msgid "SNMP Options [new]" msgstr "Opciones SNMP [Nuevo]" #: /var/www/html/cacti/automation_snmp.php:438 #: /var/www/html/cacti/include/global_form.php:1040 #: /var/www/html/cacti/include/global_form.php:1640 msgid "SNMP Version" msgstr "Versión SNMP" #: /var/www/html/cacti/automation_snmp.php:439 msgid "Choose the SNMP version for this host." msgstr "Elija la versión SNMP para este equipo." #: /var/www/html/cacti/automation_snmp.php:447 msgid "SNMP Community String" msgstr "Comunidad SNMP" #: /var/www/html/cacti/automation_snmp.php:448 msgid "Fill in the SNMP read community for this device." msgstr "Complete la comunidad de lectura SNMP para este dispositivo." #: /var/www/html/cacti/automation_snmp.php:456 #: /var/www/html/cacti/include/global_form.php:1120 #: /var/www/html/cacti/include/global_form.php:1710 msgid "SNMP Port" msgstr "Puerto SNMP" #: /var/www/html/cacti/automation_snmp.php:457 msgid "The UDP/TCP Port to poll the SNMP agent on." msgstr "El puerto UDP/TCP para consultar al agente SNMP." #: /var/www/html/cacti/automation_snmp.php:465 #: /var/www/html/cacti/include/global_form.php:1129 #: /var/www/html/cacti/include/global_form.php:1719 msgid "SNMP Timeout" msgstr "Tiempo de espera de SNMP" #: /var/www/html/cacti/automation_snmp.php:466 #: /var/www/html/cacti/include/global_form.php:1130 #: /var/www/html/cacti/include/global_form.php:1720 msgid "" "The maximum number of milliseconds Cacti will wait for an SNMP response " "(does not work with php-snmp support)." msgstr "" "Cantidad máxima de milisegundos que Cacti esperará por una respuesta SNMP " "(no funciona con php-snmp)." #: /var/www/html/cacti/automation_snmp.php:474 msgid "SNMP Retries" msgstr "Reintentos SNMP" #: /var/www/html/cacti/automation_snmp.php:475 msgid "" "The maximum number of attempts to reach a device via an SNMP readstring " "prior to giving up." msgstr "" "La cantidad máxima de intentos para acceder a un dispositivo via una " "comunidad de SNMP antes de renunciar." #: /var/www/html/cacti/automation_snmp.php:483 msgid "Maximum OID's Per Get Request" msgstr "OID's máximos por Get Request" #: /var/www/html/cacti/automation_snmp.php:484 #: /var/www/html/cacti/include/global_form.php:1139 msgid "" "Specified the number of OIDs that can be obtained in a single SNMP Get " "request." msgstr "" "Especifica la cantidad de OIDs que pueden ser obtenidos en una simple " "solicitud Get de SNMP." #: /var/www/html/cacti/automation_snmp.php:492 #: /var/www/html/cacti/include/global_form.php:1059 #: /var/www/html/cacti/include/global_form.php:1659 msgid "SNMP Username (v3)" msgstr "Nombre de usuario SNMP (v3)" #: /var/www/html/cacti/automation_snmp.php:493 #: /var/www/html/cacti/include/global_form.php:1060 #: /var/www/html/cacti/include/global_form.php:1660 msgid "SNMP v3 username for this device." msgstr "Nombre de usuario de SNMP (v3) para este dispositivo." #: /var/www/html/cacti/automation_snmp.php:501 #: /var/www/html/cacti/include/global_form.php:1068 msgid "SNMP Password (v3)" msgstr "Contraseña de SNMP (v3)" #: /var/www/html/cacti/automation_snmp.php:502 msgid "SNMP v3 password for this device." msgstr "Contraseña de SNMP (v3) para este dispositivo." #: /var/www/html/cacti/automation_snmp.php:510 #: /var/www/html/cacti/include/global_form.php:1077 #: /var/www/html/cacti/include/global_form.php:1677 msgid "SNMP Auth Protocol (v3)" msgstr "Protocolo de autenticación de SNMP (v3)" #: /var/www/html/cacti/automation_snmp.php:511 #: /var/www/html/cacti/include/global_settings.php:523 msgid "Choose the SNMPv3 Authorization Protocol." msgstr "Elige el protocol de autorización de SNMPv3." #: /var/www/html/cacti/automation_snmp.php:518 #: /var/www/html/cacti/include/global_form.php:1085 msgid "SNMP Privacy Passphrase (v3)" msgstr "Contraseña de privacidad SNMP (v3)" #: /var/www/html/cacti/automation_snmp.php:519 #: /var/www/html/cacti/include/global_form.php:1686 #: /var/www/html/cacti/include/global_settings.php:530 msgid "Choose the SNMPv3 Privacy Passphrase." msgstr "Elija la contraseña de privacidad de SNMPv3." #: /var/www/html/cacti/automation_snmp.php:527 #: /var/www/html/cacti/include/global_form.php:1094 #: /var/www/html/cacti/include/global_form.php:1694 msgid "SNMP Privacy Protocol (v3)" msgstr "Protocolo de privacidad de SNMP (v3)" #: /var/www/html/cacti/automation_snmp.php:528 #: /var/www/html/cacti/include/global_settings.php:537 msgid "Choose the SNMPv3 Privacy Protocol." msgstr "Elija el protocolo de privacidad SNMPv3." #: /var/www/html/cacti/automation_snmp.php:535 msgid "SNMP Context" msgstr "Contexto de SNMP" #: /var/www/html/cacti/automation_snmp.php:536 msgid "Enter the SNMP Context to use for this device." msgstr "Ingresa el context de SNMP para este dispositivo." #: /var/www/html/cacti/automation_snmp.php:548 #: /var/www/html/cacti/include/global_form.php:894 #: /var/www/html/cacti/include/global_form.php:2078 #: /var/www/html/cacti/include/global_form.php:2120 #: /var/www/html/cacti/include/global_form.php:2271 #: /var/www/html/cacti/lib/api_automation.php:1238 #: /var/www/html/cacti/lib/api_automation.php:1300 #: /var/www/html/cacti/lib/api_automation.php:1363 #: /var/www/html/cacti/lib/html_reports.php:430 #: /var/www/html/cacti/lib/html_reports.php:1245 msgid "Sequence" msgstr "Secuencia" #: /var/www/html/cacti/automation_snmp.php:549 #: /var/www/html/cacti/lib/html_reports.php:431 msgid "Sequence of Item." msgstr "Secuencia de Item." #: /var/www/html/cacti/automation_snmp.php:636 #, php-format msgid "SNMP Option Set [edit: %s]" msgstr "Conjunto de opciones SNMP [editar: %s]" #: /var/www/html/cacti/automation_snmp.php:638 msgid "SNMP Option Set [new]" msgstr "Conjunto de opciones SNMP [nuevo]" #: /var/www/html/cacti/automation_snmp.php:650 msgid "Fill in the name of this SNMP Option Set." msgstr "Complete el nombre para este conjunto de opciones SNMP." #: /var/www/html/cacti/automation_snmp.php:675 #: /var/www/html/cacti/automation_snmp.php:822 msgid "Automation SNMP Options" msgstr "Automatización de opciones SNMP" #: /var/www/html/cacti/automation_snmp.php:678 /var/www/html/cacti/cdef.php:585 #: /var/www/html/cacti/lib/api_automation.php:1237 #: /var/www/html/cacti/lib/api_automation.php:1299 #: /var/www/html/cacti/lib/api_automation.php:1362 #: /var/www/html/cacti/lib/html_reports.php:1244 #: /var/www/html/cacti/vdef.php:564 msgid "Item" msgstr "Item" #: /var/www/html/cacti/automation_snmp.php:679 #: /var/www/html/cacti/include/auth.php:159 #: /var/www/html/cacti/include/global_settings.php:493 #: /var/www/html/cacti/permission_denied.php:71 #: /var/www/html/cacti/plugins.php:390 msgid "Version" msgstr "Versión" #: /var/www/html/cacti/automation_snmp.php:680 #: /var/www/html/cacti/include/global_settings.php:500 msgid "Community" msgstr "Comunidad" #: /var/www/html/cacti/automation_snmp.php:681 #: /var/www/html/cacti/lib/functions.php:3851 msgid "Port" msgstr "Puerto" #: /var/www/html/cacti/automation_snmp.php:682 #: /var/www/html/cacti/include/global_settings.php:542 msgid "Timeout" msgstr "Tiempo de espera" #: /var/www/html/cacti/automation_snmp.php:683 #: /var/www/html/cacti/include/global_settings.php:558 msgid "Retries" msgstr "Reintentos" #: /var/www/html/cacti/automation_snmp.php:684 msgid "Max OIDS" msgstr "OIDs Máx" #: /var/www/html/cacti/automation_snmp.php:685 msgid "Auth Username" msgstr "Usuario de autenticación" #: /var/www/html/cacti/automation_snmp.php:686 msgid "Auth Password" msgstr "Contraseña de autenticación" #: /var/www/html/cacti/automation_snmp.php:687 msgid "Auth Protocol" msgstr "Protocolo de autenticación" #: /var/www/html/cacti/automation_snmp.php:688 msgid "Priv Passphrase" msgstr "Contraseña de privacidad" #: /var/www/html/cacti/automation_snmp.php:689 msgid "Priv Protocol" msgstr "Protocolo de privacidad" #: /var/www/html/cacti/automation_snmp.php:690 msgid "Context" msgstr "Contexto" #: /var/www/html/cacti/automation_snmp.php:691 #: /var/www/html/cacti/data_queries.php:919 #: /var/www/html/cacti/utilities.php:1647 msgid "Action" msgstr "Acción" #: /var/www/html/cacti/automation_snmp.php:704 msgid "none" msgstr "ninguno" #: /var/www/html/cacti/automation_snmp.php:719 #: /var/www/html/cacti/automation_templates.php:543 #: /var/www/html/cacti/cdef.php:608 /var/www/html/cacti/color_templates.php:110 #: /var/www/html/cacti/data_queries.php:623 #: /var/www/html/cacti/data_queries.php:721 #: /var/www/html/cacti/lib/api_automation.php:1264 #: /var/www/html/cacti/lib/api_automation.php:1327 #: /var/www/html/cacti/lib/api_automation.php:1391 #: /var/www/html/cacti/lib/html.php:985 #: /var/www/html/cacti/lib/html_reports.php:1319 #: /var/www/html/cacti/lib/html_reports.php:1321 #: /var/www/html/cacti/tree.php:1757 /var/www/html/cacti/tree.php:1764 #: /var/www/html/cacti/vdef.php:588 msgid "Move Down" msgstr "Mover hacia abajo" #: /var/www/html/cacti/automation_snmp.php:725 #: /var/www/html/cacti/automation_templates.php:549 #: /var/www/html/cacti/cdef.php:614 /var/www/html/cacti/color_templates.php:116 #: /var/www/html/cacti/data_queries.php:628 #: /var/www/html/cacti/data_queries.php:726 #: /var/www/html/cacti/lib/api_automation.php:1270 #: /var/www/html/cacti/lib/api_automation.php:1333 #: /var/www/html/cacti/lib/api_automation.php:1397 #: /var/www/html/cacti/lib/html.php:990 #: /var/www/html/cacti/lib/html_reports.php:1321 #: /var/www/html/cacti/lib/html_reports.php:1323 #: /var/www/html/cacti/tree.php:1761 /var/www/html/cacti/tree.php:1765 #: /var/www/html/cacti/vdef.php:594 msgid "Move Up" msgstr "Mover hacia arriba" #: /var/www/html/cacti/automation_snmp.php:739 msgid "No SNMP Items" msgstr "No hay items de SNMP" #: /var/www/html/cacti/automation_snmp.php:774 msgid "Delete SNMP Option Item" msgstr "Eliminar item de opción SNMP" #: /var/www/html/cacti/automation_snmp.php:837 msgid "SNMP Rules" msgstr "Reglas de SNMP" #: /var/www/html/cacti/automation_snmp.php:929 msgid "SNMP Option Sets" msgstr "Conjunto de opciones SNMP" #: /var/www/html/cacti/automation_snmp.php:938 msgid "SNMP Option Set" msgstr "Conjunto de opciones SNMP" #: /var/www/html/cacti/automation_snmp.php:939 msgid "Networks Using" msgstr "Redes en uso" #: /var/www/html/cacti/automation_snmp.php:940 msgid "SNMP Entries" msgstr "Entradas SNMP" #: /var/www/html/cacti/automation_snmp.php:941 msgid "V1 Entries" msgstr "Entradas V1" #: /var/www/html/cacti/automation_snmp.php:942 msgid "V2 Entries" msgstr "Entradas V2" #: /var/www/html/cacti/automation_snmp.php:943 msgid "V3 Entries" msgstr "Entradas V3" #: /var/www/html/cacti/automation_snmp.php:963 msgid "No SNMP Option Sets Found" msgstr "No se encontraron conjunto de opciones SNMP" #: /var/www/html/cacti/automation_templates.php:190 msgid "Click 'Continue' to delete the folling Automation Template(s)." msgstr "" "Haga click en 'Continuar' para borrar la siguiente Plantilla(s) the " "Automatizacion." #: /var/www/html/cacti/automation_templates.php:195 msgid "Delete Automation Template(s)" msgstr "Borrar Plantilla(s) de Automatización" #: /var/www/html/cacti/automation_templates.php:198 msgid "You must select at least one Automation Template." msgstr "Debes seleccionar al menos una Plantilla de Automatizacion." #: /var/www/html/cacti/automation_templates.php:300 #: /var/www/html/cacti/include/global_arrays.php:1045 #: /var/www/html/cacti/include/global_form.php:1011 #: /var/www/html/cacti/include/global_form.php:1519 #: /var/www/html/cacti/lib/html_reports.php:356 msgid "Device Template" msgstr "Plantilla de Dispositivo" #: /var/www/html/cacti/automation_templates.php:301 msgid "Select a Device Template that Devices will be matched to." msgstr "" "Seleccionar una Plantilla de Dispositivos contra la que los dispositivos " "serán evaluados." #: /var/www/html/cacti/automation_templates.php:308 msgid "Choose the Availability Method to use for Discovered Devices." msgstr "" "Elije un metodo de disponibilidad para usar con los dispositivos " "descubiertos." #: /var/www/html/cacti/automation_templates.php:315 #: /var/www/html/cacti/automation_templates.php:512 msgid "System Description Match" msgstr "Descripción de Sistema" #: /var/www/html/cacti/automation_templates.php:316 msgid "" "This is a unique string that will be matched to a devices sysDescr string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" "Este es un texto único que será comparado con el valor de texto de sysName " "de dispositivos para asociarlos con esta Plantilla de dispositivos. " "Cualquier expresión regular de Perl puede ser usada en adición a cualquier " "expresión WHERE de SQL." #: /var/www/html/cacti/automation_templates.php:322 #: /var/www/html/cacti/automation_templates.php:513 msgid "System Name Match" msgstr "Nombre de Sistema" #: /var/www/html/cacti/automation_templates.php:323 msgid "" "This is a unique string that will be matched to a devices sysName string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" "Este es un texto único que será comparado con el valor de texto de sysName " "de dispositivos para asociarlos con esta Plantilla de dispositivos. " "Cualquier expresión regular de Perl puede ser usada en adición a cualquier " "expresión WHERE de SQL." #: /var/www/html/cacti/automation_templates.php:329 msgid "System OID Match" msgstr "OID de Sistema" #: /var/www/html/cacti/automation_templates.php:330 msgid "" "This is a unique string that will be matched to a devices sysOid string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" "Este es un texto único que será comparado con el valor de texto de sysOid de " "dispositivos para asociarlos con esta Plantilla de dispositivos. Cualquier " "expresión regular de Perl puede ser usada en adición a cualquier expresión " "WHERE de SQL." #: /var/www/html/cacti/automation_templates.php:350 #, php-format msgid "Automation Templates [edit: %s]" msgstr "Plantillas de automatización [editar: %s]" #: /var/www/html/cacti/automation_templates.php:352 msgid "Automation Templates [new]" msgstr "Plantillas de automatización [nueva]" #: /var/www/html/cacti/automation_templates.php:403 msgid "Device Automation Templates" msgstr "Plantilla de automatización de Dispositivos" #: /var/www/html/cacti/automation_templates.php:510 #: /var/www/html/cacti/data_sources.php:1451 #: /var/www/html/cacti/graphs.php:1775 /var/www/html/cacti/user_admin.php:1376 #: /var/www/html/cacti/user_group_admin.php:1109 msgid "Template Name" msgstr "Nombre de Plantilla" #: /var/www/html/cacti/automation_templates.php:514 msgid "System ObjectId Match" msgstr "ObjectId de Sistema" #: /var/www/html/cacti/automation_templates.php:518 #: /var/www/html/cacti/data_queries.php:594 #: /var/www/html/cacti/data_queries.php:690 /var/www/html/cacti/links.php:381 #: /var/www/html/cacti/tree.php:1742 msgid "Order" msgstr "Orden" #: /var/www/html/cacti/automation_templates.php:528 msgid "Unknown Template" msgstr "Plantilla desconocida" #: /var/www/html/cacti/automation_templates.php:563 msgid "No Automation Device Templates Found" msgstr "Ninguna Plantilla de automatización de dispositivos encontrada" #: /var/www/html/cacti/automation_tree_rules.php:253 msgid "Click 'Continue' to delete the following Rule(s)." msgstr "Haga click en 'Continuar' para eliminar la(s) siguiente(s) regla(s)." #: /var/www/html/cacti/automation_tree_rules.php:260 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Rules." msgstr "" "Haga click en 'Continuar' para duplicar la(s) siguiente(s) regla(s). " "Opcionalmente puedes cambiar el formato de título de las nuevas reglas." #: /var/www/html/cacti/automation_tree_rules.php:379 msgid "Created Trees" msgstr "Arboles creados" #: /var/www/html/cacti/automation_tree_rules.php:471 #, php-format msgid "Are you sure you want to DELETE the Rule '%s'?" msgstr "Estás seguro que quieres BORRAR la regla '%s'?" #: /var/www/html/cacti/automation_tree_rules.php:529 msgid "Eligible Objects" msgstr "Objetos elegibles" #: /var/www/html/cacti/automation_tree_rules.php:542 #, php-format msgid "Tree Rule Selection [edit: %s]" msgstr "Selección de reglas de árbol [editar: %s]" #: /var/www/html/cacti/automation_tree_rules.php:544 msgid "Tree Rules Selection [new]" msgstr "Selección de reglas de árbol [nueva]" #: /var/www/html/cacti/automation_tree_rules.php:595 msgid "Object Selection Criteria" msgstr "Criterio de selección de objetos" #: /var/www/html/cacti/automation_tree_rules.php:601 msgid "Tree Creation Criteria" msgstr "Criterio de creación de Arbol" #: /var/www/html/cacti/automation_tree_rules.php:706 #: /var/www/html/cacti/automation_tree_rules.php:731 #: /var/www/html/cacti/automation_tree_rules.php:831 #: /var/www/html/cacti/include/global_arrays.php:757 #: /var/www/html/cacti/lib/functions.php:2621 msgid "Tree Rules" msgstr "Reglas de Arbol" #: /var/www/html/cacti/automation_tree_rules.php:842 msgid "Hook into Tree" msgstr "Gancho al árbol" #: /var/www/html/cacti/automation_tree_rules.php:843 msgid "At Subtree" msgstr "En subárbol" #: /var/www/html/cacti/automation_tree_rules.php:844 msgid "This Type" msgstr "Este tipo" #: /var/www/html/cacti/automation_tree_rules.php:845 msgid "Using Grouping" msgstr "Agrupar" #: /var/www/html/cacti/automation_tree_rules.php:854 msgid "ROOT" msgstr "RAIZ" #: /var/www/html/cacti/automation_tree_rules.php:870 msgid "No Tree Rules Found" msgstr "No se encontraron reglas de árbol" #: /var/www/html/cacti/cdef.php:277 msgid "Click 'Continue' to delete the following CDEF." msgid_plural "Click 'Continue' to delete all following CDEFs." msgstr[0] "Haga click en 'Continuar' para eliminar el siguiente CDEF." msgstr[1] "Haga click en 'Continuar' para eliminar los siguientes CDEFs." #: /var/www/html/cacti/cdef.php:282 msgid "Delete CDEF" msgid_plural "Delete CDEFs" msgstr[0] "Eliminar CDEF" msgstr[1] "Eliminar CDEFs" #: /var/www/html/cacti/cdef.php:286 msgid "" "Click 'Continue' to duplicate the following CDEF. You can optionally change " "the title format for the new CDEF." msgid_plural "" "Click 'Continue' to duplicate the following CDEFs. You can optionally change " "the title format for the new CDEFs." msgstr[0] "" "Haga click en 'Continuar' para duplicar el siguiente CDEF. Opctionalmente " "puedes cambiar el format del titulo para el nuevo CDEF." msgstr[1] "" "Haga click en 'Continuar' para duplicar los siguientes CDEFs. Opctionalmente " "puedes cambiar el format del titulo para los nuevos CDEFs." #: /var/www/html/cacti/cdef.php:288 /var/www/html/cacti/color_templates.php:238 #: /var/www/html/cacti/data_source_profiles.php:286 #: /var/www/html/cacti/data_templates.php:364 #: /var/www/html/cacti/graph_templates.php:323 #: /var/www/html/cacti/host_templates.php:267 /var/www/html/cacti/vdef.php:276 msgid "Title Format:" msgstr "Formato de título:" #: /var/www/html/cacti/cdef.php:293 msgid "Duplicate CDEF" msgid_plural "Duplicate CDEFs" msgstr[0] "Duplicar CDEF" msgstr[1] "Duplicar CDEFs" #: /var/www/html/cacti/cdef.php:296 msgid "You must select at least one CDEF." msgstr "Debes seleccionar al menos un CDEF." #: /var/www/html/cacti/cdef.php:338 msgid "Click 'Continue' to delete the following CDEF Item." msgstr "Haga click en 'Continuar' para eliminar el siguiente item CDEF." #: /var/www/html/cacti/cdef.php:339 #, php-format msgid "CDEF Name: '%s'" msgstr "Nombre CDEF: '%s'" #: /var/www/html/cacti/cdef.php:346 msgid "Remove CDEF Item" msgstr "Remover item CDEF" #: /var/www/html/cacti/cdef.php:425 msgid "CDEF Preview" msgstr "Vista previa de CDEF" #: /var/www/html/cacti/cdef.php:431 #, php-format msgid "CDEF Items [edit: %s]" msgstr "Items CDEF [editar: %s]" #: /var/www/html/cacti/cdef.php:443 msgid "CDEF Item Type" msgstr "Tipo de item CDEF" #: /var/www/html/cacti/cdef.php:444 msgid "Choose what type of CDEF item this is." msgstr "Elige el tipo de item CDEF que es." #: /var/www/html/cacti/cdef.php:465 msgid "CDEF Item Value" msgstr "Valor de item CDEF" #: /var/www/html/cacti/cdef.php:466 msgid "Enter a value for this CDEF item." msgstr "Ingresa un valor para este item CDEF." #: /var/www/html/cacti/cdef.php:559 #, php-format msgid "CDEF [edit: %s]" msgstr "CDEF [editar: %s]" #: /var/www/html/cacti/cdef.php:561 msgid "CDEF [new]" msgstr "CDEF [Nuevo]" #: /var/www/html/cacti/cdef.php:582 /var/www/html/cacti/lib/functions.php:1997 msgid "CDEF Items" msgstr "Items CDEF" #: /var/www/html/cacti/cdef.php:586 /var/www/html/cacti/vdef.php:565 msgid "Item Value" msgstr "Valor de item" #: /var/www/html/cacti/cdef.php:599 /var/www/html/cacti/vdef.php:579 #, php-format msgid "Item #%d" msgstr "Item #%d" #: /var/www/html/cacti/cdef.php:658 msgid "Delete CDEF Item" msgstr "Eliminar item CDEF" #: /var/www/html/cacti/cdef.php:714 /var/www/html/cacti/cdef.php:729 #: /var/www/html/cacti/cdef.php:845 #: /var/www/html/cacti/include/global_arrays.php:762 #: /var/www/html/cacti/lib/functions.php:1979 msgid "CDEFs" msgstr "CDEFs" #: /var/www/html/cacti/cdef.php:854 msgid "CDEF Name" msgstr "Nombre CDEF" #: /var/www/html/cacti/cdef.php:854 #: /var/www/html/cacti/data_source_profiles.php:929 msgid "The name of this CDEF." msgstr "El nombre de este CDEF." #: /var/www/html/cacti/cdef.php:855 msgid "" "CDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" "CDEFs que están en uso no pueden ser eliminados. En uso significa que están " "siendo referenciados por un gráfico o una plantilla de gráficos." #: /var/www/html/cacti/cdef.php:856 msgid "The number of Graphs using this CDEF." msgstr "El número de gráficos usando este CDEF." #: /var/www/html/cacti/cdef.php:857 /var/www/html/cacti/color.php:704 #: /var/www/html/cacti/data_input.php:727 #: /var/www/html/cacti/data_queries.php:1162 #: /var/www/html/cacti/data_source_profiles.php:936 #: /var/www/html/cacti/gprint_presets.php:396 /var/www/html/cacti/vdef.php:850 msgid "Templates Using" msgstr "Usando plantillas" #: /var/www/html/cacti/cdef.php:857 msgid "The number of Graphs Templates using this CDEF." msgstr "El número de plantillas de gráfico usando este CDEF." #: /var/www/html/cacti/cdef.php:879 msgid "No CDEFs" msgstr "No CDEFs" #: /var/www/html/cacti/clog.php:33 /var/www/html/cacti/clog_user.php:32 msgid "FATAL: YOU DO NO HAVE ACCESS TO THIS AREA OF CACTI" msgstr "FATAL: NO TIENES ACCESO A ESTA SECCION DE CACTI" #: /var/www/html/cacti/color.php:170 msgid "Unnamed Color" msgstr "Color sin nombre" #: /var/www/html/cacti/color.php:187 msgid "Click 'Continue' to delete the following Color" msgid_plural "Click 'Continue' to delete the following Colors" msgstr[0] "Haga click en 'Continuar' para eliminar el siguiente color" msgstr[1] "Haga click en 'Continuar' para eliminar los siguientes colores" #: /var/www/html/cacti/color.php:192 msgid "Delete Color" msgid_plural "Delete Colors" msgstr[0] "Eliminar Color" msgstr[1] "Eliminar Colores" #: /var/www/html/cacti/color.php:195 msgid "You must select at least one Color." msgstr "Debes seleccionar al menos un color." #: /var/www/html/cacti/color.php:351 msgid "Cacti has imported the following items:" msgstr "Cacti ha importado los siguientes items:" #: /var/www/html/cacti/color.php:365 /var/www/html/cacti/color.php:569 msgid "Import Colors" msgstr "Importar colores" #: /var/www/html/cacti/color.php:368 msgid "Import Colors from Local File" msgstr "Importar colores desde archivo local" #: /var/www/html/cacti/color.php:369 msgid "" "Please specify the location of the CSV file containing your Color " "information." msgstr "" "Por favor especifica la ubicación del archivo CSV que contiene la " "información de Color." #: /var/www/html/cacti/color.php:373 /var/www/html/cacti/lib/html_form.php:466 msgid "Select a File" msgstr "Seleccionar un archivo" #: /var/www/html/cacti/color.php:380 msgid "Overwrite Existing Data?" msgstr "Sobrescribir datos existentes?" #: /var/www/html/cacti/color.php:381 msgid "" "Should the import process be allowed to overwrite existing data? Please " "note, this does not mean delete old rows, only update duplicate rows." msgstr "" "Debería permitirse al proceso de importación sobreescribir los datos " "existentes? Ten en cuenta, esto no significa borrar filas antiguas, solo " "actualizar las filas duplicadas." #: /var/www/html/cacti/color.php:384 msgid "Allow Existing Rows to be Updated?" msgstr "Permitir filas existente ser actualizadas?" #: /var/www/html/cacti/color.php:389 msgid "Required File Format Notes" msgstr "Notas de formato de archivo requeridas" #: /var/www/html/cacti/color.php:392 msgid "The file must contain a header row with the following column headings." msgstr "" "El archivo debe contener un encabezado de fila con los siguientes " "encabezados de columna." #: /var/www/html/cacti/color.php:394 msgid "name - The Color Name" msgstr "Nombre - El nombre del Color" #: /var/www/html/cacti/color.php:395 msgid "hex - The Hex Value" msgstr "hex - El valor hexadecimal" #: /var/www/html/cacti/color.php:416 #, php-format msgid "Colors [edit: %s]" msgstr "Colores [editar: %s]" #: /var/www/html/cacti/color.php:418 msgid "Colors [new]" msgstr "Colores [nuevo]" #: /var/www/html/cacti/color.php:520 /var/www/html/cacti/color.php:535 #: /var/www/html/cacti/include/global_arrays.php:764 #: /var/www/html/cacti/lib/functions.php:2045 msgid "Colors" msgstr "Colores" #: /var/www/html/cacti/color.php:552 msgid "Named Colors" msgstr "Colores con nombre" #: /var/www/html/cacti/color.php:569 /var/www/html/cacti/lib/html_form.php:1151 msgid "Import" msgstr "Importar" #: /var/www/html/cacti/color.php:570 msgid "Export Colors" msgstr "Exportar colores" #: /var/www/html/cacti/color.php:698 /var/www/html/cacti/color_templates.php:74 msgid "Hex" msgstr "Hex" #: /var/www/html/cacti/color.php:698 msgid "The Hex Value for this Color." msgstr "El valor hexadecimal para este color." #: /var/www/html/cacti/color.php:699 msgid "Color Name" msgstr "Nombre del color" #: /var/www/html/cacti/color.php:699 msgid "The name of this Color definition." msgstr "El nombre para esta definición de color." #: /var/www/html/cacti/color.php:700 msgid "Is this color a named color which are read only." msgstr "Este color es un color con nombre que es de solo lectura." #: /var/www/html/cacti/color.php:700 msgid "Named Color" msgstr "Color con nombre" #: /var/www/html/cacti/color.php:701 /var/www/html/cacti/color_templates.php:73 #: /var/www/html/cacti/include/global_arrays.php:750 #: /var/www/html/cacti/include/global_form.php:790 #: /var/www/html/cacti/include/global_form.php:2019 msgid "Color" msgstr "Color" #: /var/www/html/cacti/color.php:701 msgid "The Color as shown on the screen." msgstr "El color tal cual mostrado en la pantalla." #: /var/www/html/cacti/color.php:702 msgid "" "Colors in use cannot be Deleted. In use is defined as being referenced " "either by a Graph or a Graph Template." msgstr "" "Colores en uso no pueden ser eliminados. En uso es definido como siendo " "referenciado tanto por un garfico como por una plantilla de gráficos." #: /var/www/html/cacti/color.php:703 msgid "The number of Graph using this Color." msgstr "Numero de gráficos usando este Color." #: /var/www/html/cacti/color.php:704 msgid "The number of Graph Templates using this Color." msgstr "Numero de plantilla de gráficos usando este color." #: /var/www/html/cacti/color.php:734 msgid "No Colors Found" msgstr "No se encontraron colores" #: /var/www/html/cacti/color_templates.php:72 msgid "Color Item" msgstr "Item de Color" #: /var/www/html/cacti/color_templates.php:93 #: /var/www/html/cacti/lib/api_aggregate.php:1370 #: /var/www/html/cacti/lib/api_aggregate.php:1373 #: /var/www/html/cacti/lib/api_aggregate.php:1378 #: /var/www/html/cacti/lib/html.php:922 #, php-format msgid "Item # %d" msgstr "Item # %d" #: /var/www/html/cacti/color_templates.php:132 #: /var/www/html/cacti/graph_templates_inputs.php:222 #: /var/www/html/cacti/lib/api_aggregate.php:1430 #: /var/www/html/cacti/lib/html.php:1004 msgid "No Items" msgstr "No Items" #: /var/www/html/cacti/color_templates.php:227 msgid "Click 'Continue' to delete the following Color Template" msgid_plural "Click 'Continue' to delete following Color Templates" msgstr[0] "" "Haga click en 'Continuar' para eliminar la siguiente plantilla de color" msgstr[1] "" "Haga click en 'Continuar' para eliminar las siguientes plantillas de colores" #: /var/www/html/cacti/color_templates.php:232 msgid "Delete Color Template" msgid_plural "Delete Color Templates" msgstr[0] "Eliminar plantilla de color" msgstr[1] "Eliminar plantillas de colores" #: /var/www/html/cacti/color_templates.php:236 msgid "" "Click 'Continue' to duplicate the following Color Template. You can " "optionally change the title format for the new color template." msgid_plural "" "Click 'Continue' to duplicate following Color Templates. You can optionally " "change the title format for the new color templates." msgstr[0] "" "Haga click en 'Continuar' para duplicar la siguiente plantilla de color. " "Opcionalmente puedes cambiar el formato del título para la nueva plantilla " "de color." msgstr[1] "" "Haga click en 'Continuar' para duplicar la siguiente plantillas de colores. " "Opcionalmente puedes cambiar el formato del título para las nuevas " "plantillas de colores." #: /var/www/html/cacti/color_templates.php:242 msgid "Duplicate Color Template" msgid_plural "Duplicate Color Templates" msgstr[0] "Duplicar plantilla de color" msgstr[1] "Duplicar plantilla de colores" #: /var/www/html/cacti/color_templates.php:245 msgid "You must select at least one Color Template." msgstr "Debes seleccionar al menos una plantilla de color." #: /var/www/html/cacti/color_templates.php:278 msgid "Color Template Items [new]" msgstr "Items de la plantilla de color [nuevo]" #: /var/www/html/cacti/color_templates.php:289 #, php-format msgid "Color Template Items [edit: %s]" msgstr "Items de la plantilla de color [editar: %s]" #: /var/www/html/cacti/color_templates.php:322 msgid "Delete Color Item" msgstr "Borrar item de color" #: /var/www/html/cacti/color_templates.php:349 #, php-format msgid "Color Template [edit: %s]" msgstr "Plantilla de color [editar: %s]" #: /var/www/html/cacti/color_templates.php:351 msgid "Color Template [new]" msgstr "Plantilla de color [nuevo]" #: /var/www/html/cacti/color_templates.php:432 #: /var/www/html/cacti/color_templates.php:445 #: /var/www/html/cacti/lib/functions.php:2519 msgid "Color Templates" msgstr "Plantillas de Color" #: /var/www/html/cacti/color_templates.php:547 msgid "" "Color Templates that are in use cannot be Deleted. In use is defined as " "being referenced by an Aggregate Template." msgstr "" "Plantillas de colores que están en uso no pueden ser borradas. En uso " "significa que está siendo referenciado por una plantilla de Agregados." #: /var/www/html/cacti/color_templates.php:572 msgid "No Color Templates Found" msgstr "No se encontraron plantillas de colores" #: /var/www/html/cacti/color_templates_items.php:274 msgid "Click 'Continue' to delete the following Color Template Color." msgstr "" "Haga click en 'Continuar' para eliminar el siguiente color de la Plantilla " "de color." #: /var/www/html/cacti/color_templates_items.php:275 msgid "Color Name:" msgstr "Nombre de color:" #: /var/www/html/cacti/color_templates_items.php:276 msgid "Color Hex:" msgstr "Color hex:" #: /var/www/html/cacti/color_templates_items.php:282 msgid "Remove Color Item" msgstr "Quitar item de Color" #: /var/www/html/cacti/color_templates_items.php:340 #, php-format msgid "Color Template Items [edit Report Item: %s]" msgstr "Item de Plantilla de Colores [editar item de Reporte: %s]" #: /var/www/html/cacti/color_templates_items.php:343 #, php-format msgid "Color Template Items [new Report Item: %s]" msgstr "Item de Plantilla de Colores [nuevo item de Reporte: %s]" #: /var/www/html/cacti/data_input.php:212 msgid "Click 'Continue' to delete the following Data Input Method" msgid_plural "Click 'Continue' to delete the following Data Input Method" msgstr[0] "" "Haga click en 'Continuar' para eliminar el siguiente método de entrada de " "datos" msgstr[1] "" "Haga click en 'Continuar' para eliminar los siguientes métodos de entrada de " "datos" #: /var/www/html/cacti/data_input.php:218 msgid "Delete Data Input Method" msgid_plural "Delete Data Input Methods" msgstr[0] "Eliminar método de entrada de datos" msgstr[1] "Eliminar métodos de entrada de datos" #: /var/www/html/cacti/data_input.php:220 msgid "You must select at least one data input method." msgstr "Debes seleccionar al menos un método de entrada de datos." #: /var/www/html/cacti/data_input.php:259 msgid "Click 'Continue' to delete the following Data Input Field." msgstr "" "Haga click en 'Continuar' para eliminar el siguiente campo de entrada de " "datos." #: /var/www/html/cacti/data_input.php:260 #, php-format msgid "Field Name: %s" msgstr "Nombre del campo: %s" #: /var/www/html/cacti/data_input.php:261 #, php-format msgid "Friendly Name: %s" msgstr "Nombre amigable: %s" #: /var/www/html/cacti/data_input.php:267 #: /var/www/html/cacti/host_templates.php:335 #: /var/www/html/cacti/host_templates.php:395 msgid "Remove Data Input Field" msgstr "Eliminar campo de entrada de datos" #: /var/www/html/cacti/data_input.php:362 #, php-format msgid "Output Fields [edit: %s]" msgstr "Campos de salida [editar: %s]" #: /var/www/html/cacti/data_input.php:363 #: /var/www/html/cacti/include/global_form.php:465 msgid "Output Field" msgstr "Campo de salida" #: /var/www/html/cacti/data_input.php:365 #, php-format msgid "Input Fields [edit: %s]" msgstr "Campo de entrada [editar: %s]" #: /var/www/html/cacti/data_input.php:366 msgid "Input Field" msgstr "Campo de entrada" #: /var/www/html/cacti/data_input.php:432 #, php-format msgid "Data Input Methods [edit: %s]" msgstr "Método de entrada de datos [editar: %s]" #: /var/www/html/cacti/data_input.php:434 msgid "Data Input Methods [new]" msgstr "Métodos de entrada de datos [nuevo]" #: /var/www/html/cacti/data_input.php:444 #: /var/www/html/cacti/include/global_arrays.php:342 msgid "SNMP Get" msgstr "SNMP Get" #: /var/www/html/cacti/data_input.php:447 #: /var/www/html/cacti/include/global_arrays.php:343 msgid "SNMP Query" msgstr "Consulta SNMP" #: /var/www/html/cacti/data_input.php:450 #: /var/www/html/cacti/include/global_arrays.php:345 msgid "Script Query" msgstr "Consulta de Script" #: /var/www/html/cacti/data_input.php:453 #: /var/www/html/cacti/include/global_arrays.php:347 msgid "Script Query - Script Server" msgstr "Consulta de Script - Servidor de Script" #: /var/www/html/cacti/data_input.php:466 msgid "Input Fields" msgstr "Campos de entrada" #: /var/www/html/cacti/data_input.php:469 msgid "Field Order" msgstr "Orden de campo" #: /var/www/html/cacti/data_input.php:470 #: /var/www/html/cacti/data_input.php:503 #: /var/www/html/cacti/include/global_form.php:279 msgid "Friendly Name" msgstr "Nombre amigable" #: /var/www/html/cacti/data_input.php:484 msgid "(Not In Use)" msgstr "(No esta en uso)" #: /var/www/html/cacti/data_input.php:496 msgid "No Input Fields" msgstr "No hay campos de entrada" #: /var/www/html/cacti/data_input.php:500 msgid "Output Fields" msgstr "Campos de salida" #: /var/www/html/cacti/data_input.php:504 msgid "Update RRA" msgstr "Actualizar RRA" #: /var/www/html/cacti/data_input.php:535 msgid "No Output Fields" msgstr "No hay campos de salida" #: /var/www/html/cacti/data_input.php:557 #: /var/www/html/cacti/host_templates.php:600 msgid "Delete Data Input Field" msgstr "Eliminar campo de entrada de datos" #: /var/www/html/cacti/data_input.php:611 #: /var/www/html/cacti/include/global_arrays.php:743 #: /var/www/html/cacti/include/global_arrays.php:913 #: /var/www/html/cacti/lib/functions.php:2183 msgid "Data Input Methods" msgstr "Métodos de entrada de datos" #: /var/www/html/cacti/data_input.php:626 #: /var/www/html/cacti/data_input.php:715 msgid "Input Methods" msgstr "Métodos de entrada" #: /var/www/html/cacti/data_input.php:724 msgid "Data Input Name" msgstr "Nombre de entrada de datos" #: /var/www/html/cacti/data_input.php:724 msgid "The name of this Data Input Method." msgstr "El nombre de este método de entrada de datos." #: /var/www/html/cacti/data_input.php:725 msgid "" "Data Inputs that are in use cannot be Deleted. In use is defined as being " "referenced either by a Data Source or a Data Template." msgstr "" "Entradas de datos que estan en uso no pueden ser eliminadas. En uso " "significa, que están siendo referenciadas ya sea por un Data Source o una " "plantilla de datos." #: /var/www/html/cacti/data_input.php:726 #: /var/www/html/cacti/data_source_profiles.php:935 #: /var/www/html/cacti/data_templates.php:910 msgid "Data Sources Using" msgstr "Data Sources en uso" #: /var/www/html/cacti/data_input.php:726 msgid "The number of Data Sources that use this Data Input Method." msgstr "El número de Data Sources usando este Método de entrada de datos." #: /var/www/html/cacti/data_input.php:727 msgid "The number of Data Templates that use this Data Input Method." msgstr "" "El número de plantillas de datos usando este Método de entrada de datos." #: /var/www/html/cacti/data_input.php:728 #: /var/www/html/cacti/data_queries.php:1163 #: /var/www/html/cacti/include/global_arrays.php:1037 #: /var/www/html/cacti/include/global_form.php:388 #: /var/www/html/cacti/include/global_form.php:1277 msgid "Data Input Method" msgstr "Método de entrada de datos" #: /var/www/html/cacti/data_input.php:728 msgid "The method used to gather information for this Data Input Method." msgstr "" "El método usado para obtener información para este Método de entrada de " "datos." #: /var/www/html/cacti/data_input.php:751 msgid "No Data Input Methods Found" msgstr "No se encontraron Métodos de entrada de datos" #: /var/www/html/cacti/data_queries.php:316 msgid "Click 'Continue' to delete the following Data Query." msgid_plural "Click 'Continue' to delete following Data Queries." msgstr[0] "" "Haga click en 'Continuar' para eliminar la siguiente consulta de datos." msgstr[1] "" "Haga click en 'Continuar' para eliminar las siguientes consultas de datos." #: /var/www/html/cacti/data_queries.php:322 msgid "Delete Data Query" msgid_plural "Delete Data Query" msgstr[0] "Eliminar consulta de datos" msgstr[1] "Eliminar consultas de datos" #: /var/www/html/cacti/data_queries.php:324 msgid "You must select at least one data query." msgstr "Debes seleccionar al menos una consulta de datos." #: /var/www/html/cacti/data_queries.php:419 msgid "Click 'Continue' to delete the following Data Query Graph Association." msgstr "" "Haga click en 'Continuar' para eliminar la siguiente asociación de consulta " "de datos de gráficos." #: /var/www/html/cacti/data_queries.php:420 #, php-format msgid "Graph Name: %s" msgstr "Nombre de Grafico: %s" #: /var/www/html/cacti/data_queries.php:426 /var/www/html/cacti/vdef.php:333 msgid "Remove VDEF Item" msgstr "Eliminar item VDEF" #: /var/www/html/cacti/data_queries.php:478 #, php-format msgid "Associated Graph/Data Templates [edit: %s]" msgstr "Plantillas de gráficos/datos asociados [editar: %s]" #: /var/www/html/cacti/data_queries.php:501 msgid "Associated Data Templates" msgstr "Plantillas de datos asociadas" #: /var/www/html/cacti/data_queries.php:519 #, php-format msgid "Data Template - %s" msgstr "Plantillas de Datos - %s" #: /var/www/html/cacti/data_queries.php:549 #: /var/www/html/cacti/data_sources.php:909 #: /var/www/html/cacti/data_templates.php:516 #: /var/www/html/cacti/graphs_items.php:439 #: /var/www/html/cacti/include/global_arrays.php:748 #: /var/www/html/cacti/include/global_form.php:775 #: /var/www/html/cacti/lib/api_aggregate.php:1295 #: /var/www/html/cacti/lib/html.php:882 msgid "Data Source" msgstr "Data Source" #: /var/www/html/cacti/data_queries.php:584 msgid "Suggested Values - Graph Names" msgstr "Valores sugeridos - Nombres de gráficos" #: /var/www/html/cacti/data_queries.php:595 #: /var/www/html/cacti/data_queries.php:691 msgid "Equation" msgstr "Ecuación" #: /var/www/html/cacti/data_queries.php:646 #: /var/www/html/cacti/data_queries.php:745 msgid "No Suggested Values Found" msgstr "Ningún valor sugerido encontrado" #: /var/www/html/cacti/data_queries.php:655 #: /var/www/html/cacti/data_queries.php:754 #: /var/www/html/cacti/include/global_form.php:2054 #: /var/www/html/cacti/include/global_form.php:2096 #: /var/www/html/cacti/lib/api_automation.php:1364 #: /var/www/html/cacti/utilities.php:1457 msgid "Field Name" msgstr "Nombre del campo" #: /var/www/html/cacti/data_queries.php:661 #: /var/www/html/cacti/data_queries.php:760 msgid "Suggested Value" msgstr "Valor sugerido" #: /var/www/html/cacti/data_queries.php:667 #: /var/www/html/cacti/data_queries.php:766 /var/www/html/cacti/host.php:798 #: /var/www/html/cacti/host.php:915 /var/www/html/cacti/host_templates.php:515 #: /var/www/html/cacti/host_templates.php:569 #: /var/www/html/cacti/lib/html.php:37 #: /var/www/html/cacti/lib/html_filter.php:55 msgid "Add" msgstr "Agregar" #: /var/www/html/cacti/data_queries.php:667 msgid "Add Graph Title Suggested Name" msgstr "Agregar nombre sugerido a título de gráfico" #: /var/www/html/cacti/data_queries.php:677 msgid "Suggested Values - Data Source Names" msgstr "Valores sugeridos - Nombres de Data Source" #: /var/www/html/cacti/data_queries.php:766 msgid "Add Data Source Name Suggested Name" msgstr "Agregar nombre sugerido a nombre de Data Source" #: /var/www/html/cacti/data_queries.php:879 #, php-format msgid "Data Queries [edit: %s]" msgstr "Consulta de datos [editar: %s]" #: /var/www/html/cacti/data_queries.php:881 msgid "Data Queries [new]" msgstr "Consulta de datos [Nuevo]" #: /var/www/html/cacti/data_queries.php:901 msgid "Successfully located XML file" msgstr "Archivo XML encontrado" #: /var/www/html/cacti/data_queries.php:904 msgid "Could not locate XML file." msgstr "No se pudo encontrar el archivo XML." #: /var/www/html/cacti/data_queries.php:912 /var/www/html/cacti/host.php:710 #: /var/www/html/cacti/host_templates.php:466 #: /var/www/html/cacti/lib/functions.php:2237 msgid "Associated Graph Templates" msgstr "Plantillas de gráfico asociadas" #: /var/www/html/cacti/data_queries.php:916 #: /var/www/html/cacti/graph_templates.php:763 #: /var/www/html/cacti/graphs_new.php:637 /var/www/html/cacti/host.php:714 #: /var/www/html/cacti/lib/api_automation.php:571 msgid "Graph Template Name" msgstr "Nombre de plantilla de gráficos" #: /var/www/html/cacti/data_queries.php:918 msgid "Mapping ID" msgstr "ID Asociado" #: /var/www/html/cacti/data_queries.php:959 msgid "Mapped Graph Templates with Graphs are read only" msgstr "Las plantillas de gráficos asociadas con gráficos son solo lectura" #: /var/www/html/cacti/data_queries.php:966 msgid "No Graph Templates Defined." msgstr "No hay Plantillas de gráficos definidas." #: /var/www/html/cacti/data_queries.php:990 msgid "Delete Associated Graph" msgstr "Borrar gráfico asociado" #: /var/www/html/cacti/data_queries.php:1044 #: /var/www/html/cacti/data_queries.php:1059 #: /var/www/html/cacti/data_queries.php:1149 #: /var/www/html/cacti/include/global_arrays.php:742 #: /var/www/html/cacti/include/global_arrays.php:914 #: /var/www/html/cacti/lib/api_automation.php:1058 #: /var/www/html/cacti/lib/functions.php:2219 msgid "Data Queries" msgstr "Consultas de datos" #: /var/www/html/cacti/data_queries.php:1158 /var/www/html/cacti/host.php:812 #: /var/www/html/cacti/utilities.php:1457 msgid "Data Query Name" msgstr "Nombre de consulta de datos" #: /var/www/html/cacti/data_queries.php:1158 msgid "The name of this Data Query." msgstr "El nombre de esta consulta de datos." #: /var/www/html/cacti/data_queries.php:1159 #: /var/www/html/cacti/graph_templates.php:764 msgid "" "The internal ID for this Graph Template. Useful when performing automation " "or debugging." msgstr "" "El ID interno para esta plantilla de gráfico. Util cuando se realiza " "automatización o depuración." #: /var/www/html/cacti/data_queries.php:1160 msgid "" "Data Queries that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" "Consultas de datos que están en uso no pueden ser borradas. En uso significa " "que están siendo referenciadas por un gráfico o una plantilla de gráficos." #: /var/www/html/cacti/data_queries.php:1161 msgid "The number of Graphs using this Data Query." msgstr "El número de gráficos usando esta consulta de datos." #: /var/www/html/cacti/data_queries.php:1162 msgid "The number of Graphs Templates using this Data Query." msgstr "El número de plantillas de gráficos usando esta consulta de datos." #: /var/www/html/cacti/data_queries.php:1163 msgid "" "The Data Input Method used to collect data for Data Sources associated with " "this Data Query." msgstr "" "El método de entrada de datos usado para recolectar datos para los Data " "Sources asociados con este consulta de datos." #: /var/www/html/cacti/data_queries.php:1187 msgid "No Data Queries Found" msgstr "No se encontraron consultas de datos" #: /var/www/html/cacti/data_source_profiles.php:275 msgid "Click 'Continue' to delete the following Data Source Profile" msgid_plural "Click 'Continue' to delete following Data Source Profiles" msgstr[0] "" "Haga click en 'Continuar' para eliminar el siguiente perfil de Data Source" msgstr[1] "" "Haga click en 'Continuar' para eliminar los siguientes perfiles de Data " "Source" #: /var/www/html/cacti/data_source_profiles.php:280 msgid "Delete Data Source Profile" msgid_plural "Delete Data Source Profiles" msgstr[0] "Eliminar perfil de Data Source" msgstr[1] "Eliminar perfiles de Data Source" #: /var/www/html/cacti/data_source_profiles.php:284 msgid "" "Click 'Continue' to duplicate the following Data Source Profile. You can " "optionally change the title format for the new Data Source Profile" msgid_plural "" "Click 'Continue' to duplicate following Data Source Profiles. You can " "optionally change the title format for the new Data Source Profiles." msgstr[0] "" "Haga click en 'Continuar' para duplicar el siguiente perfil de Data Source. " "Opcionalmente puedes cambiar el formato de título para el nuevo perfil de " "Data Source" msgstr[1] "" "Haga click en 'Continuar' para duplicar los siguientes perfiles de Data " "Sources. Opcionalmente puedes cambiar el formato de título para los nuevos " "perfiles de Data Source." #: /var/www/html/cacti/data_source_profiles.php:290 msgid "Duplicate Data Source Profile" msgid_plural "Duplicate Date Source Profiles" msgstr[0] "Duplicar perfil de Data Source" msgstr[1] "Duplicar perfiles de Data Source" #: /var/www/html/cacti/data_source_profiles.php:293 msgid "You must select at least one Data Source Profile." msgstr "Debes seleccionar al menos un perfil de Data Source." #: /var/www/html/cacti/data_source_profiles.php:335 msgid "Click 'Continue' to delete the following Data Source Profile RRA." msgstr "" "Haga click en 'Continuar' para eliminar el siguiente perfil de Data Source " "RRA." #: /var/www/html/cacti/data_source_profiles.php:336 #, php-format msgid "Profile Name: %s" msgstr "Nombre de Perfil: %s" #: /var/www/html/cacti/data_source_profiles.php:342 msgid "Remove Data Source Profile RRA" msgstr "Eliminar perfil de Data Source RRA" #: /var/www/html/cacti/data_source_profiles.php:405 #: /var/www/html/cacti/data_source_profiles.php:424 msgid "Each Insert is New Row" msgstr "Cada entrada es una nueva fila" #: /var/www/html/cacti/data_source_profiles.php:443 msgid "(Some Elements Read Only)" msgstr "(Algunos elementos de sólo lectura)" #: /var/www/html/cacti/data_source_profiles.php:443 #, php-format msgid "RRA [edit: %s %s]" msgstr "RRA [editar: %s %s]" #: /var/www/html/cacti/data_source_profiles.php:522 #, php-format msgid "Data Source Profile [edit: %s]" msgstr "Perfil de Data Source [editar: %s]" #: /var/www/html/cacti/data_source_profiles.php:524 msgid "Data Source Profile [new]" msgstr "Perfil de Data Source [nuevo]" #: /var/www/html/cacti/data_source_profiles.php:542 msgid "Data Source Profile RRAs (press save to update timespans)" msgstr "" "Perfil de Data Source RRAs (presione guardar para actualizar períodos de " "tiempo)" #: /var/www/html/cacti/data_source_profiles.php:544 msgid "Data Source Profile RRAs (Read Only)" msgstr "Perfil de Data Source RRA (Solo lectura)" #: /var/www/html/cacti/data_source_profiles.php:549 #: /var/www/html/cacti/include/global_form.php:134 msgid "Data Retention" msgstr "Retención de datos" #: /var/www/html/cacti/data_source_profiles.php:550 #: /var/www/html/cacti/include/global_settings.php:769 #: /var/www/html/cacti/lib/html_reports.php:396 msgid "Graph Timespan" msgstr "Fecha y hora de Gráfico" #: /var/www/html/cacti/data_source_profiles.php:551 msgid "Steps" msgstr "Pasos" #: /var/www/html/cacti/data_source_profiles.php:552 #: /var/www/html/cacti/graphs_new.php:576 #: /var/www/html/cacti/include/global_form.php:118 #: /var/www/html/cacti/lib/html.php:323 #: /var/www/html/cacti/lib/html_filter.php:73 #: /var/www/html/cacti/lib/rrd.php:2692 /var/www/html/cacti/utilities.php:481 #: /var/www/html/cacti/utilities.php:1371 msgid "Rows" msgstr "Filas" #: /var/www/html/cacti/data_source_profiles.php:605 msgid "Select Consolidation Function(s)" msgstr "Seleccione funcion(es) de consolidación" #: /var/www/html/cacti/data_source_profiles.php:631 msgid "Delete Data Source Profile Item" msgstr "Borrar item de perfil de Data Source" #: /var/www/html/cacti/data_source_profiles.php:678 #, php-format msgid "%s KBytes per Data Sources and $s Bytes for the Header" msgstr "%s KBytes por Data Source y $s Bytes por el encabezado" #: /var/www/html/cacti/data_source_profiles.php:687 #, php-format msgid "%s KBytes per Data Source" msgstr "%s KBytes por Data Source" #: /var/www/html/cacti/data_source_profiles.php:701 #: /var/www/html/cacti/include/global_arrays.php:583 #: /var/www/html/cacti/include/global_arrays.php:1140 #: /var/www/html/cacti/include/global_settings.php:1062 #, php-format msgid "%d Years" msgstr "%d años" #: /var/www/html/cacti/data_source_profiles.php:701 msgid "1 Year" msgstr "1 año" #: /var/www/html/cacti/data_source_profiles.php:710 #: /var/www/html/cacti/include/global_arrays.php:577 #: /var/www/html/cacti/include/global_arrays.php:1134 #: /var/www/html/cacti/rrdcleaner.php:489 #, php-format msgid "%d Month" msgstr "%d mes" #: /var/www/html/cacti/data_source_profiles.php:710 #: /var/www/html/cacti/include/global_arrays.php:578 #: /var/www/html/cacti/include/global_arrays.php:579 #: /var/www/html/cacti/include/global_arrays.php:580 #: /var/www/html/cacti/include/global_arrays.php:581 #: /var/www/html/cacti/include/global_arrays.php:1135 #: /var/www/html/cacti/include/global_arrays.php:1136 #: /var/www/html/cacti/include/global_arrays.php:1137 #: /var/www/html/cacti/include/global_arrays.php:1138 #: /var/www/html/cacti/rrdcleaner.php:490 #: /var/www/html/cacti/rrdcleaner.php:491 #: /var/www/html/cacti/rrdcleaner.php:492 #, php-format msgid "%d Months" msgstr "%d meses" #: /var/www/html/cacti/data_source_profiles.php:719 #: /var/www/html/cacti/include/global_arrays.php:574 #: /var/www/html/cacti/include/global_arrays.php:1132 #: /var/www/html/cacti/rrdcleaner.php:485 #: /var/www/html/cacti/rrdcleaner.php:486 #, php-format msgid "%d Week" msgstr "%d semana" #: /var/www/html/cacti/data_source_profiles.php:719 #: /var/www/html/cacti/include/global_arrays.php:575 #: /var/www/html/cacti/include/global_arrays.php:576 #: /var/www/html/cacti/include/global_arrays.php:1133 #: /var/www/html/cacti/rrdcleaner.php:487 #: /var/www/html/cacti/rrdcleaner.php:488 #, php-format msgid "%d Weeks" msgstr "%d semanas" #: /var/www/html/cacti/data_source_profiles.php:728 #: /var/www/html/cacti/include/global_arrays.php:571 #: /var/www/html/cacti/include/global_arrays.php:1128 #, php-format msgid "%d Day" msgstr "%d dia" #: /var/www/html/cacti/data_source_profiles.php:728 #: /var/www/html/cacti/include/global_arrays.php:572 #: /var/www/html/cacti/include/global_arrays.php:573 #: /var/www/html/cacti/include/global_arrays.php:1129 #: /var/www/html/cacti/include/global_arrays.php:1130 #: /var/www/html/cacti/include/global_arrays.php:1131 #: /var/www/html/cacti/include/global_settings.php:1057 #: /var/www/html/cacti/include/global_settings.php:1058 #: /var/www/html/cacti/include/global_settings.php:1059 #: /var/www/html/cacti/include/global_settings.php:1060 #: /var/www/html/cacti/include/global_settings.php:1071 #: /var/www/html/cacti/include/global_settings.php:1072 #: /var/www/html/cacti/include/global_settings.php:1073 #: /var/www/html/cacti/include/global_settings.php:1074 #, php-format msgid "%d Days" msgstr "%d Días" #: /var/www/html/cacti/data_source_profiles.php:736 #: /var/www/html/cacti/include/global_arrays.php:522 #: /var/www/html/cacti/include/global_arrays.php:557 #: /var/www/html/cacti/include/global_arrays.php:1170 #: /var/www/html/cacti/include/global_arrays.php:1191 #: /var/www/html/cacti/include/global_arrays.php:1224 #: /var/www/html/cacti/include/global_arrays.php:1233 #: /var/www/html/cacti/include/global_arrays.php:1259 #: /var/www/html/cacti/include/global_settings.php:1128 msgid "1 Hour" msgstr "1 hora" #: /var/www/html/cacti/data_source_profiles.php:790 #: /var/www/html/cacti/include/global_arrays.php:921 msgid "Data Source Profiles" msgstr "Perfiles de Data Source" #: /var/www/html/cacti/data_source_profiles.php:805 #: /var/www/html/cacti/data_source_profiles.php:920 msgid "Profiles" msgstr "Perfiles" #: /var/www/html/cacti/data_source_profiles.php:822 #: /var/www/html/cacti/data_templates.php:793 msgid "Has Data Sources" msgstr "Contiene Data Sources" #: /var/www/html/cacti/data_source_profiles.php:929 msgid "Data Source Profile Name" msgstr "Nombre de perfil de Data Source" #: /var/www/html/cacti/data_source_profiles.php:930 msgid "Is this the default Profile for all new Data Templates?" msgstr "" "Es este el perfil predeterminado para todas las plantillas de datos nuevas?" #: /var/www/html/cacti/data_source_profiles.php:931 msgid "" "Profiles that are in use cannot be Deleted. In use is defined as being " "referenced by a Data Source or a Data Template." msgstr "" "Perfiles que están en uso no pueden ser eliminados. En uso significa que " "estan siendo referenciados por un Data Source o una plantilla de datos." #: /var/www/html/cacti/data_source_profiles.php:932 msgid "Profiles that are in use by Data Sources become read only for now." msgstr "" "Perfiles que están en uso por un Data Source se convierten en solo lectura " "por ahora." #: /var/www/html/cacti/data_source_profiles.php:932 #: /var/www/html/cacti/include/global_form.php:194 msgid "Read Only" msgstr "Solo lectura" #: /var/www/html/cacti/data_source_profiles.php:933 #: /var/www/html/cacti/data_sources.php:1448 #: /var/www/html/cacti/include/global_settings.php:891 msgid "Poller Interval" msgstr "Intervalo de sondeo" #: /var/www/html/cacti/data_source_profiles.php:933 msgid "The Polling Frequency for the Profile" msgstr "La frecuencia de sondeo para el perfil" #: /var/www/html/cacti/data_source_profiles.php:934 #: /var/www/html/cacti/include/global_form.php:52 #: /var/www/html/cacti/include/global_form.php:457 msgid "Heartbeat" msgstr "Señal de vida" #: /var/www/html/cacti/data_source_profiles.php:934 msgid "" "The Amount of Time, in seconds, without good data before Data is stored as " "Unknown" msgstr "" "Cuanto tiempo, en segundos, sin buenos datos antes que los datos sean " "almacenados como desconocidos" #: /var/www/html/cacti/data_source_profiles.php:935 msgid "The number of Data Sources using this Profile." msgstr "El número de Data Sources usando este perfil." #: /var/www/html/cacti/data_source_profiles.php:936 msgid "The number of Data Templates using this Profile." msgstr "El número de plantillas de datos usando este perfil." #: /var/www/html/cacti/data_source_profiles.php:968 msgid "No Data Source Profiles Found" msgstr "No se encontraron perfiles de Data Source" #: /var/www/html/cacti/data_sources.php:36 #: /var/www/html/cacti/data_sources.php:482 /var/www/html/cacti/graphs.php:54 msgid "Change Device" msgstr "Cambiar dispositivo" #: /var/www/html/cacti/data_sources.php:37 /var/www/html/cacti/graphs.php:55 msgid "Reapply Suggested Names" msgstr "Volver a aplicar los nombres sugeridos" #: /var/www/html/cacti/data_sources.php:450 msgid "Click 'Continue' to delete the following Data Source" msgid_plural "Click 'Continue' to delete following Data Sources" msgstr[0] "Haga click en 'Continuar' para eliminar el siguiente Data Source" msgstr[1] "Haga click en 'Continuar' para eliminar los siguientes Data Sources" #: /var/www/html/cacti/data_sources.php:454 msgid "The following graph is using these data sources:" msgid_plural "The following graphs are using these data sources:" msgstr[0] "El siguiente gráfico esta usando estos data sources:" msgstr[1] "Los siguientes gráficos estan usando estos data sources:" #: /var/www/html/cacti/data_sources.php:463 msgid "Leave the Graph untouched." msgid_plural "Leave all Graphs untouched." msgstr[0] "No modificar el gráfico." msgstr[1] "No modificar los gráficos." #: /var/www/html/cacti/data_sources.php:464 msgid "" "Delete all Graph Items that reference this Data Source." msgid_plural "" "Delete all Graph Items that reference these Data Sources." msgstr[0] "" "Eliminar todos los Items de gráficos que referencian a este " "Data Source." msgstr[1] "" "Eliminar todos los Items de gráficos que referencian a " "estos Data Sources." #: /var/www/html/cacti/data_sources.php:465 msgid "Delete all Graphs that reference this Data Source." msgid_plural "" "Delete all Graphs that reference these Data Sources." msgstr[0] "" "Eliminar todos los gráficos que referencian a este Data " "Source." msgstr[1] "" "Eliminar todos los gráficos que referencian a estos Data " "Sources." #: /var/www/html/cacti/data_sources.php:472 msgid "Delete Data Source" msgid_plural "Delete Data Sources" msgstr[0] "Eliminar Data Source" msgstr[1] "Eliminar Data Sources" #: /var/www/html/cacti/data_sources.php:476 msgid "Choose a new Device for this Data Source and click 'Continue'." msgid_plural "Choose a new Device for these Data Sources and click 'Continue'" msgstr[0] "" "Elija un nuevo dispositivo para este Data Source y haga click en 'Continuar'." msgstr[1] "" "Elija un nuevo dispositivo para estos Data Sources y haga click en " "'Continuar'" #: /var/www/html/cacti/data_sources.php:478 msgid "New Device:" msgstr "Nuevo dispositivo:" #: /var/www/html/cacti/data_sources.php:486 msgid "Click 'Continue' to enable the following Data Source." msgid_plural "Click 'Continue' to enable all following Data Sources." msgstr[0] "Haga click en 'Continuar' para habilitar el siguiente Data Source." msgstr[1] "" "Haga click en 'Continuar' para habilitar los siguientes Data Sources." #: /var/www/html/cacti/data_sources.php:491 msgid "Enable Data Source" msgid_plural "Enable Data Sources" msgstr[0] "Habilitar Data Source" msgstr[1] "Habilitar Data Sources" #: /var/www/html/cacti/data_sources.php:495 msgid "Click 'Continue' to disable the following Data Source." msgid_plural "Click 'Continue' to disable all following Data Sources." msgstr[0] "" "Haga click en 'Continuar' para deshabilitar el siguiente Data Source." msgstr[1] "" "Haga click en 'Continuar' para dehabilitar los siguientes Data Sources." #: /var/www/html/cacti/data_sources.php:500 msgid "Disable Data Source" msgid_plural "Disable Data Sources" msgstr[0] "Deshabilitar Data Source" msgstr[1] "Deshabilitar Data Sources" #: /var/www/html/cacti/data_sources.php:504 msgid "" "Click 'Continue' to re-apply the suggested name to the following Data Source." msgid_plural "" "Click 'Continue' to re-apply the suggested names to all following Data " "Sources." msgstr[0] "" "Haga click en 'Continuar' para volver a aplicar los nombres sugeridos al " "siguiente Data Source." msgstr[1] "" "Haga click en 'Continuar' para volver a aplicar los nombres sugeridos a " "todos los siguientes Data Sources." #: /var/www/html/cacti/data_sources.php:509 msgid "Reapply Suggested Naming to Data Source" msgid_plural "Reapply Suggested Naming to Data Sources" msgstr[0] "Volver a aplicar nombre sugerido al Data Source" msgstr[1] "Volver a aplicar nombre sugerido a los Data Sources" #: /var/www/html/cacti/data_sources.php:518 msgid "You must select at least one data source." msgstr "Debes seleccionar al menos un Data Source." #: /var/www/html/cacti/data_sources.php:586 #: /var/www/html/cacti/data_templates.php:631 #, php-format msgid "Custom Data [data input: %s]" msgstr "Datos personalizados [entrada de datos: %s]" #: /var/www/html/cacti/data_sources.php:619 #, php-format msgid "(From Device: %s)" msgstr "(Desde dispositivo: %s)" #: /var/www/html/cacti/data_sources.php:622 msgid "(From Data Template)" msgstr "(Desde plantilla de datos)" #: /var/www/html/cacti/data_sources.php:623 msgid "Nothing Entered" msgstr "Nada introducido" #: /var/www/html/cacti/data_sources.php:638 #: /var/www/html/cacti/data_templates.php:684 msgid "No Input Fields for the Selected Data Input Source" msgstr "" "No hay campos de entrada para la fuente de entrada de datos seleccionada" #: /var/www/html/cacti/data_sources.php:724 #, php-format msgid "Data Source %d does not exist." msgstr "Data Source %d no existe." #: /var/www/html/cacti/data_sources.php:729 #, php-format msgid "Data Template Selection [edit: %s]" msgstr "Selección de Plantilla de datos [editar: %s]" #: /var/www/html/cacti/data_sources.php:735 msgid "Data Template Selection [new]" msgstr "Selección de Plantilla de datos [nueva]" #: /var/www/html/cacti/data_sources.php:768 msgid "Turn Off Data Source Debug Mode." msgstr "Desactivar el modo de depuración de Data Source." #: /var/www/html/cacti/data_sources.php:768 msgid "Turn On Data Source Debug Mode." msgstr "Activar el modo de depuración de Data Source." #: /var/www/html/cacti/data_sources.php:769 msgid "Turn Off Data Source Info Mode." msgstr "Desactivar el modo de información de Data Source." #: /var/www/html/cacti/data_sources.php:769 msgid "Turn On Data Source Info Mode." msgstr "Activar el modo de información de Data Source." #: /var/www/html/cacti/data_sources.php:772 msgid "Edit Data Template." msgstr "Editar plantilla de datos." #: /var/www/html/cacti/data_sources.php:775 /var/www/html/cacti/graphs.php:1280 msgid "Edit Device." msgstr "Editar dispositivo." #: /var/www/html/cacti/data_sources.php:838 msgid "Selected Data Template" msgstr "Plantilla de datos seleccionados" #: /var/www/html/cacti/data_sources.php:839 #, php-format msgid "" "The name given to this data template. Please note that you may only change " "Graph Templates to a 100% compatible Graph Template, which means that it " "includes identical Data Sources." msgstr "" "El nombre dado a esta plantilla de datos. Ten en cuenta que solo puedes " "cambiar plantillas de gráficos a plantillas de gráficos 100% compatibles, lo " "que significa que incluye idénticos Data Sources." #: /var/www/html/cacti/data_sources.php:847 msgid "Choose the Device that this Data Source belongs to." msgstr "Elija el dispositivo al que este Data Source pertenece." #: /var/www/html/cacti/data_sources.php:897 msgid "Supplemental Data Template Data" msgstr "Datos complementarios de la Plantilla de datos" #: /var/www/html/cacti/data_sources.php:899 msgid "Data Source Fields" msgstr "Campos de Data Source" #: /var/www/html/cacti/data_sources.php:900 msgid "Data Source Item Fields" msgstr "Campos de item de Data Source" #: /var/www/html/cacti/data_sources.php:901 msgid "Custom Data" msgstr "Datos personalizados" #: /var/www/html/cacti/data_sources.php:999 #, php-format msgid "Data Source Item %s" msgstr "Item de Data Source %s" #: /var/www/html/cacti/data_sources.php:1002 #: /var/www/html/cacti/data_templates.php:584 msgid "New" msgstr "Nuevo" #: /var/www/html/cacti/data_sources.php:1061 msgid "Data Source Debug" msgstr "Depurar de Data Source" #: /var/www/html/cacti/data_sources.php:1081 msgid "RRDtool Tune Info" msgstr "RRDtool Tune Info" #: /var/www/html/cacti/data_sources.php:1107 #: /var/www/html/cacti/include/global_form.php:402 msgid "External" msgstr "Externo" #: /var/www/html/cacti/data_sources.php:1109 #: /var/www/html/cacti/include/global_arrays.php:516 #: /var/www/html/cacti/include/global_arrays.php:547 #: /var/www/html/cacti/include/global_arrays.php:548 #: /var/www/html/cacti/include/global_arrays.php:549 #: /var/www/html/cacti/include/global_arrays.php:892 #: /var/www/html/cacti/include/global_arrays.php:893 #: /var/www/html/cacti/include/global_arrays.php:894 #: /var/www/html/cacti/include/global_arrays.php:895 #: /var/www/html/cacti/include/global_arrays.php:1213 #: /var/www/html/cacti/include/global_arrays.php:1214 #: /var/www/html/cacti/include/global_arrays.php:1215 #: /var/www/html/cacti/include/global_arrays.php:1216 #: /var/www/html/cacti/include/global_arrays.php:1217 #: /var/www/html/cacti/include/global_arrays.php:1250 #: /var/www/html/cacti/include/global_arrays.php:1251 #: /var/www/html/cacti/include/global_arrays.php:1263 #: /var/www/html/cacti/include/global_arrays.php:1264 #: /var/www/html/cacti/include/global_arrays.php:1265 #: /var/www/html/cacti/include/global_arrays.php:1266 #: /var/www/html/cacti/include/global_arrays.php:1267 #: /var/www/html/cacti/include/global_settings.php:1870 #, php-format msgid "%d Seconds" msgstr "%d Segundos" #: /var/www/html/cacti/data_sources.php:1111 #: /var/www/html/cacti/include/global_arrays.php:517 #: /var/www/html/cacti/include/global_arrays.php:550 #: /var/www/html/cacti/include/global_arrays.php:896 #: /var/www/html/cacti/include/global_arrays.php:1218 #: /var/www/html/cacti/include/global_arrays.php:1252 #: /var/www/html/cacti/include/global_arrays.php:1268 #: /var/www/html/cacti/include/global_settings.php:1122 #: /var/www/html/cacti/include/global_settings.php:1870 msgid "1 Minute" msgstr "1 Minuto" #: /var/www/html/cacti/data_sources.php:1237 #: /var/www/html/cacti/graphs_items.php:311 #, php-format msgid "Data Sources [%s]" msgstr "Data Sources [%s]" #: /var/www/html/cacti/data_sources.php:1237 msgid "No Device" msgstr "Ningún dispositivo" #: /var/www/html/cacti/data_sources.php:1276 #: /var/www/html/cacti/data_sources.php:1302 #: /var/www/html/cacti/data_sources.php:1318 #: /var/www/html/cacti/data_templates.php:764 #: /var/www/html/cacti/graph_view.php:804 #: /var/www/html/cacti/graphs_new.php:536 #: /var/www/html/cacti/lib/clog_webapi.php:423 #: /var/www/html/cacti/lib/html_graph.php:385 #: /var/www/html/cacti/lib/html_reports.php:321 #: /var/www/html/cacti/lib/html_tree.php:883 #: /var/www/html/cacti/plugins.php:298 /var/www/html/cacti/settings.php:207 #: /var/www/html/cacti/settings.php:226 /var/www/html/cacti/settings.php:252 #: /var/www/html/cacti/utilities.php:648 /var/www/html/cacti/utilities.php:1062 msgid "All" msgstr "Todos" #: /var/www/html/cacti/data_sources.php:1298 #: /var/www/html/cacti/data_templates.php:760 msgid "Profile" msgstr "Perfil" #: /var/www/html/cacti/data_sources.php:1314 #: /var/www/html/cacti/data_sources.php:1320 msgid "Orphaned" msgstr "Huérfanos" #: /var/www/html/cacti/data_sources.php:1324 #: /var/www/html/cacti/data_sources.php:1437 /var/www/html/cacti/host.php:1566 #: /var/www/html/cacti/include/global_arrays.php:737 #: /var/www/html/cacti/lib/api_automation.php:282 #: /var/www/html/cacti/lib/functions.php:2129 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/utilities.php:286 msgid "Data Sources" msgstr "Data Sources" #: /var/www/html/cacti/data_sources.php:1446 #: /var/www/html/cacti/utilities.php:1744 msgid "Data Source Name" msgstr "Nombre de Data Source" #: /var/www/html/cacti/data_sources.php:1446 msgid "" "The name of this Data Source. Generally programtically generated from the " "Data Template definition." msgstr "" "El nombre de esta Data Source. Generalmente generado automáticamente a " "partir de las definiciones de la Plantilla de datos." #: /var/www/html/cacti/data_sources.php:1447 msgid "" "The internal database ID for this Data Source. Useful when performing " "automation or debugging." msgstr "" "El ID interno de base de datos para este Data Source. Util cuando se realiza " "automatización o depuración." #: /var/www/html/cacti/data_sources.php:1448 msgid "The frequency that data is collected for this Data Source." msgstr "" "La frecuencia con la que los datos son recolectados para este Data Source." #: /var/www/html/cacti/data_sources.php:1449 msgid "If this Data Source is no long in use by Graphs, it can be Deleted." msgstr "Si este Data Source no está en uso por gráficos, puede ser eliminado." #: /var/www/html/cacti/data_sources.php:1450 #: /var/www/html/cacti/data_templates.php:932 #: /var/www/html/cacti/plugins.php:38 /var/www/html/cacti/plugins.php:299 msgid "Active" msgstr "Activo" #: /var/www/html/cacti/data_sources.php:1450 msgid "" "Whether or not data will be collected for this Data Source. Controlled at " "the Data Template level." msgstr "" "Si se recolectarán o no datos para este Data Source. Controlado a nivel de " "la Plantilla de datos." #: /var/www/html/cacti/data_sources.php:1451 msgid "The Data Template that this Data Source was based upon." msgstr "La plantilla de datos en la que este Data Source está basado." #: /var/www/html/cacti/data_sources.php:1498 msgid "No Data Sources Found" msgstr "No se encontraron Data Sources" #: /var/www/html/cacti/data_templates.php:35 msgid "Change Profile" msgstr "Cambiar perfil" #: /var/www/html/cacti/data_templates.php:353 msgid "" "Click 'Continue' to delete the following Data Template(s). Any data sources " "attached to these templates will become individual Data Source(s) and all " "Templating benefits will be removed." msgstr "" "Haga click en 'Continuar' para eliminar la(s) siguiente(s) Plantilla(s) de " "datos. Cualquier data source asociado a estas plantillas se volverá data " "source individual y todos los beneficios de plantillas serán removidos." #: /var/www/html/cacti/data_templates.php:358 msgid "Delete Data Template(s)" msgstr "Eliminar Plantilla(s) de datos" #: /var/www/html/cacti/data_templates.php:362 msgid "" "Click 'Continue' to duplicate the following Data Template(s). You can " "optionally change the title format for the new Data Template(s)." msgstr "" "Haga click en 'Continuar' para duplicar la(s) siguiente(s) Plantilla(s) de " "datos. Opcionalmente puedes cambiar el formato del título para la(s) " "nueva(s) Plantilla(s) de datos." #: /var/www/html/cacti/data_templates.php:364 msgid "template_title" msgstr "template_title" #: /var/www/html/cacti/data_templates.php:368 msgid "Duplicate Data Template(s)" msgstr "Duplicar Plantilla(s) de datos" #: /var/www/html/cacti/data_templates.php:372 msgid "" "Click 'Continue' to change the default Data Source Profile for the following " "Data Template(s)." msgstr "" "Haga click en 'Continuar' para cambiar el perfil de Data Source " "predeterminado para la(s) siguiente(s) Plantilla(s) de datos." #: /var/www/html/cacti/data_templates.php:374 msgid "New Data Source Profile" msgstr "Nuevo perfil de Data Source" #: /var/www/html/cacti/data_templates.php:380 msgid "" "NOTE: This change only will affect future Data Sources and does not alter " "existing Data Sources." msgstr "" "NOTA: este cambio solo afectará a futuros Data Sources y no altera Data " "Sources existentes." #: /var/www/html/cacti/data_templates.php:384 msgid "Change Data Source Profile" msgstr "Cambiar perfil de Data Source" #: /var/www/html/cacti/data_templates.php:387 msgid "You must select at least one data template." msgstr "Debes seleccionar al menos una Plantilla de datos." #: /var/www/html/cacti/data_templates.php:499 #, php-format msgid "Data Templates [edit: %s]" msgstr "Plantilla de datos [editar: %s]" #: /var/www/html/cacti/data_templates.php:501 msgid "Data Templates [new]" msgstr "Plantilla de datos [Nuevo]" #: /var/www/html/cacti/data_templates.php:527 msgid "This field is always templated." msgstr "Este campo siempre requiere una plantilla." #: /var/www/html/cacti/data_templates.php:531 #: /var/www/html/cacti/data_templates.php:603 #: /var/www/html/cacti/data_templates.php:671 msgid "Use Per-Data Source Value (Ignore this Value)" msgstr "Usar valor por cada Data Source (ignora este valor)" #: /var/www/html/cacti/data_templates.php:584 #, php-format msgid "Data Source Item [%s]" msgstr "Item Data Source [%s]" #: /var/www/html/cacti/data_templates.php:676 msgid "Value will be derived from the device if this field is left empty." msgstr "Este valor derivará del dispositivo si es dejado vacío." #: /var/www/html/cacti/data_templates.php:745 #: /var/www/html/cacti/data_templates.php:776 #: /var/www/html/cacti/data_templates.php:898 #: /var/www/html/cacti/include/global_arrays.php:925 #: /var/www/html/cacti/lib/functions.php:2111 msgid "Data Templates" msgstr "Plantillas de Datos" #: /var/www/html/cacti/data_templates.php:907 msgid "Data Template Name" msgstr "Nombre de Plantilla de datos" #: /var/www/html/cacti/data_templates.php:907 msgid "The name of this Data Template." msgstr "El nombre de esta Plantilla de datos." #: /var/www/html/cacti/data_templates.php:908 msgid "" "The internal database ID for this Data Template. Useful when performing " "automation or debugging." msgstr "" "El ID de base de datos interno para esta Plantilla de datos. Util para " "realizar automatización o depuración." #: /var/www/html/cacti/data_templates.php:909 msgid "" "Data Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Data Source." msgstr "" "Plantillas de datos que están en uso no pueden ser eliminadas. En uso " "significa que están siendo referenciadas por un Data Source." #: /var/www/html/cacti/data_templates.php:910 msgid "The number of Data Sources using this Data Template." msgstr "El número de Data Sources usando esta Plantilla de datos." #: /var/www/html/cacti/data_templates.php:911 msgid "Input Method" msgstr "Método de entrada" #: /var/www/html/cacti/data_templates.php:911 msgid "The method that is used to place Data into the Data Source RRDfile." msgstr "El método usado para colocar datos en el archivo RRD del Data Source." #: /var/www/html/cacti/data_templates.php:912 msgid "Profile Name" msgstr "Nombre de perfil" #: /var/www/html/cacti/data_templates.php:912 msgid "The default Data Source Profile for this Data Template." msgstr "El perfil de Data Source predeterminado para esta Plantilla de datos." #: /var/www/html/cacti/data_templates.php:913 msgid "" "Data Sources based on Inactive Data Templates will not be updated when the " "poller runs." msgstr "" "Data Sources basados en Plantillas de datos inactivas no serán actualizados " "cuando la Sonda se ejecute." #: /var/www/html/cacti/data_templates.php:937 msgid "No Data Templates Found" msgstr "No se encontraron Plantillas de datos" #: /var/www/html/cacti/gprint_presets.php:148 msgid "Click 'Continue' to delete the folling GPRINT Preset(s)." msgstr "" "Haga click en 'Continuar' para eliminar los siguientes GPRINT " "preestablecidos." #: /var/www/html/cacti/gprint_presets.php:153 msgid "Delete GPRINT Preset(s)" msgstr "Eliminar GPRINT preestablecido(s)" #: /var/www/html/cacti/gprint_presets.php:156 msgid "You must select at least one GPRINT Preset." msgstr "Debes seleccionar al menos un GPRINT preestablecido." #: /var/www/html/cacti/gprint_presets.php:185 #, php-format msgid "GPRINT Presets [edit: %s]" msgstr "GPRINT preestablecidos [editar: %s]" #: /var/www/html/cacti/gprint_presets.php:187 msgid "GPRINT Presets [new]" msgstr "GPRINT preestablecidos [nuevo]" #: /var/www/html/cacti/gprint_presets.php:253 #: /var/www/html/cacti/lib/functions.php:1961 msgid "GPRINT Presets" msgstr "GPRINT preestablecidos" #: /var/www/html/cacti/gprint_presets.php:268 #: /var/www/html/cacti/gprint_presets.php:383 #: /var/www/html/cacti/include/global_arrays.php:765 msgid "GPRINTs" msgstr "GPRINTs" #: /var/www/html/cacti/gprint_presets.php:392 msgid "GPRINT Preset Name" msgstr "Nombre de GPRINT preestablecido" #: /var/www/html/cacti/gprint_presets.php:392 msgid "The name of this GPRINT Preset." msgstr "El nombre de este GPRINT preestablecido." #: /var/www/html/cacti/gprint_presets.php:393 msgid "Format" msgstr "Formato" #: /var/www/html/cacti/gprint_presets.php:393 msgid "The GPRINT format string." msgstr "Formato de texto GPRINT." #: /var/www/html/cacti/gprint_presets.php:394 msgid "" "GPRINTs that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" "GPRINTs que están siendo usados no pueden eliminarse. En uso significa que " "están siendo referenciados ya sea por un gráfico una Plantilla de gráficos." #: /var/www/html/cacti/gprint_presets.php:395 msgid "The number of Graphs using this GPRINT." msgstr "La cantidad de gráficos usando este GPRINT." #: /var/www/html/cacti/gprint_presets.php:396 msgid "The number of Graphs Templates using this GPRINT." msgstr "Cantidad de Plantillas de gráficos usando este GPRINT." #: /var/www/html/cacti/gprint_presets.php:420 msgid "No GPRINT Presets" msgstr "No hay GPRINT preestablecidos" #: /var/www/html/cacti/graph.php:94 msgid "Viewing Graph" msgstr "Visualizando gráfico" #: /var/www/html/cacti/graph.php:129 /var/www/html/cacti/lib/html.php:292 msgid "Graph Details, Zooming and Debugging Utilities" msgstr "Detalles de gráficos, Zoom y utilidades de depuración" #: /var/www/html/cacti/graph.php:130 msgid "CSV Export" msgstr "Exportar CSV" #: /var/www/html/cacti/graph.php:131 msgid "Real-time" msgstr "Real-time" #: /var/www/html/cacti/graph.php:207 #: /var/www/html/cacti/include/global_session.php:98 msgid "Utility View" msgstr "Vista de Utilidades" #: /var/www/html/cacti/graph.php:305 msgid "Graph Utility View" msgstr "Vista de Utilidades de gráficos" #: /var/www/html/cacti/graph.php:318 msgid "Graph Source/Properties" msgstr "Origen del gráfico/Propiedades" #: /var/www/html/cacti/graph.php:322 msgid "Graph Data" msgstr "Datos de gráfico" # Probablemente actualizar se ajuste mas. #: /var/www/html/cacti/graph.php:335 /var/www/html/cacti/graph_realtime.php:266 #: /var/www/html/cacti/lib/clog_webapi.php:441 #: /var/www/html/cacti/lib/html_graph.php:307 #: /var/www/html/cacti/lib/html_tree.php:804 #: /var/www/html/cacti/lib/html_tree.php:825 #: /var/www/html/cacti/utilities.php:1080 #: /var/www/html/cacti/utilities.php:1959 msgid "Refresh" msgstr "Refrescar" #: /var/www/html/cacti/graph.php:481 msgid "RRDtool Graph Syntax" msgstr "Sintaxis de gráfico RRDtool" #: /var/www/html/cacti/graph_realtime.php:194 msgid "Real-time has been disabled by your administrator." msgstr "Real-time ha sido desactivado por tu administrador." #: /var/www/html/cacti/graph_realtime.php:201 msgid "" "The Image Cache Directory does not exist. Please first create it and set " "permissions and then attempt to open another Real-time graph." msgstr "" "El directorio de cache de imagen no existe. Primero crealo y establece los " "permisos y luego intenta abrir otro gráfico Real-time." #: /var/www/html/cacti/graph_realtime.php:208 msgid "" "The Image Cache Directory is not writable. Please set permissions and then " "attempt to open another Real-time graph." msgstr "" "El directorio de cache de imagen no es escribible. Establece los permisos y " "luego intenta abrir otro gráfico Real-time." #: /var/www/html/cacti/graph_realtime.php:223 msgid "Cacti Real-time Graphing" msgstr "Gráficos Real-time de Cacti" #: /var/www/html/cacti/graph_realtime.php:252 #: /var/www/html/cacti/lib/html_graph.php:316 #: /var/www/html/cacti/lib/html_tree.php:813 msgid "Window" msgstr "Ventana" #: /var/www/html/cacti/graph_realtime.php:282 #, php-format msgid "%d seconds left." msgstr "%d segundos restantes." #: /var/www/html/cacti/graph_realtime.php:310 msgid "seconds left." msgstr "segundos restantes." #: /var/www/html/cacti/graph_templates.php:35 msgid "Resize" msgstr "Cambiar tamaño" #: /var/www/html/cacti/graph_templates.php:36 msgid "Sync Graphs" msgstr "Sincronizar gráficos" #: /var/www/html/cacti/graph_templates.php:312 msgid "" "Click 'Continue' to delete the following Graph Template(s). Any Graph(s) " "associated with the Template(s) will become individual Graph(s)." msgstr "" "Haga click en 'Continuar' para eliminar la(s) siguiente(s) Plantilla(s) de " "gráficos. Cualquier gráfico asociado con la Plantilla se convertirá en " "gráfico individual." #: /var/www/html/cacti/graph_templates.php:317 msgid "Delete Graph Template(s)" msgstr "Borrar plantilla(s) de gráfico" #: /var/www/html/cacti/graph_templates.php:321 msgid "" "Click 'Continue' to duplicate the following Graph Template(s). You can " "optionally change the title format for the new Graph Template(s)." msgstr "" "Haga click en 'Continuar' para duplicar la(s) siguiente(s) Plantilla(s) de " "gráficos. Opcionalmente puedes cambiar el formato de título para la nueva " "Plantilla de g´raficos." #: /var/www/html/cacti/graph_templates.php:327 msgid "Duplicate Graph Template(s)" msgstr "Duplicar plantilla(s) de gráfico" #: /var/www/html/cacti/graph_templates.php:331 msgid "" "Click 'Continue' to resize the following Graph Template(s) and Graph(s) to " "the Height and Width below. The defaults below are maintained in Settings." msgstr "" "Haga click en 'Continuar' para cambiar el tamaño de la(s) siguiente(s) " "Plantilla(s) de gráficos y gráficos a la altura y ancho a continuación. Los " "valores por defecto debajo son mantenidos en la configuración." #: /var/www/html/cacti/graph_templates.php:340 #: /var/www/html/cacti/lib/html_reports.php:117 msgid "Graph Height" msgstr "Altura de gráfico" #: /var/www/html/cacti/graph_templates.php:342 #: /var/www/html/cacti/lib/html_reports.php:109 msgid "Graph Width" msgstr "Ancho de gráfico" #: /var/www/html/cacti/graph_templates.php:347 msgid "Resize Selected Graph Template(s)" msgstr "Cambiar tamaño de la(s) Plantilla(s) de gráficos seleccionada(s)" #: /var/www/html/cacti/graph_templates.php:351 msgid "" "Click 'Continue' to Synchronize your Graphs with the following Graph " "Template(s). This function is important if you have Graphs that exist with " "multiple versions of a Graph Template and wish to make them all common in " "appearance." msgstr "" "Haga click en 'Continuar' para sincronizar tus gráficos con la(s) " "siguiente(s) Plantilla(s) de gráficos. Esta función es importante si tienes " "gráficos que existen con varias versiones de una Plantilla de gráficos y " "quieres hacerlos comunes en apariencia." #: /var/www/html/cacti/graph_templates.php:356 msgid "Synchronize Graphs to Graph Template(s)" msgstr "Sincronizar gráficos con Plantilla(s) de gráficos" #: /var/www/html/cacti/graph_templates.php:359 msgid "ERROR: You must select at least one graph template." msgstr "ERROR: debes seleccionar al menos una plantilla de gráfico." #: /var/www/html/cacti/graph_templates.php:413 #, php-format msgid "Graph Template Items [edit: %s]" msgstr "Items de Plantilla de gráfico [editar: %s]" #: /var/www/html/cacti/graph_templates.php:420 #: /var/www/html/cacti/lib/functions.php:2081 msgid "Graph Item Inputs" msgstr "Entradas de items de gráficos" #: /var/www/html/cacti/graph_templates.php:446 msgid "No Inputs" msgstr "Sin entradas" #: /var/www/html/cacti/graph_templates.php:491 #, php-format msgid "Template [edit: %s]" msgstr "Plantilla [editar: %s]" #: /var/www/html/cacti/graph_templates.php:493 msgid "Template [new]" msgstr "Plantilla [nueva]" #: /var/www/html/cacti/graph_templates.php:509 msgid "Graph Template Options" msgstr "Opciones de la plantilla de gráfico" #: /var/www/html/cacti/graph_templates.php:524 msgid "Use Per-Graph Value (Ignore this Value)" msgstr "Usar valor por cada gráfico (ignora este valor)" #: /var/www/html/cacti/graph_templates.php:619 #: /var/www/html/cacti/graph_templates.php:634 #: /var/www/html/cacti/graph_templates.php:754 #: /var/www/html/cacti/graphs_new.php:632 #: /var/www/html/cacti/include/global_arrays.php:924 #: /var/www/html/cacti/lib/functions.php:2057 #: /var/www/html/cacti/lib/html_tree.php:406 #: /var/www/html/cacti/user_admin.php:1368 #: /var/www/html/cacti/user_group_admin.php:1101 msgid "Graph Templates" msgstr "Plantilla de gráficos" #: /var/www/html/cacti/graph_templates.php:763 msgid "The name of this Graph Template." msgstr "El nombre de esta plantilla de gráficos." #: /var/www/html/cacti/graph_templates.php:765 msgid "" "Graph Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Graph." msgstr "" "Plantillas de gráficos que estan siendo usadas no pueden ser eliminadas. En " "uso significa que están siendo referenciadas por un gráfico." #: /var/www/html/cacti/graph_templates.php:766 msgid "The number of Graphs using this Graph Template." msgstr "Cantidad de gráficos usando esta plantilla de gráficos." #: /var/www/html/cacti/graph_templates.php:767 msgid "The default size of the resulting Graphs." msgstr "El tamaño predeterminado para los gráficos resultantes." #: /var/www/html/cacti/graph_templates.php:768 msgid "Image Format" msgstr "Formato de imagen" #: /var/www/html/cacti/graph_templates.php:768 msgid "The default image format for the resulting Graphs." msgstr "El formato de imagen predeterminado para los gráficos resultantes." #: /var/www/html/cacti/graph_templates.php:769 msgid "The vertical label for the resulting Graphs." msgstr "La etiqueta vertical para los gráficos resultantes." #: /var/www/html/cacti/graph_templates.php:769 #: /var/www/html/cacti/graph_xport.php:121 #: /var/www/html/cacti/graph_xport.php:155 msgid "Vertical Label" msgstr "Etiqueta vertical" #: /var/www/html/cacti/graph_templates.php:795 msgid "No Graph Templates Found" msgstr "No se encontraron plantillas de gráficos" #: /var/www/html/cacti/graph_templates_inputs.php:145 #, php-format msgid "Graph Item Inputs [edit graph: %s]" msgstr "Entrada de item de gráfico [editar gráfico: %s]" #: /var/www/html/cacti/graph_templates_inputs.php:191 msgid "Associated Graph Items" msgstr "Items de gráfico asociados" #: /var/www/html/cacti/graph_templates_items.php:99 #: /var/www/html/cacti/graph_templates_items.php:125 #: /var/www/html/cacti/graphs_items.php:140 msgid "Cur:" msgstr "Actual:" #: /var/www/html/cacti/graph_templates_items.php:106 #: /var/www/html/cacti/graph_templates_items.php:132 #: /var/www/html/cacti/graphs_items.php:147 msgid "Avg:" msgstr "Prom:" #: /var/www/html/cacti/graph_templates_items.php:113 #: /var/www/html/cacti/graph_templates_items.php:146 #: /var/www/html/cacti/graphs_items.php:161 msgid "Max:" msgstr "Máx:" #: /var/www/html/cacti/graph_templates_items.php:139 #: /var/www/html/cacti/graphs_items.php:154 msgid "Min:" msgstr "Mín:" #: /var/www/html/cacti/graph_templates_items.php:391 #, php-format msgid "Graph Template Items [edit graph: %s]" msgstr "Items de Plantilla de gráfico [editar gráfico: %s]" #: /var/www/html/cacti/graph_templates_items.php:452 msgid "Field Not Templated" msgstr "Campo sin Plantilla" #: /var/www/html/cacti/graph_view.php:242 msgid "YOU DO NOT HAVE RIGHTS FOR TREE VIEW" msgstr "NO TIENES PERMISOS PARA LA VISTA DE ARBOL" #: /var/www/html/cacti/graph_view.php:340 msgid "YOU DO NOT HAVE RIGHTS FOR PREVIEW VIEW" msgstr "NO TIENES PERMISOS PARA LA VISTA PREVIA" #: /var/www/html/cacti/graph_view.php:346 msgid "Graph Preview Filters" msgstr "Filtros de vista previa de gráficos" #: /var/www/html/cacti/graph_view.php:346 msgid "[ Custom Graph List Applied - Filtering from List ]" msgstr "[ Lista personalizada de gráficos aplicada - Filtrando de la lista ]" #: /var/www/html/cacti/graph_view.php:442 msgid "YOU DO NOT HAVE RIGHTS FOR LIST VIEW" msgstr "NO TIENE PRIVILEGIOS PARA VISTA DE LISTA" #: /var/www/html/cacti/graph_view.php:529 msgid "Graph List View Filters" msgstr "Filtros de la vista de gráfico de lista" #: /var/www/html/cacti/graph_view.php:529 msgid "[ Custom Graph List Applied - Filter FROM List ]" msgstr "[ Lista personalizada de gráfico aplicada - Filtro DESDE Lista ]" #: /var/www/html/cacti/graph_view.php:548 #: /var/www/html/cacti/graph_view.php:793 #: /var/www/html/cacti/graph_view.php:798 #: /var/www/html/cacti/lib/html_graph.php:163 #: /var/www/html/cacti/lib/html_graph.php:374 #: /var/www/html/cacti/lib/html_graph.php:379 #: /var/www/html/cacti/lib/html_tree.php:666 #: /var/www/html/cacti/lib/html_tree.php:872 #: /var/www/html/cacti/lib/html_tree.php:877 msgid "All Graphs & Templates" msgstr "Todas las Plantillas y gráficos" #: /var/www/html/cacti/graph_view.php:594 #: /var/www/html/cacti/graph_view.php:671 msgid "View" msgstr "Vista" #: /var/www/html/cacti/graph_view.php:594 #: /var/www/html/cacti/graph_view.php:671 #: /var/www/html/cacti/include/global_arrays.php:904 #: /var/www/html/cacti/lib/clog_webapi.php:279 msgid "View Graphs" msgstr "Ver gráficos" #: /var/www/html/cacti/graph_view.php:636 msgid "Graph Size" msgstr "Tamaño de gráfico" #: /var/www/html/cacti/graph_view.php:650 msgid "Aggregated Device" msgstr "Dispositivo agregado" #: /var/www/html/cacti/graph_view.php:653 msgid "Non-Device" msgstr "No es dispositivo" #: /var/www/html/cacti/graph_view.php:654 msgid "Not Applicable" msgstr "No aplica" #: /var/www/html/cacti/graph_view.php:745 #: /var/www/html/cacti/include/global_settings.php:1939 #: /var/www/html/cacti/lib/functions.php:1891 msgid "Preview Mode" msgstr "Modo de Vista Previa" #: /var/www/html/cacti/graph_view.php:795 #: /var/www/html/cacti/lib/html_graph.php:376 #: /var/www/html/cacti/lib/html_tree.php:874 #: /var/www/html/cacti/settings.php:243 msgid "Templates Selected" msgstr "Plantillas seleccionadas" #: /var/www/html/cacti/graph_xport.php:120 #: /var/www/html/cacti/graph_xport.php:154 #: /var/www/html/cacti/include/global_form.php:1760 #: /var/www/html/cacti/include/global_form.php:2007 #: /var/www/html/cacti/links.php:378 msgid "Title" msgstr "Título" #: /var/www/html/cacti/graph_xport.php:123 #: /var/www/html/cacti/graph_xport.php:156 msgid "Start Date" msgstr "Fecha de inicio" #: /var/www/html/cacti/graph_xport.php:124 #: /var/www/html/cacti/graph_xport.php:157 msgid "End Date" msgstr "Fecha de finalización" #: /var/www/html/cacti/graph_xport.php:125 #: /var/www/html/cacti/graph_xport.php:158 #: /var/www/html/cacti/include/global_form.php:406 msgid "Step" msgstr "Paso" #: /var/www/html/cacti/graph_xport.php:126 #: /var/www/html/cacti/graph_xport.php:159 msgid "Total Rows" msgstr "Filas totales" #: /var/www/html/cacti/graph_xport.php:127 #: /var/www/html/cacti/graph_xport.php:160 #: /var/www/html/cacti/lib/api_automation.php:570 msgid "Graph ID" msgstr "ID de Gráfico" #: /var/www/html/cacti/graph_xport.php:128 #: /var/www/html/cacti/graph_xport.php:161 msgid "Host ID" msgstr "ID de equipo" #: /var/www/html/cacti/graph_xport.php:132 #: /var/www/html/cacti/graph_xport.php:171 msgid "Nth Percentile" msgstr "Porcentaje %d" #: /var/www/html/cacti/graph_xport.php:138 #: /var/www/html/cacti/graph_xport.php:181 msgid "Summation" msgstr "Suma" #: /var/www/html/cacti/graph_xport.php:144 #: /var/www/html/cacti/utilities.php:244 /var/www/html/cacti/utilities.php:775 msgid "Date" msgstr "Fecha" #: /var/www/html/cacti/graph_xport.php:153 msgid "Summary Details" msgstr "Detalles del resumen" #: /var/www/html/cacti/graphs.php:49 /var/www/html/cacti/graphs.php:821 #: /var/www/html/cacti/lib/functions.php:1931 msgid "Change Graph Template" msgstr "Cambiar Plantilla de gráfico" #: /var/www/html/cacti/graphs.php:56 msgid "Create Aggregate Graph" msgstr "Crear gráficos agregados" #: /var/www/html/cacti/graphs.php:57 msgid "Create Aggregate from Template" msgstr "Crear agregado desde plantilla" #: /var/www/html/cacti/graphs.php:58 /var/www/html/cacti/graphs.php:1072 #: /var/www/html/cacti/host.php:43 msgid "Apply Automation Rules" msgstr "Aplicar reglas de automatización" #: /var/www/html/cacti/graphs.php:64 /var/www/html/cacti/graphs.php:843 msgid "Convert to Graph Template" msgstr "Convertir en Plantilla de gráfico" #: /var/www/html/cacti/graphs.php:176 /var/www/html/cacti/graphs_new.php:245 #: /var/www/html/cacti/graphs_new.php:261 #, php-format msgid "Created graph: %s" msgstr "Gráfico creado: %s" #: /var/www/html/cacti/graphs.php:184 /var/www/html/cacti/graphs_new.php:253 #: /var/www/html/cacti/graphs_new.php:269 msgid "ERROR: no Data Source associated. Check Template" msgstr "ERROR: ningún Data Source asociado. Chequear Plantilla" #: /var/www/html/cacti/graphs.php:782 msgid "" "Click 'Continue' to delete the following Graph(s). Note that if you choose " "to Delete Data Sources, only those Data Sources not in use elsewhere will " "also be Deleted." msgstr "" "Haga click en 'Continuar' para eliminar el/los siguiente(s) gráfico(s). " "Tenga en cuenta que si elige eliminar Data Sources, solo aquellos Data " "Sources que no esten en uso en otros lugares serán eliminados." #: /var/www/html/cacti/graphs.php:786 msgid "The following Data Source(s) are in use by these Graph(s)." msgstr "Los siguientes Data Sources estan siendo usados por estos gráficos." #: /var/www/html/cacti/graphs.php:795 msgid "" "Delete all Data Source(s) referenced by these Graph(s) that are not in use " "elsewhere." msgstr "" "Eliminar todos los Data Sources referenciados por estos gráficos que no " "estan siendo usados en otros lugares." #: /var/www/html/cacti/graphs.php:797 msgid "Leave the Data Source(s) untouched." msgstr "Deja el/los Data Source(s) sin modificar." #: /var/www/html/cacti/graphs.php:809 msgid "" "Choose a Graph Template and click 'Continue' to change the Graph Template " "for the following Graph(s). Please note, that only compatible Graph " "Templates will be displayed. Compatible is identified by those having " "identical Data Sources." msgstr "" "Elija una Plantilla de gráficos y haga click en 'Continuar' para cambiar la " "plantilla de gráficos para el/los siguiente(s) gráficos. Ten en cuenta que " "solamente se mostrarán Plantillas de gráficos compatibles. Compatible son " "aquellos que tienen Data Source idénticos." #: /var/www/html/cacti/graphs.php:811 msgid "New Graph Template" msgstr "Nueva plantilla de gráfico" #: /var/www/html/cacti/graphs.php:825 msgid "" "Click 'Continue' to duplicate the following Graph(s). You can optionally " "change the title format for the new Graph(s)." msgstr "" "Haga click en 'Continuar' para duplicar el/los siguiente(s) gráfico(s). " "Opcionalmente, puedes cambiar el formato del título para el/los nuevo(s) " "gráfico(s)." #: /var/www/html/cacti/graphs.php:828 msgid " (1)" msgstr " (1)" #: /var/www/html/cacti/graphs.php:832 msgid "Duplicate Graph(s)" msgstr "Duplicar gráfico(?)" #: /var/www/html/cacti/graphs.php:836 msgid "" "Click 'Continue' to convert the following Graph(s) into Graph Template(s). " "You can optionally change the title format for the new Graph Template(s)." msgstr "" "Haga click en 'Continuar' para convertir el/los siguiente(s) gráficos en " "plantilla(s) de gráfico(s). Opcionalmente puedes cambiar el formato del " "título para la(s) nueva(s) Plantilla(s) de gráfico(s)." #: /var/www/html/cacti/graphs.php:839 msgid " Template" msgstr " Plantilla" #: /var/www/html/cacti/graphs.php:847 msgid "" "Click 'Continue' to place the following Graph(s) under the Tree Branch " "selected below." msgstr "" "Haga click en 'Continuar' para ubicar el/los siguiente(s) gráfico(s) bajo la " "rama del árbol seleccionada debajo." #: /var/www/html/cacti/graphs.php:849 msgid "Destination Branch" msgstr "Rama destino" #: /var/www/html/cacti/graphs.php:862 msgid "Choose a new Device for these Graph(s) and click 'Continue'." msgstr "" "Elija un nuevo dispositivo para estos gráficos y haga click en 'Continuar'." #: /var/www/html/cacti/graphs.php:864 msgid "New Device" msgstr "Nuevo dispositivo" #: /var/www/html/cacti/graphs.php:872 msgid "Change Graph(s) Associated Device" msgstr "Cambiar gafico(s) de dispositivo asociado(s)" #: /var/www/html/cacti/graphs.php:876 msgid "" "Click 'Continue' to re-apply suggested naming to the following Graph(s)." msgstr "" "Haga click en 'Continuar' para volver a aplicar nombres sugeridos a el/los " "siguiente(s) gráficos." #: /var/www/html/cacti/graphs.php:881 msgid "Reapply Suggested Naming to Graph(s)" msgstr "Volver a aplicar nombres sugeridos a gráfico(s)" #: /var/www/html/cacti/graphs.php:897 msgid "" "Click 'Continue' to create an Aggregate Graph from the selected Graph(s)." msgstr "" "Haga click en 'Continuar' para crear una gráfico Agregado con los gráficos " "seleccionados." #: /var/www/html/cacti/graphs.php:906 msgid "The following data sources are in use by these graphs:" msgstr "Los siguientes Data Source están siendo usados por estos gráficos:" #: /var/www/html/cacti/graphs.php:939 msgid "Please confirm" msgstr "Por favor confirme" #: /var/www/html/cacti/graphs.php:1007 msgid "Resize Selected Graph(s)" msgstr "Cambiar el tamaño de los gráficos seleccionados" #: /var/www/html/cacti/graphs.php:1029 msgid "" "Select the Aggregate Template to use and press 'Continue' to create your " "Aggregate Graph. Otherwise press 'Cancel' to return." msgstr "" "Selecciona la Plantilla de Agregados a usar y presiona 'Continuar' para " "crear el gráfico Agregado. De lo contrario presiona 'Cancelar' para regresar." #: /var/www/html/cacti/graphs.php:1050 msgid "Create Aggregate" msgstr "Crear Agregado" #: /var/www/html/cacti/graphs.php:1054 msgid "" "There are presently no Aggregate Templates defined for this Graph Template. " "Please either first create an Aggregate Template for the selected Graphs " "Graph Template and try again, or simply crease an un-templated Aggregate " "Graph." msgstr "" "Actualmente no hay ninguna Plantilla de Agregados definida para esta " "Plantilla de gráficos. Primero crea una Plantilla de Agregados para las " "Plantillas de gráficos seleccionadas y vuelve a intentar, o simplemente crea " "un gráfico agregado sin Plantilla." #: /var/www/html/cacti/graphs.php:1055 msgid "Press 'Return' to return and select different Graphs." msgstr "Presione 'Regresar' para regresar y seleccionar diferentes gráficos." #: /var/www/html/cacti/graphs.php:1067 msgid "Click 'Continue' to apply Automation Rules to the following Graphs." msgstr "" "Haga click en 'Continuar' para aplicar las reglas de autmatización a los " "siguientes gráficos." #: /var/www/html/cacti/graphs.php:1083 msgid "You must select at least one Graph." msgstr "Debe seleccionar al menos uno gráfico." #: /var/www/html/cacti/graphs.php:1231 #, php-format msgid "Graph [edit: %s]" msgstr "Gráfico [editar: %s]" #: /var/www/html/cacti/graphs.php:1237 msgid "Graph [new]" msgstr "Gráfico [nuevo]" #: /var/www/html/cacti/graphs.php:1262 msgid "Turn Off Graph Debug Mode." msgstr "Deshabilitar modo de Depuración de gráficos." #: /var/www/html/cacti/graphs.php:1264 msgid "Turn On Graph Debug Mode." msgstr "Habilitar modo de depuración de gráficos." #: /var/www/html/cacti/graphs.php:1277 msgid "Edit Graph Template." msgstr "Editar plantilla de gráfico." #: /var/www/html/cacti/graphs.php:1283 msgid "Unlock Graph." msgstr "Desbloquear Grafico." #: /var/www/html/cacti/graphs.php:1285 msgid "Lock Graph." msgstr "Bloquear Grafico." #: /var/www/html/cacti/graphs.php:1309 msgid "Selected Graph Template" msgstr "Plantilla de gráfico seleccionada" #: /var/www/html/cacti/graphs.php:1310 #, php-format msgid "" "Choose a Graph Template to apply to this Graph. Please note that you may " "only change Graph Templates to a 100% compatible Graph Template, which means " "that it includes identical Data Sources." msgstr "" "Elija una plantilla de gráfico para aplicar a este gráfico. Ten en cuenta " "que sólo puedes cambiar Plantillas de gráficos a Plantillas de gráficos " "100% compatible, lo que significa que incluye Data Sources idénticos." #: /var/www/html/cacti/graphs.php:1318 msgid "Choose the Device that this Graph belongs to." msgstr "Elija el dispositivo al que este gráfico pertenece." #: /var/www/html/cacti/graphs.php:1358 msgid "Supplemental Graph Template Data" msgstr "Datos de la Plantilla de gráfico suplementario" #: /var/www/html/cacti/graphs.php:1360 msgid "Graph Fields" msgstr "Campos de gráfico" #: /var/www/html/cacti/graphs.php:1361 msgid "Graph Item Fields" msgstr "Campos de items de gráfico" #: /var/www/html/cacti/graphs.php:1630 #: /var/www/html/cacti/lib/functions.php:1919 msgid "Graph Management" msgstr "Administración de Gráficos" #: /var/www/html/cacti/graphs.php:1773 #: /var/www/html/cacti/include/global_form.php:1828 #: /var/www/html/cacti/lib/html_reports.php:386 #: /var/www/html/cacti/tree.php:784 msgid "Graph Name" msgstr "Nombre de Gráfico" #: /var/www/html/cacti/graphs.php:1773 msgid "" "The Title of this Graph. Generally programatically generated from the Graph " "Template definition or Suggested Naming rules. The max length of the Title " "is controlled under Settings->Visual." msgstr "" "El título de este gráfico. Generalmente generado por las definiciones de la " "Plantilla de gráficos o reglas de nombres sugeridos. La longitud máxima del " "título se configura en Opciones->Visualización." #: /var/www/html/cacti/graphs.php:1774 msgid "" "The internal database ID for this Graph. Useful when performing automation " "or debugging." msgstr "" "El ID interno de base de datos para este gráfico. Util cuando se realiza " "automatización o depuración." #: /var/www/html/cacti/graphs.php:1775 msgid "The Graph Template that this Graph was based upon." msgstr "La Plantilla de gráficos en la que este gráfico fue basado." #: /var/www/html/cacti/graphs.php:1776 msgid "The size of this Graph when not in Preview mode." msgstr "El tamaño de este gráfico cuando no está en modo vista previa." #: /var/www/html/cacti/graphs_items.php:309 msgid "Data Sources [No Device]" msgstr "Data Sources [Ningún dispositivo]" #: /var/www/html/cacti/graphs_items.php:326 #: /var/www/html/cacti/include/global_arrays.php:1036 #: /var/www/html/cacti/include/global_form.php:1529 msgid "Data Template" msgstr "Plantilla de datos" #: /var/www/html/cacti/graphs_items.php:399 #, php-format msgid "Graph Items [graph: %s]" msgstr "Items de gráfico [gráfico: %s]" #: /var/www/html/cacti/graphs_items.php:440 msgid "Choose the Data Source to associate with this Graph Item." msgstr "Elige el Data Source a asociar con este item del gráfico." #: /var/www/html/cacti/graphs_new.php:79 msgid "Default Settings Saved" msgstr "Configuraciones por defecto guardadas" #: /var/www/html/cacti/graphs_new.php:298 #, php-format msgid "Create Graph from %s" msgstr "Crear gráficos desde %s" #: /var/www/html/cacti/graphs_new.php:319 #, php-format msgid "Created %s Graphs from %s" msgstr "%s gráficos creados de %s" #: /var/www/html/cacti/graphs_new.php:321 #, php-format msgid "Created 1 Graph from %s" msgstr "1 gráfico creado de %s" #: /var/www/html/cacti/graphs_new.php:362 #, php-format msgid "Graph [Template: %s]" msgstr "Gráfico [Plantilla: %s]" #: /var/www/html/cacti/graphs_new.php:363 #, php-format msgid "Graph Items [Template: %s]" msgstr "Items de gráfico [Plantilla: %s]" #: /var/www/html/cacti/graphs_new.php:368 #, php-format msgid "Data Source [Template: %s]" msgstr "Data Source [Plantilla: %s]" #: /var/www/html/cacti/graphs_new.php:378 #, php-format msgid "Custom Data [Template: %s]" msgstr "Datos personalizados [Plantilla: %s]" #: /var/www/html/cacti/graphs_new.php:463 #, php-format msgid "New Graphs for [ %s ]" msgstr "Gráficos nuevos para [%s]" #: /var/www/html/cacti/graphs_new.php:466 msgid "New Graphs for [ All Devices ]" msgstr "Gráficos nuevos para [Todos los dispositivos]" #: /var/www/html/cacti/graphs_new.php:471 msgid "New Graphs for None Host Type" msgstr "Gráficos nuevos para ningún tipo de Host" #: /var/www/html/cacti/graphs_new.php:500 #: /var/www/html/cacti/include/global_session.php:96 msgid "Filter Settings Saved" msgstr "Opciones de filtro guardadas" #: /var/www/html/cacti/graphs_new.php:532 msgid "Graph Types" msgstr "Tipos de gráficos" #: /var/www/html/cacti/graphs_new.php:537 msgid "Graph Template Based" msgstr "Basados en plantilla de gráfico" #: /var/www/html/cacti/graphs_new.php:561 msgid "Save Filters" msgstr "Guardar filtros" #: /var/www/html/cacti/graphs_new.php:594 msgid "Edit this Device" msgstr "Editar este dispositivo" #: /var/www/html/cacti/graphs_new.php:595 msgid "Create New Device" msgstr "Crear nuevo dispositivo" #: /var/www/html/cacti/graphs_new.php:638 #: /var/www/html/cacti/graphs_new.php:931 /var/www/html/cacti/lib/html.php:761 #: /var/www/html/cacti/user_admin.php:1585 #: /var/www/html/cacti/user_group_admin.php:1316 msgid "Select All" msgstr "Seleccionar todo" #: /var/www/html/cacti/graphs_new.php:638 #: /var/www/html/cacti/graphs_new.php:931 /var/www/html/cacti/lib/html.php:674 #: /var/www/html/cacti/lib/html.php:761 msgid "Select All Rows" msgstr "Seleccionar todas las filas" #: /var/www/html/cacti/graphs_new.php:725 #: /var/www/html/cacti/include/global_arrays.php:729 #: /var/www/html/cacti/include/global_arrays.php:800 #: /var/www/html/cacti/lib/html_form.php:1136 #: /var/www/html/cacti/lib/html_form.php:1149 /var/www/html/cacti/tree.php:1161 msgid "Create" msgstr "Crear" #: /var/www/html/cacti/graphs_new.php:727 msgid "(Select a graph type to create)" msgstr "(Selecciona un tipo de gráfico a crear)" #: /var/www/html/cacti/graphs_new.php:811 #, php-format msgid "Data Query [%s]" msgstr "Consulta de datos [%s]" #: /var/www/html/cacti/graphs_new.php:927 msgid "From there you can get more information." msgstr "Desde donde puedes obtener mas información." #: /var/www/html/cacti/graphs_new.php:927 msgid "" "This Data Query returned 0 rows, perhaps there was a problem executing this " "Data Query." msgstr "" "Esta consulta de datos devolvió 0 filas, quizás hubo un problema ejecutando " "esta consulta de datos." #: /var/www/html/cacti/graphs_new.php:927 msgid "You can run this Data Query in debug mode" msgstr "Puedes ejecutar esta consulta de datos en modo de depuración" #: /var/www/html/cacti/graphs_new.php:970 msgid "Search Returned no Rows." msgstr "La busqueda no produjo resultados." #: /var/www/html/cacti/graphs_new.php:975 msgid "Error in data query." msgstr "Error en la consulta de datos." #: /var/www/html/cacti/graphs_new.php:999 msgid "Select a Graph Type to Create" msgstr "Seleccionar Tipo de gráfico a crear" #: /var/www/html/cacti/graphs_new.php:1002 msgid "Make selection default" msgstr "Hacer esta selección predeterminada" #: /var/www/html/cacti/graphs_new.php:1002 msgid "Set Default" msgstr "Establecer como predeterminado" #: /var/www/html/cacti/host.php:41 msgid "Change Device Settings" msgstr "Cambiar opciones de dispositivo" #: /var/www/html/cacti/host.php:42 msgid "Clear Statistics" msgstr "Borrar estadisticas" #: /var/www/html/cacti/host.php:44 msgid "Sync to Device Template" msgstr "Sincronizar con plantilla de dispositivo" #: /var/www/html/cacti/host.php:380 msgid "Click 'Continue' to enable the following Device(s)." msgstr "" "Haga click en 'Continuar' para habilitar el/los siguiente(s) dispositivo(s)." #: /var/www/html/cacti/host.php:385 msgid "Enable Device(s)" msgstr "Habilitar dispositivo(s)" #: /var/www/html/cacti/host.php:389 msgid "Click 'Continue' to disable the following Device(s)." msgstr "" "Haga click en 'Continuar' para deshabilitar el/los siguiente(s) " "dispositivo(s)." #: /var/www/html/cacti/host.php:394 msgid "Disable Device(s)" msgstr "Deshabilitar dispositivo(s)" #: /var/www/html/cacti/host.php:398 msgid "" "Click 'Continue' to change the Device options below for multiple Device(s). " "Please check the box next to the fields you want to update, and then fill in " "the new value." msgstr "" "Haga click en 'Continuar' para cambiar las opciones del dispositivo debajo " "para multiples dispositivos. Marque la casilla junto a los campos que " "quieres actualizar, y luego completa el nuevo valor." #: /var/www/html/cacti/host.php:421 msgid "Update this Field" msgstr "Actualizar este campo" #: /var/www/html/cacti/host.php:436 msgid "Change Device(s) SNMP Options" msgstr "Cambiar opciones SNMP de dispositivos" #: /var/www/html/cacti/host.php:440 msgid "Click 'Continue' to clear the counters for the following Device(s)." msgstr "" "Haga click en 'Continuar' para borrar los contadores de el/los siguiente(s) " "dispositivo(s)." #: /var/www/html/cacti/host.php:445 msgid "Clear Statistics on Device(s)" msgstr "Borrar estadísticas de dispositivo(s)" #: /var/www/html/cacti/host.php:449 msgid "" "Click 'Continue' to Synchronize the following Device(s) to their Device " "Template." msgstr "" "Haga click en 'Continuar' para sincronizar los siguientes dispositivos con " "sus Plantillas de dispositivos." #: /var/www/html/cacti/host.php:454 msgid "Synchronize Device(s)" msgstr "Sincronizar dispositivo(s)" #: /var/www/html/cacti/host.php:458 msgid "Click 'Continue' to delete the following Device(s)." msgstr "" "Haga click en 'Continuar' para eliminar el/los siguiente(s) dispositivo(s)." #: /var/www/html/cacti/host.php:461 msgid "" "Leave all Graph(s) and Data Source(s) untouched. Data Source(s) will be " "disabled however." msgstr "" "Deja todos los gráficos y Data Sources sin tocar. Sin embargo los Data " "Sources serán deshabilitados." #: /var/www/html/cacti/host.php:462 msgid "Delete all associated Graph(s) and Data Source(s)." msgstr "Eliminar todos los gráficos y Data Sources asociados." #: /var/www/html/cacti/host.php:468 msgid "Delete Device(s)" msgstr "Eliminar Dispositivo(s)" #: /var/www/html/cacti/host.php:472 msgid "" "Click 'Continue' to place the following Device(s) under the branch selected " "below." msgstr "" "Haga click en 'Continuar' para colocar el/los siguiente(s) dispositivo(s) " "bajo la rama del árbol seleccionada debajo." #: /var/www/html/cacti/host.php:482 msgid "Place Device(s) on Tree" msgstr "Colocar dispositivo(s) en árbol" #: /var/www/html/cacti/host.php:486 msgid "Click 'Continue' to apply Automation Rules to the following Devices(s)." msgstr "" "Haga click en 'Continuar' para aplicar las reglas de automatización a el/los " "siguiente(s) dispositivo(s)." #: /var/www/html/cacti/host.php:491 msgid "Run Automation on Device(s)" msgstr "Ejecutar automatización en dispositivo(s)" #: /var/www/html/cacti/host.php:502 msgid "You must select at least one device." msgstr "Debes seleccionar al menos un dispositivo." #: /var/www/html/cacti/host.php:628 msgid "Device [new]" msgstr "Dispositivo [Nuevo]" #: /var/www/html/cacti/host.php:634 #, php-format msgid "Device [edit: %s]" msgstr "Dispositivo [editar: %s]" #: /var/www/html/cacti/host.php:636 msgid "Disable Device Debug" msgstr "Deshabilitar depuración de dispositivo" #: /var/www/html/cacti/host.php:638 msgid "Enable Device Debug" msgstr "Habilitar depuración de dispositivo" #: /var/www/html/cacti/host.php:651 msgid "Create Graphs for this Device" msgstr "Crear gráficos para este dispositivo" #: /var/www/html/cacti/host.php:653 msgid "Data Source List" msgstr "Lista de Data Source" #: /var/www/html/cacti/host.php:654 msgid "Graph List" msgstr "Lista de gráficos" #: /var/www/html/cacti/host.php:660 msgid "Contacting Device" msgstr "Contactando dispositivo" #: /var/www/html/cacti/host.php:692 msgid "Data Query Debug Information" msgstr "Información de depuración de la consulta de datos" #: /var/www/html/cacti/host.php:695 #: /var/www/html/cacti/templates_import.php:141 msgid "Hide" msgstr "Ocultar" #: /var/www/html/cacti/host.php:773 /var/www/html/cacti/tree.php:1281 #: /var/www/html/cacti/tree.php:1355 /var/www/html/cacti/tree.php:1463 msgid "Edit" msgstr "Editar" #: /var/www/html/cacti/host.php:773 msgid "Is Being Graphed" msgstr "Esta siendo graficado" #: /var/www/html/cacti/host.php:773 msgid "Not Being Graphed" msgstr "No esta siendo graficado" #: /var/www/html/cacti/host.php:776 msgid "Delete Graph Template Association" msgstr "Desasociar Plantilla de gráfico" #: /var/www/html/cacti/host.php:783 /var/www/html/cacti/host_templates.php:493 msgid "No associated graph templates." msgstr "No hay plantillas de gráficos asociada." #: /var/www/html/cacti/host.php:792 /var/www/html/cacti/host_templates.php:502 msgid "Add Graph Template" msgstr "Agregar plantilla de gráfico" #: /var/www/html/cacti/host.php:798 msgid "Add Graph Template to Device" msgstr "Agregar plantilla de gráfico a dispositivo" #: /var/www/html/cacti/host.php:808 /var/www/html/cacti/host_templates.php:525 msgid "Associated Data Queries" msgstr "Consultas de datos de asociadas" #: /var/www/html/cacti/host.php:813 /var/www/html/cacti/host.php:909 msgid "Re-Index Method" msgstr "Método de Re-indexación" #: /var/www/html/cacti/host.php:815 #: /var/www/html/cacti/lib/api_automation.php:1243 #: /var/www/html/cacti/lib/api_automation.php:1305 #: /var/www/html/cacti/lib/api_automation.php:1369 #: /var/www/html/cacti/lib/functions.php:1937 #: /var/www/html/cacti/lib/functions.php:2003 #: /var/www/html/cacti/lib/functions.php:2069 #: /var/www/html/cacti/lib/functions.php:2105 #: /var/www/html/cacti/lib/functions.php:2123 #: /var/www/html/cacti/lib/functions.php:2141 #: /var/www/html/cacti/lib/functions.php:2159 #: /var/www/html/cacti/lib/functions.php:2189 #: /var/www/html/cacti/lib/functions.php:2225 #: /var/www/html/cacti/lib/functions.php:2255 #: /var/www/html/cacti/lib/functions.php:2345 #: /var/www/html/cacti/lib/functions.php:2531 #: /var/www/html/cacti/lib/functions.php:2555 #: /var/www/html/cacti/lib/functions.php:2573 #: /var/www/html/cacti/lib/functions.php:2591 #: /var/www/html/cacti/lib/functions.php:2609 #: /var/www/html/cacti/lib/functions.php:2633 #: /var/www/html/cacti/lib/html_reports.php:1251 #: /var/www/html/cacti/links.php:376 /var/www/html/cacti/plugins.php:385 msgid "Actions" msgstr "Acciones" #: /var/www/html/cacti/host.php:876 #, php-format msgid " [%d Items, %d Rows]" msgstr " [%d Items, %d filas]" #: /var/www/html/cacti/host.php:876 msgid "Fail" msgstr "Fallo" #: /var/www/html/cacti/host.php:876 /var/www/html/cacti/lib/functions.php:3865 #: /var/www/html/cacti/lib/functions.php:3870 msgid "Success" msgstr "Exitoso" #: /var/www/html/cacti/host.php:879 msgid "Reload Query" msgstr "Volver a consultar" #: /var/www/html/cacti/host.php:880 msgid "Verbose Query" msgstr "Consulta detallada" #: /var/www/html/cacti/host.php:881 msgid "Remove Query" msgstr "Eliminar consulta" #: /var/www/html/cacti/host.php:887 msgid "No Associated Data Queries." msgstr "No hay consultas de datos asociadas." #: /var/www/html/cacti/host.php:903 /var/www/html/cacti/host_templates.php:559 msgid "Add Data Query" msgstr "Agregar consulta de datos" #: /var/www/html/cacti/host.php:915 msgid "Add Data Query to Device" msgstr "Añadir la consulta de datos al dispositivo" #: /var/www/html/cacti/host.php:1050 #: /var/www/html/cacti/include/global_arrays.php:486 msgid "Ping and SNMP Uptime" msgstr "Uptime Ping y SNMP" #: /var/www/html/cacti/host.php:1051 #: /var/www/html/cacti/include/global_arrays.php:488 msgid "SNMP Uptime" msgstr "Uptime SNMP" #: /var/www/html/cacti/host.php:1052 #: /var/www/html/cacti/include/global_arrays.php:491 msgid "Ping" msgstr "Ping" #: /var/www/html/cacti/host.php:1053 #: /var/www/html/cacti/include/global_arrays.php:487 msgid "Ping or SNMP Uptime" msgstr "Uptime Ping o SNMP" #: /var/www/html/cacti/host.php:1054 #: /var/www/html/cacti/include/global_arrays.php:489 msgid "SNMP Desc" msgstr "Desc SNMP" #: /var/www/html/cacti/host.php:1055 msgid "SNMP GetNext" msgstr "SNMP GetNext" #: /var/www/html/cacti/host.php:1432 #: /var/www/html/cacti/include/global_settings.php:458 #: /var/www/html/cacti/lib/html_tree.php:356 #: /var/www/html/cacti/lib/html_tree.php:384 msgid "Site" msgstr "Sitio" #: /var/www/html/cacti/host.php:1488 msgid "Export Devices" msgstr "Exportar dispositivos" #: /var/www/html/cacti/host.php:1509 #: /var/www/html/cacti/lib/api_automation.php:172 #: /var/www/html/cacti/lib/api_automation.php:1050 msgid "Not Up" msgstr "No está arriba" #: /var/www/html/cacti/host.php:1512 #: /var/www/html/cacti/lib/api_automation.php:175 #: /var/www/html/cacti/lib/api_automation.php:1053 #: /var/www/html/cacti/lib/html_utility.php:840 #: /var/www/html/cacti/pollers.php:41 msgid "Recovering" msgstr "Recuperando" #: /var/www/html/cacti/host.php:1513 #: /var/www/html/cacti/lib/api_automation.php:176 #: /var/www/html/cacti/lib/api_automation.php:1054 #: /var/www/html/cacti/lib/html_utility.php:849 #: /var/www/html/cacti/plugins.php:168 /var/www/html/cacti/utilities.php:2066 msgid "Unknown" msgstr "Desconocido" #: /var/www/html/cacti/host.php:1542 #: /var/www/html/cacti/lib/api_automation.php:565 #: /var/www/html/cacti/tree.php:750 /var/www/html/cacti/utilities.php:1745 msgid "Device Description" msgstr "Descripción de dispositivos" #: /var/www/html/cacti/host.php:1545 msgid "The name by which this Device will be referred to." msgstr "El nombre por el cual se hará referencia a este dispositivo." #: /var/www/html/cacti/host.php:1548 #: /var/www/html/cacti/include/global_form.php:986 #: /var/www/html/cacti/include/global_form.php:1611 #: /var/www/html/cacti/lib/api_automation.php:277 #: /var/www/html/cacti/lib/api_automation.php:566 #: /var/www/html/cacti/lib/api_automation.php:840 #: /var/www/html/cacti/lib/api_automation.php:1169 #: /var/www/html/cacti/managers.php:219 /var/www/html/cacti/pollers.php:82 #: /var/www/html/cacti/pollers.php:614 /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_group_admin.php:966 msgid "Hostname" msgstr "Nombre de equipo" #: /var/www/html/cacti/host.php:1551 msgid "" "Either an IP address, or hostname. If a hostname, it must be resolvable by " "either DNS, or from your hosts file." msgstr "" "Ingrese una dirección IP o nombre de equipo. Si es nombre de equipo, debe " "ser posible resolverlo ya sea por DNS o por tu archivo de hosts." #: /var/www/html/cacti/host.php:1557 msgid "" "The internal database ID for this Device. Useful when performing automation " "or debugging." msgstr "" "El ID interno de base de datos para este dispositivo. Util cuando se realiza " "automatización o depuración." #: /var/www/html/cacti/host.php:1563 msgid "The total number of Graphs generated from this Device." msgstr "La cantidad de gráficos generados a partir de este dispositivo." #: /var/www/html/cacti/host.php:1569 msgid "The total number of Data Sources generated from this Device." msgstr "La cantidad total de Data Sources generados para este dispositivo." #: /var/www/html/cacti/host.php:1575 msgid "" "The monitoring status of the Device based upon ping results. If this Device " "is a special type Device, by using the hostname \"localhost\", or due to the " "setting to not perform an Availability Check, it will always remain Up. " "When using cmd.php data collector, a Device with no Graphs, is not pinged by " "the data collector and will remain in an \"Unknown\" state." msgstr "" "El estado de monitoreo del dispositivo basado en los resultados de ping. Si " "este dispositivo es un tipo de dispositivo especial, usando el nombre de " "equipo \"localhost\", o debido a la configuración de no realizar controles " "de disponibilidad, siempre estará arriba. Cuando se use el recolector de " "datos cmd.php, un dispositivo sin gráficos, el recolector de datos no le " "hará ping por lo que permanecerá en estado \"desconocido\"." #: /var/www/html/cacti/host.php:1578 msgid "In State" msgstr "En estado" #: /var/www/html/cacti/host.php:1581 msgid "The amount of time that this Device has been in its current state." msgstr "El tiempo que este dispositivo ha estado en su estado actual." #: /var/www/html/cacti/host.php:1587 msgid "The current amount of time that the host has been up." msgstr "El tiempo que el equipo ha estado arriba." #: /var/www/html/cacti/host.php:1590 msgid "Poll Time" msgstr "Hora de sondeo" #: /var/www/html/cacti/host.php:1593 msgid "The amount of time it takes to collect data from this Device." msgstr "El tiempo que lleva recolectar datos de este dispositivo." #: /var/www/html/cacti/host.php:1596 msgid "Current (ms)" msgstr "Tiempo actual (ms)" #: /var/www/html/cacti/host.php:1599 msgid "The current ping time in milliseconds to reach the Device." msgstr "" "El tiempo de respuesta actual de ping en milisegundos para alcanzar el " "dispositivo." #: /var/www/html/cacti/host.php:1602 msgid "Average (ms)" msgstr "Promedio (ms)" #: /var/www/html/cacti/host.php:1605 msgid "" "The average ping time in milliseconds to reach the Device since the counters " "were cleared for this Device." msgstr "" "El tiempo promedio de ping en milisegundos para alcanzar el dispositivo " "desde que los contadores para este dispositivo fueron reseteados." #: /var/www/html/cacti/host.php:1608 msgid "Availability" msgstr "Disponibilidad" #: /var/www/html/cacti/host.php:1611 msgid "" "The availability percentage based upon ping results since the counters were " "cleared for this Device." msgstr "" "El porcentaje de disponibilidad basado en los resultados de ping desde que " "los contadores para este dispositivo fueron reseteados." #: /var/www/html/cacti/host_templates.php:32 msgid "Sync Devices" msgstr "Sincronizar dispositivos" #: /var/www/html/cacti/host_templates.php:256 msgid "Click 'Continue' to delete the following Device Template(s)." msgstr "" "Haga click en 'Continuar' para eliminar la(s) siguiente(s) Plantilla(s) de " "dispositivo." #: /var/www/html/cacti/host_templates.php:261 msgid "Delete Device Template(s)" msgstr "Eliminar Plantilla(s) de dispositivo(s)" #: /var/www/html/cacti/host_templates.php:265 msgid "" "Click 'Continue' to duplicate the following Device Template(s). Optionally " "change the title for the new Device Template(s)." msgstr "" "Haga click en 'Continuar' para duplicar la(s) siguiente(s) Plantilla(s) de " "dispositivo. Opcionalmente puedes cambiar el titulo para la(s) nueva(s) " "Plantilla(s) de dispositivo(s)." #: /var/www/html/cacti/host_templates.php:275 msgid "Duplicate Device Template(s)" msgstr "Duplicar Plantilla(s) de dispositivo(s)" #: /var/www/html/cacti/host_templates.php:279 msgid "" "Click 'Continue' to Synchronize Devices associated with the selected Device " "Template(s). Note that this action may take some time depending on the " "number of Devices mapped to the Device Template." msgstr "" "Haga click en 'Continuar' para sincronizar los dispositivos asociados con " "la(s) Plantilla(s) de dispositivo(s). Ten en cuenta que esta acción puede " "tomar algo de tiempo dependiendo de la cantidad de dispositivos asociados a " "la Plantilla de dispositivos." #: /var/www/html/cacti/host_templates.php:286 msgid "Sync Devices to Device Template(s)" msgstr "Sincronizar dispositivos con Plantilla(s) de dispositivo(s)" #: /var/www/html/cacti/host_templates.php:289 msgid "You must select at least one host template." msgstr "Debes seleccionar al menos una plantilla de equipo." #: /var/www/html/cacti/host_templates.php:328 msgid "" "Click 'Continue' to delete the following Graph Template will be " "disassociated from the Device Template." msgstr "" "Haga click en 'Continuar' para eliminar la siguiente Plantilla de gráficos, " "será desasociada de la Plantilla de dispositivo." #: /var/www/html/cacti/host_templates.php:329 #, php-format msgid "Graph Template Name: %s" msgstr "Nombre de Plantilla de gráfico: %s" #: /var/www/html/cacti/host_templates.php:388 msgid "" "Click 'Continue' to delete the following Data Queries will be disassociated " "from the Device Template." msgstr "" "Haga click en 'Continuar' para eliminar las siguientes consultas de datos " "que serán desasociadas de la Plantilla de dispositivos." #: /var/www/html/cacti/host_templates.php:389 #, php-format msgid "Data Query Name: %s" msgstr "Nombre de la consulta de datos: %s" #: /var/www/html/cacti/host_templates.php:442 #, php-format msgid "Device Templates [edit: %s]" msgstr "Plantillas de dispositivos [editar: %s]" #: /var/www/html/cacti/host_templates.php:444 msgid "Device Templates [new]" msgstr "Plantillas de dispositivos [nuevo]" #: /var/www/html/cacti/host_templates.php:461 msgid "Default Submit Button" msgstr "Botón enviar predeterminado" #: /var/www/html/cacti/host_templates.php:515 msgid "Add Graph Template to Device Template" msgstr "Agregar plantilla de gráfico a plantilla de dispositivo" #: /var/www/html/cacti/host_templates.php:550 msgid "No associated data queries." msgstr "No hay consultas de datos asociadas." #: /var/www/html/cacti/host_templates.php:569 msgid "Add Data Query to Device Template" msgstr "Agregar consulta de datos a plantilla de dispositivo" #: /var/www/html/cacti/host_templates.php:691 #: /var/www/html/cacti/host_templates.php:706 #: /var/www/html/cacti/host_templates.php:807 #: /var/www/html/cacti/include/global_arrays.php:926 #: /var/www/html/cacti/lib/functions.php:2093 msgid "Device Templates" msgstr "Plantilla de dispositivos" #: /var/www/html/cacti/host_templates.php:723 msgid "Has Devices" msgstr "Contiene dispositivos" #: /var/www/html/cacti/host_templates.php:816 #: /var/www/html/cacti/lib/api_automation.php:279 #: /var/www/html/cacti/lib/api_automation.php:567 #: /var/www/html/cacti/lib/api_automation.php:1170 msgid "Device Template Name" msgstr "Nombre de Plantilla de dispositivos" #: /var/www/html/cacti/host_templates.php:816 msgid "The name of this Device Template." msgstr "El nombre de esta plantilla de dispositivo." #: /var/www/html/cacti/host_templates.php:817 msgid "" "The internal database ID for this Device Template. Useful when performing " "automation or debugging." msgstr "" "El ID interno de base de datos para esta Plantilla de dispositivos. Util " "cuando se realiza automatización o depuración." #: /var/www/html/cacti/host_templates.php:818 msgid "" "Device Templates in use cannot be Deleted. In use is defined as being " "referenced by a Device." msgstr "" "Plantillas de dispositivos en uso no pueden ser eliminadas. En uso significa " "que están siendo referenciadas por un dispositivo." #: /var/www/html/cacti/host_templates.php:819 msgid "Devices Using" msgstr "Dispositivos usando" #: /var/www/html/cacti/host_templates.php:819 msgid "The number of Devices using this Device Template." msgstr "El número de dispositivos usando esta plantilla de dispositivos." #: /var/www/html/cacti/host_templates.php:842 msgid "No Device Templates Found" msgstr "No se encontraron Plantillas de dispositivos" #: /var/www/html/cacti/include/auth.php:116 #: /var/www/html/cacti/include/auth.php:118 #: /var/www/html/cacti/permission_denied.php:30 #: /var/www/html/cacti/permission_denied.php:32 msgid "Login Again" msgstr "Volver a Ingresar" #: /var/www/html/cacti/include/auth.php:126 #: /var/www/html/cacti/include/auth.php:151 #: /var/www/html/cacti/permission_denied.php:64 msgid "Permission Denied" msgstr "Permiso denegado" #: /var/www/html/cacti/include/auth.php:153 #: /var/www/html/cacti/permission_denied.php:66 msgid "" "If you feel that this is an error. Please contact your Cacti Administrator." msgstr "" "Si crees que este es un error. Por favor contacta a tu Administrador de " "Cacti." #: /var/www/html/cacti/include/auth.php:153 #: /var/www/html/cacti/permission_denied.php:66 msgid "You are not permitted to access this section of Cacti." msgstr "No estas autorizado a acceder esta sección de Cacti." #: /var/www/html/cacti/include/global_arrays.php:105 msgid "Save Successful." msgstr "Guardado con éxito." #: /var/www/html/cacti/include/global_arrays.php:108 msgid "Save Failed." msgstr "No se pudo guardar." #: /var/www/html/cacti/include/global_arrays.php:111 msgid "Save Failed: Field Input Error (Check Red Fields)." msgstr "" "Falló al guardar: error de campo de entrada (Revisa los campos en rojo)." #: /var/www/html/cacti/include/global_arrays.php:114 msgid "Passwords do not match, please retype." msgstr "Las contraseñas no coinciden, vuelva a ingresarlas." #: /var/www/html/cacti/include/global_arrays.php:117 msgid "You must select at least one field." msgstr "Debes seleccionar al menos un campo." #: /var/www/html/cacti/include/global_arrays.php:120 msgid "" "You must have built in user authentication turned on to use this feature." msgstr "" "Debes tener la autenticación de usuario local activada para utilizar esta " "funcionalidad." #: /var/www/html/cacti/include/global_arrays.php:123 msgid "XML parse error." msgstr "Error de análisis XML." #: /var/www/html/cacti/include/global_arrays.php:126 msgid "Username already in use." msgstr "El nombre de usuario ya existe." #: /var/www/html/cacti/include/global_arrays.php:129 msgid "XML: Cacti version does not exist." msgstr "XML: la versión de Cacti no existe." #: /var/www/html/cacti/include/global_arrays.php:132 msgid "XML: Hash version does not exist." msgstr "XML: la versión de hash no existe." #: /var/www/html/cacti/include/global_arrays.php:135 msgid "XML: Generated with a newer version of Cacti." msgstr "XML: generado con una versión de Cacti mas nueva." #: /var/www/html/cacti/include/global_arrays.php:138 msgid "XML: Cannot locate type code." msgstr "XML: No se puede encontrar el tipo de código." #: /var/www/html/cacti/include/global_arrays.php:141 msgid "Username already exists." msgstr "Nombre de usuario ya existe." #: /var/www/html/cacti/include/global_arrays.php:144 msgid "Username change not permitted for designated template or guest user." msgstr "" "No se permite cambiar el nombre de usuario de la Plantilla designada o el " "usuario invitado." #: /var/www/html/cacti/include/global_arrays.php:147 msgid "User delete not permitted for designated template or guest user." msgstr "" "No se permite borrar el usuario de la Plantilla designada o el usuario " "invitado." #: /var/www/html/cacti/include/global_arrays.php:150 msgid "User delete not permitted for designated graph export user." msgstr "No se permite borrar el usuario de exportación de gráfico designado ." #: /var/www/html/cacti/include/global_arrays.php:153 msgid "" "Data Template Includes Deleted Data Source Profile. Please resave the Data " "Template with an existing Data Source Profile." msgstr "" "La Plantilla de datos incluye perfil de Data Source eliminado. Vuelve a " "guardar la Plantilla de datos con un perfil de Data Source existente." #: /var/www/html/cacti/include/global_arrays.php:156 msgid "" "Graph Template Includes Deleted GPrint Prefix. Please run Database Repair " "Script to Identify and/or Correct." msgstr "" "La Plantilla de gráficos incluye prefijos GPRINT eliminados. Ejecute el " "script de reparación de base de datos para identificar y/o corregir." #: /var/www/html/cacti/include/global_arrays.php:159 msgid "" "Graph Template Includes Deleted CDEFs. Please run Database Repair Script to " "Identify and/or Correct." msgstr "" "La Plantilla de datos incluye CDEFs eliminados. Ejecute el script de " "reparación de base de datos para identificar y/o corregir." #: /var/www/html/cacti/include/global_arrays.php:162 msgid "" "Graph Template Includes Deleted Data Input Method. Please run Database " "Repair Script to Identify." msgstr "" "La Plantilla de gráficos incluye métodos de entrada de datos eliminados. " "Ejecute el script de reparación de base de datos para identificar la falla." #: /var/www/html/cacti/include/global_arrays.php:165 msgid "" "Data Template Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" "Plantilla de datos no encontrada durante la exportación. Ejecute el script " "de reparación de base de datos para identificar la falla." #: /var/www/html/cacti/include/global_arrays.php:168 msgid "" "Device Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" "Plantilla de dispositivo no encontrada durante la exportación. Ejecute el " "script de reparación de base de datos para identificar la falla." #: /var/www/html/cacti/include/global_arrays.php:171 msgid "" "Data Query Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" "Consulta de datos no encontrada durante la exportación. Ejecute el script de " "reparación de la base de datos para identificar la falla." #: /var/www/html/cacti/include/global_arrays.php:174 msgid "" "Graph Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" "Plantilla de gráfico no encontrada durante la exportación. Ejecute el script " "de reparación de base de datos para indificar la falla." #: /var/www/html/cacti/include/global_arrays.php:177 msgid "" "Graph not found. Either it has been deleted or your database needs repair." msgstr "" "Gráfico no encontrado. O ha sido eliminado o la base de datos necesita " "repararse." #: /var/www/html/cacti/include/global_arrays.php:180 msgid "SNMPv3 Auth Passphrases must be 8 characters or greater." msgstr "La contraseña de autenticación SNMPv3 debe ser de 8 caracteres o mas." #: /var/www/html/cacti/include/global_arrays.php:183 msgid "" "Some Graphs not Updated. Unable to Change Device for Data Query based Graphs." msgstr "" "Algunos gráficos no actualizaron. No se puede cambiar dispositivo para los " "gráficos basados en la consulta de datos." #: /var/www/html/cacti/include/global_arrays.php:186 msgid "Unable to Change Device for Data Query based Graphs." msgstr "" "No se puede cambiar dispositivo para los gráficos basados en la consulta de " "datos." #: /var/www/html/cacti/include/global_arrays.php:189 msgid "Log file specified is not a Cacti log or archive file." msgstr "El archivo de log especificado no es de Cacti." #: /var/www/html/cacti/include/global_arrays.php:192 msgid "Log file specified was Cacti archive file and was removed." msgstr "" "El archivo de log especificado era un log de Cacti archivado y fue eliminado." #: /var/www/html/cacti/include/global_arrays.php:195 msgid "Cacti Log purged successfully" msgstr "Log de Cacti purgado con éxito" #: /var/www/html/cacti/include/global_arrays.php:198 msgid "" "Error: If you force a password change, you must also allow the user to " "change their password." msgstr "" "Error: si fuerzas un cambio de contraseña, debes también permitir al usuario " "cambiar la contraseña." #: /var/www/html/cacti/include/global_arrays.php:201 msgid "Error: You are not allowed to change your password." msgstr "Error: no tienes permitido cambiar tu contraseña." #: /var/www/html/cacti/include/global_arrays.php:204 msgid "Error: LDAP/AD based password change not supported." msgstr "Error: el cambio de contraseña LDAP/AD no es compatible." #: /var/www/html/cacti/include/global_arrays.php:207 msgid "Error: Unable to clear log, no write permissions" msgstr "Error: no es posible borrar el log, no tiene permisos de escritura" #: /var/www/html/cacti/include/global_arrays.php:210 msgid "Error: Unable to clear log, file does not exist" msgstr "Error: no se puede borrar el log, el archivo no existe" #: /var/www/html/cacti/include/global_arrays.php:213 msgid "Invalid Timestamp. Select timestamp in the future." msgstr "Fecha inválida. Seleccione una fecha en el futuro." #: /var/www/html/cacti/include/global_arrays.php:216 msgid "Data Collector(s) Synchronized for Offline Operation" msgstr "Recolector(es) de datos sincronizados para operar fuera de línea" #: /var/www/html/cacti/include/global_arrays.php:219 msgid "Data Collector(s) Not found when attempting Synchronization" msgstr "Recolector(es) de datos no encontrados al intentar sincronizar" #: /var/www/html/cacti/include/global_arrays.php:222 msgid "Unable to establish MySQL connection with remote Data Collector." msgstr "" "No se ha podido establecer conexión MySQL con Recolector de datos remoto." #: /var/www/html/cacti/include/global_arrays.php:225 msgid "" "Data Collector Synchronization must be initiated from the main Cacti server." msgstr "" "La sincronización del Recolector de datos debe ser iniciada desde el " "servidor principal de Cacti." #: /var/www/html/cacti/include/global_arrays.php:228 msgid "Report Saved" msgstr "Reporte guardado" #: /var/www/html/cacti/include/global_arrays.php:231 msgid "Report Save Failed" msgstr "Guardar Reporte fallo" #: /var/www/html/cacti/include/global_arrays.php:234 msgid "Report Item Saved" msgstr "Item de Reporte guardado" #: /var/www/html/cacti/include/global_arrays.php:237 msgid "Report Item Save Failed" msgstr "Error al guardar item de reporte" #: /var/www/html/cacti/include/global_arrays.php:240 msgid "" "Poller Resource Cache Cleared. Main Data Collector will rebuild at the next " "poller start, and Remote Data Collectors will sync afterwards." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:332 #: /var/www/html/cacti/include/global_arrays.php:669 msgid "Function" msgstr "Función" #: /var/www/html/cacti/include/global_arrays.php:333 #: /var/www/html/cacti/include/global_arrays.php:671 msgid "Special Data Source" msgstr "Data Source especial" #: /var/www/html/cacti/include/global_arrays.php:334 #: /var/www/html/cacti/include/global_arrays.php:673 msgid "Custom String" msgstr "Cadena de texto personalizada" #: /var/www/html/cacti/include/global_arrays.php:338 #: /var/www/html/cacti/include/global_arrays.php:710 msgid "Current Graph Item Data Source" msgstr "Data Source del item de gráfico actual" #: /var/www/html/cacti/include/global_arrays.php:344 #: /var/www/html/cacti/include/global_arrays.php:351 msgid "Script/Command" msgstr "Script/comando" #: /var/www/html/cacti/include/global_arrays.php:346 #: /var/www/html/cacti/include/global_arrays.php:352 #: /var/www/html/cacti/utilities.php:1654 msgid "Script Server" msgstr "Servidor de Scripts" #: /var/www/html/cacti/include/global_arrays.php:358 msgid "Index Count" msgstr "Recuento de índices" #: /var/www/html/cacti/include/global_arrays.php:359 msgid "Verify All" msgstr "Verificar todo" #: /var/www/html/cacti/include/global_arrays.php:363 msgid "" "All Re-Indexing will be manual or managed through scripts or Device " "Automation." msgstr "" "Todas las re-indexaciones serán manuales o manejadas a través de scripts o " "automatización de dispositivos." #: /var/www/html/cacti/include/global_arrays.php:364 msgid "" "When the Devices SNMP uptime goes backward, a Re-Index will be performed." msgstr "" "Cuando el tiempo de funcionamiento del dispositivo SNMP disminuye, se " "realizará una re-indexación." #: /var/www/html/cacti/include/global_arrays.php:365 msgid "When the Data Query index count changes, a Re-Index will be performed." msgstr "" "Cuando el recuento de índices de la consulta de datos cambie, se realizará " "una re-indexación." #: /var/www/html/cacti/include/global_arrays.php:366 msgid "Every polling cycle, a Re-Index will be performed. Very expensive." msgstr "Cada ciclo de sondeo, se realizará una re-indexación. Muy costoso." #: /var/www/html/cacti/include/global_arrays.php:370 msgid "SNMP Field Name (Dropdown)" msgstr "Nombre de campo SNMP (Menú desplegable)" #: /var/www/html/cacti/include/global_arrays.php:371 msgid "SNMP Field Value (From User)" msgstr "Valor de campo SNMP (del usuario)" #: /var/www/html/cacti/include/global_arrays.php:372 msgid "SNMP Output Type (Dropdown)" msgstr "Tipo de salida SNMP (Menú desplegable)" #: /var/www/html/cacti/include/global_arrays.php:391 #: /var/www/html/cacti/include/global_arrays.php:397 msgid "Normal" msgstr "Normal" #: /var/www/html/cacti/include/global_arrays.php:392 msgid "Light" msgstr "Light" #: /var/www/html/cacti/include/global_arrays.php:393 #: /var/www/html/cacti/include/global_arrays.php:398 msgid "Mono" msgstr "Mono" #: /var/www/html/cacti/include/global_arrays.php:402 msgid "North" msgstr "Norte" #: /var/www/html/cacti/include/global_arrays.php:403 msgid "South" msgstr "Sur" #: /var/www/html/cacti/include/global_arrays.php:404 msgid "West" msgstr "Oeste" #: /var/www/html/cacti/include/global_arrays.php:405 msgid "East" msgstr "Este" #: /var/www/html/cacti/include/global_arrays.php:410 msgid "Left" msgstr "Izquierda" #: /var/www/html/cacti/include/global_arrays.php:411 msgid "Right" msgstr "Derecha" #: /var/www/html/cacti/include/global_arrays.php:412 msgid "Justified" msgstr "Justificado" #: /var/www/html/cacti/include/global_arrays.php:413 msgid "Center" msgstr "Centro" #: /var/www/html/cacti/include/global_arrays.php:417 msgid "Top -> Down" msgstr "Arriba -> Abajo" #: /var/www/html/cacti/include/global_arrays.php:418 msgid "Bottom -> Up" msgstr "Abajo -> Arriba" #: /var/www/html/cacti/include/global_arrays.php:422 #: /var/www/html/cacti/tree.php:1265 msgid "Numeric" msgstr "Numérico" #: /var/www/html/cacti/include/global_arrays.php:423 msgid "Timestamp" msgstr "Fecha y hora" #: /var/www/html/cacti/include/global_arrays.php:424 msgid "Duration" msgstr "Duracion" #: /var/www/html/cacti/include/global_arrays.php:456 msgid "Not In Use" msgstr "Sin uso" #: /var/www/html/cacti/include/global_arrays.php:457 #: /var/www/html/cacti/include/global_arrays.php:458 #: /var/www/html/cacti/include/global_arrays.php:459 #: /var/www/html/cacti/include/global_arrays.php:638 #: /var/www/html/cacti/include/global_arrays.php:639 #, php-format msgid "Version %d" msgstr "Versión %d" #: /var/www/html/cacti/include/global_arrays.php:463 msgid "MD5 (default)" msgstr "MD5 (por defecto)" #: /var/www/html/cacti/include/global_arrays.php:464 msgid "SHA" msgstr "SHA" #: /var/www/html/cacti/include/global_arrays.php:468 msgid "[None]" msgstr "[Ninguno]" #: /var/www/html/cacti/include/global_arrays.php:469 msgid "DES (default)" msgstr "DES (por defecto)" #: /var/www/html/cacti/include/global_arrays.php:470 msgid "AES" msgstr "AES" #: /var/www/html/cacti/include/global_arrays.php:479 msgid "Logfile Only" msgstr "Archivo de log solamente" #: /var/www/html/cacti/include/global_arrays.php:480 msgid "Logfile and Syslog/Eventlog" msgstr "Archivo de log y Syslog/Eventlog" #: /var/www/html/cacti/include/global_arrays.php:481 msgid "Syslog/Eventlog Only" msgstr "Syslog/Eventlog solamente" #: /var/www/html/cacti/include/global_arrays.php:490 msgid "SNMP getNext" msgstr "SNMP getNext" #: /var/www/html/cacti/include/global_arrays.php:495 msgid "ICMP Ping" msgstr "Ping ICMP" #: /var/www/html/cacti/include/global_arrays.php:496 msgid "TCP Ping" msgstr "Ping TCP" #: /var/www/html/cacti/include/global_arrays.php:497 msgid "UDP Ping" msgstr "Ping UDP" #: /var/www/html/cacti/include/global_arrays.php:501 msgid "NONE - Syslog Only if Selected" msgstr "NINGUNO - Syslog solo si es seleccionado" #: /var/www/html/cacti/include/global_arrays.php:502 msgid "LOW - Statistics and Errors" msgstr "BAJO - Estadísticas y errores" #: /var/www/html/cacti/include/global_arrays.php:503 msgid "MEDIUM - Statistics, Errors and Results" msgstr "MEDIO - Estadísticas, Errores y resultados" #: /var/www/html/cacti/include/global_arrays.php:504 msgid "HIGH - Statistics, Errors, Results and Major I/O Events" msgstr "ALTO - Estadísticas, errores, resultados y principales eventos I/O" #: /var/www/html/cacti/include/global_arrays.php:505 msgid "DEBUG - Statistics, Errors, Results, I/O and Program Flow" msgstr "" "DEPURACION - Estadísticas, errores, resultados y I/O y flujo de progamas" #: /var/www/html/cacti/include/global_arrays.php:506 msgid "DEVEL - Developer DEBUG Level" msgstr "DEVEL - Nivel de depuración para programadores" #: /var/www/html/cacti/include/global_arrays.php:515 msgid "Selected Poller Interval" msgstr "Intervalo de sondeo seleccionado" #: /var/www/html/cacti/include/global_arrays.php:532 #: /var/www/html/cacti/include/global_arrays.php:533 #: /var/www/html/cacti/include/global_arrays.php:534 #: /var/www/html/cacti/include/global_arrays.php:535 #: /var/www/html/cacti/include/global_arrays.php:587 #: /var/www/html/cacti/include/global_arrays.php:588 #: /var/www/html/cacti/include/global_arrays.php:589 #: /var/www/html/cacti/include/global_arrays.php:590 #, php-format msgid "Every %d Seconds" msgstr "Cada %d segundos" #: /var/www/html/cacti/include/global_arrays.php:536 #: /var/www/html/cacti/include/global_arrays.php:591 #: /var/www/html/cacti/include/global_arrays.php:605 msgid "Every Minute" msgstr "Cada Minuto" #: /var/www/html/cacti/include/global_arrays.php:537 #: /var/www/html/cacti/include/global_arrays.php:538 #: /var/www/html/cacti/include/global_arrays.php:539 #: /var/www/html/cacti/include/global_arrays.php:540 #: /var/www/html/cacti/include/global_arrays.php:592 #: /var/www/html/cacti/include/global_arrays.php:606 #, php-format msgid "Every %d Minutes" msgstr "Cada %d minutos" #: /var/www/html/cacti/include/global_arrays.php:541 msgid "Every Hour" msgstr "Cada hora" #: /var/www/html/cacti/include/global_arrays.php:542 #: /var/www/html/cacti/include/global_arrays.php:543 #: /var/www/html/cacti/include/global_arrays.php:1497 #: /var/www/html/cacti/include/global_arrays.php:1498 #: /var/www/html/cacti/include/global_arrays.php:1499 #: /var/www/html/cacti/include/global_arrays.php:1500 #: /var/www/html/cacti/include/global_arrays.php:1501 #: /var/www/html/cacti/include/global_settings.php:1793 #: /var/www/html/cacti/include/global_settings.php:1794 #, php-format msgid "Every %d Hours" msgstr "Cada %d horas" #: /var/www/html/cacti/include/global_arrays.php:562 #: /var/www/html/cacti/include/global_settings.php:1133 msgid "1 Day" msgstr "1 dia" #: /var/www/html/cacti/include/global_arrays.php:582 #: /var/www/html/cacti/include/global_arrays.php:1139 #: /var/www/html/cacti/include/global_settings.php:1061 #: /var/www/html/cacti/rrdcleaner.php:493 #, php-format msgid "%d Year" msgstr "%d año" #: /var/www/html/cacti/include/global_arrays.php:596 msgid "1 Thread (default)" msgstr "1 proceso (por defecto)" #: /var/www/html/cacti/include/global_arrays.php:621 msgid "Builtin Authentication" msgstr "Autenticación integrada" #: /var/www/html/cacti/include/global_arrays.php:622 msgid "Web Basic Authentication" msgstr "Autenticación Web básica" #: /var/www/html/cacti/include/global_arrays.php:626 msgid "LDAP Authentication" msgstr "Autenticación LDAP" #: /var/www/html/cacti/include/global_arrays.php:627 msgid "Multiple LDAP/AD Domains" msgstr "Multiples Dominios LDAP/AD" #: /var/www/html/cacti/include/global_arrays.php:632 msgid "Active Directory" msgstr "Active Directory" #: /var/www/html/cacti/include/global_arrays.php:644 #: /var/www/html/cacti/include/global_settings.php:1375 msgid "SSL" msgstr "SSL" #: /var/www/html/cacti/include/global_arrays.php:645 #: /var/www/html/cacti/include/global_settings.php:1375 msgid "TLS" msgstr "TLS" #: /var/www/html/cacti/include/global_arrays.php:649 msgid "No Searching" msgstr "Sin buscar" #: /var/www/html/cacti/include/global_arrays.php:650 msgid "Anonymous Searching" msgstr "Busqueda anonima" #: /var/www/html/cacti/include/global_arrays.php:651 msgid "Specific Searching" msgstr "Busqueda especifica" #: /var/www/html/cacti/include/global_arrays.php:665 msgid "Enabled (strict mode)" msgstr "Habilitado (modo estricto)" #: /var/www/html/cacti/include/global_arrays.php:670 #: /var/www/html/cacti/include/global_form.php:2062 #: /var/www/html/cacti/include/global_form.php:2104 #: /var/www/html/cacti/lib/api_automation.php:1241 #: /var/www/html/cacti/lib/api_automation.php:1303 msgid "Operator" msgstr "Operador" #: /var/www/html/cacti/include/global_arrays.php:672 msgid "Another CDEF" msgstr "Otro CDEF" #: /var/www/html/cacti/include/global_arrays.php:691 msgid "Inherit Parent Sorting" msgstr "Heredar clasificación de padres" #: /var/www/html/cacti/include/global_arrays.php:692 msgid "Manual Ordering (No Sorting)" msgstr "Orden Manual (Sin clasificar)" #: /var/www/html/cacti/include/global_arrays.php:693 msgid "Alphabetic Ordering" msgstr "Orden Alfabético" #: /var/www/html/cacti/include/global_arrays.php:694 msgid "Natural Ordering" msgstr "Orden natural" #: /var/www/html/cacti/include/global_arrays.php:695 msgid "Numeric Ordering" msgstr "Orden numérico" #: /var/www/html/cacti/include/global_arrays.php:699 #: /var/www/html/cacti/lib/rrd.php:2627 msgid "Header" msgstr "Encabezado" #: /var/www/html/cacti/include/global_arrays.php:700 #: /var/www/html/cacti/include/global_arrays.php:747 #: /var/www/html/cacti/include/global_arrays.php:1322 #: /var/www/html/cacti/include/global_arrays.php:1486 #: /var/www/html/cacti/lib/html_tree.php:358 msgid "Graph" msgstr "Gráfico" #: /var/www/html/cacti/include/global_arrays.php:706 #: /var/www/html/cacti/tree.php:1452 msgid "Data Query Index" msgstr "Indice de consulta de datos" #: /var/www/html/cacti/include/global_arrays.php:711 msgid "Current Graph Item Polling Interval" msgstr "Intervalo de sondeo del item de gráfico actual" #: /var/www/html/cacti/include/global_arrays.php:712 msgid "All Data Sources (Do not Include Duplicates)" msgstr "Todos los Data Sources (no incluye duplicados)" #: /var/www/html/cacti/include/global_arrays.php:713 msgid "All Data Sources (Include Duplicates)" msgstr "Todos los Data Sources (incluye duplicados)" #: /var/www/html/cacti/include/global_arrays.php:714 msgid "All Similar Data Sources (Do not Include Duplicates)" msgstr "Todos los Data Sources similares (no incluye duplicados)" #: /var/www/html/cacti/include/global_arrays.php:715 msgid "All Similar Data Sources (Do not Include Duplicates) Polling Interval" msgstr "" "Todos los Data Sources similares (No incluye duplicados) Intervalo de Sondeo" #: /var/www/html/cacti/include/global_arrays.php:716 msgid "All Similar Data Sources (Include Duplicates)" msgstr "Todos los Data Sources similares (Incluyendo duplicados)" #: /var/www/html/cacti/include/global_arrays.php:717 msgid "Current Data Source Item: Minimum Value" msgstr "Item de Data Source actual: valor mínimo" #: /var/www/html/cacti/include/global_arrays.php:718 msgid "Current Data Source Item: Maximum Value" msgstr "Item de Data Source actual: valor máximo" #: /var/www/html/cacti/include/global_arrays.php:719 msgid "Graph: Lower Limit" msgstr "Gráfico: límite inferior" #: /var/www/html/cacti/include/global_arrays.php:720 msgid "Graph: Upper Limit" msgstr "Gráfico: límite superior" #: /var/www/html/cacti/include/global_arrays.php:721 msgid "Count of All Data Sources (Do not Include Duplicates)" msgstr "Cuenta de todos los Data Sources (No incluye duplicados)" #: /var/www/html/cacti/include/global_arrays.php:722 msgid "Count of All Data Sources (Include Duplicates)" msgstr "Cuenta de todos los Data Sources (Incluye duplicados)" #: /var/www/html/cacti/include/global_arrays.php:723 msgid "Count of All Similar Data Sources (Do not Include Duplicates)" msgstr "Cuenta de todos los Data Sources similares (No incluye duplicados)" #: /var/www/html/cacti/include/global_arrays.php:724 msgid "Count of All Similar Data Sources (Include Duplicates)" msgstr "Cuenta de todos los Data Sources similares (Incluye duplicados)" #: /var/www/html/cacti/include/global_arrays.php:730 #: /var/www/html/cacti/lib/html_form_template.php:565 #: /var/www/html/cacti/lib/html_form_template.php:580 msgid "New Graphs" msgstr "Nuevos gráficos" #: /var/www/html/cacti/include/global_arrays.php:732 #: /var/www/html/cacti/include/global_arrays.php:784 #: /var/www/html/cacti/include/global_arrays.php:801 msgid "Management" msgstr "Administración" #: /var/www/html/cacti/include/global_arrays.php:734 #: /var/www/html/cacti/sites.php:389 /var/www/html/cacti/sites.php:404 #: /var/www/html/cacti/sites.php:484 msgid "Sites" msgstr "Sitios" #: /var/www/html/cacti/include/global_arrays.php:735 #: /var/www/html/cacti/include/global_arrays.php:918 #: /var/www/html/cacti/tree.php:1656 /var/www/html/cacti/tree.php:1671 #: /var/www/html/cacti/tree.php:1728 /var/www/html/cacti/user_admin.php:1505 #: /var/www/html/cacti/user_admin.php:2931 #: /var/www/html/cacti/user_admin.php:3016 #: /var/www/html/cacti/user_group_admin.php:1235 #: /var/www/html/cacti/user_group_admin.php:2454 msgid "Trees" msgstr "Arboles" #: /var/www/html/cacti/include/global_arrays.php:738 msgid "Aggregates" msgstr "Agregados" #: /var/www/html/cacti/include/global_arrays.php:740 #: /var/www/html/cacti/include/global_arrays.php:787 #: /var/www/html/cacti/include/global_arrays.php:802 msgid "Data Collection" msgstr "Recolección de datos" #: /var/www/html/cacti/include/global_arrays.php:741 #: /var/www/html/cacti/include/global_arrays.php:788 #: /var/www/html/cacti/pollers.php:508 msgid "Data Collectors" msgstr "Recolectores de datos" #: /var/www/html/cacti/include/global_arrays.php:749 msgid "Aggregate" msgstr "Agregado" #: /var/www/html/cacti/include/global_arrays.php:752 #: /var/www/html/cacti/include/global_arrays.php:804 #: /var/www/html/cacti/include/global_settings.php:430 msgid "Automation" msgstr "Automatización" #: /var/www/html/cacti/include/global_arrays.php:754 msgid "Discovered Devices" msgstr "Dispositivos descubiertos" #: /var/www/html/cacti/include/global_arrays.php:755 msgid "Device Rules" msgstr "Reglas de dispositivos" #: /var/www/html/cacti/include/global_arrays.php:760 #: /var/www/html/cacti/include/global_arrays.php:805 #: /var/www/html/cacti/lib/html_filter.php:178 #: /var/www/html/cacti/lib/html_graph.php:253 #: /var/www/html/cacti/lib/html_tree.php:750 msgid "Presets" msgstr "Intervalos" #: /var/www/html/cacti/include/global_arrays.php:761 msgid "Data Profiles" msgstr "Perfiles de datos" #: /var/www/html/cacti/include/global_arrays.php:763 #: /var/www/html/cacti/lib/functions.php:2339 /var/www/html/cacti/vdef.php:651 #: /var/www/html/cacti/vdef.php:665 /var/www/html/cacti/vdef.php:838 msgid "VDEFs" msgstr "VDEFs" #: /var/www/html/cacti/include/global_arrays.php:767 #: /var/www/html/cacti/include/global_arrays.php:806 msgid "Import/Export" msgstr "Importar/Exportar" #: /var/www/html/cacti/include/global_arrays.php:768 #: /var/www/html/cacti/lib/functions.php:2453 msgid "Import Templates" msgstr "Importar Plantillas" #: /var/www/html/cacti/include/global_arrays.php:769 #: /var/www/html/cacti/lib/functions.php:2441 #: /var/www/html/cacti/templates_export.php:152 msgid "Export Templates" msgstr "Exportar Plantillas" #: /var/www/html/cacti/include/global_arrays.php:771 #: /var/www/html/cacti/include/global_arrays.php:790 #: /var/www/html/cacti/include/global_arrays.php:807 #: /var/www/html/cacti/lib/plugins.php:785 msgid "Configuration" msgstr "Configuración" #: /var/www/html/cacti/include/global_arrays.php:772 #: /var/www/html/cacti/include/global_arrays.php:791 msgid "Settings" msgstr "Opciones" #: /var/www/html/cacti/include/global_arrays.php:773 #: /var/www/html/cacti/lib/functions.php:2387 #: /var/www/html/cacti/user_admin.php:2212 #: /var/www/html/cacti/user_admin.php:2266 #: /var/www/html/cacti/user_group_admin.php:667 #: /var/www/html/cacti/user_group_admin.php:2539 msgid "Users" msgstr "Usuarios" #: /var/www/html/cacti/include/global_arrays.php:774 #: /var/www/html/cacti/lib/functions.php:2417 msgid "User Groups" msgstr "Grupos de Usuarios" #: /var/www/html/cacti/include/global_arrays.php:775 #: /var/www/html/cacti/lib/functions.php:2405 #: /var/www/html/cacti/user_domains.php:638 #: /var/www/html/cacti/user_domains.php:729 msgid "User Domains" msgstr "Dominios de Usuarios" #: /var/www/html/cacti/include/global_arrays.php:777 #: /var/www/html/cacti/include/global_arrays.php:793 #: /var/www/html/cacti/include/global_arrays.php:808 #: /var/www/html/cacti/lib/functions.php:2267 msgid "Utilities" msgstr "Utilidades" #: /var/www/html/cacti/include/global_arrays.php:778 #: /var/www/html/cacti/include/global_arrays.php:794 msgid "System Utilities" msgstr "Utilitarios de sistema" #: /var/www/html/cacti/include/global_arrays.php:779 #: /var/www/html/cacti/include/global_arrays.php:809 #: /var/www/html/cacti/include/global_arrays.php:823 #: /var/www/html/cacti/include/global_arrays.php:907 #: /var/www/html/cacti/links.php:90 /var/www/html/cacti/links.php:301 #: /var/www/html/cacti/links.php:369 /var/www/html/cacti/links.php:482 msgid "External Links" msgstr "Vínculos externos" #: /var/www/html/cacti/include/global_arrays.php:832 msgid "All Lines" msgstr "Todas las líneas" #: /var/www/html/cacti/include/global_arrays.php:833 #: /var/www/html/cacti/include/global_arrays.php:834 #: /var/www/html/cacti/include/global_arrays.php:835 #: /var/www/html/cacti/include/global_arrays.php:836 #: /var/www/html/cacti/include/global_arrays.php:837 #: /var/www/html/cacti/include/global_arrays.php:838 #: /var/www/html/cacti/include/global_arrays.php:839 #: /var/www/html/cacti/include/global_arrays.php:840 #: /var/www/html/cacti/include/global_arrays.php:841 #: /var/www/html/cacti/include/global_arrays.php:842 #: /var/www/html/cacti/include/global_arrays.php:843 #: /var/www/html/cacti/include/global_arrays.php:844 #, php-format msgid "%d Lines" msgstr "%d Líneas" #: /var/www/html/cacti/include/global_arrays.php:899 msgid "Never" msgstr "Nunca" #: /var/www/html/cacti/include/global_arrays.php:903 msgid "Console Access" msgstr "Acceso de consola" #: /var/www/html/cacti/include/global_arrays.php:905 msgid "Realtime Graphs" msgstr "Gráficos Real-time" #: /var/www/html/cacti/include/global_arrays.php:906 msgid "Update Profile" msgstr "Actualizar perfil" #: /var/www/html/cacti/include/global_arrays.php:909 #: /var/www/html/cacti/user_admin.php:2191 msgid "User Management" msgstr "Administración de usuario" #: /var/www/html/cacti/include/global_arrays.php:910 msgid "Settings and Utilities" msgstr "Configuración y utilidades" #: /var/www/html/cacti/include/global_arrays.php:911 msgid "Automation Settings" msgstr "Configuración de la automatización" #: /var/www/html/cacti/include/global_arrays.php:916 msgid "Sites/Devices/Data Sources/Data Collectors" msgstr "Sitios/Dispositivos/Fuente de datos/Recolectores de datos" #: /var/www/html/cacti/include/global_arrays.php:919 msgid "Remove Spikes from Graphs" msgstr "Remover picos de gráficos" #: /var/www/html/cacti/include/global_arrays.php:922 msgid "Colors/GPrints/CDEFs/VDEFs" msgstr "Colores/GPrints/CDEFs/VDEFs" #: /var/www/html/cacti/include/global_arrays.php:928 msgid "Export Data" msgstr "Exportar datos" #: /var/www/html/cacti/include/global_arrays.php:929 msgid "Import Data" msgstr "Importar datos" #: /var/www/html/cacti/include/global_arrays.php:931 #: /var/www/html/cacti/include/global_settings.php:705 msgid "Log Management" msgstr "Administración de log" #: /var/www/html/cacti/include/global_arrays.php:932 msgid "Log Viewing" msgstr "Visualización de log" #: /var/www/html/cacti/include/global_arrays.php:934 msgid "Reports Management" msgstr "Administración de reportes" #: /var/www/html/cacti/include/global_arrays.php:935 msgid "Reports Creation" msgstr "Creación de reportes" #: /var/www/html/cacti/include/global_arrays.php:1033 msgid "CDEF" msgstr "CDEF" #: /var/www/html/cacti/include/global_arrays.php:1034 msgid "CDEF Item" msgstr "Item CDEF" #: /var/www/html/cacti/include/global_arrays.php:1035 msgid "GPRINT Preset" msgstr "GPRINT preestablecido" #: /var/www/html/cacti/include/global_arrays.php:1038 msgid "Data Input Field" msgstr "Campo de entrada de datos" #: /var/www/html/cacti/include/global_arrays.php:1039 #: /var/www/html/cacti/include/global_form.php:397 #: /var/www/html/cacti/include/global_form.php:1586 msgid "Data Source Profile" msgstr "Perfil de Data Source" #: /var/www/html/cacti/include/global_arrays.php:1040 msgid "Data Template Item" msgstr "Item de Plantilla de datos" #: /var/www/html/cacti/include/global_arrays.php:1042 msgid "Graph Template Item" msgstr "Item de Plantilla de gráficos" #: /var/www/html/cacti/include/global_arrays.php:1043 msgid "Graph Template Input" msgstr "Entrada de Plantilla de gráficos" #: /var/www/html/cacti/include/global_arrays.php:1046 msgid "VDEF" msgstr "VDEF" #: /var/www/html/cacti/include/global_arrays.php:1047 msgid "VDEF Item" msgstr "Item VDEF" #: /var/www/html/cacti/include/global_arrays.php:1091 msgid "Last Half Hour" msgstr "Ultima media hora" #: /var/www/html/cacti/include/global_arrays.php:1092 msgid "Last Hour" msgstr "Ultima hora" #: /var/www/html/cacti/include/global_arrays.php:1093 #: /var/www/html/cacti/include/global_arrays.php:1094 #: /var/www/html/cacti/include/global_arrays.php:1095 #: /var/www/html/cacti/include/global_arrays.php:1096 #, php-format msgid "Last %d Hours" msgstr "Ultimas %d horas" #: /var/www/html/cacti/include/global_arrays.php:1097 msgid "Last Day" msgstr "El último día" #: /var/www/html/cacti/include/global_arrays.php:1098 #: /var/www/html/cacti/include/global_arrays.php:1099 #: /var/www/html/cacti/include/global_arrays.php:1100 #, php-format msgid "Last %d Days" msgstr "Ultimos %d dias" #: /var/www/html/cacti/include/global_arrays.php:1101 msgid "Last Week" msgstr "La última semana" #: /var/www/html/cacti/include/global_arrays.php:1102 #, php-format msgid "Last %d Weeks" msgstr "Ultimas %d semanas" #: /var/www/html/cacti/include/global_arrays.php:1103 msgid "Last Month" msgstr "Ultimo mes" #: /var/www/html/cacti/include/global_arrays.php:1104 #: /var/www/html/cacti/include/global_arrays.php:1105 #: /var/www/html/cacti/include/global_arrays.php:1106 #: /var/www/html/cacti/include/global_arrays.php:1107 #, php-format msgid "Last %d Months" msgstr "Ultimos %d meses" #: /var/www/html/cacti/include/global_arrays.php:1108 msgid "Last Year" msgstr "Ultimo año" #: /var/www/html/cacti/include/global_arrays.php:1109 #, php-format msgid "Last %d Years" msgstr "Ultimos %d años" #: /var/www/html/cacti/include/global_arrays.php:1110 msgid "Day Shift" msgstr "Jornada diurna" #: /var/www/html/cacti/include/global_arrays.php:1111 msgid "This Day" msgstr "Este día" #: /var/www/html/cacti/include/global_arrays.php:1112 msgid "This Week" msgstr "Esta semana" #: /var/www/html/cacti/include/global_arrays.php:1113 msgid "This Month" msgstr "Este mes" #: /var/www/html/cacti/include/global_arrays.php:1114 msgid "This Year" msgstr "Este año" #: /var/www/html/cacti/include/global_arrays.php:1115 msgid "Previous Day" msgstr "Día anterior" #: /var/www/html/cacti/include/global_arrays.php:1116 msgid "Previous Week" msgstr "Semana anterior" #: /var/www/html/cacti/include/global_arrays.php:1117 msgid "Previous Month" msgstr "Mes anterior" #: /var/www/html/cacti/include/global_arrays.php:1118 msgid "Previous Year" msgstr "Año anterior" #: /var/www/html/cacti/include/global_arrays.php:1122 #, php-format msgid "%d Min" msgstr "Min %d" #: /var/www/html/cacti/include/global_arrays.php:1154 msgid "Month Number, Day, Year" msgstr "Número de mes, día, año" #: /var/www/html/cacti/include/global_arrays.php:1155 msgid "Month Name, Day, Year" msgstr "Nombre del mes, día, año" #: /var/www/html/cacti/include/global_arrays.php:1156 msgid "Day, Month Number, Year" msgstr "Día, número del mes, año" #: /var/www/html/cacti/include/global_arrays.php:1157 msgid "Day, Month Name, Year" msgstr "Día, nombre del mes, año" #: /var/www/html/cacti/include/global_arrays.php:1158 msgid "Year, Month Number, Day" msgstr "Año, número del mes, día" #: /var/www/html/cacti/include/global_arrays.php:1159 msgid "Year, Month Name, Day" msgstr "Año, nombre del mes, día" #: /var/www/html/cacti/include/global_arrays.php:1169 msgid "After Boost" msgstr "Después de Boost" #: /var/www/html/cacti/include/global_arrays.php:1179 #: /var/www/html/cacti/include/global_arrays.php:1180 #: /var/www/html/cacti/include/global_arrays.php:1181 #: /var/www/html/cacti/include/global_arrays.php:1182 #: /var/www/html/cacti/include/global_arrays.php:1183 #: /var/www/html/cacti/include/global_arrays.php:1238 #: /var/www/html/cacti/include/global_arrays.php:1239 #: /var/www/html/cacti/include/global_arrays.php:1240 #: /var/www/html/cacti/include/global_arrays.php:1241 #: /var/www/html/cacti/include/global_arrays.php:1242 #, php-format msgid "%d MBytes" msgstr "%d MBytes" #: /var/www/html/cacti/include/global_arrays.php:1184 #: /var/www/html/cacti/include/global_arrays.php:1243 msgid "1 GByte" msgstr "1 GByte" #: /var/www/html/cacti/include/global_arrays.php:1185 #: /var/www/html/cacti/include/global_arrays.php:1244 #, php-format msgid "%s GBytes" msgstr "%s GBytes" #: /var/www/html/cacti/include/global_arrays.php:1186 #: /var/www/html/cacti/include/global_arrays.php:1187 #: /var/www/html/cacti/include/global_arrays.php:1245 #: /var/www/html/cacti/include/global_arrays.php:1246 #, php-format msgid "%d GBytes" msgstr "%d GBytes" #: /var/www/html/cacti/include/global_arrays.php:1200 msgid "2,000 Data Source Items" msgstr "2,000 Items de Data Source" #: /var/www/html/cacti/include/global_arrays.php:1201 msgid "5,000 Data Source Items" msgstr "5,000 Items de Data Source" #: /var/www/html/cacti/include/global_arrays.php:1202 msgid "10,000 Data Source Items" msgstr "10,000 Items de Data Source" #: /var/www/html/cacti/include/global_arrays.php:1203 msgid "15,000 Data Source Items" msgstr "15,000 Items de Data Source" #: /var/www/html/cacti/include/global_arrays.php:1204 msgid "25,000 Data Source Items" msgstr "25,000 Items de Data Source" #: /var/www/html/cacti/include/global_arrays.php:1205 msgid "50,000 Data Source Items (Default)" msgstr "50,000 Items de Data Source (predeterminado)" #: /var/www/html/cacti/include/global_arrays.php:1206 msgid "100,000 Data Source Items" msgstr "100,000 Items de Data Source" #: /var/www/html/cacti/include/global_arrays.php:1207 msgid "200,000 Data Source Items" msgstr "200,000 Items de Data Source" #: /var/www/html/cacti/include/global_arrays.php:1208 msgid "400,000 Data Source Items" msgstr "400,000 Items de Data Source" #: /var/www/html/cacti/include/global_arrays.php:1225 msgid "2 Hours" msgstr "2 horas" #: /var/www/html/cacti/include/global_arrays.php:1226 msgid "4 Hours" msgstr "4 horas" #: /var/www/html/cacti/include/global_arrays.php:1227 msgid "6 Hours" msgstr "6 horas" #: /var/www/html/cacti/include/global_arrays.php:1234 #, php-format msgid "%s Hours" msgstr "%s horas" #: /var/www/html/cacti/include/global_arrays.php:1253 #, php-format msgid "%s Minutes" msgstr "%s minutos" #: /var/www/html/cacti/include/global_arrays.php:1273 msgid "1 Megabyte" msgstr "1 Megabyte" #: /var/www/html/cacti/include/global_arrays.php:1274 #: /var/www/html/cacti/include/global_arrays.php:1275 #: /var/www/html/cacti/include/global_arrays.php:1276 #: /var/www/html/cacti/include/global_arrays.php:1277 #: /var/www/html/cacti/include/global_arrays.php:1278 #: /var/www/html/cacti/include/global_arrays.php:1279 #, php-format msgid "%d Megabytes" msgstr "%d Megabytes" #: /var/www/html/cacti/include/global_arrays.php:1283 msgid "Send Now" msgstr "Enviar ahora" #: /var/www/html/cacti/include/global_arrays.php:1291 msgid "Take Ownership" msgstr "Tomar posesión" #: /var/www/html/cacti/include/global_arrays.php:1295 msgid "Inline PNG Image" msgstr "Imagen PNG en línea" #: /var/www/html/cacti/include/global_arrays.php:1300 msgid "Inline JPEG Image" msgstr "Imagen JPEG en línea" #: /var/www/html/cacti/include/global_arrays.php:1301 msgid "Inline GIF Image" msgstr "Imagen GIF en línea" #: /var/www/html/cacti/include/global_arrays.php:1304 msgid "Attached PNG Image" msgstr "Imagen PNG adjunta" #: /var/www/html/cacti/include/global_arrays.php:1307 msgid "Attached JPEG Image" msgstr "Imagen JPEG adjunta" #: /var/www/html/cacti/include/global_arrays.php:1308 msgid "Attached GIF Image" msgstr "Imagen GIF adjunta" #: /var/www/html/cacti/include/global_arrays.php:1312 msgid "Inline PNG Image, LN Style" msgstr "Estilo LN, imagen PNG en línea" #: /var/www/html/cacti/include/global_arrays.php:1314 msgid "Inline JPEG Image, LN Style" msgstr "Estilo LN, imagen JPEG en línea" #: /var/www/html/cacti/include/global_arrays.php:1315 msgid "Inline GIF Image, LN Style" msgstr "Estilo LN, imagen GIF en línea" #: /var/www/html/cacti/include/global_arrays.php:1320 msgid "Text" msgstr "Texto" #: /var/www/html/cacti/include/global_arrays.php:1321 #: /var/www/html/cacti/include/global_form.php:2182 msgid "Tree" msgstr "Arbol" #: /var/www/html/cacti/include/global_arrays.php:1323 msgid "Horizontal Rule" msgstr "Regla horizontal" #: /var/www/html/cacti/include/global_arrays.php:1327 msgid "left" msgstr "izquierda" #: /var/www/html/cacti/include/global_arrays.php:1328 msgid "center" msgstr "centro" #: /var/www/html/cacti/include/global_arrays.php:1329 msgid "right" msgstr "derecha" #: /var/www/html/cacti/include/global_arrays.php:1333 msgid "Minute(s)" msgstr "Minuto(s)" #: /var/www/html/cacti/include/global_arrays.php:1334 msgid "Hour(s)" msgstr "Hora(s)" #: /var/www/html/cacti/include/global_arrays.php:1335 msgid "Day(s)" msgstr "Dia(s)" #: /var/www/html/cacti/include/global_arrays.php:1336 msgid "Week(s)" msgstr "Semana(s)" #: /var/www/html/cacti/include/global_arrays.php:1337 msgid "Month(s), Day of Month" msgstr "Mes(es), Día del Mes" #: /var/www/html/cacti/include/global_arrays.php:1338 msgid "Month(s), Day of Week" msgstr "Mes(es), Día de la semana" #: /var/www/html/cacti/include/global_arrays.php:1339 msgid "Year(s)" msgstr "Año(s)" #: /var/www/html/cacti/include/global_arrays.php:1343 msgid "Keep Graph Types" msgstr "Conservar tipos de gráficos" #: /var/www/html/cacti/include/global_arrays.php:1344 msgid "Keep Type and STACK" msgstr "Conservar Tipo y STACK" #: /var/www/html/cacti/include/global_arrays.php:1345 msgid "Convert to AREA/STACK Graph" msgstr "Convertir a gráfico de AREA/STACK" #: /var/www/html/cacti/include/global_arrays.php:1346 msgid "Convert to LINE1 Graph" msgstr "Convertir a gráfico de LINEA1" #: /var/www/html/cacti/include/global_arrays.php:1347 msgid "Convert to LINE2 Graph" msgstr "Convertir a gráfico de LINEA2" #: /var/www/html/cacti/include/global_arrays.php:1348 msgid "Convert to LINE3 Graph" msgstr "Convertir a gráfico de LINEA3" #: /var/www/html/cacti/include/global_arrays.php:1352 msgid "No Totals" msgstr "Sin totales" #: /var/www/html/cacti/include/global_arrays.php:1353 msgid "Print all Legend Items" msgstr "Imprimir todos los item de Leyenda" #: /var/www/html/cacti/include/global_arrays.php:1354 msgid "Print totaling Legend Items Only" msgstr "Imprimir items Totales de leyenda solamente" #: /var/www/html/cacti/include/global_arrays.php:1358 msgid "Total Similar Data Sources" msgstr "Total de Data Sources similares" #: /var/www/html/cacti/include/global_arrays.php:1359 msgid "Total All Data Sources" msgstr "Total de todos los Data Sources" #: /var/www/html/cacti/include/global_arrays.php:1363 msgid "No Reordering" msgstr "Sin reordenar" #: /var/www/html/cacti/include/global_arrays.php:1364 msgid "Data Source, Graph" msgstr "Data Source, gráfico" #: /var/www/html/cacti/include/global_arrays.php:1365 msgid "Graph, Data Source" msgstr "Gráfico, Data Source" #: /var/www/html/cacti/include/global_arrays.php:1372 msgid "contains" msgstr "contiene" #: /var/www/html/cacti/include/global_arrays.php:1373 msgid "does not contain" msgstr "no contiene" #: /var/www/html/cacti/include/global_arrays.php:1374 msgid "begins with" msgstr "comienza con" #: /var/www/html/cacti/include/global_arrays.php:1375 msgid "does not begin with" msgstr "no comienza con" #: /var/www/html/cacti/include/global_arrays.php:1376 msgid "ends with" msgstr "termina con" #: /var/www/html/cacti/include/global_arrays.php:1377 msgid "does not end with" msgstr "no termina con" #: /var/www/html/cacti/include/global_arrays.php:1378 msgid "matches" msgstr "coincidencias" #: /var/www/html/cacti/include/global_arrays.php:1379 msgid "does not match with" msgstr "no coincide con" #: /var/www/html/cacti/include/global_arrays.php:1380 msgid "is less than" msgstr "es menor que" #: /var/www/html/cacti/include/global_arrays.php:1381 msgid "is less than or equal" msgstr "es menor o igual que" #: /var/www/html/cacti/include/global_arrays.php:1382 msgid "is greater than" msgstr "es mayor que" #: /var/www/html/cacti/include/global_arrays.php:1383 msgid "is greater than or equal" msgstr "es mayor o igual que" #: /var/www/html/cacti/include/global_arrays.php:1384 msgid "is unknown" msgstr "es desconocido" #: /var/www/html/cacti/include/global_arrays.php:1385 msgid "is not unknown" msgstr "no es desconocido" #: /var/www/html/cacti/include/global_arrays.php:1386 msgid "is empty" msgstr "esta vacio" #: /var/www/html/cacti/include/global_arrays.php:1387 msgid "is not empty" msgstr "no esta vacio" #: /var/www/html/cacti/include/global_arrays.php:1388 msgid "matches regular expression" msgstr "coincide con expresión regular" #: /var/www/html/cacti/include/global_arrays.php:1389 msgid "does not match regular expression" msgstr "no coincide con expresión regular" #: /var/www/html/cacti/include/global_arrays.php:1491 msgid "Fixed String" msgstr "Cadena de texto fija" #: /var/www/html/cacti/include/global_arrays.php:1496 msgid "Every 1 Hour" msgstr "Cada 1 hora" #: /var/www/html/cacti/include/global_arrays.php:1502 msgid "Every Day" msgstr "Todos los días" #: /var/www/html/cacti/include/global_arrays.php:1503 msgid "Every Week" msgstr "Cada semana" #: /var/www/html/cacti/include/global_arrays.php:1504 #: /var/www/html/cacti/include/global_arrays.php:1505 #, php-format msgid "Every %d Weeks" msgstr "Cada %d semanas" #: /var/www/html/cacti/include/global_arrays.php:1536 msgctxt "A short textual representation of a month, three letters" msgid "Jan" msgstr "Ene" #: /var/www/html/cacti/include/global_arrays.php:1537 msgctxt "A short textual representation of a month, three letters" msgid "Feb" msgstr "Feb" #: /var/www/html/cacti/include/global_arrays.php:1538 msgctxt "A short textual representation of a month, three letters" msgid "Mar" msgstr "Mar" #: /var/www/html/cacti/include/global_arrays.php:1539 msgctxt "A short textual representation of a month, three letters" msgid "Apr" msgstr "Abr" #: /var/www/html/cacti/include/global_arrays.php:1540 msgctxt "A short textual representation of a month, three letters" msgid "May" msgstr "May" #: /var/www/html/cacti/include/global_arrays.php:1541 msgctxt "A short textual representation of a month, three letters" msgid "Jun" msgstr "Jun" #: /var/www/html/cacti/include/global_arrays.php:1542 msgctxt "A short textual representation of a month, three letters" msgid "Jul" msgstr "Jul" #: /var/www/html/cacti/include/global_arrays.php:1543 msgctxt "A short textual representation of a month, three letters" msgid "Aug" msgstr "Ago" #: /var/www/html/cacti/include/global_arrays.php:1544 msgctxt "A short textual representation of a month, three letters" msgid "Sep" msgstr "Sep" #: /var/www/html/cacti/include/global_arrays.php:1545 msgctxt "A short textual representation of a month, three letters" msgid "Oct" msgstr "Oct" #: /var/www/html/cacti/include/global_arrays.php:1546 msgctxt "A short textual representation of a month, three letters" msgid "Nov" msgstr "Nov" #: /var/www/html/cacti/include/global_arrays.php:1547 msgctxt "A short textual representation of a month, three letters" msgid "Dec" msgstr "Dic" #: /var/www/html/cacti/include/global_arrays.php:1561 msgctxt "A textual representation of a day, three letters" msgid "Sun" msgstr "Dom" #: /var/www/html/cacti/include/global_arrays.php:1562 msgctxt "A textual representation of a day, three letters" msgid "Mon" msgstr "Lun" #: /var/www/html/cacti/include/global_arrays.php:1563 msgctxt "A textual representation of a day, three letters" msgid "Tue" msgstr "Mar" #: /var/www/html/cacti/include/global_arrays.php:1564 msgctxt "A textual representation of a day, three letters" msgid "Wed" msgstr "Mie" #: /var/www/html/cacti/include/global_arrays.php:1565 msgctxt "A textual representation of a day, three letters" msgid "Thu" msgstr "Jue" #: /var/www/html/cacti/include/global_arrays.php:1566 msgctxt "A textual representation of a day, three letters" msgid "Fri" msgstr "Vie" #: /var/www/html/cacti/include/global_arrays.php:1567 msgctxt "A textual representation of a day, three letters" msgid "Sat" msgstr "Sab" #: /var/www/html/cacti/include/global_form.php:36 msgid "A useful name for this Data Storage and Polling Profile." msgstr "Un nombre útil para este perfil de almacenamiento de datos y sondeo." #: /var/www/html/cacti/include/global_form.php:40 msgid "New Profile" msgstr "Nuevo Perfil" #: /var/www/html/cacti/include/global_form.php:44 msgid "Polling Interval" msgstr "Intervalo de sondeo" #: /var/www/html/cacti/include/global_form.php:45 msgid "The frequency that data will be collected from the Data Source?" msgstr "La frecuencia con la que los datos serán recolectados del Data Source?" #: /var/www/html/cacti/include/global_form.php:53 msgid "" "How long can data be missing before RRDtool records unknown data. Increase " "this value if your Data Source is unstable and you wish to carry forward old " "data rather than show gaps in your graphs. This value is multiplied by the " "X-Files Factor to determine the actual amount of time." msgstr "" "Durante cuanto tiempo pueden faltar datos antes que RRDtool registre datos " "desconocidos. Aumenta este valor si tu Data Source is inestable y deseas " "llevar datos antiguos en vez de mostrar diferencias en tus gráficos. Este " "valor es multiplicado por el Factor Archivos-X para determinar la cantidad " "de tiempo actual." #: /var/www/html/cacti/include/global_form.php:60 msgid "X-Files Factor" msgstr "Factor Archivos-X" #: /var/www/html/cacti/include/global_form.php:61 msgid "The amount of unknown data that can still be regarded as known." msgstr "" "La cantidad de datos desconocidos que todavía pueden considerarse conocidos." #: /var/www/html/cacti/include/global_form.php:69 msgid "Consolidation Functions" msgstr "Funciones de consolidación" #: /var/www/html/cacti/include/global_form.php:70 #: /var/www/html/cacti/include/global_form.php:102 msgid "How data is to be entered in RRAs." msgstr "Como se introducen los datos en RRAs." #: /var/www/html/cacti/include/global_form.php:77 msgid "Is this the default storage profile?" msgstr "Es este el perfil de almacenamiento predeterminado?" #: /var/www/html/cacti/include/global_form.php:83 msgid "RRDfile Size (in Bytes)" msgstr "Tamaño de archivo RRD (en Bytes)" #: /var/www/html/cacti/include/global_form.php:84 msgid "" "Based upon the number of Rows in all RRAs and the number of Consolidation " "Functions selected, the size of this entire in the RRDfile." msgstr "" "Basado en el número de filas en todos los RRAs y el número de funciones de \n" "consolidación seleccionadas, el tamaño de todo esto en el archivo RRD." #: /var/www/html/cacti/include/global_form.php:106 msgid "New Profile RRA" msgstr "Nuevo perfil RRA" #: /var/www/html/cacti/include/global_form.php:110 msgid "Aggregation Level" msgstr "Nivel de Agregación" #: /var/www/html/cacti/include/global_form.php:111 msgid "" "The number of samples required prior to filling a row in the RRA " "specification. The first RRA should always have a value of 1." msgstr "" "La cantidad de muestras requeridas previo a llenar una fila en la " "especificación RRA. El primer RRA debería siempre tener un valor de 1." #: /var/www/html/cacti/include/global_form.php:119 msgid "How many generations data is kept in the RRA." msgstr "Cuantas generaciones de datos se mantienen en el RRA." #: /var/www/html/cacti/include/global_form.php:127 msgid "Default Timespan" msgstr "Intervalo de tiempo por defecto" #: /var/www/html/cacti/include/global_form.php:128 msgid "" "When viewing a Graph based upon the RRA in question, the default Timespan to " "show for that Graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:135 msgid "" "Based upon the Aggregation Level, the Rows, and the Polling Interval the " "amount of data that will be retained in the RRA" msgstr "" "Basado en el nivel de Agregación, las filas, y el intervalo de Sondeo la " "cantidad de datos que serán conservados en el RRA" #: /var/www/html/cacti/include/global_form.php:140 msgid "RRA Size (in Bytes)" msgstr "Tamaño RRA (en Bytes)" #: /var/www/html/cacti/include/global_form.php:141 msgid "" "Based upon the number of Rows and the number of Consolidation Functions " "selected, the size of this RRA in the RRDfile." msgstr "" "Basado en el número de filas y el número de funciones de consolidación " "seleccionadas, el tamaño de este RRA en el archivo RRD." #: /var/www/html/cacti/include/global_form.php:159 msgid "A useful name for this CDEF." msgstr "Un nombre útil para este CDEF." #: /var/www/html/cacti/include/global_form.php:179 msgid "The name of this Color." msgstr "El nombre de este Color." #: /var/www/html/cacti/include/global_form.php:186 msgid "Hex Value" msgstr "Valor Hex" #: /var/www/html/cacti/include/global_form.php:187 msgid "The hex value for this color; valid range: 000000-FFFFFF." msgstr "El valor hexadecimal para este color; rango válido: 000000-FFFFFF." #: /var/www/html/cacti/include/global_form.php:195 msgid "Any named color should be read only." msgstr "Cualquier color con nombre debe ser de solo lectura." #: /var/www/html/cacti/include/global_form.php:220 #: /var/www/html/cacti/include/global_form.php:280 msgid "Enter a meaningful name for this data input method." msgstr "Ingrese un nombre significativo para este método de entrada de datos." #: /var/www/html/cacti/include/global_form.php:227 msgid "Input Type" msgstr "Tipo de entrada" #: /var/www/html/cacti/include/global_form.php:228 msgid "" "Choose the method you wish to use to collect data for this Data Input method." msgstr "" "Elija el método que deseas usar para recolectar datos para este método de " "entrada de datos." #: /var/www/html/cacti/include/global_form.php:234 msgid "Input String" msgstr "Cadena de entrada" #: /var/www/html/cacti/include/global_form.php:235 msgid "" "The data that is sent to the script, which includes the complete path to the " "script and input sources in <> brackets." msgstr "" "Los datos que son enviados al script, que incluye la ruta completa al script " "y entrada de fuentes entre <> paréntesis." #: /var/www/html/cacti/include/global_form.php:256 #: /var/www/html/cacti/include/global_form.php:267 #, php-format msgid "Field [%s]" msgstr "Campo [%s]" #: /var/www/html/cacti/include/global_form.php:257 #, php-format msgid "Choose the associated field from the %s field." msgstr "Elija el campo asociado del campo %s." #: /var/www/html/cacti/include/global_form.php:268 #, php-format msgid "" "Enter a name for this %s field. Note: If using name value pairs in your " "script, for example: NAME:VALUE, it is important that the name match your " "output field name identically to the script output name or names." msgstr "" "Ingrese un nombre para este campo %s. Nota: si utiliza pares de valores de " "nombre en su script, por ejemplo: NAME:VALUE, es importante que el nombre " "coincida con el nombre del campo de salida de su script." #: /var/www/html/cacti/include/global_form.php:287 msgid "Update RRDfile" msgstr "Actualizar archivo RRD" #: /var/www/html/cacti/include/global_form.php:288 msgid "Whether data from this output field is to be entered into the RRDfile." msgstr "" "Si los datos de este campo de salida son para ser introducidos al archivo " "RRD." #: /var/www/html/cacti/include/global_form.php:295 msgid "Regular Expression Match" msgstr "Coincidencia de expresión regular" #: /var/www/html/cacti/include/global_form.php:296 msgid "" "If you want to require a certain regular expression to be matched against " "input data, enter it here (preg_match format)." msgstr "" "Si quieres requerir que cierta expresión regular coincida contra una entrada " "de datos, ingresala aquí (preg_match format)." #: /var/www/html/cacti/include/global_form.php:303 msgid "Allow Empty Input" msgstr "Permitir entradas vacías" #: /var/www/html/cacti/include/global_form.php:304 msgid "Check here if you want to allow NULL input in this field from the user." msgstr "" "Marque aquí si quieres permitir entradas NULAS en este campo de usuario." #: /var/www/html/cacti/include/global_form.php:311 msgid "Special Type Code" msgstr "Código de tipo especial" #: /var/www/html/cacti/include/global_form.php:312 #, php-format msgid "" "If this field should be treated specially by host templates, indicate so " "here. Valid keywords for this field are %s" msgstr "" "Si este campo debe ser tratado especialmente por Plantillas de equipos, " "indíquelo aquí. Palabras claves válidas para este campo son %s" #: /var/www/html/cacti/include/global_form.php:344 msgid "The name given to this data template." msgstr "El nombre dado a esta plantilla de datos." #: /var/www/html/cacti/include/global_form.php:375 msgid "" "Choose a name for this data source. It can include replacement variables " "such as |host_description| or |query_fieldName|. For a complete list of " "supported replacement tags, please see the Cacti documentation." msgstr "" "Elija un nombre para este Data Source. Puede incluir variables de reemplazo " "como |host_description| o |query_fieldName|. Para una lista completa de los " "tag de reemplazo soportados, vea la documentación de Cacti." #: /var/www/html/cacti/include/global_form.php:379 msgid "Data Source Path" msgstr "Ruta del Data Source" #: /var/www/html/cacti/include/global_form.php:384 msgid "The full path to the RRDfile." msgstr "La ruta completa al archivo RRD." #: /var/www/html/cacti/include/global_form.php:393 msgid "The script/source used to gather data for this data source." msgstr "El script/fuente usado para obtener datos para este Data Source." #: /var/www/html/cacti/include/global_form.php:399 #: /var/www/html/cacti/include/global_form.php:1588 msgid "" "Select the Data Source Profile. The Data Source Profile controls polling " "interval, the data aggregation, and retention policy for the resulting Data " "Sources." msgstr "" "Seleccione el perfil de Data Source. El perfil de Data Source controla el " "intervalo de Sondeo, la agregación de datos, y política de retención para " "los Data Sources resultantes." #: /var/www/html/cacti/include/global_form.php:411 msgid "The amount of time in seconds between expected updates." msgstr "El tiempo en segundos entre actualizaciones esperadas." #: /var/www/html/cacti/include/global_form.php:415 msgid "Data Source Active" msgstr "Data Source activo" #: /var/www/html/cacti/include/global_form.php:418 msgid "Whether Cacti should gather data for this data source or not." msgstr "Si Cacti debe recopilar datos para este Data Source o no." #: /var/www/html/cacti/include/global_form.php:426 msgid "Internal Data Source Name" msgstr "Nombre interno del Data Source" #: /var/www/html/cacti/include/global_form.php:431 msgid "" "Choose unique name to represent this piece of data inside of the RRDfile." msgstr "" "Elija un nombre único para representar esta porción de datos dentro del " "archivo RRD." #: /var/www/html/cacti/include/global_form.php:434 msgid "Minimum Value (\"U\" for No Minimum)" msgstr "Valor mínimo (\"U\" sin mínimo)" #: /var/www/html/cacti/include/global_form.php:439 msgid "The minimum value of data that is allowed to be collected." msgstr "El valor mínimo de datos que se permite ser recolectado." #: /var/www/html/cacti/include/global_form.php:442 msgid "Maximum Value (\"U\" for No Maximum)" msgstr "Valor máximo (\"U\" sin máximo)" #: /var/www/html/cacti/include/global_form.php:447 msgid "The maximum value of data that is allowed to be collected." msgstr "El valor máximo de datos que se permite ser recolectado." #: /var/www/html/cacti/include/global_form.php:450 msgid "Data Source Type" msgstr "Tipo de Data Source" #: /var/www/html/cacti/include/global_form.php:454 msgid "How data is represented in the RRA." msgstr "Como se representan los datos en el RRA." #: /var/www/html/cacti/include/global_form.php:462 msgid "" "The maximum amount of time that can pass before data is entered as " "'unknown'. (Usually 2x300=600)" msgstr "" "La cantidad máxima de tiempo que puede transcurrir antes de que los datos se " "ingresen como 'desconocidos'. (Usualmente 2x300 = 600)" #: /var/www/html/cacti/include/global_form.php:468 #: /var/www/html/cacti/lib/html_utility.php:231 msgid "Not Selected" msgstr "No seleccionado" #: /var/www/html/cacti/include/global_form.php:469 msgid "" "When data is gathered, the data for this field will be put into this data " "source." msgstr "" "Cuando se recopilan datos, los datos de este campo se pondrán en este Data " "Source." #: /var/www/html/cacti/include/global_form.php:478 msgid "" "Enter a name for this GPRINT preset, make sure it is something you recognize." msgstr "" "Ingrese el nombre para este GPRINT preestablecido, asegúrate que sea algo " "que puedas reconocer." #: /var/www/html/cacti/include/global_form.php:485 msgid "GPRINT Text" msgstr "Texto GPRINT" #: /var/www/html/cacti/include/global_form.php:486 msgid "Enter the custom GPRINT string here." msgstr "Introduzca el texto GPRINT personalizada aquí." #: /var/www/html/cacti/include/global_form.php:504 msgid "Common Options" msgstr "Opciones comunes" #: /var/www/html/cacti/include/global_form.php:509 msgid "Title (--title)" msgstr "Título (--title)" #: /var/www/html/cacti/include/global_form.php:513 msgid "" "The name that is printed on the graph. It can include replacement variables " "such as |host_description| or |query_fieldName|. For a complete list of " "supported replacement tags, please see the Cacti documentation." msgstr "" "El nombre que se imprime en el gráfico. Puede incluir variables de reemplazo " "como |host_description| o |query_fieldName|. Para una lista completa de " "tags de reemplazo soportados, vea la documentación de Cacti." #: /var/www/html/cacti/include/global_form.php:517 msgid "Vertical Label (--vertical-label)" msgstr "Etiqueta vertical (--vertical-label)" #: /var/www/html/cacti/include/global_form.php:521 msgid "The label vertically printed to the left of the graph." msgstr "La etiqueta impresa verticalmente a la izquierda del gráfico." #: /var/www/html/cacti/include/global_form.php:525 msgid "Image Format (--imgformat)" msgstr "Formato de imagen (--imgformat)" #: /var/www/html/cacti/include/global_form.php:529 msgid "" "The type of graph that is generated; PNG, GIF or SVG. The selection of " "graph image type is very RRDtool dependent." msgstr "" "El tipo de gráfico que es generado; PNG, GIF o SVG. La selección del tipo " "imagen de gráfico es muy dependiente de RRDtool." #: /var/www/html/cacti/include/global_form.php:532 msgid "Height (--height)" msgstr "Altura (--height)" #: /var/www/html/cacti/include/global_form.php:536 msgid "" "The height (in pixels) of the graph area within the graph. This area does " "not include the legend, axis legends, or title." msgstr "" "La altura (en píxeles) del área de gráfico dentro del gráfico. Esta área no " "incluye la leyenda, leyendas de eje, o título." #: /var/www/html/cacti/include/global_form.php:540 msgid "Width (--width)" msgstr "Ancho (--width)" #: /var/www/html/cacti/include/global_form.php:544 msgid "" "The width (in pixels) of the graph area within the graph. This area does not " "include the legend, axis legends, or title." msgstr "" "El ancho (en píxeles) del área de gráfico dentro del gráfico. Esta área no " "incluye la leyenda, leyendas de eje, o título." #: /var/www/html/cacti/include/global_form.php:548 msgid "Base Value (--base)" msgstr "Valor base (--base)" #: /var/www/html/cacti/include/global_form.php:552 msgid "Should be set to 1024 for memory and 1000 for traffic measurements." msgstr "Debería usarse 1024 para memoria y 1000 para mediciones de tráfico." #: /var/www/html/cacti/include/global_form.php:556 msgid "Slope Mode (--slope-mode)" msgstr "Modo Pendiente (--slope-mode)" #: /var/www/html/cacti/include/global_form.php:559 msgid "" "Using Slope Mode evens out the shape of the graphs at the expense of some on " "screen resolution." msgstr "" "Usando el modo Pendiente empareja la forma del gráfico a expensas de algo de " "resolución de pantalla." #: /var/www/html/cacti/include/global_form.php:562 msgid "Scaling Options" msgstr "Opciones de escala" #: /var/www/html/cacti/include/global_form.php:567 msgid "Auto Scale" msgstr "Auto escala" #: /var/www/html/cacti/include/global_form.php:570 msgid "" "Auto scale the y-axis instead of defining an upper and lower limit. Note: if " "this is check both the Upper and Lower limit will be ignored." msgstr "" "Escala automáticamente el eje Y en lugar de definir un límite superior e " "inferior. Nota: si se activa esto el límite superior e inferior serán " "ignorados." #: /var/www/html/cacti/include/global_form.php:574 msgid "Auto Scale Options" msgstr "Opciones de Auto escala" #: /var/www/html/cacti/include/global_form.php:577 msgid "" "Use
    --alt-autoscale to scale to the absolute minimum and maximum
    --" "alt-autoscale-max to scale to the maximum value, using a given lower limit " "
    --alt-autoscale-min to scale to the minimum value, using a given upper " "limit
    --alt-autoscale (with limits) to scale using both lower and upper " "limits (RRDtool default)
    " msgstr "" "Utilizar
    --alt-autoscale para escalar al mínimo y máximo absoluto
    " "--alt-autoscale-max para escalar al valor máximo, usando un límite inferior " "dado
    --alt-autoscale-min para escalar al valor mínimo, usando un " "límite superior dado
    --alt-autoscale (con límites) para escalar usando " "ambos límites (por defecto para RRDtool)
    " #: /var/www/html/cacti/include/global_form.php:581 msgid "Use --alt-autoscale (ignoring given limits)" msgstr "Use --alt-autoscale (ingorando los límites establecidos)" #: /var/www/html/cacti/include/global_form.php:585 msgid "Use --alt-autoscale-max (accepting a lower limit)" msgstr "Use --alt-autoscale-max (aceptando un límite inferior)" #: /var/www/html/cacti/include/global_form.php:589 msgid "Use --alt-autoscale-min (accepting an upper limit)" msgstr "Use --alt-autoscale-min (aceptando un límite superior)" #: /var/www/html/cacti/include/global_form.php:593 msgid "Use --alt-autoscale (accepting both limits, RRDtool default)" msgstr "Use --alt-autoscale (aceptando ambos límites, RRDtool por defecto)" #: /var/www/html/cacti/include/global_form.php:598 msgid "Logarithmic Scaling (--logarithmic)" msgstr "Escalamiento logarítmico (--logarithmic)" #: /var/www/html/cacti/include/global_form.php:602 msgid "Use Logarithmic y-axis scaling" msgstr "Utilizar escalamiento logarítmico del eje Y" #: /var/www/html/cacti/include/global_form.php:605 msgid "SI Units for Logarithmic Scaling (--units=si)" msgstr "Unidades SI para Escalamiento Logarítmico (--units=si)" #: /var/www/html/cacti/include/global_form.php:608 msgid "" "Use SI Units for Logarithmic Scaling instead of using exponential notation." "
    Note: Linear graphs use SI notation by default." msgstr "" "Utilice unidades SI para escalamiento logarítmico en vez de usar notación " "exponencial.
    Nota: gráficos lineales utilizan notación SI por defecto." #: /var/www/html/cacti/include/global_form.php:611 msgid "Rigid Boundaries Mode (--rigid)" msgstr "Modo de límites Rígidos (--rigid)" #: /var/www/html/cacti/include/global_form.php:614 msgid "" "Do not expand the lower and upper limit if the graph contains a value " "outside the valid range." msgstr "" "No expandir el límite inferior y superior si el gráfico contiene un valor " "fuera del rango válido." #: /var/www/html/cacti/include/global_form.php:617 msgid "Upper Limit (--upper-limit)" msgstr "Límite superior (--upper-limit)" #: /var/www/html/cacti/include/global_form.php:621 msgid "The maximum vertical value for the graph." msgstr "El valor vertical máximo para el gráfico." #: /var/www/html/cacti/include/global_form.php:625 msgid "Lower Limit (--lower-limit)" msgstr "Límite inferior (--lower-limit)" #: /var/www/html/cacti/include/global_form.php:629 msgid "The minimum vertical value for the graph." msgstr "El valor vertical mínimo para el gráfico." #: /var/www/html/cacti/include/global_form.php:633 msgid "Grid Options" msgstr "Opciones de cuadrícula" #: /var/www/html/cacti/include/global_form.php:638 msgid "Unit Grid Value (--unit/--y-grid)" msgstr "Valor de unidad de cuadrícula (--unit/--y-grid)" #: /var/www/html/cacti/include/global_form.php:642 msgid "" "Sets the exponent value on the Y-axis for numbers. Note: This option is " "deprecated and replaced by the --y-grid option. In this option, Y-axis grid " "lines appear at each grid step interval. Labels are placed every label " "factor lines." msgstr "" "Establece el valor del exponente en el eje Y para los números. Nota: esta " "opción ha desaparecido y fue reemplazada por la opción --y-grid. En esta " "opción, las líneas de la cuadrícula del eje Y aparecen en cada intervalo de " "paso de cuadrícula. Las etiquetas se colocan en todas las líneas de los " "factores de la etiqueta." #: /var/www/html/cacti/include/global_form.php:646 msgid "Unit Exponent Value (--units-exponent)" msgstr "Valor del exponente de la unidad (--units-exponent)" #: /var/www/html/cacti/include/global_form.php:650 msgid "" "What unit Cacti should use on the Y-axis. Use 3 to display everything in \"k" "\" or -6 to display everything in \"u\" (micro)." msgstr "" "Que unidad debería usar Cacti en el eje Y. Utilice 3 para mostrar todo en \"k" "\" o -6 para mostrar todo en \"u\" (micro)." #: /var/www/html/cacti/include/global_form.php:654 msgid "Unit Length (--units-length <length>)" msgstr "Longitud de unidad (--units-length <length>)" #: /var/www/html/cacti/include/global_form.php:659 msgid "" "How many digits should RRDtool assume the y-axis labels to be? You may have " "to use this option to make enough space once you start fiddling with the y-" "axis labeling." msgstr "" #: /var/www/html/cacti/include/global_form.php:662 msgid "No Gridfit (--no-gridfit)" msgstr "No hay Gridfit (--no-gridfit)" #: /var/www/html/cacti/include/global_form.php:665 msgid "" "In order to avoid anti-aliasing blurring effects RRDtool snaps points to " "device resolution pixels, this results in a crisper appearance. If this is " "not to your liking, you can use this switch to turn this behavior off." "
    Note: Gridfitting is turned off for PDF, EPS, SVG " "output by default." msgstr "" "Para evitar efectos de borrosidad anti-aliasing, RRDtool ajusta los puntos a " "los píxeles de resolución del dispositivo, lo que da como resultado un " "aspecto más nítido. Si esto no es de su agrado, puedes utilizar este " "modificador para desactivar este comportamiento.
    Nota: El ajuste de cuadrícula está desactivado por defecto para PDF, EPS, SVG." #: /var/www/html/cacti/include/global_form.php:668 msgid "Alternative Y Grid (--alt-y-grid)" msgstr "Cuadrícula \"Y\" alternativa (--alt-y-grid)" #: /var/www/html/cacti/include/global_form.php:671 msgid "" "The algorithm ensures that you always have a grid, that there are enough but " "not too many grid lines, and that the grid is metric. This parameter will " "also ensure that you get enough decimals displayed even if your graph goes " "from 69.998 to 70.001.
    Note: This parameter may " "interfere with --alt-autoscale options." msgstr "" "El algoritmo asegura que siempre tengas una cuadrícula, que haya suficientes " "pero no demasiadas líneas de cuadrícula, y que la cuadrícula sea métrica. " "Este parámetro también asegurará que se muestren suficientes decimales " "incluso si el gráfico va desde 69.998 a 70.001.
    Nota: Este parámetro podría interferir con las opciones --alt-autoscale." #: /var/www/html/cacti/include/global_form.php:674 msgid "Axis Options" msgstr "Opciones de Ejes" #: /var/www/html/cacti/include/global_form.php:679 msgid "Right Axis (--right-axis <scale:shift>)" msgstr "Eje derecho (--right-axis <scale:shift>)" #: /var/www/html/cacti/include/global_form.php:684 msgid "" "A second axis will be drawn to the right of the graph. It is tied to the " "left axis via the scale and shift parameters." msgstr "" "Se dibujará un segundo eje a la derecha del gráfico. Está atado al eje " "izquierdo a través de los parámetros de la escala y cambio." #: /var/www/html/cacti/include/global_form.php:687 msgid "Right Axis Label (--right-axis-label <string>)" msgstr "Etiqueta de Eje derecho (--right-axis-label <string>)" #: /var/www/html/cacti/include/global_form.php:692 msgid "The label for the right axis." msgstr "La etiqueta para el eje de la derecha." #: /var/www/html/cacti/include/global_form.php:695 msgid "Right Axis Format (--right-axis-format <format>)" msgstr "Formato de eje derecho (--right-axis-format <format>)" #: /var/www/html/cacti/include/global_form.php:700 #, php-format msgid "" "By default, the format of the axis labels gets determined automatically. If " "you want to do this yourself, use this option with the same %lf arguments " "you know from the PRINT and GPRINT commands." msgstr "" "El formato de las etiquetas de los ejes son determinadas automáticamente por " "defecto. Si quieres hacer esto tu mismo, usa esta opción con el mismo " "argumento %lf que tu sabes de los comandos PRINT y GPRINT." #: /var/www/html/cacti/include/global_form.php:703 msgid "Right Axis Formatter (--right-axis-formatter <formatname>)" msgstr "Formateador de eje derecho (--right-axis-formatter <formatname>)" #: /var/www/html/cacti/include/global_form.php:708 msgid "" "When you setup the right axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where data is treated as numeric, " "\"timestamp\" where values are interpreted as UNIX timestamps (number of " "seconds since January 1970) and expressed using strftime format (default is " "\"%Y-%m-%d %H:%M:%S\"). See also --units-length and --right-axis-format. " "Finally \"duration\" where values are interpreted as duration in " "milliseconds. Formatting follows the rules of valstrfduration qualified " "PRINT/GPRINT." msgstr "" "Cuando se configura el etiquetado del eje derecho, se aplica una regla al " "formato de datos. Formatos admitidos incluyen \"numérico\" donde los datos " "son tratados como numéricos, \"timestamp\" donde los valores son " "interpretados como timestamps de UNIX (número en segundos desde Enero de " "1970) y expresados usando el formato strftime (Por defecto es \"%Y-%m-%d %H:" "%M:%S\"). Vea también --units-length and --left-axis-format. Finalmente " "\"duration\" donde los valores son interpretados como duración en " "milisegundos. El formato sigue las reglas de valstrfduration qualified PRINT/" "GPRINT." #: /var/www/html/cacti/include/global_form.php:711 msgid "Left Axis Formatter (--left-axis-formatter <formatname>)" msgstr "" "Formateador de eje izquierdo (--left-axis-formatter <formatname>)" #: /var/www/html/cacti/include/global_form.php:716 msgid "" "When you setup the left axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where data is treated as numeric, " "\"timestamp\" where values are interpreted as UNIX timestamps (number of " "seconds since January 1970) and expressed using strftime format (default is " "\"%Y-%m-%d %H:%M:%S\"). See also --units-length. Finally \"duration\" " "where values are interpreted as duration in milliseconds. Formatting " "follows the rules of valstrfduration qualified PRINT/GPRINT." msgstr "" "Cuando se configura el etiquetado del eje derecho, se aplica una regla al " "formato de datos. Formatos admitidos incluyen \"numérico\" donde los datos " "son tratados como numéricos, \"timestamp\" donde los valores son " "interpretados como timestamps de UNIX (número en segundos desde Enero de " "1970) y expresados usando el formato strftime (Por defecto es \"%Y-%m-%d %H:" "%M:%S\"). Vea también --units-length and --left-axis-format. Finalmente " "\"duration\" donde los valores son interpretados como duración en " "milisegundos. El formato sigue las reglas de valstrfduration qualified PRINT/" "GPRINT." #: /var/www/html/cacti/include/global_form.php:719 msgid "Legend Options" msgstr "Opciones de leyenda" #: /var/www/html/cacti/include/global_form.php:724 msgid "Auto Padding" msgstr "Rellenado automático" #: /var/www/html/cacti/include/global_form.php:727 msgid "" "Pad text so that legend and graph data always line up. Note: this could " "cause graphs to take longer to render because of the larger overhead. Also " "Auto Padding may not be accurate on all types of graphs, consistent labeling " "usually helps." msgstr "" "Texto de relleno para que la leyenda y los datos del gráfico siempre esten " "alineados. Nota: esto podría causar que los gráficos tarden mas en hacerse " "debido una sobecarga mayor. También el auto rellenado podría no ser preciso " "en todos los tipos de gráficos, generalmente ayuda un etiquetado consistente." #: /var/www/html/cacti/include/global_form.php:730 msgid "Dynamic Labels (--dynamic-labels)" msgstr "Etiquetas dinámicas (--dynamic-labels)" #: /var/www/html/cacti/include/global_form.php:733 msgid "Draw line markers as a line." msgstr "Dibujar marcadores de línea como una línea." #: /var/www/html/cacti/include/global_form.php:736 msgid "Force Rules Legend (--force-rules-legend)" msgstr "Forzar reglas de leyenda (--force-rules-legend)" #: /var/www/html/cacti/include/global_form.php:739 msgid "Force the generation of HRULE and VRULE legends." msgstr "Forzar la generación de leyendas HRULE y VRULE." #: /var/www/html/cacti/include/global_form.php:742 msgid "Tab Width (--tabwidth <pixels>)" msgstr "Ancho de Tab (--tabwidth <pixels>)" #: /var/www/html/cacti/include/global_form.php:747 msgid "By default the tab-width is 40 pixels, use this option to change it." msgstr "" "Por defecto el anocho de tab es 40 píxeles, use esta opción para cambiarlo." #: /var/www/html/cacti/include/global_form.php:750 msgid "Legend Position (--legend-position=<position>)" msgstr "Posición de leyenda (--legend-position=<position>)" #: /var/www/html/cacti/include/global_form.php:754 msgid "Place the legend at the given side of the graph." msgstr "Colocar la leyenda en el lado determinado del gráfico." #: /var/www/html/cacti/include/global_form.php:757 msgid "Legend Direction (--legend-direction=<direction>)" msgstr "Dirección de la leyenda (--legend-direction=<direction>)" #: /var/www/html/cacti/include/global_form.php:761 msgid "Place the legend items in the given vertical order." msgstr "Colocar los items de leyenda en el orden vertical determinado." #: /var/www/html/cacti/include/global_form.php:768 #: /var/www/html/cacti/lib/api_aggregate.php:1296 #: /var/www/html/cacti/lib/html.php:883 msgid "Graph Item Type" msgstr "Tipo de item de gráfico" #: /var/www/html/cacti/include/global_form.php:772 msgid "How data for this item is represented visually on the graph." msgstr "" "Como son representados visualmente en el gráfico los datos para este item." #: /var/www/html/cacti/include/global_form.php:787 msgid "The data source to use for this graph item." msgstr "El Data Source a usar para este item de gráfico." #: /var/www/html/cacti/include/global_form.php:794 msgid "The color to use for the legend." msgstr "El color para esta leyenda." #: /var/www/html/cacti/include/global_form.php:797 msgid "Opacity/Alpha Channel" msgstr "Canal de Opacidad/Alfa" #: /var/www/html/cacti/include/global_form.php:801 msgid "The opacity/alpha channel of the color." msgstr "La opacidad/Canal alfa del color." #: /var/www/html/cacti/include/global_form.php:804 #: /var/www/html/cacti/lib/rrd.php:2691 msgid "Consolidation Function" msgstr "Función de consolidación" #: /var/www/html/cacti/include/global_form.php:808 msgid "How data for this item is represented statistically on the graph." msgstr "" "Como se representan estadísticamente en el gráfico los datos de este item." #: /var/www/html/cacti/include/global_form.php:811 msgid "CDEF Function" msgstr "Función CDEF" #: /var/www/html/cacti/include/global_form.php:816 msgid "A CDEF (math) function to apply to this item on the graph or legend." msgstr "" "Una función (matemática) CDEF para aplicar a este item en el gráfico o " "leyenda." #: /var/www/html/cacti/include/global_form.php:819 msgid "VDEF Function" msgstr "Función VDEF" #: /var/www/html/cacti/include/global_form.php:824 msgid "A VDEF (math) function to apply to this item on the graph legend." msgstr "" "Una función (matemática) VDEF para aplicar a este item en la leyenda del " "gráfico." #: /var/www/html/cacti/include/global_form.php:827 msgid "Shift Data" msgstr "Datos de Jornada" #: /var/www/html/cacti/include/global_form.php:830 msgid "" "Offset your data on the time axis (x-axis) by the amount specified in the " "'value' field." msgstr "" "Compensar los datos en el eje del tiempo (eje X) por la cantidad " "especificada en el campo 'valor'." #: /var/www/html/cacti/include/global_form.php:833 #: /var/www/html/cacti/lib/rrd.php:2661 /var/www/html/cacti/utilities.php:2396 msgid "Value" msgstr "Valor" #: /var/www/html/cacti/include/global_form.php:838 msgid "" "[HRULE|VRULE]: The value of the graph item.
    [TICK]: The fraction for " "the tick line.
    [SHIFT]: The time offset in seconds." msgstr "" "[HRULE|VRULE]: El valor del item de gráfico.
    [TICK]: La fracción de la " "línea de tilde.
    [SHIFT]: El desplazamiento de tiempo en segundos." #: /var/www/html/cacti/include/global_form.php:841 msgid "GPRINT Type" msgstr "Tipo de GPRINT" #: /var/www/html/cacti/include/global_form.php:845 msgid "" "If this graph item is a GPRINT, you can optionally choose another format " "here. You can define additional types under \"GPRINT Presets\"." msgstr "" "Si este item de gráfico es un GPRINT, opcionalmente puedes elegir otro " "formato aquí. Puedes definir tipos adicionales en \"GPRINT preestablecidos\"." #: /var/www/html/cacti/include/global_form.php:848 msgid "Text Alignment (TEXTALIGN)" msgstr "Alineación de texto (TEXTALIGN)" #: /var/www/html/cacti/include/global_form.php:853 msgid "" "All subsequent legend line(s) will be aligned as given here. You may use " "this command multiple times in a single graph. This command does not " "produce tabular layout.
    Note: You may want to insert a " "<HR> on the preceding graph item.
    Note: A <" "HR> on this legend line will obsolete this setting!" msgstr "" "Todas las líneas de leyenda subsiguientes serán alineadas como se indica " "aquí. Puedes utilizar este comando varias veces en un solo gráfico. Este " "comando no produce un diseño tabular.
    Nota: Puede que " "quieras insertar un <HR> el item de gráfico anterior.
    Nota: Un <HR> en esta leyenda hará obsoleta este " "ajuste!" #: /var/www/html/cacti/include/global_form.php:856 msgid "Text Format" msgstr "Formato de texto" #: /var/www/html/cacti/include/global_form.php:861 msgid "Text that will be displayed on the legend for this graph item." msgstr "El texto que se mostrará en la leyenda para este item de gráfico." #: /var/www/html/cacti/include/global_form.php:864 msgid "Insert Hard Return" msgstr "Insertar salto de línea" #: /var/www/html/cacti/include/global_form.php:867 msgid "Forces the legend to the next line after this item." msgstr "Forzar la leyenda a la siguiente línea después de este item." #: /var/www/html/cacti/include/global_form.php:870 msgid "Line Width (decimal)" msgstr "Ancho de línea (decimal)" #: /var/www/html/cacti/include/global_form.php:875 msgid "" "In case LINE was chosen, specify width of line here. You must include a " "decimal precision, for example 2.00" msgstr "" "En caso que LINE fue elegido, especifique ancho de línea aquí. Debe incluir " "precisión decimal, por ejemplo 2.00" #: /var/www/html/cacti/include/global_form.php:878 msgid "Dashes (dashes[=on_s[,off_s[,on_s,off_s]...]])" msgstr "Guiones (dashes[=on_s[,off_s[,on_s,off_s]...]])" #: /var/www/html/cacti/include/global_form.php:883 msgid "The dashes modifier enables dashed line style." msgstr "El modificador de guines permite el estilo de línea discontinua." #: /var/www/html/cacti/include/global_form.php:886 msgid "Dash Offset (dash-offset=offset)" msgstr "Compensación de guión (dash-offset=offset)" #: /var/www/html/cacti/include/global_form.php:891 msgid "" "The dash-offset parameter specifies an offset into the pattern at which the " "stroke begins." msgstr "" "El parámetro dash-offset especifica un desplazamiento en el patrón en el que " "comienza el trazo." #: /var/www/html/cacti/include/global_form.php:904 msgid "The name given to this graph template." msgstr "El nombre dado a esta Plantilla de gráficos." #: /var/www/html/cacti/include/global_form.php:911 msgid "Multiple Instances" msgstr "Múltiples instancias" #: /var/www/html/cacti/include/global_form.php:912 msgid "" "Check this checkbox if there can be more than one Graph of this type per " "Device." msgstr "" #: /var/www/html/cacti/include/global_form.php:936 msgid "" "Enter a name for this graph item input, make sure it is something you " "recognize." msgstr "" "Ingrese un nombre para esta entrada de item de gráfico, asegúrese de que sea " "algo que reconozca." #: /var/www/html/cacti/include/global_form.php:944 msgid "" "Enter a description for this graph item input to describe what this input is " "used for." msgstr "" "Ingrese una descripción para esta entrada de item de gráfico para describir " "para qué se utiliza esta entrada." #: /var/www/html/cacti/include/global_form.php:951 msgid "Field Type" msgstr "Tipo de campo" #: /var/www/html/cacti/include/global_form.php:952 msgid "How data is to be represented on the graph." msgstr "Como se representan los datos en el gráfico." #: /var/www/html/cacti/include/global_form.php:975 msgid "General Device Options" msgstr "Opciones General de dispositivo" #: /var/www/html/cacti/include/global_form.php:980 msgid "Give this host a meaningful description." msgstr "Dar a este equipo una descripción significativa." #: /var/www/html/cacti/include/global_form.php:987 #: /var/www/html/cacti/include/global_form.php:1612 msgid "Fully qualified hostname or IP address for this device." msgstr "Nombre de equipo FQDN o dirección IP para este dispositivo." #: /var/www/html/cacti/include/global_form.php:994 msgid "Poller Association" msgstr "Asociación de Sonda" #: /var/www/html/cacti/include/global_form.php:1002 msgid "Device Site Association" msgstr "Asociación de sitio del dispositivo" #: /var/www/html/cacti/include/global_form.php:1003 msgid "What Site is this Device associated with." msgstr "A qué sitio está asociado este dispositivo." #: /var/www/html/cacti/include/global_form.php:1012 msgid "" "Choose the Device Template to use to define the default Graph Templates and " "Data Queries associated with this Device." msgstr "" "Elija la plantilla de dispositivo a usar para definir las plantillas de " "gráficos y consultas de datos predeterminadas asociadas con este dispositivo." #: /var/www/html/cacti/include/global_form.php:1019 msgid "Number of Collection Threads" msgstr "Cantidad de procesos simultáneos" #: /var/www/html/cacti/include/global_form.php:1020 msgid "" "The number of concurrent threads to use for polling this device. This " "applies to the Spine poller only." msgstr "" "La cantidad de procesos concurrentes para sondear este dispositivo. Esto " "aplica sólo a la Sonda de Spine." #: /var/www/html/cacti/include/global_form.php:1027 msgid "Disable Device" msgstr "Deshabilitar dispositivo" #: /var/www/html/cacti/include/global_form.php:1028 msgid "Check this box to disable all checks for this host." msgstr "" "Marca esta casilla para deshabilitar todos los chequeos para este equipo." #: /var/www/html/cacti/include/global_form.php:1041 #: /var/www/html/cacti/include/global_form.php:1641 msgid "Choose the SNMP version for this device." msgstr "Elija la versión SNMP para este dispositivo." #: /var/www/html/cacti/include/global_form.php:1049 #: /var/www/html/cacti/include/global_form.php:1649 msgid "SNMP Community" msgstr "Comunidad SNMP" #: /var/www/html/cacti/include/global_form.php:1050 #: /var/www/html/cacti/include/global_form.php:1650 msgid "SNMP read community for this device." msgstr "Comunidad de lectura SNMP para este dipositivo." #: /var/www/html/cacti/include/global_form.php:1069 msgid "SNMP v3 authentication pass phrase for this device." msgstr "La contraseña de autenticación SNMP v3 para este dispositivo." #: /var/www/html/cacti/include/global_form.php:1078 msgid "Choose the SNMPv3 authentication protocol." msgstr "Elija el protocolo de autenticación SNMPv3." #: /var/www/html/cacti/include/global_form.php:1086 msgid "Choose the SNMPv3 privacy passphrase." msgstr "Elija la contraseña de privacidad de SNMPv3." #: /var/www/html/cacti/include/global_form.php:1095 msgid "Choose the SNMPv3 privacy protocol." msgstr "Elija el protocolo de privacidad SNMPv3." #: /var/www/html/cacti/include/global_form.php:1102 msgid "SNMP Context (v3)" msgstr "Contexto de SNMP (v3)" #: /var/www/html/cacti/include/global_form.php:1103 msgid "Enter the SNMP v3 context to use for this device." msgstr "Ingrese el contexto SNMPv3 para este dispositivo." #: /var/www/html/cacti/include/global_form.php:1111 msgid "SNMP Engine ID (v3)" msgstr "ID de motor SNMP (v3)" #: /var/www/html/cacti/include/global_form.php:1112 msgid "" "Enter the SNMP v3 Engine Id to use for this device. Leave this field empty " "to use the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "" "Ingrese el ID del motor SNMPv3 a usar para este dispositivo. Deje este campo " "vacío para usar el ID de motor SNMP definido por el receptor de " "notificaciones SNMPv3." #: /var/www/html/cacti/include/global_form.php:1121 msgid "Enter the UDP port number to use for SNMP (default is 161)." msgstr "Ingrese el número de puerto UDP a usar para SNMP (por defecto 161)." #: /var/www/html/cacti/include/global_form.php:1138 msgid "Maximum OIDs Per Get Request" msgstr "Máximo OID por Get Request" #: /var/www/html/cacti/include/global_form.php:1147 msgid "Availability/Reachability Options" msgstr "Opciones de Disponibilidad/Accesibilidad" #: /var/www/html/cacti/include/global_form.php:1151 #: /var/www/html/cacti/include/global_settings.php:571 msgid "Downed Device Detection" msgstr "Detección de dispositivos caídos" #: /var/www/html/cacti/include/global_form.php:1152 #: /var/www/html/cacti/include/global_settings.php:572 msgid "" "The method Cacti will use to determine if a host is available for polling. " "
    NOTE: It is recommended that, at a minimum, SNMP always be selected." msgstr "" "El método que Cacti usará para determinar si el equipo está disponible para " "sondeo.
    NOTA: se recomienda que, mínimo, siempre este SNMP " "seleccionado." #: /var/www/html/cacti/include/global_form.php:1161 msgid "" "The type of ping packet to sent.
    NOTE: ICMP on Linux/UNIX requires " "root privileges." msgstr "" "El tipo de paquete ping a enviar.
    NOTA: ICMP en Linux/UNIX requiere " "permisos de root." #: /var/www/html/cacti/include/global_form.php:1198 #: /var/www/html/cacti/include/global_form.php:1736 msgid "Additional Options" msgstr "Opciones adicionales" #: /var/www/html/cacti/include/global_form.php:1202 #: /var/www/html/cacti/include/global_form.php:1741 #: /var/www/html/cacti/pollers.php:70 msgid "Notes" msgstr "Notas" #: /var/www/html/cacti/include/global_form.php:1203 #: /var/www/html/cacti/include/global_form.php:1742 msgid "Enter notes to this host." msgstr "Ingresar notas para este equipo." #: /var/www/html/cacti/include/global_form.php:1210 msgid "External ID" msgstr "ID externo" #: /var/www/html/cacti/include/global_form.php:1211 msgid "External ID for linking Cacti data to external monitoring systems." msgstr "" "ID externo para vincular datos de Cacti a sistemas de monitoreo externos." #: /var/www/html/cacti/include/global_form.php:1233 msgid "A useful name for this host template." msgstr "Un nombre útil para esta Plantilla de equipo." #: /var/www/html/cacti/include/global_form.php:1253 msgid "A name for this data query." msgstr "Un nombre para esta consulta de datos." #: /var/www/html/cacti/include/global_form.php:1261 msgid "A description for this data query." msgstr "Una descripción para esta consulta de datos." #: /var/www/html/cacti/include/global_form.php:1268 msgid "XML Path" msgstr "Ruta XML" #: /var/www/html/cacti/include/global_form.php:1269 msgid "" "The full path to the XML file containing definitions for this data query." msgstr "" "La ruta completa al archivo XML que contiene las definiciones para esta " "consulta de datos." #: /var/www/html/cacti/include/global_form.php:1278 msgid "" "Choose the input method for this Data Query. This input method defines how " "data is collected for each Device associated with the Data Query." msgstr "" "Elija el método de entrada de datos para esta consulta de datos. Este método " "de entrada de datos define como los datos son recolectados para cada " "dispositivo asociado con esta consula de datos." #: /var/www/html/cacti/include/global_form.php:1297 msgid "" "Choose the Graph Template to use for this Data Query Graph Template item." msgstr "" "Elija la Plantilla de gráficos a usar para este item de Plantilla de gráfico " "de consulta de datos." #: /var/www/html/cacti/include/global_form.php:1323 msgid "A name for this associated graph." msgstr "Un nombre para este gráfico asociado." #: /var/www/html/cacti/include/global_form.php:1351 msgid "A useful name for this graph tree." msgstr "Un nombre útil para este árbol de gráficos." #: /var/www/html/cacti/include/global_form.php:1358 #: /var/www/html/cacti/include/global_form.php:2239 #: /var/www/html/cacti/lib/api_automation.php:1365 #: /var/www/html/cacti/tree.php:1436 msgid "Sorting Type" msgstr "Tipo de orden" #: /var/www/html/cacti/include/global_form.php:1359 #: /var/www/html/cacti/include/global_form.php:2240 msgid "Choose how items in this tree will be sorted." msgstr "Elija como se ordenarán los elementos de este árbol." #: /var/www/html/cacti/include/global_form.php:1365 msgid "Publish" msgstr "Publicar" #: /var/www/html/cacti/include/global_form.php:1366 msgid "Should this Tree be published for users to access?" msgstr "Este árbol debería ser publicado para que los usuarios puedan acceder?" #: /var/www/html/cacti/include/global_form.php:1401 msgid "An Email Address where the User can be reached." msgstr "Una dirección de correo electrónico para contactar al usuario." #: /var/www/html/cacti/include/global_form.php:1409 msgid "" "Enter the password for this user twice. Remember that passwords are case " "sensitive!" msgstr "" "Ingresa la contraseña para este usuario dos veces. Recuerda que la " "contraseña distingue entre mayúsculas y minúsculas!" #: /var/www/html/cacti/include/global_form.php:1417 #: /var/www/html/cacti/user_group_admin.php:88 msgid "Determines if user is able to login." msgstr "Determina si el usuarios puede loguearse." #: /var/www/html/cacti/include/global_form.php:1423 #: /var/www/html/cacti/tree.php:1740 msgid "Locked" msgstr "Bloqueado" #: /var/www/html/cacti/include/global_form.php:1424 msgid "Determines if the user account is locked." msgstr "Determina si la cuenta del usuario está bloqueada." #: /var/www/html/cacti/include/global_form.php:1429 msgid "Account Options" msgstr "Opciones de cuenta" #: /var/www/html/cacti/include/global_form.php:1431 msgid "Set any user account specific options here." msgstr "Configura cualquier opción específica de usuario aquí." #: /var/www/html/cacti/include/global_form.php:1435 msgid "Must Change Password at Next Login" msgstr "Debe cambiar la contraseña en el próximo inicio de sesión" #: /var/www/html/cacti/include/global_form.php:1447 msgid "Maintain Custom Graph and User Settings" msgstr "Mantener opciones de gráficos y usuario personalizadas" #: /var/www/html/cacti/include/global_form.php:1454 msgid "Graph Options" msgstr "Opciones de Grafico" #: /var/www/html/cacti/include/global_form.php:1456 msgid "Set any graph specific options here." msgstr "Configura cualquier opción específica de gráficos aquí." #: /var/www/html/cacti/include/global_form.php:1460 msgid "User Has Rights to Tree View" msgstr "El usuario tiene permisos de vista de vista de árbol" #: /var/www/html/cacti/include/global_form.php:1466 msgid "User Has Rights to List View" msgstr "El usuario tiene permisos de vista de Lista" #: /var/www/html/cacti/include/global_form.php:1472 msgid "User Has Rights to Preview View" msgstr "El usuario tiene permisos de vista de vista previa" #: /var/www/html/cacti/include/global_form.php:1479 #: /var/www/html/cacti/user_group_admin.php:130 msgid "Login Options" msgstr "Opciones de inicio de sesión" #: /var/www/html/cacti/include/global_form.php:1482 msgid "What to do when this user logs in." msgstr "Qué hacer cuando este usuario inicie sesión." #: /var/www/html/cacti/include/global_form.php:1487 msgid "Show the page that user pointed their browser to." msgstr "Mostrar la página que el usuario indicó en su navegador." #: /var/www/html/cacti/include/global_form.php:1491 msgid "Show the default console screen." msgstr "Mostrar la pantalla de consola por defecto." #: /var/www/html/cacti/include/global_form.php:1495 msgid "Show the default graph screen." msgstr "Mostrar la pantalla de gráficos por defecto." #: /var/www/html/cacti/include/global_form.php:1501 #: /var/www/html/cacti/utilities.php:774 msgid "Authentication Realm" msgstr "Dominio de autenticación" #: /var/www/html/cacti/include/global_form.php:1502 msgid "" "Only used if you have LDAP or Web Basic Authentication enabled. Changing " "this to a non-enabled realm will effectively disable the user." msgstr "" "Sólo utilizado si tienes autenticación LDAP o web básica habilitada. Cambiar " "esto a un dominio no habilitado efectivamente deshabilitará al usuario." #: /var/www/html/cacti/include/global_form.php:1557 msgid "Import Template from Local File" msgstr "Importar plantilla de archivo local" #: /var/www/html/cacti/include/global_form.php:1558 msgid "" "If the XML file containing template data is located on your local machine, " "select it here." msgstr "" "Si el archivo XML que contiene datos de plantilla está ubicado en tu equipo " "local, seleccione aquí." #: /var/www/html/cacti/include/global_form.php:1563 msgid "Import Template from Text" msgstr "Importar plantilla de texto plano" #: /var/www/html/cacti/include/global_form.php:1564 msgid "" "If you have the XML file containing template data as text, you can paste it " "into this box to import it." msgstr "" "Si tienes el archivo XML que contiene datos de plantilla como texto, puedes " "pegarlo en este recuadro para importarlo." #: /var/www/html/cacti/include/global_form.php:1572 msgid "Preview Import Only" msgstr "Importar sólo la vista previa" #: /var/www/html/cacti/include/global_form.php:1574 msgid "" "If checked, Cacti will not import the template, but rather compare the " "imported Template to the existing Template data. If you are acceptable of " "the change, you can them import." msgstr "" "Si esta marcado, Cacti no importará la plantilla, pero comparará la " "plantilla importada con la plantilla de datos existente. Si los cambios son " "aceptables, se puede importar." #: /var/www/html/cacti/include/global_form.php:1579 msgid "Remove Orphaned Graph Items" msgstr "Eliminar items de gráfico huérfanos" #: /var/www/html/cacti/include/global_form.php:1581 msgid "" "If checked, Cacti will delete any Graph Items from both the Graph Template " "and associated Graphs that are not included in the imported Graph Template." msgstr "" "Si está marcada, Cacti eliminará cualquier item de gráfico de la plantilla " "de gráfico y gráficos asociados que no están incluidos en la plantilla de " "gráficos importada." #: /var/www/html/cacti/include/global_form.php:1598 msgid "General SNMP Entity Options" msgstr "Opciones generales de entidad SNMP" #: /var/www/html/cacti/include/global_form.php:1604 msgid "Give this SNMP entity a meaningful description." msgstr "Dar esta entidad SNMP una descripción significativa." #: /var/www/html/cacti/include/global_form.php:1619 msgid "Disable SNMP Notification Receiver" msgstr "Deshabilitar Receptor de notificaciones SNMP" #: /var/www/html/cacti/include/global_form.php:1620 msgid "" "Check this box if you temporary do not want to send SNMP notifications to " "this host." msgstr "" "Marque esta casilla si no quieres enviar notificaciones SNMP a este equipo " "temporalmente." #: /var/www/html/cacti/include/global_form.php:1627 msgid "Maximum Log Size" msgstr "Tamaño máximo de Log" #: /var/www/html/cacti/include/global_form.php:1628 msgid "" "Maximum number of day's notification log entries for this receiver need to " "be stored." msgstr "" "Número máximo de entradas de registro de notificación diarias para este " "receptor a ser almacenadas." #: /var/www/html/cacti/include/global_form.php:1668 msgid "SNMP Auth Password (v3)" msgstr "Contraseña de autenticación SNMP (v3)" #: /var/www/html/cacti/include/global_form.php:1669 msgid "SNMP v3 user password for this device." msgstr "La contraseña de usuario SNMP (v3) para este dispositivo." #: /var/www/html/cacti/include/global_form.php:1678 msgid "" "Choose the SNMPv3 Authorization Protocol.
    Note: SHA authentication " "support is only available if you have OpenSSL installed." msgstr "" "Elija el protocolo de autorización SNMPv3.
    Nota: el soporte de " "autenticación SHA está sólo disponible si tienes OpenSSL instalado." #: /var/www/html/cacti/include/global_form.php:1685 msgid "SNMP Privacy Password (v3)" msgstr "Contraseña de privacidad de SNMP (v3)" #: /var/www/html/cacti/include/global_form.php:1695 msgid "" "Choose the SNMPv3 Privacy Protocol.
    Note: DES/AES encryption support is " "only available if you have OpenSSL installed." msgstr "" "Elija el protocolo de privacidad SNMPv3.
    Nota: el soporte de cifrado DES/" "AES está sólo disponible si tienes OpenSSL instalado." #: /var/www/html/cacti/include/global_form.php:1701 msgid "SNMP Engine ID" msgstr "ID de motor SNMP" #: /var/www/html/cacti/include/global_form.php:1702 msgid "" "Defines the unique SNMP Engine ID to identify this peer. Following format " "will be recommended:
    FlexibleLength+Enterprise(8000) + IANA-Cacti(5d75) + " "MAC-Following(03) + YOUR-MAC-ADDRESS(e.g.:D89D67287B00).
    Per default the " "locally administrated MAC 02-FF-FF-FF-FF-FF will be used." msgstr "" "Define el ID único del motor SNMP para identificar a este peer. El siguiente " "formato será recomendado:
    FlexibleLength+Enterprise(8000) + IANA-" "Cacti(5d75) + MAC-Following(03) + YOUR-MAC-ADDRESS(e.g.:D89D67287B00)." "
    Por defecto se usará la MAC localmente administrada 02-FF-FF-FF-FF-FF." #: /var/www/html/cacti/include/global_form.php:1711 msgid "The UDP port to be used for SNMP traps. Typically, 162." msgstr "El puerto UDP a ser usado para traps SNMP. Por lo general, 162." #: /var/www/html/cacti/include/global_form.php:1727 msgid "SNMP Message Type" msgstr "Tipo de mensaje SNMP" #: /var/www/html/cacti/include/global_form.php:1728 msgid "" "SNMP traps are always unacknowledged. To send out acknowledged SNMP " "notifications, formally called \"INFORMS\", SNMPv2 or above will be required." msgstr "" #: /var/www/html/cacti/include/global_form.php:1761 msgid "The new Title of the aggregated Graph." msgstr "El título nuevo para el gráfico agregado." #: /var/www/html/cacti/include/global_form.php:1768 #: /var/www/html/cacti/include/global_form.php:1847 #: /var/www/html/cacti/include/global_form.php:1945 msgid "Prefix" msgstr "Prefijo" #: /var/www/html/cacti/include/global_form.php:1769 msgid "A Prefix for all GPRINT lines to distinguish e.g. different hosts." msgstr "" "Un prefijo para todas las líneas GPRINT para distinguir, por ejemplo, " "diferentes hosts." #: /var/www/html/cacti/include/global_form.php:1777 #: /var/www/html/cacti/include/global_form.php:1856 #: /var/www/html/cacti/include/global_form.php:1954 msgid "" "Use this Option to create e.g. STACKed graphs.
    AREA/STACK: 1st graph " "keeps AREA/STACK items, others convert to STACK
    LINE1: all items convert " "to LINE1 items
    LINE2: all items convert to LINE2 items
    LINE3: all " "items convert to LINE3 items" msgstr "" #: /var/www/html/cacti/include/global_form.php:1784 #: /var/www/html/cacti/include/global_form.php:1863 #: /var/www/html/cacti/include/global_form.php:1961 msgid "Totaling" msgstr "Totalización" #: /var/www/html/cacti/include/global_form.php:1785 #: /var/www/html/cacti/include/global_form.php:1864 #: /var/www/html/cacti/include/global_form.php:1962 msgid "" "Please check those Items that shall be totaled in the \"Total\" column, when " "selecting any totaling option here." msgstr "" "Compruebe los items que se sumarán en la columna \"Total\", cuando " "seleccione cualquier opción de totalización aquí." #: /var/www/html/cacti/include/global_form.php:1792 #: /var/www/html/cacti/include/global_form.php:1872 #: /var/www/html/cacti/include/global_form.php:1970 msgid "Total Type" msgstr "Tipo de Total" #: /var/www/html/cacti/include/global_form.php:1793 #: /var/www/html/cacti/include/global_form.php:1873 #: /var/www/html/cacti/include/global_form.php:1971 msgid "Which type of totaling shall be performed." msgstr "Qué tipo de totalización se realizará." #: /var/www/html/cacti/include/global_form.php:1800 #: /var/www/html/cacti/include/global_form.php:1881 #: /var/www/html/cacti/include/global_form.php:1979 msgid "Prefix for GPRINT Totals" msgstr "Prefijo de Totales GPRINT" #: /var/www/html/cacti/include/global_form.php:1801 #: /var/www/html/cacti/include/global_form.php:1882 #: /var/www/html/cacti/include/global_form.php:1980 msgid "A Prefix for all totaling GPRINT lines." msgstr "Un prefijo para todas las líneas de totaling GPRINT." #: /var/www/html/cacti/include/global_form.php:1808 #: /var/www/html/cacti/include/global_form.php:1889 #: /var/www/html/cacti/include/global_form.php:1987 msgid "Reorder Type" msgstr "Tipo de reordenado" #: /var/www/html/cacti/include/global_form.php:1809 #: /var/www/html/cacti/include/global_form.php:1890 #: /var/www/html/cacti/include/global_form.php:1988 msgid "Reordering of Graphs." msgstr "Reordenamiento de gráficos." #: /var/www/html/cacti/include/global_form.php:1829 msgid "Please name this Aggregate Graph." msgstr "Dar un nombre a este gráfico agregado." #: /var/www/html/cacti/include/global_form.php:1836 msgid "Propagation Enabled" msgstr "Propagación habilitada" #: /var/www/html/cacti/include/global_form.php:1837 msgid "Is this to carry the template?" msgstr "" #: /var/www/html/cacti/include/global_form.php:1843 msgid "Aggregate Graph Settings" msgstr "Opciones de gráfico Agregado" #: /var/www/html/cacti/include/global_form.php:1848 #: /var/www/html/cacti/include/global_form.php:1946 msgid "" "A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may " "use both Host as well as Data Query replacement variables in this prefix." msgstr "" "Un prefijo para todas las líneas GPRINT para distinguir, por ejemplo, " "distintos hosts. Puede utilizar tanto Equipo como consulta de datos como " "variables de reemplazo en este prefijo." #: /var/www/html/cacti/include/global_form.php:1924 msgid "Aggregate Template Name" msgstr "Nombre de Plantilla de Agregados" #: /var/www/html/cacti/include/global_form.php:1925 msgid "Please name this Aggregate Template." msgstr "Dar un nombre a esta Plantilla de Agregados." #: /var/www/html/cacti/include/global_form.php:1932 msgid "Source Graph Template" msgstr "Plantilla de gráfico de origen" #: /var/www/html/cacti/include/global_form.php:1933 msgid "The Graph Template that this Aggregate Template is based upon." msgstr "" "La Plantilla de gráfico en que esta Plantilla de Agregados está basada." #: /var/www/html/cacti/include/global_form.php:1941 msgid "Aggregate Template Settings" msgstr "Configuración de Plantilla de Agregados" #: /var/www/html/cacti/include/global_form.php:2011 msgid "The name of this Color Template." msgstr "El nombre de esta Plantilla de color." #: /var/www/html/cacti/include/global_form.php:2022 msgid "A nice Color" msgstr "Un color bonito" #: /var/www/html/cacti/include/global_form.php:2032 msgid "A useful name for this Template." msgstr "Un nombre útil para esta Plantilla." #: /var/www/html/cacti/include/global_form.php:2046 #: /var/www/html/cacti/include/global_form.php:2088 #: /var/www/html/cacti/lib/api_automation.php:1239 #: /var/www/html/cacti/lib/api_automation.php:1301 msgid "Operation" msgstr "Operación" #: /var/www/html/cacti/include/global_form.php:2047 #: /var/www/html/cacti/include/global_form.php:2089 msgid "Logical operation to combine rules." msgstr "Operación lógica para combinar reglas." #: /var/www/html/cacti/include/global_form.php:2055 #: /var/www/html/cacti/include/global_form.php:2097 msgid "The Field Name that shall be used for this Rule Item." msgstr "El nombre de campo que debería ser usado para este item de regla." #: /var/www/html/cacti/include/global_form.php:2063 #: /var/www/html/cacti/include/global_form.php:2105 msgid "Operator." msgstr "Operador." #: /var/www/html/cacti/include/global_form.php:2070 #: /var/www/html/cacti/include/global_form.php:2112 #: /var/www/html/cacti/include/global_form.php:2255 msgid "Matching Pattern" msgstr "Patrón de comparación" #: /var/www/html/cacti/include/global_form.php:2071 #: /var/www/html/cacti/include/global_form.php:2113 msgid "The Pattern to be matched against." msgstr "El patrón a comparar." #: /var/www/html/cacti/include/global_form.php:2079 #: /var/www/html/cacti/include/global_form.php:2121 #: /var/www/html/cacti/include/global_form.php:2272 msgid "Sequence." msgstr "Secuencia." #: /var/www/html/cacti/include/global_form.php:2130 #: /var/www/html/cacti/include/global_form.php:2175 msgid "A useful name for this Rule." msgstr "Un nombre útil para esta regla." #: /var/www/html/cacti/include/global_form.php:2138 msgid "Choose a Data Query to apply to this rule." msgstr "Elija una consulta de datos para aplicar a esta regla." #: /var/www/html/cacti/include/global_form.php:2149 msgid "Choose any of the available Graph Types to apply to this rule." msgstr "" "Elija cualquiera de los tipos de gráficos disponibles para aplicar a esta " "regla." #: /var/www/html/cacti/include/global_form.php:2162 #: /var/www/html/cacti/include/global_form.php:2219 msgid "Enable Rule" msgstr "Habilitar regla" #: /var/www/html/cacti/include/global_form.php:2163 #: /var/www/html/cacti/include/global_form.php:2220 msgid "Check this box to enable this rule." msgstr "Activa esta casilla para habilitar esta regla." #: /var/www/html/cacti/include/global_form.php:2183 msgid "Choose a Tree for the new Tree Items." msgstr "Elija un árbol para los nuevos items de árbol." #: /var/www/html/cacti/include/global_form.php:2190 msgid "Leaf Item Type" msgstr "Tipo de item de hoja" #: /var/www/html/cacti/include/global_form.php:2191 msgid "The Item Type that shall be dynamically added to the tree." msgstr "El tipo de item que se añadirá dinámicamente al árbol." #: /var/www/html/cacti/include/global_form.php:2198 msgid "Graph Grouping Style" msgstr "Estilo de Agrupación de Gráficos" #: /var/www/html/cacti/include/global_form.php:2199 msgid "" "Choose how graphs are grouped when drawn for this particular host on the " "tree." msgstr "" "Elija como los gráficos son agrupados cuando son dibujados para este equipo " "en particular en el árbol." #: /var/www/html/cacti/include/global_form.php:2209 msgid "Optional: Sub-Tree Item" msgstr "Opcional: item de Sub-árbol" #: /var/www/html/cacti/include/global_form.php:2210 msgid "" "Choose a Sub-Tree Item to hook in.
    Make sure, that it is still there when " "this rule is executed!" msgstr "" "Elija un item del sub-árbol para engancharlo.
    Asegúrese que aún este ahí " "cuando la regla sea ejecutada!" #: /var/www/html/cacti/include/global_form.php:2230 msgid "Header Type" msgstr "Tipo de encabezado" #: /var/www/html/cacti/include/global_form.php:2231 msgid "Choose an Object to build a new Sub-header." msgstr "Elija un objecto para crear un nuevo sub encabezado." #: /var/www/html/cacti/include/global_form.php:2247 msgid "Propagate Changes" msgstr "Propagar cambios" #: /var/www/html/cacti/include/global_form.php:2248 msgid "" "Propagate all options on this form (except for 'Title') to all child " "'Header' items." msgstr "" "Propagar todas las opciones en este formulario (excepto para \"Título\") a " "todos los items de encabezados hijos." #: /var/www/html/cacti/include/global_form.php:2256 msgid "" "The String Pattern (Regular Expression) to match against.
    Enclosing '/' " "must NOT be provided!" msgstr "" "El patrón de texto (Expresión regular) con el cual coincidir.
    Encerrando " "'/' NO debe proporcionarse!" #: /var/www/html/cacti/include/global_form.php:2263 msgid "Replacement Pattern" msgstr "Patrón de reemplazo" #: /var/www/html/cacti/include/global_form.php:2264 msgid "" "The Replacement String Pattern for use as a Tree Header.
    Refer to a Match " "by e.g. \\${1} for the first match!" msgstr "" "El patrón de reemplazo de texto para su uso como encabezado de árbol." "
    Refiérase a coincidir con ej:\\${1}para la primera " "coincidencia!" #: /var/www/html/cacti/include/global_languages.php:590 msgid " T" msgstr " T" #: /var/www/html/cacti/include/global_languages.php:592 msgid " G" msgstr " G" #: /var/www/html/cacti/include/global_languages.php:594 msgid " M" msgstr " M" #: /var/www/html/cacti/include/global_languages.php:596 msgid " K" msgstr " K" #: /var/www/html/cacti/include/global_session.php:92 #: /var/www/html/cacti/lib/html_filter.php:66 msgid "Enter a search term" msgstr "Término de búsqueda" #: /var/www/html/cacti/include/global_session.php:93 msgid "Enter a regular expression" msgstr "Ingrese una expresión regular" #: /var/www/html/cacti/include/global_session.php:94 msgid "No file selected" msgstr "Ningún archivo seleccionado" #: /var/www/html/cacti/include/global_session.php:95 #: /var/www/html/cacti/lib/html.php:294 msgid "Time Graph View" msgstr "Gráficos basados en intervalos de tiempo" #: /var/www/html/cacti/include/global_session.php:97 #: /var/www/html/cacti/include/global_session.php:109 msgid "SpikeKill Results" msgstr "Resultados de eliminación de picos" #: /var/www/html/cacti/include/global_session.php:99 msgid "Click to view just this Graph in Realtime" msgstr "Haga click para ver este gráfico en tiempo real" #: /var/www/html/cacti/include/global_session.php:100 msgid "Click again to take this Graph out of Realtime" msgstr "Haga click de nuevo para dejar de ver este gráfico en tiempo real" #: /var/www/html/cacti/include/global_session.php:104 msgid "Cacti Home" msgstr "Inicio de Cacti" #: /var/www/html/cacti/include/global_session.php:105 msgid "Cacti Project Page" msgstr "Página del proyecto de Cacti" #: /var/www/html/cacti/include/global_session.php:106 msgid "Cacti Community Forum" msgstr "Foro de la comunidad de Cacti" #: /var/www/html/cacti/include/global_session.php:107 msgid "Report a bug" msgstr "Reportar una falla" #: /var/www/html/cacti/include/global_session.php:110 msgid "Click to Show/Hide Filter" msgstr "Click para mostrar/ocultar filtro" #: /var/www/html/cacti/include/global_session.php:111 msgid "Clear Current Filter" msgstr "Borrar filtro actual" #: /var/www/html/cacti/include/global_settings.php:38 #: /var/www/html/cacti/include/global_settings.php:872 #: /var/www/html/cacti/include/global_settings.php:975 #: /var/www/html/cacti/include/global_settings.php:1607 #: /var/www/html/cacti/managers.php:39 /var/www/html/cacti/user_admin.php:1935 #: /var/www/html/cacti/user_group_admin.php:1664 msgid "General" msgstr "General" #: /var/www/html/cacti/include/global_settings.php:39 msgid "Paths" msgstr "Rutas" #: /var/www/html/cacti/include/global_settings.php:40 msgid "Device Defaults" msgstr "Valores por defecto de dispositivo" #: /var/www/html/cacti/include/global_settings.php:41 #: /var/www/html/cacti/include/global_settings.php:466 msgid "Poller" msgstr "Sonda" #: /var/www/html/cacti/include/global_settings.php:42 msgid "Data Storage" msgstr "Almacenamiento de datos" #: /var/www/html/cacti/include/global_settings.php:43 msgid "Visual" msgstr "Visual" #: /var/www/html/cacti/include/global_settings.php:44 #: /var/www/html/cacti/lib/functions.php:3854 #: /var/www/html/cacti/lib/functions.php:3859 msgid "Authentication" msgstr "Autenticación" #: /var/www/html/cacti/include/global_settings.php:45 msgid "Data Source Statistics" msgstr "Estadisticas de Data Source" #: /var/www/html/cacti/include/global_settings.php:46 msgid "Performance" msgstr "Rendimiento" #: /var/www/html/cacti/include/global_settings.php:47 msgid "Spikes" msgstr "Spikes" #: /var/www/html/cacti/include/global_settings.php:48 msgid "Mail/Reporting/DNS" msgstr "Correo/Reportes/DNS" #: /var/www/html/cacti/include/global_settings.php:52 msgid "Time Spanning/Shifting" msgstr "Tiempo de expansión/desplazamiento" #: /var/www/html/cacti/include/global_settings.php:53 msgid "Graph Thumbnail Settings" msgstr "Configuración de miniaturas de gráficos" #: /var/www/html/cacti/include/global_settings.php:54 msgid "Tree Settings" msgstr "Configuración de árbol" #: /var/www/html/cacti/include/global_settings.php:55 msgid "Graph Fonts" msgstr "Fuentes de gráficos" #: /var/www/html/cacti/include/global_settings.php:94 msgid "Required Tool Paths" msgstr "Ruta de herramientas requeridas" #: /var/www/html/cacti/include/global_settings.php:99 msgid "snmpwalk Binary Path" msgstr "ruta a archivo binario snmpwalk" #: /var/www/html/cacti/include/global_settings.php:100 msgid "The path to your snmpwalk binary." msgstr "La ruta a archivo binario snmpwalk." #: /var/www/html/cacti/include/global_settings.php:105 msgid "snmpget Binary Path" msgstr "ruta al archivo binario snmpget" #: /var/www/html/cacti/include/global_settings.php:106 msgid "The path to your snmpget binary." msgstr "La ruta al archivo binario snmpget." #: /var/www/html/cacti/include/global_settings.php:111 msgid "snmpbulkwalk Binary Path" msgstr "ruta al archivo binario snmpbulkwalk" #: /var/www/html/cacti/include/global_settings.php:112 msgid "The path to your snmpbulkwalk binary." msgstr "La ruta al archivo binario snmpbulkwalk." #: /var/www/html/cacti/include/global_settings.php:117 msgid "snmpgetnext Binary Path" msgstr "ruta al archivo binario snmpgetnext" #: /var/www/html/cacti/include/global_settings.php:118 msgid "The path to your snmpgetnext binary." msgstr "La ruta al archivo binario snmpgetnext." #: /var/www/html/cacti/include/global_settings.php:123 msgid "snmptrap Binary Path" msgstr "ruta al archivo binario snmptrap" #: /var/www/html/cacti/include/global_settings.php:124 msgid "The path to your snmptrap binary." msgstr "La ruta al archivo binario snmptrap." #: /var/www/html/cacti/include/global_settings.php:129 msgid "RRDtool Binary Path" msgstr "Ruta del archivo binario de RRDtool" #: /var/www/html/cacti/include/global_settings.php:130 msgid "The path to the rrdtool binary." msgstr "La ruta del archivo binario rrdtool." #: /var/www/html/cacti/include/global_settings.php:135 msgid "PHP Binary Path" msgstr "Ruta al archivo binario de PHP" #: /var/www/html/cacti/include/global_settings.php:136 msgid "" "The path to your PHP binary file (may require a php recompile to get this " "file)." msgstr "" "La ruta al archivo binario de PHP (puede requerir una recompilación para " "obtener este archivo)." #: /var/www/html/cacti/include/global_settings.php:141 msgid "Logging" msgstr "Logging" #: /var/www/html/cacti/include/global_settings.php:146 msgid "Cacti Log Path" msgstr "Ruta a Log de Cacti" #: /var/www/html/cacti/include/global_settings.php:147 msgid "" "The path to your Cacti log file (if blank, defaults to /log/" "cacti.log)" msgstr "" "La ruta a tu archivo de log de Cacti (Si se deja en blanco, por defecto es " "/log/cacti.log)" #: /var/www/html/cacti/include/global_settings.php:153 msgid "Rotate the Cacti Log" msgstr "Rotar el Log de Cacti" #: /var/www/html/cacti/include/global_settings.php:154 msgid "This option will rotate the Cacti Log periodically." msgstr "Esta opción va a rotar el log de Cacti periódicamente." #: /var/www/html/cacti/include/global_settings.php:159 msgid "Rotation Frequency" msgstr "Frecuencia de rotación" #: /var/www/html/cacti/include/global_settings.php:160 msgid "At what frequency would you like to rotate your logs?" msgstr "Con que frecuencia te gustaría rotar los logs?" #: /var/www/html/cacti/include/global_settings.php:166 msgid "Log Retention" msgstr "Retención de log" #: /var/www/html/cacti/include/global_settings.php:167 msgid "" "How many log files do you wish to retain? Use 0 to never remove any logs. " "(0-365)" msgstr "" "Cuantos archivos de log quiere mantener? Use 0 para nunca eliminar ningún " "registro. (0-365)" #: /var/www/html/cacti/include/global_settings.php:174 msgid "Alternate Poller Path" msgstr "Ruta de Sonda alternativa" #: /var/www/html/cacti/include/global_settings.php:179 msgid "Spine Binary File Location" msgstr "Ubicación del archivo binario de Spine" #: /var/www/html/cacti/include/global_settings.php:180 msgid "The path to Spine binary." msgstr "La ruta al binario de Spine." #: /var/www/html/cacti/include/global_settings.php:185 msgid "Spine Config File Path" msgstr "Ruta al archivo de configuración de Spine" #: /var/www/html/cacti/include/global_settings.php:186 msgid "" "The path to Spine configuration file. By default, in the cwd of spine, or /" "etc if not specified." msgstr "" "La ruta al archivo de configuración de Spine. Por defecto, en el cwd de " "Spine, o /etc si no se especificó." #: /var/www/html/cacti/include/global_settings.php:191 #: /var/www/html/cacti/lib/functions.php:2249 #: /var/www/html/cacti/rrdcleaner.php:296 msgid "RRD Cleaner" msgstr "Limpiador RRD" #: /var/www/html/cacti/include/global_settings.php:196 msgid "RRDfile Auto Clean" msgstr "Auto limpiado de archivos RRD" #: /var/www/html/cacti/include/global_settings.php:197 msgid "" "Automatically Delete, Archive, or Delete RRDfiles when removed from Cacti" msgstr "" "Borrar automáticamente, archivar, o eliminar archivos RRD cuando son " "removidos de Cacti" #: /var/www/html/cacti/include/global_settings.php:202 msgid "RRDfile Auto Clean Method" msgstr "Método de auto limpiado de archivos RRD" #: /var/www/html/cacti/include/global_settings.php:203 msgid "The method used to Clean RRDfiles from Cacti after their deletion." msgstr "" "El método usado para limpiar archivos RRD desde Cacti después de su " "eliminación." #: /var/www/html/cacti/include/global_settings.php:209 msgid "Archive directory" msgstr "Directorio de archivo" #: /var/www/html/cacti/include/global_settings.php:210 msgid "" "This is the directory where RRDfiles are moved for " "Archive" msgstr "" "Este es el directorio donde los archivos RRD sonmovidos " "para archivar" #: /var/www/html/cacti/include/global_settings.php:218 msgid "Event Logging" msgstr "Registro de eventos" #: /var/www/html/cacti/include/global_settings.php:223 msgid "Log Destination" msgstr "Destino de log" #: /var/www/html/cacti/include/global_settings.php:224 msgid "How will Cacti handle event logging." msgstr "Cómo Cacti maneja el registro de eventos." #: /var/www/html/cacti/include/global_settings.php:230 msgid "Web Events" msgstr "Eventos Web" #: /var/www/html/cacti/include/global_settings.php:231 msgid "What Cacti website messages should be placed in the log." msgstr "Qué mensajes del sitio web de Cacti deberían enviarse al log." #: /var/www/html/cacti/include/global_settings.php:236 msgid "SNMP Messages" msgstr "Mensajes SNMP" #: /var/www/html/cacti/include/global_settings.php:240 msgid "Graph Syntax" msgstr "Sintaxis de gráfico" #: /var/www/html/cacti/include/global_settings.php:244 msgid "Developer Mode" msgstr "Modo desarrollador" #: /var/www/html/cacti/include/global_settings.php:250 msgid "Log Settings" msgstr "Opciones de log" #: /var/www/html/cacti/include/global_settings.php:255 msgid "Generic Log Level" msgstr "Nivel de Log genérico" #: /var/www/html/cacti/include/global_settings.php:256 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" "Qué nivel de detalle quieres enviar al archivo de log. ADVERTENCIA: usar " "cualquier otro nivel que no sea NINGUNO o BAJO puede consumir el espacio de " "disco rápidamente." #: /var/www/html/cacti/include/global_settings.php:262 msgid "Selective File Debug" msgstr "Depuración selectiva de archivos" #: /var/www/html/cacti/include/global_settings.php:263 msgid "" "Select which files you wish to place in Debug mode regardless of the Generic " "Log Level setting. Any files selected will be treated as they are in Debug " "mode." msgstr "" "Seleccione qué archivos deseas colocar en modo de depuración " "independientemente de la configuración general del nivel de Log. Cualquier " "archivo seleccionado será tratado como si estuviese en modo de depuración." #: /var/www/html/cacti/include/global_settings.php:269 msgid "Selective Plugin Debug" msgstr "Depuración selectiva de Plugins" #: /var/www/html/cacti/include/global_settings.php:270 msgid "" "Select which Plugins you wish to place in Debug mode regardless of the " "Generic Log Level setting. Any files used by this plugin will be treated as " "they are in Debug mode." msgstr "" "Seleccione qué Plugins deseas colocar en modo de depuración " "independientemente de la configuración general del nivel de Log. Cualquier " "Plugin seleccionado será tratado como si estuviese en modo de depuración." #: /var/www/html/cacti/include/global_settings.php:276 msgid "Selective Device Debug" msgstr "Depuración selectiva de dispositivos" #: /var/www/html/cacti/include/global_settings.php:277 msgid "" "A comma delimited list of Device ID's that you wish to be in Debug mode " "during data collection. This Debug level is only in place during the Cacti " "polling process." msgstr "" "Una lista separada por coma de IDs de dispositivos que deseas que esten en " "modo depuración durante la recolección de datos. Este nivel de depuración " "está en vigencia sólo durante el proceso de sondeo de Cacti." #: /var/www/html/cacti/include/global_settings.php:284 msgid "Poller Syslog/Eventlog Selection" msgstr "Sonda Syslog/Eventlog Selection" #: /var/www/html/cacti/include/global_settings.php:285 msgid "" "If you are using the Syslog/Eventlog, What Cacti poller messages should be " "placed in the Syslog/Eventlog." msgstr "" #: /var/www/html/cacti/include/global_settings.php:290 msgid "Statistics" msgstr "Estadísticas" #: /var/www/html/cacti/include/global_settings.php:294 #: /var/www/html/cacti/lib/clog_webapi.php:425 #: /var/www/html/cacti/utilities.php:1064 msgid "Warnings" msgstr "Advertencias" #: /var/www/html/cacti/include/global_settings.php:298 #: /var/www/html/cacti/lib/clog_webapi.php:426 #: /var/www/html/cacti/utilities.php:1065 msgid "Errors" msgstr "Errores" #: /var/www/html/cacti/include/global_settings.php:304 msgid "Other Defaults" msgstr "Otros valores predeterminados" #: /var/www/html/cacti/include/global_settings.php:309 msgid "Has Graphs/Data Sources Checked" msgstr "Contiene gráficos/Data Sources activado" #: /var/www/html/cacti/include/global_settings.php:310 msgid "Should the Has Graphs and Has Data Sources be Checked by Default." msgstr "" "Debería el Contiene gráficos y Data Sources estar activado por defecto." #: /var/www/html/cacti/include/global_settings.php:315 msgid "Graph Template Image Format" msgstr "Formato de imagen de la Plantilla de gráfico" #: /var/www/html/cacti/include/global_settings.php:316 msgid "The default Image Format to be used for all new Graph Templates." msgstr "" "El formato de imagen predeterminado a usar para todas las Plantillas de " "gráfico nuevas." #: /var/www/html/cacti/include/global_settings.php:322 msgid "Graph Template Height" msgstr "Altura de Plantilla de gráfico" #: /var/www/html/cacti/include/global_settings.php:323 #: /var/www/html/cacti/include/global_settings.php:331 msgid "The default Graph Width to be used for all new Graph Templates." msgstr "" "El ancho de gráfico predeterminado a usar para todas las Plantillas de " "gráficos nuevas." #: /var/www/html/cacti/include/global_settings.php:330 msgid "Graph Template Width" msgstr "Ancho de Plantilla de gráfico" #: /var/www/html/cacti/include/global_settings.php:338 msgid "Language Support" msgstr "Soporte de idioma" #: /var/www/html/cacti/include/global_settings.php:339 msgid "" "Choose 'enabled' to allow the localization of Cacti. The strict mode " "requires that the requested language will also be supported by all plugins " "being installed at your system. If that's not the fact everything will be " "displayed in English." msgstr "" "Elija 'habilitado' para permitir la localización de Cacti. El modo estricto " "requiere que el idioma solicitado también sea soportado por todos los " "plugins que están instalados en tu sistema. Si ese no es el caso, todo será " "mostrado en Inglés." #: /var/www/html/cacti/include/global_settings.php:345 msgid "Language" msgstr "Idioma" #: /var/www/html/cacti/include/global_settings.php:346 msgid "Default language for this system." msgstr "Idioma por defecto para este sistema." #: /var/www/html/cacti/include/global_settings.php:352 msgid "Auto Language Detection" msgstr "Detección automatica de idioma" #: /var/www/html/cacti/include/global_settings.php:353 msgid "" "Allow to automatically determine the 'default' language of the user and " "provide it at login time if that language is supported by Cacti. If " "disabled, the default language will be in force until the user elects " "another language." msgstr "" "Permitir determinar automáticamente el idioma 'por defecto' del usuario y " "proporcionarlo al momento de inicio de sesión si el idioma está soportado " "por Cacti. Si no se activa, el idioma predeterminado será forzado hasta que " "el usuario elija otro idioma." #: /var/www/html/cacti/include/global_settings.php:359 #: /var/www/html/cacti/include/global_settings.php:1852 msgid "Date Display Format" msgstr "Formato de visualización de fecha" #: /var/www/html/cacti/include/global_settings.php:360 msgid "The System default date format to use in Cacti." msgstr "El formato de fecha por defecto a usar en Cacti." #: /var/www/html/cacti/include/global_settings.php:366 #: /var/www/html/cacti/include/global_settings.php:1859 msgid "Date Separator" msgstr "Separador de fecha" #: /var/www/html/cacti/include/global_settings.php:367 msgid "The System default date separator to be used in Cacti." msgstr "El separador de fecha por defecto a ser usado en Cacti." #: /var/www/html/cacti/include/global_settings.php:373 msgid "Other Settings" msgstr "Otras opciones" #: /var/www/html/cacti/include/global_settings.php:378 #: /var/www/html/cacti/utilities.php:271 msgid "RRDtool Version" msgstr "Versión de RRDtool" #: /var/www/html/cacti/include/global_settings.php:379 msgid "The version of RRDtool that you have installed." msgstr "La versión de RRDtool que tienes instalada." #: /var/www/html/cacti/include/global_settings.php:385 msgid "Graph Permission Method" msgstr "Método de permisos de gráfico" #: /var/www/html/cacti/include/global_settings.php:386 msgid "" "There are two methods for determining a User's Graph Permissions. The first " "is 'Permissive'. Under the 'Permissive' setting, a User only needs access " "to either the Graph, Device or Graph Template to gain access to the Graphs " "that apply to them. Under 'Restrictive', the User must have access to the " "Graph, the Device, and the Graph Template to gain access to the Graph." msgstr "" "Hay dos métodos para determinar los permisos de gráfico de un usuario. El " "primero, 'Permisivo'. Bajo la opción 'Permisivo', un usuario solo necesita " "acceso ya sea a los gráficos, dispositivos o Plantillas de gráficos para " "obtener acceso a los gráficos que aplican a ellos. Bajo 'Restrictivo', el " "usuario debe tener acceso a los gráficos, los dispositivos y a las " "Plantillas de gráficos para obtener acceso a los gáficos." #: /var/www/html/cacti/include/global_settings.php:389 msgid "Permissive" msgstr "Permisivo" #: /var/www/html/cacti/include/global_settings.php:389 msgid "Restrictive" msgstr "Restrictivo" #: /var/www/html/cacti/include/global_settings.php:393 msgid "Graph/Data Source Creation Method" msgstr "Método de creación de Gráficos/Data Source" #: /var/www/html/cacti/include/global_settings.php:394 msgid "" "If set to Simple, Graphs and Data Sources can only be created from New " "Graphs. If Advanced, legacy Graph and Data Source creation is supported." msgstr "" "Si se establece en Simple, gráficos y Data Sources solo podrán ser creados " "por nuevos gráficos. Si se establece Avanzado, soporta la creación de " "gráficos y Data Sources antiguos." #: /var/www/html/cacti/include/global_settings.php:396 msgid "Advanced" msgstr "Avanzado" #: /var/www/html/cacti/include/global_settings.php:396 msgid "Simple" msgstr "Simple" #: /var/www/html/cacti/include/global_settings.php:399 msgid "Show Form/Setting Help Inline" msgstr "Mostrar formulario/Configuración de ayuda en línea" #: /var/www/html/cacti/include/global_settings.php:400 msgid "" "When checked, Form and Setting Help will be show inline. Otherwise it will " "be presented when hovering over the help button." msgstr "" "Cuando esté activado, formularios y opciones de ayuda serán mostradas en " "línea. De otra manera serán presentados cuando pases el mouse sobre el botón " "de ayuda." #: /var/www/html/cacti/include/global_settings.php:405 msgid "Deletion Verification" msgstr "Verificación de borrado" #: /var/www/html/cacti/include/global_settings.php:406 msgid "Prompt user before item deletion." msgstr "Preguntar al usuario antes del borrado del item." #: /var/www/html/cacti/include/global_settings.php:411 msgid "Hide Cacti Console" msgstr "Ocultar consola de Cacti" #: /var/www/html/cacti/include/global_settings.php:412 msgid "" "For use with Cacti's External Link Support. Using this setting, you can " "replace the Cacti Console with your own page." msgstr "" "Para usarse con el soporte externo de enlaces de Cacti. Usando esta oopción, " "puedes reemplazar la consola de Cacti con tu propia página." #: /var/www/html/cacti/include/global_settings.php:418 msgid "Enable Drag-N-Drop" msgstr "Habilitar Drag-N-Drop" #: /var/www/html/cacti/include/global_settings.php:419 msgid "" "Some of Cacti's interfaces support Drag-N-Drop. If checked this option will " "be enabled. Note: For visually impaired user, this option may be disabled." msgstr "" "Algunas de las interfaces de Cacti soportan Drag-N-Drop. Si activa esta " "opción será habilitado. Nota: para usuarios con discapacidad visual, esta " "opción puede ser deshabilitada." #: /var/www/html/cacti/include/global_settings.php:424 msgid "Force Connections over HTTPS" msgstr "Forzar las conexiones sobre HTTPS" #: /var/www/html/cacti/include/global_settings.php:425 msgid "" "When checked, any attempts to access Cacti will be redirected to HTTPS to " "ensure high security." msgstr "" "Cuando este habilitado, cualquier intento de acceder a Cacti será " "redireccionado a HTTPS para aumentar la seguridad." #: /var/www/html/cacti/include/global_settings.php:436 msgid "Enable Automatic Graph Creation" msgstr "Habilitar la creación automática de gráficos" #: /var/www/html/cacti/include/global_settings.php:437 msgid "" "When disabled, Cacti Automation will not actively create any Graph.This is " "useful when adjusting Host settings so as to avoid creating new Graphs each " "time you save an object. Invoking Automation Rules manually will still be " "possible." msgstr "" "Cuando este deshabilitado, la automatización de Cacti no creará ningún item " "de gráfico. Esto es útil cuando ajustas las opciones de equipo para evitar " "crear nuevos gráficos cada vez que guardas un objecto. Aún será posible " "invocar reglas manualmente." #: /var/www/html/cacti/include/global_settings.php:444 msgid "Enable Automatic Tree Item Creation" msgstr "Habilitar la creación automática de item de árbol" #: /var/www/html/cacti/include/global_settings.php:445 msgid "" "When disabled, Cacti Automation will not actively create any Tree Item.This " "is useful when adjusting Host or Graph settings so as to avoid creating new " "Tree Entries each time you save an object. Invoking Rules manually will " "still be possible." msgstr "" "Cuando este deshabilitado, la automatización de Cacti no creará ningún item " "de árbol. Esto es útil cuando ajustas las opciones de equipo o gráficos para " "evitar crear nuevas entradas de árbol cada vez que guardas un objecto. Aún " "será posible invocar reglas manualmente." #: /var/www/html/cacti/include/global_settings.php:453 msgid "General Defaults" msgstr "Opciones generales por defecto" #: /var/www/html/cacti/include/global_settings.php:459 msgid "The default Site for all new Devices." msgstr "El sitio por defecto para todos los nuevos dispositivos." #: /var/www/html/cacti/include/global_settings.php:467 msgid "The default Poller for all new Devices." msgstr "La Sonda por defecto para todos los nuevos dispositivos." #: /var/www/html/cacti/include/global_settings.php:474 #, fuzzy #| msgid "Discovery Threads" msgid "Device Threads" msgstr "Procesos simultáneos de descubrimiento" #: /var/www/html/cacti/include/global_settings.php:475 #, fuzzy #| msgid "The number of Devices associated with this Data Collector." msgid "" "The default number of Device Threads. This is only applicable when using " "the spine Data Collector." msgstr "El número de dispositivos asociados con esta Sonda." #: /var/www/html/cacti/include/global_settings.php:481 msgid "Re-index Method for Data Queries" msgstr "Método de re indexación para las consultas de datos" #: /var/www/html/cacti/include/global_settings.php:482 msgid "The default Re-index Method to use for all Data Queries." msgstr "" "El método de re indexación predeterminado a usar para todas las consultas de " "datos." #: /var/www/html/cacti/include/global_settings.php:488 msgid "SNMP Defaults" msgstr "Valores SNMP por defecto" #: /var/www/html/cacti/include/global_settings.php:494 msgid "Default SNMP version for all new hosts." msgstr "Versión SNMP por defecto para todos los equipos nuevos." #: /var/www/html/cacti/include/global_settings.php:501 msgid "Default SNMP read community for all new hosts." msgstr "Comunidad de lectura SNMP por defecto para todos los equipos nuevos." #: /var/www/html/cacti/include/global_settings.php:507 msgid "Username (v3)" msgstr "Nombre de Usuario (v3)" #: /var/www/html/cacti/include/global_settings.php:508 msgid "The SNMP v3 Username for polling hosts." msgstr "El usuario de SNMPv3 para consultar equipos." #: /var/www/html/cacti/include/global_settings.php:514 msgid "Password (v3)" msgstr "Contraseña (v3)" #: /var/www/html/cacti/include/global_settings.php:515 msgid "The SNMP v3 Password for polling hosts." msgstr "La contraseña SNMPv3 para consultar equipos." #: /var/www/html/cacti/include/global_settings.php:522 msgid "Auth Protocol (v3)" msgstr "Protocolo de autenticación (v3)" #: /var/www/html/cacti/include/global_settings.php:529 msgid "Privacy Passphrase (v3)" msgstr "Contraseña de privacidad (v3)" #: /var/www/html/cacti/include/global_settings.php:536 msgid "Privacy Protocol (v3)" msgstr "Protocolo de privacidad (v3)" #: /var/www/html/cacti/include/global_settings.php:543 msgid "Default SNMP timeout in milli-seconds." msgstr "Tiempo de espera SNMP predeterminado en milisegundos." #: /var/www/html/cacti/include/global_settings.php:550 msgid "Port Number" msgstr "Numero de Puerto" #: /var/www/html/cacti/include/global_settings.php:551 msgid "Default UDP port to be used for SNMP Calls. Typically, 161." msgstr "" "Puerto UDP por defecto a ser usado para las consultas SNMP. Por lo general, " "161." #: /var/www/html/cacti/include/global_settings.php:559 msgid "" "The number of times the SNMP poller will attempt to reach the host before " "failing." msgstr "" "La cantidad de veces que la Sonda SNMP intentará alcanzar al equipo antes de " "fallar." #: /var/www/html/cacti/include/global_settings.php:566 msgid "Availability/Reachability" msgstr "Disponibilidad/Accesibilidad" #: /var/www/html/cacti/include/global_settings.php:578 msgid "Ping Type" msgstr "Tipo de Ping" #: /var/www/html/cacti/include/global_settings.php:579 msgid "" "The type of ping packet to send.
    NOTE: ICMP requires that the Cacti " "Service ID have root privileges in UNIX/Linux." msgstr "" "El tipo de paquete ping a enviar.
    NOTA: ICMP requiere que el ID del " "servicio de Cacti tenga permisos de root en UNIX/Linux." #: /var/www/html/cacti/include/global_settings.php:586 msgid "" "When choosing either TCP or UDP Ping, which port should be checked for " "availability of the host prior to polling." msgstr "" "Ya sea ping TCP o UDP, que puerto debe ser comprobado para disponibilidad de " "este equipo previo a las consultas." #: /var/www/html/cacti/include/global_settings.php:602 msgid "The number of times Cacti will attempt to ping a host before failing." msgstr "" "La cantidad de veces que Cacti intentará hacer ping al equipo antes de " "fallar." #: /var/www/html/cacti/include/global_settings.php:609 msgid "Up/Down Settings" msgstr "Configuración de arriba/caído" #: /var/www/html/cacti/include/global_settings.php:614 msgid "Failure Count" msgstr "Cuenta de fallos" #: /var/www/html/cacti/include/global_settings.php:615 msgid "" "The number of polling intervals a host must be down before logging an error " "and reporting host as down." msgstr "" "La cantidad de intervalos de consultas que un equipo debe estar caído antes " "de registrar un error y reportar el equipo como caído." #: /var/www/html/cacti/include/global_settings.php:622 msgid "Recovery Count" msgstr "Cuenta de recuperación" #: /var/www/html/cacti/include/global_settings.php:623 msgid "" "The number of polling intervals a host must remain up before returning host " "to an up status and issuing a notice." msgstr "" "La cantidad de intervalos de consultas que un equipo debe permanecer arriba " "antes de devolver el equipo al estado arriba e informar." #: /var/www/html/cacti/include/global_settings.php:632 msgid "Theme Settings" msgstr "Opciones de Temas" #: /var/www/html/cacti/include/global_settings.php:637 #: /var/www/html/cacti/include/global_settings.php:800 #: /var/www/html/cacti/include/global_settings.php:1819 msgid "Theme" msgstr "Tema" #: /var/www/html/cacti/include/global_settings.php:638 #: /var/www/html/cacti/include/global_settings.php:1820 msgid "Please select one of the available Themes to skin your Cacti with." msgstr "Selecciona uno de los Temas para tu Cacti." #: /var/www/html/cacti/include/global_settings.php:644 msgid "Table Settings" msgstr "Configuraciones de tabla" #: /var/www/html/cacti/include/global_settings.php:649 msgid "Rows Per Page" msgstr "Filas por página" #: /var/www/html/cacti/include/global_settings.php:650 msgid "The default number of rows to display on for a table." msgstr "El número de filas por defecto a mostrar para una tabla." #: /var/www/html/cacti/include/global_settings.php:656 msgid "Autocomplete Enabled" msgstr "Autocompletar activado" #: /var/www/html/cacti/include/global_settings.php:657 msgid "" "In very large systems, select lists can slow the user interface " "significantly. If this option is enabled, Cacti will use autocomplete " "callbacks to populate the select list systematically. Note: autocomplete is " "forcibly disabled on the Classic theme." msgstr "" #: /var/www/html/cacti/include/global_settings.php:665 msgid "Autocomplete Rows" msgstr "Autocompletar filas" #: /var/www/html/cacti/include/global_settings.php:666 #, fuzzy #| msgid "The default number of rows to display on for a table." msgid "" "The default number of rows to return from an autocomplete based select " "pattern match." msgstr "El número de filas por defecto a mostrar para una tabla." #: /var/www/html/cacti/include/global_settings.php:672 msgid "Graph/Data Source/Data Query Settings" msgstr "Opciones de Gráfico/Data Source/Consulta de datos" #: /var/www/html/cacti/include/global_settings.php:677 msgid "Maximum Title Length" msgstr "Longitud máxima del Título" #: /var/www/html/cacti/include/global_settings.php:678 msgid "The maximum allowable Graph or Data Source titles." msgstr "" #: /var/www/html/cacti/include/global_settings.php:685 msgid "Data Source Field Length" msgstr "Longitud del Data Source" #: /var/www/html/cacti/include/global_settings.php:686 msgid "The maximum Data Query field length." msgstr "La longitud máxima de la consulta de datos." #: /var/www/html/cacti/include/global_settings.php:693 msgid "Graph Creation" msgstr "Creación de gráfico" #: /var/www/html/cacti/include/global_settings.php:698 msgid "Default Graph Type" msgstr "Tipo de gráfico predeterminado" #: /var/www/html/cacti/include/global_settings.php:699 msgid "When creating graphs, what Graph Type would you like pre-selected?" msgstr "" "Cuando creas gráficos, que tipo de gráfico te gustaría tener pre " "seleccionado?" #: /var/www/html/cacti/include/global_settings.php:702 msgid "All Types" msgstr "Todos los tipos" #: /var/www/html/cacti/include/global_settings.php:702 msgid "By Template/Data Query" msgstr "Por Plantilla/Consulta de datos" #: /var/www/html/cacti/include/global_settings.php:710 msgid "Default Log Tail Lines" msgstr "" #: /var/www/html/cacti/include/global_settings.php:711 msgid "Default number of lines of the Cacti log file to tail." msgstr "Número de líneas del archivo de log de Cacti para mostrar por defecto." #: /var/www/html/cacti/include/global_settings.php:717 msgid "Maximum number of rows per page" msgstr "Número máximo de filas por página" #: /var/www/html/cacti/include/global_settings.php:718 msgid "" "User defined number of lines for the CLOG to tail when selecting 'All lines'." msgstr "" #: /var/www/html/cacti/include/global_settings.php:725 msgid "Log Tail Refresh" msgstr "Log Tail Refresh" #: /var/www/html/cacti/include/global_settings.php:726 msgid "How often do you want the Cacti log display to update." msgstr "Cuan frecuente quieres que se actualice el visor de log de Cacti." #: /var/www/html/cacti/include/global_settings.php:732 msgid "RRDtool Graph Watermark" msgstr "Marca de agua de gráficos RRDtool" #: /var/www/html/cacti/include/global_settings.php:737 msgid "Watermark Text" msgstr "Texto de marca de agua" #: /var/www/html/cacti/include/global_settings.php:738 msgid "Text placed at the bottom center of every Graph." msgstr "Texto ubicado en la parte centro inferior de cada gráfico." #: /var/www/html/cacti/include/global_settings.php:745 msgid "Log Viewer Settings" msgstr "Opciones del visor de log" #: /var/www/html/cacti/include/global_settings.php:750 msgid "Exclusion Regex" msgstr "Exclusión regex" #: /var/www/html/cacti/include/global_settings.php:751 msgid "" "Any strings that match this regex will be excluded from the user display. " "For example, if you want to exclude all log lines that include the " "words 'Admin' or 'Login' you would type '(Admin || Login)'" msgstr "" "Cualquier texto que coincida con esta expresión regular será excluida de la " "vista del usuario. Por ejemplo, si quieres excluir todas las líneas " "de log que incluyen las palabras 'Admin' o 'login' deberías tipear '(Admin " "|| Login)'" #: /var/www/html/cacti/include/global_settings.php:758 msgid "Real-time Graphs" msgstr "Gráficos Real-time" #: /var/www/html/cacti/include/global_settings.php:763 msgid "Enable Real-time Graphing" msgstr "Habilitar gráficos Real-time" #: /var/www/html/cacti/include/global_settings.php:764 msgid "" "When an option is checked, users will be able to put Cacti into Real-time " "mode." msgstr "" "Cuando esta opción está activada, los usuarios podrán poner Cacti en modo " "tiempo real." #: /var/www/html/cacti/include/global_settings.php:770 msgid "This timespan you wish to see on the default graph." msgstr "El intervalo de tiempo que deseas ver en los gráficos por defecto." #: /var/www/html/cacti/include/global_settings.php:776 #: /var/www/html/cacti/utilities.php:1948 msgid "Refresh Interval" msgstr "Intervalo de refresco" #: /var/www/html/cacti/include/global_settings.php:777 msgid "This is the time between graph updates." msgstr "Este es el tiempo entre actualizaciones de gráficos." #: /var/www/html/cacti/include/global_settings.php:783 msgid "Cache Directory" msgstr "Directorio del cache" #: /var/www/html/cacti/include/global_settings.php:784 msgid "" "This is the location, on the web server where the RRDfiles and PNG files " "will be cached. This cache will be managed by the poller. Make sure you " "have the correct read and write permissions on this folder" msgstr "" "Esta es la ubicación, en el servidor web donde los archivos RRD y PNG serán " "cacheados. Este cache será administrado por la Sonda. Asegúrate de tener los " "permisos correctos de lectura y escritura en este directorio" #: /var/www/html/cacti/include/global_settings.php:791 msgid "RRDtool Graph Font Control" msgstr "Control de fuentes de gráficos RRDtool" #: /var/www/html/cacti/include/global_settings.php:796 msgid "Font Selection Method" msgstr "Método de selección de Fuente" #: /var/www/html/cacti/include/global_settings.php:797 msgid "How do you wish fonts to be handled by default?" msgstr "Como quieres que las fuentes sean administradas por defecto?" #: /var/www/html/cacti/include/global_settings.php:800 msgid "System" msgstr "Sistema" #: /var/www/html/cacti/include/global_settings.php:803 msgid "Default Font" msgstr "Fuente predeterminada" #: /var/www/html/cacti/include/global_settings.php:804 msgid "" "When not using Theme based font control, the Pangon font-config font name to " "use for all Graphs. Optionally, you may leave blank and control font " "settings on a per object basis." msgstr "" #: /var/www/html/cacti/include/global_settings.php:806 #: /var/www/html/cacti/include/global_settings.php:821 #: /var/www/html/cacti/include/global_settings.php:836 #: /var/www/html/cacti/include/global_settings.php:851 #: /var/www/html/cacti/include/global_settings.php:866 msgid "Enter Valid Font Config Value" msgstr "Ingrese un valor de configuración de fuente válido" #: /var/www/html/cacti/include/global_settings.php:810 #: /var/www/html/cacti/include/global_settings.php:2010 msgid "Title Font Size" msgstr "Tamaño de la fuente del Título" #: /var/www/html/cacti/include/global_settings.php:811 #: /var/www/html/cacti/include/global_settings.php:2011 msgid "The size of the font used for Graph Titles" msgstr "El tamaño de la fuente usada para los títulos de gráficos" #: /var/www/html/cacti/include/global_settings.php:818 msgid "Title Font Setting" msgstr "Opciones de fuente del título" #: /var/www/html/cacti/include/global_settings.php:819 msgid "" "The font to use for Graph Titles. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" "La fuente a usar para los títulos de gráficos. Ingrese ya sea un archivo de " "fuente True Type válido o un valor font-config de Pango válido." #: /var/www/html/cacti/include/global_settings.php:825 #: /var/www/html/cacti/include/global_settings.php:2023 msgid "Legend Font Size" msgstr "Tamaño de fuente de la Leyenda" #: /var/www/html/cacti/include/global_settings.php:826 #: /var/www/html/cacti/include/global_settings.php:2024 msgid "The size of the font used for Graph Legend items" msgstr "El tamaño de la fuente a usar para los items de leyenda de gráfico" #: /var/www/html/cacti/include/global_settings.php:833 msgid "Legend Font Setting" msgstr "Opciones de fuente de la Leyenda" #: /var/www/html/cacti/include/global_settings.php:834 msgid "" "The font to use for Graph Legends. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" "La fuente a usar para la leyenda de gráficos. Ingrese ya sea un archivo de " "fuente True Type válido o un valor font-config de Pango válido." #: /var/www/html/cacti/include/global_settings.php:840 #: /var/www/html/cacti/include/global_settings.php:2036 msgid "Axis Font Size" msgstr "Tamaño de fuente del Eje" #: /var/www/html/cacti/include/global_settings.php:841 #: /var/www/html/cacti/include/global_settings.php:2037 msgid "The size of the font used for Graph Axis" msgstr "El tamaño de la fuente usada para los Ejes de gráficos" #: /var/www/html/cacti/include/global_settings.php:848 msgid "Axis Font Setting" msgstr "Opciones de fuente de Eje" #: /var/www/html/cacti/include/global_settings.php:849 msgid "" "The font to use for Graph Axis items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" "La fuente a usar para los items de Eje de gráfico. Ingrese ya sea un archivo " "de fuente True Type válido o un valor font-config Pango válido." #: /var/www/html/cacti/include/global_settings.php:855 #: /var/www/html/cacti/include/global_settings.php:2049 msgid "Unit Font Size" msgstr "Tamaño de fuente de la unidad" #: /var/www/html/cacti/include/global_settings.php:856 #: /var/www/html/cacti/include/global_settings.php:2050 msgid "The size of the font used for Graph Units" msgstr "El tamaño de la fuente usada para las unidades de Gráfico" #: /var/www/html/cacti/include/global_settings.php:863 msgid "Unit Font Setting" msgstr "Opciones de fuente de la unidad" #: /var/www/html/cacti/include/global_settings.php:864 msgid "" "The font to use for Graph Unit items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" "La fuente a usar para los items de unidad de los gráficos. Ingrese ya sesa " "un archivo de fuente True Type válido o un valor font-config Pango válido." #: /var/www/html/cacti/include/global_settings.php:877 msgid "Data Collection Enabled" msgstr "Recolector de datos habilitado" #: /var/www/html/cacti/include/global_settings.php:878 msgid "If you wish to stop the polling process completely, uncheck this box." msgstr "" "Si desea parar el proceso de sondeo por completo, desmarque esta casilla." #: /var/www/html/cacti/include/global_settings.php:884 msgid "Poller Type" msgstr "Tipo de Sonda" #: /var/www/html/cacti/include/global_settings.php:885 msgid "" "The poller type to use. This setting will take effect at next polling " "interval." msgstr "" "El tipo de Sonda a usar. Esta configuración hará efecto en el próximo " "intervarlo de sondeo." #: /var/www/html/cacti/include/global_settings.php:892 msgid "" "The polling interval in use. This setting will effect how often RRDfiles " "are checked and updated. NOTE: If you change this value, you " "must re-populate the poller cache. Failure to do so, may result in lost " "data." msgstr "" "El intervalo de sondeo en uso. Esta configuración afectará cuan seguido los " "archivos RRD serán revisados y actualizados. NOTA: si cambias " "este valor, debes volver a llenar el caché de la Sonda. Si falla puede " "resultar en perdida de datos." #: /var/www/html/cacti/include/global_settings.php:898 msgid "Cron Interval" msgstr "Intervalo de cron" #: /var/www/html/cacti/include/global_settings.php:899 msgid "" "The cron interval in use. You need to set this setting to the interval that " "your cron or scheduled task is currently running." msgstr "" "El intervalo de cron en uso. Necesitas especificar esta opción al intervalo " "que cron o tarea programada que se ejecuta actualmente." #: /var/www/html/cacti/include/global_settings.php:905 msgid "Maximum Concurrent Poller Processes" msgstr "Máxima cantidad de procesos de sondeo concurrentes" #: /var/www/html/cacti/include/global_settings.php:906 msgid "" "The number of concurrent processes to execute. Using a higher number when " "using cmd.php will improve performance. Performance improvements in spine " "are best resolved with the threads parameter" msgstr "" "La cantidad de procesos concurrentes a ejecutar. Usar un número alto cuando " "use cmd.php mejorará el rendimiento. Las mejoras de rendimiento con Spine " "son mejor resueltas con el parámetro de hilos" #: /var/www/html/cacti/include/global_settings.php:913 msgid "Balance Process Load" msgstr "Balanceo de carga de proceso" #: /var/www/html/cacti/include/global_settings.php:914 msgid "" "If you choose this option, Cacti will attempt to balance the load of each " "poller process by equally distributing poller items per process." msgstr "" "Si elige esta opción, Cacti intentará balancear la carga de cada proceso de " "Sonda distribuyendo elementos de sondeo por proceso." #: /var/www/html/cacti/include/global_settings.php:919 msgid "Disable increasing OID Check" msgstr "Deshabilitar el control de incremento de OID" #: /var/www/html/cacti/include/global_settings.php:920 msgid "Controls disabling check for increasing OID while walking OID tree." msgstr "" "Controla la deshabilitación del control de incremento de OID mientras se " "recorre el árbol OID." #: /var/www/html/cacti/include/global_settings.php:925 msgid "Spine Specific Execution Parameters" msgstr "Parámetros específicos de ejecución de Spine" #: /var/www/html/cacti/include/global_settings.php:930 msgid "Invalid Data Logging" msgstr "Registro de datos inválido" #: /var/www/html/cacti/include/global_settings.php:931 msgid "" "How would you like Spine output errors logged? The options are: 'Detailed' " "which is similar to cmd.php logging; 'Summary' which provides the number of " "output errors per host; and 'None', which does not provide error counts." msgstr "" #: /var/www/html/cacti/include/global_settings.php:936 #: /var/www/html/cacti/utilities.php:206 msgid "Summary" msgstr "Resumen" #: /var/www/html/cacti/include/global_settings.php:937 msgid "Detailed" msgstr "Detallado" #: /var/www/html/cacti/include/global_settings.php:941 msgid "Maximum Threads per Process" msgstr "Máxima cantidad de threads por proceso" #: /var/www/html/cacti/include/global_settings.php:942 msgid "" "The maximum threads allowed per process. Using a higher number when using " "Spine will improve performance." msgstr "" "La máxima cantidad de threads permitida por proceso. Usar un número más alto " "cuando se usa Spine mejorará el rendimiento." #: /var/www/html/cacti/include/global_settings.php:949 msgid "Number of PHP Script Servers" msgstr "Número de servidores de Script PHP" #: /var/www/html/cacti/include/global_settings.php:950 msgid "" "The number of concurrent script server processes to run per Spine process. " "Settings between 1 and 10 are accepted. This parameter will help if you are " "running several threads and script server scripts." msgstr "" "La cantidad de procesos de servidor de script concurrentes a ejecutar por " "proceso de Spine. Se aceptan valores de 1 a 10. Este parámetro ayudará si " "está ejecutando muchos hilos y scripts de servidores de script." #: /var/www/html/cacti/include/global_settings.php:957 msgid "Script and Script Server Timeout Value" msgstr "Valor de tiempo de espera de Script y servidores de Script" #: /var/www/html/cacti/include/global_settings.php:958 msgid "" "The maximum time that Cacti will wait on a script to complete. This timeout " "value is in seconds" msgstr "" "El tiempo máximo que Cacti esperará que un script se complete. El valor de " "tiempo de espera en segundos" #: /var/www/html/cacti/include/global_settings.php:965 msgid "The Maximum SNMP OIDs Per SNMP Get Request" msgstr "Cantidad máxima de OIDs por solicitud Get SNMP" #: /var/www/html/cacti/include/global_settings.php:966 msgid "" "The maximum number of SNMP get OIDs to issue per snmpbulkwalk request. " "Increasing this value speeds poller performance over slow links. The " "maximum value is 100 OIDs. Decreasing this value to 0 or 1 will disable " "snmpbulkwalk" msgstr "" "La cantidad máxima de OIDs por SNMP Get para emitir por solicitud " "snmpbulkwalk" #: /var/www/html/cacti/include/global_settings.php:980 msgid "Authentication Method" msgstr "Método de autenticación" #: /var/www/html/cacti/include/global_settings.php:981 msgid "" "
    None - No authentication will be used, all users will " "have full access.

    Built-in Authentication - Cacti handles user " "authentication, which allows you to create users and give them rights to " "different areas within Cacti.

    Web Basic Authentication - " "Authentication is handled by the web server. Users can be added or created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used.

    LDAP Authentication - " "Allows for authentication against a LDAP server. Users will be created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used. If PHPs LDAP module is not enabled, " "LDAP Authentication will not appear as a selectable option." "

    Multiple LDAP/AD Domain Authentication - Allows " "administrators to support multiple disparate groups from different LDAP/AD " "directories to access Cacti resources. Just as LDAP Authentication, the PHP " "LDAP module is required to utilize this method.
    " msgstr "" "
    Ninguno - No se usará ninguna autenticación, todos los " "usuarios tendran acceso full.

    Autenticación Integrada - Cacti " "maneja la autenticación, lo que te permite crear usuarios y darles " "diferentes permisos a las áreas dentro de Cacti.

    Autenticación Web " "básica - La autenticación es manejada por el servidor web. Se pueden " "agregar usuarios o crearse automáticamente al primer inicio de sesión si se " "define una Plantilla de usuarios, de otra manera se usarán los permisos del " "usuario invitado.

    Autenticación LDAP - Permite autenticar " "contra un servidor LDAP. Los usuaios serán creados automáticamente al primer " "inicio de sesión si hay una Plantilla de usuarios definida, de otra manera " "se usarán los permisos del usuario invitado definidos. Si el módulo LDAP de " "PHP no está habilitado, la opción de autenticación LDAP no aparecerá para " "ser seleccionada.

    Múltiples Dominios de autenticación LDAP/AD " "- Permite a los administradores admitir múltiples grupos dispares de " "diferentes directorios LDAP/AD acceder a los recursos de Cacti. Tal como " "Autenticación LDAP, el módulo LDAP de PHP es requerido para utilizar este " "método.
    " #: /var/www/html/cacti/include/global_settings.php:987 msgid "Support Authentication Cookies" msgstr "Soporte de cookies de autenticación" #: /var/www/html/cacti/include/global_settings.php:988 msgid "" "If a user authenticates and selects 'Keep me signed in', an authentication " "cookie will be created on the user's computer allowing that user to stay " "logged in. The authentication cookie expires after 90 days of non-use." msgstr "" "Si un usuario se autentica y selecciona 'Mantenerme conectado' una cookie de " "autenticación será creada en la computadora del usuario permitiendo al " "usuario permanecer conectado. La cookie de autenticación expira después de " "90 días sin usarse." #: /var/www/html/cacti/include/global_settings.php:993 msgid "Special Users" msgstr "Usuarios especiales" #: /var/www/html/cacti/include/global_settings.php:998 msgid "Guest User" msgstr "Usuario invitado" #: /var/www/html/cacti/include/global_settings.php:999 msgid "The name of the guest user for viewing graphs; is 'No User' by default." msgstr "" "El nombre del usuario invitado para ver gráficos; por defecto es 'No " "Usuario'." #: /var/www/html/cacti/include/global_settings.php:1001 #: /var/www/html/cacti/include/global_settings.php:1009 #: /var/www/html/cacti/user_domains.php:337 msgid "No User" msgstr "Sin usuario" #: /var/www/html/cacti/include/global_settings.php:1006 #: /var/www/html/cacti/user_domains.php:333 msgid "User Template" msgstr "Plantilla de usuario" #: /var/www/html/cacti/include/global_settings.php:1007 msgid "" "The name of the user that Cacti will use as a template for new Web Basic and " "LDAP users; is 'guest' by default." msgstr "" "El nombre de usuario que Cacti usará como Plantilla para nuevos usuarios web " "básicos y LDAP; es 'invitado' por defecto." #: /var/www/html/cacti/include/global_settings.php:1014 msgid "Local Account Complexity Requirements" msgstr "Requisitos de complejidad de cuentas locales" #: /var/www/html/cacti/include/global_settings.php:1019 msgid "Minimum Length" msgstr "Longitud mínima" #: /var/www/html/cacti/include/global_settings.php:1020 msgid "This is minimal length of allowed passwords." msgstr "Esta es la longitud mínima permitida para contraseñas." #: /var/www/html/cacti/include/global_settings.php:1027 msgid "Require Mix Case" msgstr "Requiere Mayúsculas y Minúsculas" #: /var/www/html/cacti/include/global_settings.php:1028 msgid "" "This will require new passwords to contains both lower and upper-case " "characters." msgstr "" "Esto requerirá que las nuevas contraseñas contengan caracteres en mayúsculas " "y minúsculas." #: /var/www/html/cacti/include/global_settings.php:1033 msgid "Require Number" msgstr "Requiere números" #: /var/www/html/cacti/include/global_settings.php:1034 msgid "" "This will require new passwords to contain at least 1 numerical character." msgstr "" "Esto requerirá que las nuevas contraseñas contengan al menos 1 caracter " "numérico." #: /var/www/html/cacti/include/global_settings.php:1039 msgid "Require Special Character" msgstr "Requiere caracteres especiales" #: /var/www/html/cacti/include/global_settings.php:1040 msgid "" "This will require new passwords to contain at least 1 special character." msgstr "" "Esto requerirá que las nuevas contraseñas contengan al menos un caracter " "especial." #: /var/www/html/cacti/include/global_settings.php:1045 msgid "Force Complexity Upon Old Passwords" msgstr "Forzar complejidad a contraseñas existentes" #: /var/www/html/cacti/include/global_settings.php:1046 msgid "" "This will require all old passwords to also meet the new complexity " "requirements upon login. If not met, it will force a password change." msgstr "" "Esto requerirá que las contraseñas existentes cumplan los nuevos requisitos " "de complejidad al iniciar sesión. Si no se cumplen, forzará el cambio de la " "contraseña." #: /var/www/html/cacti/include/global_settings.php:1051 msgid "Expire Inactive Accounts" msgstr "Caducar cuentas inactivas" #: /var/www/html/cacti/include/global_settings.php:1052 msgid "" "This is maximum number of days before inactive accounts are disabled. The " "Admin account is excluded from this policy." msgstr "" "Cantidad máxima de días antes que las cuentas inactivas sean deshabilitadas. " "La cuenta Admin está excluida de esta política." #: /var/www/html/cacti/include/global_settings.php:1065 msgid "Expire Password" msgstr "Caducar contraseña" #: /var/www/html/cacti/include/global_settings.php:1066 msgid "This is maximum number of days before a password is set to expire." msgstr "Cantidad máxima de días antes que la contraseña caduque." #: /var/www/html/cacti/include/global_settings.php:1077 msgid "Password History" msgstr "Historial de contraseña" #: /var/www/html/cacti/include/global_settings.php:1078 msgid "Remember this number of old passwords and disallow re-using them." msgstr "" "Recordar esta cantidad de contraseñas anteriores y no permitir el reuso." #: /var/www/html/cacti/include/global_settings.php:1083 msgid "1 Change" msgstr "1 cambio" #: /var/www/html/cacti/include/global_settings.php:1084 #: /var/www/html/cacti/include/global_settings.php:1085 #: /var/www/html/cacti/include/global_settings.php:1086 #: /var/www/html/cacti/include/global_settings.php:1087 #: /var/www/html/cacti/include/global_settings.php:1088 #: /var/www/html/cacti/include/global_settings.php:1089 #: /var/www/html/cacti/include/global_settings.php:1090 #: /var/www/html/cacti/include/global_settings.php:1091 #: /var/www/html/cacti/include/global_settings.php:1092 #: /var/www/html/cacti/include/global_settings.php:1093 #: /var/www/html/cacti/include/global_settings.php:1094 #, php-format msgid "%d Changes" msgstr "%d cambios" #: /var/www/html/cacti/include/global_settings.php:1097 msgid "Account Locking" msgstr "Bloqueo de cuenta" #: /var/www/html/cacti/include/global_settings.php:1102 msgid "Lock Accounts" msgstr "Bloquear cuentas" #: /var/www/html/cacti/include/global_settings.php:1103 msgid "Lock an account after this many failed attempts in 1 hour." msgstr "Bloquear cuenta después de estos intentos fallidos en 1 hora." #: /var/www/html/cacti/include/global_settings.php:1108 msgid "1 Attempt" msgstr "1 intento" #: /var/www/html/cacti/include/global_settings.php:1109 #: /var/www/html/cacti/include/global_settings.php:1110 #: /var/www/html/cacti/include/global_settings.php:1111 #: /var/www/html/cacti/include/global_settings.php:1112 #: /var/www/html/cacti/include/global_settings.php:1113 #, php-format msgid "%d Attempts" msgstr "%d intentos" #: /var/www/html/cacti/include/global_settings.php:1116 msgid "Auto Unlock" msgstr "Auto desbloquear" #: /var/www/html/cacti/include/global_settings.php:1117 msgid "" "An account will automatically be unlocked after this many minutes. Even if " "the correct password is entered, the account will not unlock until this time " "limit has been met. Max of 1440 minutes (1 Day)" msgstr "" "La cuenta se desbloqueará automáticamente después de tantos minutos. Incluso " "si la contraseña correcta es ingresada, la cuenta no se desbloqueará hasta " "que se haya alcanzado este límite de tiempo. Máximo de 1440 minutos (1 día)" #: /var/www/html/cacti/include/global_settings.php:1136 msgid "LDAP General Settings" msgstr "Opciones generales de LDAP" #: /var/www/html/cacti/include/global_settings.php:1140 #: /var/www/html/cacti/user_domains.php:360 msgid "Server" msgstr "Servidor" #: /var/www/html/cacti/include/global_settings.php:1141 msgid "The DNS hostname or IP address of the server." msgstr "El nombre de equipo DNS o dirección IP del servidor." #: /var/www/html/cacti/include/global_settings.php:1146 #: /var/www/html/cacti/user_domains.php:368 msgid "Port Standard" msgstr "Puerto estándar" #: /var/www/html/cacti/include/global_settings.php:1147 msgid "TCP/UDP port for Non-SSL communications." msgstr "Puerto TCP/UDP para comunicaciones No-SSL." #: /var/www/html/cacti/include/global_settings.php:1154 #: /var/www/html/cacti/user_domains.php:377 msgid "Port SSL" msgstr "Puerto SSL" #: /var/www/html/cacti/include/global_settings.php:1155 #: /var/www/html/cacti/user_domains.php:378 msgid "TCP/UDP port for SSL communications." msgstr "Puerto TCP/UDP para comunicaciones SSL." #: /var/www/html/cacti/include/global_settings.php:1162 #: /var/www/html/cacti/user_domains.php:386 msgid "Protocol Version" msgstr "Versión del Protocolo" #: /var/www/html/cacti/include/global_settings.php:1163 #: /var/www/html/cacti/user_domains.php:387 msgid "Protocol Version that the server supports." msgstr "Versión del Protocolo que soporta el servidor." #: /var/www/html/cacti/include/global_settings.php:1169 #: /var/www/html/cacti/user_domains.php:393 msgid "Encryption" msgstr "Encriptación" #: /var/www/html/cacti/include/global_settings.php:1170 #: /var/www/html/cacti/user_domains.php:394 msgid "" "Encryption that the server supports. TLS is only supported by Protocol " "Version 3." msgstr "" "Cifrado admitido por el servidor. TLS sólo es admitido con la versión 3 del " "protocolo." #: /var/www/html/cacti/include/global_settings.php:1176 #: /var/www/html/cacti/user_domains.php:400 msgid "Referrals" msgstr "Referencias" #: /var/www/html/cacti/include/global_settings.php:1177 #: /var/www/html/cacti/user_domains.php:401 msgid "" "Enable or Disable LDAP referrals. If disabled, it may increase the speed of " "searches." msgstr "" "Habilitar o deshabilitar referencias de LDAP. Si se deshabilita, podría " "aumentar la velocidad de las búsquedas." #: /var/www/html/cacti/include/global_settings.php:1183 #: /var/www/html/cacti/user_domains.php:407 msgid "Mode" msgstr "Modo" #: /var/www/html/cacti/include/global_settings.php:1184 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the user's " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the user's Distinguished Name (DN)." msgstr "" "Modo en el cual Cacti intentará autenticar contra un servidor LDAP." "
    Sin búsqueda - Ninguna búsqueda de nombre distinguido " "(DN) ocurre, solo intenta vincularse con el formato de nombre distinguido " "(DN) proporcionado.

    Búsqueda anónima - Intenta buscar usuarios " "en un directorio LDAP usando un usuario anónimo para vincularse y encontrar " "nombres distinguidos (DN)

    Búsqueda específica - Intenta buscar " "usuarios en un directorio LDAP usando un nombre distinguido (DN) y una " "contraseña específica para vincularse y encontrar el nombre distinguido (DN) " "del usuario." #: /var/www/html/cacti/include/global_settings.php:1190 #: /var/www/html/cacti/user_domains.php:414 msgid "Distinguished Name (DN)" msgstr "Distinguished Name (DN)" #: /var/www/html/cacti/include/global_settings.php:1191 #: /var/www/html/cacti/user_domains.php:415 msgid "" "Distinguished Name syntax, such as for windows: \"<username>" "@win2kdomain.local\" or for OpenLDAP: \"uid=<username>," "ou=people,dc=domain,dc=local\". \"<username>\" is replaced with " "the username that was supplied at the login prompt. This is only used when " "in \"No Searching\" mode." msgstr "" "Sintaxis de nombre distinguido, para windows: \"<username>" "@win2kdomain.local\" o para OpenLDAP: \"uid=<username>," "ou=people,dc=domain,dc=local\". \"<username>\" es reemplazado con " "el nombre de usuario que fue proporcionado en el prompt de inicio de sesión. " "Esto es solamente usado en modo \"No Searching\"." #: /var/www/html/cacti/include/global_settings.php:1196 #: /var/www/html/cacti/user_domains.php:421 msgid "Require Group Membership" msgstr "Requiere la pertenencia al grupo" #: /var/www/html/cacti/include/global_settings.php:1197 #: /var/www/html/cacti/user_domains.php:422 msgid "" "Require user to be member of group to authenticate. Group settings must be " "set for this to work, enabling without proper group settings will cause " "authentication failure." msgstr "" "Requiere que el usuario sea miembro del grupo para autenticar. Las opciones " "de grupo deben ser especificadas para que esto funcione, habilitarlo sin las " "opciones de grupo correctas causará que falle la autenticación." #: /var/www/html/cacti/include/global_settings.php:1202 #: /var/www/html/cacti/user_domains.php:427 msgid "LDAP Group Settings" msgstr "Opciones de grupo LDAP" #: /var/www/html/cacti/include/global_settings.php:1206 #: /var/www/html/cacti/user_domains.php:431 msgid "Group Distinguished Name (DN)" msgstr "Grupo nombre distinguido (DN)" #: /var/www/html/cacti/include/global_settings.php:1207 #: /var/www/html/cacti/user_domains.php:432 msgid "Distinguished Name of the group that user must have membership." msgstr "Nombre distinguido del grupo al que el usuario debe pertenecer." #: /var/www/html/cacti/include/global_settings.php:1212 #: /var/www/html/cacti/user_domains.php:438 msgid "Group Member Attribute" msgstr "Atributos de miembro de grupo" #: /var/www/html/cacti/include/global_settings.php:1213 #: /var/www/html/cacti/user_domains.php:439 msgid "Name of the attribute that contains the usernames of the members." msgstr "" "Nombre del atributo que contiene los nombres de usuario de los miembros." #: /var/www/html/cacti/include/global_settings.php:1218 #: /var/www/html/cacti/user_domains.php:445 msgid "Group Member Type" msgstr "Tipo de miembro de grupo" #: /var/www/html/cacti/include/global_settings.php:1219 #: /var/www/html/cacti/user_domains.php:446 msgid "" "Defines if users use full Distinguished Name or just Username in the defined " "Group Member Attribute." msgstr "" "Define si los usuarios usan Nombre distinguido completo o solo nombre de " "usuario en el atributo de miembro de grupo definido." #: /var/www/html/cacti/include/global_settings.php:1222 msgid "Distinguished Name" msgstr "Nombre distinguido" #: /var/www/html/cacti/include/global_settings.php:1225 #: /var/www/html/cacti/user_domains.php:452 msgid "LDAP Specific Search Settings" msgstr "Opciones de búsqueda específica de LDAP" #: /var/www/html/cacti/include/global_settings.php:1229 #: /var/www/html/cacti/user_domains.php:456 msgid "Search Base" msgstr "Base de búsqueda" #: /var/www/html/cacti/include/global_settings.php:1230 msgid "" "Search base for searching the LDAP directory, such as 'dc=win2kdomain," "dc=local' or 'ou=people,dc=domain,dc=local'." msgstr "" "Base de búsqueda para buscar en el directorio LDAP, como 'dc=win2kdomain," "dc=local' o 'ou=people,dc=domain,dc=local'." #: /var/www/html/cacti/include/global_settings.php:1235 #: /var/www/html/cacti/user_domains.php:463 msgid "Search Filter" msgstr "Filtro de búsqueda" #: /var/www/html/cacti/include/global_settings.php:1236 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: '(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))' or for OpenLDAP: " "'(&(objectClass=account)(uid=<username>))'. '<username>' " "is replaced with the username that was supplied at the login prompt. " msgstr "" "Filtro de búsqueda a usar para encontrar el usuario en el directorio LDAP, " "como para Windowss: '(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))' o para OpenLDAP: " "'(&(objectClass=account)(uid=<username>))'. '<username>' " "es reemplazado con el nombre de usuario que fue proporcionado en el prompt " "de inicio de sesión. " #: /var/www/html/cacti/include/global_settings.php:1241 #: /var/www/html/cacti/user_domains.php:470 msgid "Search Distinguished Name (DN)" msgstr "Buscar nombre distinguido (DN)" #: /var/www/html/cacti/include/global_settings.php:1242 #: /var/www/html/cacti/user_domains.php:471 msgid "" "Distinguished Name for Specific Searching binding to the LDAP directory." msgstr "Nombre distinguido para búsqueda específica en el directorio LDAP." #: /var/www/html/cacti/include/global_settings.php:1247 #: /var/www/html/cacti/user_domains.php:477 msgid "Search Password" msgstr "Contraseña de búsqueda" #: /var/www/html/cacti/include/global_settings.php:1248 #: /var/www/html/cacti/user_domains.php:478 msgid "Password for Specific Searching binding to the LDAP directory." msgstr "Contraseña para búsqueda específica en el directorio LDAP." #: /var/www/html/cacti/include/global_settings.php:1253 #: /var/www/html/cacti/user_domains.php:484 msgid "LDAP CN Settings" msgstr "Configuración CN de LDAP" #: /var/www/html/cacti/include/global_settings.php:1258 #: /var/www/html/cacti/user_domains.php:489 msgid "" "Field that will replace the Full Name when creating a new user, taken from " "LDAP. (on windows: displayname) " msgstr "" #: /var/www/html/cacti/include/global_settings.php:1263 msgid "Email" msgstr "Correo" #: /var/www/html/cacti/include/global_settings.php:1264 msgid "Field that will replace the email taken from LDAP. (on windows: mail)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1271 msgid "URL Linking" msgstr "URL de enlace" #: /var/www/html/cacti/include/global_settings.php:1276 msgid "Server Base URL" msgstr "URL base del servidor" #: /var/www/html/cacti/include/global_settings.php:1277 msgid "" "This is a the server location that will be used for links to the Cacti site." msgstr "" "Esta es la ubicación del servidor que será usada para enlaces a los sitios " "de Cacti." #: /var/www/html/cacti/include/global_settings.php:1284 msgid "" "Emailing Options
    Send a Test Email
    " msgstr "" "Opciones de correo
    Enviar correo de prueba
    " #: /var/www/html/cacti/include/global_settings.php:1288 msgid "Test Email" msgstr "Correo de prueba" #: /var/www/html/cacti/include/global_settings.php:1289 msgid "" "This is a Email account used for sending a test message to ensure everything " "is working properly." msgstr "" "Esta es una cuenta de correo usada para enviar mensajes de prueba para " "asegurarse que todo esta funcionando correctamente." #: /var/www/html/cacti/include/global_settings.php:1294 msgid "Mail Services" msgstr "Servicios de correo" #: /var/www/html/cacti/include/global_settings.php:1295 msgid "Which mail service to use in order to send mail" msgstr "Que servicio de correo usar para enviar correos" #: /var/www/html/cacti/include/global_settings.php:1297 #: /var/www/html/cacti/include/global_settings.php:1298 msgid "PHP Mail() Function" msgstr "Función Mail() de PHP" #: /var/www/html/cacti/include/global_settings.php:1298 #: /var/www/html/cacti/lib/functions.php:3842 msgid "SMTP" msgstr "SMTP" #: /var/www/html/cacti/include/global_settings.php:1298 #: /var/www/html/cacti/lib/functions.php:3837 msgid "Sendmail" msgstr "Sendmail" #: /var/www/html/cacti/include/global_settings.php:1301 msgid "Ping Mail Server" msgstr "Hacer ping al servidor de correo" #: /var/www/html/cacti/include/global_settings.php:1302 msgid "Ping the Mail Server before sending test Email?" msgstr "" "Hacer un ping al servidor de correo antes de enviar el correo de prueba?" #: /var/www/html/cacti/include/global_settings.php:1308 #: /var/www/html/cacti/lib/html_reports.php:186 msgid "From Email Address" msgstr "Dirección de correo del remitente" #: /var/www/html/cacti/include/global_settings.php:1309 msgid "This is the Email address that the Email will appear from." msgstr "" "Esta es la dirección de correo del remitente que aparecerá en el correo." #: /var/www/html/cacti/include/global_settings.php:1314 #: /var/www/html/cacti/lib/html_reports.php:178 msgid "From Name" msgstr "Nombre del remitente" #: /var/www/html/cacti/include/global_settings.php:1315 msgid "This is the actual name that the Email will appear from." msgstr "Este es el nombre del remitente que aparecerá en el correo." #: /var/www/html/cacti/include/global_settings.php:1320 msgid "Word Wrap" msgstr "Ajuste de línea" #: /var/www/html/cacti/include/global_settings.php:1321 msgid "" "This is how many characters will be allowed before a line in the Email is " "automatically word wrapped. (0 = Disabled)" msgstr "" "Cuantos caracteres serán permitidos antes de que una línea en el correo sea " "automáticamente ajustada. (0 = Dishabilitado)" #: /var/www/html/cacti/include/global_settings.php:1328 msgid "Sendmail Options" msgstr "Opciones de Sendmail" #: /var/www/html/cacti/include/global_settings.php:1333 #: /var/www/html/cacti/lib/functions.php:3837 msgid "Sendmail Path" msgstr "Ruta a Sendmail" #: /var/www/html/cacti/include/global_settings.php:1334 msgid "" "This is the path to sendmail on your server. (Only used if Sendmail is " "selected as the Mail Service)" msgstr "" "Esta es la ruta a sendmail en tu servidor. (Solamente utilizado si Sendmail " "es seleccionado como servicio de correo)" #: /var/www/html/cacti/include/global_settings.php:1340 msgid "SMTP Options" msgstr "Opciones de SMTP" #: /var/www/html/cacti/include/global_settings.php:1345 msgid "SMTP Hostname" msgstr "Nombre de equipo SMTP" #: /var/www/html/cacti/include/global_settings.php:1346 msgid "" "This is the hostname/IP of the SMTP Server you will send the Email to. For " "failover, separate your hosts using a semi-colon." msgstr "" "Este es el nombre de quipo/IP del servidor SMTP al que enviarás el correo. " "Para failover, separa tus equipos usando punto y coma." #: /var/www/html/cacti/include/global_settings.php:1352 msgid "SMTP Port" msgstr "Puerto SMTP" #: /var/www/html/cacti/include/global_settings.php:1353 msgid "The port on the SMTP Server to use." msgstr "El Puerto a usar en el servidor SMTP." #: /var/www/html/cacti/include/global_settings.php:1360 msgid "SMTP Username" msgstr "Usuario SMTP" #: /var/www/html/cacti/include/global_settings.php:1361 msgid "" "The username to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" "El nombre de usuario para autenticar al enviar via SMTP. (Deje en blanco si " "no requiere autenticación)." #: /var/www/html/cacti/include/global_settings.php:1366 msgid "SMTP Password" msgstr "Contraseña SMTP" #: /var/www/html/cacti/include/global_settings.php:1367 msgid "" "The password to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" "La contraseña de usuario para autenticar al enviar via SMTP. (Deje en blanco " "si no requiere autenticación)." #: /var/www/html/cacti/include/global_settings.php:1372 msgid "SMTP Security" msgstr "Seguridad SMTP" #: /var/www/html/cacti/include/global_settings.php:1373 msgid "The encryption method to use for the Email." msgstr "Método de cifrado a usar para este correo." #: /var/www/html/cacti/include/global_settings.php:1379 msgid "SMTP Timeout" msgstr "Tiempo de espera de SMTP" #: /var/www/html/cacti/include/global_settings.php:1380 msgid "Please enter the SMTP timeout in seconds." msgstr "Ingrese el tiempo de espera SMTP en segundos." #: /var/www/html/cacti/include/global_settings.php:1387 msgid "Reporting Presets" msgstr "Preajustes de Informes" #: /var/www/html/cacti/include/global_settings.php:1392 msgid "Default Graph Image Format" msgstr "Formato de imagen de gráficos por defecto" #: /var/www/html/cacti/include/global_settings.php:1393 msgid "" "When creating a new report, what image type should be used for the inline " "graphs." msgstr "" "Cuando se crea un reporte nuevo, que tipo de imagen debería ser usada para " "los gráficos en línea." #: /var/www/html/cacti/include/global_settings.php:1399 msgid "Maximum E-Mail Size" msgstr "Tamaño máximo de correo" #: /var/www/html/cacti/include/global_settings.php:1400 msgid "The maximum size of the E-Mail message including all attachements." msgstr "" "Tamaño máximo del mensaje de correo incluyendo todos los archivos adjuntos." #: /var/www/html/cacti/include/global_settings.php:1406 msgid "Poller Logging Level for Cacti Reporting" msgstr "Nivel de registro de Sonda para el reporte de Cacti" #: /var/www/html/cacti/include/global_settings.php:1407 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" "Que nivel de detalles quieres enviar al archivo de log. ADVERTENCIA: usando " "cualquier otro estado que no sea NINGUNO o BAJO puede consumir el espacio de " "disco rápidamente." #: /var/www/html/cacti/include/global_settings.php:1413 msgid "Enable Lotus Notes (R) tweak" msgstr "Habilitar tweak para Lotus Notes (R)" #: /var/www/html/cacti/include/global_settings.php:1414 msgid "Enable code tweak for specific handling of Lotus Notes Mail Clients." msgstr "" "Habilita la modificación de código para el manejo específico de clientes de " "correo Lotus Notes." #: /var/www/html/cacti/include/global_settings.php:1419 msgid "DNS Options" msgstr "Opciones DNS" #: /var/www/html/cacti/include/global_settings.php:1424 msgid "Primary DNS IP Address" msgstr "Dirección IP de DNS primario" #: /var/www/html/cacti/include/global_settings.php:1425 msgid "Enter the primary DNS IP Address to utilize for reverse lookups." msgstr "" "Ingresa la dirección IP del DNS Primario a utilizar para las búsquedas " "reversas." #: /var/www/html/cacti/include/global_settings.php:1431 msgid "Secondary DNS IP Address" msgstr "Dirección IP de DNS secundario" #: /var/www/html/cacti/include/global_settings.php:1432 msgid "Enter the secondary DNS IP Address to utilize for reverse lookups." msgstr "" "Ingresa la dirección IP del DNS Secundario a utilizar para las busquedas " "reversas." #: /var/www/html/cacti/include/global_settings.php:1438 msgid "DNS Timeout" msgstr "Tiempo de espera de DNS" #: /var/www/html/cacti/include/global_settings.php:1439 msgid "" "Please enter the DNS timeout in milliseconds. Cacti uses a PHP based DNS " "resolver." msgstr "" "Ingrese el tiempo de espera DNS en milisegundos. Cacti usa una función " "basada en PHP para resolver DNS." #: /var/www/html/cacti/include/global_settings.php:1448 msgid "Data Sources Statistics" msgstr "Estadísticas de Data Sources" #: /var/www/html/cacti/include/global_settings.php:1453 msgid "Enable Data Source Statistics Collection" msgstr "Habilitar la recolección de estadísticas de Data Source" #: /var/www/html/cacti/include/global_settings.php:1454 msgid "Should Data Source Statistics be collected for this Cacti system?" msgstr "" "Deben recolectarse estadísticas de Data Source para este sistema Cacti?" #: /var/www/html/cacti/include/global_settings.php:1459 msgid "Daily Update Frequency" msgstr "Frecuencia de actualización diaria" #: /var/www/html/cacti/include/global_settings.php:1460 msgid "How frequent should Daily Stats be updated?" msgstr "Cuan frecuente se deberían actualizar las estadísticas diarias?" #: /var/www/html/cacti/include/global_settings.php:1466 msgid "Hourly Average Window" msgstr "Ventana promedio por hora" #: /var/www/html/cacti/include/global_settings.php:1467 msgid "" "The number of consecutive hours that represent the hourly average. Keep in " "mind that a setting too high can result in very large memory tables" msgstr "" "La cantidad de horas consecutivas que representan la media horaria Ten en " "cuenta que un valor muy alto puede resultar en tablas de memoria muy grandes" #: /var/www/html/cacti/include/global_settings.php:1473 msgid "Maintenance Time" msgstr "Hora de mantenimiento" #: /var/www/html/cacti/include/global_settings.php:1474 msgid "" "What time of day should Weekly, Monthly, and Yearly Data be updated? Format " "is HH:MM [am/pm]" msgstr "" "A qué hora del día se deberían actualizar los datos semanales, mensuales y " "anuales? Formato HH:MM [am/pm]" #: /var/www/html/cacti/include/global_settings.php:1481 msgid "Memory Limit for Data Source Statistics Data Collector" msgstr "" "Límite de memoria para el recolector de datos de estadísticas de los Data " "Sources" #: /var/www/html/cacti/include/global_settings.php:1482 msgid "" "The maximum amount of memory for the Cacti Poller and Data Source Statistics " "Poller" msgstr "" "Cantidad máxima de memoria para la Sonda de Cacti y la Sonda de estadísticas " "de Data Source" #: /var/www/html/cacti/include/global_settings.php:1488 msgid "Debugging" msgstr "Depurando" #: /var/www/html/cacti/include/global_settings.php:1493 msgid "Enable Single RRDtool Pipe" msgstr "Enable Single RRDtool Pipe" #: /var/www/html/cacti/include/global_settings.php:1494 msgid "" "Using a single pipe will speed the RRDtool process by 10x. However, RRDtool " "crashes problems can occur. Disable this setting if you need to find a bad " "RRDfile." msgstr "" "Usar un solo pipe acelerará el proceso de RRDtool 10 veces. Sin embargo, " "pueden ocurrir cuelgues de RRDtool. Deshabilita esta opción si necesitas " "encontrar un archivo RRD dañado." #: /var/www/html/cacti/include/global_settings.php:1499 msgid "Enable Partial Reference Data Retrieve" msgstr "Permite recuperar datos de referencia parcial" #: /var/www/html/cacti/include/global_settings.php:1500 msgid "" "If using a large system, it may be beneficial for you to only gather data as " "needed during Cacti poller passes. If you check this box, Data Source " "Statistics will gather data this way." msgstr "" "Si estás usando un sistema muy grande, puede ser beneficioso para ti " "solamente recolectar datos a medida que los necesitas durante la ejecución " "de Cacti. Si marcas esta casilla, las estadísticas de Data Source serán " "recolectadas de esta manera." #: /var/www/html/cacti/include/global_settings.php:1507 msgid "On-demand RRD Update Settings" msgstr "Opciones de actualización de RRD bajo demanda" #: /var/www/html/cacti/include/global_settings.php:1512 msgid "Enable On-demand RRD Updating" msgstr "Habilitar actualización RRD bajo demanda" #: /var/www/html/cacti/include/global_settings.php:1513 msgid "" "Should Boost enable on demand RRD updating in Cacti? If you disable, this " "change will not take effect until after the next polling cycle." msgstr "" "Debería Boost permitir la actualización de RRD en Cacti bajo demanda? Si lo " "deshabilita, este cambio no hará efecto hasta el próximo ciclo de sondeo." #: /var/www/html/cacti/include/global_settings.php:1518 msgid "System Level RRD Updater" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1519 msgid "" "Before RRD On-demand Update Can be Cleared, a poller run must always pass" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1524 msgid "How Often Should Boost Update All RRDs" msgstr "Cuan frecuente debería Boost actualizar todos los RRDs" #: /var/www/html/cacti/include/global_settings.php:1525 msgid "" "When you enable boost, your RRD files are only updated when they are " "requested by a user, or when this time period elapses." msgstr "" "Cuando habilitas Boost, tus archivos RRD son solamente actualizado cuando el " "usuario lo solicita, o cuando transcurre este periodo de tiempo." #: /var/www/html/cacti/include/global_settings.php:1532 msgid "Maximum Records" msgstr "Registros máximos" #: /var/www/html/cacti/include/global_settings.php:1533 msgid "" "If the boost output table exceeds this size, in records, an update will take " "place." msgstr "" "Si la tabla de salida de Boost excede este tamaño, en registros, se llevará " "a cabo una actualización." #: /var/www/html/cacti/include/global_settings.php:1540 msgid "Maximum Data Source Items Per Pass" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1541 msgid "" "To optimize performance, the boost RRD updater needs to know how many Data " "Source Items should be retrieved in one pass. Please be careful not to set " "too high as graphing performance during major updates can be compromised. " "If you encounter graphing or polling slowness during updates, lower this " "number. The default value is 50000." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1547 msgid "Maximum Argument Length" msgstr "Longitud máxima del argumento" #: /var/www/html/cacti/include/global_settings.php:1548 msgid "" "When boost sends update commands to RRDtool, it must not exceed the " "operating systems Maximum Argument Length. This varies by operating system " "and kernel level. For example: Windows 2000 <= 2048, FreeBSD <= 65535, " "Linux 2.6.22-- <= 131072, Linux 2.6.23++ unlimited" msgstr "" "Cuando Boost envía comandos de actualización a RRDtool, no debe exceder la " "longitud máxima del argumento de los Sistemas Operativos. Esto varía por " "Sistema Operativo y nivel de Kernel. Por ejemplo: Windows 2000 <= 2048, " "FreeBSD <= 65535, Linux 2.6.22-- <= 131072, Linux 2.6.23++ ilimitado" #: /var/www/html/cacti/include/global_settings.php:1555 msgid "Memory Limit for Boost and Poller" msgstr "Límite de memoria para Boost y la Sonda" #: /var/www/html/cacti/include/global_settings.php:1556 msgid "The maximum amount of memory for the Cacti Poller and Boosts Poller" msgstr "Cantidad máxima de memoria para la Sonda de Cacti y la Sonda de Boost" #: /var/www/html/cacti/include/global_settings.php:1562 msgid "Maximum RRD Update Script Run Time" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1563 msgid "" "The maximum boot poller run time allowed prior to boost issuing warning " "messages relative to possible hardware/software issues preventing proper " "updates." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1569 msgid "Enable direct population of poller_output_boost table" msgstr "Permite la populación directa de la tabla poller_output_boost" #: /var/www/html/cacti/include/global_settings.php:1570 msgid "" "Enables direct insert of records into poller output boost with results in a " "25% time reduction in each poll cycle." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1575 #: /var/www/html/cacti/utilities.php:2199 msgid "Image Caching" msgstr "Almacenamiento en caché de imagen" #: /var/www/html/cacti/include/global_settings.php:1580 msgid "Enable Image Caching" msgstr "Habilitar almacenamiento en caché de imagen" #: /var/www/html/cacti/include/global_settings.php:1581 msgid "Should image caching be enabled?" msgstr "Debería el almacenamiento en caché de imagen ser habilitado?" #: /var/www/html/cacti/include/global_settings.php:1586 msgid "Location for Image Files" msgstr "Ubicación para los archivos de imágenes" #: /var/www/html/cacti/include/global_settings.php:1587 msgid "" "Specify the location where Boost should place your image files. These files " "will be automatically purged by the poller when they expire." msgstr "" "Especifique la ubicación donde Boost debería colocar los archivos de " "imágenes. Estos archivos serán automáticamente purgados por la Sonda cuando " "expiren." #: /var/www/html/cacti/include/global_settings.php:1593 msgid "Process Interlocking" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1598 msgid "Boost Debug Log" msgstr "Log de depuración de Boost" #: /var/www/html/cacti/include/global_settings.php:1599 msgid "" "If this field is non-blank, Boost will log RRDupdate output from the boost" "\tpoller process." msgstr "" "Si este campo no está en blanco, Boost registrará la salida de RRDupdate " "desde el proceso de sondeo de Boost." #: /var/www/html/cacti/include/global_settings.php:1613 msgid "" "Choose if RRDs will be stored locally or being handled by an external " "RRDtool proxy server." msgstr "" "Elija si los archivos RRD serán almacenados localmente o si serán manejados " "por un servidor proxy RRDtool externo." #: /var/www/html/cacti/include/global_settings.php:1616 #: /var/www/html/cacti/include/global_settings.php:1624 msgid "RRDtool Proxy Server" msgstr "Servidor Proxy de RRDtool" #: /var/www/html/cacti/include/global_settings.php:1619 msgid "Structured RRD Path (/host_id/local_data_id.rrd)" msgstr "Ruta estructurada de RRD (/host_id/local_data_id.rrd)" #: /var/www/html/cacti/include/global_settings.php:1620 msgid "Use a separate subfolder for each hosts RRD files." msgstr "Usar sub directorios separados por equipo para cada archivo RRD." #: /var/www/html/cacti/include/global_settings.php:1629 #: /var/www/html/cacti/include/global_settings.php:1661 msgid "Proxy Server" msgstr "Servidor Proxy" #: /var/www/html/cacti/include/global_settings.php:1630 msgid "The DNS hostname or IP address of the RRDtool proxy server." msgstr "El nombre de equipo DNS o dirección IP del servidor proxy RRDtool." #: /var/www/html/cacti/include/global_settings.php:1635 #: /var/www/html/cacti/include/global_settings.php:1667 msgid "Proxy Port Number" msgstr "Número de Puerto del Proxy" #: /var/www/html/cacti/include/global_settings.php:1636 msgid "TCP port for encrypted communication." msgstr "Puerto TCP para comunicación encriptada." #: /var/www/html/cacti/include/global_settings.php:1643 #: /var/www/html/cacti/include/global_settings.php:1675 #: /var/www/html/cacti/utilities.php:261 msgid "RSA Fingerprint" msgstr "RSA Fingerprint" #: /var/www/html/cacti/include/global_settings.php:1644 msgid "" "The fingerprint of the current public RSA key the proxy is using. This is " "required to establish a trusted connection." msgstr "" "La huella digital de la clave RSA pública actual que esta siendo usada por " "el proxy. Esto es requerido para establecer la conexión de confianza." #: /var/www/html/cacti/include/global_settings.php:1651 msgid "RRDtool Proxy Server - Backup" msgstr "Servidor Proxy de RRDtool - Backup" #: /var/www/html/cacti/include/global_settings.php:1656 msgid "Load Balancing" msgstr "Balanceo de Carga" #: /var/www/html/cacti/include/global_settings.php:1657 msgid "" "If both main and backup proxy are receivable this option allows to spread " "all requests against RRDtool." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1662 msgid "" "The DNS hostname or IP address of the RRDtool backup proxy server if proxy " "is running in MSR mode." msgstr "" "El nombre de equipo DNS o IP del servidor proxy RRDtool de respaldo si el " "proxy se está ejecutando en modo MSR." #: /var/www/html/cacti/include/global_settings.php:1668 msgid "TCP port for encrypted communication with the backup proxy." msgstr "Puerto TCP para la comunicación cifrada con el proxy de respaldo." #: /var/www/html/cacti/include/global_settings.php:1676 msgid "" "The fingerprint of the current public RSA key the backup proxy is using. " "This required to establish a trusted connection." msgstr "" "La huella digital de la clave RSA pública actual que esta siendo usada por " "el proxy de respaldo. Esto es requerido para establecer la conexión de " "confianza." #: /var/www/html/cacti/include/global_settings.php:1685 msgid "Spike Kill Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1690 msgid "Removal Method" msgstr "Método de eliminación" #: /var/www/html/cacti/include/global_settings.php:1691 msgid "" "There are two removal methods. The first, Standard Deviation, will remove " "any sample that is X number of standard deviations away from the average of " "samples. The second method, Variance, will remove any sample that is X% " "more than the Variance average. The Variance method takes into account a " "certain number of 'outliers'. Those are exceptional samples, like the " "spike, that need to be excluded from the Variance Average calculation." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1694 msgid "Standard Deviation" msgstr "Desviación estándar" #: /var/www/html/cacti/include/global_settings.php:1694 msgid "Variance Based w/Outliers Removed" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1697 #: /var/www/html/cacti/lib/html.php:1759 msgid "Replacement Method" msgstr "Método de reemplazo" #: /var/www/html/cacti/include/global_settings.php:1698 msgid "" "There are three replacement methods. The first method replaces the spike " "with the the average of the data source in question. The second method " "replaces the spike with a 'NaN'. The last replaces the spike with the last " "known good value found." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1701 #: /var/www/html/cacti/lib/html.php:1760 msgid "Average" msgstr "Promedio" #: /var/www/html/cacti/include/global_settings.php:1701 #: /var/www/html/cacti/lib/html.php:1762 msgid "Last Known Good" msgstr "Ultimo bueno conocido" #: /var/www/html/cacti/include/global_settings.php:1701 msgid "NaN's" msgstr "NaN's" #: /var/www/html/cacti/include/global_settings.php:1704 msgid "Number of Standard Deviations" msgstr "Número de desviaciones estándar" #: /var/www/html/cacti/include/global_settings.php:1705 msgid "" "Any value that is this many standard deviations above the average will be " "excluded. A good number will be dependent on the type of data to be " "operated on. We recommend a number no lower than 5 Standard Deviations." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1709 #: /var/www/html/cacti/include/global_settings.php:1710 #: /var/www/html/cacti/include/global_settings.php:1711 #: /var/www/html/cacti/include/global_settings.php:1712 #: /var/www/html/cacti/include/global_settings.php:1713 #: /var/www/html/cacti/include/global_settings.php:1714 #: /var/www/html/cacti/include/global_settings.php:1715 #: /var/www/html/cacti/include/global_settings.php:1716 #: /var/www/html/cacti/include/global_settings.php:1717 #: /var/www/html/cacti/include/global_settings.php:1718 #, php-format msgid "%d Standard Deviations" msgstr "%d Desviaciones estándar" #: /var/www/html/cacti/include/global_settings.php:1722 #: /var/www/html/cacti/lib/html.php:1771 msgid "Variance Percentage" msgstr "Porcentaje de diferencia" #: /var/www/html/cacti/include/global_settings.php:1723 #, php-format msgid "" "This value represents the percentage above the adjusted sample average once " "outliers have been removed from the sample. For example, a Variance " "Percentage of 100% on an adjusted average of 50 would remove any sample " "above the quantity of 100 from the graph." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1742 msgid "Variance Number of Outliers" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1743 msgid "" "This value represents the number of high and low average samples will be " "removed from the sample set prior to calculating the Variance Average. If " "you choose an outlier value of 5, then both the top and bottom 5 averages " "are removed." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1747 #: /var/www/html/cacti/include/global_settings.php:1748 #: /var/www/html/cacti/include/global_settings.php:1749 #: /var/www/html/cacti/include/global_settings.php:1750 #: /var/www/html/cacti/include/global_settings.php:1751 #: /var/www/html/cacti/include/global_settings.php:1752 #: /var/www/html/cacti/include/global_settings.php:1753 #: /var/www/html/cacti/include/global_settings.php:1754 #, php-format msgid "%d High/Low Samples" msgstr "%d Muestras Altas/Bajas" #: /var/www/html/cacti/include/global_settings.php:1758 msgid "Max Kills Per RRA" msgstr "Max Kills por RRA" #: /var/www/html/cacti/include/global_settings.php:1759 msgid "" "This value represents the maximum number of spikes to remove from a Graph " "RRA." msgstr "" "Este valor representa el número máximo de picos a remover de los gráficos " "RRA." #: /var/www/html/cacti/include/global_settings.php:1763 #: /var/www/html/cacti/include/global_settings.php:1764 #: /var/www/html/cacti/include/global_settings.php:1765 #: /var/www/html/cacti/include/global_settings.php:1766 #: /var/www/html/cacti/include/global_settings.php:1767 #: /var/www/html/cacti/include/global_settings.php:1768 #: /var/www/html/cacti/include/global_settings.php:1769 #: /var/www/html/cacti/include/global_settings.php:1770 #, php-format msgid "%d Samples" msgstr "%d muestras" #: /var/www/html/cacti/include/global_settings.php:1774 msgid "RRDfile Backup Directory" msgstr "Directorio de backup de archivos RRD" #: /var/www/html/cacti/include/global_settings.php:1775 msgid "" "If this directory is not empty, then your original RRDfiles will be backed " "up to this location." msgstr "" "Si este directorio no está vacío, tus archivos RRD originales serán " "resguardados a esta ubicación." #: /var/www/html/cacti/include/global_settings.php:1782 msgid "Batch Spike Kill Settings" msgstr "Opciones de eliminación de picos por lotes" #: /var/www/html/cacti/include/global_settings.php:1787 msgid "Removal Schedule" msgstr "Programa de eliminación" #: /var/www/html/cacti/include/global_settings.php:1788 msgid "" "Do you wish to periodically remove spikes from your graphs? If so, select " "the frequency below." msgstr "" "Deseas eliminar picos de tus gráficos periódicamente? Si es así, selecciona " "la frecuencia debajo." #: /var/www/html/cacti/include/global_settings.php:1795 msgid "Once a Day" msgstr "Una vez al día" #: /var/www/html/cacti/include/global_settings.php:1796 msgid "Every Other Day" msgstr "Día por medio" #: /var/www/html/cacti/include/global_settings.php:1800 msgid "Base Time" msgstr "Tiempo base" #: /var/www/html/cacti/include/global_settings.php:1801 msgid "" "The Base Time for Spike removal to occur. For example, if you use '12:00am' " "and you choose once per day, the batch removal would begin at approximately " "midnight every day." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1808 msgid "Graph Templates to Spike Kill" msgstr "Plantillas de gráfico a eliminar picos" #: /var/www/html/cacti/include/global_settings.php:1810 msgid "" "When performing batch spike removal, only the templates selected below will " "be acted on." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1826 msgid "Default View Mode" msgstr "Modo de vista predeterminado" #: /var/www/html/cacti/include/global_settings.php:1827 msgid "" "Which Graph mode you want displayed by default when you first visit the " "Graphs page?" msgstr "" "Qué modo de gráfico quieres que sea mostrado por defecto cuando visitas la " "página de gráficos por primera vez?" #: /var/www/html/cacti/include/global_settings.php:1833 msgid "User Language" msgstr "Idioma del usuario" #: /var/www/html/cacti/include/global_settings.php:1834 msgid "Defines the preferred GUI language." msgstr "Define el idioma preferido de la GUI." #: /var/www/html/cacti/include/global_settings.php:1840 msgid "Show Graph Title" msgstr "Mostrar título del gráfico" #: /var/www/html/cacti/include/global_settings.php:1841 msgid "" "Display the graph title on the page so that it may be searched using the " "browser." msgstr "" "Mostrar el título del gráfico en la página para que pueda ser buscado usando " "el navegador." #: /var/www/html/cacti/include/global_settings.php:1846 msgid "Hide Disabled" msgstr "Ocultar Deshabilitado" #: /var/www/html/cacti/include/global_settings.php:1847 msgid "Hide Disabled Devices and Graphs from Disabled Devices." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1853 msgid "The date format to use in Cacti." msgstr "Formato de fecha a usar en Cacti." #: /var/www/html/cacti/include/global_settings.php:1860 msgid "The date separator to be used in Cacti." msgstr "El separador de fecha a usar en Cacti." #: /var/www/html/cacti/include/global_settings.php:1866 msgid "Page Refresh" msgstr "Actualizar página" #: /var/www/html/cacti/include/global_settings.php:1867 msgid "The number of seconds between automatic page refreshes." msgstr "Cuántos segundos entre actualizaciones de página automáticas." #: /var/www/html/cacti/include/global_settings.php:1873 msgid "Preview Graphs Per Page" msgstr "Vista previa de gráficos por página" #: /var/www/html/cacti/include/global_settings.php:1874 #: /var/www/html/cacti/include/global_settings.php:1989 msgid "The number of graphs to display on one page in preview mode." msgstr "Cantidad de gráficos a mostrar en una página en modo vista previa." #: /var/www/html/cacti/include/global_settings.php:1882 msgid "Default Time Range" msgstr "Intervalo de tiempo predeterminado" #: /var/www/html/cacti/include/global_settings.php:1883 msgid "The default RRA to use in rare occasions." msgstr "El RRA predeterminado a usar en ocaciones raras." #: /var/www/html/cacti/include/global_settings.php:1889 msgid "Default Graph View Timespan" msgstr "Intervalo de tiempo de la vista de gráfico por defecto" #: /var/www/html/cacti/include/global_settings.php:1890 msgid "The default timespan you wish to be displayed when you display graphs" msgstr "" "El intervalo de tiempo predeterminado que deseas que aparezca cuando se " "muestran los gráficos" #: /var/www/html/cacti/include/global_settings.php:1896 msgid "Default Graph View Timeshift" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1897 msgid "The default timeshift you wish to be displayed when you display graphs" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1903 msgid "Allow Graph to extend to Future" msgstr "Permitir al gráfico ampliar a futuro" #: /var/www/html/cacti/include/global_settings.php:1904 msgid "When displaying Graphs, allow Graph Dates to extend 'to future'" msgstr "" "Cuando se muestran gráficos, permite al gráfico ampliar la fecha 'a futuro'" #: /var/www/html/cacti/include/global_settings.php:1909 msgid "First Day of the Week" msgstr "Primer día de la semana" #: /var/www/html/cacti/include/global_settings.php:1910 msgid "The first Day of the Week for weekly Graph Displays" msgstr "El primer día de la semana para mostrar gráficos semanales" #: /var/www/html/cacti/include/global_settings.php:1916 msgid "Start of Daily Shift" msgstr "Inicio de jornada diaria" #: /var/www/html/cacti/include/global_settings.php:1917 msgid "Start Time of the Daily Shift." msgstr "Hora de inicio de la jornada diaria." #: /var/www/html/cacti/include/global_settings.php:1924 msgid "End of Daily Shift" msgstr "Final d la jornada diaria" #: /var/www/html/cacti/include/global_settings.php:1925 msgid "End Time of the Daily Shift." msgstr "Hora de finalización de la jornada diurna." #: /var/www/html/cacti/include/global_settings.php:1934 msgid "Thumbnail Sections" msgstr "Secciones de miniaturas" #: /var/www/html/cacti/include/global_settings.php:1935 msgid "Which portions of Cacti display Thumbnails by default." msgstr "Que partes de Cacti muestran miniaturas por defecto." #: /var/www/html/cacti/include/global_settings.php:1949 msgid "Preview Thumbnail Columns" msgstr "Vista previa de columnas miniatura" #: /var/www/html/cacti/include/global_settings.php:1950 msgid "" "The number of columns to use when displaying Thumbnail graphs in Preview " "mode." msgstr "" "La cantidad de columnas cuando se muestran gráficos miniatura en modo vista " "previa." #: /var/www/html/cacti/include/global_settings.php:1953 #: /var/www/html/cacti/include/global_settings.php:1960 #: /var/www/html/cacti/lib/html_graph.php:229 #: /var/www/html/cacti/lib/html_graph.php:230 #: /var/www/html/cacti/lib/html_graph.php:231 #: /var/www/html/cacti/lib/html_graph.php:232 #: /var/www/html/cacti/lib/html_graph.php:233 #: /var/www/html/cacti/lib/html_tree.php:726 #: /var/www/html/cacti/lib/html_tree.php:727 #: /var/www/html/cacti/lib/html_tree.php:728 #: /var/www/html/cacti/lib/html_tree.php:729 #: /var/www/html/cacti/lib/html_tree.php:730 #, php-format msgid "%d Columns" msgstr "%d Columnas" #: /var/www/html/cacti/include/global_settings.php:1953 #: /var/www/html/cacti/include/global_settings.php:1960 msgid "1 Column" msgstr "1 Columna" #: /var/www/html/cacti/include/global_settings.php:1956 msgid "Tree View Thumbnail Columns" msgstr "Columnas de vista de árbol miniatura" #: /var/www/html/cacti/include/global_settings.php:1957 msgid "" "The number of columns to use when displaying Thumbnail graphs in Tree mode." msgstr "" "La cantidad de columnas a usar cuando se muestran Miniaturas de gráficos en " "modo árbol." #: /var/www/html/cacti/include/global_settings.php:1963 msgid "Thumbnail Height" msgstr "Altura de miniatura" #: /var/www/html/cacti/include/global_settings.php:1964 msgid "The height of Thumbnail graphs in pixels." msgstr "La altura de los gráficos miniatura en píxeles." #: /var/www/html/cacti/include/global_settings.php:1971 msgid "Thumbnail Width" msgstr "Ancho de miniatura" #: /var/www/html/cacti/include/global_settings.php:1972 msgid "The width of Thumbnail graphs in pixels." msgstr "El ancho de los gráficos miniatura en píxeles." #: /var/www/html/cacti/include/global_settings.php:1981 msgid "Default Tree" msgstr "Arbol predeterminado" #: /var/www/html/cacti/include/global_settings.php:1982 msgid "The default graph tree to use when displaying graphs in tree mode." msgstr "" "El árbol de gráficos predeterminado a usar para mostrar gráficos en modo " "árbol." #: /var/www/html/cacti/include/global_settings.php:1988 msgid "Graphs Per Page" msgstr "Gráficos por página" #: /var/www/html/cacti/include/global_settings.php:1995 msgid "Expand Devices" msgstr "Expandir dispositivos" #: /var/www/html/cacti/include/global_settings.php:1996 msgid "" "Choose whether to expand the Graph Templates and Data Queries used by a " "Device on Tree." msgstr "" "Elija si expandir las Plantillas de gráficos y Consultas de datos usadas por " "un dispositivo en árbol." #: /var/www/html/cacti/include/global_settings.php:2003 msgid "Use Custom Fonts" msgstr "Usar fuentes personalizadas" #: /var/www/html/cacti/include/global_settings.php:2004 msgid "" "Choose whether to use your own custom fonts and font sizes or utilize the " "system defaults." msgstr "" "Elija si desea usar sus propias fuentes personalizadas y tamaños de fuente o " "utilizar los valores por defecto del sistema." #: /var/www/html/cacti/include/global_settings.php:2017 msgid "Title Font File" msgstr "Archivo de la fuente del título" #: /var/www/html/cacti/include/global_settings.php:2018 msgid "The font file to use for Graph Titles" msgstr "El archivo de la fuente a usar para títulos de gáficos" #: /var/www/html/cacti/include/global_settings.php:2030 msgid "Legend Font File" msgstr "Archivo de fuente de la Leyenda" #: /var/www/html/cacti/include/global_settings.php:2031 msgid "The font file to be used for Graph Legend items" msgstr "" "El archivo de fuente a ser usado para los items de la Leyenda del gráfico" #: /var/www/html/cacti/include/global_settings.php:2043 msgid "Axis Font File" msgstr "Archivo de fuente del eje" #: /var/www/html/cacti/include/global_settings.php:2044 msgid "The font file to be used for Graph Axis items" msgstr "El archivo de fuente a ser usado para los items de Eje del gráfico" #: /var/www/html/cacti/include/global_settings.php:2056 msgid "Unit Font File" msgstr "Archivo de fuente de unidad" #: /var/www/html/cacti/include/global_settings.php:2057 msgid "The font file to be used for Graph Unit items" msgstr "El archivo de fuente a ser usado por los items de unidad del gráfico" #: /var/www/html/cacti/index.php:64 #, php-format msgid "" "You are now logged into
    Cacti. You can follow " "these basic steps to get started." msgstr "" "Ahora estás conectado a Cacti. Puedes seguir con " "estos pasos básicos para empezar." #: /var/www/html/cacti/index.php:67 #, php-format msgid "Create devices for network" msgstr "Crear dispositivos de red" #: /var/www/html/cacti/index.php:68 #, php-format msgid "Create graphs for your new devices" msgstr "Crear gráficos para tus nuevos dispositivos" #: /var/www/html/cacti/index.php:69 #, php-format msgid "View your new graphs" msgstr "Ver tus nuevos gráficos" #: /var/www/html/cacti/index.php:78 msgid "Offline" msgstr "Fuera de línea" #: /var/www/html/cacti/index.php:78 msgid "Online" msgstr "En línea" #: /var/www/html/cacti/index.php:78 msgid "Recovery" msgstr "Recuperación" #: /var/www/html/cacti/index.php:78 msgid "Remote Data Collector Status:" msgstr "Estado de la Sonda remota:" #: /var/www/html/cacti/index.php:80 msgid "Number of Offline Records:" msgstr "Numero de registros fuera de línea:" #: /var/www/html/cacti/index.php:85 msgid "" "NOTE: You are logged into a Remote Data Collector. When " "'online', you will be able to view and control much of the Main Cacti " "Web Site just as if you were logged into it. Also, it's important to note " "that Remote Data Collectors are required to use the Cacti's Performance " "Boosting Services 'On Demand Updating' feature, and we always " "recommend using Spine. When the Remote Data Collector is 'offline', " "the Remote Data Collectos Web Site will contain much less information. " "However, it will cache all updates until the Main Cacti Database and Web " "Server are reachable. Then it will dump it's Boost table output back to the " "Main Cacti Database for updating." msgstr "" "NOTA:Estas conectado a la Sonda remota. Cuando esté 'en " "línea', podrás ver y controlar el sitio web principal de Cacti tanto " "como si estuvieses conectado a este. También, es importante notar que la " "Sonda remota es requerida para hacer uso de Cacti's Performance Boosting " "Services 'On Demand Updating' funcionalidad, y siempre recomendamos " "usar Spine. Cuando la Sonda remota está 'fuera de línea', el sitio " "web de la Sonda remota va a contener mucha menos información. Sin embargo, " "se registrarán todas las actualizaciones hasta que la base de datos " "principal de Cacti y el servidor Web este disponibles. Después, volcará su " "tabla de Boost de nuevo la base de datos principal de Cacti para " "actualización." #: /var/www/html/cacti/index.php:90 msgid "" "NOTE: None of the Core Cacti Plugins, to date, have been re-" "designed to work with Remote Data Collectors. Therefore, Plugins such as " "MacTrack, and HMIB, which require direct access to devices will not work " "with Remote Data Collectors at this time. However, plugins such as Thold " "will work so long as the Remote Data Collector is in 'online' mode." msgstr "" #: /var/www/html/cacti/install/index.php:51 #: /var/www/html/cacti/install/index.php:56 #: /var/www/html/cacti/install/index.php:61 #: /var/www/html/cacti/install/index.php:301 #: /var/www/html/cacti/lib/html_utility.php:846 msgid "Error" msgstr "Error" #: /var/www/html/cacti/install/index.php:53 #, php-format msgid "" "This installation is already up-to-date. Click here to " "use Cacti." msgstr "" "Esta instalación ya esta al dia. Haga click aqui para " "usar Cacti." #: /var/www/html/cacti/install/index.php:58 #, php-format msgid "" "You are attempting to install Cacti %s onto a 0.6.x database. To continue, " "you must create a new database, import \"cacti.sql\" into it, and update " "\"include/config.php\" to point to the new database." msgstr "" "Estas intentando instalar Cacti %s en una base de datos 0.6x. Para " "continuar, debes crear una nueva base de datos, importar \"cacti.sql\", y " "modificar \"include/config.php\" para que apunte a la nueva base de datos." #: /var/www/html/cacti/install/index.php:63 #, php-format msgid "" "You have created a new database, but have not yet imported the 'cacti.sql' " "file. At the command line, execute the following to continue:

    mysql -u %s -p %s < cacti.sql

    This error may also be " "generated if the cacti database user does not have correct permissions on " "the Cacti database. Please ensure that the Cacti database user has the " "ability to SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, DROP, INDEX on the " "Cacti database." msgstr "" "Has creado una nueva base de datos, pero no aun no has importado el archivo " "\"cacti.sql\". En la linea de comando, ejecuta lo siguiente para continuar:

    mysql -u %s -p %s < cacti.sql

    Este error podria " "tambien ser generado si el usuario de la base de datos de Cacti no tiene los " "permisos correctos en la base de datos Cacti. Por favor, asegurate que el " "usuario de la base de datos de Cacti tiene permisos de SELECT, INSERT, " "DELETE, UPDATE, CREATE, ALTER, DROP, INDEX en la base de datos Cacti." #: /var/www/html/cacti/install/index.php:65 #, php-format msgid "" "In Cacti %s, you must also import MySQL TimeZone information into MySQL and " "grant the Cacti user SELECT access to the mysql.time_zone_name table" msgstr "" "En Cacti %s, debes tambien importar la información de TimeZone de MySQL a " "MySQL y otorgar al usuario de Cacti permisos de SELECT para la table mysql." "time_zone_name" #: /var/www/html/cacti/install/index.php:68 msgid "On Linux/UNIX, do the following:" msgstr "En Linux/UNIX, hacer lo siguiente:" #: /var/www/html/cacti/install/index.php:68 msgid "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" msgstr "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" #: /var/www/html/cacti/install/index.php:70 msgid "" "On Windows, you must follow the instructions here Time zone description " "table. Once that is complete, you can issue the following command to " "grant the Cacti user access to the tables:" msgstr "" "En Windows, debes seguir las instrucciones aqui descripción de la " "tabla Time zone. Una vez eso este completo, puedes ejecutar el " "siguiente comando para otorgar al usuario de Cacti acceso a las tablas:" #: /var/www/html/cacti/install/index.php:72 #, php-format msgid "" "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" msgstr "" "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" #: /var/www/html/cacti/install/index.php:303 #, php-format msgid "" "Invalid Cacti version %1$s, cannot upgrade to %2$s" msgstr "" "Versión de Cacti inválida %1$s, No se puede actualizar a " "%2$s" #: /var/www/html/cacti/install/index.php:423 msgid "Cacti Installation Wizard" msgstr "Asistente de instalación de Cacti" #: /var/www/html/cacti/install/index.php:431 msgid "License Agreement" msgstr "Acuerdo de licencia" #: /var/www/html/cacti/install/index.php:433 msgid "" "Thanks for taking the time to download and install Cacti, the complete " "graphing solution for your network. Before you can start making cool graphs, " "there are a few pieces of data that Cacti needs to know." msgstr "" "Gracias por tomarte el tiempo en descargar e instalar Cacti, la más completa " "solución de gráficos para tu red. Antes de que puedas empezar a crear buenos " "gráficos, hay algunos datos de Cacti que necesitas saber." #: /var/www/html/cacti/install/index.php:434 #, php-format msgid "" "Make sure you have read and followed the required steps needed to install " "Cacti before continuing. Install information can be found for Unix and Win32-based operating systems." msgstr "" "Asegúrate de que has leido y seguido los pasos requeridos necesarios para " "instalar Cacti antes de continuar. Puedes encontrar información sobre la " "instalación para Sistemas Operativos basados en Unix y " "Win32." #: /var/www/html/cacti/install/index.php:435 #, php-format msgid "" "Also, if this is an upgrade, be sure to reading the Upgrade information file." msgstr "" "Si esto es una actualización, asegúrate de leer el archivo de información de " "Actualización." #: /var/www/html/cacti/install/index.php:436 msgid "" "Cacti is licensed under the GNU General Public License, you must agree to " "its provisions before continuing:" msgstr "" "Cacti está licenciado bajo la Licencia Pública General GNU, debes aceptar " "sus condiciones antes de continuar:" #: /var/www/html/cacti/install/index.php:440 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" "Este programa es distribuido con la esperanza de que sea útil, pero SIN " "NINGUNA GARANTIA; sin siquiera la garantía implícita de COMERCIALIZACION o " "APTITUD PARA UN PROPOSITO PARTICULAR. Ver la Licencia Pública General GNU " "para más detalles." #: /var/www/html/cacti/install/index.php:442 msgid "Accept GPL License Agreement" msgstr "Aceptar acuerdo de licencia GPL" #: /var/www/html/cacti/install/index.php:448 msgid "Pre-installation Checks" msgstr "Controles de pre instalación" #: /var/www/html/cacti/install/index.php:449 msgid "MySQL TimeZone Support" msgstr "Soporte de zona horaria MySQL" #: /var/www/html/cacti/install/index.php:454 #: /var/www/html/cacti/install/index.php:458 #: /var/www/html/cacti/install/index.php:622 #: /var/www/html/cacti/install/index.php:627 msgid "ERROR:" msgstr "ERROR:" #: /var/www/html/cacti/install/index.php:454 msgid "" "Your MySQL TimeZone database is not populated. Please populate this " "database before proceeding." msgstr "" "Tu base de datos TimeZone de MySQL no esta instalada. Por favor, instala " "esta base de datos antes de continuar." #: /var/www/html/cacti/install/index.php:458 msgid "" "Your Cacti database login account does not have access to the MySQL TimeZone " "database. Please provide the Cacti database account \"select\" access to " "the \"time_zone_name\" table in the \"mysql\" database, and populate MySQL's " "TimeZone information before proceeding." msgstr "" "Tu cuenta de inicio de sesión de base de datos Cacti no tiene acceso a la " "base de datos MySQL TimeZone. Proporciona a la cuenta de base de datos " "Cacti permisos de \"select\" en la tabla \"time_zone_name\" en la base de " "datos \"mysql\", y rellena la información de Zona horaria de MySQL antes de " "proceder." #: /var/www/html/cacti/install/index.php:463 msgid "" "Your Cacti database account has access to the MySQL TimeZone database and " "that database is populated with global TimeZone information." msgstr "" "Tu usuario de base de datos Cacti tiene acceso a la base de datos TimeZone " "de MySQL y la base de datos está poblada con información global de TimeZone." #: /var/www/html/cacti/install/index.php:466 msgid "Required PHP Module Support" msgstr "Soporte de módulo PHP requerido" #: /var/www/html/cacti/install/index.php:468 msgid "" "Cacti requires several PHP Modules to be installed to work properly. If any " "of these are not installed, you will be unable to continue the installation " "until corrected. In addition, for optimal system performance Cacti should be " "run with certain MySQL system variables set. Please follow the MySQL " "recommendations at your discretion. Always seek the MySQL documentation if " "you have any questions." msgstr "" "Cacti requiere varios módulos PHP instalados para funcionar correctamente. " "Si cualquiera de estos no está instalado, no podrás continuar con la " "instalación hasta que lo corrijas. Además, para mejor rendimiento del " "sistema, Cacti debería ejecutarse con ciertas variabes de MySQL " "configuradas. Sigue las recomendaciones sobre MySQL a criterio. Busca " "siempre en la documentación de MySQL si tienes dudas." #: /var/www/html/cacti/install/index.php:470 msgid "" "The following PHP extensions are mandatory, and MUST be installed before " "continuing your Cacti install." msgstr "" "Las siguientes extensiones de PHP son obligatorias, y DEBEN estar instaladas " "antes de continuar con la instalación de Cacti." #: /var/www/html/cacti/install/index.php:472 msgid "Required PHP Modules" msgstr "Módulos PHP requeridos" #: /var/www/html/cacti/install/index.php:473 #: /var/www/html/cacti/install/index.php:550 /var/www/html/cacti/plugins.php:41 #: /var/www/html/cacti/plugins.php:300 /var/www/html/cacti/utilities.php:428 msgid "Installed" msgstr "Instalado" #: /var/www/html/cacti/install/index.php:473 msgid "Required" msgstr "Requerido" #: /var/www/html/cacti/install/index.php:475 #: /var/www/html/cacti/utilities.php:400 msgid "PHP Version" msgstr "Versión de PHP" #: /var/www/html/cacti/install/index.php:540 msgid "Optional PHP Module Support" msgstr "Soporte de módulo PHP opcional" #: /var/www/html/cacti/install/index.php:542 msgid "" "The following PHP extensions are recommended, and should be installed before " "continuing your Cacti install." msgstr "" "Las siguientes extensiones de PHP son recomendadas, y deberían ser " "instaladas antes de continuar con la instalación de Cacti." #: /var/www/html/cacti/install/index.php:549 msgid "Optional Modules" msgstr "Módulos opcionales" #: /var/www/html/cacti/install/index.php:550 msgid "Optional" msgstr "Opcional" #: /var/www/html/cacti/install/index.php:560 msgid "" "These MySQL performance tuning settings will help your Cacti system perform " "better without issues for a longer time." msgstr "" "Estas opciones de mejora de rendimiento MySQL ayudarán a tu sistema Cacti a " "rendir mejor sin problemas por más tiempo." #: /var/www/html/cacti/install/index.php:562 msgid "Recommended MySQL System Variable Settings" msgstr "Opciones de variables de sistema de MySQL recomendadas" #: /var/www/html/cacti/install/index.php:567 msgid "Installation Type" msgstr "Tipo de instalación" #: /var/www/html/cacti/install/index.php:572 #, php-format msgid "Upgrade from %s to %s" msgstr "Actualizar de %s a %s" #: /var/www/html/cacti/install/index.php:573 msgid "" "WARNING - If you are upgrading from a previous version please close all " "Cacti browser sessions and clear cache before continuing" msgstr "" "ADVERTENCIA - si estás actualizando desde una versión previa, por favor " "cierra todos las sesiones de Cacti de tu navegador y vacía el cache antes de " "continuar" #: /var/www/html/cacti/install/index.php:576 msgid "Please select the type of installation" msgstr "Por favor seleccione el tipo de instalación" #: /var/www/html/cacti/install/index.php:578 msgid "Installation options:" msgstr "Opciones de instalación:" #: /var/www/html/cacti/install/index.php:581 msgid "Choose this for the Primary site." msgstr "Elige este para el sitio principal de Cacti." #: /var/www/html/cacti/install/index.php:581 #: /var/www/html/cacti/install/index.php:587 msgid "New Primary Server" msgstr "Nuevo servidor primario" #: /var/www/html/cacti/install/index.php:582 #: /var/www/html/cacti/install/index.php:588 msgid "New Remote Poller" msgstr "Nueva Sonda remota" #: /var/www/html/cacti/install/index.php:582 msgid "" "Remote Pollers are used to access networks that are not readily accessible " "to the Primary site." msgstr "" "Las sondas remotas son usadas para acceder redes que no son de fácil acceso " "desde el sitio web primario de Cacti." #: /var/www/html/cacti/install/index.php:592 msgid "" "The following information has been determined from Cacti's configuration " "file. If it is not correct, please edit \"include/config.php\" before " "continuing." msgstr "" "La siguiente información ha sido determinada desde el archivo de " "configuración de Cacti. Si no es correcta, edita \"include/config.php\" " "antes de continuar." #: /var/www/html/cacti/install/index.php:596 msgid "Local Cacti database connection information" msgstr "Información de conexión a la base de datos local de Cacti" #: /var/www/html/cacti/install/index.php:598 #: /var/www/html/cacti/install/index.php:612 #, php-format msgid "Database: %s" msgstr "Base de datos: %s" #: /var/www/html/cacti/install/index.php:599 #: /var/www/html/cacti/install/index.php:613 #, php-format msgid "Database User: %s" msgstr "Usuario de base de datos: %s" #: /var/www/html/cacti/install/index.php:600 #: /var/www/html/cacti/install/index.php:614 #, php-format msgid "Database Hostname: %s" msgstr "Nombre de equipo de la base de datos: %s" #: /var/www/html/cacti/install/index.php:601 #: /var/www/html/cacti/install/index.php:615 #, php-format msgid "Port: %s" msgstr "Puerto: %s" #: /var/www/html/cacti/install/index.php:602 #: /var/www/html/cacti/install/index.php:616 #, php-format msgid "Server Operating System Type: %s" msgstr "Tipo de Sistema Operativo del servidor: %s" #: /var/www/html/cacti/install/index.php:610 #: /var/www/html/cacti/install/index.php:619 msgid "Remote Poller Cacti database connection information" msgstr "" "Información de conexión de la base de datos de la Sonda remota de Cacti" #: /var/www/html/cacti/install/index.php:622 msgid "" "Your config.php file must be writable by the web server during install in " "order to configure the Remote poller. Once installation is complete, you " "must set this file to Read Only to prevent possible security issues." msgstr "" "Tu archivo config.php debe ser escribible por el servidor web durante la " "instalación para configurar la Sonda remota. Una vez la instalación este " "completa, debes configurar este archivo como Solo lectura, para prevenir \n" "posibles problemas de seguridad." #: /var/www/html/cacti/install/index.php:627 msgid "" "Your Remote Cacti Poller information has not been included in your config." "php file. Please review the config.php.dist, and set the variables: " "$rdatabase_default, $rdatabase_username, etc. These variables must be " "set and point back to your Primary Cacti database server. Correct this and " "try again." msgstr "" "La información de tu Sonda de Cacti remota no ha sido incluida en tu archivo " "config.php. Revisa config.php.dist, y configura las variables: " "$rdatabase_default, $rdatabase_username, etc. Estas variables deben ser " "configuradas y apuntar a tu servidor de base de datos de Cacti Primario. " "Corrige esto y vuelve a intentarlo." #: /var/www/html/cacti/install/index.php:629 msgid "The variables that must be set include the following:" msgstr "Las variables que deben ser configuradas incluyen las siguientes:" #: /var/www/html/cacti/install/index.php:640 msgid "You must also set the $poller_id variable in the config.php." msgstr "También debes configurar la variable $poller_id en config.php." #: /var/www/html/cacti/install/index.php:642 msgid "" "Once you have the variables set in the config.php file, you must also grant " "the $rdatabase_username access to the Cacti database. Follow the same " "procedure you would with any other Cacti install. You may then press the " "'Test Connection' button. If the test is successful you will be able to " "proceed and complete the install." msgstr "" "Una vez hayas configurado las variables en el archivo config.php, debes " "también conceder acceso a $rdatabase_username a la base de datos de Cacti. " "Sigue el mismo procedimiento que harías con cualquier otra instalación de " "Cacti. Luego puedes presionar el boton 'Probar conexión'. Si la prueba es " "satisfactoria podrás proceder y completar la instalación." #: /var/www/html/cacti/install/index.php:664 #: /var/www/html/cacti/install/index.php:680 #: /var/www/html/cacti/lib/html.php:342 msgid "Next" msgstr "Siguiente" #: /var/www/html/cacti/install/index.php:689 msgid "Upgrade" msgstr "Actualizar" #: /var/www/html/cacti/install/index.php:702 msgid "Remote Database: " msgstr "Base de datos remota: " #: /var/www/html/cacti/install/index.php:713 msgid "Critical Binary Locations and Versions" msgstr "Versiones y ubicaciones de binarios críticas" #: /var/www/html/cacti/install/index.php:715 msgid "Make sure all of these values are correct before continuing." msgstr "Asegurate que todos estos parámetros son correctos antes de continuar." #: /var/www/html/cacti/install/index.php:773 msgid "Directory Permission Checks" msgstr "Revisión de permisos de directorio" #: /var/www/html/cacti/install/index.php:775 msgid "" "Please ensure the directory permissions below are correct before " "proceeding. During the install, these directories need to be owned by the " "Web Server user. These permission changes are required to allow the " "Installer to install Device Template packages which include XML and script " "files that will be placed in these directories. If you choose not to " "install the packages, there is an 'install_package.php' cli script that can " "be used from the command line after the install is complete." msgstr "" "Asegúrate que los permisos de directorio a continuación son correctos antes " "de proceder. Durante la instalación, el usuario del servidor web necesita " "ser el propietario de estos directorios. Estos cambios de permisos son " "requeridos para permitir al instalador instalar los paquetes de Plantillas " "de datos que incluyen scripts y archivos XML que serán ubicados en estos " "directorios. Si eliges no instalar los paquetes, hay un script de línea de " "comando 'install_package.php' que puede ser usado después que se complete la " "instalación." #: /var/www/html/cacti/install/index.php:778 msgid "" "After the install is complete, you can make some of these directories read " "only to increase security." msgstr "" "Después de completar la instalación, puedes hacer alguno de estos " "directorios de solo escritura para mejorar la seguridad." #: /var/www/html/cacti/install/index.php:780 msgid "" "These directories will be required to stay read writable after the install " "so that the Cacti remote synchronization process can update them as the Main " "Cacti Web Site changes" msgstr "" "Estos directorios tendrán que permanecer como lectura/escritura después de " "la instalación para que el proceso de sincronización remota de Cacti pueda " "actualizarlos a medida que el sitio web principal de Cacti cambie" #: /var/www/html/cacti/install/index.php:811 msgid "Required Writable at Install Time Only" msgstr "Solo requiere ser escribible al momento de la instalación" #: /var/www/html/cacti/install/index.php:814 #: /var/www/html/cacti/install/index.php:824 #: /var/www/html/cacti/install/index.php:834 msgid "Writable" msgstr "Escribible" #: /var/www/html/cacti/install/index.php:816 #: /var/www/html/cacti/install/index.php:826 #: /var/www/html/cacti/install/index.php:836 msgid "Not Writable" msgstr "No escribible" #: /var/www/html/cacti/install/index.php:821 #: /var/www/html/cacti/install/index.php:831 msgid "Required Writable after Install Complete" msgstr "Requiere ser escribible después de completar la instalación" #: /var/www/html/cacti/install/index.php:844 #, php-format msgid "" "Make sure your webserver has read and write access to the entire folder " "structure.
    Example: chown -R apache.apache %s/resource/" msgstr "" "Asegúrate que tu servidor web tenga acceso de lectura y escritura a la " "estructura completa de directorios.
    Ejemplo: chown -R apache.apache %s/" "resource/" #: /var/www/html/cacti/install/index.php:845 msgid "" "For SELINUX-users make sure that you have the correct permissions or set " "'setenforce 0' temporarily." msgstr "" "Usuarios SELINUX asegurarse de tener los permisos correctos o configurar " "'setenforce 0' temporalmente." #: /var/www/html/cacti/install/index.php:847 msgid "Check Permissions" msgstr "Revisar permisos" #: /var/www/html/cacti/install/index.php:849 msgid "All folders are writable" msgstr "Todas las carpetas son escribibles" #: /var/www/html/cacti/install/index.php:855 msgid "" "If you are installing packages, once the packages are installed, you should " "change the scripts directory back to read only as this presents some " "exposure to the web site." msgstr "" "Si estás instalando paquetes, una vez que esten instalados, deberías cambiar " "el directorio scripts devuelta a solo lectura ya que presenta cierta " "exposición del sitio web." #: /var/www/html/cacti/install/index.php:855 #: /var/www/html/cacti/install/index.php:861 #: /var/www/html/cacti/install/index.php:894 msgid "NOTE:" msgstr "NOTA:" #: /var/www/html/cacti/install/index.php:861 msgid "" "For remote pollers, it is critical that the paths that you will be updating " "frequently, including the plugins, scripts, and resources paths have read/" "write access as the data collector will have to update these paths from the " "main web server content." msgstr "" "Para Sondas remotas, es crítico que las rutas que estarás actualizando " "frecuentemente, incluyendo los plugins, scripts, y recursos tengan acceso de " "lectura/escritura ya que el recolector de datos tendrá que actualizar estas " "rutas desde el contenido del servidor web principal." #: /var/www/html/cacti/install/index.php:868 msgid "Template Setup" msgstr "Configurar Plantilla" #: /var/www/html/cacti/install/index.php:870 msgid "" "Please select the Device Templates that you wish to use after the Install. " "If you Operating System is Windows, you need to ensure that you select the " "'Windows Device' Template. If your Operating System is Linux/UNIX, make " "sure you select the 'Local Linux Machine' Device Template." msgstr "" "Seleccione la Plantilla de dispositivos que desea usar después de la " "instalación. Si tu sistema operativo es Wndows, asegúrate de seleccionar la " "Plantilla 'Dispositivo Windows'. Si tu sistema operativo es Linux/Unix, " "asegúrate de seleccionar la Plantilla de dispositivos 'Local Linux Machine'." #: /var/www/html/cacti/install/index.php:872 msgid "" "Device Templates allow you to monitor and graph a vast assortment of data " "within Cacti. After you select the desired Device Templates, press 'Finish' " "and the installation will complete. Please be patient on this step, as the " "importation of the Device Templates can take a few minutes." msgstr "" "Plantillas de dispositivos permiten monitorear y graficar una amplia " "variedad de datos dentro de Cacti. Luego de seleccionar la Plantilla de " "datos deseada, presiona 'Finalizar' y se completará la instalación. Ten " "paciencia en este paso, ya que la importación de Plantillas de dispositivos " "puede llevar unos minutos." #: /var/www/html/cacti/install/index.php:878 #: /var/www/html/cacti/plugins.php:389 msgid "Author" msgstr "Autor" #: /var/www/html/cacti/install/index.php:878 msgid "Homepage" msgstr "Página de inicio" #: /var/www/html/cacti/install/index.php:896 msgid "" "Press 'Finish' to complete the installation process after selecting your " "Device Templates." msgstr "" "Presiona 'Finalizar' para completer el proceso de instalación después de " "seleccionar las Plantillas de dispositivo." #: /var/www/html/cacti/install/index.php:900 msgid "Upgrade Results" msgstr "Resultados de actualización" #: /var/www/html/cacti/install/index.php:907 msgid "[Fail]" msgstr "[Fallo]" #: /var/www/html/cacti/install/index.php:908 msgid "[Success]" msgstr "[OK]" #: /var/www/html/cacti/install/index.php:909 msgid "[Skipped]" msgstr "[Omitido]" #: /var/www/html/cacti/install/index.php:913 msgid "Database upgrade completed!" msgstr "Actualización de base de datos completada!" #: /var/www/html/cacti/install/index.php:934 msgid "" "One or more of the SQL queries needed to upgraded your Cacti installation " "has failed. Please see below for more details. Your Cacti MySQL user must " "have SELECT, INSERT, UPDATE, DELETE, ALTER, CREATE, and DROP permissions. You should try executing the failed queries as \"root\" " "to ensure that you do not have a permissions problem." msgstr "" "Una o mas consultas de SQL necesarias para actualizar tu instalación de " "Cacti han fallado. Mira debajo para mas detalles. Tu usuario MySQL de Cacti " "debe tener permisos de SELECT, INSERT, UPDATE, DELETE, ALTER, " "CREATE, and DROP. Deberías intentar ejecutar las consultas que " "fallaron como \"root\" para asegurarte que no tienes un problema de permisos." #: /var/www/html/cacti/install/index.php:934 #: /var/www/html/cacti/utilities.php:2065 #: /var/www/html/cacti/utilities.php:2066 #: /var/www/html/cacti/utilities.php:2069 #: /var/www/html/cacti/utilities.php:2070 msgid "WARNING:" msgstr "ADVERTENCIA:" #: /var/www/html/cacti/install/index.php:939 msgid "No database action needed." msgstr "No se requiere ninguna acción de base de datos." #: /var/www/html/cacti/install/index.php:944 msgid "Important Upgrade Notice" msgstr "Notificación importante de actualización" #: /var/www/html/cacti/install/index.php:945 msgid "" "Before you continue with the installation, you must update " "your /etc/crontab file to point to poller.php instead of " "cmd.php." msgstr "" "Antes de continuar con la instalación, debes actualizar tu " "archivo /etc/crontab para que apunte a poller.php en vez " "de cmd.php." #: /var/www/html/cacti/install/index.php:946 msgid "" "See the sample crontab entry below with the change made in red. Your crontab " "line will look slightly different based upon your setup." msgstr "" "Mira el ejemplo de crontab debajo con el cambio hecho en rojo. Tu línea de " "crontab se verá ligeramente diferente dependiendo de tu configuración." #: /var/www/html/cacti/install/index.php:948 msgid "Once you have made this change, please click Finish to continue." msgstr "Una vez que hayas hecho este cambio, clickea Finalizar para continuar." #: /var/www/html/cacti/install/index.php:955 msgctxt "Dialog: previous" msgid "Previous" msgstr "Anterior" #: /var/www/html/cacti/install/index.php:956 msgctxt "Dialog: complete" msgid "Finish" msgstr "Finalizar" #: /var/www/html/cacti/install/index.php:956 msgctxt "Dialog: go to the next page" msgid "Next" msgstr "Siguiente" #: /var/www/html/cacti/install/index.php:957 msgctxt "Dialog: test connection" msgid "Test Connection" msgstr "Probar la conexión" #: /var/www/html/cacti/install/index.php:957 msgid "Test remote database connection" msgstr "Prueba de conexión de base de datos remota" #: /var/www/html/cacti/install/index.php:981 #: /var/www/html/cacti/install/index.php:983 #: /var/www/html/cacti/install/index.php:985 msgid "Finish" msgstr "Finalizar" #: /var/www/html/cacti/lib/aggregate.php:51 msgid "Display Graphs from this Aggregate" msgstr "Mostrar gráficos para este Agregado" #: /var/www/html/cacti/lib/api_aggregate.php:1169 msgid "" "The Graphs chosen for the Aggregate Graph below represent Graphs from " "multiple Graph Templates. Aggregate does not support creating Aggregate " "Graphs from multiple Graph Templates." msgstr "" "Los gráficos elegidos para el gráfico Agregado a continuación representan " "gráficos desde múltiples Plantillas de gráficos. Agregados no soporta la " "creación de gráficos Agregados desde múltiples Plantillas de gráficos." #: /var/www/html/cacti/lib/api_aggregate.php:1170 #: /var/www/html/cacti/lib/api_aggregate.php:1189 msgid "Press 'Return' to return and select different Graphs" msgstr "Presiona 'Regresar' para regresar y seleccionar gráficos diferentes" #: /var/www/html/cacti/lib/api_aggregate.php:1188 msgid "" "The Graphs chosen for the Aggregate Graph do not use Graph Templates. " "Aggregate does not support creating Aggregate Graphs from non-templated " "graphs." msgstr "" "Los gráficos elegidos para el gráfico Agregado no usan una Plantilla de " "gráficos. Agregado no soporta crear gráficos Agregados desde gráficos sin " "Plantillas." #: /var/www/html/cacti/lib/api_aggregate.php:1290 #: /var/www/html/cacti/lib/functions.php:1943 msgid "Graph Items" msgstr "Elementos de Gráficos" #: /var/www/html/cacti/lib/api_aggregate.php:1290 #: /var/www/html/cacti/lib/functions.php:2075 msgid "Graph Template Items" msgstr "Items de Plantilla de gráficos" #: /var/www/html/cacti/lib/api_aggregate.php:1294 #: /var/www/html/cacti/lib/html.php:881 msgid "Graph Item" msgstr "Elemento de Gráfico" #: /var/www/html/cacti/lib/api_aggregate.php:1297 #: /var/www/html/cacti/lib/html.php:884 msgid "CF Type" msgstr "Tipo de CF" #: /var/www/html/cacti/lib/api_aggregate.php:1298 #: /var/www/html/cacti/lib/html.php:886 msgid "Item Color" msgstr "Color de Item" #: /var/www/html/cacti/lib/api_aggregate.php:1299 msgid "Color Template" msgstr "Plantilla de Color" #: /var/www/html/cacti/lib/api_aggregate.php:1300 msgid "Skip" msgstr "Saltar" #: /var/www/html/cacti/lib/api_aggregate.php:1367 msgid "Aggregate Items are not modifyable" msgstr "Items Agregados no son modificables" #: /var/www/html/cacti/lib/api_aggregate.php:1378 msgid "Aggregate Items are not editable" msgstr "Items Agregados no son editables" #: /var/www/html/cacti/lib/api_automation.php:132 msgid "Matching Devices" msgstr "Dispositivos coincidentes" #: /var/www/html/cacti/lib/api_automation.php:147 #: /var/www/html/cacti/lib/api_automation.php:1025 #: /var/www/html/cacti/lib/clog_webapi.php:419 #: /var/www/html/cacti/lib/html_reports.php:299 #: /var/www/html/cacti/lib/html_reports.php:1246 #: /var/www/html/cacti/lib/html_reports.php:1515 #: /var/www/html/cacti/lib/html_reports.php:1526 #: /var/www/html/cacti/lib/rrd.php:2656 /var/www/html/cacti/utilities.php:314 #: /var/www/html/cacti/utilities.php:1058 #: /var/www/html/cacti/utilities.php:2396 msgid "Type" msgstr "Tipo" #: /var/www/html/cacti/lib/api_automation.php:306 msgid "No Matching Devices" msgstr "Ningún dispositivo coincidente" #: /var/www/html/cacti/lib/api_automation.php:415 #: /var/www/html/cacti/lib/api_automation.php:690 #: /var/www/html/cacti/lib/api_automation.php:830 msgid "Matching Objects" msgstr "Objetos coincidentes" #: /var/www/html/cacti/lib/api_automation.php:705 msgid "Objects" msgstr "Objetos" #: /var/www/html/cacti/lib/api_automation.php:753 msgid "Not Found" msgstr "No se encontraron" #: /var/www/html/cacti/lib/api_automation.php:784 msgid "" "A blue font color indicates that the rule will be applied to the objects in " "question. Other objects will not be subject to the rule." msgstr "" "Una fuente de color azul indica que la regla sera aplicada a los objetos en " "cuestión. Otros objetos no serán sujetos a la regla." #: /var/www/html/cacti/lib/api_automation.php:784 #, php-format msgid "Matching Objects [ %s ]" msgstr "Objetos coincidentes [ %s ]" #: /var/www/html/cacti/lib/api_automation.php:841 msgid "Device Status" msgstr "Estado de dispositivo" #: /var/www/html/cacti/lib/api_automation.php:863 msgid "There are no Objects that match this rule." msgstr "No hay objetos que coincidan con esta regla." #: /var/www/html/cacti/lib/api_automation.php:907 msgid "Error in data query" msgstr "Error en la consulta de datos" #: /var/www/html/cacti/lib/api_automation.php:1011 msgid "Matching Items" msgstr "Items coincidentes" #: /var/www/html/cacti/lib/api_automation.php:1173 msgid "Resulting Branch" msgstr "Rama resultante" #: /var/www/html/cacti/lib/api_automation.php:1212 msgid "No Items Found" msgstr "Ningún item encontrado" #: /var/www/html/cacti/lib/api_automation.php:1240 #: /var/www/html/cacti/lib/api_automation.php:1302 msgid "Field" msgstr "Campo" #: /var/www/html/cacti/lib/api_automation.php:1242 #: /var/www/html/cacti/lib/api_automation.php:1304 msgid "Pattern" msgstr "Patrón" #: /var/www/html/cacti/lib/api_automation.php:1254 #: /var/www/html/cacti/lib/api_automation.php:1317 #: /var/www/html/cacti/lib/api_automation.php:1381 #, php-format msgid "Item#%s" msgstr "Item#%s" #: /var/www/html/cacti/lib/api_automation.php:1285 msgid "No Device Selection Criteria" msgstr "Ningún criterio de selección de dispositivos" #: /var/www/html/cacti/lib/api_automation.php:1347 msgid "No Graph Creation Criteria" msgstr "Ningún criterio de creación de gráfico" #: /var/www/html/cacti/lib/api_automation.php:1366 msgid "Propagate Change" msgstr "Propagar cambio" #: /var/www/html/cacti/lib/api_automation.php:1367 msgid "Search Pattern" msgstr "Patrón de búsqueda" #: /var/www/html/cacti/lib/api_automation.php:1368 msgid "Replace Pattern" msgstr "Patrón de reemplazo" #: /var/www/html/cacti/lib/api_automation.php:1412 msgid "No Tree Creation Criteria" msgstr "Ningún criterio de creación de Arbol" #: /var/www/html/cacti/lib/api_automation.php:1871 #: /var/www/html/cacti/lib/api_automation.php:1921 msgid "Device Match Rule" msgstr "Regla de coincidencia dispositivos" #: /var/www/html/cacti/lib/api_automation.php:1886 msgid "Create Graph Rule" msgstr "Crear regla de gráficos" #: /var/www/html/cacti/lib/api_automation.php:1925 msgid "Graph Match Rule" msgstr "Reglas de coincidencia gráficos" #: /var/www/html/cacti/lib/api_automation.php:1950 msgid "Create Tree Rule (Device)" msgstr "Crear regla de árbol (dispositivo)" #: /var/www/html/cacti/lib/api_automation.php:1954 msgid "Create Tree Rule (Graph)" msgstr "Crear regla de árbol (gráfico)" #: /var/www/html/cacti/lib/api_automation.php:1974 #, php-format msgid "Rule Item [edit rule item for %s: %s]" msgstr "Item de regla [editar item de regla para %s: %s]" #: /var/www/html/cacti/lib/api_automation.php:1976 #, php-format msgid "Rule Item [new rule item for %s: %s]" msgstr "Item de regla [nuevo item de regla para %s: %s]" #: /var/www/html/cacti/lib/api_automation.php:2713 msgid "Added by Cacti Automation" msgstr "Agregado por automatización de Cacti" #: /var/www/html/cacti/lib/api_device.php:401 msgid "Device is Disabled" msgstr "El dispositivo está deshabilitado" #: /var/www/html/cacti/lib/api_device.php:402 msgid "Device Availability Check Bypassed" msgstr "Verificación de disponibilidad de dispositivo omitido" #: /var/www/html/cacti/lib/api_device.php:409 msgid "SNMP Information" msgstr "Información SNMP" #: /var/www/html/cacti/lib/api_device.php:413 msgid "SNMP not in use" msgstr "No usa SNMP" #: /var/www/html/cacti/lib/api_device.php:421 #: /var/www/html/cacti/lib/api_device.php:425 #: /var/www/html/cacti/lib/api_device.php:437 msgid "SNMP error" msgstr "Error SNMP" #: /var/www/html/cacti/lib/api_device.php:444 msgid "System:" msgstr "Sistema:" #: /var/www/html/cacti/lib/api_device.php:450 msgid "Uptime:" msgstr "Tiempo de Funcionamiento:" #: /var/www/html/cacti/lib/api_device.php:451 msgid "days" msgstr "días" #: /var/www/html/cacti/lib/api_device.php:451 msgid "hours" msgstr "horas" #: /var/www/html/cacti/lib/api_device.php:451 msgid "minutes" msgstr "minutos" #: /var/www/html/cacti/lib/api_device.php:452 msgid "Hostname:" msgstr "Nombre de equipo:" #: /var/www/html/cacti/lib/api_device.php:453 msgid "Location:" msgstr "Ubicación:" #: /var/www/html/cacti/lib/api_device.php:454 msgid "Contact:" msgstr "Contacto:" #: /var/www/html/cacti/lib/api_device.php:483 #: /var/www/html/cacti/lib/functions.php:3868 #: /var/www/html/cacti/lib/functions.php:3870 #: /var/www/html/cacti/lib/functions.php:3874 msgid "Ping Results" msgstr "Resultados de ping" #: /var/www/html/cacti/lib/api_device.php:488 msgid "No Ping or SNMP Availability Check in Use" msgstr "No Ping o SNMP de comprobación disponibilidad en uso" #: /var/www/html/cacti/lib/api_tree.php:203 msgid "New Branch" msgstr "Nueva Rama" #: /var/www/html/cacti/lib/auth.php:324 msgid "Web Basic" msgstr "Web básico" #: /var/www/html/cacti/lib/clog_webapi.php:155 msgid "" "Click 'Continue' to purge the Log File.


    Note: If logging is set " "to both Cacti and Syslog, the log information will remain in Syslog." msgstr "" "Haga click en 'Continuar' para purgar el archivo de log de Cacti. " "


    Nota: Si el logging está configurado para Cacti y Syslog, la " "información del log permanecerá en Syslog." #: /var/www/html/cacti/lib/clog_webapi.php:161 #: /var/www/html/cacti/utilities.php:1050 msgid "Purge Log" msgstr "Purgar Log" #: /var/www/html/cacti/lib/clog_webapi.php:185 #: /var/www/html/cacti/utilities.php:996 msgid "Log Filters" msgstr "Filtros de log" #: /var/www/html/cacti/lib/clog_webapi.php:202 msgid " - Admin Filter in Affect" msgstr " - Filtro de Admin en efecto" #: /var/www/html/cacti/lib/clog_webapi.php:204 msgid " - No Admin Filter in Affect" msgstr " - Ningún filtro de Admin en efecto" #: /var/www/html/cacti/lib/clog_webapi.php:207 msgid " - Admin View" msgstr " - Vista de Admin" #: /var/www/html/cacti/lib/clog_webapi.php:211 #, php-format msgid "Log [Total Lines: %d %s - Additional Filter in Affect]" msgstr "Log [Líneas Totales: %d %s - Filtro adicional aplicado]" #: /var/www/html/cacti/lib/clog_webapi.php:213 #, php-format msgid "Log [Total Lines: %d %s - No Other Filter in Affect]" msgstr "Log [Líneas totales: %d %s - Ningún otro filtro aplicado]" #: /var/www/html/cacti/lib/clog_webapi.php:223 #: /var/www/html/cacti/utilities.php:1134 #: /var/www/html/cacti/utilities.php:1451 #: /var/www/html/cacti/utilities.php:1658 #: /var/www/html/cacti/utilities.php:1737 #: /var/www/html/cacti/utilities.php:2390 #: /var/www/html/cacti/utilities.php:2599 msgid "Entries" msgstr "Entradas" #: /var/www/html/cacti/lib/clog_webapi.php:346 #: /var/www/html/cacti/utilities.php:1005 msgid "File" msgstr "Archivo" #: /var/www/html/cacti/lib/clog_webapi.php:392 #: /var/www/html/cacti/utilities.php:1035 msgid "Tail Lines" msgstr "Líneas de log" #: /var/www/html/cacti/lib/clog_webapi.php:424 #: /var/www/html/cacti/utilities.php:1063 msgid "Stats" msgstr "Estadísticas" #: /var/www/html/cacti/lib/clog_webapi.php:427 #: /var/www/html/cacti/utilities.php:1066 msgid "Debug" msgstr "Depuraración" #: /var/www/html/cacti/lib/clog_webapi.php:428 #: /var/www/html/cacti/utilities.php:1067 msgid "SQL Calls" msgstr "Llamadas SQL" #: /var/www/html/cacti/lib/clog_webapi.php:432 #: /var/www/html/cacti/utilities.php:1071 msgid "Display Order" msgstr "Por orden" #: /var/www/html/cacti/lib/clog_webapi.php:436 #: /var/www/html/cacti/utilities.php:1075 msgid "Newest First" msgstr "Nuevo primero" #: /var/www/html/cacti/lib/clog_webapi.php:437 #: /var/www/html/cacti/utilities.php:1076 msgid "Oldest First" msgstr "Antiguo primero" #: /var/www/html/cacti/lib/functions.php:673 #, php-format msgid "Error %s is not readable" msgstr "Error %s no es legible" #: /var/www/html/cacti/lib/functions.php:1829 #: /var/www/html/cacti/lib/functions.php:1834 msgid "Logged in as" msgstr "Conectado como" #: /var/www/html/cacti/lib/functions.php:1829 msgid "Login as Regular User" msgstr "Ingresar como un Usuario regular" #: /var/www/html/cacti/lib/functions.php:1829 msgid "guest" msgstr "invitado" #: /var/www/html/cacti/lib/functions.php:1836 msgid "Edit Profile" msgstr "Editar Perfil" #: /var/www/html/cacti/lib/functions.php:1838 msgid "Logout" msgstr "Salir" #: /var/www/html/cacti/lib/functions.php:1855 #: /var/www/html/cacti/lib/functions.php:1861 msgid "User Profile (Edit)" msgstr "Perfil de Usuario (Editar)" #: /var/www/html/cacti/lib/functions.php:1873 #: /var/www/html/cacti/lib/functions.php:1879 msgid "Tree Mode" msgstr "Modo árbol" #: /var/www/html/cacti/lib/functions.php:1885 msgid "List Mode" msgstr "Modo de lista" #: /var/www/html/cacti/lib/functions.php:1907 #: /var/www/html/cacti/lib/functions.php:1913 #: /var/www/html/cacti/lib/functions.php:2781 #: /var/www/html/cacti/lib/html.php:1325 /var/www/html/cacti/lib/html.php:1402 #: /var/www/html/cacti/links.php:343 /var/www/html/cacti/user_admin.php:1645 #: /var/www/html/cacti/user_group_admin.php:1396 msgid "Console" msgstr "Consola" #: /var/www/html/cacti/lib/functions.php:1925 #: /var/www/html/cacti/lib/functions.php:1967 #: /var/www/html/cacti/lib/functions.php:1985 #: /var/www/html/cacti/lib/functions.php:2039 #: /var/www/html/cacti/lib/functions.php:2051 #: /var/www/html/cacti/lib/functions.php:2063 #: /var/www/html/cacti/lib/functions.php:2099 #: /var/www/html/cacti/lib/functions.php:2117 #: /var/www/html/cacti/lib/functions.php:2135 #: /var/www/html/cacti/lib/functions.php:2153 #: /var/www/html/cacti/lib/functions.php:2171 #: /var/www/html/cacti/lib/functions.php:2195 #: /var/www/html/cacti/lib/functions.php:2231 #: /var/www/html/cacti/lib/functions.php:2351 #: /var/www/html/cacti/lib/functions.php:2375 #: /var/www/html/cacti/lib/functions.php:2393 #: /var/www/html/cacti/lib/functions.php:2411 #: /var/www/html/cacti/lib/functions.php:2423 #: /var/www/html/cacti/lib/functions.php:2525 #: /var/www/html/cacti/lib/functions.php:2549 #: /var/www/html/cacti/lib/functions.php:2567 #: /var/www/html/cacti/lib/functions.php:2585 #: /var/www/html/cacti/lib/functions.php:2603 #: /var/www/html/cacti/lib/functions.php:2627 msgid "(Edit)" msgstr "(Editar)" #: /var/www/html/cacti/lib/functions.php:1949 msgid "Create New Graphs" msgstr "Crear nuevos gráficos" #: /var/www/html/cacti/lib/functions.php:1955 msgid "Create Graphs from Data Query" msgstr "Crear gráficos desde consulta de datos" #: /var/www/html/cacti/lib/functions.php:1973 #: /var/www/html/cacti/lib/functions.php:1991 #: /var/www/html/cacti/lib/functions.php:2087 #: /var/www/html/cacti/lib/functions.php:2177 #: /var/www/html/cacti/lib/functions.php:2201 #: /var/www/html/cacti/lib/functions.php:2357 msgid "(Remove)" msgstr "(Eliminar)" #: /var/www/html/cacti/lib/functions.php:2009 #: /var/www/html/cacti/lib/functions.php:2015 #: /var/www/html/cacti/lib/functions.php:2021 #: /var/www/html/cacti/lib/functions.php:2027 #: /var/www/html/cacti/lib/functions.php:2291 msgid "View Cacti Log" msgstr "Ver log de Cacti" #: /var/www/html/cacti/lib/functions.php:2033 msgid "Graph Trees" msgstr "Ãrboles de gráficos" #: /var/www/html/cacti/lib/functions.php:2165 msgid "Round Robin Archives" msgstr "Archivos Round Robin" #: /var/www/html/cacti/lib/functions.php:2207 msgid "Data Input Fields" msgstr "Campos de entrada de datos" #: /var/www/html/cacti/lib/functions.php:2213 #: /var/www/html/cacti/lib/functions.php:2243 msgid "(Remove Item)" msgstr "(Eliminar Item)" #: /var/www/html/cacti/lib/functions.php:2261 msgid "List unused Files" msgstr "Listar archivos sin usar" #: /var/www/html/cacti/lib/functions.php:2273 #: /var/www/html/cacti/lib/functions.php:2285 #: /var/www/html/cacti/utilities.php:1831 msgid "View Poller Cache" msgstr "Ver cache de la Sonda" #: /var/www/html/cacti/lib/functions.php:2279 #: /var/www/html/cacti/utilities.php:1835 msgid "View Data Query Cache" msgstr "Ver cache de consulta de datos" #: /var/www/html/cacti/lib/functions.php:2297 #: /var/www/html/cacti/utilities.php:1218 msgid "Clear Cacti Log" msgstr "Vaciar el log de Cacti" #: /var/www/html/cacti/lib/functions.php:2303 #: /var/www/html/cacti/utilities.php:1824 msgid "View User Log" msgstr "Ver log de Usuario" #: /var/www/html/cacti/lib/functions.php:2309 msgid "Clear User Log" msgstr "Vaciar log de Usuario" #: /var/www/html/cacti/lib/functions.php:2315 #: /var/www/html/cacti/utilities.php:1815 #: /var/www/html/cacti/utilities.php:1816 msgid "Technical Support" msgstr "Soporte Técnico" #: /var/www/html/cacti/lib/functions.php:2321 #: /var/www/html/cacti/utilities.php:1932 msgid "Boost Status" msgstr "Estado de Boost" #: /var/www/html/cacti/lib/functions.php:2327 msgid "View SNMP Agent Cache" msgstr "Ver cache de agente SNMP" #: /var/www/html/cacti/lib/functions.php:2333 msgid "View SNMP Agent Notification Log" msgstr "Ver log de notificaciones del agente SNMP" #: /var/www/html/cacti/lib/functions.php:2363 msgid "VDEF Items" msgstr "Items VDEF" #: /var/www/html/cacti/lib/functions.php:2369 msgid "View SNMP Notification Receivers" msgstr "Ver receptores de notificaciones SNMP" #: /var/www/html/cacti/lib/functions.php:2381 msgid "Cacti Settings" msgstr "Opciones de Cacti" #: /var/www/html/cacti/lib/functions.php:2399 #: /var/www/html/cacti/lib/functions.php:2429 msgid "(Action)" msgstr "(Acción)" #: /var/www/html/cacti/lib/functions.php:2447 msgid "Export Results" msgstr "Exportar Resultados" #: /var/www/html/cacti/lib/functions.php:2459 #: /var/www/html/cacti/lib/functions.php:2489 #: /var/www/html/cacti/lib/html.php:1346 /var/www/html/cacti/lib/html.php:1348 #: /var/www/html/cacti/lib/html.php:1429 msgid "Reporting" msgstr "Reportes" #: /var/www/html/cacti/lib/functions.php:2465 #: /var/www/html/cacti/lib/functions.php:2495 msgid "Report Add" msgstr "Agregar Reporte" #: /var/www/html/cacti/lib/functions.php:2471 #: /var/www/html/cacti/lib/functions.php:2501 msgid "Report Delete" msgstr "Eliminar Reporte" #: /var/www/html/cacti/lib/functions.php:2477 #: /var/www/html/cacti/lib/functions.php:2507 msgid "Report Edit" msgstr "Editar Reporte" #: /var/www/html/cacti/lib/functions.php:2483 #: /var/www/html/cacti/lib/functions.php:2513 msgid "Report Edit Item" msgstr "Editar item de Reporte" #: /var/www/html/cacti/lib/functions.php:2537 msgid "Color Template Items" msgstr "Items de Plantilla de Color" #: /var/www/html/cacti/lib/functions.php:2579 msgid "Aggregate Items" msgstr "Items Agregados" #: /var/www/html/cacti/lib/functions.php:2615 msgid "Graph Rule Items" msgstr "Items de Regla de gráfico" #: /var/www/html/cacti/lib/functions.php:2639 msgid "Tree Rule Items" msgstr "Items de regla de árbol" #: /var/www/html/cacti/lib/functions.php:2738 msgid "Leaf" msgstr "Hoja" #: /var/www/html/cacti/lib/functions.php:2752 msgid "Non Query Based" msgstr "No basado en consulta" #: /var/www/html/cacti/lib/functions.php:3491 msgid "" "Mailer Error: No TO address set!!
    If using the Test Mail " "link, please set the Alert e-mail setting." msgstr "" "Error de remitente: dirección del destinatario no especificada!!" "
    Si usa el vínculo Correo de prueba, configure la opción correo " "de alerta." #: /var/www/html/cacti/lib/functions.php:3801 #, php-format msgid "Authentication failed: %s" msgstr "Falló autenticación: %s" #: /var/www/html/cacti/lib/functions.php:3805 #, php-format msgid "HELO failed: %s" msgstr "Falló HELO: %s" #: /var/www/html/cacti/lib/functions.php:3808 #, php-format msgid "Connect failed: %s" msgstr "Falló conexión: %s" #: /var/www/html/cacti/lib/functions.php:3811 msgid "SMTP error: " msgstr "Error SMTP: " #: /var/www/html/cacti/lib/functions.php:3824 msgid "" "This is a test message generated from Cacti. This message was sent to test " "the configuration of your Mail Settings." msgstr "" "Este es un mensaje de prueba generado por Cacti. Este mensaje fue enviado " "para probar la configuración de tus opciones de correo." #: /var/www/html/cacti/lib/functions.php:3825 msgid "Your email settings are currently set as follows" msgstr "Tus opciones de email están actualmente configuradas así" #: /var/www/html/cacti/lib/functions.php:3826 msgid "Method" msgstr "Método" #: /var/www/html/cacti/lib/functions.php:3828 msgid "Checking Configuration...
    " msgstr "Revisando configuración...
    " #: /var/www/html/cacti/lib/functions.php:3835 msgid "PHP's Mailer Class" msgstr "PHP's Mailer Class" #: /var/www/html/cacti/lib/functions.php:3841 msgid "Method: SMTP" msgstr "Método: SMTP" #: /var/www/html/cacti/lib/functions.php:3856 msgid "Not Shown for Security Reasons" msgstr "No mostrado por motivos de seguridad" #: /var/www/html/cacti/lib/functions.php:3857 msgid "Security" msgstr "Seguridad" #: /var/www/html/cacti/lib/functions.php:3865 msgid "Ping Results:" msgstr "Resultados de ping:" #: /var/www/html/cacti/lib/functions.php:3874 msgid "Bypassed" msgstr "Omitido" #: /var/www/html/cacti/lib/functions.php:3882 msgid "Creating Message Text..." msgstr "Creando mensaje de texto..." #: /var/www/html/cacti/lib/functions.php:3885 msgid "Sending Message..." msgstr "Enviando mensaje..." #: /var/www/html/cacti/lib/functions.php:3889 msgid "Cacti Test Message" msgstr "Mensaje de prueba de Cacti" #: /var/www/html/cacti/lib/functions.php:3891 msgid "Success!" msgstr "Exito!" #: /var/www/html/cacti/lib/functions.php:3894 msgid "Message Not Sent due to ping failure." msgstr "Mensaje no enviado debido al fallo de ping." #: /var/www/html/cacti/lib/html.php:233 msgid "Data Query:" msgstr "Consulta de datos:" #: /var/www/html/cacti/lib/html.php:293 msgid "CSV Export of Graph Data" msgstr "Exportar datos de Grafico a CSV" #: /var/www/html/cacti/lib/html.php:296 msgid "Click to view just this Graph in Real-time" msgstr "Haga click para ver este gráfico en tiempo real" #: /var/www/html/cacti/lib/html.php:299 msgid "Kill Spikes in Graphs" msgstr "Matar picos en gráficos" #: /var/www/html/cacti/lib/html.php:336 msgid "Previous" msgstr "Anterior" #: /var/www/html/cacti/lib/html.php:339 #, php-format msgid "%d to %d of %s [ %s ]" msgstr "%d a %d de %s [ %s ]" #: /var/www/html/cacti/lib/html.php:348 #, php-format msgid "All %d %s" msgstr "Todos %d %s" #: /var/www/html/cacti/lib/html.php:354 #, php-format msgid "No %s Found" msgstr "No se encontraron %s" #: /var/www/html/cacti/lib/html.php:885 msgid "Alpha %" msgstr "Alfa %" #: /var/www/html/cacti/lib/html.php:926 msgid "No Task" msgstr "Ninguna Tarea" #: /var/www/html/cacti/lib/html.php:1170 msgid "Choose an action" msgstr "Elija una acción" #: /var/www/html/cacti/lib/html.php:1180 msgid "Execute Action" msgstr "Ejecutar acción" #: /var/www/html/cacti/lib/html.php:1355 /var/www/html/cacti/lib/html.php:1357 #: /var/www/html/cacti/lib/html.php:1440 /var/www/html/cacti/managers.php:41 #: /var/www/html/cacti/managers.php:221 msgid "Logs" msgstr "Logs" #: /var/www/html/cacti/lib/html.php:1761 msgid "Nan's" msgstr "Nan's" #: /var/www/html/cacti/lib/html.php:1765 msgid "Standard Deviations" msgstr "Desviaciones estandar" #: /var/www/html/cacti/lib/html.php:1767 #, php-format msgid "%s Standard Deviations" msgstr "%s Desviaciones estandar" #: /var/www/html/cacti/lib/html.php:1777 msgid "Variance Outliers" msgstr "Varianza de valores atípicos" #: /var/www/html/cacti/lib/html.php:1779 #, php-format msgid "%d Outliers" msgstr "" #: /var/www/html/cacti/lib/html.php:1783 msgid "Kills Per RRA" msgstr "Kills por RRA" #: /var/www/html/cacti/lib/html.php:1785 #, php-format msgid "%d Spikes" msgstr "%d picos" #: /var/www/html/cacti/lib/html.php:1792 msgid "Remove StdDev" msgstr "Eliminar StdDev" #: /var/www/html/cacti/lib/html.php:1793 msgid "Remove Variance" msgstr "Eliminar diferencia" #: /var/www/html/cacti/lib/html.php:1794 msgid "Gap Fill Range" msgstr "Simular Fill in Range" #: /var/www/html/cacti/lib/html.php:1795 msgid "Float Range" msgstr "Rango de flotación" #: /var/www/html/cacti/lib/html.php:1796 msgid "Dry Run StdDev" msgstr "Simular StdDev" #: /var/www/html/cacti/lib/html.php:1797 msgid "Dry Run Variance" msgstr "Simular Variance" #: /var/www/html/cacti/lib/html.php:1798 msgid "Dry Run Gap Fill Range" msgstr "Simular Fill in Range" #: /var/www/html/cacti/lib/html.php:1799 msgid "Dry Run Float Range" msgstr "Simular Fill in Range" #: /var/www/html/cacti/lib/html_filter.php:82 msgid "Apply filter to table" msgstr "Aplicar filtro a la tabla" #: /var/www/html/cacti/lib/html_filter.php:87 msgid "Reset filter to default values" msgstr "Restablecer filtro a los valores predeterminados" #: /var/www/html/cacti/lib/html_form.php:512 msgid "File Found" msgstr "Archivo encontrado" #: /var/www/html/cacti/lib/html_form.php:514 msgid "Path is a Directory and not a File" msgstr "Ruta es un directorio y no un archivo" #: /var/www/html/cacti/lib/html_form.php:518 msgid "File is Not Found" msgstr "Archivo no encontrado" #: /var/www/html/cacti/lib/html_form.php:521 msgid "Enter a valid file path" msgstr "Ingresa una ruta de archivo válida" #: /var/www/html/cacti/lib/html_form.php:557 msgid "Directory Found" msgstr "Directorio encontrado" #: /var/www/html/cacti/lib/html_form.php:559 msgid "Path is a File and not a Directory" msgstr "Ruta es un archivo y no un directorio" #: /var/www/html/cacti/lib/html_form.php:563 msgid "Directory is Not found" msgstr "Directorio no encontrado" #: /var/www/html/cacti/lib/html_form.php:566 msgid "Enter a valid directory path" msgstr "Ingrese una ruta de directorio valida" #: /var/www/html/cacti/lib/html_form.php:1024 #, php-format msgid "Cacti Color (%s)" msgstr "Color de Cacti (%s)" #: /var/www/html/cacti/lib/html_form.php:1081 msgid "NO FONT VERIFICATION POSSIBLE" msgstr "VERIFICACION DE FUENTE NO FUE POSIBLE" #: /var/www/html/cacti/lib/html_form_template.php:565 #: /var/www/html/cacti/lib/html_form_template.php:580 #, php-format msgid "Data Query Data Sources must be created through %s" msgstr "Los Data Sources de Consultas de datos deben ser creados via %s" #: /var/www/html/cacti/lib/html_graph.php:194 #: /var/www/html/cacti/lib/html_tree.php:697 msgid "" "Save the current Graphs, Columns, Thumbnail, Preset, and Timeshift " "preferences to your profile" msgstr "" "Guardar los gráficos actuales, columnas, miniaturas, preajustes, y " "preferencias de hora en tu perfil" #: /var/www/html/cacti/lib/html_graph.php:224 #: /var/www/html/cacti/lib/html_tree.php:721 msgid "Columns" msgstr "Columnas" #: /var/www/html/cacti/lib/html_graph.php:228 #: /var/www/html/cacti/lib/html_tree.php:725 #, php-format msgid "%d Column" msgstr "%d Columna" #: /var/www/html/cacti/lib/html_graph.php:239 #: /var/www/html/cacti/lib/html_reports.php:125 #: /var/www/html/cacti/lib/html_tree.php:736 msgid "Thumbnails" msgstr "Miniaturas" #: /var/www/html/cacti/lib/html_graph.php:258 #: /var/www/html/cacti/lib/html_tree.php:755 msgid "Custom" msgstr "Personalizado" #: /var/www/html/cacti/lib/html_graph.php:271 #: /var/www/html/cacti/lib/html_reports.php:1513 #: /var/www/html/cacti/lib/html_reports.php:1524 #: /var/www/html/cacti/lib/html_tree.php:768 msgid "From" msgstr "Desde" #: /var/www/html/cacti/lib/html_graph.php:276 #: /var/www/html/cacti/lib/html_tree.php:773 msgid "Start Date Selector" msgstr "Selector de fecha de inicio" #: /var/www/html/cacti/lib/html_graph.php:280 #: /var/www/html/cacti/lib/html_reports.php:1514 #: /var/www/html/cacti/lib/html_reports.php:1525 #: /var/www/html/cacti/lib/html_tree.php:777 msgid "To" msgstr "Hasta" #: /var/www/html/cacti/lib/html_graph.php:285 #: /var/www/html/cacti/lib/html_tree.php:782 msgid "End Date Selector" msgstr "Selector de fecha de finalización" #: /var/www/html/cacti/lib/html_graph.php:290 #: /var/www/html/cacti/lib/html_tree.php:787 msgid "Shift Time Backward" msgstr "Ajustar intervalo hacia atras" #: /var/www/html/cacti/lib/html_graph.php:291 #: /var/www/html/cacti/lib/html_tree.php:788 msgid "Define Shifting Interval" msgstr "Definir el intervalo de tiempo" #: /var/www/html/cacti/lib/html_graph.php:302 #: /var/www/html/cacti/lib/html_tree.php:799 msgid "Shift Time Forward" msgstr "Ajustar intervalo hacia adelante" #: /var/www/html/cacti/lib/html_graph.php:307 #: /var/www/html/cacti/lib/html_tree.php:804 msgid "Refresh selected time span" msgstr "Refrescar el espacio de tiempo seleccionado" #: /var/www/html/cacti/lib/html_graph.php:308 #: /var/www/html/cacti/lib/html_tree.php:805 msgid "Return to the default time span" msgstr "Regresar al espacio de tiempo por defecto" #: /var/www/html/cacti/lib/html_graph.php:328 msgid "Interval" msgstr "Intervalo" #: /var/www/html/cacti/lib/html_graph.php:340 #: /var/www/html/cacti/lib/html_tree.php:837 msgid "Stop" msgstr "Parar" #: /var/www/html/cacti/lib/html_graph.php:423 #: /var/www/html/cacti/lib/html_tree.php:921 #: /var/www/html/cacti/settings.php:216 /var/www/html/cacti/settings.php:235 #: /var/www/html/cacti/settings.php:284 msgid "Enter keyword" msgstr "Ingresa palabra clave" #: /var/www/html/cacti/lib/html_reports.php:35 #: /var/www/html/cacti/lib/html_reports.php:1508 msgid "Report Name" msgstr "Nombre de Reporte" #: /var/www/html/cacti/lib/html_reports.php:37 msgid "New Report" msgstr "Nuevo Reporte" #: /var/www/html/cacti/lib/html_reports.php:38 msgid "Give this Report a descriptive Name" msgstr "Dar a este Reporte un nombre descriptivo" #: /var/www/html/cacti/lib/html_reports.php:43 msgid "Enable Report" msgstr "Habilitar Reporte" #: /var/www/html/cacti/lib/html_reports.php:46 msgid "Check this box to enable this Report." msgstr "Marca esta casilla para habilitar este Reporte." #: /var/www/html/cacti/lib/html_reports.php:51 msgid "Output Formatting" msgstr "Dando formato al resultado" #: /var/www/html/cacti/lib/html_reports.php:56 msgid "Use Custom Format HTML" msgstr "Usar Formato HTML personalizado" #: /var/www/html/cacti/lib/html_reports.php:59 msgid "Check this box if you want to use custom html and CSS for the report." msgstr "" "Marca esta casilla si quieres usar html personalizado y CSS para el reporte." #: /var/www/html/cacti/lib/html_reports.php:64 msgid "Format File to Use" msgstr "Formato de archivo a usar" #: /var/www/html/cacti/lib/html_reports.php:67 msgid "" "Choose the custom html wrapper and CSS file to use. This file contains both " "html and CSS to wrap around your report.\n" "\t\tIf it contains more than simply CSS, you need to place a special " " tag inside of the file. This format tag will be replaced by the " "report content. These files are located in the 'formats' directory." msgstr "" "Elige el wrapper de html personalizado y archivo CSS a usar. Este archivo " "contiene ambos html y CSS para formatear tu reporte.\n" "Si contiene mas que simple CSS, necesitas colocar una etiqueta especial " " adentro del archivo. Esta etiqueta de formato sera reemplazada por " "el contenido del reporte. Estos archivos estan ubicados en el directorio " "'formats'." #: /var/www/html/cacti/lib/html_reports.php:73 msgid "Default Text Font Size" msgstr "Tamaño de fuente de texto por defecto" #: /var/www/html/cacti/lib/html_reports.php:74 msgid "" "Defines the default font size for all text in the report including the " "Report Title." msgstr "" "Define el tamaño de fuente por defecto para todo el texto en el reporte " "incluyendo el título del Reporte." #: /var/www/html/cacti/lib/html_reports.php:81 msgid "Default Object Alignment" msgstr "Alineación de objectos por defecto" #: /var/www/html/cacti/lib/html_reports.php:82 msgid "Defines the default Alignment for Text and Graphs." msgstr "Define la alineación por defecto para textos y gráficos." #: /var/www/html/cacti/lib/html_reports.php:89 msgid "Graph Linked" msgstr "Gráfico vinculado" #: /var/www/html/cacti/lib/html_reports.php:92 msgid "Should the Graphs be linked back to the Cacti site?" msgstr "Estos gráficos deben estar vinculados de vuelta al sitio de Cacti?" #: /var/www/html/cacti/lib/html_reports.php:96 msgid "Graph Settings" msgstr "Opciones de gráfico" #: /var/www/html/cacti/lib/html_reports.php:101 msgid "Graph Columns" msgstr "Columnas de gráfico" #: /var/www/html/cacti/lib/html_reports.php:105 msgid "The number of Graph columns." msgstr "El número de columnas de gráfico." #: /var/www/html/cacti/lib/html_reports.php:113 msgid "The Graph width in pixels." msgstr "El ancho del gráfico en píxeles." #: /var/www/html/cacti/lib/html_reports.php:121 msgid "The Graph height in pixels." msgstr "La altura del gráfico en píxeles." #: /var/www/html/cacti/lib/html_reports.php:128 msgid "Should the Graphs be rendered as Thumbnails?" msgstr "Estos gráficos deben representarse como miniaturas?" #: /var/www/html/cacti/lib/html_reports.php:132 msgid "Email Frequency" msgstr "Frecuencia de correo" #: /var/www/html/cacti/lib/html_reports.php:137 msgid "Next Timestamp for Sending Mail Report" msgstr "Próxima fecha y hora para enviar correo de Reporte" #: /var/www/html/cacti/lib/html_reports.php:138 msgid "" "Start time for [first|next] mail to take place. All future mailing times " "will be based upon this start time. A good example would be 2:00am. The time " "must be in the future. If a fractional time is used, say 2:00am, it is " "assumed to be in the future." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:146 msgid "Report Interval" msgstr "Intervalo de Reporte" #: /var/www/html/cacti/lib/html_reports.php:147 msgid "Defines a Report Frequency relative to the given Mailtime above." msgstr "" "Define frecuencia de reporte relacionado al tiempo de correo arriba dado." #: /var/www/html/cacti/lib/html_reports.php:148 msgid "e.g. 'Week(s)' represents a weekly Reporting Interval." msgstr "ej: 'Semana(s)' representa un invervalo de reporte semanal." #: /var/www/html/cacti/lib/html_reports.php:155 msgid "Interval Frequency" msgstr "Intervalo de frecuencia" #: /var/www/html/cacti/lib/html_reports.php:156 msgid "" "Based upon the Timespan of the Report Interval above, defines the Frequency " "within that Interval." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:157 msgid "" "e.g. If the Report Interval is 'Month(s)', then '2' indicates Every '2 " "Month(s) from the next Mailtime.' Lastly, if using the Month(s) Report " "Intervals, the 'Day of Week' and the 'Day of Month' are both calculated " "based upon the Mailtime you specify above." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:165 msgid "Email Sender/Receiver Details" msgstr "Detalles de remitente/destinatario del correo" #: /var/www/html/cacti/lib/html_reports.php:170 msgid "Subject" msgstr "Asunto" #: /var/www/html/cacti/lib/html_reports.php:172 msgid "Cacti Report" msgstr "Reporte de Cacti" #: /var/www/html/cacti/lib/html_reports.php:173 msgid "" "This value will be used as the default Email subject. The report name will " "be used if left blank." msgstr "" "Este valor será usado como Asunto de correo predeterminado. El nombre del " "reporte será usado si se deja en blanco." #: /var/www/html/cacti/lib/html_reports.php:181 msgid "This Name will be used as the default E-mail Sender" msgstr "Este nombre sera usado como enviador de E-mail por defecto" #: /var/www/html/cacti/lib/html_reports.php:189 msgid "This Address will be used as the E-mail Senders address" msgstr "Esta dirección sera usada como la dirección de remitente del correo" #: /var/www/html/cacti/lib/html_reports.php:194 msgid "To Email Address(es)" msgstr "Direccion(es) de destinario(s)" #: /var/www/html/cacti/lib/html_reports.php:200 msgid "Please separate multiple addresses by comma (,)" msgstr "Por favor separar multiples direcciones con coma (,)" #: /var/www/html/cacti/lib/html_reports.php:205 msgid "BCC Address(es)" msgstr "Direccion(es) BCC" #: /var/www/html/cacti/lib/html_reports.php:211 msgid "Blind carbon copy. Please separate multiple addresses by comma (,)" msgstr "" "Copia de carbon oculta. Por favor separar multiples direcciones con coma (,)" #: /var/www/html/cacti/lib/html_reports.php:216 msgid "Image attach type" msgstr "Tipo de imagen adjunta" #: /var/www/html/cacti/lib/html_reports.php:219 msgid "Select one of the given Types for the Image Attachments" msgstr "Seleccionado uno de los siguientes tipos para los adjuntos de imágenes" #: /var/www/html/cacti/lib/html_reports.php:302 msgid "Item Type to be added." msgstr "Tipo de Item a ser agregado." #: /var/www/html/cacti/lib/html_reports.php:308 msgid "Graph Tree" msgstr "Arbol de gráfico" #: /var/www/html/cacti/lib/html_reports.php:312 msgid "Select a Tree to use." msgstr "Selecciona un Arbol para usar." #: /var/www/html/cacti/lib/html_reports.php:318 msgid "Graph Tree Branch" msgstr "Rama del Arbol de gráfico" #: /var/www/html/cacti/lib/html_reports.php:322 msgid "Select a Tree Branch to use." msgstr "Selecciona una rama del Arbol para usar." #: /var/www/html/cacti/lib/html_reports.php:324 msgid "Branch:" msgstr "Rama:" #: /var/www/html/cacti/lib/html_reports.php:330 #: /var/www/html/cacti/lib/html_tree.php:643 msgid "Device:" msgstr "Dispositivo:" #: /var/www/html/cacti/lib/html_reports.php:340 msgid "Cascade to Branches" msgstr "Cascada de ramas" #: /var/www/html/cacti/lib/html_reports.php:343 msgid "Should all children branch Graphs be rendered?" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:347 msgid "Graph Name Regular Expression" msgstr "Expresión regular para nombre de gráfico" #: /var/www/html/cacti/lib/html_reports.php:350 msgid "" "A Perl compatible regular expression (REGEXP) used to select graphs to " "include from the tree." msgstr "" "Una expresión regular compatible con Perl (REGEXP) usado para seleccionar " "los gráficos a incluir desde el arbol." #: /var/www/html/cacti/lib/html_reports.php:360 msgid "Select a Device Template to use." msgstr "Selecciona una Plantilla de dispositivo para usar." #: /var/www/html/cacti/lib/html_reports.php:369 msgid "Select a Device to specify a Graph" msgstr "Selecciona un dispositivo para especificar un gráfico" #: /var/www/html/cacti/lib/html_reports.php:379 msgid "Select a Graph Template for the host" msgstr "Selecciona una Plantilla de gráfico para este equipo" #: /var/www/html/cacti/lib/html_reports.php:389 msgid "The Graph to use for this report item." msgstr "El gráfico a usar para este item de reporte." #: /var/www/html/cacti/lib/html_reports.php:399 msgid "Graph End Time is always set to Cacti's schedule." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:400 msgid "Graph Start Time equals Graph End Time minus given timespan" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:405 #: /var/www/html/cacti/lib/html_reports.php:1249 msgid "Alignment" msgstr "Alineación" #: /var/www/html/cacti/lib/html_reports.php:408 msgid "Alignment of the Item" msgstr "Alineación del item" #: /var/www/html/cacti/lib/html_reports.php:413 msgid "Fixed Text" msgstr "Texto fijado" #: /var/www/html/cacti/lib/html_reports.php:416 msgid "Enter descriptive Text" msgstr "Ingresa un texto descriptivo" #: /var/www/html/cacti/lib/html_reports.php:421 #: /var/www/html/cacti/lib/html_reports.php:1250 msgid "Font Size" msgstr "Tamaño de Fuente" #: /var/www/html/cacti/lib/html_reports.php:425 msgid "Font Size of the Item" msgstr "Tamaño de Fuente del item" #: /var/www/html/cacti/lib/html_reports.php:488 msgid "Date/Time moved to the same time Tomorrow" msgstr "Fecha/Hora movida a la misma hora mañana" #: /var/www/html/cacti/lib/html_reports.php:671 msgid "You must select at least one Report." msgstr "Debes seleccionar al menos un Reporte." #: /var/www/html/cacti/lib/html_reports.php:679 msgid "Click 'Continue' to delete the following Report(s)." msgstr "" "Haga click en 'Continuar' para eliminar el/los siguiente(s) Reporte(s)." #: /var/www/html/cacti/lib/html_reports.php:686 msgid "Click 'Continue' to take ownership of the following Report(s)." msgstr "" "Haga click en 'Continuar' para apropiarte de el/los siguiente(s) Reporte(s)." #: /var/www/html/cacti/lib/html_reports.php:693 msgid "" "Click 'Continue' to duplicate the following Report(s). You may optionally " "change the title for the new Reports" msgstr "" "Haga click en 'Continuar' para duplicar el/los siguiente(s) Reporte(s). " "Opcionalmente, puedes cambiar el titulo para los nuevos Reportes" #: /var/www/html/cacti/lib/html_reports.php:695 msgid "Name Format:" msgstr "Nombre de Formato:" #: /var/www/html/cacti/lib/html_reports.php:705 msgid "Click 'Continue' to enable the following Report(s)." msgstr "" "Haga click en 'Continuar' para habilitar el/los siguiente(s) Reporte(s)." #: /var/www/html/cacti/lib/html_reports.php:707 msgid "" "Please be certain that those Report(s) have successfully been tested first!" msgstr "" "Por favor asegurate que ese/esos Reporte(s) han sido probados " "satisfactoriamente primero!" #: /var/www/html/cacti/lib/html_reports.php:713 msgid "Click 'Continue' to disable the following Reports." msgstr "Haga click en 'Continuar' para deshabilitar los siguientes Reportes." #: /var/www/html/cacti/lib/html_reports.php:720 msgid "Click 'Continue' to send the following Report(s) now." msgstr "" "Haga click en 'Continuar' para enviar el/los siguiente(s) Reporte(s) ahora." #: /var/www/html/cacti/lib/html_reports.php:766 #, php-format msgid "Unable to send Report '%d'. Please set destination e-mail addresses" msgstr "" "Imposible enviar el Reporte '%d'. Por favor especifica los destinatarios de " "correo" #: /var/www/html/cacti/lib/html_reports.php:771 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail subject" msgstr "" "Imposible enviar el Reporte '%s'. Por favor especifica un Asunto de correo" #: /var/www/html/cacti/lib/html_reports.php:776 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail From Name" msgstr "" "Imposible enviar el Reporte '%s'. Por favor especifica un nombre de " "remitente de correo" #: /var/www/html/cacti/lib/html_reports.php:781 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail from address" msgstr "" "Imposible enviar el Reporte '%s'. Por favor especifica un remitente de correo" #: /var/www/html/cacti/lib/html_reports.php:826 #, php-format msgid "Report Item [edit Report: %s]" msgstr "Item de Reporte [editar Reporte: %s]" #: /var/www/html/cacti/lib/html_reports.php:828 #, php-format msgid "Report Item [new Report: %s]" msgstr "Item de Reporte [nuevo Reporte: %s]" #: /var/www/html/cacti/lib/html_reports.php:1094 #: /var/www/html/cacti/user_admin.php:1951 #, php-format msgid "[edit: %s]" msgstr "[editar: %s]" #: /var/www/html/cacti/lib/html_reports.php:1095 msgid "Events" msgstr "Eventos" #: /var/www/html/cacti/lib/html_reports.php:1097 #: /var/www/html/cacti/lib/import.php:1802 #: /var/www/html/cacti/user_admin.php:1953 msgid "[new]" msgstr "[nuevo]" #: /var/www/html/cacti/lib/html_reports.php:1129 msgid "Send Report" msgstr "Enviar Reporte" #: /var/www/html/cacti/lib/html_reports.php:1207 msgid "Scheduled Events" msgstr "Eventos agendados" #: /var/www/html/cacti/lib/html_reports.php:1218 msgid "Report Preview" msgstr "Vista previa de Reporte" #: /var/www/html/cacti/lib/html_reports.php:1247 msgid "Item Details" msgstr "Detalles de Item" #: /var/www/html/cacti/lib/html_reports.php:1248 msgid "Timespan" msgstr "Fecha y hora" #: /var/www/html/cacti/lib/html_reports.php:1287 msgid "(All Branches)" msgstr "(Todas las ramas)" #: /var/www/html/cacti/lib/html_reports.php:1289 msgid "(Current Branch)" msgstr "(Rama actual)" #: /var/www/html/cacti/lib/html_reports.php:1332 msgid "No Report Items" msgstr "No Items de Reporte" #: /var/www/html/cacti/lib/html_reports.php:1406 msgid "Administrator Level" msgstr "Nivel de Administrador" #: /var/www/html/cacti/lib/html_reports.php:1406 #, php-format msgid "Reports [%s]" msgstr "Reportes [%s]" #: /var/www/html/cacti/lib/html_reports.php:1406 msgid "User Level" msgstr "Nivel de Usuario" #: /var/www/html/cacti/lib/html_reports.php:1429 #: /var/www/html/cacti/lib/html_reports.php:1500 msgid "Reports" msgstr "Reportes" #: /var/www/html/cacti/lib/html_reports.php:1509 #: /var/www/html/cacti/tree.php:1741 msgid "Owner" msgstr "Autor" #: /var/www/html/cacti/lib/html_reports.php:1510 #: /var/www/html/cacti/lib/html_reports.php:1521 msgid "Frequency" msgstr "Frecuencia" #: /var/www/html/cacti/lib/html_reports.php:1511 #: /var/www/html/cacti/lib/html_reports.php:1522 msgid "Last Run" msgstr "Ultima ejecución" #: /var/www/html/cacti/lib/html_reports.php:1512 #: /var/www/html/cacti/lib/html_reports.php:1523 msgid "Next Run" msgstr "Próxima ejecución" #: /var/www/html/cacti/lib/html_reports.php:1520 msgid "Report Title" msgstr "Título del Reporte" #: /var/www/html/cacti/lib/html_reports.php:1551 msgid "Report Disabled - No Owner" msgstr "Reporte deshabilitado - Sin propietario" #: /var/www/html/cacti/lib/html_reports.php:1561 msgid "Multiple" msgstr "Múltiple" #: /var/www/html/cacti/lib/html_reports.php:1562 msgid "Invalid" msgstr "Inválido" #: /var/www/html/cacti/lib/html_reports.php:1569 msgid "No Reports Found" msgstr "Ningún Reporte encontrado" #: /var/www/html/cacti/lib/html_tree.php:630 #: /var/www/html/cacti/lib/html_tree.php:633 #: /var/www/html/cacti/lib/html_tree.php:636 msgid "Graph Template:" msgstr "Plantilla de gráfico:" #: /var/www/html/cacti/lib/html_tree.php:641 #: /var/www/html/cacti/lib/reports.php:901 msgid "Tree:" msgstr "Arbol:" #: /var/www/html/cacti/lib/html_tree.php:642 #: /var/www/html/cacti/lib/reports.php:906 msgid "Leaf:" msgstr "Hoja:" #: /var/www/html/cacti/lib/html_tree.php:644 msgid "Site:" msgstr "Sitio:" #: /var/www/html/cacti/lib/html_tree.php:647 msgid "Applied" msgstr "Aplicado" #: /var/www/html/cacti/lib/html_tree.php:647 msgid "Filter" msgstr "Filtro" #: /var/www/html/cacti/lib/html_tree.php:647 msgid "Graph Filters" msgstr "Filtros de gráfico" #: /var/www/html/cacti/lib/html_tree.php:694 msgid "Set/Refresh Filter" msgstr "Especificar/Refrescar filtro" #: /var/www/html/cacti/lib/html_utility.php:229 msgid "Selected" msgstr "Seleccionado" #: /var/www/html/cacti/lib/html_utility.php:431 #: /var/www/html/cacti/lib/html_utility.php:647 #, php-format msgid "The search term \"%s\" is not valid. Error is %s" msgstr "El términio de búsqueda \"%s\" no es válido. El error es %s" #: /var/www/html/cacti/lib/html_utility.php:790 msgid "There was an internal error!" msgstr "Hubo un error interno!" #: /var/www/html/cacti/lib/html_utility.php:791 msgid "Backtrack limit was exhausted!" msgstr "Límite de recursión agotado!" #: /var/www/html/cacti/lib/html_utility.php:792 msgid "Recursion limit was exhausted!" msgstr "Límite de recursión fue agotado!" #: /var/www/html/cacti/lib/html_utility.php:793 msgid "Bad UTF-8 error!" msgstr "Error mal UTF-8!" #: /var/www/html/cacti/lib/html_utility.php:794 msgid "Bad UTF-8 offset error!" msgstr "Error mal offset UTF-8!" #: /var/www/html/cacti/lib/html_validate.php:54 #, php-format msgid "" "Validation error for variable %s with a value of %s. See backtrace below " "for more details." msgstr "" #: /var/www/html/cacti/lib/import.php:229 msgid "written" msgstr "escrito" #: /var/www/html/cacti/lib/import.php:231 msgid "could not open" msgstr "no se ha podido abrir" #: /var/www/html/cacti/lib/import.php:237 msgid "not exists" msgstr "no existen" #: /var/www/html/cacti/lib/import.php:240 #: /var/www/html/cacti/lib/import.php:244 msgid "not writable" msgstr "no escribible" #: /var/www/html/cacti/lib/import.php:246 msgid "writable" msgstr "escribible" #: /var/www/html/cacti/lib/import.php:1763 msgid "Import Preview Results" msgstr "Importar resultados de vista previa" #: /var/www/html/cacti/lib/import.php:1763 msgid "Import Results" msgstr "Importar resultados" #: /var/www/html/cacti/lib/import.php:1767 msgid "Cacti would make the following changes if the Package was imported:" msgstr "Cacti haría los siguientes cambios si el paquete fue importado:" #: /var/www/html/cacti/lib/import.php:1769 msgid "Cacti has imported the following items for the Package:" msgstr "Cacti ha importado los siguientes items del paquete:" #: /var/www/html/cacti/lib/import.php:1772 msgid "Package Files" msgstr "Archivos del paquete" #: /var/www/html/cacti/lib/import.php:1776 msgid "[preview] " msgstr "[vista previa] " #: /var/www/html/cacti/lib/import.php:1781 msgid "Cacti would make the following changes if the Template was imported:" msgstr "Cacti haría los siguientes cambios si la Plantilla fue importada:" #: /var/www/html/cacti/lib/import.php:1783 msgid "Cacti has imported the following items for the Template:" msgstr "Cacti ha importado los siguientes items para la Plantilla:" #: /var/www/html/cacti/lib/import.php:1792 msgid "[success]" msgstr "[exitoso]" #: /var/www/html/cacti/lib/import.php:1794 msgid "[fail]" msgstr "[fallo]" #: /var/www/html/cacti/lib/import.php:1796 msgid "[preview]" msgstr "[previo]" #: /var/www/html/cacti/lib/import.php:1800 msgid "[updated]" msgstr "[actualizado]" #: /var/www/html/cacti/lib/import.php:1804 msgid "[unchanged]" msgstr "[no cargado]" #: /var/www/html/cacti/lib/import.php:1840 msgid "Found Dependency:" msgstr "Dependencia encontrada:" #: /var/www/html/cacti/lib/import.php:1842 msgid "Unmet Dependency:" msgstr "Dependencia no cumplida:" #: /var/www/html/cacti/lib/ldap.php:279 /var/www/html/cacti/lib/ldap.php:457 #: /var/www/html/cacti/lib/ldap.php:636 msgid "PHP LDAP not enabled" msgstr "LDAP PHP no habilitado" #: /var/www/html/cacti/lib/ldap.php:286 /var/www/html/cacti/lib/ldap.php:465 #: /var/www/html/cacti/lib/ldap.php:644 msgid "No username defined" msgstr "Nombre de usuario no definido" #: /var/www/html/cacti/lib/ldap.php:313 msgid "Protocol Error, Unable to set version" msgstr "Error de protocolo, imposible especificar la versión" #: /var/www/html/cacti/lib/ldap.php:324 /var/www/html/cacti/lib/ldap.php:529 #: /var/www/html/cacti/lib/ldap.php:708 msgid "Unable to set referrals option" msgstr "No es posible especificar las opciones referencia" #: /var/www/html/cacti/lib/ldap.php:336 /var/www/html/cacti/lib/ldap.php:542 #: /var/www/html/cacti/lib/ldap.php:721 msgid "Protocol Error, unable to start TLS communications" msgstr "Error de protocolo, no es posible iniciar la comunicación TLS" #: /var/www/html/cacti/lib/ldap.php:375 /var/www/html/cacti/lib/ldap.php:394 msgid "Authentication Success" msgstr "Autenticación exitosa" #: /var/www/html/cacti/lib/ldap.php:378 msgid "Insufficient access" msgstr "Acceso insuficiente" #: /var/www/html/cacti/lib/ldap.php:385 msgid "Group DN could not be found to compare" msgstr "El Grupo DN no pudo ser encontrado para comparar" #: /var/www/html/cacti/lib/ldap.php:402 /var/www/html/cacti/lib/ldap.php:586 #: /var/www/html/cacti/lib/ldap.php:771 msgid "Protocol Error" msgstr "Error de protocolo" #: /var/www/html/cacti/lib/ldap.php:406 msgid "Authentication Failure" msgstr "Falla de autenticación" #: /var/www/html/cacti/lib/ldap.php:410 /var/www/html/cacti/lib/ldap.php:596 #: /var/www/html/cacti/lib/ldap.php:781 msgid "Insufficient Access" msgstr "Acceso insuficiente" #: /var/www/html/cacti/lib/ldap.php:414 /var/www/html/cacti/lib/ldap.php:601 #: /var/www/html/cacti/lib/ldap.php:786 msgid "Unable to Connect to Server" msgstr "No es posible conectarse al servidor" #: /var/www/html/cacti/lib/ldap.php:418 /var/www/html/cacti/lib/ldap.php:606 #: /var/www/html/cacti/lib/ldap.php:791 msgid "Connection Timeout" msgstr "Tiempo de conexión agotado" #: /var/www/html/cacti/lib/ldap.php:422 /var/www/html/cacti/lib/ldap.php:611 #: /var/www/html/cacti/lib/ldap.php:796 msgid "General Bind Error, LDAP result:" msgstr "Error union general, resultado LDAP:" #: /var/www/html/cacti/lib/ldap.php:428 msgid "Unable to Create LDAP Object" msgstr "No es posible crear el objecto LDAP" #: /var/www/html/cacti/lib/ldap.php:481 /var/www/html/cacti/lib/ldap.php:560 #: /var/www/html/cacti/lib/ldap.php:660 msgid "User found" msgstr "Usuario encontrado" #: /var/www/html/cacti/lib/ldap.php:488 /var/www/html/cacti/lib/ldap.php:667 msgid "Specific DN and Password required" msgstr "DN y contraseña especificas requeridas" #: /var/www/html/cacti/lib/ldap.php:517 /var/www/html/cacti/lib/ldap.php:696 msgid "Protocol Error, unable to set version" msgstr "Error de protocolo, no es posible especificar la versión" #: /var/www/html/cacti/lib/ldap.php:566 msgid "More than one matching user found" msgstr "Mas de una coincidencia de usuario encontrada" #: /var/www/html/cacti/lib/ldap.php:571 /var/www/html/cacti/lib/ldap.php:577 msgid "Unable to find users DN" msgstr "No es posible encontrar los usuarios DN" #: /var/www/html/cacti/lib/ldap.php:591 /var/www/html/cacti/lib/ldap.php:776 msgid "Invalid Credentials" msgstr "Credenciales invalidas" #: /var/www/html/cacti/lib/ldap.php:618 /var/www/html/cacti/lib/ldap.php:803 msgid "Unable to create LDAP connection object" msgstr "No es posible crear el objecto de la conexión LDAP" #: /var/www/html/cacti/lib/ldap.php:752 msgid "CN found" msgstr "CN encontrado" #: /var/www/html/cacti/lib/ldap.php:756 msgid "To many records find" msgstr "Demasiados registros que encontrar" #: /var/www/html/cacti/lib/ldap.php:762 msgid "Unable to find this CN" msgstr "No es posible encontrar este CN" #: /var/www/html/cacti/lib/ping.php:130 msgid "ICMP Ping timed out" msgstr "Tiempo agotado de Ping ICMP" #: /var/www/html/cacti/lib/ping.php:202 /var/www/html/cacti/lib/ping.php:220 #, php-format msgid "ICMP Ping Success (%s ms)" msgstr "Ping ICMP satisfactorio (%s ms)" #: /var/www/html/cacti/lib/ping.php:207 /var/www/html/cacti/lib/ping.php:225 msgid "ICMP ping Timed out" msgstr "Tiempo agotado de ping ICMP" #: /var/www/html/cacti/lib/ping.php:232 /var/www/html/cacti/lib/ping.php:451 #: /var/www/html/cacti/lib/ping.php:580 msgid "Destination address not specified" msgstr "Dirección de destino no especificada" #: /var/www/html/cacti/lib/ping.php:329 /var/www/html/cacti/lib/ping.php:466 msgid "default" msgstr "predeterminado" #: /var/www/html/cacti/lib/ping.php:357 /var/www/html/cacti/lib/ping.php:366 #: /var/www/html/cacti/lib/ping.php:494 /var/www/html/cacti/lib/ping.php:503 msgid "Please upgrade to PHP 5.5.4+ for IPv6 support!" msgstr "Por favor actualiza PHP a versión 5.5.4+ para soporte IPv6!" #: /var/www/html/cacti/lib/ping.php:389 #, php-format msgid "UDP ping error: %s" msgstr "Error de Ping UDP: %s" #: /var/www/html/cacti/lib/ping.php:429 #, php-format msgid "UDP Ping Success (%s ms)" msgstr "Exito de Ping UDP (%s ms)" #: /var/www/html/cacti/lib/ping.php:526 #, php-format msgid "TCP ping: socket_connect(), reason: %s" msgstr "Ping TCP: socket_connect(), motivo: %s" #: /var/www/html/cacti/lib/ping.php:544 #, php-format msgid "TCP ping: socket_select() failed, reason: %s" msgstr "Ping TCP: socket_select() fallo, motivo: %s" #: /var/www/html/cacti/lib/ping.php:559 #, php-format msgid "TCP Ping Success (%s ms)" msgstr "Exito de Ping TCP (%s ms)" #: /var/www/html/cacti/lib/ping.php:569 msgid "TCP ping timed out" msgstr "Ping TCP caducó tiempo de espera" #: /var/www/html/cacti/lib/ping.php:596 msgid "Ping not performed due to setting." msgstr "Ping no realizado debido a la configuración." #: /var/www/html/cacti/lib/plugins.php:498 #, php-format msgid "Plugin %s is required for %s, and it is not installed." msgstr "Se requiere Plugin %s para %s, y no está instalado." #: /var/www/html/cacti/lib/plugins.php:505 msgid "Plugin cannot be installed." msgstr "Plugin no puede ser instalado." #: /var/www/html/cacti/lib/plugins.php:785 #: /var/www/html/cacti/lib/plugins.php:792 /var/www/html/cacti/plugins.php:279 msgid "Plugin Management" msgstr "Administración de Plugin" #: /var/www/html/cacti/lib/plugins.php:803 #: /var/www/html/cacti/lib/plugins.php:809 #, php-format msgid "Requires: Cacti >= %s" msgstr "Requiere: Cacti >= %s" #: /var/www/html/cacti/lib/plugins.php:806 msgid "Legacy Plugin" msgstr "Plugins legados 1.x" #: /var/www/html/cacti/lib/reports.php:911 msgid "Host:" msgstr "Equipo:" #: /var/www/html/cacti/lib/reports.php:916 msgid "Graph:" msgstr "Gráfico:" #: /var/www/html/cacti/lib/reports.php:1018 msgid "(No Graph Template)" msgstr "(Ninguna Plantilla de Gráfico)" #: /var/www/html/cacti/lib/reports.php:1437 msgid "Add to Report" msgstr "Agregar a Reporte" #: /var/www/html/cacti/lib/reports.php:1455 msgid "" "Choose the Report to associate these graphs with. The defaults for " "alignment will be used for each graph in the list below." msgstr "" "Elige el Reporte para asociar a estos gráficos. Se usarán las alineaciones " "por defecto para cada gráfico en la lista debajo." #: /var/www/html/cacti/lib/reports.php:1457 msgid "Report:" msgstr "Reporte:" #: /var/www/html/cacti/lib/reports.php:1465 msgid "Graph Timespan:" msgstr "Fecha y hora de gráfico:" #: /var/www/html/cacti/lib/reports.php:1468 msgid "Graph Alignment:" msgstr "Alineación del gráfico:" #: /var/www/html/cacti/lib/reports.php:1557 #, php-format msgid "Created Report Graph Item '%s'" msgstr "Item de Reporte de gráfico creado '%s'" #: /var/www/html/cacti/lib/reports.php:1559 #, php-format msgid "Failed Adding Report Graph Item '%s' Already Exists" msgstr "Fallo agregando Item de Reporte de gráfico '%s' Ya existe" #: /var/www/html/cacti/lib/reports.php:1562 #, php-format msgid "Skipped Report Graph Item '%s' Already Exists" msgstr "Item de Reporte de gráfico omitido '%s' Ya existe" #: /var/www/html/cacti/lib/rrd.php:2417 #, php-format msgid "Required RRD step size is '%s'" msgstr "El tamaño de step RRD requerido es '%s'" #: /var/www/html/cacti/lib/rrd.php:2455 #, php-format msgid "Type for Data Source '%s' should be '%s'" msgstr "Tipo para Data Source '%s' deberia ser '%s'" #: /var/www/html/cacti/lib/rrd.php:2460 #, php-format msgid "Heartbeat for Data Source '%s' should be '%s'" msgstr "Señal de vida para Data Source '%s' deberia ser '%s'" #: /var/www/html/cacti/lib/rrd.php:2468 #, php-format msgid "RRD minimum for Data Source '%s' should be '%s'" msgstr "RRD minimo para Data Source '%s' deberia ser '%s'" #: /var/www/html/cacti/lib/rrd.php:2492 #, php-format msgid "RRD maximum for Data Source '%s' should be '%s'" msgstr "RRD maximo para Data Source '%s' deberia ser '%s'" #: /var/www/html/cacti/lib/rrd.php:2502 #, php-format msgid "DS '%s' missing in RRDfile" msgstr "DS '%s' ausente en RRDfile" #: /var/www/html/cacti/lib/rrd.php:2511 #, php-format msgid "DS '%s' missing in Cacti definition" msgstr "DS '%s' ausente en la definición de Cacti" #: /var/www/html/cacti/lib/rrd.php:2528 /var/www/html/cacti/lib/rrd.php:2529 #, php-format msgid "Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "Cacti RRA '%s' tiene los mismos CF/steps (%s, %s) que '%s'" #: /var/www/html/cacti/lib/rrd.php:2543 /var/www/html/cacti/lib/rrd.php:2544 #, php-format msgid "File RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "Archivo RRA '%s' tiene los mismos CF/steps (%s, %s) que '%s'" #: /var/www/html/cacti/lib/rrd.php:2575 #, php-format msgid "XFF for cacti RRA id '%s' should be '%s'" msgstr "XFF para cacti RRA id '%s' deberia ser '%s'" #: /var/www/html/cacti/lib/rrd.php:2579 #, php-format msgid "Number of rows for Cacti RRA id '%s' should be '%s'" msgstr "Número de filas para Cacti RRA id '%s' deberia ser '%s'" # traducir rrdfile como archivo RRD? #: /var/www/html/cacti/lib/rrd.php:2595 #, php-format msgid "RRA '%s' missing in RRDfile" msgstr "RRA '%s' ausentes en archivo RRD" #: /var/www/html/cacti/lib/rrd.php:2604 #, php-format msgid "RRA '%s' missing in Cacti definition" msgstr "RRA '%s' faltantes en la definición de Cacti" #: /var/www/html/cacti/lib/rrd.php:2623 msgid "RRD File Information" msgstr "Archivo de información RRD" #: /var/www/html/cacti/lib/rrd.php:2655 msgid "Data Source Items" msgstr "Items de Data Source" #: /var/www/html/cacti/lib/rrd.php:2657 msgid "Minimal Heartbeat" msgstr "Señal de vida mínima" #: /var/www/html/cacti/lib/rrd.php:2658 msgid "Min" msgstr "Min" #: /var/www/html/cacti/lib/rrd.php:2659 msgid "Max" msgstr "Max" #: /var/www/html/cacti/lib/rrd.php:2660 msgid "Last DS" msgstr "Ultimo DS" #: /var/www/html/cacti/lib/rrd.php:2662 msgid "Unknown Sec" msgstr "Sec desconocido" #: /var/www/html/cacti/lib/rrd.php:2690 msgid "Round Robin Archive" msgstr "Archivo Round Robin" #: /var/www/html/cacti/lib/rrd.php:2693 msgid "Cur Row" msgstr "Fila Cur" #: /var/www/html/cacti/lib/rrd.php:2694 msgid "PDP per Row" msgstr "PDP por fila" #: /var/www/html/cacti/lib/rrd.php:2695 msgid "X Files Factor" msgstr "Factor archivos X" #: /var/www/html/cacti/lib/rrd.php:2696 msgid "CDP Prep Value (0)" msgstr "Valor CDP Prep (0)" #: /var/www/html/cacti/lib/rrd.php:2697 msgid "CDP Unknown Data points (0)" msgstr "CDP Puntos de datos desconocidos (0)" #: /var/www/html/cacti/lib/rrd.php:2774 #, php-format msgid "rename %s to %s" msgstr "renombrar %s a %s" #: /var/www/html/cacti/lib/rrd.php:2824 msgid "Error while parsing the XML of rrdtool dump" msgstr "Error mientras se analizaba el XML volcado de rrdtool" #: /var/www/html/cacti/lib/rrd.php:2856 /var/www/html/cacti/lib/rrd.php:2911 #: /var/www/html/cacti/lib/rrd.php:2967 #, php-format msgid "ERROR while writing XML file: %s" msgstr "ERROR mientras se escribía el archivo XML: %s" #: /var/www/html/cacti/lib/rrd.php:2865 #, php-format msgid "Added Data Source(s) to RRDfile: %s" msgstr "Data Source(s) agregados a archivo RRD: %s" #: /var/www/html/cacti/lib/rrd.php:2867 /var/www/html/cacti/lib/rrd.php:2922 #, php-format msgid "ERROR: RRDfile %s not writeable" msgstr "ERROR: archivo RRD %s no es escribible" #: /var/www/html/cacti/lib/rrd.php:2894 /var/www/html/cacti/lib/rrd.php:2950 msgid "Error while parsing the XML of RRDtool dump" msgstr "Error mientras se analizaba el XML volcado de rrdtool" #: /var/www/html/cacti/lib/rrd.php:2920 #, php-format msgid "Deleted RRA(s) from RRDfile: %s" msgstr "RRA(s) eliminados(s) de archivo RRD: %s" #: /var/www/html/cacti/lib/rrd.php:2976 #, php-format msgid "Deleted rra(s) from rrd file: %s" msgstr "RRA(s) eliminado(s) de archivo rrd: %s" #: /var/www/html/cacti/lib/rrd.php:2978 #, php-format msgid "ERROR: RRD file %s not writeable" msgstr "ERROR: archivo RRD %s no es escribible" #: /var/www/html/cacti/lib/rrd.php:3183 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) removed from RRD file\n" msgstr "" "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) eliminados de archivo RRD\n" #: /var/www/html/cacti/lib/rrd.php:3217 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) adding to RRD file\n" msgstr "" "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) agregando a archivo RRD\n" #: /var/www/html/cacti/lib/utility.php:686 msgid "" "MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions " "to choose. Make sure you run the very latest release though which fixes a " "long standing low level networking issue that was casuing spine many issues " "with reliability." msgstr "" "MySQL 5.6+ y MariaDB 10.0+ son grandes versiones, y son muy buenas versiones " "para elegir. Asegúrate de usar las últimas versiones ya que resuelven " "antiguos problemas de redes de bajo nivel que estaban causando a Spine " "muchos problemas de estabilidad." #: /var/www/html/cacti/lib/utility.php:698 #: /var/www/html/cacti/lib/utility.php:728 #, php-format msgid "" "It is recommended that you enable InnoDB in any %s version greater than 5.1." msgstr "" "Se recomienda que habilites InnoDB en cualquier %s versión superior a 5.1." #: /var/www/html/cacti/lib/utility.php:711 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8_general_ci collation type as some characters take more than a " "single byte. If you are first just now installing Cacti, stop, make the " "changes and start over again. If your Cacti has been running and is in " "production, see the internet for instructions on converting your databases " "and tables if you plan on supporting other languages." msgstr "" "Cuando uses Cacti con otros idiomas que no sean Inglés, es importante usar " "el tipo de colación utf8_general_ci ya que algunos caracteres usan más de un " "simple Byte. Si estas instalando Cacti, detente, haz los cambios y vuelve a " "empezar. Si tu sistema Cacti ha estado ejecutándose y está en Producción, " "consulta internet por instrucciones para convertir las tablas de tu base de " "datos si planeas soportar otros idiomas." #: /var/www/html/cacti/lib/utility.php:717 msgid "" "When using Cacti with languages other than English, it is important ot use " "the utf8 character set as some characters take more than a single byte. If " "you are first just now installing Cacti, stop, make the changes and start " "over again. If your Cacti has been running and is in production, see the " "internet for instructions on converting your databases and tables if you " "plan on supporting other languages." msgstr "" "Usando Cacti con otros idiomas que no sean Inglés, es importante usar el set " "de caracteres utf8 ya que algunos caracteres toman mas que un simple byte. " "Si estas instalando Cacti por primera vez, detente, haz los cambios y " "comienza otra vez. Si tu Cacti ha estado corriendo y esta en produccion, " "mira en internet por instrucciones en convertir tus bases de datos y tablas " "si planeas soportar otros idiomas." #: /var/www/html/cacti/lib/utility.php:741 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8mb4_unicode_ci collation type as some characters take more than a " "single byte." msgstr "" "Cuando uses Cacti con otros idiomas que no sean Inglés, es importante usar " "el tipo de colación utf8mb4_unicode_ci ya que algunos caracteres usan más de " "un simple Byte." #: /var/www/html/cacti/lib/utility.php:747 msgid "" "When using Cacti with languages other than English, it is important ot use " "the utf8mb4 character set as some characters take more than a single byte." msgstr "" "Cuando uses Cacti con otros idiomas que no sean Inglés, es importante usar " "el tipo de colación utf8mb4 ya que algunos caracteres usan más de un simple " "Byte." #: /var/www/html/cacti/lib/utility.php:756 #, php-format msgid "" "Depending on the number of logins and use of spine data collector, %s will " "need many connections. The calculation for spine is: total_connections = " "total_processes * (total_threads + script_servers + 1), then you must leave " "headroom for user connections, which will change depending on the number of " "concurrent login accounts." msgstr "" "Dependiendo en el número de ingresos y el uso de Spine como recolector de " "datos, %s necesitará muchas conexiones. El cálculo para Spine es: " "total_connections = total_processes * (total_threads + script_servers + 1), " "entonces debes dejar un espacio para las conexiones de usuarios, que " "cambiará dependiendo del número de ingresos de cuentas simultáneos." #: /var/www/html/cacti/lib/utility.php:761 #, php-format msgid "" "If using the Cacti Performance Booster and choosing a memory storage engine, " "you have to be careful to flush your Performance Booster buffer before the " "system runs out of memory table space. This is done two ways, first " "reducing the size of your output column to just the right size. This column " "is in the tables poller_output, and poller_output_boost. The second thing " "you can do is allocate more memory to memory tables. We have arbitrarily " "chosen a recommended value of 10% of system memory, but if you are using SSD " "disk drives, or have a smaller system, you may ignore this recommendation or " "choose a different storage engine. You may see the expected consumption of " "the Performance Booster tables under Console -> System Utilities -> View " "Boost Status." msgstr "" "Si estás usando Cacti Performance Booster y eligiendo un motor de " "almacenamiento en memoria, tienes que tener cuidado de vaciar el buffer de " "Boost antes que tu sistema se quede sin espacio en la tabla de memoria. Esto " "es hecho de dos maneras, primero reduciendo el tamaño de la columna de " "salida al tamaño correcto. Esta columna está en las tablas poller_output y " "poller_output_boost. Lo segundo que puedes hacer es proporcionar mas memoria " "a las tablas de memoria. Hemos elegido arbitrariamente un valor recomendado " "del 10% de la memoria del sistema, pero si estás usando discos SSD, o tienes " "un sistema chico, puedes ignorar esta recomendación o elegir un motor de " "almacenamiento diferente. Puedes ver el consumo esperado de las tablas de " "Boost bajo Consola -> Utilidades de Sistema -> Ver estado de Boost." #: /var/www/html/cacti/lib/utility.php:766 msgid "" "Keeping the table cache larger means less file open/close operations when " "using innodb_file_per_table." msgstr "" "Mantener tablas de cache grande significa menos operaciones de abrir/cerrar " "archivos cuando usas innodb_file_per_table." #: /var/www/html/cacti/lib/utility.php:771 msgid "" "With Remote polling capabilities, large amounts of data will be synced from " "the main server to the remote pollers. Therefore, keep this value at or " "above 16M." msgstr "" "Con funcionalidades de sondeo remoto, grandes cantidades de datos serán " "sincronizados desde el servidor principal a las sondas remotas. Por lo tanto " "configura este valor en 16M o superior." #: /var/www/html/cacti/lib/utility.php:776 msgid "" "When executing subqueries, having a larger temporary table size, keep those " "temporary tables in memory." msgstr "" "Cuando se ejecutan sub consultas, teniendo una tabla temporal de gran " "tamaño, conserva esas tablas temporales en memoria." #: /var/www/html/cacti/lib/utility.php:781 msgid "" "When performing joins, if they are below this size, they will be kept in " "memory and never written to a temporary file." msgstr "" "Cuando ejecutas joins, si están por debajo de este tamaño, serán mantenidos " "en memoria y nunca serán escritos en un archivo temporal." #: /var/www/html/cacti/lib/utility.php:786 #, php-format msgid "" "When using InnoDB storage it is important to keep your table spaces " "separate. This makes managing the tables simpler for long time users of " "%s. If you are running with this currently off, you can migrate to the per " "file storage by enabling the feature, and then running an alter statement on " "all InnoDB tables." msgstr "" "Cuando use almacenamiento InnoDB es importante conservar el espacio de sus " "tablas separado. Esto hace que manejar las tablas sea más simple a largo " "plazo para usuarios de %s. Si se está ejecutando sin esto actualmente, " "puedes migrar al almacenamiento por archivo habilitando la funcionalidad, y " "luego ejecutando una instrucción ALTER a todas las tablas InnoDB." #: /var/www/html/cacti/lib/utility.php:791 #, php-format msgid "" "InnoDB will hold as much tables and indexes in system memory as is " "possible. Therefore, you should make the innodb_buffer_pool large enough to " "hold as much of the tables and index in memory. Checking the size of the /" "var/lib/mysql/cacti directory will help in determining this value. We are " "recommending 25% of your systems total memory, but your requirements will " "vary depending on your systems size." msgstr "" "InnoDB contendrá tantas tablas e índices en la memoria del sistema como sea " "posible. Para eso, deberías incrementar el valor de innodb_buffer_pool lo " "suficiente como para contener las tablas e índices en memoria. Comprobando " "el tamaño del directorio /var/lib/mysql/cacti ayudará a determinar este " "valor. Recomendamos 25% del total de memoria de tu sistema, pero los " "requerimientos pueden variar dependiendo del tamaño de tu sistema." #: /var/www/html/cacti/lib/utility.php:796 #, php-format msgid "" "With modern SSD type storage, this operation actually degrades the disk more " "rapidly and adds a 50% overhead on all write operations." msgstr "" "Con tipos de almacenamiento SSD moderno, esta operación degrada el disco más " "rápido y agrega 50% de sobrecarga en todas las operaciones de escritura." #: /var/www/html/cacti/lib/utility.php:801 msgid "" "This is where metadata is stored. If you had a lot of tables, it would be " "useful to increase this." msgstr "" "Esto es donde se almacenan los Metadatos. Si tuvieras un montón de tablas, " "sería útil incrementar este valor." #: /var/www/html/cacti/lib/utility.php:806 msgid "" "Rogue queries should not for the database to go offline to others. Kill " "these queries before they kill your system." msgstr "" "La base de datos podría quedar inaccesible debido a consultas no " "autorizadas. Elimina estas consultas no autorizadas antes de que afecten tu " "sistema." #: /var/www/html/cacti/lib/utility.php:815 #, php-format msgid "" "Setting this value to 2 means that you will flush all transactions every " "second rather than at commit. This allows %s to perform writing less often." msgstr "" "Especificando este valor a 2 significa que vaciarás toda las transacciones " "cada segundo en lugar de cada consolidación. Esto permite a %s realizar " "escritura no tan seguido." #: /var/www/html/cacti/lib/utility.php:820 msgid "" "With modern SSD type storage, having multiple io threads is advantageous for " "applications with high io characteristics." msgstr "" "Con almacenamiento moderno SSD, teniendo multiples threads de entrada y " "salida es ventajoso para aplicaciones caracterizadas por gran uso de " "operaciones de entrada y salida." #: /var/www/html/cacti/lib/utility.php:828 #, php-format msgid "" "As of %s %s, the you can control how often %s flushes transactions to disk. " "The default is 1 second, but in high I/O systems setting to a value greater " "than 1 can allow disk I/O to be more sequential" msgstr "" "A partir de %s %s, puedes controlar cuan frecuente %s volcar las " "transacciones a disco. Por defecto es 1 segundo, pero en sistemas de altas E/" "S especificar un valor superior a 1 puede permitir que las E/S de disco sean " "más secuenciales" #: /var/www/html/cacti/lib/utility.php:833 msgid "" "With modern SSD type storage, having multiple read io threads is " "advantageous for applications with high io characteristics." msgstr "" "Con tipos de almacenamiento moderno SSD, teniendo múltiples procesos de " "lectura io es ventajoso para aplicaciones caracterizadas por gran uso de " "operaciones de entrada y salida." #: /var/www/html/cacti/lib/utility.php:838 msgid "" "With modern SSD type storage, having multiple write io threads is " "advantageous for applications with high io characteristics." msgstr "" "Con tipos de almacenamiento moderno SSD, teniendo múltiples procesos de " "escritura io es ventajoso para aplicaciones caracterizadas por gran uso de " "operaciones de entrada y salida." #: /var/www/html/cacti/lib/utility.php:843 #, php-format msgid "" "%s will divide the innodb_buffer_pool into memory regions to improve " "performance. The max value is 64. When your innodb_buffer_pool is less " "than 1GB, you should use the pool size divided by 128MB. Continue to use " "this equation upto the max of 64." msgstr "" "%s dividirá innodb_buffer_pool en regiones de memoria para mejorar el " "rendimiento. El valor máximo es 64. Cuando tu innodb_buffer_pool es inferior " "a 1GB, deberías usar el tamaño del pool dividido por 128MB. Sigue usando " "esta ecuación basandote en el máximo de 64." #: /var/www/html/cacti/lib/utility.php:848 #, php-format msgid "%s Tuning" msgstr "%s Optimización" #: /var/www/html/cacti/lib/utility.php:848 msgid "Documentation" msgstr "Documentación" #: /var/www/html/cacti/lib/utility.php:848 msgid "Note: Many changes below require a database restart" msgstr "" "Nota: muchos de los cambios a continuación requieren reiniciar la base de " "datos" #: /var/www/html/cacti/lib/utility.php:855 msgid "Variable" msgstr "Variable" #: /var/www/html/cacti/lib/utility.php:856 msgid "Current Value" msgstr "Valor actual" #: /var/www/html/cacti/lib/utility.php:857 msgid "Recommended Value" msgstr "Valor recomendado" #: /var/www/html/cacti/lib/utility.php:858 msgid "Comments" msgstr "Comentarios" #: /var/www/html/cacti/lib/vdef.php:75 msgid "A useful name for this VDEF." msgstr "Un nombre útil para este VDEF." #: /var/www/html/cacti/links.php:191 msgid "Click 'Continue' to Enable the following Page(s)." msgstr "Haga click en 'Continuar' para habilitar la(s) siguiente(s) pagina(s)." #: /var/www/html/cacti/links.php:196 msgid "Enable Page(s)" msgstr "Habilitar página(s)" #: /var/www/html/cacti/links.php:200 msgid "Click 'Continue' to Disable the following Page(s)." msgstr "" "Haga click en 'Continuar' para deshabilitar la(s) siguiente(s) pagina(s)." #: /var/www/html/cacti/links.php:205 msgid "Disable Page(s)" msgstr "Deshabilitar pagina(s)" #: /var/www/html/cacti/links.php:209 msgid "Click 'Continue' to Delete the following Page(s)." msgstr "Haga click en 'Continuar' para eliminar la(s) siguiente(s) pagina(s)." #: /var/www/html/cacti/links.php:214 msgid "Delete Page(s)" msgstr "Eliminar pagina(s)" #: /var/www/html/cacti/links.php:217 msgid "You must select at least one page." msgstr "Debes seleccionar al menos una pagina." #: /var/www/html/cacti/links.php:315 msgid "Links" msgstr "Enlaces" #: /var/www/html/cacti/links.php:329 msgid "Apply Filter" msgstr "Aplicar filtro" #: /var/www/html/cacti/links.php:330 msgid "Reset filters" msgstr "Resetear filtros" #: /var/www/html/cacti/links.php:344 /var/www/html/cacti/links.php:507 #: /var/www/html/cacti/user_admin.php:1646 #: /var/www/html/cacti/user_group_admin.php:1397 msgid "Top Tab" msgstr "Pestaña Superior" #: /var/www/html/cacti/links.php:345 /var/www/html/cacti/user_admin.php:1647 #: /var/www/html/cacti/user_group_admin.php:1398 msgid "Bottom Console" msgstr "Consola Inferior" #: /var/www/html/cacti/links.php:346 /var/www/html/cacti/user_admin.php:1648 #: /var/www/html/cacti/user_group_admin.php:1399 msgid "Top Console" msgstr "Consola Superior" #: /var/www/html/cacti/links.php:377 msgid "Page" msgstr "Página" #: /var/www/html/cacti/links.php:379 /var/www/html/cacti/links.php:499 #: /var/www/html/cacti/links.php:504 msgid "Style" msgstr "Estilo" #: /var/www/html/cacti/links.php:391 msgid "Edit Page" msgstr "Editar página" #: /var/www/html/cacti/links.php:394 msgid "View Page" msgstr "Ver página" #: /var/www/html/cacti/links.php:418 msgid "Sort for Ordering" msgstr "Orden de clasificación" #: /var/www/html/cacti/links.php:427 msgid "No Pages Found" msgstr "Páginas no encontradas" #: /var/www/html/cacti/links.php:508 msgid "Console Menu" msgstr "Menu de consola" #: /var/www/html/cacti/links.php:509 msgid "Bottom of Console Page" msgstr "Parte inferior de la página de Consola" #: /var/www/html/cacti/links.php:510 msgid "Top of Console Page" msgstr "Parte superior de la página de Consola" #: /var/www/html/cacti/links.php:512 msgid "Where should this page appear?" msgstr "¿Donde debe aparecer esta página?" #: /var/www/html/cacti/links.php:516 msgid "Console Menu Section" msgstr "Sección de Menu de Consola" #: /var/www/html/cacti/links.php:519 msgid "" "Under which Console heading should this item appear? (All External Link " "menus will appear between Configuration and Utilities)" msgstr "" "Bajo qué título de Consola debería aparecer este item? (Todos los menús de " "Enlaces Externos aparecerán entre Configuración y Utilidades)" #: /var/www/html/cacti/links.php:523 msgid "New Console Section" msgstr "Nueva sección de Consola" #: /var/www/html/cacti/links.php:526 msgid "If you don't like any of the choices above, type a new title in here." msgstr "" "Si no te gusta ninguna de las opciones anteriores, escribe un nuevo título " "aquí." #: /var/www/html/cacti/links.php:530 msgid "Tab/Menu Name" msgstr "Nombre de Tab/Menu" #: /var/www/html/cacti/links.php:533 msgid "The text that will appear in the tab or menu." msgstr "El texto que aparecerá en la pestaña o menu." #: /var/www/html/cacti/links.php:537 msgid "Content File/URL" msgstr "Contenido de archivo/URL" #: /var/www/html/cacti/links.php:541 msgid "Web URL Below" msgstr "Enlace Web a continuación" #: /var/www/html/cacti/links.php:542 msgid "" "The file that contains the content for this page. This file needs to be in " "the Cacti 'include/content/' directory." msgstr "" "El archivo que contiene el contenido para esta página. Este archivo necesita " "estar en el directorio 'include/content/' de Cacti." #: /var/www/html/cacti/links.php:546 msgid "Web URL Location" msgstr "Ubicación del enlace Web" #: /var/www/html/cacti/links.php:548 msgid "" "The valid URL to use for this external link. Must include the type, for " "example http://www.cacti.net. Note that many websites do not allow them to " "be embedded in an iframe from a foreign site, and therefore External Linking " "may not work." msgstr "" "URL válida a usar para este enlace externo. Debe incluir el tipo, por " "ejemplo http://www.cacti.net. Ten en cuenta que muchos Sitios web no " "permiten que sean embebidos en un iframe desde un sitio externo, y por lo " "tanto puede ser que el enlace externo no funcione." #: /var/www/html/cacti/links.php:566 #, php-format msgid "External Links [edit: %s]" msgstr "Vínculos externos [editar: %s]" #: /var/www/html/cacti/links.php:568 msgid "External Links [new]" msgstr "Vínculos externos [Nuevo]" #: /var/www/html/cacti/logout.php:74 /var/www/html/cacti/logout.php:128 msgid "Automatic Logout" msgstr "Cierre de sesión automático" #: /var/www/html/cacti/logout.php:76 /var/www/html/cacti/logout.php:130 msgid "You have been logged out of Cacti due to a session timeout." msgstr "Has sido desconectado de Cacti por inactividad." #: /var/www/html/cacti/logout.php:77 /var/www/html/cacti/logout.php:131 #, php-format msgid "Please close your browser or %sLogin Again%s" msgstr "Cierra tu navegador o %sVuelve a Ingresar%s" #: /var/www/html/cacti/managers.php:40 /var/www/html/cacti/managers.php:220 #: /var/www/html/cacti/managers.php:600 msgid "Notifications" msgstr "Notificaciones" #: /var/www/html/cacti/managers.php:141 /var/www/html/cacti/utilities.php:1876 msgid "SNMP Notification Receivers" msgstr "Receptores de notificaciones SNMP" #: /var/www/html/cacti/managers.php:156 /var/www/html/cacti/managers.php:225 #: /var/www/html/cacti/managers.php:529 /var/www/html/cacti/managers.php:829 msgid "Receivers" msgstr "Receptores" #: /var/www/html/cacti/managers.php:217 msgid "Id" msgstr "Id" #: /var/www/html/cacti/managers.php:251 msgid "No SNMP Notification Receivers" msgstr "No hay Receptores de notificaciones SNMP" #: /var/www/html/cacti/managers.php:282 #, php-format msgid "SNMP Notification Receiver [edit: %s]" msgstr "Receptor de notificaciones SNMP [editar: %s]" #: /var/www/html/cacti/managers.php:284 msgid "SNMP Notification Receiver [new]" msgstr "Receptor de notificaciones SNMP [nuevo]" #: /var/www/html/cacti/managers.php:508 /var/www/html/cacti/managers.php:593 #: /var/www/html/cacti/utilities.php:2322 #: /var/www/html/cacti/utilities.php:2396 msgid "MIB" msgstr "MIB" #: /var/www/html/cacti/managers.php:592 /var/www/html/cacti/utilities.php:1457 #: /var/www/html/cacti/utilities.php:2396 msgid "OID" msgstr "OID" #: /var/www/html/cacti/managers.php:594 msgid "Kind" msgstr "Tipo" #: /var/www/html/cacti/managers.php:595 /var/www/html/cacti/utilities.php:2396 msgid "Max-Access" msgstr "Max-acceso" #: /var/www/html/cacti/managers.php:596 msgid "Monitored" msgstr "Monitoreado" #: /var/www/html/cacti/managers.php:632 msgid "No SNMP Notifications" msgstr "No hay notificaciones SNMP" #: /var/www/html/cacti/managers.php:761 /var/www/html/cacti/utilities.php:2573 msgid "Severity" msgstr "Severidad" #: /var/www/html/cacti/managers.php:777 /var/www/html/cacti/utilities.php:2617 msgid "Purge Notification Log" msgstr "Pugar log de notificaciones" #: /var/www/html/cacti/managers.php:824 /var/www/html/cacti/utilities.php:2671 msgid "Time" msgstr "Tiempo" #: /var/www/html/cacti/managers.php:825 /var/www/html/cacti/utilities.php:2671 msgid "Notification" msgstr "Notificación" #: /var/www/html/cacti/managers.php:826 /var/www/html/cacti/utilities.php:2671 msgid "Varbinds" msgstr "Varbinds" #: /var/www/html/cacti/managers.php:843 msgid "Severity Level" msgstr "Nivel de severidad" #: /var/www/html/cacti/managers.php:860 /var/www/html/cacti/utilities.php:2693 msgid "No SNMP Notification Log Entries" msgstr "No hay entradas de log de notificaciones SNMP" #: /var/www/html/cacti/managers.php:1020 msgid "Click 'Continue' to delete the following Notification Receiver" msgid_plural "Click 'Continue' to delete following Notification Receiver" msgstr[0] "" "Haga click en 'Continuar' para eliminar el siguiente receptor de " "notificaciones" msgstr[1] "" "Haga click en 'Continuar' para eliminar los siguientes receptores de " "notificaciones" #: /var/www/html/cacti/managers.php:1022 msgid "Click 'Continue' to enable the following Notification Receiver" msgid_plural "Click 'Continue' to enable following Notification Receiver" msgstr[0] "" "Haga click en 'Continuar' para habilitar el siguiente receptor de " "notificaciones" msgstr[1] "" "Haga click en 'Continuar' para habilitar los siguientes receptores de " "notificaciones" #: /var/www/html/cacti/managers.php:1024 msgid "Click 'Continue' to disable the following Notification Receiver" msgid_plural "Click 'Continue' to disable following Notification Receiver" msgstr[0] "" "Haga click en 'Continuar' para deshabilitar el siguiente receptor de " "notificaciones" msgstr[1] "" "Haga click en 'Continuar' para deshabilitar los siguientes receptores de " "notificaciones" #: /var/www/html/cacti/managers.php:1034 #, php-format msgid "%s Notification Receivers" msgstr "%s Receptores de notificaciones" #: /var/www/html/cacti/managers.php:1036 msgid "You must select at least one Notification Receiver." msgstr "Debes seleccionar al menos receptor de notificaciones." #: /var/www/html/cacti/managers.php:1081 msgid "" "Click 'Continue' to forward the following Notification Objects to this " "Notification Receiver." msgstr "" "Haga click en 'Continuar' para reenviar los siguientes objetos de " "notificación a este receptor de notificaciones." #: /var/www/html/cacti/managers.php:1082 msgid "" "Click 'Continue' to disable forwarding the following Notification Objects to " "this Notification Receiver." msgstr "" "Haga click en 'Continuar' para deshabilitar el reenvio de los siguientes " "objetos de notificación a este receptor de notificaciones." #: /var/www/html/cacti/managers.php:1091 msgid "Disable Notification Objects" msgstr "Desactivar notificaciones de objectos" #: /var/www/html/cacti/managers.php:1093 msgid "You must select at least one notification object." msgstr "Debes seleccionar al menos un objecto de notificación." #: /var/www/html/cacti/plugins.php:28 msgid "Install" msgstr "Instalar" #: /var/www/html/cacti/plugins.php:31 msgid "Uninstall" msgstr "Desinstalar" #: /var/www/html/cacti/plugins.php:36 msgid "Not Compatible" msgstr "No compatible" #: /var/www/html/cacti/plugins.php:37 /var/www/html/cacti/plugins.php:303 #: /var/www/html/cacti/utilities.php:430 msgid "Not Installed" msgstr "No instalado" #: /var/www/html/cacti/plugins.php:39 msgid "Awaiting Configuration" msgstr "Esperando configuración" #: /var/www/html/cacti/plugins.php:40 msgid "Awaiting Upgrade" msgstr "Esperando actualización" #: /var/www/html/cacti/plugins.php:169 msgid "Not Stated" msgstr "No indicado" #: /var/www/html/cacti/plugins.php:301 msgid "Active/Installed" msgstr "Activo/Instalado" #: /var/www/html/cacti/plugins.php:302 msgid "Configuration Issues" msgstr "Problemas de configuración" #: /var/www/html/cacti/plugins.php:307 /var/www/html/cacti/plugins.php:376 msgid "Plugins" msgstr "Plugins" #: /var/www/html/cacti/plugins.php:385 msgid "" "Actions available include 'Install', 'Activate', 'Disable', 'Enable', " "'Uninstall'." msgstr "" "Las acciones disponibles incluyen 'Instalar', 'Activar', 'Desactivar', " "'Activar', 'Desinstalar'." #: /var/www/html/cacti/plugins.php:386 msgid "Plugin Name" msgstr "Nombre de Plugin" #: /var/www/html/cacti/plugins.php:386 msgid "" "The name for this Plugin. The name is controlled by the directory it " "resides in." msgstr "" "El nombre de este Plugin. El nombre es controlado por el directorio en el " "que reside." #: /var/www/html/cacti/plugins.php:387 msgid "A description that the Plugins author has given to the Plugin." msgstr "Una descripción que el autor del Plugin le ha dado al Plugin." #: /var/www/html/cacti/plugins.php:387 msgid "Plugin Description" msgstr "Descripción de Plugin" #: /var/www/html/cacti/plugins.php:388 msgid "The status of this Plugin." msgstr "Estado de este Plugin." #: /var/www/html/cacti/plugins.php:389 msgid "The author of this Plugin." msgstr "Autor de este Plugin." #: /var/www/html/cacti/plugins.php:390 msgid "The version of this Plugin." msgstr "Versión de este Plugin." #: /var/www/html/cacti/plugins.php:391 msgid "Load Order" msgstr "Orden de carga" #: /var/www/html/cacti/plugins.php:391 msgid "" "The load order of the Plugin. You can change the load order by first " "sorting by it, then moving a Plugin either up or down." msgstr "" "El orden de carga del plugin. Puedes cambiar el orden de carga ordenándolos " "por orden de carga y luego moviendo un plugin hacia arriba o hacia abajo." #: /var/www/html/cacti/plugins.php:419 msgid "No Plugins Found" msgstr "No se encontraron Plugins" #: /var/www/html/cacti/plugins.php:437 msgid "ERROR: Directory Missing" msgstr "ERROR: no se encuentra el directorio" #: /var/www/html/cacti/plugins.php:443 #, php-format msgid "Not Compatible, %s" msgstr "No compatible, %s" #: /var/www/html/cacti/plugins.php:454 msgid "Order Before Previous Plugin" msgstr "Ordenar después del Plugin anterior" #: /var/www/html/cacti/plugins.php:459 msgid "Order After Next Plugin" msgstr "Ordenar después del siguiente Plugin" #: /var/www/html/cacti/plugins.php:483 msgid "Install Plugin" msgstr "Instalar Plugin" #: /var/www/html/cacti/plugins.php:487 /var/www/html/cacti/plugins.php:491 #: /var/www/html/cacti/plugins.php:494 msgid "Uninstall Plugin" msgstr "Desinstalar Plugin" #: /var/www/html/cacti/plugins.php:488 msgid "Disable Plugin" msgstr "Deshabilitar Plugin" #: /var/www/html/cacti/plugins.php:495 msgid "Enable Plugin" msgstr "Habilitar Plugin" #: /var/www/html/cacti/plugins.php:498 msgid "Plugin is not compatible" msgstr "El Plugin no es compatible" #: /var/www/html/cacti/pollers.php:32 msgid "Full Sync" msgstr "Sincronización completa" #: /var/www/html/cacti/pollers.php:36 msgid "New/Idle" msgstr "Nuevo/Ocioso" #: /var/www/html/cacti/pollers.php:39 msgid "Unknown/Down" msgstr "Desconocido/Caído" #: /var/www/html/cacti/pollers.php:48 msgid "Data Collector Information" msgstr "Información de la Sonda" #: /var/www/html/cacti/pollers.php:53 msgid "The primary name for this Data Collector." msgstr "El nombre principal para esta Sonda." #: /var/www/html/cacti/pollers.php:56 msgid "New Data Collector" msgstr "Nueva Sonda" #: /var/www/html/cacti/pollers.php:61 msgid "Web Site Hostname" msgstr "Nombre de equipo del sitio Web" #: /var/www/html/cacti/pollers.php:62 msgid "" "The hostname for Data Collector. It may have to be a Fully Qualified Domain " "name for the remote Pollers to contact it for activities such as re-" "indexing, Real-time graphing, etc." msgstr "" "El nombre de equipo para el Recolector de datos. Podría ser un nombre de " "dominio FQDN para que las Sondas remotas se conecten para actividades como " "re-indexación, gráficos en tiempo real, etc." #: /var/www/html/cacti/pollers.php:71 msgid "Notes for this Data Collectors Database." msgstr "Notas para esta base de datos del Recolectores de datos." #: /var/www/html/cacti/pollers.php:78 msgid "Remote Database Connection" msgstr "Conexión de base de datos remota" #: /var/www/html/cacti/pollers.php:83 msgid "The hostname for the remote database server." msgstr "El nombre de equipo para el servidor de la base de datos remota." #: /var/www/html/cacti/pollers.php:91 msgid "Remote Database Name" msgstr "Nombre de la base de datos remota" #: /var/www/html/cacti/pollers.php:92 msgid "The name of the remote database." msgstr "El nombre de la base de datos remota." #: /var/www/html/cacti/pollers.php:100 msgid "Remote Database User" msgstr "Usuario de la base de datos remota" #: /var/www/html/cacti/pollers.php:101 msgid "The user name to use to connect to the remote database." msgstr "El nombre de usuario para conectarse a la base de datos remota." #: /var/www/html/cacti/pollers.php:109 msgid "Remote Database Password" msgstr "Contraseña de la base de datos remota" #: /var/www/html/cacti/pollers.php:110 msgid "The user password to use to connect to the remote database." msgstr "El contraseña del usuario para conectarse a la base de datos remota." #: /var/www/html/cacti/pollers.php:118 msgid "Remote Database Port" msgstr "Puerto de la base de datos remota" #: /var/www/html/cacti/pollers.php:119 msgid "The TCP port to use to connect to the remote database." msgstr "El puerto TCP para conectarse a la base de datos remota." #: /var/www/html/cacti/pollers.php:127 msgid "Remote Database SSL" msgstr "SSL base de datos remota" #: /var/www/html/cacti/pollers.php:128 msgid "If the remote database uses SSL to connect, check the checkbox below." msgstr "" "Si la base de datos remota usa SSL para conectar, activa esta casilla debajo." #: /var/www/html/cacti/pollers.php:283 msgid "" "Click 'Continue' to delete the following Data Collector. Note, all devices " "will be disassociated from this Data Collector and mapped back to the Main " "Cacti Data Collector." msgid_plural "" "Click 'Continue' to delete all following Data Collectors. Note, all devices " "will be disassociated from these Data Collectors and mapped back to the Main " "Cacti Data Collector." msgstr[0] "" "Haga click en 'Continuar' para eliminar la siguiente Sonda. Nota, todos los " "dispositivos serán desacioados de esta Sonda y mapeados de vuelta a la Sonda " "principal de Cacti." msgstr[1] "" "Haga click en 'Continuar' para eliminar las siguientes Sondas. Nota, todos " "los dispositivos serán desacioados de estas Sondas y mapeados de vuelta a la " "Sonda principal de Cacti." #: /var/www/html/cacti/pollers.php:288 msgid "Delete Data Collector" msgid_plural "Delete Data Collectors" msgstr[0] "Eliminar Sonda" msgstr[1] "Eliminar Sondas" #: /var/www/html/cacti/pollers.php:292 msgid "Click 'Continue' to disable the following Data Collector." msgid_plural "Click 'Continue' to disable the following Data Collectors." msgstr[0] "Haga click en 'Continuar' para deshabilitar la siguiente Sonda." msgstr[1] "Haga click en 'Continuar' para deshabilitar las siguientes Sondas." #: /var/www/html/cacti/pollers.php:297 msgid "Disable Data Collector" msgid_plural "Disable Data Collectors" msgstr[0] "Deshabilitar Sonda" msgstr[1] "Deshabilitar Sondas" #: /var/www/html/cacti/pollers.php:301 msgid "Click 'Continue' to enable the following Data Collector." msgid_plural "Click 'Continue' to enable the following Data Collectors." msgstr[0] "Haga click en 'Continuar' para habilitar la siguiente Sonda." msgstr[1] "Haga click en 'Continuar' para habilitar las siguientes Sondas." #: /var/www/html/cacti/pollers.php:306 /var/www/html/cacti/pollers.php:315 msgid "Enable Data Collector" msgid_plural "Enable Data Collectors" msgstr[0] "Habilitar Sonda" msgstr[1] "Habilitar Sondas" #: /var/www/html/cacti/pollers.php:310 msgid "" "Click 'Continue' to Synchronize the Remote Data Collector for Offline " "Operation." msgid_plural "" "Click 'Continue' to Synchronize the Remote Data Collectors for Offline " "Operation." msgstr[0] "" "Haga click en 'Continuar' para sincronizar la Sonda remota para operar sin " "conexión." msgstr[1] "" "Haga click en 'Continuar' para sincronizar las Sondas remotas para operar " "sin conexión." #: /var/www/html/cacti/pollers.php:318 /var/www/html/cacti/sites.php:294 msgid "You must select at least one Site." msgstr "Debes seleccionar al menos in Sitio." #: /var/www/html/cacti/pollers.php:351 /var/www/html/cacti/sites.php:327 #, php-format msgid "Site [edit: %s]" msgstr "Sitio [editar: %s]" #: /var/www/html/cacti/pollers.php:353 /var/www/html/cacti/sites.php:329 msgid "Site [new]" msgstr "Sitio [Nuevo]" #: /var/www/html/cacti/pollers.php:379 msgid "" "Remote Data Collectors must be able to communicate to the Main Data " "Collector, and vice versa. Use this button to verify that the Main Data " "Collector can communicate to this Remote Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:387 msgid "Test Connection" msgstr "Probar la conexión" #: /var/www/html/cacti/pollers.php:387 msgid "Test Database Connection" msgstr "Comprobar la conexión a la base de datos" #: /var/www/html/cacti/pollers.php:523 msgid "Collectors" msgstr "Recolectores de datos" #: /var/www/html/cacti/pollers.php:612 msgid "Collector Name" msgstr "Nombre de la Sonda" #: /var/www/html/cacti/pollers.php:612 msgid "The Name of this Data Collector." msgstr "El nombre para esta Sonda." #: /var/www/html/cacti/pollers.php:613 msgid "The unique id associated with this Data Collector." msgstr "El ID único asociado con esta Sonda." #: /var/www/html/cacti/pollers.php:614 msgid "The Hostname where the Data Collector is running." msgstr "El nombre de equipo donde la Sonda está ejecutándose." #: /var/www/html/cacti/pollers.php:615 msgid "The Status of this Data Collector." msgstr "El estado de esta Sonda." #: /var/www/html/cacti/pollers.php:616 msgid "Polling Time" msgstr "Tiempo de Sondeo" #: /var/www/html/cacti/pollers.php:616 msgid "The last data collection time for this Data Collector." msgstr "Ultima duración de recolección de datos para este Recolector de datos." #: /var/www/html/cacti/pollers.php:617 msgid "The number of Devices associated with this Data Collector." msgstr "El número de dispositivos asociados con esta Sonda." #: /var/www/html/cacti/pollers.php:618 msgid "SNMP Gets" msgstr "SNMP Gets" #: /var/www/html/cacti/pollers.php:618 msgid "The number of SNMP gets associated with this Collector." msgstr "La cantidad de gets SNMP asociados con este Recolector." #: /var/www/html/cacti/pollers.php:619 msgid "Scripts" msgstr "Scripts" #: /var/www/html/cacti/pollers.php:619 msgid "The number of script calls associated with this Data Collector." msgstr "" "La cantidad de llamadas de script asociadas con este Recolector de datos." #: /var/www/html/cacti/pollers.php:620 msgid "Servers" msgstr "Servidores" #: /var/www/html/cacti/pollers.php:620 msgid "The number of script server calls associated with this Data Collector." msgstr "" "La cantidad de llamadas al servidor de script asociadas con este Recolector " "de datos." #: /var/www/html/cacti/pollers.php:621 msgid "Last Finished" msgstr "Finalizado" #: /var/www/html/cacti/pollers.php:621 msgid "The last time this Data Collector completed." msgstr "La última vez que este Recolector de datos completó." #: /var/www/html/cacti/pollers.php:622 msgid "Last Update" msgstr "Ultima actualización" #: /var/www/html/cacti/pollers.php:622 msgid "The last time this Data Collector checked in with the main Cacti site." msgstr "" "La última vez que este Recolector de datos se registró con el sitio " "principal de Cacti." #: /var/www/html/cacti/pollers.php:657 msgid "No Data Collectors Found" msgstr "No se encontraron Recolectores de datos" #: /var/www/html/cacti/rrdcleaner.php:30 /var/www/html/cacti/tree.php:31 msgctxt "dropdown action" msgid "Delete" msgstr "Eliminar" #: /var/www/html/cacti/rrdcleaner.php:31 msgctxt "dropdown action" msgid "Archive" msgstr "Archivar" #: /var/www/html/cacti/rrdcleaner.php:347 msgid "RRD File Name" msgstr "Nombre de archivo RRD" #: /var/www/html/cacti/rrdcleaner.php:348 msgid "DS Name" msgstr "Nombre de DS" #: /var/www/html/cacti/rrdcleaner.php:349 msgid "DS ID" msgstr "ID de DS" #: /var/www/html/cacti/rrdcleaner.php:350 msgid "Template ID" msgstr "ID de Plantilla" #: /var/www/html/cacti/rrdcleaner.php:352 msgid "Last Modified" msgstr "Ultima modificación" #: /var/www/html/cacti/rrdcleaner.php:353 msgid "Size [KB]" msgstr "Tamaño [KB]" #: /var/www/html/cacti/rrdcleaner.php:364 #: /var/www/html/cacti/rrdcleaner.php:365 msgid "Deleted" msgstr "Eliminado" #: /var/www/html/cacti/rrdcleaner.php:373 msgid "No unused RRD Files" msgstr "No hay archivos RRD sin usar" #: /var/www/html/cacti/rrdcleaner.php:395 msgid "Total Size [MB]:" msgstr "Tamaño Total [MB]:" #: /var/www/html/cacti/rrdcleaner.php:397 msgid "Last Scan:" msgstr "Ultimo escaneo:" #: /var/www/html/cacti/rrdcleaner.php:481 msgid "Time Since Update" msgstr "Tiempo desde actualización" #: /var/www/html/cacti/rrdcleaner.php:497 msgid "RRDfiles" msgstr "Archivos RRD" #: /var/www/html/cacti/rrdcleaner.php:513 #: /var/www/html/cacti/user_domains.php:669 #: /var/www/html/cacti/user_group_admin.php:1849 #: /var/www/html/cacti/user_group_admin.php:2202 #: /var/www/html/cacti/user_group_admin.php:2306 #: /var/www/html/cacti/user_group_admin.php:2391 #: /var/www/html/cacti/user_group_admin.php:2476 #: /var/www/html/cacti/user_group_admin.php:2561 msgctxt "filter: use" msgid "Go" msgstr "Ir" #: /var/www/html/cacti/rrdcleaner.php:514 #: /var/www/html/cacti/user_group_admin.php:1850 #: /var/www/html/cacti/user_group_admin.php:2203 #: /var/www/html/cacti/user_group_admin.php:2307 #: /var/www/html/cacti/user_group_admin.php:2392 #: /var/www/html/cacti/user_group_admin.php:2477 msgctxt "filter: reset" msgid "Clear" msgstr "Restablecer" #: /var/www/html/cacti/rrdcleaner.php:515 msgid "Rescan" msgstr "Re-escanear" #: /var/www/html/cacti/rrdcleaner.php:520 msgid "Delete All" msgstr "Eliminar todo" #: /var/www/html/cacti/rrdcleaner.php:520 msgid "Delete All Unknown RRDfiles" msgstr "Eliminar todos los archivos RRD desconocidos" #: /var/www/html/cacti/rrdcleaner.php:521 msgid "Archive All" msgstr "Archivar todo" #: /var/www/html/cacti/rrdcleaner.php:521 msgid "Archive All Unknown RRDfiles" msgstr "Archivar todos los archivos RRD desconocidos" #: /var/www/html/cacti/settings.php:148 #, php-format msgid "Cacti Settings (%s)" msgstr "Opciones de Cacti (%s)" #: /var/www/html/cacti/settings.php:202 msgid "Select Plugin(s)" msgstr "Selecciona Plugin(s)" #: /var/www/html/cacti/settings.php:204 msgid "Plugins Selected" msgstr "Plugins seleccionados" #: /var/www/html/cacti/settings.php:221 msgid "Select File(s)" msgstr "Selecciona archivo(s)" #: /var/www/html/cacti/settings.php:223 msgid "Files Selected" msgstr "Archivo seleccionado" #: /var/www/html/cacti/settings.php:241 msgid "Select Template(s)" msgstr "Selecciona Plantilla(s)" #: /var/www/html/cacti/settings.php:246 msgid "All Templates Selected" msgstr "Todas las Plantillas seleccionadas" #: /var/www/html/cacti/settings.php:299 msgid "Poller Interval must be less than Cron Interval" msgstr "Intervalo de Sondeo debe ser inferior al intervalo de Cron" #: /var/www/html/cacti/settings.php:321 msgid "Test Email Results" msgstr "Resultados de correo electrónico de prueba" #: /var/www/html/cacti/sites.php:35 msgid "Site Information" msgstr "Información del sitio" #: /var/www/html/cacti/sites.php:41 msgid "The primary name for the Site." msgstr "El nombre principal para este sitio." #: /var/www/html/cacti/sites.php:44 msgid "New Site" msgstr "Nuevo sitio" #: /var/www/html/cacti/sites.php:49 msgid "Address1" msgstr "Dirección 1" #: /var/www/html/cacti/sites.php:50 msgid "The primary address for the Site." msgstr "Dirección principal para este sitio." #: /var/www/html/cacti/sites.php:52 msgid "Enter the Site Address" msgstr "Ingresa la dirección del sitio" #: /var/www/html/cacti/sites.php:58 msgid "Address2" msgstr "Dirección 2" #: /var/www/html/cacti/sites.php:59 msgid "Additional address information for the Site." msgstr "Información de dirección adicional para este Sitio." #: /var/www/html/cacti/sites.php:61 msgid "Additional Site Address information" msgstr "Información de dirección adicional del sitio" #: /var/www/html/cacti/sites.php:67 /var/www/html/cacti/sites.php:496 msgid "City" msgstr "Ciudad" #: /var/www/html/cacti/sites.php:68 msgid "The city or locality for the Site." msgstr "La ciudad o localidad para este sitio." #: /var/www/html/cacti/sites.php:70 msgid "Enter the City or Locality" msgstr "Ingresa la Ciudad o Localidad" #: /var/www/html/cacti/sites.php:76 /var/www/html/cacti/sites.php:497 msgid "State" msgstr "Estado" #: /var/www/html/cacti/sites.php:77 msgid "The state for the Site." msgstr "El Estado para este sitio." #: /var/www/html/cacti/sites.php:79 msgid "Enter the state" msgstr "Ingresa el Estado" #: /var/www/html/cacti/sites.php:85 msgid "Postal/Zip Code" msgstr "Código Postal/Zip" #: /var/www/html/cacti/sites.php:86 msgid "The postal or zip code for the Site." msgstr "El código postal o código zip para este sitio." #: /var/www/html/cacti/sites.php:88 msgid "Enter the postal code" msgstr "Ingresa el código postal" #: /var/www/html/cacti/sites.php:94 /var/www/html/cacti/sites.php:498 msgid "Country" msgstr "País" #: /var/www/html/cacti/sites.php:95 msgid "The country for the Site." msgstr "El país para el sitio." #: /var/www/html/cacti/sites.php:97 msgid "Enter the country" msgstr "Ingresa el país" #: /var/www/html/cacti/sites.php:103 msgid "TimeZone" msgstr "Zona horaria" #: /var/www/html/cacti/sites.php:104 msgid "The TimeZone for the Site." msgstr "La zona horaria para este sitio." #: /var/www/html/cacti/sites.php:112 msgid "Latitude" msgstr "Latitud" #: /var/www/html/cacti/sites.php:113 msgid "The Latitude for this Site." msgstr "La latitud para este sitio." #: /var/www/html/cacti/sites.php:115 msgid "example 38.889488" msgstr "ejemplo 38.889488" #: /var/www/html/cacti/sites.php:121 msgid "Longitude" msgstr "Longitud" #: /var/www/html/cacti/sites.php:122 msgid "The Longitude for this Site." msgstr "La longitud para este sitio." #: /var/www/html/cacti/sites.php:124 msgid "example -77.0374678" msgstr "ejemplo -77.0374678" #: /var/www/html/cacti/sites.php:130 msgid "Site Notes" msgstr "Notas del sitio" #: /var/www/html/cacti/sites.php:133 msgid "Additional area use for random notes related to this Site." msgstr "Area adicional para notas aleatorias relacionadas con este Sitio." #: /var/www/html/cacti/sites.php:136 msgid "Enter some useful information about the Site." msgstr "Ingresa alguna información útil sobre el Sitio." #: /var/www/html/cacti/sites.php:141 msgid "Alternate Name" msgstr "Nombre alternativo" #: /var/www/html/cacti/sites.php:142 msgid "Used for cases where a Site has an alternate named used to describe it" msgstr "" "Se usa para los casos en que un Sitio tiene un nombre alternativo que se " "utiliza para describirlo" #: /var/www/html/cacti/sites.php:144 msgid "If the Site is known by another name enter it here." msgstr "Si el Sitio es conocido con otro nombre, introdúzcalo aquí." #: /var/www/html/cacti/sites.php:286 msgid "" "Click 'Continue' to delete the following Site. Note, all devices will be " "disassociated from this site." msgid_plural "" "Click 'Continue' to delete all following Sites. Note, all devices will be " "disassociated from this site." msgstr[0] "" "Haga click en 'Continuar' para eliminar el siguiente Sitio. Ten en cuenta " "que todos los dispositivos serán desasociados de este Sitio." msgstr[1] "" "Haga click en 'Continuar' para eliminar los siguientes Sitios. Ten en cuenta " "que todos los dispositivos serán desasociados de estos Sitios." #: /var/www/html/cacti/sites.php:291 msgid "Delete Site" msgid_plural "Delete Sites" msgstr[0] "Eliminar Sitio" msgstr[1] "Eliminar Sitios" #: /var/www/html/cacti/sites.php:493 /var/www/html/cacti/tree.php:715 msgid "Site Name" msgstr "Nombre del Sitio" #: /var/www/html/cacti/sites.php:493 msgid "The name of this Site." msgstr "El nombre de este Sitio." #: /var/www/html/cacti/sites.php:494 msgid "The unique id associated with this Site." msgstr "El id unico asociado con este Sitio." #: /var/www/html/cacti/sites.php:495 msgid "The number of Devices associated with this Site." msgstr "El número de dispositivos asociados con este Sitio." #: /var/www/html/cacti/sites.php:496 msgid "The City associated with this Site." msgstr "La ciudad asociada con este Sitio." #: /var/www/html/cacti/sites.php:497 msgid "The State associated with this Site." msgstr "El Estado asociado con este Sitio." #: /var/www/html/cacti/sites.php:498 msgid "The Country associated with this Site." msgstr "El País asociado con este Sitio." #: /var/www/html/cacti/sites.php:516 msgid "No Sites Found" msgstr "Ningún sitio encontrado" #: /var/www/html/cacti/spikekill.php:37 #, php-format msgid "FATAL: Spike Kill method '%s' is Invalid\n" msgstr "FATAL: método de eliminación de picos '%s' es inválido\n" #: /var/www/html/cacti/spikekill.php:82 msgid "FATAL: Spike Kill Not Allowed\n" msgstr "FATAL: eliminación de pico no permitida\n" #: /var/www/html/cacti/templates_export.php:68 msgid "WARNING: Export Errors Encountered. Refresh Browser Window for Details!" msgstr "" "ADVERTENCIA: Hubo errores durante la exportación. Actualiza la ventana del " "navegador para mas detalles!" #: /var/www/html/cacti/templates_export.php:100 msgid "What would you like to export?" msgstr "Que te gustaría exportar?" #: /var/www/html/cacti/templates_export.php:101 msgid "Select the Template type that you wish to export from Cacti." msgstr "Selecciona el tipo de plantilla que deseas exportar desde Cacti." #: /var/www/html/cacti/templates_export.php:113 msgid "Device Template to Export" msgstr "Plantilla de Dispositivo a exportar" #: /var/www/html/cacti/templates_export.php:114 msgid "Choose the Template to export to XML." msgstr "Elija la plantilla a exportar a XML." #: /var/www/html/cacti/templates_export.php:121 msgid "Include Dependencies" msgstr "Incluir dependencias" #: /var/www/html/cacti/templates_export.php:122 msgid "" "Some templates rely on other items in Cacti to function properly. It is " "highly recommended that you select this box or the resulting import may fail." msgstr "" "Algunas plantillas dependen de otros items en Cacti para funcionar " "correctamente. Se recomienda que actives esta casilla o la importación " "podría fallar." #: /var/www/html/cacti/templates_export.php:128 msgid "Output Format" msgstr "Formato de salida" #: /var/www/html/cacti/templates_export.php:129 msgid "Choose the format to output the resulting XML file in." msgstr "" "Seleccione el formato en el cual se generará el archivo XML resultante." #: /var/www/html/cacti/templates_export.php:136 msgid "Output to the Browser (within Cacti)" msgstr "Generar dentro del navegador (dentro de Cacti)" #: /var/www/html/cacti/templates_export.php:140 msgid "Output to the Browser (raw XML)" msgstr "Generar dentro del navegador (a XML)" #: /var/www/html/cacti/templates_export.php:144 msgid "Save File Locally" msgstr "Guardar archivo localmente" #: /var/www/html/cacti/templates_export.php:163 #, php-format msgid "Available Templates [%s]" msgstr "Plantillas disponibles [%s]" #: /var/www/html/cacti/templates_import.php:115 msgid "Import Template" msgstr "Importar Plantillas" #: /var/www/html/cacti/tree.php:32 msgctxt "dropdown action" msgid "Publish" msgstr "Publicar" #: /var/www/html/cacti/tree.php:33 msgctxt "dropdown action" msgid "Un Publish" msgstr "Desactivar publicación" #: /var/www/html/cacti/tree.php:300 msgctxt "ordering of tree items" msgid "inherit" msgstr "heredar" #: /var/www/html/cacti/tree.php:303 msgctxt "ordering of tree items" msgid "manual" msgstr "manual" #: /var/www/html/cacti/tree.php:306 msgctxt "ordering of tree items" msgid "alpha" msgstr "alfa" #: /var/www/html/cacti/tree.php:309 msgctxt "ordering of tree items" msgid "natural" msgstr "natural" #: /var/www/html/cacti/tree.php:312 msgctxt "ordering of tree items" msgid "numeric" msgstr "numérico" #: /var/www/html/cacti/tree.php:549 msgid "Click 'Continue' to delete the following Tree." msgid_plural "Click 'Continue' to delete following Trees." msgstr[0] "Haga click en 'Continuar' para eliminar el siguiente arbol." msgstr[1] "Haga click en 'Continuar' para eliminar los siguientes arboles." #: /var/www/html/cacti/tree.php:554 msgid "Delete Tree" msgid_plural "Delete Trees" msgstr[0] "Eliminar árbol" msgstr[1] "Eliminar arboles" #: /var/www/html/cacti/tree.php:558 msgid "Click 'Continue' to publish the following Tree." msgid_plural "Click 'Continue' to publish following Trees." msgstr[0] "Haga click en 'Continuar' para publicar el siguiente arbol." msgstr[1] "Haga click en 'Continuar' para publicar los siguientes arboles." #: /var/www/html/cacti/tree.php:563 msgid "Publish Tree" msgid_plural "Publish Trees" msgstr[0] "Publicar arbol" msgstr[1] "Publicar arboles" #: /var/www/html/cacti/tree.php:567 msgid "Click 'Continue' to un-publish the following Tree." msgid_plural "Click 'Continue' to un-publish following Trees." msgstr[0] "" "Haga click en 'Continuar' para quitar publicación del siguiente árbol." msgstr[1] "" "Haga click en 'Continuar' para quitar publicación de los siguientes árboles." #: /var/www/html/cacti/tree.php:572 msgid "Un-publish Tree" msgid_plural "Un-publish Trees" msgstr[0] "Quitar publicación de árbol" msgstr[1] "Quitar publicación de árboles" #: /var/www/html/cacti/tree.php:575 msgid "You must select at least one Tree." msgstr "Debes seleccionar al menos un arbol." #: /var/www/html/cacti/tree.php:621 #, php-format msgid "Trees [edit: %s]" msgstr "Arbol [editar: %s]" #: /var/www/html/cacti/tree.php:634 msgid "Trees [new]" msgstr "Arbol [nuevo]" #: /var/www/html/cacti/tree.php:660 msgid "Edit Tree" msgstr "Editar Arbol" #: /var/www/html/cacti/tree.php:660 msgid "" "To Edit this tree, you must first lock it by pressing the Edit Tree button." msgstr "" "Para editar este árbol, primero debes bloquearlo presionando el botón de " "editar árbol." #: /var/www/html/cacti/tree.php:663 msgid "Add Root Branch" msgstr "Agregar rama Raíz" #: /var/www/html/cacti/tree.php:663 msgid "Finish Editing Tree" msgstr "Terminar de editar el árbol" #: /var/www/html/cacti/tree.php:663 #, php-format msgid "This tree has been locked for Editing on %1$s by %2$s." msgstr "Este árbol ha sido bloqueado para editar por %2$s a las %1$s ." #: /var/www/html/cacti/tree.php:669 msgid "To edit the tree, you must first unlock it and then lock it as yourself" msgstr "" "Para editar este árbol, primero debes desbloquearlo y luego bloquearlo como " "tu mismo" #: /var/www/html/cacti/tree.php:685 msgid "Tree Items" msgstr "Items del árbol" #: /var/www/html/cacti/tree.php:693 msgid "Available Sites" msgstr "Sitios disponibles" #: /var/www/html/cacti/tree.php:728 msgid "Available Devices" msgstr "Dispositivos disponibles" #: /var/www/html/cacti/tree.php:763 msgid "Available Graphs" msgstr "Gráficos disponibles" #: /var/www/html/cacti/tree.php:815 msgid "New Node" msgstr "Nuevo nodo" #: /var/www/html/cacti/tree.php:1175 msgid "Rename" msgstr "Renombrar" #: /var/www/html/cacti/tree.php:1202 msgid "Branch Sorting" msgstr "Ordenar por ramas" #: /var/www/html/cacti/tree.php:1209 msgid "Inherit" msgstr "Heredar" #: /var/www/html/cacti/tree.php:1237 msgid "Alphabetic" msgstr "Alfabético" #: /var/www/html/cacti/tree.php:1251 msgid "Natural" msgstr "Natural" #: /var/www/html/cacti/tree.php:1288 /var/www/html/cacti/tree.php:1362 #: /var/www/html/cacti/tree.php:1470 msgid "Cut" msgstr "Cortar" #: /var/www/html/cacti/tree.php:1303 /var/www/html/cacti/tree.php:1377 #: /var/www/html/cacti/tree.php:1485 /var/www/html/cacti/user_admin.php:29 #: /var/www/html/cacti/user_group_admin.php:31 msgid "Copy" msgstr "Copiar" #: /var/www/html/cacti/tree.php:1321 msgid "Paste" msgstr "Pegar" #: /var/www/html/cacti/tree.php:1737 msgid "The name by which this Tree will be referred to as." msgstr "El nombre por el que este árbol será referido." #: /var/www/html/cacti/tree.php:1737 /var/www/html/cacti/user_admin.php:1513 #: /var/www/html/cacti/user_group_admin.php:1243 msgid "Tree Name" msgstr "Nombre de Arbol" #: /var/www/html/cacti/tree.php:1738 msgid "" "The internal database ID for this Tree. Useful when performing automation " "or debugging." msgstr "" "El ID interno de base de datos para este árbol. Util cuando se realiza " "automatización o depuración." #: /var/www/html/cacti/tree.php:1739 msgid "Published" msgstr "Publicado" #: /var/www/html/cacti/tree.php:1739 msgid "Unpublished Trees cannot be viewed from the Graph tab" msgstr "Arboles sin publicar no pueden ser vistos desde la pestaña de gráficos" #: /var/www/html/cacti/tree.php:1740 msgid "A Tree must be locked in order to be edited." msgstr "El arbol debe estar bloqueado para poder ser editado." #: /var/www/html/cacti/tree.php:1741 msgid "The original author of this Tree." msgstr "El autor original de este árbol." #: /var/www/html/cacti/tree.php:1742 msgid "" "To change the order of the trees, first sort by this column, press the up or " "down arrows once they appear." msgstr "" "Para cambiar el orden de los árboles, primero ordénelos por esta columna, " "presione las flechas arriba o abajo una vez que aparecen." #: /var/www/html/cacti/tree.php:1743 msgid "Last Edited" msgstr "Ultima vez editado" #: /var/www/html/cacti/tree.php:1743 msgid "The date that this Tree was last edited." msgstr "La fecha en que este árbol fue editado por última vez." #: /var/www/html/cacti/tree.php:1744 msgid "Edited By" msgstr "Editado por" #: /var/www/html/cacti/tree.php:1744 msgid "The last user to have modified this Tree." msgstr "El último usuario que ha modificado este árbol." #: /var/www/html/cacti/tree.php:1745 msgid "Branches" msgstr "Ramas" #: /var/www/html/cacti/tree.php:1745 msgid "The total number of Branches in this Tree." msgstr "El número total de ramas en este árbol." #: /var/www/html/cacti/tree.php:1746 msgid "The total number of individual Devices in this Tree." msgstr "El número total de dispositivos individuales en este árbol." #: /var/www/html/cacti/tree.php:1747 msgid "The total number of individual Graphs in this Tree." msgstr "El número total de gráficos individuales en este árbol." #: /var/www/html/cacti/tree.php:1787 msgid "No Trees Found" msgstr "No se encontraron Arboles" #: /var/www/html/cacti/user_admin.php:32 msgid "Batch Copy" msgstr "Copiar opciones" #: /var/www/html/cacti/user_admin.php:335 msgid "Click 'Continue' to delete the selected User(s)." msgstr "" "Haga click en 'Continuar' para eliminar el/los usuario(s) seleccionado(s)." #: /var/www/html/cacti/user_admin.php:340 msgid "Delete User(s)" msgstr "Eliminar usuario(s)" #: /var/www/html/cacti/user_admin.php:350 msgid "Click 'Continue' to copy the selected User to a new User below." msgstr "" "Haga click en \"Continuar\" para copiar el usuario seleccionado a un nuevo " "usuario a continuación." #: /var/www/html/cacti/user_admin.php:355 msgid "Template Username:" msgstr "Nombre de usuario de la plantilla:" #: /var/www/html/cacti/user_admin.php:360 msgid "Username:" msgstr "Nombre de usuario:" #: /var/www/html/cacti/user_admin.php:367 msgid "Full Name:" msgstr "Nombre completo:" #: /var/www/html/cacti/user_admin.php:374 msgid "Realm:" msgstr "Autenticación:" #: /var/www/html/cacti/user_admin.php:380 msgid "Copy User" msgstr "Copiar usuario" #: /var/www/html/cacti/user_admin.php:386 msgid "Click 'Continue' to enable the selected User(s)." msgstr "" "Haga click en 'Continuar' para habilitar el/los usuario(s) seleccionados." #: /var/www/html/cacti/user_admin.php:391 msgid "Enable User(s)" msgstr "Habilitar usuario(s)" #: /var/www/html/cacti/user_admin.php:397 msgid "Click 'Continue' to disable the selected User(s)." msgstr "" "Haga click en 'Continuar' para deshabilitar el/los usuario(s) seleccionados." #: /var/www/html/cacti/user_admin.php:402 msgid "Disable User(s)" msgstr "Deshabilitar usuario(s)" #: /var/www/html/cacti/user_admin.php:410 msgid "" "Click 'Continue' to overwrite the User(s) settings with the selected " "template User settings and permissions. The original users Full Name, " "Password, Realm and Enable status will be retained, all other fields will be " "overwritten from Template User." msgstr "" "Haga click en 'Continuar' para sobreescribir las opciones de usuario con la " "Plantilla de opciones y permisos de usuario seleccionada. Los nombres " "completos, contraseñas, dominios y estado del usuario serán mantenidos." #: /var/www/html/cacti/user_admin.php:413 msgid "Template User:" msgstr "Usuario de la plantilla:" #: /var/www/html/cacti/user_admin.php:419 msgid "User(s) to update:" msgstr "Usuario(s) a actualizar:" #: /var/www/html/cacti/user_admin.php:424 msgid "Reset User(s) Settings" msgstr "Restablecer opciones de usuario" #: /var/www/html/cacti/user_admin.php:427 msgid "You must select at least one user." msgstr "Debes seleccionar al menos un usuario." #: /var/www/html/cacti/user_admin.php:802 #: /var/www/html/cacti/user_group_admin.php:728 msgid "Allow" msgstr "Permitir" #: /var/www/html/cacti/user_admin.php:803 #: /var/www/html/cacti/user_group_admin.php:729 msgid "Deny" msgstr "Denegar" #: /var/www/html/cacti/user_admin.php:828 msgid "" "Note: System Graph Policy is 'Permissive' meaning the User must have " "access to at least one of Graph, Device, or Graph Template to gain access to " "the Graph" msgstr "" "Nota: La política de gráficos de sistema es 'Permisiva' lo que " "significa que debes tener acceso al menos a un gráfico, dispositivo, o " "Plantilla de gráficos para acceder al gráfico" #: /var/www/html/cacti/user_admin.php:830 msgid "" "Note: System Graph Policy is 'Restrictive' meaning the User must have " "access to the Graph, Device, and Graph Template to gain access to the Graph" msgstr "" "Nota:La política de gráficos de sistema es 'Restrictiva' lo que " "significa que el usuario tenes acceso al gráfico, dispositivo, y Plantilla " "de gráfico para obtener acceso al gráfico" #: /var/www/html/cacti/user_admin.php:834 #: /var/www/html/cacti/user_group_admin.php:745 msgid "Default Graph Policy" msgstr "Politica de gráficos por defecto" #: /var/www/html/cacti/user_admin.php:839 msgid "Default Graph Policy for this User" msgstr "Politica de gráficos predeterminada para este usuario" #: /var/www/html/cacti/user_admin.php:844 #: /var/www/html/cacti/user_admin.php:1149 #: /var/www/html/cacti/user_admin.php:1310 #: /var/www/html/cacti/user_admin.php:1451 #: /var/www/html/cacti/user_group_admin.php:755 #: /var/www/html/cacti/user_group_admin.php:896 #: /var/www/html/cacti/user_group_admin.php:1044 #: /var/www/html/cacti/user_group_admin.php:1185 msgid "Update" msgstr "Actualizar" #: /var/www/html/cacti/user_admin.php:996 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_admin.php:1376 #: /var/www/html/cacti/user_admin.php:1513 #: /var/www/html/cacti/user_group_admin.php:821 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:1109 #: /var/www/html/cacti/user_group_admin.php:1243 msgid "Effective Policy" msgstr "Política en uso" #: /var/www/html/cacti/user_admin.php:1010 #: /var/www/html/cacti/user_group_admin.php:847 msgid "No Matching Graphs Found" msgstr "Ninguna coincidencia de gráficos encontrada" #: /var/www/html/cacti/user_admin.php:1025 #: /var/www/html/cacti/user_admin.php:1031 #: /var/www/html/cacti/user_admin.php:1277 #: /var/www/html/cacti/user_admin.php:1283 #: /var/www/html/cacti/user_admin.php:1418 #: /var/www/html/cacti/user_admin.php:1424 #: /var/www/html/cacti/user_admin.php:1554 #: /var/www/html/cacti/user_admin.php:1560 #: /var/www/html/cacti/user_group_admin.php:862 #: /var/www/html/cacti/user_group_admin.php:868 #: /var/www/html/cacti/user_group_admin.php:1010 #: /var/www/html/cacti/user_group_admin.php:1016 #: /var/www/html/cacti/user_group_admin.php:1151 #: /var/www/html/cacti/user_group_admin.php:1157 #: /var/www/html/cacti/user_group_admin.php:1283 #: /var/www/html/cacti/user_group_admin.php:1289 msgid "Revoke Access" msgstr "Revocar acceso" #: /var/www/html/cacti/user_admin.php:1026 #: /var/www/html/cacti/user_admin.php:1030 #: /var/www/html/cacti/user_admin.php:1278 #: /var/www/html/cacti/user_admin.php:1282 #: /var/www/html/cacti/user_admin.php:1419 #: /var/www/html/cacti/user_admin.php:1423 #: /var/www/html/cacti/user_admin.php:1555 #: /var/www/html/cacti/user_admin.php:1559 #: /var/www/html/cacti/user_group_admin.php:62 #: /var/www/html/cacti/user_group_admin.php:863 #: /var/www/html/cacti/user_group_admin.php:867 #: /var/www/html/cacti/user_group_admin.php:1011 #: /var/www/html/cacti/user_group_admin.php:1015 #: /var/www/html/cacti/user_group_admin.php:1152 #: /var/www/html/cacti/user_group_admin.php:1156 #: /var/www/html/cacti/user_group_admin.php:1284 #: /var/www/html/cacti/user_group_admin.php:1288 msgid "Grant Access" msgstr "Conceder acceso" #: /var/www/html/cacti/user_admin.php:1083 #: /var/www/html/cacti/user_admin.php:2657 #: /var/www/html/cacti/user_group_admin.php:1833 #: /var/www/html/cacti/user_group_admin.php:1892 msgid "Groups" msgstr "Grupos" #: /var/www/html/cacti/user_admin.php:1091 #: /var/www/html/cacti/user_admin.php:1100 msgid "Member" msgstr "Miembro" #: /var/www/html/cacti/user_admin.php:1091 msgid "Policies (Graph/Device/Template)" msgstr "Políticas (Gráficos/Dispositivos/Plantillas)" #: /var/www/html/cacti/user_admin.php:1100 #: /var/www/html/cacti/user_group_admin.php:688 msgid "Non Member" msgstr "No miembro" #: /var/www/html/cacti/user_admin.php:1102 #: /var/www/html/cacti/user_admin.php:2311 #: /var/www/html/cacti/user_admin.php:2312 #: /var/www/html/cacti/user_admin.php:2313 #: /var/www/html/cacti/user_group_admin.php:1924 #: /var/www/html/cacti/user_group_admin.php:1925 #: /var/www/html/cacti/user_group_admin.php:1926 msgid "ALLOW" msgstr "PERMITIR" #: /var/www/html/cacti/user_admin.php:1102 #: /var/www/html/cacti/user_admin.php:2311 #: /var/www/html/cacti/user_admin.php:2312 #: /var/www/html/cacti/user_admin.php:2313 #: /var/www/html/cacti/user_group_admin.php:1924 #: /var/www/html/cacti/user_group_admin.php:1925 #: /var/www/html/cacti/user_group_admin.php:1926 msgid "DENY" msgstr "DENEGAR" #: /var/www/html/cacti/user_admin.php:1108 msgid "No Matching User Groups Found" msgstr "No se encontraron grupos de usuarios coincidentes" #: /var/www/html/cacti/user_admin.php:1122 msgid "Assign Membership" msgstr "Assignar miembros" #: /var/www/html/cacti/user_admin.php:1123 msgid "Remove Membership" msgstr "Eliminar miembros" #: /var/www/html/cacti/user_admin.php:1139 #: /var/www/html/cacti/user_group_admin.php:886 msgid "Default Device Policy" msgstr "Politica de dispositivos por defecto" #: /var/www/html/cacti/user_admin.php:1144 msgid "Default Device Policy for this User" msgstr "Política de dispositivo predeterminada para este usuario" #: /var/www/html/cacti/user_admin.php:1243 #: /var/www/html/cacti/user_admin.php:1251 #: /var/www/html/cacti/user_admin.php:1387 #: /var/www/html/cacti/user_admin.php:1395 #: /var/www/html/cacti/user_admin.php:1524 #: /var/www/html/cacti/user_admin.php:1532 #: /var/www/html/cacti/user_group_admin.php:832 #: /var/www/html/cacti/user_group_admin.php:840 #: /var/www/html/cacti/user_group_admin.php:977 #: /var/www/html/cacti/user_group_admin.php:985 #: /var/www/html/cacti/user_group_admin.php:1120 #: /var/www/html/cacti/user_group_admin.php:1128 #: /var/www/html/cacti/user_group_admin.php:1254 #: /var/www/html/cacti/user_group_admin.php:1262 msgid "Access Granted" msgstr "Acceso concedido" #: /var/www/html/cacti/user_admin.php:1245 #: /var/www/html/cacti/user_admin.php:1249 #: /var/www/html/cacti/user_admin.php:1389 #: /var/www/html/cacti/user_admin.php:1393 #: /var/www/html/cacti/user_admin.php:1526 #: /var/www/html/cacti/user_admin.php:1530 #: /var/www/html/cacti/user_group_admin.php:834 #: /var/www/html/cacti/user_group_admin.php:838 #: /var/www/html/cacti/user_group_admin.php:979 #: /var/www/html/cacti/user_group_admin.php:983 #: /var/www/html/cacti/user_group_admin.php:1122 #: /var/www/html/cacti/user_group_admin.php:1126 #: /var/www/html/cacti/user_group_admin.php:1256 #: /var/www/html/cacti/user_group_admin.php:1260 msgid "Access Restricted" msgstr "Acceso restringido" #: /var/www/html/cacti/user_admin.php:1262 #: /var/www/html/cacti/user_group_admin.php:996 msgid "No Matching Devices Found" msgstr "Ninguna coincidencia de Dispositivos encontrada" #: /var/www/html/cacti/user_admin.php:1300 #: /var/www/html/cacti/user_group_admin.php:1034 msgid "Default Graph Template Policy" msgstr "Política de Plantilla de gráficos predeterminada" #: /var/www/html/cacti/user_admin.php:1305 msgid "Default Graph Template Policy for this User" msgstr "Política de Plantilla de gráficos predeterminada para este usuario" #: /var/www/html/cacti/user_admin.php:1376 #: /var/www/html/cacti/user_group_admin.php:1109 msgid "Total Graphs" msgstr "Total de gráficos" #: /var/www/html/cacti/user_admin.php:1403 #: /var/www/html/cacti/user_group_admin.php:1136 msgid "No Matching Graph Templates Found" msgstr "Ninguna coincidencia de Plantilla de gráficos encontrada" #: /var/www/html/cacti/user_admin.php:1441 #: /var/www/html/cacti/user_group_admin.php:1175 msgid "Default Tree Policy" msgstr "Politica de Arbol por defecto" #: /var/www/html/cacti/user_admin.php:1446 msgid "Default Tree Policy for this User" msgstr "Política de árbol predeterminada para este usuario" #: /var/www/html/cacti/user_admin.php:1539 #: /var/www/html/cacti/user_group_admin.php:1269 msgid "No Matching Trees Found" msgstr "Ninguna coincidencia de Arboles encontrada" #: /var/www/html/cacti/user_admin.php:1584 #: /var/www/html/cacti/user_group_admin.php:1315 msgid "User Permissions" msgstr "Permisos de Usuario" #: /var/www/html/cacti/user_admin.php:1651 #: /var/www/html/cacti/user_group_admin.php:1402 msgid "External Link Permissions" msgstr "Permisos de vínculos externos" #: /var/www/html/cacti/user_admin.php:1708 #: /var/www/html/cacti/user_group_admin.php:1459 msgid "Plugin Permissions" msgstr "Permisos de Plugin" #: /var/www/html/cacti/user_admin.php:1764 msgid "Legacy 1.x Plugins" msgstr "Legado de Plugins 1.x" #: /var/www/html/cacti/user_admin.php:1821 #: /var/www/html/cacti/user_group_admin.php:1550 #, php-format msgid "User Settings %s" msgstr "Configuraciones de Usuario %s" #: /var/www/html/cacti/user_admin.php:1936 #: /var/www/html/cacti/user_group_admin.php:1666 msgid "Permissions" msgstr "Permisos" #: /var/www/html/cacti/user_admin.php:1937 msgid "Group Membership" msgstr "Miembro de grupo" #: /var/www/html/cacti/user_admin.php:1938 #: /var/www/html/cacti/user_group_admin.php:1667 msgid "Graph Perms" msgstr "Permisos de gráfico" #: /var/www/html/cacti/user_admin.php:1939 #: /var/www/html/cacti/user_group_admin.php:1668 msgid "Device Perms" msgstr "Permisos de Dispositivos" #: /var/www/html/cacti/user_admin.php:1940 #: /var/www/html/cacti/user_group_admin.php:1669 msgid "Template Perms" msgstr "Permisos de Plantillas" #: /var/www/html/cacti/user_admin.php:1941 #: /var/www/html/cacti/user_group_admin.php:1670 msgid "Tree Perms" msgstr "Permisos de Arboles" #: /var/www/html/cacti/user_admin.php:1983 #, php-format msgid "User Management %s" msgstr "Administración de usuario %s" #: /var/www/html/cacti/user_admin.php:2015 msgid "Password Too Short" msgstr "La contraseña es demasiado corta" #: /var/www/html/cacti/user_admin.php:2020 msgid "Password Validation Passes" msgstr "Validación de contraseña satisfactoria" #: /var/www/html/cacti/user_admin.php:2034 msgid "Passwords do Not Match" msgstr "Las contraseñas no coinciden" #: /var/www/html/cacti/user_admin.php:2037 msgid "Passwords Match" msgstr "Las contraseñas coinciden" #: /var/www/html/cacti/user_admin.php:2279 #: /var/www/html/cacti/user_group_admin.php:1904 msgid "Graph Policy" msgstr "Política de gráficos" #: /var/www/html/cacti/user_admin.php:2280 #: /var/www/html/cacti/user_group_admin.php:1905 msgid "Device Policy" msgstr "Politica de Dispositivos" #: /var/www/html/cacti/user_admin.php:2281 #: /var/www/html/cacti/user_group_admin.php:1906 msgid "Template Policy" msgstr "Politica de Plantillas" #: /var/www/html/cacti/user_admin.php:2282 msgid "Last Login" msgstr "Ultimo acceso" #: /var/www/html/cacti/user_admin.php:2303 msgid "Unavailable" msgstr "No disponible" #: /var/www/html/cacti/user_admin.php:2319 msgid "No Users Found" msgstr "Ningún usuario encontrado" #: /var/www/html/cacti/user_admin.php:2535 #: /var/www/html/cacti/user_group_admin.php:2143 #, php-format msgid "Graph Permissions %s" msgstr "Permisos de gráficos %s" #: /var/www/html/cacti/user_admin.php:2589 #: /var/www/html/cacti/user_admin.php:2674 msgid "Show All" msgstr "Mostrar todo" #: /var/www/html/cacti/user_admin.php:2642 #, php-format msgid "Group Membership %s" msgstr "Miembro del grupo %s" #: /var/www/html/cacti/user_admin.php:2728 #: /var/www/html/cacti/user_group_admin.php:2251 #, php-format msgid "Devices Permission %s" msgstr "Permisos de Dispositivos %s" #: /var/www/html/cacti/user_admin.php:2778 #: /var/www/html/cacti/user_admin.php:2863 #: /var/www/html/cacti/user_admin.php:2948 #: /var/www/html/cacti/user_group_admin.php:2197 #: /var/www/html/cacti/user_group_admin.php:2301 #: /var/www/html/cacti/user_group_admin.php:2386 #: /var/www/html/cacti/user_group_admin.php:2471 msgid "Show Exceptions" msgstr "Mostrar Excepciones" #: /var/www/html/cacti/user_admin.php:2831 #: /var/www/html/cacti/user_group_admin.php:2354 #, php-format msgid "Template Permission %s" msgstr "Permisos de Plantillas %s" #: /var/www/html/cacti/user_admin.php:2916 #: /var/www/html/cacti/user_admin.php:3001 #: /var/www/html/cacti/user_group_admin.php:2439 #, php-format msgid "Tree Permission %s" msgstr "Permisos deArboles %s" #: /var/www/html/cacti/user_admin.php:3033 msgid "Show Exceptions<" msgstr "Mostrar excepciones<" #: /var/www/html/cacti/user_domains.php:224 msgid "Click 'Continue' to delete the following User Domain." msgid_plural "Click 'Continue' to delete following User Domains." msgstr[0] "" "Haga click en 'Continuar' para eliminar el siguiente Dominio de usuario." msgstr[1] "" "Haga click en 'Continuar' para eliminar los siguientes Dominios de usuario." #: /var/www/html/cacti/user_domains.php:229 msgid "Delete User Domain" msgid_plural "Delete User Domains" msgstr[0] "Borrar dominio de usuario" msgstr[1] "Borrar dominios de usuario" #: /var/www/html/cacti/user_domains.php:233 msgid "Click 'Continue' to disable the following User Domain." msgid_plural "Click 'Continue' to disable following User Domains." msgstr[0] "" "Haga click en 'Continuar' para deshabilitar el siguiente dominio de usuario." msgstr[1] "" "Haga click en 'Continuar' para deshabilitar los siguientes Dominios de " "usuario." #: /var/www/html/cacti/user_domains.php:238 msgid "Disable User Domain" msgid_plural "Disable User Domains" msgstr[0] "Deshabilitar dominio de usuario" msgstr[1] "Deshabilitar dominios de usuario" #: /var/www/html/cacti/user_domains.php:242 msgid "Click 'Continue' to enable the following User Domain." msgstr "" "Haga click en 'Continuar' para habilitar el siguiente Dominio de usuario." #: /var/www/html/cacti/user_domains.php:247 msgid "Enabled User Domain" msgid_plural "Enable User Domains" msgstr[0] "Habilitar Dominio de usuario" msgstr[1] "Habilitar Dominios de usuario" #: /var/www/html/cacti/user_domains.php:251 msgid "" "Click 'Continue' to make the following the following User Domain the default " "one." msgstr "" "Haga click en 'Continuar' para hacer el siguiente Dominio de usuarios " "predeterminado." #: /var/www/html/cacti/user_domains.php:256 msgid "Make Selected Domain Default" msgstr "Hacer el Dominio seleccionado por defecto" #: /var/www/html/cacti/user_domains.php:259 msgid "You must select at least one User Domain." msgstr "Debes seleccionar al menos un Dominio de usuario." #: /var/www/html/cacti/user_domains.php:310 #, php-format msgid "User Domain [edit: %s]" msgstr "Dominio de usuario [editar: %s]" #: /var/www/html/cacti/user_domains.php:312 msgid "User Domain [new]" msgstr "Dominio de usuario [Nuevo]" #: /var/www/html/cacti/user_domains.php:320 msgid "" "Enter a meaningful name for this domain. This will be the name that appears " "in the Login Realm during login." msgstr "" "Ingrese un nombre significativo para este Dominio. Este será el nombre que " "aparezca en el Dominio de inicio sesión durante el inicio de sesión." #: /var/www/html/cacti/user_domains.php:326 msgid "Domains Type" msgstr "Tipos de Dominios" #: /var/www/html/cacti/user_domains.php:327 msgid "Choose what type of domain this is." msgstr "Elige que tipo de Dominio es." #: /var/www/html/cacti/user_domains.php:334 msgid "" "The name of the user that Cacti will use as a template for new user accounts." msgstr "" "E nombre del usuario que Cacti usará como plantilla para nuevas cuentas de " "usuarios." #: /var/www/html/cacti/user_domains.php:344 msgid "" "If this checkbox is checked, users will be able to login using this domain." msgstr "" "Si esta casilla esta activada, los usuarios podrán iniciar sesión usando " "este dominio." #: /var/www/html/cacti/user_domains.php:361 msgid "The dns hostname or ip address of the server." msgstr "El nombre de equipo o la IP del servidor." #: /var/www/html/cacti/user_domains.php:369 msgid "TCP/UDP port for Non SSL communications." msgstr "Puerto TCP/UDP para comunicaciones no SSL." #: /var/www/html/cacti/user_domains.php:408 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "

    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the users " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the users Distinguished Name (DN)." msgstr "" "Modo en el que Cacti intentará autenticar con un servidor LDAP." "
    Sin búsqueda - No ocurre ninguna búsqueda de nombre " "distinguido (DN), solo intenta vincular con el formato de nombre distinguido " "(DN) proporcionado.

    Búsqueda anónima - Intenta buscar nombre " "de usuarios en el directorio de LDAP usando una consulta anónima para " "encontrar nombres distinguidos (DN) de usuarios.

    Búsqueda " "específica - Intenta buscar nombre de usuarios en el directorio LDAP " "usando un nombre distinguido (DN) específico y una contraseña específica " "para encontrar nombres distinguidos (DN) de usuarios." #: /var/www/html/cacti/user_domains.php:457 msgid "" "Search base for searching the LDAP directory, such as \"dc=win2kdomain," "dc=local\" or \"ou=people,dc=domain,dc=local\"." msgstr "" "Base de búsqueda para la búsqueda en el directorio LDAP, como \"dc = " "win2kdomain, dc = local\" o \"ou = personas, dc = dominio, dc = local" "\"." #: /var/www/html/cacti/user_domains.php:464 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: \"(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))\" or for OpenLDAP: " "\"(&(objectClass=account)(uid=<username>))\". \"<username>\" " "is replaced with the username that was supplied at the login prompt." msgstr "" "Filtro de búsqueda para localizar al usuario en el directorio LDAP, como " "para windows: \"(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))\" o para OpenLDAP: " "\"(&(objectClass=account)(uid=<username>))\". \"<username>\" " "es reemplazado con el nombre de usuario que fue suministrado en el inicio de " "sesión." #: /var/www/html/cacti/user_domains.php:495 msgid "eMail" msgstr "eMail" #: /var/www/html/cacti/user_domains.php:496 msgid "Field that will replace the email taken from LDAP. (on windows: mail) " msgstr "" "Campo que reemplazará el correo obtenido de LDAP. (en Windows: correo) " #: /var/www/html/cacti/user_domains.php:521 msgid "Domain Properties" msgstr "Propiedades de Dominio" #: /var/www/html/cacti/user_domains.php:653 msgid "Domains" msgstr "Dominios" #: /var/www/html/cacti/user_domains.php:738 msgid "Domain Name" msgstr "Nombre de Dominio" #: /var/www/html/cacti/user_domains.php:739 msgid "Domain Type" msgstr "Tipo de Dominio" #: /var/www/html/cacti/user_domains.php:741 msgid "Effective User" msgstr "Usuario en uso" #: /var/www/html/cacti/user_domains.php:742 msgid "CN FullName" msgstr "Nombre completo CN" #: /var/www/html/cacti/user_domains.php:743 msgid "CN eMail" msgstr "CN de Correo electrónico" #: /var/www/html/cacti/user_domains.php:756 msgid "None Selected" msgstr "Ninguno seleccionado" #: /var/www/html/cacti/user_domains.php:764 msgid "No User Domains Found" msgstr "No se encontraron dominios de usuarios" #: /var/www/html/cacti/user_group_admin.php:39 #: /var/www/html/cacti/user_group_admin.php:58 msgid "Defer to the Users Setting" msgstr "Remitirse a las opciones de Usuarios" #: /var/www/html/cacti/user_group_admin.php:43 msgid "Show the Page that the User pointed their browser to" msgstr "Mostrar la página que el usuario indicó en su navegador" #: /var/www/html/cacti/user_group_admin.php:47 msgid "Show the Console" msgstr "Mostrar la Consola" #: /var/www/html/cacti/user_group_admin.php:51 msgid "Show the default Graph Screen" msgstr "Mostrar la pantalla de gráficos por defecto" #: /var/www/html/cacti/user_group_admin.php:66 msgid "Restrict Access" msgstr "Restringir accesso" #: /var/www/html/cacti/user_group_admin.php:73 #: /var/www/html/cacti/user_group_admin.php:1901 msgid "Group Name" msgstr "Nombre de grupo" #: /var/www/html/cacti/user_group_admin.php:74 msgid "The name of this Group." msgstr "El nombre de este grupo." #: /var/www/html/cacti/user_group_admin.php:80 msgid "Group Description" msgstr "Descripción del grupo" #: /var/www/html/cacti/user_group_admin.php:81 msgid "" "A more descriptive name for this group, that can include spaces or special " "characters." msgstr "" "Un nombre mas descriptivo para este grupo, puede incluir espacios o " "caracteres especiales." #: /var/www/html/cacti/user_group_admin.php:93 msgid "General Group Options" msgstr "Opciones generales de grupo" #: /var/www/html/cacti/user_group_admin.php:95 msgid "Set any user account-specific options here." msgstr "" "Configure opciones para cualquier cuenta de usuario en específico aquí." #: /var/www/html/cacti/user_group_admin.php:99 msgid "Allow Users of this Group to keep custom User Settings" msgstr "Permite usuarios de este grupo mantener configuraciones personalizadas" #: /var/www/html/cacti/user_group_admin.php:106 msgid "Tree Rights" msgstr "Permisos del Arbol" #: /var/www/html/cacti/user_group_admin.php:108 msgid "Should Users of this Group have access to the Tree?" msgstr "Deberían los usuarios de este grupo tener acceso al Arbol?" #: /var/www/html/cacti/user_group_admin.php:114 msgid "Graph List Rights" msgstr "Listado de permisos de gráficos" #: /var/www/html/cacti/user_group_admin.php:116 msgid "Should Users of this Group have access to the Graph List?" msgstr "Deben usuarios de este grupo tener acceso a este listado de gráficos?" #: /var/www/html/cacti/user_group_admin.php:122 msgid "Graph Preview Rights" msgstr "Permisos de vista previa de graficos" #: /var/www/html/cacti/user_group_admin.php:124 msgid "Should Users of this Group have access to the Graph Preview?" msgstr "" "Deben usuarios de este grupo tener acceso a la vista previa de gráficos?" #: /var/www/html/cacti/user_group_admin.php:133 msgid "What to do when a User from this User Group logs in." msgstr "Que hacer cuando un Usuario de este Grupo accede." #: /var/www/html/cacti/user_group_admin.php:441 msgid "Click 'Continue' to delete the following User Group" msgid_plural "Click 'Continue' to delete following User Groups" msgstr[0] "Haga click en 'Continuar' para borrar el siguiente Grupo de Usuario" msgstr[1] "" "Haga click en 'Continuar' para borrar los siguientes Grupos de Usuarios" #: /var/www/html/cacti/user_group_admin.php:446 msgid "Delete User Group" msgid_plural "Delete User Groups" msgstr[0] "Eliminar Grupo de Usuario" msgstr[1] "Eliminar Grupos de Usuarios" #: /var/www/html/cacti/user_group_admin.php:454 msgid "Click 'Continue' to Copy the following User Group to a new User Group." msgid_plural "" "Click 'Continue' to Copy following User Groups to new User Groups." msgstr[0] "" "Haga click en \"Continuar\" para copiar el siguiente grupo de usuarios a un " "nuevo grupo de usuarios." msgstr[1] "" "Haga click en \"Continuar\" para copiar los siguientes grupos de usuarios a " "nuevos grupos de usuarios." #: /var/www/html/cacti/user_group_admin.php:460 msgid "Group Prefix:" msgstr "Prefijo orig:" #: /var/www/html/cacti/user_group_admin.php:461 msgid "New Group" msgstr "Nuevo grupo" #: /var/www/html/cacti/user_group_admin.php:465 msgid "Copy User Group" msgid_plural "Copy User Groups" msgstr[0] "Copiar grupo de usuarios" msgstr[1] "Copiar grupos de usuarios" #: /var/www/html/cacti/user_group_admin.php:471 msgid "Click 'Continue' to enable the following User Group." msgid_plural "Click 'Continue' to enable following User Groups." msgstr[0] "" "Haga click en 'Continuar' para habilitar el siguiente Grupo de Usuario." msgstr[1] "" "Haga click en 'Continuar' para habilitar los siguientes Grupos de Usuarios." #: /var/www/html/cacti/user_group_admin.php:476 msgid "Enable User Group" msgid_plural "Enable User Groups" msgstr[0] "Habilitar Grupo de Usuario" msgstr[1] "Habilitar Grupos de Usuarios" #: /var/www/html/cacti/user_group_admin.php:482 msgid "Click 'Continue' to disable the following User Group." msgid_plural "Click 'Continue' to disable following User Groups." msgstr[0] "" "Haga click en 'Continuar' para deshabillitar el siguiente Grupo de Usuario." msgstr[1] "" "Haga click en 'Continuar' para deshabillitar los siguientes Grupos de " "Usuarios." #: /var/www/html/cacti/user_group_admin.php:487 msgid "Disable User Group" msgid_plural "Disable User Groups" msgstr[0] "Deshabilitar Grupo de Usuario" msgstr[1] "Deshabilitar grupos de usuarios" #: /var/www/html/cacti/user_group_admin.php:490 msgid "You must select at least one Group." msgstr "Debes seleccionar al menos un grupo." #: /var/www/html/cacti/user_group_admin.php:675 msgid "Login Name" msgstr "Nombre de cuenta" #: /var/www/html/cacti/user_group_admin.php:675 msgid "Membership" msgstr "Membresía" #: /var/www/html/cacti/user_group_admin.php:686 msgid "Group Member" msgstr "Miembro de grupo" #: /var/www/html/cacti/user_group_admin.php:696 msgid "No Matching Group Members Found" msgstr "Ninguna coincidencia de Miembros de Grupo encontrada" #: /var/www/html/cacti/user_group_admin.php:710 msgid "Add to Group" msgstr "Agregar a grupo" #: /var/www/html/cacti/user_group_admin.php:711 msgid "Remove from Group" msgstr "Eliminar del grupo" #: /var/www/html/cacti/user_group_admin.php:750 #: /var/www/html/cacti/user_group_admin.php:891 msgid "Default Graph policy for this User Group" msgstr "Politica de gráficos por defecto para este grupo de usuarios" #: /var/www/html/cacti/user_group_admin.php:1039 msgid "Default Graph Template policy for this User Group" msgstr "Politica de Plantilla de gráficos para este Grupo de Usuarios" #: /var/www/html/cacti/user_group_admin.php:1180 msgid "Default Tree policy for this User Group" msgstr "Politica de Arbol por defecto para este Grupo de Usuarios" #: /var/www/html/cacti/user_group_admin.php:1665 #: /var/www/html/cacti/user_group_admin.php:1902 msgid "Members" msgstr "Miembros" #: /var/www/html/cacti/user_group_admin.php:1677 #, php-format msgid "User Group Management [edit: %s]" msgstr "Administración de Grupo de Usuarios [modificar: %s]" #: /var/www/html/cacti/user_group_admin.php:1679 msgid "User Group Management [new]" msgstr "Administración de Grupo de Usuarios [nuevo]" #: /var/www/html/cacti/user_group_admin.php:1812 msgid "User Group Management" msgstr "Administración de Grupo de Usuarios" #: /var/www/html/cacti/user_group_admin.php:1932 msgid "No User Groups Found" msgstr "Ningun Grupo de Usuarios encontrado" #: /var/www/html/cacti/user_group_admin.php:2524 #, php-format msgid "User Membership %s" msgstr "Membresia de Usuario %s" #: /var/www/html/cacti/user_group_admin.php:2556 msgid "Show Members" msgstr "Mostrar Miembros" #: /var/www/html/cacti/user_group_admin.php:2562 msgctxt "filter reset" msgid "Clear" msgstr "Restablecer" #: /var/www/html/cacti/utilities.php:177 msgid "" "NET-SNMP Not Installed or its paths are not set. Please install if you wish " "to monitor SNMP enabled devices." msgstr "" "NET-SNMP no está instalado o su ruta no está configurada. Por favor, " "instalalo si deseas monitorear dispositivos habilitados para SNMP." #: /var/www/html/cacti/utilities.php:183 msgid "Configuration Settings" msgstr "Opciones de configuración" #: /var/www/html/cacti/utilities.php:183 #, php-format msgid "" "ERROR: Installed RRDtool version does not match configured version." "
    Please visit the %s and select the correct RRDtool Utility Version." msgstr "" "ERROR: versión de RRDtool instalada no coincide con la versión configurada." "
    Visita %s y selecciona la versión de RRDtool correcta." #: /var/www/html/cacti/utilities.php:187 #, php-format msgid "" "ERROR: RRDtool 1.2.x+ does not support the GIF images format, but %d\" " "graph(s) and/or templates have GIF set as the image format." msgstr "" "ERROR: RRDtool 1.2.x+ no soporta el formato de imágenes GIF, pero %d\" " "gráfico(s) y/o Plantillas que tienen configurado GIF como formato de imagen." #: /var/www/html/cacti/utilities.php:207 msgid "Database" msgstr "Base de datos" #: /var/www/html/cacti/utilities.php:208 msgid "PHP Info" msgstr "Info PHP" #: /var/www/html/cacti/utilities.php:215 #, php-format msgid "Technical Support [%s]" msgstr "Soporte Técnico [%s]" #: /var/www/html/cacti/utilities.php:242 msgid "General Information" msgstr "Información General" #: /var/www/html/cacti/utilities.php:251 msgid "Cacti Version" msgstr "Versión de Cacti" #: /var/www/html/cacti/utilities.php:256 msgid "Cacti OS" msgstr "SO de Cacti" #: /var/www/html/cacti/utilities.php:266 msgid "NET-SNMP Version" msgstr "Versión de NET-SNMP" #: /var/www/html/cacti/utilities.php:294 /var/www/html/cacti/utilities.php:327 #, php-format msgid "Total: %s" msgstr "Total: %s" #: /var/www/html/cacti/utilities.php:301 msgid "Poller Information" msgstr "Información de Sonda" #: /var/www/html/cacti/utilities.php:324 #, php-format msgid "Action[%s]" msgstr "Acción[%s]" #: /var/www/html/cacti/utilities.php:329 msgid "No items to poll" msgstr "No hay items para Sondear" #: /var/www/html/cacti/utilities.php:335 msgid "Concurrent Processes" msgstr "Procesos concurrentes" #: /var/www/html/cacti/utilities.php:340 msgid "Max Threads" msgstr "Max Threads" #: /var/www/html/cacti/utilities.php:345 msgid "PHP Servers" msgstr "Servidores PHP" #: /var/www/html/cacti/utilities.php:350 msgid "Script Timeout" msgstr "Tiempo de espera de Script" #: /var/www/html/cacti/utilities.php:355 msgid "Max OID" msgstr "OID Max" #: /var/www/html/cacti/utilities.php:360 msgid "Last Run Statistics" msgstr "Ultima estadística de ejecución" #: /var/www/html/cacti/utilities.php:368 msgid "System Memory" msgstr "Memoria de Sistema" #: /var/www/html/cacti/utilities.php:397 msgid "PHP Information" msgstr "Información de PHP" #: /var/www/html/cacti/utilities.php:404 msgid "" "PHP Version 5.5.0+ is recommended due to strong password hashing support." msgstr "" "Está recomendado PHP Versión 5.5.0+ debido al soporte de hashing fuerte de " "contraseñas." #: /var/www/html/cacti/utilities.php:409 msgid "PHP OS" msgstr "SO de PHP" #: /var/www/html/cacti/utilities.php:414 msgid "PHP uname" msgstr "PHP uname" #: /var/www/html/cacti/utilities.php:425 msgid "PHP SNMP" msgstr "PHP SNMP" #: /var/www/html/cacti/utilities.php:460 msgid "You've set memory limit to 'unlimited'." msgstr "Has especificado limite de memoria a 'ilimitado'." #: /var/www/html/cacti/utilities.php:462 #, php-format msgid "" "It is highly suggested that you alter you php.ini memory_limit to %s or " "higher." msgstr "" "Es altamente recomendado que modifiques memory_limit a %s o superior en tu " "php.ini." #: /var/www/html/cacti/utilities.php:463 msgid "" "This suggested memory value is calculated based on the number of data source " "present and is only to be used as a suggestion, actual values may vary " "system to system based on requirements." msgstr "" "El valor de memoria sugerido es calculado en base al número de data source " "presente y es sólo debe usarse como una sugerencia, los valores reales " "pueden variar de sistema a sistema basados en los requisitos." #: /var/www/html/cacti/utilities.php:471 msgid "MySQL Table Information - Sizes in KBytes" msgstr "Información de la tabla MySQL - Tamaño en KBytes" #: /var/www/html/cacti/utilities.php:480 msgid "Engine" msgstr "Motor" #: /var/www/html/cacti/utilities.php:482 msgid "Avg Row Length" msgstr "Longitud promedio de la fila" #: /var/www/html/cacti/utilities.php:483 msgid "Data Length" msgstr "Longitud de datos" #: /var/www/html/cacti/utilities.php:484 msgid "Index Length" msgstr "Longitud de índice" #: /var/www/html/cacti/utilities.php:485 msgid "Collation" msgstr "Colación" #: /var/www/html/cacti/utilities.php:486 msgid "Comment" msgstr "Comentario" #: /var/www/html/cacti/utilities.php:504 msgid "Unable to retrieve table status" msgstr "No se puede recuperar el estado de la tabla" #: /var/www/html/cacti/utilities.php:510 msgid "PHP Module Information" msgstr "Información de módulos de PHP" #: /var/www/html/cacti/utilities.php:635 msgid "User Login History" msgstr "Historial de inicio de sesión" #: /var/www/html/cacti/utilities.php:644 /var/www/html/cacti/utilities.php:772 msgid "User" msgstr "Usuario" #: /var/www/html/cacti/utilities.php:649 msgid "Deleted/Invalid" msgstr "Eliminado/Inválido" #: /var/www/html/cacti/utilities.php:662 /var/www/html/cacti/utilities.php:776 msgid "Result" msgstr "Resultado" #: /var/www/html/cacti/utilities.php:667 msgid "Success - Pswd" msgstr "Exito - contraseña" #: /var/www/html/cacti/utilities.php:668 msgid "Success - Token" msgstr "Exito - Token" #: /var/www/html/cacti/utilities.php:669 msgid "Failed" msgstr "Fallo" #: /var/www/html/cacti/utilities.php:673 msgid "Attempts" msgstr "Intentos" #: /var/www/html/cacti/utilities.php:689 /var/www/html/cacti/utilities.php:1048 #: /var/www/html/cacti/utilities.php:1387 #: /var/www/html/cacti/utilities.php:1632 #: /var/www/html/cacti/utilities.php:2353 #: /var/www/html/cacti/utilities.php:2615 /var/www/html/cacti/vdef.php:687 msgctxt "Button: use filter settings" msgid "Go" msgstr "Ir" #: /var/www/html/cacti/utilities.php:690 /var/www/html/cacti/utilities.php:1049 #: /var/www/html/cacti/utilities.php:1388 #: /var/www/html/cacti/utilities.php:1633 #: /var/www/html/cacti/utilities.php:2354 #: /var/www/html/cacti/utilities.php:2616 /var/www/html/cacti/vdef.php:688 msgctxt "Button: reset filter settings" msgid "Clear" msgstr "Restablecer" #: /var/www/html/cacti/utilities.php:691 /var/www/html/cacti/utilities.php:1050 #: /var/www/html/cacti/utilities.php:2617 msgctxt "Button: delete all table entries" msgid "Purge" msgstr "Purgar" #: /var/www/html/cacti/utilities.php:691 msgid "Purge User Log" msgstr "Purgar Log de Usuario" #: /var/www/html/cacti/utilities.php:765 msgid "User Logins" msgstr "Inicios de sesión del usuario" #: /var/www/html/cacti/utilities.php:777 msgid "IP Address" msgstr "Dirección IP" #: /var/www/html/cacti/utilities.php:793 msgid "(User Removed)" msgstr "(Usuario borrado)" #: /var/www/html/cacti/utilities.php:1122 #, php-format msgid "Log [Total Lines: %d - Non-Matching Items Hidden]" msgstr "Log [Lineas Totales: %d - items no coincidentes ocultos]" #: /var/www/html/cacti/utilities.php:1124 #, php-format msgid "Log [Total Lines: %d - All Items Shown]" msgstr "Log [Líneas Totales: %d - Todos los items mostrados]" #: /var/www/html/cacti/utilities.php:1223 #, php-format msgid "%s - WEBUI: Cacti Log Cleared from Web Management Interface." msgstr "" "%s - WEBUI: log de Cacti vaciado desde la interfaz de administración Web." #: /var/www/html/cacti/utilities.php:1225 msgid "Cacti Log Cleared" msgstr "Log de cacti vaciado" #: /var/www/html/cacti/utilities.php:1227 msgid "Error: Unable to clear log, no write permissions." msgstr "Error: no es posible borrar el log, no hay permisos de escritura." #: /var/www/html/cacti/utilities.php:1230 msgid "Error: Unable to clear log, file does not exist." msgstr "Error: no es posible borrar el log, el archivo no existe." #: /var/www/html/cacti/utilities.php:1322 msgid "Data Query Cache Items" msgstr "Items de cache de consultas de datos" #: /var/www/html/cacti/utilities.php:1338 msgid "Query Name" msgstr "Nombre de consulta" #: /var/www/html/cacti/utilities.php:1457 msgid "Field Value" msgstr "Valor del campo" #: /var/www/html/cacti/utilities.php:1457 msgid "Index" msgstr "Indice" #: /var/www/html/cacti/utilities.php:1592 msgid "Poller Cache Items" msgstr "Items del cache de la Sonda" #: /var/www/html/cacti/utilities.php:1653 msgid "Script" msgstr "Script" #: /var/www/html/cacti/utilities.php:1773 #: /var/www/html/cacti/utilities.php:1778 msgid "SNMP Version:" msgstr "Versión de SNMP:" #: /var/www/html/cacti/utilities.php:1774 msgid "Community:" msgstr "Comunidad:" #: /var/www/html/cacti/utilities.php:1775 #: /var/www/html/cacti/utilities.php:1779 msgid "OID:" msgstr "OID:" #: /var/www/html/cacti/utilities.php:1779 msgid "User:" msgstr "Usuario:" #: /var/www/html/cacti/utilities.php:1782 msgid "Script:" msgstr "Script:" #: /var/www/html/cacti/utilities.php:1784 msgid "Script Server:" msgstr "Servidor de Scripts:" #: /var/www/html/cacti/utilities.php:1797 msgid "RRD:" msgstr "RRD:" #: /var/www/html/cacti/utilities.php:1818 msgid "" "Cacti technical support page. Used by developers and technical support " "persons to assist with issues in Cacti. Includes checks for common " "configuration issues." msgstr "" "Página de soporte técnico de Cacti. Usado por desarrolladores y personas de " "soporte técnico para asistir con problemas en Cacti. Incluye comprobaciones " "para problemas de configuración comunes." #: /var/www/html/cacti/utilities.php:1820 msgid "Log Administration" msgstr "Administración de Log" #: /var/www/html/cacti/utilities.php:1822 msgid "" "The Cacti Log stores statistic, error and other message depending on system " "settings. This information can be used to identify problems with the poller " "and application." msgstr "" "El log de Cacti almacena estadísticas, errores y otros mensajes dependiendo " "de la configuración del sistema. Esta información puede ser usada para " "identificar problemas con la Sonda y la aplicación." #: /var/www/html/cacti/utilities.php:1826 msgid "" "Allows Administrators to browse the user log. Administrators can filter and " "export the log as well." msgstr "" "Permite a los administradores examinar el registro de usuarios. Los " "administradores pueden filtrar y exportar los registros también." #: /var/www/html/cacti/utilities.php:1830 msgid "Poller Cache Administration" msgstr "Administración del cache de Sonda" #: /var/www/html/cacti/utilities.php:1833 msgid "" "This is the data that is being passed to the poller each time it runs. This " "data is then in turn executed/interpreted and the results are fed into the " "RRDfiles for graphing or the database for display." msgstr "" "Estos son los datos que se pasan a la Sonda cada vez que se ejecuta. Estos " "datos son a su vez ejecutados/interpretados y los resultados son " "introducidos a los archivos RRD para graficar o la base de datos para " "visualizar." #: /var/www/html/cacti/utilities.php:1837 msgid "" "The Data Query Cache stores information gathered from Data Query input " "types. The values from these fields can be used in the text area of Graphs " "for Legends, Vertical Labels, and GPRINTS as well as in CDEF's." msgstr "" "El cache de consultas de datos almacena información obtenida de los tipos de " "entrada consulta de datos." #: /var/www/html/cacti/utilities.php:1839 msgid "Rebuild Poller Cache" msgstr "Reconstruir el cache de Sonda" #: /var/www/html/cacti/utilities.php:1841 msgid "" "The Poller Cache will be re-generated if you select this option. Use this " "option only in the event of a database crash if you are experiencing issues " "after the crash and have already run the database repair tools. " "Alternatively, if you are having problems with a specific Device, simply re-" "save that Device to rebuild its Poller Cache. There is also a command line " "interface equivalent to this command that is recommended for large systems. " "NOTE: On large systems, this command may take " "several minutes to hours to complete and therefore should not be run from " "the Cacti UI. You can simply run 'php -q cli/rebuild_poller_cache.php --" "help' at the command line for more information." msgstr "" #: /var/www/html/cacti/utilities.php:1843 msgid "Rebuild Resource Cache" msgstr "Reconstruir el cache de recursos" #: /var/www/html/cacti/utilities.php:1845 msgid "" "When operating multiple Data Collectors in Cacti, Cacti will attempt to " "maintain state for key files on all Data Collectors. This includes all " "core, non-install related website and plugin files. When you force a " "Resource Cache rebild, Cacti will clear the local Resource Cache, and then " "rebuild it at the next scheduled poller start. This will trigger all Remote " "Data Collectors to recheck their website and plugin files for consistency." msgstr "" #: /var/www/html/cacti/utilities.php:1849 msgid "Boost Utilities" msgstr "Utilidades de Boost" #: /var/www/html/cacti/utilities.php:1850 msgid "View Boost Status" msgstr "Ver estado de Boost" #: /var/www/html/cacti/utilities.php:1852 msgid "" "This menu pick allows you to view various boost settings and statistics " "associated with the current running Boost configuration." msgstr "" "Esta opción de menú le permite ver varias configuraciones de Boost y " "estadísticas asociadas con la configuración actual de Boost en ejecución." #: /var/www/html/cacti/utilities.php:1856 msgid "RRD Utilities" msgstr "Utilidades RRD" #: /var/www/html/cacti/utilities.php:1857 msgid "RRDfile Cleaner" msgstr "Limpiador de archivos RRD" #: /var/www/html/cacti/utilities.php:1859 msgid "" "When you delete Data Sources from Cacti, the corresponding RRDfiles are not " "removed automatically. Use this utility to facilitate the removal of these " "old files." msgstr "" "Cuando eliminas Data Sources de Cacti, los archivos RRD correspondientes no " "son automáticamente eliminados. Usa esta utilidad para facilitar la " "eliminación de estos archivos viejos." #: /var/www/html/cacti/utilities.php:1863 msgid "SNMPAgent Utilities" msgstr "Utilidades de Agente SNMP" #: /var/www/html/cacti/utilities.php:1864 msgid "View SNMPAgent Cache" msgstr "Ver cache de Agente SNMP" #: /var/www/html/cacti/utilities.php:1866 msgid "This shows all objects being handled by the SNMPAgent." msgstr "Esto muestra todos los objetos siendo manejados por el Agente SNMP." #: /var/www/html/cacti/utilities.php:1868 msgid "Rebuild SNMPAgent Cache" msgstr "Reconstruir cache de Agente SNMP" #: /var/www/html/cacti/utilities.php:1870 msgid "" "The SNMP cache will be cleared and re-generated if you select this option. " "Note that it takes another poller run to restore the SNMP cache completely." msgstr "" "El cache SNMP será vaciado y regenerado si esta opción es seleccionada. Ten " "en cuenta que necesita una ejecución de Sonda adicional para restaurar el " "cache SNMP completamente." #: /var/www/html/cacti/utilities.php:1872 msgid "View SNMPAgent Notification Log" msgstr "Ver registro de notificaciones del Agente SNMP" #: /var/www/html/cacti/utilities.php:1874 msgid "" "This menu pick allows you to view the latest events SNMPAgent has handled in " "relation to the registered notification receivers." msgstr "" "Esta opción de menú le permite ver los últimos eventos que el Agente SNMP ha " "manejado en relación con los receptores de notificación registrados." #: /var/www/html/cacti/utilities.php:1878 msgid "Allows Administrators to maintain SNMP notification receivers." msgstr "" "Permite a los administradores mantener receptores de notificaciones SNMP." #: /var/www/html/cacti/utilities.php:1884 msgid "Cacti System Utilities" msgstr "Utilitarios del sistema Cacti" #: /var/www/html/cacti/utilities.php:2008 msgid "Overrun Warning" msgstr "Advertencia de desbordamiento" #: /var/www/html/cacti/utilities.php:2009 msgid "Timed Out" msgstr "Tiempo de espera agotado" #: /var/www/html/cacti/utilities.php:2010 msgid "Other" msgstr "Otro" #: /var/www/html/cacti/utilities.php:2012 msgid "Never Run" msgstr "No se ejecutó" #: /var/www/html/cacti/utilities.php:2065 msgid "Cannot open directory" msgstr "No se puede abrir el directorio" #: /var/www/html/cacti/utilities.php:2069 msgid "Directory Does NOT Exist!!" msgstr "El directorio NO existe!!" #: /var/www/html/cacti/utilities.php:2076 msgid "Current Boost Status" msgstr "Estado actual de Boost" #: /var/www/html/cacti/utilities.php:2079 msgid "Boost On-demand Updating:" msgstr "Actualización de Boost bajo demanda:" #: /var/www/html/cacti/utilities.php:2082 msgid "Total Data Sources:" msgstr "Data Sources Totales:" #: /var/www/html/cacti/utilities.php:2086 msgid "Pending Boost Records:" msgstr "Registros pendientes de Boost:" #: /var/www/html/cacti/utilities.php:2089 msgid "Archived Boost Records:" msgstr "Registros de Boost archivados:" #: /var/www/html/cacti/utilities.php:2092 msgid "Total Boost Records:" msgstr "Registros totales de Boost:" #: /var/www/html/cacti/utilities.php:2096 msgid "Boost Storage Statistics" msgstr "Estadísticas de almacenamiento de Boost" #: /var/www/html/cacti/utilities.php:2100 msgid "Database Engine:" msgstr "Motor de base de datos:" #: /var/www/html/cacti/utilities.php:2104 msgid "Current Boost Table(s) Size:" msgstr "Tamaño actual de tabla(s) de Boost:" #: /var/www/html/cacti/utilities.php:2108 msgid "Avg Bytes/Record:" msgstr "Prom Bytes/Registros:" #: /var/www/html/cacti/utilities.php:2136 #, php-format msgid "%d Bytes" msgstr "%d Bytes" #: /var/www/html/cacti/utilities.php:2136 msgid "Max Record Length:" msgstr "Longitud máxima de registro:" #: /var/www/html/cacti/utilities.php:2142 #: /var/www/html/cacti/utilities.php:2143 msgid "Unlimited" msgstr "Ilimitado" #: /var/www/html/cacti/utilities.php:2148 msgid "Max Allowed Boost Table Size:" msgstr "Tamaño máximo permitido de la tabla de Boost:" #: /var/www/html/cacti/utilities.php:2152 msgid "Estimated Maximum Records:" msgstr "Registros máximos estimados:" #: /var/www/html/cacti/utilities.php:2155 msgid "Runtime Statistics" msgstr "Estadísticas de tiempo de ejecución" #: /var/www/html/cacti/utilities.php:2158 msgid "Last Start Time:" msgstr "Ultima hora de inicio:" #: /var/www/html/cacti/utilities.php:2161 msgid "Last Run Duration:" msgstr "Ultima ejecución Duración:" #: /var/www/html/cacti/utilities.php:2164 #, php-format msgid "%d minutes" msgstr "%d minutos" #: /var/www/html/cacti/utilities.php:2164 #, php-format msgid "%d seconds" msgstr "%d segundos" #: /var/www/html/cacti/utilities.php:2165 #, php-format msgid "%0.2f percent of update frequency)" msgstr "%0.2f porciento de frecuencia de actualización)" #: /var/www/html/cacti/utilities.php:2172 msgid "RRD Updates:" msgstr "Actualizaciones RRD:" #: /var/www/html/cacti/utilities.php:2175 #: /var/www/html/cacti/utilities.php:2181 msgid "MBytes" msgstr "MBytes" #: /var/www/html/cacti/utilities.php:2175 msgid "Peak Poller Memory:" msgstr "Pico de memoria de Sonda:" #: /var/www/html/cacti/utilities.php:2178 msgid "Detailed Runtime Timers:" msgstr "Temporizadores de tiempo de ejecución detallados:" #: /var/www/html/cacti/utilities.php:2181 msgid "Max Poller Memory Allowed:" msgstr "Memoria máxima de Sonda permitida:" #: /var/www/html/cacti/utilities.php:2184 msgid "Run Time Configuration" msgstr "Configuración de tiempo de ejecución" #: /var/www/html/cacti/utilities.php:2187 msgid "Update Frequency:" msgstr "Frecuencia de actualización:" #: /var/www/html/cacti/utilities.php:2190 msgid "Next Start Time:" msgstr "Próximo inicio:" #: /var/www/html/cacti/utilities.php:2193 msgid "Maximum Records:" msgstr "Registros máximos:" #: /var/www/html/cacti/utilities.php:2193 msgid "Records" msgstr "Registros" #: /var/www/html/cacti/utilities.php:2196 msgid "Maximum Allowed Runtime:" msgstr "Tiempo de ejecución máximo permitido:" #: /var/www/html/cacti/utilities.php:2202 msgid "Image Caching Status:" msgstr "Estado de caché de la imagen:" #: /var/www/html/cacti/utilities.php:2205 msgid "Cache Directory:" msgstr "Directorio cache:" #: /var/www/html/cacti/utilities.php:2208 msgid "Cached Files:" msgstr "Archivos almacenados en cache:" #: /var/www/html/cacti/utilities.php:2211 msgid "Cached Files Size:" msgstr "Tamañp de archivos en cache:" #: /var/www/html/cacti/utilities.php:2307 msgid "SNMPAgent Cache" msgstr "Cache de Agente SNMP" #: /var/www/html/cacti/utilities.php:2337 msgid "OIDs" msgstr "OIDs" #: /var/www/html/cacti/utilities.php:2416 msgid "Column Data" msgstr "Datos de columna" #: /var/www/html/cacti/utilities.php:2416 msgid "Scalar" msgstr "Escalar" #: /var/www/html/cacti/utilities.php:2558 msgid "SNMPAgent Notification Log" msgstr "Registro de notificaciones de Agente SNMP" #: /var/www/html/cacti/utilities.php:2586 #: /var/www/html/cacti/utilities.php:2671 msgid "Receiver" msgstr "Receptor" #: /var/www/html/cacti/utilities.php:2663 msgid "Log Entries" msgstr "Entradas de log" #: /var/www/html/cacti/utilities.php:2678 #, php-format msgid "Severity Level: %s" msgstr "Nivel de severidad: %s" #: /var/www/html/cacti/vdef.php:265 msgid "Click 'Continue' to delete the following VDEF." msgid_plural "Click 'Continue' to delete following VDEFs." msgstr[0] "Haga click en 'Continuar' para eliminar el siguiente VDEF." msgstr[1] "Haga click en 'Continuar' para eliminar los siguientes VDEFs." #: /var/www/html/cacti/vdef.php:270 msgid "Delete VDEF" msgid_plural "Delete VDEFs" msgstr[0] "Eliminar VDEF" msgstr[1] "Eliminar VDEFs" #: /var/www/html/cacti/vdef.php:274 msgid "" "Click 'Continue' to duplicate the following VDEF. You can optionally change " "the title format for the new VDEF." msgid_plural "" "Click 'Continue' to duplicate following VDEFs. You can optionally change the " "title format for the new VDEFs." msgstr[0] "" "Haga click en 'Continuar' para duplicar el siguiente VDEF. Opcionalmente, " "puedes cambiar el formato del titulo para el nuevo VDEF." msgstr[1] "" "Haga click en 'Continuar' para duplicar los siguientes VDEFs. Opcionalmente, " "puedes cambiar el formato del titulo para los nuevos VDEFs." #: /var/www/html/cacti/vdef.php:280 msgid "Duplicate VDEF" msgid_plural "Duplicate VDEFs" msgstr[0] "Duplicar VDEF" msgstr[1] "Duplicar VDEFs" #: /var/www/html/cacti/vdef.php:283 msgid "You must select at least one VDEF." msgstr "Debes seleccionar al menos un VDEF." #: /var/www/html/cacti/vdef.php:325 msgid "Click 'Continue' to delete the following VDEF's." msgstr "Haga click en 'Continuar' para eliminar el/los siguientes VDEF's." #: /var/www/html/cacti/vdef.php:385 msgid "VDEF Preview" msgstr "Vista previa de VDEF" #: /var/www/html/cacti/vdef.php:390 #, php-format msgid "VDEF Items [edit: %s]" msgstr "Items VDEF [edit: %s]" #: /var/www/html/cacti/vdef.php:392 msgid "VDEF Items [new]" msgstr "Items VDEF [nuevo]" #: /var/www/html/cacti/vdef.php:408 msgid "Choose what type of VDEF item this is." msgstr "Elige que tipo de item VDEF es." #: /var/www/html/cacti/vdef.php:408 msgid "VDEF Item Type" msgstr "Tipo de Item VDEF" #: /var/www/html/cacti/vdef.php:430 msgid "Enter a value for this VDEF item." msgstr "Ingresa un valor para este item VDEF." #: /var/www/html/cacti/vdef.php:430 msgid "VDEF Item Value" msgstr "Valor de item VDEF" #: /var/www/html/cacti/vdef.php:535 #, php-format msgid "VDEFs [edit: %s]" msgstr "VDEF [editar: %s]" #: /var/www/html/cacti/vdef.php:537 msgid "VDEFs [new]" msgstr "VDEFs [nuevo]" #: /var/www/html/cacti/vdef.php:600 /var/www/html/cacti/vdef.php:639 msgid "Delete VDEF Item" msgstr "Borrar item VDEF" #: /var/www/html/cacti/vdef.php:847 msgid "The name of this VDEF." msgstr "El nombre de este VDEF." #: /var/www/html/cacti/vdef.php:847 msgid "VDEF Name" msgstr "Nombre de VDEF" #: /var/www/html/cacti/vdef.php:848 msgid "" "VDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" "VDEFs que estan en uso no pueden ser borrados. En uso es definido como " "siendo referenciado por un gráfico or una Plantilla de gráficos." #: /var/www/html/cacti/vdef.php:849 msgid "The number of Graphs using this VDEF." msgstr "Número de gráficos usando este VDEF." #: /var/www/html/cacti/vdef.php:850 msgid "The number of Graphs Templates using this VDEF." msgstr "Número de Plantillas de gráficos usando este VDEF." #: /var/www/html/cacti/vdef.php:873 msgid "No VDEFs" msgstr "No VDEFs" #~ msgid "edit" #~ msgstr "editar" #~ msgid "new" #~ msgstr "nuevo" #~ msgid "" #~ "This is a unique string that will be matched to a devices sysDescr string " #~ "to pair it to this Discovery Template. Any Perl regular expression can " #~ "be used in addition to any SQL Where expression." #~ msgstr "" #~ "Este es un texto único que será comparado con el valor de texto de " #~ "sysDescr de los dispositivos para asociarlos con esta Plantilla de " #~ "dispositivos. Cualquier expresión regular de Perl puede ser usada en " #~ "adición a cualquier expresión WHERE de SQL." #~ msgid "Effective Timespan" #~ msgstr "Período de tiempo efectivo" #~ msgid "Select the graph items that you want to accept user input for." #~ msgstr "" #~ "Seleccione los items de gráfico para los que deseas aceptar entradas de " #~ "usuario." #~ msgid "Graph Template Selection [edit: %s]" #~ msgstr "Selección de Plantilla de gráficos [editar: %s]" #~ msgid "Graph Template Selection [new]" #~ msgstr "Selección de Plantilla de gráficos [nueva]" #~ msgid "Effective Retention" #~ msgstr "Retención efectiva" #~ msgid "Discovery Rules" #~ msgstr "Reglas de descubrimiento" #~ msgid "" #~ "Note that when upgrading, you only will receive the Upgrade selection." #~ msgstr "" #~ "Ten en cuenta que mientras actualizas, sólo recibirás la selección de " #~ "actualización." #~ msgid "You have three Cacti installation options to choose from:" #~ msgstr "Tienes tres opciones de instalación de Cacti para elegir:" #~ msgid "Upgrade Previous Cacti" #~ msgstr "Actualizar Cacti existente" #~ msgid "Use this option to upgrade a previous release of Cacti" #~ msgstr "Usa esta opción para actualizar una versión de Cacti anterior" #~ msgid "" #~ "You Cacti database has been upgraded. You can view the results below." #~ msgstr "" #~ "Tu base de datos Cacti ha sido actualizada. Puedes ver los resultados " #~ "debajo." #~ msgid "[Not Ran]" #~ msgstr "[No se ejecutó]" #~ msgid "No SQL queries have been executed." #~ msgstr "No se ha ejecutado ninguna consulta de SQL." #~ msgid "Purge cacti.log" #~ msgstr "Purgar cacti.log" #~ msgid "LINE LIMIT OF 1000 LINES REACHED!!" #~ msgstr "LIMITE DE 1000 LINEAS ALCANZADO!!" #~ msgid "Message Type" #~ msgstr "Tipo de mensaje" #~ msgid "Report Details" #~ msgstr "Detalles de Reporte" #~ msgid "Report Items" #~ msgstr "Items de Reporte" #~ msgid "PHP version does not support IPv6" #~ msgstr "Versión de PHP no soporta IPv6" #~ msgid "PHP binary does not support IPv6" #~ msgstr "Binario PHP no soporta IPv6" #~ msgid "Plugin Management (Cacti Version: %s)" #~ msgstr "Administración de plugin (versión de Cacti: %s)" #~ msgid "%s to Export" #~ msgstr "%s a exportar" #~ msgid "Tecnical Support" #~ msgstr "Soporte Técnico" #~ msgid "" #~ "The poller cache will be cleared and re-generated if you select this " #~ "option. Sometimes host/data source data can get out of sync with the " #~ "cache in which case it makes sense to clear the cache and start over." #~ msgstr "" #~ "El cache de la Sonda será vaciado y regenerado si seleccionas esta " #~ "opción. A veces los equipos y/o datos de Data source pueden quedar fuera " #~ "de sincronización con el cache en cuyo caso tiene sentido vaciar el cache " #~ "y volver a empezar." #, fuzzy #~| msgid "Pages:" #~ msgid "Page:" #~ msgstr "Páginas:" #, fuzzy #~| msgid "IP Address" #~ msgid "IP Address:" #~ msgstr "Dirección IP" #, fuzzy #~| msgid "Date" #~ msgid "Date:" #~ msgstr "Fecha" #, fuzzy #~| msgid "Action" #~ msgid "Action:" #~ msgstr "Accion" #, fuzzy #~| msgid "Alert Logs" #~ msgid "Audit Log" #~ msgstr "Logs de Alerta" #, fuzzy #~| msgid "Export Results" #~ msgid "Export Log Events" #~ msgstr "Exportar Resultados" #, fuzzy #~| msgid "Purge Log" #~ msgid "Purge Log Events" #~ msgstr "Purgar Log" #, fuzzy #~| msgid "Events" #~ msgid "Audit Events" #~ msgstr "Eventos" #, fuzzy #~| msgid "Plugin Name" #~ msgid "Page Name" #~ msgstr "Nombre de Plugin" #, fuzzy #~| msgid "The date that this Tree was last edited." #~ msgid "The page where the event was generated." #~ msgstr "La fecha en que este árbol fue editado por última vez." #, fuzzy #~| msgid "User Management" #~ msgid "User Agent" #~ msgstr "Administración de usuario" #, fuzzy #~| msgid "The primary address for the Site." #~ msgid "The IP Address of the requester." #~ msgstr "Dirección principal para este sitio." #, fuzzy #~| msgid "End Time" #~ msgid "Event Time" #~ msgstr "Hora de finalización" #, fuzzy #~| msgid "No Accounts Found" #~ msgid "No Audit Log Events Found" #~ msgstr "No se encontraron cuentas" #, fuzzy #~| msgid "Alert Details" #~ msgid "Audit Event Details" #~ msgstr "Detalles de alerta" #, fuzzy #~| msgid "View Cacti Log" #~ msgid "View Cacti Audit Log" #~ msgstr "Ver log de Cacti" #, fuzzy #~| msgid "View Cacti Log" #~ msgid "View Audit Log" #~ msgstr "Ver log de Cacti" #~ msgid "Indefinitely" #~ msgstr "Indefinidamente" #, fuzzy #~| msgid "Monitor Settings" #~ msgid "Audit Log Settings" #~ msgstr "Opciones de Monitor" #, fuzzy #~| msgid "Enable Site" #~ msgid "Enable Audit Log" #~ msgstr "Habilitar Sitio" #, fuzzy #~| msgid "" #~| "Check this box if you want to use custom html and CSS for the report." #~ msgid "Check this box, if you want the Audit Log to track GUI activities." #~ msgstr "" #~ "Marca esta casilla si quieres usar html personalizado y CSS para el " #~ "reporte." #, fuzzy #~| msgid "Syslog Retention" #~ msgid "Audit Log Retention" #~ msgstr "Retención de Syslog" #~ msgid "Start" #~ msgstr "Inicio" #~ msgid "Legend" #~ msgstr "Leyenda" #~ msgid "Save Filter Settings" #~ msgstr "Guardar opciones de filtro" #~ msgid "Next Update In" #~ msgstr "Próxima actualización en" #~ msgid "Select Tree to View" #~ msgstr "Selecciona Arbol a ver" #~ msgid "All Levels" #~ msgstr "Todos los niveles" #~ msgid "Top Level" #~ msgstr "Nivel superior" #, fuzzy #~ msgid "Set" #~ msgstr "Especificar" #~ msgid "%d Graph" #~ msgstr "%d Grafico" #~ msgid "%d Graphs" #~ msgstr "%d gráficos" #~ msgid "Plugin -> Cycle Graphs" #~ msgstr "Plugin -> Cycle Graphs" #~ msgid "Statistics Reports" #~ msgstr "Reportes de estadisticas" #~ msgid "UDP/TCP Destination Port" #~ msgstr "Puerto destino UDP/TCP" #~ msgid "UDP/TCP Source Port" #~ msgstr "Puerto origen UDP/TCP" #~ msgid "UDP/TCP Port" #~ msgstr "Puerto UDP/TCP" #~ msgid "Destination IP" #~ msgstr "IP destino" #~ msgid "Source IP" #~ msgstr "IP Origen" #~ msgid "Source/Destination IP" #~ msgstr "IP Origen/Destino" #~ msgid "Source or Destination IP" #~ msgstr "IP Origen o Destino" #~ msgid "IP Protocol" #~ msgstr "Protocolo IP" #~ msgid "Input Interface" #~ msgstr "Interfaz de entrada" #~ msgid "Output Interface" #~ msgstr "Interfaz de salida" #~ msgid "Input/Output Interface" #~ msgstr "Interfaz de Entrada/Salida" #~ msgid "Source AS" #~ msgstr "SA origen" #~ msgid "Destination AS" #~ msgstr "SA destino" #~ msgid "Source/Destination AS" #~ msgstr "SA origen/destino" #~ msgid "IP ToS" #~ msgstr "IP ToS" #~ msgid "Source Prefix" #~ msgstr "Prefijo origen" #~ msgid "Destination Prefix" #~ msgstr "Prefijo destino" #~ msgid "Source/Destination Prefix" #~ msgstr "Prefijo Origen/Destino" #~ msgid "Print Reports" #~ msgstr "Imprimir reportes" #~ msgid "AS Numbers" #~ msgstr "Numeros de SA" #~ msgid "132 Columns" #~ msgstr "132 columnas" #~ msgid "1 Line with Tags" #~ msgstr "1 linea con etiquetas" #~ msgid "AS Aggregation" #~ msgstr "Agregación de SA" #, fuzzy #~ msgid "Protocol Port Aggregation" #~ msgstr "Protocol Port Aggregation" #~ msgid "Full (Catalyst)" #~ msgstr "Completo (Catalyst)" #~ msgid "Select One" #~ msgstr "Selecciona uno" #~ msgid "TCP" #~ msgstr "TCP" #~ msgid "UDP" #~ msgstr "UDP" #~ msgid "ICMP" #~ msgstr "ICMP" #~ msgid "IGMP" #~ msgstr "IGMP" #~ msgid "GGP" #~ msgstr "GGP" #~ msgid "IPENCAP" #~ msgstr "IPENCAP" #~ msgid "ST" #~ msgstr "ST" #~ msgid "CBT" #~ msgstr "CBT" #~ msgid "EGP" #~ msgstr "EGP" #~ msgid "IGP" #~ msgstr "IGP" #~ msgid "BBN-RCC-MON" #~ msgstr "BBN-RCC-MON" #~ msgid "NVP-II" #~ msgstr "NVP-II" #~ msgid "PUP" #~ msgstr "PUP" #~ msgid "ARGUS" #~ msgstr "ARGUS" #~ msgid "EMCON" #~ msgstr "EMCON" #~ msgid "XNET" #~ msgstr "XNET" #~ msgid "CHAOS" #~ msgstr "CHAOS" #~ msgid "MUX" #~ msgstr "MUX" #~ msgid "DCN-MEAS" #~ msgstr "DCN-MEAS" #~ msgid "HMP" #~ msgstr "HMP" #~ msgid "PRM" #~ msgstr "PRM" #~ msgid "XNS-IDP" #~ msgstr "XNS-IDP" #~ msgid "TRUNK-1" #~ msgstr "TRUNK-1" #~ msgid "TRUNK-2" #~ msgstr "TRUNK-2" #~ msgid "LEAF-1" #~ msgstr "LEAF-1" #~ msgid "LEAF-2" #~ msgstr "LEAF-2" #~ msgid "RDP" #~ msgstr "RDP" #~ msgid "IRTP" #~ msgstr "IRTP" #~ msgid "ISO-TP4" #~ msgstr "ISO-TP4" #~ msgid "NETBLT" #~ msgstr "NETBLT" #~ msgid "MFE-NSP" #~ msgstr "MFE-NSP" #~ msgid "MERIT-INP" #~ msgstr "MERIT-INP" #~ msgid "DCCP" #~ msgstr "DCCP" #~ msgid "3PC" #~ msgstr "3PC" #~ msgid "IDPR" #~ msgstr "IDPR" #~ msgid "XTP" #~ msgstr "XTP" #~ msgid "DDP" #~ msgstr "DDP" #~ msgid "IDPR-CMTP" #~ msgstr "IDPR-CMTP" #~ msgid "TP++" #~ msgstr "TP++" #~ msgid "IL" #~ msgstr "IL" #~ msgid "IPv6" #~ msgstr "IPv6" #~ msgid "SDRP" #~ msgstr "SDRP" #~ msgid "IPv6-Route" #~ msgstr "IPv6-Route" #~ msgid "IPv6-Frag" #~ msgstr "IPv6-Frag" #~ msgid "IDRP" #~ msgstr "IDRP" #~ msgid "RSVP" #~ msgstr "RSVP" #~ msgid "GRE" #~ msgstr "GRE" #~ msgid "DSR" #~ msgstr "DSR" #~ msgid "BNA" #~ msgstr "BNA" #~ msgid "IPSEC-ESP" #~ msgstr "IPSEC-ESP" #~ msgid "IPSEC-AH" #~ msgstr "IPSEC-AH" #~ msgid "IPv6-ICMP" #~ msgstr "IPv6-ICMP" #~ msgid "IPv6-NoNxt" #~ msgstr "IPv6-NoNxt" #~ msgid "IPv6-Opts" #~ msgstr "IPv6-Opts" #~ msgid "RSPF" #~ msgstr "RSPF" #~ msgid "VMTP" #~ msgstr "VMTP" #~ msgid "EIGRP" #~ msgstr "EIGRP" #~ msgid "OSPF" #~ msgstr "OSPF" #~ msgid "MTP" #~ msgstr "MTP" #~ msgid "IPIP" #~ msgstr "IPIP" #~ msgid "ENCAP" #~ msgstr "ENCAP" #~ msgid "Top %d" #~ msgstr "Top %d" #~ msgid "No Limit" #~ msgstr "Sin limite" #~ msgid "%s Bytes" #~ msgstr "%s Bytes" #~ msgid "Bytes" #~ msgstr "Bytes" #~ msgid "Flows" #~ msgstr "Flujos" #~ msgid "Packets" #~ msgstr "Paquetes" #~ msgid "Dest IP" #~ msgstr "IP Dest" #~ msgid "Src IP" #~ msgstr "IP Orig" #~ msgid "Src/Dest IP" #~ msgstr "IP Orig/Dest" #~ msgid "Protocol" #~ msgstr "Protocolo" #~ msgid "Input IF" #~ msgstr "Entrada IF" #~ msgid "Output IF" #~ msgstr "Salida IF" #~ msgid "Src AS" #~ msgstr "AS Orig" #~ msgid "Dest AS" #~ msgstr "AS Dest" #~ msgid "TOS" #~ msgstr "TOS" #~ msgid "Src Prefix" #~ msgstr "Prefijo orig" #~ msgid "Dest Prefix" #~ msgstr "Prefijo dest" #~ msgid "B/Pk" #~ msgstr "B/Pk" #, fuzzy #~ msgid "Dest IF" #~ msgstr "IF Dest" #~ msgid "Dest Port" #~ msgstr "Puerto Dest" #~ msgid "End Time" #~ msgstr "Hora de finalización" #~ msgid "Fl" #~ msgstr "FI" #, fuzzy #~ msgid "Src IF" #~ msgstr "IF Orig" #~ msgid "Src Port" #~ msgstr "Puerto Orig" #~ msgid "Start Time" #~ msgstr "Hora de inicio" #~ msgid "Ts" #~ msgstr "Ts" #~ msgid "Flags" #~ msgstr "Etiquetas" #, fuzzy #~ msgid "Flow Filter Constraints" #~ msgstr "Restricciones de filtro de flujos" #~ msgid "Listener" #~ msgstr "Listener" #~ msgid "Protocols" #~ msgstr "Protocolos" #~ msgid "TCP Flags" #~ msgstr "Banderas TCP" #~ msgid "TOS Fields" #~ msgstr "Campos TOS" #~ msgid "(e.g., -0x0b/0x0F)" #~ msgstr "(ej: -0x0b/0x0F)" #~ msgid "Source Port(s)" #~ msgstr "Puerto(s) de origen" #~ msgid "Source Interface" #~ msgstr "Interfaz Origen" #~ msgid "Dest Port(s)" #~ msgstr "Puerto(s) dest" #~ msgid "Dest Interface" #~ msgstr "Interfaz Dest" #, 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 "" #~ " Multiples entradas de campo, separadas por comas, son permitidos en los " #~ "campos de arriba. Un signo menos (-) negara una entrada (ej: -80 para " #~ "Puerto, significaria cualquier puerto menos 80)" #~ msgid "Note:" #~ msgstr "Nota:" #~ msgid "Report Parameters" #~ msgstr "Parametros de Reporte" #~ msgid "Statistics:" #~ msgstr "Estadísticas:" #~ msgid "Printed:" #~ msgstr "Impreso:" #~ msgid "Include if:" #~ msgstr "Incluir si:" #~ msgid "Resolve Addresses:" #~ msgstr "Resolver direcciones:" #~ msgid "Sort Field:" #~ msgstr "Ordenar campo:" #~ msgid "Max Flows:" #~ msgstr "Flujos Max:" #~ msgid "Minimum Bytes:" #~ msgstr "Bytes mínimos:" #~ msgid "Defaults" #~ msgstr "Por defecto" #~ msgid "Save As" #~ msgstr "Guardar como" #~ msgid "Filter Saved" #~ msgstr "Filtro guardado" #~ msgid "Filter Updated" #~ msgstr "Filtro actualizado" #~ msgid "Interface" #~ msgstr "Interfaz" #~ msgid "AS" #~ msgstr "SA" #~ msgid "NetFlow version 1" #~ msgstr "Versión 1 de Netflow" #~ msgid "NetFlow version 5" #~ msgstr "Versión 5 de Netflow" #~ msgid "NetFlow version 6" #~ msgstr "Versión 6 de Netflow" #~ msgid "NetFlow version 7" #~ msgstr "Versión 7 de Netflow" #~ msgid "NetFlow Destination" #~ msgstr "Destino NetFlow" #~ msgid "NetFlow Source Destination" #~ msgstr "Origen Destino Netflow" #~ msgid "0 (Disabled)" #~ msgstr "0 (deshabilitado)" #~ msgid "9 (Highest)" #~ msgstr "9 (mas alto)" #~ msgid "Name of the device to be displayed." #~ msgstr "Nombre del dispositivo a ser mostrado." #~ msgid "Directory" #~ msgstr "Directorio" #~ msgid "Allowed Host" #~ msgstr "Equipo permitido" #, fuzzy #~ msgid "" #~ "IP Address of the device that is allowed to send to this flow collector. " #~ "Leave as 0 for any host." #~ msgstr "" #~ "Dirección IP del dispositivo que esta habilitado para enviar flujos a " #~ "este collector. Dejar 0 para cualquier equipo." #~ msgid "Port this collector will listen on." #~ msgstr "Puerto en el que este collector va a escuchar." #, fuzzy #~ msgid "Nesting" #~ msgstr "Anidando" #~ msgid "Directory Structure that will be used for the flows for this device." #~ msgstr "" #~ "Estructura de directorios que se usará para los flujos de este " #~ "dispositivo." #~ msgid "NetFlow Version" #~ msgstr "Versión de Netflow" #~ msgid "NetFlow Protocol version used by the device." #~ msgstr "Versión de Protocolo NetFlow usado por este dispositivo." #~ msgid "Compression Level" #~ msgstr "Nivel de compresión" #, 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 mas CPU para almacenar y recuperar resultados." #~ msgid "Rotation" #~ msgstr "Rotación" #~ msgid "How often to create a new Flow File." #~ msgstr "Con que frecuencia crear nuevo archivo de Flujo." #~ msgid "Expiration" #~ msgstr "Expiración" #~ msgid "How long to keep your flow files." #~ msgstr "Por cuanto tiempo conserver tus archivos de Flow." #~ msgid "" #~ "Also, remember to remove any leftover files from your Net-Flow Capture " #~ "location." #~ msgstr "" #~ "También, recuerda remover cualquier archivo restante de la ubicación de " #~ "capturas Net-Flow." #~ msgid "Device: %s" #~ msgstr "Dispositivo: %s" #~ msgid "FlowView Listeners" #~ msgstr "FlowView Listeners" #, fuzzy #~ msgid "Listeners" #~ msgstr "Listeners" #~ msgid "Allowed From" #~ msgstr "Permitido desde" #~ msgid "Compression" #~ msgstr "Compresión" #~ msgid "Expire" #~ msgstr "Expira" #~ msgid "No Devices" #~ msgstr "No hay dispositivos" #~ msgid "Every %d Weeks, 2" #~ msgstr "Cada %d semanas, 2" #~ msgid "Every Month" #~ msgstr "Cada mes" #~ msgid "New Schedule" #~ msgstr "Nuevo calendario" #, fuzzy #~ msgid "Enter a Report Title for the FlowView Schedule." #~ msgstr "Ingrese un título de Reporte para este calendario FlowView." #~ msgid "Whether or not this NetFlow Scan will be sent." #~ msgstr "Si este Scan de Netflow sera enviado o no." #~ msgid "Filter Name" #~ msgstr "Nombre de filtro" #~ msgid "Name of the query to run." #~ msgstr "Nombre de la consulta a ejecutar." #~ msgid "Send Interval" #~ msgstr "Intervalo de envío" #~ msgid "How often to send this NetFlow Report?" #~ msgstr "Cuan frecuente enviar este reporte de Netflow?" #, fuzzy #~ msgid "" #~ "This is the first date / time to send the NetFlow Scan email. All future " #~ "Emails will be calculated off of this time plus the interval given above." #~ msgstr "" #~ "Esta es la primera Fecha/Hora para enviar el correo de escaneo de " #~ "NetFlow. Todos los correos futuros seran calculados de acuerdo a esta " #~ "fecha/hora mas el intervalo dado arriba." #~ msgid "Email Addresses" #~ msgstr "Direcciones de correo" #~ msgid "Email addresses (command delimited) to send this NetFlow Scan to." #~ msgstr "" #~ "Direcciones de correo (delimitadas por coma) para enviar este escaneo de " #~ "NetFlow." #~ msgid "Click 'Continue' to delete the following Schedule(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar la(s) siguiente(s) tarea(s) " #~ "programada(s)." #~ msgid "Click 'Continue' to send the following Schedule(s) now." #~ msgstr "" #~ "Haga click en 'Continuar' para enviar la(s) siguiente(s) tarea(s) " #~ "programada(s) ahora." #~ msgid "Click 'Continue' to Disable the following Schedule(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para deshabilitar la(s) siguiente(s) tarea(s) " #~ "programada(s)." #~ msgid "Click 'Continue' to Enable the following Schedule(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para habilitar la(s) siguiente(s) tarea(s) " #~ "programada(s)." #~ msgid "You must select at least one schedule." #~ msgstr "Debes seleccionar al menos una tarea programada." #~ msgid "Report: %s" #~ msgstr "Reporte: %s" #~ msgid "Schedules" #~ msgstr "Calendario" #~ msgid "Schedule Title" #~ msgstr "Título de la tarea programada" #~ msgid "Next Send" #~ msgstr "Próximo envío" #~ msgid "Exclude" #~ msgstr "Excluir" #, fuzzy #~ msgid "Top Sample" #~ msgstr "Mejor muestra" #, fuzzy #~ msgid "Top 2 Samples" #~ msgstr "Mejores 2 muestras" #, fuzzy #~ msgid "Top 3 Samples" #~ msgstr "Mejores 3 muestras" #, fuzzy #~ msgid "Top 4 Samples" #~ msgstr "Mejores 4 muestras" #, fuzzy #~ msgid "Top 5 Samples" #~ msgstr "Mejores 5 muestras" #~ msgid "Show/Hide" #~ msgstr "Mostrar/Ocultar" #~ msgid "Table" #~ msgstr "Tabla" #~ msgid "Bytes Bar" #~ msgstr "Barra de Bytes" #~ msgid "Packets Bar" #~ msgstr "Barra de paquetes" #~ msgid "Flows Bar" #~ msgstr "Barra de flujos" #~ msgid "Filters" #~ msgstr "Filtros" #~ msgid "Flow Filters" #~ msgstr "Filtros de flujo" #, fuzzy #~ msgid "Manage Listeners" #~ msgstr "Administrar Listeners" #~ msgid "Manage Schedules" #~ msgstr "Administrar calendarios" #~ msgid "Cacti Flowview" #~ msgstr "Cacti Flowview" #~ msgid "Netflow - %" #~ msgstr "Netflow - %" #~ msgid "New Flow" #~ msgstr "Nuevo Flujo" #~ msgid "IP Packet Size Distribution (%)" #~ msgstr "Distribución del tamaño del paquete IP (%)" #~ msgid "Packets per Flow Distribution (%)" #~ msgstr "Distribución de flujo por paquetes (%)" #~ msgid "Octets per Flow Distribution (%)" #~ msgstr "Distribución de flujo por Octetos (%)" #~ msgid "Flow Time Distribution (%)" #~ msgstr "Distribución del tiempo de flujo (%)" #~ msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" #~ msgstr "" #~ "Fechas inválidas, la Fecha/Hora de finalización es anterior que Fecha/" #~ "Hora de inicio!" #~ msgid "" #~ "Invalid IP for the Source Address!
    (Must be in the form of " #~ "'192.168.0.1')" #~ msgstr "" #~ "IP invalida para la dirección origen!
    (Debe ser en el formato " #~ "'192.168.0.1')" #~ 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 invalida para la dirección origen!
    (Debe ser en el formato " #~ "'192.168.0.1/255.255.255.0' o '192.168.0.1/24')" #~ msgid "" #~ "Invalid IP for the Destination Address!
    (Must be in the form of " #~ "'192.168.0.1')" #~ msgstr "" #~ "IP invalida para la dirección destino!
    (Debe ser en el formato " #~ "'192.168.0.1')" #~ 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 invalida para la dirección destino!
    (Debe ser en el formato " #~ "'192.168.0.1/255.255.255.0' o '192.168.0.1/24')" #~ msgid "Invalid value for Source Interface!" #~ msgstr "Valor invalido para Interfaz de origen!" #~ msgid "Invalid value for Source Port! (0 - 65535)" #~ msgstr "Valor invalido para puerto origen! (0 - 65535)" #~ msgid "Invalid value for Source AS! (0 - 65535)" #~ msgstr "Valor invalido para AS origen! (0 - 65535)" #~ msgid "Invalid value for Destination Interface!" #~ msgstr "Valor invalido para interfaz de destino!" #~ msgid "Invalid value for Destination Port! (0 - 65535)" #~ msgstr "Valor invalido para puerto destino! (0 - 65535)" #~ msgid "Invalid value for Destination AS! (0 - 65535)" #~ msgstr "Valor invalido para AS destino! (0 - 65535)" #~ msgid "Invalid value for Protocol! (1 - 255)" #~ msgstr "Valor invalido para Protocolo! (1 - 255)" #~ msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" #~ msgstr "Valor invalido para bandera TCP! (ej: 0x1b o 0x1b/SA o SA/SA)" # cutoff como corte?limite? #, fuzzy #~ msgid "Invalid value for Cutoff Octets!" #~ msgstr "Valor inválido para corte de octetos!" #, fuzzy #~ msgid "Invalid value for Sort Field!" #~ msgstr "Valor inválido para clasificar campos!" #~ msgid "FlowView Chart for %s Type is %s" #~ msgstr "Gráfico de FlowView para %s Tipo es %s" #~ msgid "The Filter has been Deleted" #~ msgstr "El filtro ha sido eliminado" #~ msgid "The Filter has been Updated" #~ msgstr "El filtro ha sido actualizado" #, fuzzy #~ msgid "Flow Viewer" #~ msgstr "Visor de Flujo" #~ msgid "(view)" #~ msgstr "(ver)" #~ msgid "(save)" #~ msgstr "(guardar)" #~ msgid "(edit)" #~ msgstr "(editar)" #~ msgid "(actions)" #~ msgstr "(acciones)" #~ msgid "FlowView" #~ msgstr "FlowView" #~ msgid "New Query" #~ msgstr "Nueva consulta" #, fuzzy #~ msgid "Flow Tools Binary Path" #~ msgstr "Ruta al binario de la herramienta de Flujos" #~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." #~ msgstr "La ruta a los binarios flow-cat, flow-filter, y flow-stat." #~ msgid "Flow Tools Work Directory" #~ msgstr "Directorio de trabajo de la herramienta de Flujos" #~ msgid "This is the path to a temporary directory to do work." #~ msgstr "Esta es la ruta a un directorio temporal para trabajar." #~ msgid "Flows Directory" #~ msgstr "Directorio de Flujos" #~ msgid "This is the path to base the path of your flow folder structure." #~ msgstr "Este es la ruta base de la estructura de directorios de flujo." #~ msgid "Hostname Resolution" #~ msgstr "Resolución de nombre de equipo" #~ msgid "The method by which you wish to resolve hostnames." #~ msgstr "El método por el cual deseas resolver nombre de equipos." #~ msgid "Alternate DNS Server" #~ msgstr "Servidor DNS alternativo" #~ msgid "This is the DNS Server used to resolve names." #~ msgstr "Este es el servidor DNS usado para resolver nombres." #~ msgid "Strip Domain Names" #~ msgstr "Quitar nombres de dominio" #~ msgid "A comma delimited list of domains names to strip from the domain." #~ msgstr "" #~ "Una lista de nombres de dominios delimitada por coma para quitar del " #~ "dominio." #~ msgid "Export Now" #~ msgstr "Exportar ahora" #~ msgid "Periodic" #~ msgstr "Periódico" #~ msgid "Hourly" #~ msgstr "Por hora" #~ msgid "Click 'Continue' to delete the following Graph Export Definition." #~ msgid_plural "" #~ "Click 'Continue' to delete following Graph Export Definitions." #~ msgstr[0] "" #~ "Haga Click en 'Continuar' para eliminar la siguiente definición de " #~ "exportación de gráfico." #~ msgstr[1] "" #~ "Haga Click en 'Continuar' para eliminar las siguientes definiciones de " #~ "exportación de gráficos." #~ msgid "Click 'Continue' to disable the following Graph Export Definition." #~ msgid_plural "" #~ "Click 'Continue' to disable following Graph Export Definitions." #~ msgstr[0] "" #~ "Haga Click en 'Continuar' para deshabilitar la siguiente definición de " #~ "exportación de gráfico." #~ msgstr[1] "" #~ "Haga Click en 'Continuar' para deshabilitar las siguientes definiciones " #~ "de exportación de gráficos." #~ msgid "Click 'Continue' to enable the following Graph Export Definition." #~ msgid_plural "" #~ "Click 'Continue' to enable following Graph Export Definitions." #~ msgstr[0] "" #~ "Haga Click en 'Continuar' para habilitar la siguiente definición de " #~ "exportación de gráfico." #~ msgstr[1] "" #~ "Haga Click en 'Continuar' para habilitar las siguientes definiciones de " #~ "exportación de gráficos." #~ msgid "Click 'Continue' to run the following Graph Export Definition now." #~ msgid_plural "" #~ "Click 'Continue' to run following Graph Export Definitions now." #~ msgstr[0] "" #~ "Haga Click en 'Continuar' para ejecutar la siguiente definición de " #~ "exportación de gráfico ahora." #~ msgstr[1] "" #~ "Haga Click en 'Continuar' para ejecutar las siguientes definiciones de " #~ "exportación de gráficos ahora." #~ msgid "You must select at least one Graph Export Definition." #~ msgstr "" #~ "Debes seleccionar al menos una definición de exportación de gráficos." #~ msgid "Graph Export Definition [edit: %s]" #~ msgstr "Definición de exportación de gráfico [editar: %s]" #~ msgid "Graph Export Definition [new]" #~ msgstr "Definición de exportación de gráfico [nuevo]" #~ msgid "Select Tree(s)" #~ msgstr "Seleccionar Arbol(es)" #~ msgid "Trees Selected" #~ msgstr "Arboles seleccionados" #~ msgid "All Trees Selected" #~ msgstr "Todos los arboles seleccionados" #~ msgid "Select Site(s)" #~ msgstr "Seleccionar Sitio(s)" #~ msgid "Sites Selected" #~ msgstr "Sitios seleccionados" #~ msgid "All Sites Selected" #~ msgstr "Todos los Sitios seleccionados" #~ msgid "Graph Export Definitions" #~ msgstr "Definiciones de exportación gráfico" #~ msgid "Exports" #~ msgstr "Exportaciones" #~ msgid "Export Definitions" #~ msgstr "Definiciones de exportación" #~ msgid "Export Name" #~ msgstr "Nombre de la exportación" #~ msgid "The name of this Graph Export Definition." #~ msgstr "El nombre de esta definición de exportación de gráficos." #~ msgid "The internal ID of the Graph Export Definition." #~ msgstr "El ID interno de la definición de exportación de gráficos." #~ msgid "The frequency that Graphs will be exported." #~ msgstr "La frecuencia con la que se exportarán los gráficos." #~ msgid "If enabled, this Graph Export definition will run as required." #~ msgstr "" #~ "Si está activada, esta definición de exportación de gráfico se ejecutará " #~ "según se requiera." #~ msgid "The current Graph Export Status." #~ msgstr "El estado actual de la exportación de gráficos." #~ msgid "Exporting (Sites/Trees)" #~ msgstr "Exportando (Sitios/Arboles)" #~ msgid "What is being Exported." #~ msgstr "Que está siendo exportado." #~ msgid "The last runtime for the Graph Export." #~ msgstr "Ultima ejecución de la exportación de gráficos." #~ msgid "The number of Graphs Exported on the last run." #~ msgstr "El número de gráficos exportados en la última ejecución." #~ msgid "The last time that this Graph Export was started." #~ msgstr "La última vez que se inició la exportación de gráficos." #~ msgid "Last Errored" #~ msgstr "Ultima vez fallado" #~ msgid "The last time that this Graph Export experienced an error." #~ msgstr "" #~ "La última vez que se produjo un error en esta exportación de gráficos." #~ msgid "All Sites" #~ msgstr "Todos los Sitios" #~ msgid "All Trees" #~ msgstr "Todos los Arboles" # buscar contexto, podria ser sec de secundario #, fuzzy #~ msgid "Sec" #~ msgstr "Seg" #~ msgid "No Graph Export Definitions" #~ msgstr "No hay definiciones de exportación de gráficos" #~ msgid "Export Cacti Graphs Settings" #~ msgstr "Exportar la configuración de gráficos de Cacti" #~ msgid "Graph Exports" #~ msgstr "Exportación gráficos" #~ msgid "Export Method" #~ msgstr "Método de exportación" #~ msgid "Choose which export method to use." #~ msgstr "Elija que método de exportación utilizar." #~ msgid "FTP" #~ msgstr "FTP" #~ msgid "SFTP" #~ msgstr "SFTP" #~ msgid "FTP NC" #~ msgstr "FTP NC" #~ msgid "SCP" #~ msgstr "SCP" #~ msgid "RSYNC" #~ msgstr "RSYNC" #~ msgid "Presentation Method" #~ msgstr "Metodo de presentacion" #~ msgid "Off" #~ msgstr "Off" #~ msgid "On" #~ msgstr "On" #~ msgid "Default Graph Columns" #~ msgstr "Columnas de gráfico por defecto" #~ msgid "Export Location Information" #~ msgstr "Exportar información de ubicación" #~ msgid "Export Directory" #~ msgstr "Directorio de exportación" #~ msgid "Remote Options" #~ msgstr "Opciones remotas" #~ msgid "Remote Host" #~ msgstr "Equipo remoto" #~ msgid "Remote Port" #~ msgstr "Puerto remoto" #~ msgid "Use passive mode" #~ msgstr "Usar modo pasivo" #~ msgid "Operating System" #~ msgstr "Sistema Operativo" #~ msgid "Device Driver" #~ msgstr "Controlador del dispositivo" #~ msgid "Application" #~ msgstr "Aplicación" #~ msgid "Runnable" #~ msgstr "Ejecutable" #~ msgid "Not Runnable" #~ msgstr "No ejecutable" #~ msgid "Present" #~ msgstr "Presente" #~ msgid "Warning" #~ msgstr "Advertencia" #~ msgid "Testing" #~ msgstr "Probando" #~ msgid "Running Process History" #~ msgstr "Historial de procesos en ejecución" #~ msgid "OS Type" #~ msgstr "Tipo de SO" #~ msgid "Process" #~ msgstr "Proceso" #~ msgid "History" #~ msgstr "Historial" #~ msgid "Last Seen" #~ msgstr "Ultimo visto" #, fuzzy #~ msgid "Use Time (d:h:m)" #~ msgstr "Usar fecha (d:h:m)" #~ msgid "Edit Device" #~ msgstr "Editar dispositivo" #~ msgid "Running Processes" #~ msgstr "Procesos ejecutándose" #~ msgid "Processes" #~ msgstr "Procesos" #~ msgid "Path" #~ msgstr "Ruta" #~ msgid "Parameters" #~ msgstr "Parámetros" #~ msgid "CPU (Hrs)" #~ msgstr "CPU (Hrs)" #~ msgid "Memory (MB)" #~ msgstr "Memoria (MB)" #~ msgid "Total CPU [h]:" #~ msgstr "CPU Total [h]:" #~ msgid "Avg. CPU [h]:" #~ msgstr "CPU Prom [h]:" #~ msgid "Avg. Size [MB]:" #~ msgstr "Tamaño Prom [MB]:" #~ msgid "Hardware Inventory" #~ msgstr "Inventario de Hardware" #~ msgid "Hardware Description" #~ msgstr "Descripción de Hardware" #~ msgid "Hardware Type" #~ msgstr "Tipo de Hardware" #~ msgid "No Hardware Found" #~ msgstr "Ningún Hardware encontrado" #~ msgid "Storage Inventory" #~ msgstr "Inventario de almacenamiento" #~ msgid "Volumes" #~ msgstr "Volumenes" #~ msgid "Storage Description" #~ msgstr "Descripción de almacenamiento" #~ msgid "Storage Type" #~ msgstr "Tipo de almacenamiento" #~ msgid "Percent Used" #~ msgstr "Porcentaje usado" #~ msgid "Used (MB)" #~ msgstr "Usado (MB)" #~ msgid "Total (MB)" #~ msgstr "Total (MB)" #~ msgid "Alloc (KB)" #~ msgstr "Alloc (MB)" #~ msgid "No Storage Devices Found" #~ msgstr "Ningún dispositivo de almacenamiento encontrado" #~ msgid "Device Filter" #~ msgstr "Filtro de dispositivo" #~ msgid "Uptime(d:h:m)" #~ msgstr "Uptime(d:h:m)" #~ msgid "CPU %" #~ msgstr "CPU %" #~ msgid "CPUs" #~ msgstr "CPUs" #~ msgid "Total Mem" #~ msgstr "Mem Total" #~ msgid "Used Mem" #~ msgstr "Mem usada" #~ msgid "Total Swap" #~ msgstr "Swap Total" #~ msgid "Used Swap" #~ msgstr "Swap usada" #~ msgid "View Storage" #~ msgstr "Ver almacenamiento" #~ msgid "View Hardware" #~ msgstr "Ver Hardware" #~ msgid "View Processes" #~ msgstr "Ver procesos" #~ msgid "View Software Inventory" #~ msgstr "Ver inventario de software" #~ msgid "No Graphs Defined" #~ msgstr "Ningún gráfico definido" #~ msgid "Software Inventory" #~ msgstr "Inventario de software" #~ msgid "Applications" #~ msgstr "Aplicaciones" #~ msgid "Package" #~ msgstr "Paquete" #~ msgid "No Software Packages Found" #~ msgstr "Ningún paquete de software encontrado" #~ msgid "Storage" #~ msgstr "Almacenamiento" #~ msgid "Hardware" #~ msgstr "Hardware" #~ msgid "Use History" #~ msgstr "Usar historial" #~ msgid "Inventory" #~ msgstr "Inventario" #~ msgid "Summary Filter" #~ msgstr "Resumen de filtro" #~ msgid "Top" #~ msgstr "Top" #~ msgid "All Records" #~ msgstr "Todos los registros" #~ msgid "%d Records" #~ msgstr "%d registros" #~ msgid "%d Record" #~ msgstr "%d registro" #~ msgid "Device Type Summary Statistics" #~ msgstr "Resumen de estadísticas de Tipo de dispositivo" #~ msgid "Logins" #~ msgstr "Accesos" #~ msgid "CPUS" #~ msgstr "CPUs" #~ msgid "Avg CPU" #~ msgstr "CPU Prom" #~ msgid "Max CPU" #~ msgstr "CPU Max" #~ msgid "Avg Mem" #~ msgstr "Mem Prom" #~ msgid "Max Mem" #~ msgstr "Mem Max" #~ msgid "Avg Swap" #~ msgstr "Swap Prom" #~ msgid "Max Swap" #~ msgstr "Swap Max" #~ msgid "Avg Proc" #~ msgstr "Proc Prom" #~ msgid "Max Proc" #~ msgstr "Proc Max" #~ msgid "View Devices" #~ msgstr "Ver dispositivos" #~ msgid "No Device Types" #~ msgstr "No hay tipos de dispositivo" #~ msgid "Process Summary Filter" #~ msgstr "Filtro del resumen del proceso" #~ msgid "Process Summary Statistics" #~ msgstr "Resumen de estadísticas del proceso" #~ msgid "Process Name" #~ msgstr "Nombre de proceso" #~ msgid "Num Paths" #~ msgstr "N° de rutas" #~ msgid "Hosts" #~ msgstr "Equipos" #~ msgid "Avg Memory" #~ msgstr "Memoria Prom" #~ msgid "Max Memory" #~ msgstr "Memoria Max" #~ msgid "No Processes" #~ msgstr "No hay procesos" #~ msgid "" #~ "Please Select Data Query First from Console->Settings->Host Mib First" #~ msgstr "" #~ "Selecciona la consulta de datos primero desde Consola->Opciones->Host Mib " #~ "primero" #~ msgid "Click 'Continue' to Delete the following Host Type(s)" #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar los siguientes Tipo(s) de " #~ "equipo(s)" #~ msgid "Delete Host Type(s)" #~ msgstr "Eliminar Tipo(s) de equipo(s)" #~ msgid "" #~ "Click 'Continue' to Duplicate the following Host Type(s). You may " #~ "optionally change the description for the new Host Type(s). Otherwise, " #~ "do not change value below and the original name will be replicated with a " #~ "new suffix." #~ msgstr "" #~ "Haga click en 'Continuar' para duplicar el/los siguiente(s) tipo(s) de " #~ "equipo. Opcionalmente puedes cambiar la descripción para el/los nuevo(s) " #~ "tipo(s) de equipo. De otra manera, no cambies el valor debajo y el nombre " #~ "original será replicado con el nuevo sufijo." #~ msgid "Host Type Prefix:" #~ msgstr "Prefijo de tipo de equipo:" #~ msgid "Duplicate Host Type(s)" #~ msgstr "Duplicar Tipo(s) de equipo(s)" #~ msgid "You must select at least one Host Type." #~ msgstr "Debes seleccionar al menos un tipo de equipo." #~ msgid "New Type" #~ msgstr "Nuevo tipo" #~ msgid "There were %d Device Types Added!" #~ msgstr "Habia %d Tipos de dispositivo agregados!" #~ msgid "No New Host Types Found!" #~ msgstr "Ningun nuevo Tipo de equipo encontrado!" #~ msgid "Import Device Types from Local File" #~ msgstr "Importar Tipos de dispositivo desde archivo local" #~ msgid "" #~ "Should the import process be allowed to overwrite existing data? Please " #~ "note, this does not mean delete old row, only replace duplicate rows." #~ msgstr "" #~ "Deberia permitirse al proceso de importación sobreescribir datos " #~ "existentes? Ten en cuenta, esto no significa eliminar la antigua fila, " #~ "solo reemplaza filas duplicadas." #~ msgid "A common name for the Host Type. For example, Windows 7" #~ msgstr "Un nombre comun para el Tipo de equipo. Por ejemplo, Windows 7" #~ msgid "The OS version for the Host Type" #~ msgstr "La versión del SO para este tipo de equipo" #~ msgid "" #~ "A unique set of characters from the snmp sysDescr that uniquely identify " #~ "this device" #~ msgstr "" #~ "Un conjunto de caracteres únicos de snmp sysDescr que identifica " #~ "exclusivamente a este dispositivo" #~ msgid "" #~ "The primary key for this table is a combination of the following two " #~ "fields:" #~ msgstr "" #~ "La clave primaria para esta tabla es la combinacion de los siguientes dos " #~ "campos:" #~ msgid "" #~ "Therefore, if you attempt to import duplicate device types, the existing " #~ "data will be updated with the new information." #~ msgstr "" #~ "Por lo tanto, si intentas importar tipos de dispositivos dupllicados, los " #~ "datos existente serán actualizados con la nueva información." #~ msgid "Are you sure you want to delete the Host Type'%s'" #~ msgstr "Estas seguro que quieres eliminar el Tipo de equipo'%s'" #~ msgid "Device Scanning Function Options" #~ msgstr "Opciones de la función de escaneo de dispositivo" #~ msgid "Give this Host Type a meaningful name." #~ msgstr "Darle a este Tipo de equipo un nombre significativo." #~ msgid "Fill in the name for the version of this Host Type." #~ msgstr "Completa el nombre para la versión de este tipo de equipo." #, fuzzy #~ msgid "Vendor snmp Object ID" #~ msgstr "ID de objecto SNMP del fabricante" #~ msgid "OS Types" #~ msgstr "Tipos de SO" #~ msgid "Host Type Name" #~ msgstr "Nombre de Tipo de equipo" #~ msgid "OS Version" #~ msgstr "Versión de SO" #~ msgid "SNMP ObjectID" #~ msgstr "SNMP ObjectID" #~ msgid "No Host Types Found" #~ msgstr "No se encontraron Tipos de equipo" #~ msgid "Scan for New or Unknown Device Types" #~ msgstr "Escanear por nuevos o desconocidos Tipos de Dispositivos" #~ msgid "Import Host Types from a CSV File" #~ msgstr "Importar Tipos de equipos desde archivo CSV" #~ msgid "Export Host Types to Share with Others" #~ msgstr "Exportar Tipos de equipos para compartir con otros" #, fuzzy #~ msgid "Plugin -> Host MIB Viewer" #~ msgstr "Plugin -> Host MIB Viewer" #, fuzzy #~ msgid "Plugin -> Host MIB Admin" #~ msgstr "Plugin -> Host MIB Admin" #~ msgid "Host MIB General Settings" #~ msgstr "Opciones Generales de Host MIB" #, fuzzy #~ msgid "Host MIB Poller Enabled" #~ msgstr "Poller de Host MIB habilitado" #~ msgid "Automatically Discover Cacti Devices" #~ msgstr "Descubrir dispositivos de Cacti automaticamente" #~ msgid "Automatically Purge Devices" #~ msgstr "Purgar dispositivos automaticamente" #~ msgid "" #~ "Do you wish to automatically purge devices that are removed from the " #~ "Cacti system?" #~ msgstr "" #~ "Deseas purgar automaticamente los dispositivos que han sido removidos de " #~ "Cacti?" #~ msgid "%d Types" #~ msgstr "Tipos %d" #~ msgid "%d Processes" #~ msgstr "Procesos %d" #~ msgid "%d Process" #~ msgstr "%d Procesos" #, fuzzy #~ msgid "Host Auto Discovery Frequency" #~ msgstr "Frecuencia de Auto descubrimiento de Host" #~ msgid "Auto Discovery Frequency" #~ msgstr "Frecuencia de auto descubrimiento" #~ msgid "How often do you want to look for new Cacti Devices?" #~ msgstr "Cuan seguido quieres buscar nuevos dispositivos de Cacti?" #, fuzzy #~ msgid "Host Graph Automation" #~ msgstr "Automatización de Gráfico de Equipo" #~ msgid "Automatically Add New Graphs" #~ msgstr "Agregar nuevos gráficos automáticamente" #~ msgid "How often do you want to check for new objects to graph?" #~ msgstr "Cuan frecuente deseas comprobar nuevos objectos a graficar?" #~ msgid "Storage Frequency" #~ msgstr "Frecuencia de almacenamiento" #~ msgid "Device Frequency" #~ msgstr "Frecuencia de dispositivo" #~ msgid "Processor Frequency" #~ msgstr "Frecuencia de procesador" #, fuzzy #~ msgid "Host MIB Details" #~ msgstr "Detalles Host MIB" #~ msgid "MacTrack OUI Database Import Results" #~ msgstr "Resultados de importación de la base de datos OUI de MacTrack" #~ msgid "View Interface Graphs" #~ msgstr "Ver gráficos de interfaces" #~ msgid "Device Not in Cacti" #~ msgstr "Dispositivo no esta en Cacti" #~ msgid "Since Restart" #~ msgstr "Desde reinicio" #~ msgid "Clear Results" #~ msgstr "Borrar resultados" #~ msgid "Site scan '%s'" #~ msgstr "Escanear Sitio '%s'" #~ msgid "Not Recorded" #~ msgstr "No registrado" #~ msgid "View Interfaces" #~ msgstr "Ver interfaces" #~ msgid "Rescan Device" #~ msgstr "Re-escenear dispositivo" #~ msgid "IP Ranges" #~ msgstr "Rangos de IP" #~ msgid "MAC Address" #~ msgstr "Dirección MAC" #~ msgid "Interfaces" #~ msgstr "Interfaces" #~ msgid "Show Device Details" #~ msgstr "Mostrar detalles de dispositivo" #~ msgid "SubType" #~ msgstr "SubTipo" #~ msgid "Import into MacTrack" #~ msgstr "Importar a MacTrack" #~ msgid "" #~ "Are you sure you want to import the following hosts to MacTrack? Please " #~ "specify additional MacTrack device options as given below." #~ msgstr "" #~ "Estas seguro que deseas importar los siguientes equipos a MacTrack? " #~ "Especifica opciones de dispositivos MacTrack adicionales como se indicar " #~ "a continuación." #~ msgid "You must select at least one device type." #~ msgstr "Debes seleccionar al menos un tipo de dispositivo." #~ msgid "Cisco" #~ msgstr "Cisco" #~ msgid "No New Device Types Found!" #~ msgstr "No se encontraron nuevos tipos de dispositivo!" #~ msgid "Import MacTrack Device Types" #~ msgstr "Importar tipos de dispositivos MacTrack" #~ msgid "Switch/Hub" #~ msgstr "Switch/Hub" #~ msgid "Switch/Router" #~ msgstr "Switch/Router" #~ msgid "Router" #~ msgstr "Router" #~ msgid "Are you sure you want to delete the device type %s?" #~ msgstr "Esta seguro que quiere eliminar el tipo de dispositivo %s?" #~ msgid "MacTrack Device Types [edit: %s]" #~ msgstr "Tipos de dispositivos MacTrack [editar: %s]" #~ msgid "MacTrack Device Types [new]" #~ msgstr "Tipos de dispositivos MacTrack [nuevo]" #~ msgid "MacTrack Device Type Filters" #~ msgstr "Filtros de tipos de dispositivos MacTrack" #~ msgid "Device Types" #~ msgstr "Tipos de Dispositivo" #~ msgid "Device Type Description" #~ msgstr "Descripción del dispositivo tipo" #~ msgid "Device Type" #~ msgstr "Tipo de dispositivo" #~ msgid "Port Scanner" #~ msgstr "Escáner de puertos" #~ msgid "IP Scanner" #~ msgstr "Escáner de IP" #, fuzzy #~ msgid "Clear Filtered Results" #~ msgstr "Borrar resultados filtrados" #, fuzzy #~ msgid "Scan Active Devices for Unknown Device Types" #~ msgstr "" #~ "Escanear dispositivos activos para tipos de dispositivos desconocidos" #~ msgid "Import Device Types from a CSV File" #~ msgstr "Importar tipos de dispositivos desde archivo CSV" #~ msgid "Export Device Types to Share with Others" #~ msgstr "Exportar tipos de dispositivos para compartir con otros" #~ msgid "Vendor" #~ msgstr "Fabricante" #~ msgid "Change SNMP Options" #~ msgstr "Cambiar opciones de SNMP" #, fuzzy #~ msgid "Connect to Cacti Host via Hostname" #~ msgstr "Conectarse a Cacti vía el nombre del equipo" #, fuzzy #~ msgid "Copy SNMP Settings from Cacti Host" #~ msgstr "Copiar opciones SNMP desde el equipo de Cacti" #~ msgid "Are you sure you want to delete the host %s" #~ msgstr "Estas seguro que quieres eliminar el equipo %s" #~ msgid "MacTrack Devices [edit: %s]" #~ msgstr "Dispositivos MacTrack [editar: %s]" #~ msgid "MacTrack Devices [new]" #~ msgstr "Dispositivos MacTrack [nuevo]" #~ msgid "User Ports" #~ msgstr "Puertos de usuario" #~ msgid "User Ports Up" #~ msgstr "Puertos de usuario arriba" #~ msgid "Trunk Ports" #~ msgstr "Puertos Trunk" #~ msgid "Active Macs" #~ msgstr "MACs activas" #~ msgid "Last Duration" #~ msgstr "Ultima duración" #, fuzzy #~ msgid "No MacTrack Devices" #~ msgstr "No hay dispositivos MacTrack" #~ msgid "No Cacti Link" #~ msgstr "Sin link a Cacti" #~ msgid "You must select at least one Authorized Mac to delete." #~ msgstr "Debes seleccionar al menos una MAC autorizada para borrar." #~ msgid "MacTrack MacAuth [edit: %s]" #~ msgstr "MacTrack MacAuth [editar: %s]" #~ msgid "MacTrack MacAuth [new]" #~ msgstr "MacTrack MacAuth [nuevo]" #~ msgid "MacTrack MacAuth Filters" #~ msgstr "Filtros de MacTrack MacAuth" #~ msgid "Mac Address" #~ msgstr "Dirección MAC" #~ msgid "Reason" #~ msgstr "Motivo" #~ msgid "Added/Modified" #~ msgstr "Agregado/Modificado" #~ msgid "By" #~ msgstr "Por" #, fuzzy #~ msgid "No Authorized Mac Addresses" #~ msgstr "Ninguna dirección MAC autorizada" #~ msgid "MAC's" #~ msgstr "MAC's" #~ msgid "Ticket Number" #~ msgstr "Numero de Ticket" #~ msgid "First Seen" #~ msgstr "Visto por primera vez" #~ msgid "Are you sure you want to delete the following site(s)?" #~ msgstr "Estas seguro que quieres eliminar el/los siguiente(s) sitio(s)?" #~ msgid "You must select at least one site." #~ msgstr "Debes seleccionar al menos un sitio." #~ msgid "Are you sure you want to delete the site '%s'?" #~ msgstr "Estas seguro que quieres eliminar el Sitio '%s'?" #~ msgid "MacTrack Site [edit: %s]" #~ msgstr "Sitio MacTrack [editar: %s]" #~ msgid "MacTrack Site [new]" #~ msgstr "Sitio MacTrack [nuevo]" #~ msgid "MacTrack Site Filters" #~ msgstr "Filtros de Sitio MacTrack" #, fuzzy #~ msgid "Total IP's" #~ msgstr "IP's Totales" #~ msgid "MACS Found" #~ msgstr "MACs encontradas" #~ msgid "Device Errors" #~ msgstr "Errores del dispositivo" #~ msgid "No MacTrack Sites" #~ msgstr "No hay sitios MacTrack" #~ msgid "Total Devices" #~ msgstr "Total de dispositivos" #~ msgid "Are you sure you want to delete the following SNMP Options?" #~ msgstr "Estas seguro que quieres eliminar las siguientes opciones de SNMP?" #~ msgid "" #~ "When you click save, the following SNMP Options will be duplicated. You " #~ "can optionally change the title format for the new SNMP Options." #~ msgstr "" #~ "Al hacer click en guardar, se duplicarán las siguientes opciones de SNMP. " #~ "Opcionalmente, puede cambiar el formato de título para las nuevas " #~ "opciones SNMP." #~ msgid "SNMP Options [edit %s]" #~ msgstr "Opciones SNMP [editar: %s]" #~ msgid "Are you sure you want to delete the SNMP Option Set(s) %s?" #~ msgstr "" #~ "¿Está seguro que desea eliminar el/los conjunto(s) de opción(es) SNMP %s?" #~ msgid "MacTrack SNMP Options" #~ msgstr "Opciones SNMP de MacTrack" #~ msgid "Max OIDs" #~ msgstr "OIDs Max" #~ msgid "Auth Proto" #~ msgstr "Proto de Auth" #~ msgid "Priv Proto" #~ msgstr "Proto de Priv" #~ msgid "SNMP Settings" #~ msgstr "Opciones SNMP" #~ msgid "Title of SNMP Option Set" #~ msgstr "Título del conjunto de opciones de SNMP" #, fuzzy #~ msgid "No SNMP Option Sets" #~ msgstr "No hay conjunto de opciones de SNMP" #~ msgid "Options" #~ msgstr "Opciones" #~ msgid "MacTrack Process Status" #~ msgstr "Estado del proceso MacTrack" #~ msgid "DISABLED" #~ msgstr "DESHABILITADO" #~ msgid "RUNNING" #~ msgstr "EJECUTANDO" #~ msgid "The MacTrack Poller is:" #~ msgstr "La Sonda de MacTrack es:" #~ msgid "Running Processes:" #~ msgstr "Procesos en ejecución:" #~ msgid "processes" #~ msgstr "procesos" #~ msgid "DNS Configuration Information" #~ msgstr "Información de configuración de DNS" #~ msgid "ENABLED" #~ msgstr "HABILITADO" #~ msgid "Reverse DNS Resolution is" #~ msgstr "Resolución inversa de DNS es" #~ msgid "Primary DNS Server:" #~ msgstr "Servidor DNS Primario:" #~ msgid "Secondary DNS Server:" #~ msgstr "Servidor DNS secundario:" #~ msgid "DNS Resolution Timeout:" #~ msgstr "Tiempo de espera de Resolución DNS:" #~ msgid "milliseconds" #~ msgstr "milisegundos" #, fuzzy #~ msgid "Running Process Summary" #~ msgstr "Resumen del proceso en ejecución" #~ msgid "Date Started" #~ msgstr "Fecha Iniciado" #~ msgid "Completed" #~ msgstr "Completado" #~ msgid "Waiting" #~ msgstr "Esperando" #~ msgid "Vendor Macs" #~ msgstr "Fabricantes de MACs" #~ msgid "Vendor MAC" #~ msgstr "Fabricante MAC" #~ msgid "Corporation" #~ msgstr "Corporacion" #~ msgid "Address" #~ msgstr "Dirección" #~ msgid "No MacTrack Vendor MACS" #~ msgstr "No hay fabricantes de MACs" #~ msgid "ARP Cache" #~ msgstr "Cache ARP" #~ msgid "Switch Name" #~ msgstr "Nombre del Switch" #~ msgid "Switch Hostname" #~ msgstr "Nombre de equipo del Switch" #~ msgid "ED IP Address" #~ msgstr "ED dirección IP" #~ msgid "ED DNS Hostname" #~ msgstr "ED Hostname de DNS" #~ msgid "ED MAC Address" #~ msgstr "ED dirección MAC" #~ msgid "Vendor Name" #~ msgstr "Nombre del Fabricante" #~ msgid "Switch Device" #~ msgstr "Dispositivo Switch" #~ msgid "You must first choose a Site, Device or other search criteria." #~ msgstr "" #~ "Debes seleccionar un Sitio, dispositivo u otro criterio de busqueda." #~ msgid "IP's" #~ msgstr "IP's" #~ msgid "MAC" #~ msgstr "MAC" #~ msgid "Device Tracking - Device Report View" #~ msgstr "Seguimiento de dispositivos - Vista de informes de dispositivos" #~ msgid "Unknown Device Type" #~ msgstr "Tipo de dispositivo desconocido" #~ msgid "Total VLAN's" #~ msgstr "VLAN's Totales" #, fuzzy #~ msgid "Device Not Mapped to Cacti Device" #~ msgstr "Dispositivo no asignado a dispositivo en Cacti" #~ msgid "View MAC Addresses" #~ msgstr "Ver Direcciones MAC" #~ msgid "Hub/Switch" #~ msgstr "Hub/Switch" #~ msgid "All Interfaces" #~ msgstr "Todas las interfaces" #~ msgid "All Non-Ignored Interfaces" #~ msgstr "Todas las interfaces no ignoradas" #~ msgid "All Ignored Interfaces" #~ msgstr "Todas las interfaces ignoradas" #~ msgid "With Issues" #~ msgstr "Con problemas" #, fuzzy #~ msgid "Up Interfaces" #~ msgstr "Interfaces Up" #~ msgid "Bandwidth" #~ msgstr "Ancho de banda" #~ msgid "Show Totals" #~ msgstr "Mostrar Totales" #~ msgid "IP Address Ranges" #~ msgstr "Rangos de Direcciones IP" #~ msgid "IP Range" #~ msgstr "Rango IP" #~ msgid "Current IP Addresses" #~ msgstr "Direcciones IP actuales" #~ msgid "Maximum IP Addresses" #~ msgstr "Direcciones IP máximas" #~ msgid "Maximum Date" #~ msgstr "Fecha maxima" #~ msgid "Device Tracking - MAC to IP Report View" #~ msgstr "Seguimiento de dispositivos - Vista de informes MAC a IP" #~ msgid "Authorize" #~ msgstr "Autorizar" #~ msgid "Revoke" #~ msgstr "Revocar" #~ msgid "" #~ "The following MAC Addresses Could not be revoked because they are members " #~ "of Group Authorizations %s" #~ msgstr "" #~ "Las direcciones MAC siguientes no se pudieron revocar porque son miembro " #~ "del Grupo Autorizado %s" #~ msgid "You must select at least one MAC Address." #~ msgstr "Debes seleccionar al menos una dirección MAC." #~ msgid "You must select at least one Row." #~ msgstr "Debes seleccionar al menos una fila." #~ msgid "You are not permitted to delete rows." #~ msgstr "No estas autorizado a borrar filas." # Hay una tabla llamada aggregated? #, fuzzy #~ msgid "" #~ "Are you sure you want to Delete the following rows from Aggregated table?" #~ msgstr "" #~ "Estas seguro que quiere borrar las siguientes filas de la tabla " #~ "Aggregated?" #~ msgid "MAC Addresses" #~ msgstr "Direcciones MAC" #~ msgid "Port Name" #~ msgstr "Nombre del Puerto" #~ msgid "VLAN ID" #~ msgstr "ID de VLAN" #~ msgid "VLAN Name" #~ msgstr "Nombre de VLAN" #~ msgid "Last Scan Date" #~ msgstr "Fecha de la última escaneo" #~ msgid "You must choose a Site, Device or other search criteria." #~ msgstr "" #~ "Debes seleccionar un Sitio, dispositivo u otro criterio de busqueda." #~ msgid "No MacTrack Port Results." #~ msgstr "No hay resultados de puertos MacTrack." #~ msgid "Count" #~ msgstr "Cuenta" #~ msgid "No MacTrack Port Results" #~ msgstr "No hay resultados de puertos MacTrack" #~ msgid "Most Recent" #~ msgstr "Mas reciente" #~ msgid "Authorized" #~ msgstr "Autorizado" #~ msgid "Portname" #~ msgstr "Nombre de Puerto" #, fuzzy #~ msgid "Device Tracking - Site Report View" #~ msgstr "Seguimiento de dispositivos - Vista de informes de sitios" #~ msgid "Edit Site" #~ msgstr "Editar Sitio" #~ msgid "Rescan Site" #~ msgstr "Re escanear Sitio" #~ msgid "View IP Ranges" #~ msgstr "Ver Rangos IP" #~ msgid "View IP Addresses" #~ msgstr "Ver Direcciones IP" #~ msgid "Device Tracking" #~ msgstr "Seguimiento de dispositivos" #~ msgid "Scanning Frequency" #~ msgstr "Frecuencia de escaneo" #~ msgid "Auto Detect" #~ msgstr "Auto detectar" #~ msgid "Colon [:]" #~ msgstr "Dos puntos [:]" #~ msgid "Pipe [|]" #~ msgstr "Pipe [|]" #~ msgid "Space [ ]" #~ msgstr "Espacio [ ]" #~ msgid "Mac Address Delimiter" #~ msgstr "Delimitador de dirección MAC" #~ msgid "How should each octet of the MAC address be delimited." #~ msgstr "Como deberia delimitarse cada octeto de la dirección MAC." #~ msgid "Dash [-]" #~ msgstr "Guión medio [-]" #~ msgid "Ports to Ignore" #~ msgstr "Puertos a ignorar" #, fuzzy #~ msgid "Bandwidth Usage Threshold" #~ msgstr "Umbral de uso del ancho de banda" #~ msgid "DNS Settings" #~ msgstr "Opciones DNS" #~ msgid "Perform Reverse DNS Name Resolution" #~ msgstr "Realizar la resolución inversa de nombres DNS" #~ msgid "Notification Settings" #~ msgstr "Opciones de notificacion" #~ msgid "Source Address" #~ msgstr "Dirección de Origen" #~ msgid "The source Email address for MacTrack Emails." #~ msgstr "La dirección de Email de origen para Emails de MacTrack." #~ msgid "Source Email Name" #~ msgstr "Nombre de Email de origen" #~ msgid "MacTrack ArpWatch Settings" #~ msgstr "Configuración de MacTrack ArpWatch" #~ msgid "Enable ArpWatch" #~ msgstr "Habilitar ArpWatch" #~ msgid "Update Policy for SNMP Options" #~ msgstr "Política de actualización para las opciones de SNMP" #~ msgid "Communities" #~ msgstr "Comunidades" #~ msgid "MacTrack Devices" #~ msgstr "Dispositivos MacTrack" #~ msgid "(Import)" #~ msgstr "(Importar)" #~ msgid "MacTrack Device Types" #~ msgstr "Tipos de dispositivo MacTrack" #~ msgid "MacTrack Sites" #~ msgstr "Sitios MacTrack" #, fuzzy #~ msgid "Mac Address Tracking Utility" #~ msgstr "Herramienta de rastreo de dirección MAC" #, fuzzy #~ msgid "MacTrack View Macs" #~ msgstr "Ver MACs de MacTrack" #~ msgid "MacTrack IP Address Viewer" #~ msgstr "Visor de la dirección de IP MacTrack" #, fuzzy #~ msgid "MacTrack View Interfaces" #~ msgstr "Ver interfaces de MacTrack" #, fuzzy #~ msgid "MacTrack View Sites" #~ msgstr "Ver Sitios de MacTrack" #~ msgid "MacTrack View IP Ranges" #~ msgstr "Ver rangos IP de MacTrack" #~ msgid "MacTrack View Devices" #~ msgstr "Ver dispositivos de MacTrack" #~ msgid "Device Tracking Utilities" #~ msgstr "Utilidades de seguimiento de dispositivos" #~ msgid "Perform Database Maintenance" #~ msgstr "Realizar mantenimiento de la base de datos" #~ msgid "Refresh Scanning Functions" #~ msgstr "Actualizar las funciones de escaneo" #~ msgid "View MacTrack Process Status" #~ msgstr "Ver estado del proceso de MacTrack" #~ msgid "Refresh/Update Vendor MAC Database from IEEE" #~ msgstr "Refrescar/Actualizar la base de datos de fabricantes MAC desde IEEE" #~ msgid "MacTrack Graph Viewer" #~ msgstr "Visor de gráficos MacTrack" #~ msgid "MacTrack" #~ msgstr "MacTrack" #, fuzzy #~ msgid "Matches" #~ msgstr "Encontrados" #~ msgid "Contains" #~ msgstr "Contiene" #~ msgid "Begins With" #~ msgstr "Comienza con" #~ msgid "Does Not Contain" #~ msgstr "No contiene" #~ msgid "Does Not Begin With" #~ msgstr "No comienza con" #~ msgid "Is Null" #~ msgstr "Es nulo" #~ msgid "Is Not Null" #~ msgstr "No es nulo" #~ msgid "Half" #~ msgstr "Mitad" #~ msgid "Full" #~ msgstr "Completo" #~ msgid "Sync Cacti Device to MacTrack Device" #~ msgstr "Sincronizar dispositivo de Cacti con dispositivo de MacTrack" #~ msgid "Sync MacTrack Device to Cacti Device" #~ msgstr "Sincronizar dispositivo de MacTrack con dispositivo de Cacti" #~ msgid "Every %d Hour" #~ msgstr "Cada %d hora" #~ msgid "On Scan Completion" #~ msgstr "Al terminar el escaneo" #~ msgid "Every %d Days" #~ msgstr "Cada %d dias" #~ msgid "Tracking Utilities" #~ msgstr "Utilidades de seguimiento" #, fuzzy #~ msgid "Mac Watch" #~ msgstr "Mac Watch" #~ msgid "Tracking Tools" #~ msgstr "Herramientas de seguimiento" #~ msgid "Mac Authorizations" #~ msgstr "Autorizaciones de Mac" #~ msgid "Give this device type a meaningful description." #~ msgstr "Darle a este tipo de dispositivo una descripción significativa." #, fuzzy #~ msgid "Fill in the name for the vendor of this device type." #~ msgstr "Completa el nombre para el fabricante de este tipo de dispositivo." #~ msgid "Choose the type of device." #~ msgstr "Elige el tipo de dispositivo." #~ msgid "SNMP Walk" #~ msgstr "SNMP Walk" #~ msgid "Fill in the name of this SNMP option set." #~ msgstr "Complete el nombre para este conjunto de opciones SNMP." #~ msgid "Enter the SNMP v3 Context to use for this device." #~ msgstr "Ingresa el contexto de SNMP (v3) para este dispositivo." #~ msgid "Enter the SNMP v3 Engine ID to use for this device." #~ msgstr "Introduzca el ID de motor SNMP v3 para este dispositivo." #~ msgid "General Device Settings" #~ msgstr "Opciones generales de dispositivo" #~ msgid "Give this device a meaningful name." #~ msgstr "Darle a este dispositivo un nombre significativo." #~ msgid "Scan Type" #~ msgstr "Tipo de escaneo" #~ msgid "Choose the scan type you wish to perform on this device." #~ msgstr "Elija el tipo de escaneo que desea realizar en este dispositivo." #~ msgid "Device Notes" #~ msgstr "Notas de dispositivo" #, fuzzy #~ msgid "" #~ "This field value is useful to save general information about a specific " #~ "device." #~ msgstr "" #~ "El valor de este campo es útil para guardar información general acerca de " #~ "un dispositivo específico." #~ msgid "Switch/Hub, Switch/Router Settings" #~ msgstr "Opciones de Switch/Hub, Switch/Router" #~ msgid "Select a set of SNMP options to try." #~ msgstr "Selecciona un conjunto de opciones de SNMP para probar." #, fuzzy #~ msgid "Read Strings" #~ msgstr "Comunidades de lectura" #~ msgid "DEPRECATED: SNMP community strings" #~ msgstr "OBSOLETO: Comunidades de SNMP" #~ msgid "Specific SNMP Settings" #~ msgstr "Opciones especificas de SNMP" #~ msgid "Connectivity Options" #~ msgstr "Opciones de conectividad" #~ msgid "Terminal Type" #~ msgstr "Tipo de Terminal" #~ msgid "Choose the terminal type that you use to connect to this device." #~ msgstr "" #~ "Elegir el tipo de terminal que utilice para conectar a este dispositivo." #~ msgid "Telnet" #~ msgstr "Telnet" #~ msgid "SSH" #~ msgstr "SSH" #~ msgid "HTTP" #~ msgstr "HTTP" #~ msgid "HTTPS" #~ msgstr "HTTPS" #~ msgid "The password to be used for your custom authentication." #~ msgstr "La contraseña para la autenticación personalizada." #~ msgid "General Site Settings" #~ msgstr "Configuración general del sitio" #~ msgid "Please enter a reasonable name for this site." #~ msgstr "Introduzca un nombre razonable para este sitio." #~ msgid "Primary Customer Contact" #~ msgstr "Contacto principal del Cliente" #~ msgid "The principal customer contact name and number for this site." #~ msgstr "" #~ "Nombre y numero de telefono del contacto principal del cliente para este " #~ "sitio." #, fuzzy #~ msgid "NetOps Contact" #~ msgstr "Contacto del Operador de red" #~ msgid "" #~ "Please principal network support contact name and number for this site." #~ msgstr "" #~ "Nombre y numero de telefono del contacto de soporte de red principal para " #~ "este sitio." #~ msgid "Facilities Contact" #~ msgstr "Contacto de las instalaciones" #, fuzzy #~ msgid "Please enter the MAC Address to be watched for." #~ msgstr "Ingrese la dirección MAC a ser observada." #, fuzzy #~ msgid "All Occurrences" #~ msgstr "Todas las repeticiones" #~ msgid "Please add a reason for this entry." #~ msgstr "Agregar un motivo para esta entrada." #~ msgid "Update Time (Now + 1 Hour)" #~ msgstr "Tiempo de actualización (ahora + 1 hora)" #~ msgid "Associate" #~ msgstr "Asociar" #~ msgid "Disassociate" #~ msgstr "Desasociar" #~ msgid "One Time" #~ msgstr "Una vez" #~ msgid "Reoccurring" #~ msgstr "Periódico" #~ msgid "Not Defined" #~ msgstr "Sin definir" #~ msgid "WebSeer" #~ msgstr "WebSeer" #~ msgid "Click 'Continue' to Update the following Maintenance Schedule(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para actualizar la(s) siguiente(s) tarea(s) de " #~ "mantenimiento." #~ msgid "Update Maintenance Schedule(s)" #~ msgstr "Actualizar la(s) tarea(s) de mantenimiento" #~ msgid "" #~ "Click 'Continue' to Delete the following Maintenance Schedule(s). Any " #~ "Devices(s) Associated with this Schedule will be Disassociated." #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar la(s) siguiente(s) tarea(s) de " #~ "mantenimiento. Cualquier dispositivo asociado con esta tarea programada " #~ "sera desasociado." #~ msgid "Delete Maintenance Schedule(s)" #~ msgstr "Eliminar la(s) tarea(s) de mantenimiento" #~ msgid "You must select at least one Maintenance Schedule." #~ msgstr "Debes seleccionar al menos una Tarea de Mantenimiento." #~ msgid "Device(s)" #~ msgstr "Dispositivo(s)" #~ msgid "" #~ "Click 'Continue' to associate the following Device(s) with the " #~ "Maintenance Schedule '%s'." #~ msgstr "" #~ "Haga click en 'Continuar' para asociar el/los siguiente(s) dispositivo(s) " #~ "con la tarea de mantenimiento '%s'." #~ msgid "Associate Maintenance Schedule(s)" #~ msgstr "Asociar tarea(s) de mantenimiento" #~ msgid "" #~ "Click 'Continue' to disassociate the following Device(s) with the " #~ "Maintenance Schedule '%s'." #~ msgstr "" #~ "Haga click en 'Continuar' para desasociar el/los siguiente(s) " #~ "dispositivo(s) con la tarea de mantenimiento '%s'." #~ msgid "Disassociate Maintenance Schedule(s)" #~ msgstr "Desasociar tarea(s) de mantenimiento" #~ msgid "" #~ "Click 'Continue' to associate the Device(s) below with the Maintenance " #~ "Schedule '%s'." #~ msgstr "" #~ "Haga click en 'Continuar' para asociar el/los siguiente(s) dispositivo(s) " #~ "a continuación con la tarea de mantenimiento '%s'." #~ msgid "" #~ "Click 'Continue' to disassociate the Devices(s) below with the " #~ "Maintenance Schedule '%s'." #~ msgstr "" #~ "Haga click en 'Continuar' para desasociar el/los siguiente(s) " #~ "dispositivo(s) a continuación con la tarea de mantenimiento '%s'." #~ msgid "General Settings [edit: %s]" #~ msgstr "Opciones Generales [editar: %s]" #~ msgid "General Settings [new]" #~ msgstr "Opciones Generales [nuevo]" #~ msgid "New Maintenance Schedule" #~ msgstr "Nueva Tarea de Mantenimiento" #~ msgid "Schedule Name" #~ msgstr "Nombre de tarea programada" #~ msgid "Provide the Maintenance Schedule a meaningful name" #~ msgstr "" #~ "Proporcione a la tarea programada de mantenimiento un nombre significativo" #~ msgid "The type of Threshold that will be monitored." #~ msgstr "El tipo de umbral que será monitoreado." #~ msgid "Maintenance Schedules" #~ msgstr "Tareas de mantenimiento" #~ msgid "End" #~ msgstr "Fin" #~ msgid "No Schedules" #~ msgstr "No hay tareas programadas" #~ msgid "Associated Devices %s" #~ msgstr "Dispositivos asociados %s" #~ msgid "Associated" #~ msgstr "Asociados" #~ msgid "Associated Schedules" #~ msgstr "Tareas programadas asociadas" #~ msgid "Thresholds" #~ msgstr "Umbrales" #~ msgid "Current Schedule" #~ msgstr "Tarea programada actual" #~ msgid "No Associated Devices Found" #~ msgstr "No se encontraron dispositivos asociados" #~ msgid "Associated Web URL's " #~ msgstr "URL's Web asociadas " #~ msgid "Rules" #~ msgstr "Reglas" #~ msgid "Lists" #~ msgstr "Listas" #~ msgid "URL" #~ msgstr "URL" #~ msgid "USING DNS" #~ msgstr "DNS EN USO" #~ msgid "No Associated WebSeer URL's Found" #~ msgstr "No se encontraron URLs de WebSeer asociadas" #~ msgid "Queues" #~ msgstr "Colas" #, fuzzy #~ msgid "Wireless Aps" #~ msgstr "Wireless Aps" #, fuzzy #~ msgid "Hot Spots" #~ msgstr "Hot Spots" #~ msgid "Interface Stats" #~ msgstr "Estadisticas de interfaz" #~ msgid "Rx Bytes" #~ msgstr "Bytes Rx" #~ msgid "Tx Bytes" #~ msgstr "Bytes Tx" #~ msgid "Rx Packets" #~ msgstr "Paquetes Rx" #~ msgid "Tx Packets" #~ msgstr "Packets Tx" #~ msgid "Rx Errors" #~ msgstr "Errores Rx" #~ msgid "Tx Errors" #~ msgstr "Errores Tx" #~ msgid "No Interfaces Found" #~ msgstr "Ninguna interface encontrada" #~ msgid "Bytes In" #~ msgstr "Bytes In" #~ msgid "Bytes Out" #~ msgstr "Bytes Out" #~ msgid "Pkts In" #~ msgstr "Pkts In" #~ msgid "Pkts Out" #~ msgstr "Pkts Out" #~ msgid "Qs In" #~ msgstr "Qs In" #~ msgid "Qs Out" #~ msgstr "Qs Out" #~ msgid "Drps In" #~ msgstr "Drps In" #~ msgid "Drps Out" #~ msgstr "Drps Out" #~ msgid "Cur Bytes" #~ msgstr "Cur Bytes" #~ msgid "Cur Packets" #~ msgstr "Cur Packets" #~ msgid "Total Bytes" #~ msgstr "Bytes Totales" #~ msgid "Total Packets" #~ msgstr "Paquetes totales" #~ msgid "Aps" #~ msgstr "Aps" #~ msgid "SSID" #~ msgstr "SSID" #~ msgid "BSSID" #~ msgstr "BSSID" #~ msgid "Clients" #~ msgstr "Clientes" #~ msgid "Tx CQQ" #~ msgstr "CQQ Tx" #~ msgid "User Statistics" #~ msgstr "Estadisticas de usuario" #~ msgid "Hotspot" #~ msgstr "Hotspot" #~ msgid "PPPoe" #~ msgstr "PPPoe" #~ msgid "Active Users" #~ msgstr "Usuarios activo" #~ msgid "Cur In" #~ msgstr "Cur In" #~ msgid "Cur Out" #~ msgstr "Cur Out" #, fuzzy #~ msgid "Avg In" #~ msgstr "Avg In" #, fuzzy #~ msgid "Avg Out" #~ msgstr "Avg Out" #~ msgid "Total In" #~ msgstr "Total In" #~ msgid "Total Out" #~ msgstr "Total Out" #~ msgid "FW Ver" #~ msgstr "FW ver" #~ msgid "Lic Ver" #~ msgstr "Lic ver" #~ msgid "Total Disk" #~ msgstr "Disco Total" #~ msgid "Used Disk" #~ msgstr "Disco usado" #~ msgid "View Users" #~ msgstr "Ver usuarios" #~ msgid "MikroTik Users" #~ msgstr "Usuarios MikroTik" #~ msgid "Inactive" #~ msgstr "Inactivo" #~ msgid "Domain" #~ msgstr "Dominio" #~ msgid "Plugin -> MikroTik Viewer" #~ msgstr "Plugin -> MikroTik Viewer" #~ msgid "Plugin -> MikroTik Admin" #~ msgstr "Plugin -> MikroTik Admin" #~ msgid "MikroTik" #~ msgstr "MikroTik" #~ msgid "MikroTik General Settings" #~ msgstr "MikroTik Opciones Generales" #~ msgid "MikroTik Poller Enabled" #~ msgstr "MikroTik Poller Habilitado" #~ msgid "Read Only User" #~ msgstr "Usuario de Solo Lectura" #~ msgid "Low" #~ msgstr "Baja" #~ msgid "Medium" #~ msgstr "Media" #~ msgid "High" #~ msgstr "Alta" #~ msgid "Mission Critical" #~ msgstr "Misión crítica" #~ msgid "Triggered" #~ msgstr "Activado" #, fuzzy #~| msgid "Availability" #~ msgid "No Availability Check" #~ msgstr "Disponibilidad" #, fuzzy #~ msgid "Warning Ping" #~ msgstr "Ping de advertencia" #, fuzzy #~ msgid "Small" #~ msgstr "Pequeño" #, fuzzy #~ msgid "Large" #~ msgstr "Grande" #~ msgid "All Monitored Devices" #~ msgstr "Todos los dispositivos monitoreados" #~ msgid "View Type" #~ msgstr "Ver tipo" #~ msgid "Device Grouping" #~ msgstr "Agrupación de dispositivos" #~ msgid "Select Tree" #~ msgstr "Seleccionar Arbol" #~ msgid "Refresh Frequency" #~ msgstr "Frecuencia de actualización" #~ msgid "Select Minimum Criticality" #~ msgstr "Seleccione criticidad mínima " #~ msgid "All Criticalities" #~ msgstr "Todas las criticidades" #~ msgid "Device Icon Size" #~ msgstr "Tamaño de icono del dispositivo" #~ msgid "All Monitored" #~ msgstr "Todos los monitoreados" #~ msgid "Refresh the Device List" #~ msgstr "Actualizar la lista de dispositivos" #~ msgid "Last Refresh: %s" #~ msgstr "Última actualización: % s" #~ msgid "Refresh Again in %d Seconds" #~ msgstr "Actualizar de nuevo en %d segundos" #~ msgid "Mute" #~ msgstr "Silenciar" #, fuzzy #~ msgid "Acknowledge" #~ msgstr "Acuse de recibo" #~ msgid "Un-Mute" #~ msgstr "Activar alarma de sonido" #~ msgid "Reset" #~ msgstr "Restablecer" #~ msgid "View Thresholds" #~ msgstr "Ver umbrales" #~ msgid "View Syslog Alerts" #~ msgstr "Ver alertas de Syslog" #~ msgid "View Syslog Messages" #~ msgstr "Ver mensajes de Syslog" #~ msgid "Criticality:" #~ msgstr "Criticidad:" #~ msgid "Status:" #~ msgstr "Estado:" #~ msgid "Admin Note:" #~ msgstr "Nota de Admin:" #~ msgid "IP/Hostname:" #~ msgstr "IP/Nombre de equipo:" #~ msgid "Notes:" #~ msgstr "Notas:" #~ msgid "Links:" #~ msgstr "Enlaces:" #~ msgid "Curr/Avg:" #~ msgstr "Actual/prom:" #~ msgid "%d ms" #~ msgstr "%d ms" #~ msgid "Warn/Alert:" #~ msgstr "Adv/Alerta:" #~ msgid "%0.2d ms" #~ msgstr "%0.2d ms" #~ msgid "Last Fail:" #~ msgstr "Último error:" #~ msgid "Time In State:" #~ msgstr "Tiempo:" #~ msgid "Availability:" #~ msgstr "Disponibilidad:" #~ msgid "Agent Uptime:" #~ msgstr "Tiempo de funcionamiento del agente:" #~ msgid "Sys Description:" #~ msgstr "Descripción de Sistema:" #~ msgid "Criticality" #~ msgstr "Criticidad" #~ msgid "Click 'Continue' to %s monitoring on these Device(s)" #~ msgstr "Haga click en 'Continuar' para %s monitoreo en estos dispositivos" #, fuzzy #~ msgid "" #~ "Click 'Continue' to Change the Monitoring settings for the following " #~ "Device(s). Remember to check 'Update this Field' to indicate which " #~ "columns to update." #~ msgstr "" #~ "Haga click en 'Continuar' para cambiar las opciones de monitoreo para los " #~ "siguientes dispositivos. Recuerde tildar 'Actualizar este campo' para " #~ "indicar que columna actualizar." #~ msgid "Change Monitoring Options" #~ msgstr "Cambiar opciones de Monitoreo" #~ msgid "Enable Monitoring" #~ msgstr "Habilitar monitoreo" #~ msgid "Disable Monitoring" #~ msgstr "Deshabilitar Monitoreo" #~ msgid "Indefinately" #~ msgstr "Indefinidamente" #~ msgid "Monitor Settings" #~ msgstr "Opciones de Monitor" #~ msgid "Alarm Sound" #~ msgstr "Sonido de la alarma" #, fuzzy #~ msgid "This is the sound file that will be played when a Device goes down." #~ msgstr "" #~ "Este es el archivo de sonido que se reproducirá cuando un dispositivo " #~ "este caido." #, fuzzy #~ msgid "Show Icon Legend" #~ msgstr "Mostrar icono de leyenda" #~ msgid "How Often to Resend Emails" #~ msgstr "Con qué frecuencia reenviar los correos" #~ msgid "Grouping" #~ msgstr "Agrupar" #~ msgid "This is how monitor will Group Devices." #~ msgstr "Esto es como Monitor va a agrupar los dispositivos." #~ msgid "Monitor" #~ msgstr "Monitor" #~ msgid "Do not Change" #~ msgstr "No cambiar" #~ msgid "%d Percent Above Average" #~ msgstr "%d por ciento por encima del promedio" #, fuzzy #~ msgid "Device Monitoring Settings" #~ msgstr "Opciones de monitoreo de dispositivos" #~ msgid "Monitor Device" #~ msgstr "Monitorear dispositivo" #~ msgid "Device Criticality" #~ msgstr "Criticidad de dispositivo" #~ msgid "What is the Criticality of this Device." #~ msgstr "Cuál es la criticidad de este dispositivo." #~ msgid "Down Device Message" #~ msgstr "Mensaje de dispositivo caido" #~ msgid "" #~ "This is the message that will be displayed when this Device is reported " #~ "as down." #~ msgstr "" #~ "Este es el mensaje que será mostrado cuando este dispositivo se reporte " #~ "como caído." #~ msgid "Monitoring" #~ msgstr "Monitoreando" #~ msgid "Package Templates" #~ msgstr "Paquete de plantillas" #~ msgid "Author Information" #~ msgstr "Información de autor" #~ msgid "Enter the authors Name." #~ msgstr "Ingresa el nombre de autor." #~ msgid "Enter the authors homepage." #~ msgstr "Ingresa la pagina web del autor." #~ msgid "Enter the authors Email." #~ msgstr "Ingresa el correo del autor." #~ msgid "Enter the package description." #~ msgstr "Ingresa la descripción del paquete." #~ msgid "Enter the package version." #~ msgstr "Ingresa la versión del paquete." #~ msgid "Package Cacti Template" #~ msgstr "Plantilla de paquetes de Cacti" #, fuzzy #~ msgid "Package Template" #~ msgstr "Plantilla de paquete" #~ msgid "Backups" #~ msgstr "Backups" #~ msgid "Compare" #~ msgstr "Comparar" #~ msgid "Technical Support [ %s ]" #~ msgstr "Soporte técnico [ %s ]" #~ msgid "" #~ "A successful backup has now been completed on these devices\n" #~ "--------------------------------\n" #~ msgstr "" #~ "Se ha realizado con el exito el backup de estos dispositivos\n" #~ "--------------------------------\n" #~ msgid "Config Backups" #~ msgstr "Backups de configuraciones" #, fuzzy #~ msgid "Network Device Configuration Backups - Reattempt" #~ msgstr "Reintento - Respaldo de configuración de dispositivo de red" #~ msgid "Backup Path is not set or is not a directory" #~ msgstr "La ruta del Backup no esta especificada o no es un directorio" #~ msgid "FATAL: Backup Path is not set or is not a directory" #~ msgstr "" #~ "FATAL: LA ruta del Backup no esta especificada o no es un directorio" #~ msgid "FATAL: TFTP Server is not set" #~ msgstr "FATAL: Servidor TFTP no especificado" #~ msgid "Give this account a meaningful name that will be displayed." #~ msgstr "Dar a esta cuenta un nombre significativo que sera mostrado." #~ msgid "The username that will be used for authentication." #~ msgstr "El nombre de usuario que sera usado para la autenticacion." #~ msgid "The password used for authentication." #~ msgstr "La contraseña usada para la autenticacion." #~ msgid "Enable Password" #~ msgstr "Contraseña de Enable" #~ msgid "Your Enable Password, if required." #~ msgstr "Tu contraseña de Enable, si es requerida." #~ msgid "Click Continue to delete the following account(s)." #~ msgstr "" #~ "Haga click en 'Continuar para eliminar la(s) siguiente(s) cuenta(s)." #~ msgid "Account: %s" #~ msgstr "Cuenta: %s" #~ msgid "Accounts" #~ msgstr "Cuentas" #, fuzzy #~| msgid "Plugin Management" #~ msgid "Account Management" #~ msgstr "Administración de Plugin" #~ msgid "No Router Accounts Found" #~ msgstr "Ninguna cuenta de Router encontrada" #~ msgid "Router Config for %s (%s)" #~ msgstr "Config de Router para %s (%s)" #, fuzzy #~ msgid "Backup from %s" #~ msgstr "Respaldo desde %s" #~ msgid "File: %s/%s" #~ msgstr "Archivo: %s/%s" #~ msgid "Router Backups" #~ msgstr "Backups de Router" #, fuzzy #~ msgid "Backup Time" #~ msgstr "Tiempo de copia de seguridad" #~ msgid "Last Change" #~ msgstr "Ultima modificacion" #~ msgid "Changed By" #~ msgstr "Modificado por" #~ msgid "View Config" #~ msgstr "Ver config" #, fuzzy #~ msgid "No Router Backups Found" #~ msgstr "No se han encontrado copias de seguridad del Router" #~ msgid "Compare Output" #~ msgstr "Comparar salida" #~ msgid "There are no Changes" #~ msgstr "No hay cambios" #, fuzzy #~ msgid "Error, you must have backups for each device." #~ msgstr "Error, debe tener copias de seguridad para cada dispositivo." #~ msgid "Backup" #~ msgstr "Backup" #~ msgid "Enable Device" #~ msgstr "Habilitar dispositivo" #, fuzzy #~ msgid "Uncheck this box to disabled this device from being backed up." #~ msgstr "" #~ "Desmarque esta casilla para desactivar este dispositivo de ser respaldado." #, fuzzy #~ msgid "" #~ "Name of this device (will be used for config saving and SVN if no " #~ "hostname is present in config)." #~ msgstr "" #~ "Nombre de este dispositivo (sera usado para guardar los archivos de " #~ "configuración y SVN si no hay ningún nombre de equipo presente en la " #~ "configuración)." #~ msgid "This is the IP Address used to communicate with the device." #~ msgstr "Esta es la dirección IP usada para comunicarse con el dispositivo." #, fuzzy #~ msgid "This is the relative directory structure used to store the configs." #~ msgstr "" #~ "Esta es la estructura de directorios relativa utilizadad para almacenar " #~ "las configuraciones." #, fuzzy #~ msgid "How often to Backup this device." #~ msgstr "Cuan frecuente resguardar este dispositivo." #, fuzzy #~ msgid "Choose the type of device that the router is." #~ msgstr "Selecciona que tipo dispositivo es el router." #~ msgid "Authentication Account" #~ msgstr "Cuenta de autenticacion" #~ msgid "Choose an account to use to Login to the router" #~ msgstr "Elige una cuenta para acceder al router" #, fuzzy #~ msgid "Debug for %s (%s)

    " #~ msgstr "Depuración para %s (%s)

    " #~ msgid "Router Config for %s (%s)

    " #~ msgstr "Config de Router para %s (%s)

    " #, fuzzy #~| msgid "Click 'Continue' to delete the following device(s)." #~ msgid "Click 'Continue' to Delete the following device(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar el/los siguiente(s) " #~ "dispositivo(s)." #, fuzzy #~| msgid "Click 'Continue' to enable the following Device(s)." #~ msgid "Click 'Continue' to Enable the following device(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para habilitar el/los siguiente(s) " #~ "dispositivo(s)." #, fuzzy #~| msgid "Click 'Continue' to disable the following Device(s)." #~ msgid "Click 'Continue' to Disable the following device(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para deshabilitar el/los siguiente(s) " #~ "dispositivo(s)." #~ msgid "You must select at least Router Device." #~ msgstr "Debes seleccionar al menos un dispositivo Router." #~ msgid "Router: [edit: %s]" #~ msgstr "Router: [editar: %s]" #~ msgid "Router: [new]" #~ msgstr "Router: [nuevo]" #, fuzzy #~ msgid "Router Device Management" #~ msgstr "Administración de servidor WebSeer" #~ msgid "Configs" #~ msgstr "Configuraciones" #~ msgid "Last Backup" #~ msgstr "Ultimo Bakcup" #, fuzzy #~| msgid "Auto Detect" #~ msgid "Auto-Detect" #~ msgstr "Auto detectar" #~ msgid "Trace Route" #~ msgstr "Trace Route" #~ msgid "Router Debug Info" #~ msgstr "Info de depuración del Router" #~ msgid "Backups (%s)" #~ msgstr "Backups (%s)" #~ msgid "Current" #~ msgstr "Actual" #~ msgid "No Router Devices Found" #~ msgstr "Ningun dispositivo Router encontrado" #, fuzzy #~| msgid "Name of the device to be displayed." #~ msgid "Name of this device type." #~ msgstr "Nombre del dispositivo a ser mostrado." #, fuzzy #~| msgid "Username" #~ msgid "Username Prompt" #~ msgstr "Nombre de Usuario" #, fuzzy #~| msgid "This is the number of days to keep alert logs." #~ msgid "This is the username prompt to match on login." #~ msgstr "Este es el número de días para mantener logs de Alerta." #, fuzzy #~| msgid "Password" #~ msgid "Password Prompt" #~ msgstr "Contraseña" #, fuzzy #~| msgid "Copy" #~ msgid "Copy TFTP" #~ msgstr "Copiar" #, fuzzy #~| msgid "This is the URL to connect to remote.php on this server." #~ msgid "This is the CLI text used to send the backup to tftp server." #~ msgstr "Esta es la URL para conectarse a remote.php en este servidor." #, fuzzy #~| msgid "OS Version" #~ msgid "Show Version" #~ msgstr "Versión de SO" #, fuzzy #~| msgid "This is the DNS Server used to resolve names." #~ msgid "This is the CLI text used to display the current version." #~ msgstr "Este es el servidor DNS usado para resolver nombres." #, fuzzy #~| msgid "Configs" #~ msgid "Confirm" #~ msgstr "Configuraciones" #, fuzzy #~| msgid "Click 'Continue' to delete the following device(s)." #~ msgid "When you click 'Continue', the following device(s) will be deleted." #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar el/los siguiente(s) " #~ "dispositivo(s)." #, fuzzy #~| msgid "Router Devices" #~ msgid "View Router Device Types" #~ msgstr "Dispositivos Router" #, fuzzy #~| msgid "Edit Device" #~ msgid "Edit Device Type" #~ msgstr "Editar dispositivo" #, fuzzy #~| msgid "No Router Devices Found" #~ msgid "No Router Device Types Found" #~ msgstr "Ningun dispositivo Router encontrado" #, fuzzy #~ msgid "Network Device Configuration Backups" #~ msgstr "Reintento - Respaldo de configuración de dispositivo de red" #~ msgid "Router Configs" #~ msgstr "Configs de Router" #~ msgid "TFTP Server IP" #~ msgstr "IP de Servidor TFTP" #~ msgid "Must be an IP pointing to your Cacti server." #~ msgstr "Debe ser una IP apuntando a tu servidor Cacti." #, fuzzy #~ msgid "Backup Directory Path" #~ msgstr "Ruta del directorio de copia de seguridad" #, fuzzy #~ msgid "" #~ "The path to where your Configs will be backed up, it must be the path " #~ "that the local TFTP Server writes to." #~ msgstr "" #~ "La ruta de acceso donde se guardarán las copias de seguridad de las " #~ "configuraciones, debe ser la ruta de acceso en la que escribe el servidor " #~ "TFTP local." #, fuzzy #~ msgid "" #~ "A comma delimited list of Email addresses to send the nightly backup " #~ "Email to." #~ msgstr "" #~ "Una lista de direcciones de correo delimitada por coma a enviar el correo " #~ "de copias de seguridad nocturna." #~ msgid "From Address" #~ msgstr "Dirección del remitente" #, fuzzy #~ msgid "Email address the nightly backup will be sent from." #~ msgstr "" #~ "Dirección de correo electrónico con la que se enviara el correo de la " #~ "copia de seguridad nocturna." #~ msgid "Retention Period" #~ msgstr "Periodo de retencion" #, fuzzy #~ msgid "The number of days to retain old backups." #~ msgstr "El número de días para retener las copias de seguridad antiguas." #~ msgid "Router Devices" #~ msgstr "Dispositivos Router" #~ msgid "View Debug" #~ msgstr "Ver debug" #~ msgid "Router Accounts" #~ msgstr "Cuentas de Router" #~ msgid "Router Compare" #~ msgstr "Comparar Router" #, fuzzy #~ msgid "" #~ "Please rename your config.php.dist file in the syslog directory, and " #~ "change setup your database before installing." #~ msgstr "" #~ "Por favor renombra tu archivo config.php.dist en el directorio syslog, y " #~ "cambia las opciones de base de datos antes de instalar." #~ msgid "Background Upgrade" #~ msgstr "Actualización en segundo plano" #~ msgid "Inline Upgrade" #~ msgstr "Actualización en línea" #~ msgid "Truncate Syslog Table" #~ msgstr "Truncar la tabla de Syslog" #~ msgid "Database Storage Engine" #~ msgstr "Motor de almacenamiento de Base de datos" #~ msgid "" #~ "In MySQL 5.1.6 and above, you have the option to make this a partitioned " #~ "table by days. Prior to this\n" #~ "\t\t\trelease, you only have the traditional table structure available." #~ msgstr "" #~ "En MySQL 5.1.6 y superior, tienes la opción de hacer de esta una tabla " #~ "particionada por dias. Previo a esta version, solamente tienes la " #~ "estructura de tabla tradicional disponible." #~ msgid "InnoDB Storage" #~ msgstr "Almacenamiento InnoDB" #~ msgid "MyISAM Storage" #~ msgstr "Almacenamiento MyISAM" #~ msgid "Database Architecture" #~ msgstr "Arquitectura de base de datos" #~ msgid "Partitioned Table" #~ msgstr "Tabla particionada" #~ msgid "Traditional Table" #~ msgstr "Tabla tradicional" #~ msgid "Retention Policy" #~ msgstr "Politica de retención" #~ msgid "" #~ "Choose how many days of Syslog values you wish to maintain in the " #~ "database." #~ msgstr "Elija cuantos días de Syslog desea conservar en la base de datos." #~ msgid "Partitions per Day" #~ msgstr "Particiones por día" #~ msgid "%d Per Day" #~ msgstr "%d por día" #~ msgid "Syslog %s Settings" #~ msgstr "Opciones %s de Syslog" #~ msgid "What uninstall method do you want to use?" #~ msgstr "Que método de desinstalación queres usar?" #~ msgid "Remove Everything (Logs, Tables, Settings)" #~ msgstr "Remover todo (Logs, tablas, configuraciones)" #, fuzzy #~ msgid "Syslog Data Only" #~ msgstr "Solo datos de Syslog" #~ msgid "Syslog Uninstall Preferences" #~ msgstr "Preferencias de desinstalación de Syslog" #~ msgid "Syslog" #~ msgstr "Syslog" #~ msgid "Syslog Enabled" #~ msgstr "Syslog habilitado" #~ msgid "HTML Based Email" #~ msgstr "Email basado en HTML" #~ msgid "" #~ "If this checkbox is set, all Emails will be sent in HTML format. " #~ "Otherwise, Emails will be sent in plain text." #~ msgstr "" #~ "Si esta casilla es activada, todos los correos serán enviados en formato " #~ "HTML. De otra manera, los correos serán enviados en texto plano." #~ msgid "Enable Statistics Gathering" #~ msgstr "Habilitar recopilación de estadísticas" #~ msgid "Validate Hostnames" #~ msgstr "Validar nombres de equipos" #~ msgid "This is the time in seconds before the page refreshes." #~ msgstr "Este es el tiempo en segundos antes de que la pagina refresque." #~ msgid "Syslog Retention" #~ msgstr "Retención de Syslog" #~ msgid "This is the number of days to keep events." #~ msgstr "Este es el número de días para retener eventos." #~ msgid "Syslog Alert Retention" #~ msgstr "Retención de alerta de Syslog" #~ msgid "This is the number of days to keep alert logs." #~ msgstr "Este es el número de días para mantener logs de Alerta." #~ msgid "Command for Opening Tickets" #~ msgstr "Comando para abrir Tickets" #~ msgid "Indefinite" #~ msgstr "Indefinido" #~ msgid "Notice" #~ msgstr "Notice" #~ msgid "Critical" #~ msgstr "Crítico" #~ msgid "Begins with" #~ msgstr "Comienza con" #~ msgid "Ends with" #~ msgstr "Termina con" #~ msgid "Hostname is" #~ msgstr "Nombre de equipo" #~ msgid "Facility is" #~ msgstr "Facility es" #~ msgid "SQL Expression" #~ msgstr "Expresión SQL" #~ msgid "Alert Rules" #~ msgstr "Reglas de alerta" #~ msgid "Syslog Settings" #~ msgstr "Opciones de Syslog" #~ msgid "Removal Rules" #~ msgstr "Reglas de eliminación" #~ msgid "Report Rules" #~ msgstr "Reglas de reporte" #~ msgid "Syslog Removals" #~ msgstr "Eliminaciones de Syslog" #~ msgid "(Actions)" #~ msgstr "(Acciones)" #~ msgid "Syslog Alerts" #~ msgstr "Alertas de Syslog" #~ msgid "Syslog Reports" #~ msgstr "Reportes de Syslog" #~ msgid "Syslog Utilities" #~ msgstr "Utilitarios de Syslog" #~ msgid "Purge Syslog Devices" #~ msgstr "Purgar dispositivos de Syslog" #~ msgid "" #~ "This menu pick provides a means to remove Devices that are no longer " #~ "reporting into Cacti's syslog server." #~ msgstr "" #~ "Esta selección de menú proporciona un medio para eliminar los " #~ "dispositivos que ya no se registran en el servidor syslog de Cacti." #, fuzzy #~ msgid "Syslog Viewer" #~ msgstr "Visor de Flujo" #~ msgid "All Text" #~ msgstr "Todo texto" #~ msgid "%d Chars" #~ msgstr "%d Caracteres" #~ msgid "System Logs" #~ msgstr "Logs de sistema" #~ msgid "Alert Logs" #~ msgstr "Logs de Alerta" #~ msgid "Selected Alert" #~ msgstr "Alerta seleccionada" #~ msgid "Syslog Alert View" #~ msgstr "Vista de alerta de Syslog" #~ msgid "Syslog Statistics Filter" #~ msgstr "Filtro de estadísticas de Syslog" #~ msgid "Messages" #~ msgstr "Mensajes" #~ msgid "Facility" #~ msgstr "Facility" #~ msgid "Priority" #~ msgstr "Prioridad" #~ msgid "Program" #~ msgstr "Programa" #~ msgid "No Syslog Statistics Found" #~ msgstr "Estadísticas de Syslog no encontradas" #, fuzzy #~| msgid "Time range" #~ msgid "Time Range" #~ msgstr "Rango horario" #~ msgid " [ Start: '%s' to End: '%s', Unprocessed Messages: %s ]" #~ msgstr " [ Inicio: '%s' a fin: '%s', mensajes sin procesar: %s ]" #~ msgid "[ Unprocessed Messages: %s ]" #~ msgstr "[ Mensajes sin procesar: %s ]" #~ msgid "Select Device(s)" #~ msgstr "Selecciona dispositivo(s)" #~ msgid "Devices Selected" #~ msgstr "Dispositivos seleccionados" #~ msgid "All Devices Selected" #~ msgstr "Todo los dispositivos seleccionados" #~ msgid "Syslog Message Filter %s" #~ msgstr "Filtro de mensaje de Syslog %s" #~ msgid "Return filter values to their user defined defaults" #~ msgstr "" #~ "Restaurar valores de filtro a los definidos por defecto por el usuario" #~ msgid "Export Records to CSV" #~ msgstr "Exportar registros a CSV" #~ msgid "Save Default Settings" #~ msgstr "Guardar opciones por defecto" #~ msgid "Alerts" #~ msgstr "Alertas" #~ msgid "View Syslog Alert Rules" #~ msgstr "Ver reglas de alertas de Syslog" #~ msgid "Removals" #~ msgstr "Eliminación" #~ msgid "View Syslog Removal Rules" #~ msgstr "Ver reglas de eliminación de Syslog" #~ msgid "View Syslog Reports" #~ msgstr "Ver reportes de Syslog" #~ msgid "Show All Devices" #~ msgstr "Mostrar todos los dispositivos" #~ msgid "Show All Logs" #~ msgstr "Mostrar todos los Logs" #~ msgid "Threshold Logs" #~ msgstr "Logs de umbral" #~ msgid "Display Rows" #~ msgstr "Mostrar filas" #~ msgid "%d Messages" #~ msgstr "%d mensajes" #, fuzzy #~ msgid "Message Trim" #~ msgstr "Ajuste de mensaje" #~ msgid "Programs to filter on" #~ msgstr "Programas para filtrar en" #~ msgid "All Programs" #~ msgstr "Todos los programas" #~ msgid "Facilities to filter on" #~ msgstr "Facilities para filtrar en" #~ msgid "All Facilities" #~ msgstr "Todas las Facilities" #~ msgid "Priority Levels" #~ msgstr "Niveles de prioridad" #~ msgid "All Priorities" #~ msgstr "Todas las prioridades" #~ msgid "Emergency" #~ msgstr "Emergencia" #~ msgid "Critical++" #~ msgstr "Crítico++" #~ msgid "Alert++" #~ msgstr "Alerta++" #~ msgid "Alert" #~ msgstr "Alerta" #~ msgid "Error++" #~ msgstr "Error++" #~ msgid "Warning++" #~ msgstr "Warning++" #~ msgid "Notice++" #~ msgstr "Notice++" #~ msgid "Info++" #~ msgstr "Info++" #~ msgid "Info" #~ msgstr "Info" #~ msgid "Main Records" #~ msgstr "Registros principales" #~ msgid "Removed Records" #~ msgstr "Registros eliminados" #~ msgid "Informational" #~ msgstr "Informativo" #~ msgid "Message" #~ msgstr "Mensaje" #~ msgid "No Syslog Messages" #~ msgstr "Ningún mensaje de Syslog" #, fuzzy #~| msgid "Alert Logs" #~ msgid "Alert Log Rows" #~ msgstr "Logs de Alerta" #~ msgid "Alert Name" #~ msgstr "Nombre de Alerta" #, fuzzy #~| msgid "(User Removed)" #~ msgid "Alert Removed" #~ msgstr "(Usuario borrado)" #~ msgid "No Alert Log Messages" #~ msgstr "Ningún mensaje de log de Alerta" #~ msgid "Click 'Continue' to Delete the following Syslog Alert Rule(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar la(s) siguiente(s) Regla(s) de " #~ "Alerta de Syslog." #~ msgid "Delete Syslog Alert Rule(s)" #~ msgstr "Regla(s) de eliminación de alertas de Syslog" #~ msgid "Click 'Continue' to Disable the following Syslog Alert Rule(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para deshabilitar la(s) siguiente(s) Regla(s) " #~ "de Alerta de Syslog." #~ msgid "Disable Syslog Alert Rule(s)" #~ msgstr "Deshabilitar Regla(s) de Alerta de Syslog" #~ msgid "Click 'Continue' to Enable the following Syslog Alert Rule(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para habilitar la(s) siguiente(s) Regla(s) de " #~ "Alerta de Syslog." #~ msgid "Enable Syslog Alert Rule(s)" #~ msgstr "Habilitar Regla(s) de Alerta de Syslog" #~ msgid "You must select at least one Syslog Alert Rule." #~ msgstr "Debes seleccionar al menos una Regla de Alerta de Syslog." #~ msgid "Alert Edit [edit: %s]" #~ msgstr "Editar alerta [editar: %s]" #~ msgid "Alert Edit [new]" #~ msgstr "Editar alerta [nueva]" #~ msgid "New Alert Rule" #~ msgstr "Nueva regla de Alerta" #~ msgid "Not Set" #~ msgstr "No especificado" #~ msgid "Month" #~ msgstr "Mes" #~ msgid "Alert Details" #~ msgstr "Detalles de alerta" #~ msgid "Please describe this Alert." #~ msgstr "Por favor describe esta alerta" #~ msgid "What is the Severity Level of this Alert?" #~ msgstr "Cual es el nivel de severidad de esta alerta?" #~ msgid "Reporting Method" #~ msgstr "Método de reporte" #~ msgid "Define how to Alert on the syslog messages." #~ msgstr "Define como alertar sobre los mensajes de Syslog." #~ msgid "Individual" #~ msgstr "Individual" #~ msgid "Threshold" #~ msgstr "Umbral" #~ msgid "Is this Alert Enabled?" #~ msgstr "Esta habilitada esta alerta?" #~ msgid "" #~ "Do not resend this alert again for the same host, until this amount of " #~ "time has elapsed. For threshold based alarms, this applies to all hosts." #~ msgstr "" #~ "No reenviar esta alerta de nuevo para el mismo equipo, hasta que esta " #~ "cantidad de tiempo haya pasado. Para alertas basadas en umbrales, aplica " #~ "a todos los equipos." #~ msgid "Alert Notes" #~ msgstr "Notas de alerta" #~ msgid "Space for Notes on the Alert" #~ msgstr "Espacio para notas en la alerta" #~ msgid "Alert Actions" #~ msgstr "Acciones de alerta" #~ msgid "Open Ticket" #~ msgstr "Abrir Ticket" #~ msgid "Should a Help Desk Ticket be opened for this Alert" #~ msgstr "Debería abrirse un Ticket en mesa de ayuda para esta Alerta" #~ msgid "Emails to Notify" #~ msgstr "Emails a notificar" #~ msgid "Alert Command" #~ msgstr "Comando de alerta" #~ msgid "Syslog Alert Filters" #~ msgstr "Filtros de alerta de Syslog" #~ msgid "Match Type" #~ msgstr "Tipo de coincidencia" #~ msgid "Search String" #~ msgstr "Buscar texto" #~ msgid "By User" #~ msgstr "Por usuario" #~ msgid "No Syslog Alerts Defined" #~ msgstr "No hay alertas de Syslog definidas" #, fuzzy #~| msgid "Name" #~ msgid "Name:" #~ msgstr "Nombre" #, fuzzy #~| msgid "Severity" #~ msgid "Severity:" #~ msgstr "Severidad" #, fuzzy #~| msgid "Threshold" #~ msgid "Threshold:" #~ msgstr "Umbral" #, fuzzy #~| msgid "Count" #~ msgid "Count:" #~ msgstr "Cuenta" #, fuzzy #~ msgid "Message String:" #~ msgstr "Ajuste de mensaje" #, fuzzy #~| msgid "Search String" #~ msgid "Match String" #~ msgstr "Buscar texto" #, fuzzy #~| msgid "View Syslog Alerts" #~ msgid "Cacti Syslog Plugin Alert '%s'" #~ msgstr "Ver alertas de Syslog" #, fuzzy #~| msgid "Top Level" #~ msgid "Level" #~ msgstr "Nivel superior" #, fuzzy #~| msgid "Top Level" #~ msgid "Level:" #~ msgstr "Nivel superior" #, fuzzy #~| msgid "Message" #~ msgid "Message:" #~ msgstr "Mensaje" #, fuzzy #~| msgid "Host:" #~ msgid ", Host:" #~ msgstr "Equipo:" #, fuzzy #~| msgid "Count" #~ msgid ", Count:" #~ msgstr "Cuenta" #, fuzzy #~| msgid "Print Reports" #~ msgid "Event Report - %s" #~ msgstr "Imprimir reportes" #~ msgid "Reprocess" #~ msgstr "Re procesar" #~ msgid "Click 'Continue' to Delete the following Syslog Removal Rule(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar la(s) siguiente(s) regla(s) de " #~ "eliminación de Syslog." #~ msgid "Delete Syslog Removal Rule(s)" #~ msgstr "Eliminar regla(s) de eliminación de Syslog" #~ msgid "Click 'Continue' to Disable the following Syslog Removal Rule(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para deshabilitar la(s) siguiente(s) regla(s) " #~ "de eliminación de Syslog." #~ msgid "Disable Syslog Removal Rule(s)" #~ msgstr "Deshabilitar regla(s) de eliminación de Syslog" #~ msgid "Click 'Continue' to Enable the following Syslog Removal Rule(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para habilitar la(s) siguiente(s) regla(s) de " #~ "eliminación de Syslog." #~ msgid "Enable Syslog Removal Rule(s)" #~ msgstr "Habilitar regla(s) de eliminación de Syslog" #~ msgid "Click 'Continue' to Re-process the following Syslog Removal Rule(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para volver procesar la(s) siguiente(s) " #~ "regla(s) de eliminación de Syslog." #~ msgid "Retroactively Process Syslog Removal Rule(s)" #~ msgstr "Procesar retroactivamente la(s) regla(s) de eliminación de Syslog" #~ msgid "You must select at least one Syslog Removal Rule." #~ msgstr "Debes seleccionar al menos una regla de eliminación de Syslog." #~ msgid "There were %s messages removed, and %s messages transferred" #~ msgstr "Hubo %s mensajes eliminados, y %s mensajes transmitidos" #~ msgid "Removal Rule Edit [edit: %s]" #~ msgstr "Editar Regla de Eliminación [editar: %s]" #, fuzzy #~ msgid "Removal Rule Edit [new]" #~ msgstr "Editar Regla de Eliminación [nueva]" #~ msgid "New Removal Record" #~ msgstr "Nuevo registro de eliminación" #, fuzzy #~ msgid "New Removal Rule" #~ msgstr "Nueva regla de eliminación" #~ msgid "Removal Rule Details" #~ msgstr "Detalles de Regla de eliminación" #~ msgid "Removal Rule Name" #~ msgstr "Nombre de regla de eliminación" #~ msgid "Please describe this Removal Rule." #~ msgstr "Describe esta Regla de eliminacion." #~ msgid "Enabled?" #~ msgstr "Habilitado?" #~ msgid "Is this Removal Rule Enabled?" #~ msgstr "Esta habilitada esta Regla de eliminación?" #~ msgid "Method of Removal" #~ msgstr "Método de eliminación" #, fuzzy #~ msgid "Deletion" #~ msgstr "Supresión" #~ msgid "Transferal" #~ msgstr "Transferencia" #~ msgid "Removal Rule Notes" #~ msgstr "Notas de Regla de eliminación" #~ msgid "Space for Notes on the Removal rule" #~ msgstr "Espacio para notas en la regla de eliminación" #~ msgid "Syslog Removal Rule Filters" #~ msgstr "Filtros de regla de eliminación de Syslog" #, fuzzy #~ msgid "Removal Name" #~ msgstr "Nombre de eliminación" #~ msgid "Transfer" #~ msgstr "Transferencia" #~ msgid "No Syslog Removal Rules Defined" #~ msgstr "No hay reglas de eliminación de Syslog definidas" #~ msgid "Click 'Continue' to Delete the following Syslog Report(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar el/los siguientes reporte(s) de " #~ "Syslog." #~ msgid "Delete Syslog Report(s)" #~ msgstr "Eliminar Reporte(s) de Syslog" #~ msgid "Click 'Continue' to Disable the following Syslog Report(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para deshabilitar el/los siguientes reporte(s) " #~ "de Syslog." #~ msgid "Disable Syslog Report(s)" #~ msgstr "Deshabilitar Reporte de Syslog" #~ msgid "Click 'Continue' to Enable the following Syslog Report(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para habilitar el/los siguientes reporte(s) de " #~ "Syslog." #~ msgid "Enable Syslog Report(s)" #~ msgstr "Habilitar Reporte(s) de Syslog" #~ msgid "You must select at least one Syslog Report." #~ msgstr "Debes seleccionar al menos un Reporte de Syslog." #~ msgid "Report Edit [new]" #~ msgstr "Editar reporte [nuevo]" #, fuzzy #~ msgid "New Report Record" #~ msgstr "Nuevo registro de reporte" #~ msgid "Please describe this Report." #~ msgstr "Describe este Reporte." #~ msgid "Is this Report Enabled?" #~ msgstr "Esta hablitado este Reporte?" #~ msgid "Report Frequency" #~ msgstr "Frecuencia de Reporte" #~ msgid "How often should this Report be sent to the distribution list?" #~ msgstr "" #~ "Cuan seguido deberia ser enviado este reporte a la lista de distribucion?" #~ msgid "Send Time" #~ msgstr "Hora de envío" #~ msgid "What time of day should this report be sent?" #~ msgstr "A que hora del día debería enviarse este reporte?" #~ msgid "Report Body Text" #~ msgstr "Texto del cuerpo del reporte" #~ msgid "The information that will be contained in the body of the report." #~ msgstr "La información que estará contenida en el cuerpo de este reporte." #~ msgid "Report Email Addresses" #~ msgstr "Direcciones de correo del reporte" #~ msgid "Comma delimited list of Email addresses to send the report to." #~ msgstr "" #~ "Lista de direcciones de correo delimitada por coma para enviar el reporte." #~ msgid "Report Notes" #~ msgstr "Notas de reporte" #~ msgid "Space for Notes on the Report" #~ msgstr "Espacio para notas en el reporte" #~ msgid "Syslog Report Filters" #~ msgstr "Filtros de Reporte de Syslog" #~ msgid "Last Sent" #~ msgstr "Ultimo enviado" #~ msgid "No Syslog Reports Defined" #~ msgstr "No hay reportes de Syslog definidos" #~ msgid "Not Monitored" #~ msgstr "No Monitoreado" #~ msgid "Notify - Alert" #~ msgstr "Notificar - Alerta" #~ msgid "Notify - Warning" #~ msgstr "Notificar - Advertencia" #~ msgid "Restore" #~ msgstr "Restaurar" #~ msgid "Ok" #~ msgstr "Ok" #, fuzzy #~| msgid "%f Hours" #~ msgid "%0.1f Hours" #~ msgstr "%f horas" #~ msgid "Exact Value" #~ msgstr "Valor exacto" #~ msgid "Percentage" #~ msgstr "Porcentaje" #~ msgid "RPN Expression" #~ msgstr "Expresión RPN" #~ msgid "Devices Error: () is DOWN" #~ msgstr "Error de Dispositivo: () esta CAIDO" #~ msgid "(add)" #~ msgstr "(agregar)" #, fuzzy #~ msgid "Threshold Templates" #~ msgstr "Plantillas de Umbrales" #~ msgid "Notification Lists" #~ msgstr "Listas de notificación" #~ msgid "Notification Lists (edit)" #~ msgstr "Listas de notificación (editar)" #~ msgid "A template with that Data Source already exists!" #~ msgstr "Ya existe una plantilla con ese Data source!" #~ msgid "Device Up/Down Notification Settings" #~ msgstr "Configuración de notificación de dispositivo Arriba / Caído" #~ msgid "Global List" #~ msgstr "Lista global" #~ msgid "Notification List" #~ msgstr "Lista de notificacion" #~ msgid "Disable All Thresholds" #~ msgstr "Deshabilitar todos los Thresholds" #~ msgid "Auto Create Thresholds" #~ msgstr "Auto crear Thresholds" #~ msgid "Default Status" #~ msgstr "Estado por defecto" #~ msgid "Show Data Source in Log" #~ msgstr "Mostrar Data Source en log" #~ msgid "Show the Data Source name in the Log if not present." #~ msgstr "Mostrar el nombre de Data Source en el log si no esta presente." #~ msgid "If this is checked, Thold will not run on weekends." #~ msgstr "Si esto esta activado, THold no se ejecutara los fines de semana." #~ msgid "Syslog Support" #~ msgstr "Soporte de Syslog" #~ msgid "Syslog Level" #~ msgstr "Nivel de Syslog" #~ msgid "SNMP Notifications" #~ msgstr "Notificaciones de SNMP" #~ msgid "Disable Warning Notifications" #~ msgstr "Deshabilitar notificaciones de advertencia" #~ msgid "Disable Restoration Notifications" #~ msgstr "Deshabilitar notificaciones de restauracion" #~ msgid "SNMP Event Description" #~ msgstr "Descripción de evento SNMP" #~ msgid "Emailing Options" #~ msgstr "Opciones de envio de correo" #~ msgid "Send Emails with Urgent Priority" #~ msgstr "Enviar Emails con Urgente prioridad" #~ msgid "Dead Device Notifications" #~ msgstr "Notificaciones de dispositivos muertos" #, fuzzy #~ msgid "Enable Dead/Recovering host notification" #~ msgstr "Habilitar notificación de equipo muerto/recuperandose" #~ msgid "Dead Device Notifications Email" #~ msgstr "Email de notificaciones de dispositivo muerto" #~ msgid "Down Device Subject" #~ msgstr "Asunto de dispositivo caido" #~ msgid "" #~ "This is the Email subject that will be used for Down Device Messages." #~ msgstr "" #~ "Este es el asunto del correo que sera usado para los mensajes de " #~ "dispositivos caídos." #~ msgid "Device Error: () is DOWN" #~ msgstr "Error de dispositivo: () esta CAIDO" #~ msgid "Send Alerts as Text" #~ msgstr "Enviar alerta como texto" #~ msgid "" #~ "Click 'Continue' to Delete Notification Lists(s). Any Device(s) or " #~ "Threshold(s) associated with the List(s) will be reverted to the default." #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar la(s) lista(s) de notificación. " #~ "Cualquier dispositivo(s) o umbral(es) asociados con la lista(s) serán " #~ "revertidos a los valores por defecto." #~ msgid "Delete Notification List(s)" #~ msgstr "Eliminar Lista(s) de notificacion" #~ msgid "Click 'Continue' to Duplicate the following Notification List(s)." #~ msgstr "" #~ "Haga click en 'Continuar' para duplicar la(s) siguiente(s) lista(s) de " #~ "notificacion." #~ msgid "Duplicate Notification List(s)" #~ msgstr "Duplicar lista(s) de notificacion" #~ msgid "%s Threshold Template(s)" #~ msgstr "%s Plantilla(a) de umbral(es)" #~ msgid "" #~ "Click 'Continue' to Association the Notification List '%s' with " #~ "the Threshold Template(s) below." #~ msgstr "" #~ "Haga click en 'Continuar' para asociar la lista de notificación '%s' con la(s) plantilla(s) de umbral(es) a continuación." #~ msgid "No Change" #~ msgstr "Sin cambio" #~ msgid "Notification List Only" #~ msgstr "Lista de notificación solamente" #~ msgid "Associate Notification List(s)" #~ msgstr "Asociar lista(s) de notificacion" #, fuzzy #~ msgid "" #~ "Click 'Continue' to Disassociate the Notification List '%s' from " #~ "the Thresholds Template(s) below." #~ msgstr "" #~ "Haga click en 'Continuar' para desasociar la lista de notificación '" #~ "%s' de la(s) Plantilla(s) de Threshold debajo." #~ msgid "Remove List" #~ msgstr "Eliminar lista" #~ msgid "Disassociate Notification List(s)" #~ msgstr "Desasociar lista(s) de notificación" #~ msgid "You must select at least one Threshold Template." #~ msgstr "Debes seleccionar al menos una Plantilla de umbral" #~ msgid "%s Threshold(s)" #~ msgstr "%s umbral(es)" #~ msgid "" #~ "Click 'Continue' to Associate the Notification List '%s' with the " #~ "Threshold(s) below." #~ msgstr "" #~ "Haga click en 'Continuar' para asociar la lista de notificación '%s' con el/los Threhold(s) debajo." #~ msgid "" #~ "Click 'Continue' to Disassociate the Notification List '%s' from " #~ "the Thresholds(s) below." #~ msgstr "" #~ "Haga click en 'Continuar' para desasociar la lista de notificación '" #~ "%s' con el/los Threhold(s) debajo." #~ msgid "You must select at least one Threshold." #~ msgstr "Debes seleccionar al menos un Threshold." #~ msgid "" #~ "Click 'Continue' to Associate the Notification List '%s' with the " #~ "Device(s) below." #~ msgstr "" #~ "Haga click en 'Continuar' para asociar la lista de notificación '%s' con el/los dispositivo(s) debajo." #~ msgid "Notification and Global Lists" #~ msgstr "Notificación y listas globales" #~ msgid "" #~ "Click 'Continue' to Disassociate the Notification List '%s' from " #~ "the Device(s) below." #~ msgstr "" #~ "Haga click en 'Continuar' para desasociar la lista de notificación '" #~ "%s' con el/los dispositivo(s) debajo." #~ msgid "List General Settings" #~ msgstr "Lista opciones generales" #~ msgid "Enter a name for this Notification List." #~ msgstr "Ingresa un nombre para esta lista de notificacion." #~ msgid "Enter a description for this Notification List." #~ msgstr "Ingresa una descripción para esta lista de notificación." #~ msgid "" #~ "Enter a comma separated list of Email addresses for this Notification " #~ "List." #~ msgstr "" #~ "Ingresa una lista separada por coma de direcciones de email para esta " #~ "lista de notificacion." #~ msgid "Associated Lists" #~ msgstr "Listas Asociadas" #~ msgid "Current List Only" #~ msgstr "Lista actual solamente" #~ msgid "Current and Global List(s)" #~ msgstr "Lista(s) actual(es) y global(es)" #~ msgid "Associated Thresholds" #~ msgstr "Thresholds asociados" #~ msgid "Warning Lists" #~ msgstr "Listas de advertencia" #~ msgid "Alert Lists" #~ msgstr "Listas de alerta" #~ msgid "Select Users" #~ msgstr "Selecciona usuarios" #~ msgid "Specific Emails" #~ msgstr "Especifica Emails" #~ msgid "Current List" #~ msgstr "Lista actual" #~ msgid "Log Only" #~ msgstr "Sólo registrar" #~ msgid "No Thresholds" #~ msgstr "Sin umbrales" #~ msgid "Associated Templates" #~ msgstr "Plantillas asociadas" #~ msgid "List Name" #~ msgstr "Nombre de lista" #~ msgid "Emails" #~ msgstr "Correos" #~ msgid "No Notification Lists" #~ msgstr "Ninguna lista de notificación" #~ msgid "Plugin -> Configure Thresholds" #~ msgstr "Plugin -> Configurar Thresholds" #~ msgid "Plugin -> Configure Threshold Templates" #~ msgstr "Plugin -> Configurar Plantillas de Threshold" #~ msgid "Plugin -> Manage Notification Lists" #~ msgstr "Plugin -> Administrar Listas de notificacion" #~ msgid "Plugin -> View Thresholds" #~ msgstr "Plugin -> Ver Thresholds" #, fuzzy #~ msgid "Create Threshold" #~ msgstr "Crear Umbral" #~ msgid "Auto-create Thresholds" #~ msgstr "Auto crear umbrales" #~ msgid "Available Threshold Templates" #~ msgstr "Plantillas de Threshold disponibles" #~ msgid "Select a Threshold Template" #~ msgstr "Selecciona una Plantilla de Threshold" #~ msgid "Create Threshold from Template" #~ msgstr "Crear umbral desde una Plantilla" #~ msgid "Associated Threshold Templates" #~ msgstr "Plantillas de Umbrales asociadas" #~ msgid "No Associated Threshold Templates." #~ msgstr "No hay plantillas de umbrales asociadas." #~ msgid "Add Threshold Template" #~ msgstr "Agregar Plantilla de Threshold" #~ msgid "Add Threshold Template to Device Template" #~ msgstr "Agregar Plantilla de Threshold a Plantilla de dispositivo" #, fuzzy #~ msgid "" #~ "Click 'Continue' to delete the following Threshold Template will be " #~ "disassociated from the Device Template." #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar la siguiente plantilla de " #~ "Threshold, sera desasociada de la plantilla de dispositivo." #~ msgid "Threshold Template Name: %s" #~ msgstr "Nombre de Plantilla de Threshold: %s" #~ msgid "Remove Threshold Template" #~ msgstr "Remover Plantilla de Threshold" #~ msgid "Propagate Template" #~ msgstr "Propagar Plantilla" #~ msgid "Threshold Management" #~ msgstr "Administración de Threshold" #~ msgid "Apply Filters" #~ msgstr "Aplicar filtros" #~ msgid "Return to Defaults" #~ msgstr "Volver a valores por defecto" #~ msgid "DSName" #~ msgstr "NombreDS" #~ msgid "Trigger" #~ msgstr "Activador" #~ msgid "Repeat" #~ msgstr "Repetir" #~ msgid "baseline-LOW" #~ msgstr "estándar-BAJO" #~ msgid "baseline-HIGH" #~ msgstr "estándar-ALTO" #, fuzzy #~ msgid "Data Source Description:" #~ msgstr "Descripción del Data Source:" #~ msgid "Associated Graph (Graphs using this RRD):" #~ msgstr "Gráficos asociados (Gráficos usando este RRD):" #~ msgid "Last:" #~ msgstr "Ultimo:" #~ msgid "WHi:" #~ msgstr "WHi:" #~ msgid "WLo:" #~ msgstr "WLo:" #~ msgid "AHi:" #~ msgstr "AHi:" #~ msgid "ALo:" #~ msgstr "ALo:" #, fuzzy #~ msgid "BL Up:" #~ msgstr "BL Up:" #~ msgid "%s%%" #~ msgstr "%s%%" #, fuzzy #~ msgid "BL Down:" #~ msgstr "BL Down:" #, fuzzy #~ msgid "Replacement Fields: %s" #~ msgstr "Reemplazo de Campos: %s" #~ msgid "Data Sources: %s" #~ msgstr "Data Sources: %s" #~ msgid "Template Settings" #~ msgstr "Opciones de Plantilla" #~ msgid "Name of the Threshold Template the Threshold was created from." #~ msgstr "" #~ "Nombre de la Plantilla de Threshold desde la que fue creado el Threshold." #~ msgid "Threshold Name" #~ msgstr "Nombre de Threshold" #~ msgid "Threshold Type" #~ msgstr "Tipo de umbral" #~ msgid "Baseline Settings" #~ msgstr "Configuración de línea de base" #~ msgid "Time range" #~ msgstr "Rango horario" #, fuzzy #~ msgid "Deviation UP" #~ msgstr "Desviación hacia arriba" #, fuzzy #~ msgid "Deviation DOWN" #~ msgstr "Desviación hacia abajo" #~ msgid "Data Manipulation" #~ msgstr "Manipulación de datos" #~ msgid "Data Type" #~ msgstr "Tipo de datos" #~ msgid "Threshold CDEF" #~ msgstr "Umbral de CDEF" #~ msgid "Warning Notification List" #~ msgstr "Lista de notificación de advertencia" #~ msgid "Alert Notification List" #~ msgstr "Lista de notificación de alerta" #~ msgid "SNMP Notification - Event Category" #~ msgstr "Notificación SNMP - Categoría de evento" #~ msgid "Notify accounts" #~ msgstr "Notificar cuentas" #~ msgid "Alert Emails" #~ msgstr "Emails de alerta" #~ msgid "Warning Emails" #~ msgstr "Emails de advertencia" #~ msgid "Select Users(s)" #~ msgstr "Selecciona usuario(s)" #~ msgid "Users Selected" #~ msgstr "Usuarios seleccionados" #~ msgid "All Users Selected" #~ msgstr "Todos los usuarios seleccionados" #~ msgid "Log" #~ msgstr "Log" #~ msgid "Time:" #~ msgstr "Tiempo:" #~ msgid "Swaps:" #~ msgstr "Intercambios:" #~ msgid "Pages:" #~ msgstr "Páginas:" #, fuzzy #~| msgid "Login to Cacti" #~ msgid "Link to Graph in Cacti" #~ msgstr "Ingresar a Cacti" #~ msgid "Record Updated" #~ msgstr "Registro actualizado" #~ msgid "Baseline-LOW" #~ msgstr "Estándar-BAJO" #~ msgid "Baseline-HIGH" #~ msgstr "Estándar-ALTO" #~ msgid "Edit Threshold" #~ msgstr "Editar umbral" #~ msgid "Disable Threshold" #~ msgstr "Deshabilitar umbral" #~ msgid "Enable Threshold" #~ msgstr "Habilitar umbral" #~ msgid "View Graph" #~ msgstr "Ver gráfico" #~ msgid "View Threshold History" #~ msgstr "Ver el historial de umbrales" #~ msgid "No name set" #~ msgstr "Nombre no especificado" #~ msgid "Hover over icons for help" #~ msgstr "Pasa el cursor sobre los íconos para obtener ayuda" #~ msgid "A description for the Device" #~ msgstr "Una descripción para este dispositivo" #~ msgid "A Cacti unique identifier for the Device" #~ msgstr "Un identificador unico de Cacto para el dispositivo" #~ msgid "The number of Graphs for this Device" #~ msgstr "El numero de gráficos para este dispositivo" #~ msgid "The number of Data Sources for this Device" #~ msgstr "El numero de Data Sources para este dispositivo" #~ msgid "The status for this Device as of the last time it was polled" #~ msgstr "El estado de este dispositivo la ultima vez que se consultó" #~ msgid "" #~ "The last time Cacti found an issue with this Device. It can be higher " #~ "than the Uptime for the Device, if it was rebooted between Cacti polling " #~ "cycles" #~ msgstr "" #~ "La última vez que Cacti encontró un problema con este dispositivo. Puede " #~ "ser mayor que el Uptime del dispositivo, si se reinició entre los ciclos " #~ "de sondeo" #~ msgid "The official uptime of the Device as reported by SNMP" #~ msgstr "El uptime oficial del dispositivo reportado por SNMP" #~ msgid "The official hostname for this Device" #~ msgstr "El nombre de equipo oficial para este dispositivo" #~ msgid "Event Description" #~ msgstr "Descripción de evento" #~ msgid "Alert Value" #~ msgstr "Valor de alerta" #~ msgid "Measured Value" #~ msgstr "Unidad de medida" #~ msgid "Restoral Event" #~ msgstr "Evento de restauración" #~ msgid "No Threshold Logs Found" #~ msgstr "No se encontraron logs de umbrales" #~ msgid "Threshold Template Creation Wizard" #~ msgstr "Asistente de creación de la plantilla de umbral" #~ msgid "Please select a Data Template" #~ msgstr "Por favor selecciona una Plantilla de datos" #~ msgid "Please select a Data Source" #~ msgstr "Por favor selecciona un Data Source" #~ msgid "Please press 'Create' to create your Threshold Template" #~ msgstr "Presiona 'Crear' para crear la Plantilla de Umbral" #~ msgid "Data Template that you are using. (This cannot be changed)" #~ msgstr "Plantilla de datos que estas usando. (Esto no puede cambiarse)" #~ msgid "Data Field" #~ msgstr "Campo de datos" #, fuzzy #~ msgid "Baseline Monitoring" #~ msgstr "Estándar de monitoreo" #, fuzzy #~| msgid "%d Seconds" #~ msgid "%d Seconds (Average)" #~ msgstr "%d Segundos" #~ msgid "Import Threshold Templates" #~ msgstr "Importar Plantillas de Umbrales" #~ msgid "Imported" #~ msgstr "Importado" #~ msgid "Updated" #~ msgstr "Actualizado" #~ msgid "" #~ "Press 'Continue' after you have selected the Threshold Template to " #~ "utilize." #~ msgstr "" #~ "Presiona 'Continuar' luego de que hayas seleccionado la Plantilla de " #~ "Threshold a utilizar." #~ msgid "" #~ "There are no Threshold Templates associated with the following Graph." #~ msgstr "No hay Plantillas de Threshold asociadas con el siguiente Grafico." #~ msgid "Please select an action" #~ msgstr "Por favor selecciona una accion" #, fuzzy #~ msgid "Threshold Action" #~ msgstr "Acción de Threshold" #~ msgid "Create a Threshold Template" #~ msgstr "Crear una Plantilla de Threshold" #~ msgid "Create a new Threshold" #~ msgstr "Crear un nuevo Threshold" #~ msgid "Threshold Creation Wizard" #~ msgstr "Asistente de creación de Threshold" #~ msgid "Please select a Device" #~ msgstr "Por favor selecciona un dispositivo" #~ msgid "Please select a Graph" #~ msgstr "Por favor selecciona un Grafico" #~ msgid "Please press 'Create' to activate your Threshold" #~ msgstr "Por favor presiona 'Crear' para activar tu Threshold" #~ msgid "Checks" #~ msgstr "Controles" #, fuzzy #~| msgid "Cacti Report" #~ msgid "Cacti Master" #~ msgstr "Reporte de Cacti" #, fuzzy #~| msgid "Cacti Report" #~ msgid "Cacti Remote Server" #~ msgstr "Reporte de Cacti" #~ msgid "Web Service Checks" #~ msgstr "Comprobaciones de servicio web" #~ msgid "Connect" #~ msgstr "Conectar" #~ msgid "DNS" #~ msgstr "DNS" #~ msgid "HTTP Code" #~ msgstr "Código HTTP" #~ msgid "Redirect" #~ msgstr "Redirigir" #~ msgid "No Events in History" #~ msgstr "No hay eventos en historial" #, fuzzy #~ msgid "Auth" #~ msgstr "Auth" #~ msgid "Enable Site" #~ msgstr "Habilitar Sitio" #~ msgid "Disable Site" #~ msgstr "Deshabilitar Sitio" #~ msgid "View History" #~ msgstr "Ver historial" #, fuzzy #~ msgid "DNS: Server %s - A Record for %s" #~ msgstr "DNS: Servidor %s - Un registro para %s" #~ msgid "No Servers Found" #~ msgstr "No se encontraron servidores" #~ msgid "Webseer Site Management" #~ msgstr "Administración de sitios Webseer" #~ msgid "Query [edit: %s]" #~ msgstr "Consulta [editar: %s]" #~ msgid "Query [new]" #~ msgstr "Consulta [nueva]" #~ msgid "Service Check Name" #~ msgstr "Nombre de comprobación del servicio" #~ msgid "Enable Service Check" #~ msgstr "Habilitar comprobación de servicio" #~ msgid "Uncheck this box to disabled this url from being checked." #~ msgstr "" #~ "Desactiva esta casilla para deshabilitar esta URL de ser comprobada." #~ msgid "The URL to Monitor" #~ msgstr "La URL a monitorear" #~ msgid "Requires Authentication" #~ msgstr "Requiere autenticacion" #~ msgid "No Users Selected" #~ msgstr "No se seleccionaron usuarios" #~ msgid "Master" #~ msgstr "Maestro" #~ msgid "This Host" #~ msgstr "Este equipo" #, fuzzy #~ msgid "Webseer Server Management" #~ msgstr "Administración de servidor WebSeer" #~ msgid "Enable Server" #~ msgstr "Habilitar Servidor" #~ msgid "Master Server" #~ msgstr "Servidor maestro" #~ msgid "" #~ "Sets this server to the Master server. The Master server handles all " #~ "Email operations" #~ msgstr "" #~ "Establecer este servidor como servidor maestro. El servidor maestro " #~ "maneja todas las operaciones de correo" #~ msgid "Is this server the local server?" #~ msgstr "Es este servidor el servidor local?" #~ msgid "Display Name of this server" #~ msgstr "Mostrar el nombre de este servidor" #~ msgid "IP Address to connect to this server" #~ msgstr "Dirección IP para conectar a este servidor" #~ msgid "Location of this server" #~ msgstr "Ubicación de este servidor" #~ msgid "This is the URL to connect to remote.php on this server." #~ msgstr "Esta es la URL para conectarse a remote.php en este servidor." #~ msgid "Queries" #~ msgstr "Consultas" #~ msgid "WMI Management" #~ msgstr "Administración de WMI" #~ msgid "WMI Data" #~ msgstr "Datos WMI" #~ msgid "WMI Data Query" #~ msgstr "Consulta de datos WMI" #~ msgid "WMI Queries" #~ msgstr "Consultas WMI" #~ msgid "WMI Autenication" #~ msgstr "Autenicatión WMI" #~ msgid "WMI Autenication -> Edit" #~ msgstr "Autenicatión WMI-> editar" #~ msgid "WMI Queries -> Edit" #~ msgstr "Consultas WMI-> editar" #~ msgid "WMI Tools" #~ msgstr "Herramientas WMI" #~ msgid "WMI Account Options" #~ msgstr "Opciones de cuentas WMI" #~ msgid "WMI Authentication Account" #~ msgstr "Cuenta de autenticación de WMI" #~ msgid "Choose an account to use when Authenticating via WMI" #~ msgstr "Elija una cuenta para utilizar cuando autentique via WMI" #, fuzzy #~| msgid "SNMP Settings" #~ msgid "WMI Settings" #~ msgstr "Opciones SNMP" #, fuzzy #~| msgid "Auto Create Thresholds" #~ msgid "Auto Create WMI Queries" #~ msgstr "Auto crear Thresholds" #, fuzzy #~| msgid "Associated Data Queries" #~ msgid "Associated WMI Queries" #~ msgstr "Consultas de datos de asociadas" #, fuzzy #~| msgid "WMI Queries" #~ msgid "WMI Query Exists" #~ msgstr "Consultas WMI" #, fuzzy #~| msgid "WMI Queries -> Edit" #~ msgid "WMI Query Does Not Exist" #~ msgstr "Consultas WMI-> editar" #, fuzzy #~| msgid "No Associated Data Queries." #~ msgid "No Associated WMI Queries." #~ msgstr "No hay consultas de datos asociadas." #, fuzzy #~| msgid "Add Data Query" #~ msgid "Add WMI Query" #~ msgstr "Agregar consulta de datos" #, fuzzy #~| msgid "Add Data Query to Device Template" #~ msgid "Add WMI Query to Device Template" #~ msgstr "Agregar consulta de datos a plantilla de dispositivo" #, fuzzy #~ msgid "" #~ "Click 'Continue' to delete the following WMI Queries will be " #~ "disassociated from the Device Template." #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar la siguiente plantilla de " #~ "Threshold, sera desasociada de la plantilla de dispositivo." #, fuzzy #~| msgid "Data Query Name: %s" #~ msgid "WMI Query Name: %s" #~ msgstr "Nombre de la consulta de datos: %s" #, fuzzy #~| msgid "Delete WMI Query" #~ msgid "Remove WMI Query" #~ msgstr "Borrar consulta WMI" #, fuzzy #~ msgid "" #~ "The username that will be used for authentication. Please also include " #~ "the domain if necessary." #~ msgstr "" #~ "El nombre de usuario que sera usado para autenticacion. Tambien incluya " #~ "el dominio si es necesario." #~ msgid "Press 'Continue' to delete the following accounts." #~ msgstr "Presione 'Continuar' para eliminar las siguientes cuentas." #~ msgid "You must select at least one account." #~ msgstr "Debe seleccionar al menos una cuenta." #~ msgid "Account [edit: %s]" #~ msgstr "Cuenta [editar: %s]" #~ msgid "Account [new]" #~ msgstr "Cuenta [nuevo]" #~ msgid "WMI Accounts" #~ msgstr "Cuentas WMI" #~ msgid "No Accounts Found" #~ msgstr "No se encontraron cuentas" #~ msgid "Give this query a meaningful name that will be displayed." #~ msgstr "Dar a esta consulta un nombre significativo." #~ msgid "" #~ "When this WMI Query is added to a Device, this is the Frequency of Data " #~ "Collection that will be used." #~ msgstr "" #~ "Cuando esta consulta WMI es agregada a un dispositivo, esta es la " #~ "frecuencia de recolección de datos que sera usada." #~ msgid "The Query to execute for gathering WMI data from the device." #~ msgstr "" #~ "La consulta a ejecutar para la recolección de datos WMI desde el equipo." #~ msgid "Click 'Continue' to Delete the following WMI Queries." #~ msgstr "" #~ "Haga click en 'Continuar' para eliminar las siguientes consultas de WMI." #~ msgid "You must select at least one WMI Query." #~ msgstr "Debe seleccionar al menos una consulta de WMI." #~ msgid "Delete WMI Query" #~ msgstr "Borrar consulta WMI" #~ msgid "WQL Query" #~ msgstr "Consulta WQL" #~ msgid "Command" #~ msgstr "Comando" #~ msgid "Run" #~ msgstr "Ejecutar" #~ msgid "Run the WMI Query against the Device" #~ msgstr "Ejecute la consulta WMI en este dispositivo" #, fuzzy #~ msgid "Clear the results panel." #~ msgstr "Borrar el panel de resultados." #~ msgid "Pick from a list of common queries." #~ msgstr "Elige de una lista de consultas comunes." #~ msgid "Get some help on setting up WMI" #~ msgstr "Obtener ayuda sobre cómo configurar WMI" #~ msgid "Help" #~ msgstr "Ayuda" #~ msgid "Query Results" #~ msgstr "Resultados de la consulta" #~ msgid "Common Queries (Click to Select)" #~ msgstr "Consultas comunes (Click para seleccionar)" #~ msgid "WMI Setup Assistance" #~ msgstr "Asistente de configuración WMI" #~ msgid "ERROR: You must provide a host, username, password and query" #~ msgstr "ERROR: debe proporcionar un equipo, usuario, contraseña y consulta" #~ msgid "WMI Query Results for Device: %s, Class: %s, Columns: %s, Rows: %s" #~ msgstr "" #~ "Resultados de consulta WMI para el dispositivo: %s, clase: %s, columnas: " #~ "%s, filas: %s" #, fuzzy #~ msgid "Showing columns and first one or two rows of data." #~ msgstr "Mostrando columnas y primera o segunda filas de datos." #~ msgid "OK: FILE FOUND" #~ msgstr "OK: ARCHIVO ENCONTRADO" #~ msgid "ERROR: IS DIR" #~ msgstr "ERROR: ES UN DIR" #~ msgid "ERROR: FILE NOT FOUND" #~ msgstr "ERROR: ARCHIVO NO ENCONTRADO" #~ msgid "This is the email address that syslog alerts will appear from." #~ msgstr "" #~ "Esta es la dirección de correo con la que las alertas de Syslog van a " #~ "aparecer." #~ msgid "From Display Name" #~ msgstr "Mostrar nombre de remitente" #~ msgid "This is the display name that syslog alerts will appear from." #~ msgstr "Este es nombre con el que las alertas de Syslog van a aparecer." #~ msgid "Http Code" #~ msgstr "Codigo HTTP" cacti-1.1.38/locales/po/russian_russia.po0000664000175000017500000145305513264740213017744 0ustar tromantromanmsgid "" msgstr "" "Project-Id-Version: Cacti Russian Language File\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-05-20 13:01+0200\n" "PO-Revision-Date: 2017-05-20 13:01+0200\n" "Last-Translator: Patrick Rademaker\n" "Language-Team: KPbIC \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Poedit 2.0.2\n" #: ../about.php:29 ../lib/functions.php:2424 msgid "About Cacti" msgstr "О Cacti" #: ../about.php:35 ../index.php:73 ../logout.php:77 #, php-format msgid "Version %s" msgstr "ВерÑÐ¸Ñ %s" #: ../about.php:42 msgid "" "Cacti is designed to be a complete graphing solution based on the RRDtool's " "framework. Its goal is to make a network administrator's job easier by " "taking care of all the necessary details necessary to create meaningful " "graphs." msgstr "" "Cacti - Ñто полнофункциональное графичеÑкое решение на оÑнове RRDtool Его " "цель - упроÑтить работу админиÑтратора Ñети, забота о вÑех необходимых " "деталÑÑ…, И графики" #: ../about.php:44 #, php-format msgid "" "Please see the official %sCacti website%s for information, support, and " "updates." msgstr "" "ПожалуйÑта поÑетите оффициальный Ñайт %sCacti website%s, там вы найдёте " "необходимую информацию, поддержку, и Ð¾Ð¿Ð¾Ð²ÐµÑ‰ÐµÐ½Ð¸Ñ Ð¾Ð± обновлениÑÑ…" #: ../about.php:46 msgid "Cacti Developers" msgstr "Разработчики Cacti" #: ../about.php:58 msgid "Thanks" msgstr "БлагодарноÑти" #: ../about.php:61 #, php-format msgid "" "A very special thanks to %sTobi Oetiker%s, the creator of %sRRDtool%s and " "the very popular %sMRTG%s." msgstr "" "ÐžÑ‚Ð´ÐµÐ»ÑŒÐ½Ð°Ñ Ð±Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€Ð½Ð¾Ñть %sTobi Oetiker%s, Ñоздателю %sRRDtool%s и очень " "популÑрной библиотеки %sMRTG%s." #: ../about.php:64 msgid "The users of Cacti" msgstr "Пользователи Cacti" #: ../about.php:65 msgid "" "Especially anyone who has taken the time to create an issue report, or " "otherwise help fix a Cacti related problems. Also to anyone who has " "contributed to supporting Cacti." msgstr "" "ОÑобенно тем, кто нашел времÑ, чтобы Ñоздать отчет о проблеме, или как-то " "иначе помог иÑправить проблемы, ÑвÑзанные Ñ ÐšÐ°ÐºÑ‚ÑƒÑом. Также вÑем, кто Ð²Ð½ÐµÑ " "вклад в поддержку КактуÑа." #: ../about.php:70 msgid "License" msgstr "Лицензионное Ñоглашение" #: ../about.php:72 msgid "Cacti is licensed under the GNU GPL:" msgstr "Cacti лицензирован под GNU GPL:" #: ../about.php:74 msgid "" "This program is free software; you can redistribute it and/or modify it " "under the terms of the GNU General Public License as published by the Free " "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" "Это приложение ÑвлÑетÑÑ Ñвободным программным обеÑпечением; Ð’Ñ‹ можете " "раÑпроÑтранÑть его и/или изменÑть в ÑоответÑтвии Ñ ÑƒÑловиÑми GNU General " "Public License, опубликованной Free Software Foundation; Либо 2ой верÑии " "лицензии (по вашему выбору), любой более поздней верÑии." #: ../about.php:76 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" "Эта программа раÑпроÑтранÑетÑÑ Ð² надежде, что она будет полезна, но БЕЗ " "КÐКИХ-ЛИБО ГÐРÐÐТИЙ; Даже без подразумеваемых гарантий КОММЕРЧЕСКОЙ ЦЕÐÐОСТИ " "или ПРИГОДÐОСТИ ДЛЯ ОПРЕДЕЛЕÐÐОЙ ЦЕЛИ. Ð”Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð¹ " "информации Ñм. GNU General Public License." #: ../aggregate_graphs.php:40 ../aggregate_templates.php:29 #: ../automation_graph_rules.php:32 ../automation_networks.php:31 #: ../automation_snmp.php:29 ../automation_snmp.php:727 #: ../automation_templates.php:29 ../automation_tree_rules.php:32 #: ../cdef.php:29 ../cdef.php:619 ../color.php:28 ../color_templates.php:28 #: ../color_templates.php:122 ../data_input.php:29 ../data_input.php:490 #: ../data_input.php:528 ../data_queries.php:30 ../data_queries.php:638 #: ../data_queries.php:736 ../data_queries.php:950 #: ../data_source_profiles.php:29 ../data_source_profiles.php:513 #: ../data_sources.php:35 ../data_sources.php:942 ../data_templates.php:33 #: ../data_templates.php:571 ../gprint_presets.php:28 ../graph_templates.php:33 #: ../graph_templates.php:440 ../graphs.php:44 ../host.php:38 #: ../host_templates.php:30 ../host_templates.php:485 ../host_templates.php:542 #: ../include/global_arrays.php:1234 ../lib/api_automation.php:1246 #: ../lib/api_automation.php:1309 ../lib/api_automation.php:1373 #: ../lib/html.php:970 ../lib/html_form.php:1096 ../lib/html_reports.php:1291 #: ../links.php:28 ../managers.php:28 ../pollers.php:29 ../sites.php:28 #: ../tree.php:1051 ../tree.php:1204 ../tree.php:1264 ../user_admin.php:28 #: ../user_domains.php:29 ../user_group_admin.php:30 ../vdef.php:29 msgid "Delete" msgstr "Удалить" #: ../aggregate_graphs.php:41 msgid "Migrate Aggregate to use a Template" msgstr "" #: ../aggregate_graphs.php:42 msgid "Create New Aggregate from Aggregates" msgstr "" #: ../aggregate_graphs.php:46 msgid "Associate with Aggregate" msgstr "" #: ../aggregate_graphs.php:47 msgid "Disassociate with Aggregate" msgstr "" #: ../aggregate_graphs.php:80 ../graphs.php:128 #, php-format msgid "Place on a Tree (%s)" msgstr "ПомеÑтить в дерево (%s)" #: ../aggregate_graphs.php:318 msgid "Click 'Continue' to delete the following Aggregate Graph(s)." msgstr "" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 ../automation_devices.php:199 #: ../automation_graph_rules.php:284 ../automation_networks.php:358 #: ../automation_snmp.php:253 ../automation_snmp.php:356 #: ../automation_templates.php:195 ../automation_tree_rules.php:286 #: ../cdef.php:282 ../cdef.php:292 ../cdef.php:344 ../color.php:192 #: ../color_templates.php:232 ../color_templates.php:242 #: ../color_templates_items.php:280 ../data_input.php:218 ../data_input.php:266 #: ../data_queries.php:322 ../data_queries.php:425 #: ../data_source_profiles.php:266 ../data_source_profiles.php:276 #: ../data_source_profiles.php:324 ../data_sources.php:468 #: ../data_sources.php:478 ../data_sources.php:487 ../data_sources.php:496 #: ../data_sources.php:505 ../data_sources.php:511 ../data_templates.php:358 #: ../data_templates.php:368 ../data_templates.php:384 #: ../gprint_presets.php:153 ../graph_templates.php:317 #: ../graph_templates.php:327 ../graph_templates.php:347 #: ../graph_templates.php:356 ../graphs.php:818 ../graphs.php:845 #: ../graphs.php:856 ../graphs.php:867 ../graphs.php:882 ../graphs.php:905 #: ../graphs.php:1029 ../graphs.php:1072 ../graphs.php:1094 ../graphs.php:1102 #: ../graphs.php:1535 ../host.php:381 ../host.php:390 ../host.php:432 #: ../host.php:441 ../host.php:450 ../host.php:464 ../host.php:478 #: ../host.php:487 ../host.php:495 ../host_templates.php:261 #: ../host_templates.php:275 ../host_templates.php:286 #: ../host_templates.php:334 ../host_templates.php:394 #: ../lib/clog_webapi.php:129 ../lib/html_form.php:1095 #: ../lib/html_form.php:1107 ../lib/html_form.php:1118 #: ../lib/html_utility.php:198 ../links.php:196 ../links.php:205 #: ../links.php:214 ../managers.php:1012 ../managers.php:1069 #: ../pollers.php:288 ../pollers.php:297 ../pollers.php:306 ../pollers.php:315 #: ../sites.php:280 ../tree.php:490 ../tree.php:499 ../tree.php:508 #: ../user_admin.php:350 ../user_admin.php:390 ../user_admin.php:401 #: ../user_admin.php:412 ../user_admin.php:434 ../user_domains.php:227 #: ../user_domains.php:236 ../user_domains.php:245 ../user_domains.php:254 #: ../user_group_admin.php:446 ../user_group_admin.php:465 #: ../user_group_admin.php:476 ../user_group_admin.php:487 ../vdef.php:270 #: ../vdef.php:280 ../vdef.php:332 msgid "Cancel" msgstr "Отмена" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 ../automation_devices.php:199 #: ../automation_graph_rules.php:284 ../automation_networks.php:350 #: ../automation_snmp.php:228 ../automation_snmp.php:357 #: ../automation_templates.php:195 ../automation_tree_rules.php:286 #: ../cdef.php:282 ../cdef.php:292 ../cdef.php:345 ../color.php:192 #: ../color_templates.php:232 ../color_templates.php:242 #: ../color_templates_items.php:281 ../data_input.php:218 ../data_input.php:267 #: ../data_queries.php:322 ../data_queries.php:426 #: ../data_source_profiles.php:266 ../data_source_profiles.php:276 #: ../data_source_profiles.php:325 ../data_sources.php:468 #: ../data_sources.php:478 ../data_sources.php:487 ../data_sources.php:496 #: ../data_sources.php:505 ../data_sources.php:511 ../data_templates.php:358 #: ../data_templates.php:368 ../data_templates.php:384 #: ../gprint_presets.php:153 ../graph_templates.php:317 #: ../graph_templates.php:327 ../graph_templates.php:347 #: ../graph_templates.php:356 ../graphs.php:818 ../graphs.php:845 #: ../graphs.php:856 ../graphs.php:867 ../graphs.php:882 ../graphs.php:905 #: ../graphs.php:1029 ../graphs.php:1072 ../graphs.php:1094 ../graphs.php:1102 #: ../host.php:381 ../host.php:390 ../host.php:432 ../host.php:441 #: ../host.php:450 ../host.php:464 ../host.php:478 ../host.php:487 #: ../host.php:495 ../host_templates.php:261 ../host_templates.php:275 #: ../host_templates.php:286 ../host_templates.php:335 #: ../host_templates.php:395 ../lib/clog_webapi.php:130 #: ../lib/html_reports.php:643 ../lib/html_utility.php:198 ../links.php:196 #: ../links.php:205 ../links.php:214 ../managers.php:1012 ../managers.php:1069 #: ../pollers.php:288 ../pollers.php:297 ../pollers.php:306 ../pollers.php:315 #: ../sites.php:280 ../tree.php:490 ../tree.php:499 ../tree.php:508 #: ../user_admin.php:350 ../user_admin.php:390 ../user_admin.php:401 #: ../user_admin.php:412 ../user_admin.php:434 ../user_domains.php:227 #: ../user_domains.php:236 ../user_domains.php:245 ../user_domains.php:254 #: ../user_group_admin.php:446 ../user_group_admin.php:465 #: ../user_group_admin.php:476 ../user_group_admin.php:487 ../vdef.php:270 #: ../vdef.php:280 ../vdef.php:333 msgid "Continue" msgstr "Продолжить" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../graphs.php:818 msgid "Delete Graph(s)" msgstr "Удалить график(и)" #: ../aggregate_graphs.php:349 msgid "" "The selected Aggregate Graphs represent elements from more than one Graph " "Template." msgstr "" #: ../aggregate_graphs.php:350 msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, they must only be using one Graph Template. Please press " "'Return' and then select only Aggregate Graph that utilize the same Graph " "Template." msgstr "" #: ../aggregate_graphs.php:355 ../aggregate_graphs.php:395 #: ../aggregate_graphs.php:442 ../aggregate_templates.php:316 #: ../auth_changepassword.php:308 ../automation_devices.php:203 #: ../automation_graph_rules.php:282 ../automation_networks.php:359 #: ../automation_snmp.php:253 ../automation_templates.php:199 #: ../automation_tree_rules.php:284 ../cdef.php:296 ../color.php:196 #: ../color_templates.php:246 ../data_input.php:221 ../data_queries.php:325 #: ../data_source_profiles.php:280 ../data_sources.php:515 #: ../data_templates.php:388 ../gprint_presets.php:157 #: ../graph_templates.php:360 ../graphs.php:1031 ../graphs.php:1081 #: ../graphs.php:1084 ../graphs.php:1107 ../host.php:499 #: ../host_templates.php:290 ../include/auth.php:115 ../lib/html_form.php:1116 #: ../lib/html_utility.php:196 ../links.php:218 ../managers.php:1072 #: ../permission_denied.php:30 ../permission_denied.php:32 ../pollers.php:319 #: ../sites.php:284 ../tree.php:512 ../user_admin.php:439 #: ../user_domains.php:258 ../user_group_admin.php:491 ../vdef.php:284 msgid "Return" msgstr "Вернуть" #: ../aggregate_graphs.php:368 msgid "" "Click 'Continue' and the following Aggregate Graph(s) will be migrated to " "use the Aggregate Template that you choose below." msgstr "" #: ../aggregate_graphs.php:374 msgid "Aggregate Template:" msgstr "" #: ../aggregate_graphs.php:388 msgid "" "There are currently no Aggregate Templates defined for the selected Legacy " "Aggregates." msgstr "" #: ../aggregate_graphs.php:389 #, php-format msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, first create an Aggregate Template for the Graph Template '%s'." msgstr "" #: ../aggregate_graphs.php:390 msgid "Please press 'Return' to continue." msgstr "ПожалуйÑта нажмите 'Вернуть' Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð´Ð¾Ð»Ð¶ÐµÐ½Ð¸Ñ" #: ../aggregate_graphs.php:401 msgid "" "Click 'Continue' to combine the following Aggregate Graph(s) into a single " "Aggregate Graph." msgstr "" #: ../aggregate_graphs.php:406 msgid "Aggregate Name:" msgstr "" #: ../aggregate_graphs.php:407 msgid "New Aggregate" msgstr "" #: ../aggregate_graphs.php:413 msgid "" "Click 'Continue' to associate the following Graph(s) with the Aggregate " "Graph." msgstr "" #: ../aggregate_graphs.php:418 msgid "Associate Graph(s)" msgstr "" #: ../aggregate_graphs.php:422 msgid "" "Click 'Continue' to disassociate the following Graph(s) from the Aggregate." msgstr "" #: ../aggregate_graphs.php:427 msgid "Dis-Associate Graph(s)" msgstr "" #: ../aggregate_graphs.php:431 msgid "" "Click 'Continue' to place the following Aggregate Graph(s) under the Tree " "Branch." msgstr "" #: ../aggregate_graphs.php:433 ../host.php:470 msgid "Destination Branch:" msgstr "Ветка назначениÑ" #: ../aggregate_graphs.php:438 ../graphs.php:882 msgid "Place Graph(s) on Tree" msgstr "ПомеÑтить график(и) на дерево" #: ../aggregate_graphs.php:441 msgid "You must select at least one graph." msgstr "Ð’Ñ‹ должны выбрать хотÑбы один график" #: ../aggregate_graphs.php:476 ../graphs.php:1140 msgid "Graph Items [new]" msgstr "Графики [новый]" #: ../aggregate_graphs.php:492 ../graphs.php:1160 #, php-format msgid "Graph Items [edit: %s]" msgstr "Графики [редактировать %s]" #: ../aggregate_graphs.php:560 ../aggregate_graphs.php:563 #: ../lib/html_reports.php:1060 ../lib/html_reports.php:1065 #: ../lib/html_reports.php:1104 ../utilities.php:1699 msgid "Details" msgstr "Детали" #: ../aggregate_graphs.php:560 ../lib/html_reports.php:1060 #: ../lib/html_reports.php:1151 ../utilities.php:306 msgid "Items" msgstr "Элементы" #: ../aggregate_graphs.php:560 ../aggregate_graphs.php:563 ../lib/html.php:1559 #: ../lib/html_reports.php:1060 msgid "Preview" msgstr "ПредпроÑмотр" #: ../aggregate_graphs.php:607 msgid "Turn Off Graph Debug Mode" msgstr "Отключить режим отладки Ð´Ð»Ñ Ð³Ñ€Ð°Ñ„Ð¸ÐºÐ¾Ð²" #: ../aggregate_graphs.php:609 msgid "Turn On Graph Debug Mode" msgstr "Включить режим отладки Ð´Ð»Ñ Ð³Ñ€Ð°Ñ„Ð¸ÐºÐ¾Ð²" #: ../aggregate_graphs.php:615 ../aggregate_graphs.php:880 msgid "Show Item Details" msgstr "Показать подробноÑти" #: ../aggregate_graphs.php:621 #, php-format msgid "Aggregate Preview [%s]" msgstr "" #: ../aggregate_graphs.php:633 ../graph.php:431 ../graphs.php:1398 msgid "RRDTool Command:" msgstr "" #: ../aggregate_graphs.php:635 ../graph.php:434 ../graphs.php:1400 msgid "RRDTool Says:" msgstr "" #: ../aggregate_graphs.php:660 #, php-format msgid "Aggregate Graph %s" msgstr "" #: ../aggregate_graphs.php:798 ../lib/api_aggregate.php:1221 msgid "Total" msgstr "" #: ../aggregate_graphs.php:802 #, fuzzy msgid "All Items" msgstr "Элементы" #: ../aggregate_graphs.php:825 ../graphs.php:1414 ../lib/api_aggregate.php:1367 msgid "Graph Configuration" msgstr "ÐаÑтройки графика" #: ../aggregate_graphs.php:875 ../automation_graph_rules.php:513 #: ../automation_graph_rules.php:528 ../automation_graph_rules.php:544 #: ../automation_tree_rules.php:379 ../automation_tree_rules.php:529 msgid "Show" msgstr "Показать" #: ../aggregate_graphs.php:877 msgid "Hide Item Details" msgstr "Скрыть подробноÑти" #: ../aggregate_graphs.php:998 msgid "Matching Graphs" msgstr "СопоÑтавление графиков" #: ../aggregate_graphs.php:1007 ../aggregate_graphs.php:1326 #: ../aggregate_templates.php:538 ../automation_devices.php:448 #: ../automation_graph_rules.php:701 ../automation_networks.php:1061 #: ../automation_networks.php:1082 ../automation_snmp.php:828 #: ../automation_templates.php:412 ../automation_tree_rules.php:715 #: ../cdef.php:722 ../color.php:529 ../color_templates.php:439 #: ../data_input.php:619 ../data_queries.php:1048 #: ../data_source_profiles.php:719 ../data_sources.php:1251 #: ../data_templates.php:754 ../gprint_presets.php:262 #: ../graph_templates.php:628 ../graph_view.php:517 ../graph_view.php:818 #: ../graphs.php:1687 ../graphs_new.php:548 ../host.php:1375 #: ../host_templates.php:700 ../lib/api_automation.php:133 #: ../lib/api_automation.php:460 ../lib/api_automation.php:683 #: ../lib/api_automation.php:988 ../lib/clog_webapi.php:380 #: ../lib/html_filter.php:63 ../lib/html_graph.php:206 #: ../lib/html_graph.php:432 ../lib/html_reports.php:1378 #: ../lib/html_tree.php:121 ../lib/html_tree.php:605 ../lib/html_tree.php:879 #: ../links.php:309 ../managers.php:150 ../managers.php:533 ../managers.php:724 #: ../plugins.php:276 ../pollers.php:517 ../rrdcleaner.php:475 #: ../settings.php:204 ../settings.php:221 ../settings.php:267 ../sites.php:387 #: ../tree.php:633 ../tree.php:668 ../tree.php:1485 ../user_admin.php:2193 #: ../user_admin.php:2531 ../user_admin.php:2640 ../user_admin.php:2728 #: ../user_admin.php:2833 ../user_admin.php:2920 ../user_admin.php:3007 #: ../user_domains.php:621 ../user_group_admin.php:1806 #: ../user_group_admin.php:2133 ../user_group_admin.php:2243 #: ../user_group_admin.php:2348 ../user_group_admin.php:2435 #: ../user_group_admin.php:2522 ../utilities.php:689 ../utilities.php:1045 #: ../utilities.php:1282 ../utilities.php:1594 ../utilities.php:2257 #: ../utilities.php:2510 ../vdef.php:659 msgid "Search" msgstr "Ðайти" #: ../aggregate_graphs.php:1013 ../aggregate_graphs.php:1111 #: ../aggregate_graphs.php:1354 ../color_templates.php:549 #: ../graph_view.php:395 ../graph_view.php:556 ../graphs.php:1693 #: ../host.php:1501 ../include/global_arrays.php:686 #: ../include/global_arrays.php:865 ../lib/api_automation.php:274 #: ../lib/functions.php:1856 ../lib/html.php:1308 ../lib/html.php:1310 #: ../lib/html.php:1383 ../lib/html_graph.php:212 ../lib/html_tree.php:658 #: ../lib/html_tree.php:1076 ../tree.php:1568 ../user_admin.php:998 #: ../user_admin.php:1242 ../user_admin.php:2559 ../user_group_admin.php:813 #: ../user_group_admin.php:966 ../user_group_admin.php:2161 #: ../utilities.php:268 msgid "Graphs" msgstr "Графики" #: ../aggregate_graphs.php:1017 ../aggregate_graphs.php:1358 #: ../aggregate_templates.php:554 ../automation_devices.php:533 #: ../automation_graph_rules.php:743 ../automation_networks.php:1071 #: ../automation_snmp.php:838 ../automation_templates.php:422 #: ../automation_tree_rules.php:735 ../cdef.php:732 ../color.php:539 #: ../color_templates.php:453 ../data_input.php:629 ../data_queries.php:1058 #: ../data_source_profiles.php:729 ../data_source_profiles.php:848 #: ../data_sources.php:1287 ../data_templates.php:780 ../gprint_presets.php:272 #: ../graph_templates.php:638 ../graph_view.php:560 ../graphs.php:1697 #: ../graphs_new.php:530 ../host.php:1400 ../host_templates.php:710 #: ../include/global_form.php:79 ../lib/api_automation.php:176 #: ../lib/api_automation.php:470 ../lib/api_automation.php:693 #: ../lib/api_automation.php:1031 ../lib/html_reports.php:1398 ../links.php:319 #: ../managers.php:160 ../managers.php:543 ../plugins.php:299 #: ../pollers.php:527 ../rrdcleaner.php:501 ../sites.php:397 ../tree.php:1495 #: ../user_admin.php:2203 ../user_admin.php:2563 ../user_admin.php:2650 #: ../user_admin.php:2756 ../user_admin.php:2843 ../user_admin.php:2930 #: ../user_admin.php:3017 ../user_domains.php:32 ../user_domains.php:631 #: ../user_domains.php:716 ../user_group_admin.php:1816 #: ../user_group_admin.php:2165 ../user_group_admin.php:2271 #: ../user_group_admin.php:2358 ../user_group_admin.php:2445 #: ../user_group_admin.php:2532 ../utilities.php:665 ../utilities.php:1326 #: ../utilities.php:1615 ../utilities.php:2282 ../utilities.php:2546 #: ../vdef.php:669 msgid "Default" msgstr "Стандартно" #: ../aggregate_graphs.php:1031 msgid "Part of Aggregate" msgstr "ЧаÑть ÑовокупноÑти" #: ../aggregate_graphs.php:1034 ../aggregate_graphs.php:1369 #: ../aggregate_templates.php:574 ../automation_devices.php:468 #: ../automation_graph_rules.php:754 ../automation_networks.php:1082 #: ../automation_snmp.php:849 ../automation_templates.php:433 #: ../automation_tree_rules.php:746 ../cdef.php:749 ../color.php:562 #: ../color_templates.php:472 ../data_input.php:640 ../data_queries.php:1069 #: ../data_source_profiles.php:746 ../data_sources.php:1241 #: ../data_templates.php:797 ../gprint_presets.php:289 #: ../graph_templates.php:655 ../graph_view.php:571 ../graphs.php:1677 #: ../graphs_new.php:554 ../host.php:1365 ../host_templates.php:727 #: ../lib/api_automation.php:187 ../lib/api_automation.php:452 #: ../lib/api_automation.php:704 ../lib/api_automation.php:1042 #: ../lib/clog_webapi.php:340 ../lib/html.php:1154 ../lib/html_filter.php:81 #: ../lib/html_graph.php:190 ../lib/html_reports.php:1408 #: ../lib/html_tree.php:642 ../links.php:328 ../managers.php:171 #: ../managers.php:554 ../managers.php:743 ../plugins.php:310 #: ../pollers.php:538 ../sites.php:408 ../tree.php:1506 ../user_admin.php:2214 #: ../user_admin.php:2580 ../user_admin.php:2667 ../user_admin.php:2773 #: ../user_admin.php:2860 ../user_admin.php:2947 ../user_admin.php:3034 msgid "Go" msgstr "Выполнить" #: ../aggregate_graphs.php:1034 ../aggregate_graphs.php:1369 #: ../automation_devices.php:468 ../automation_snmp.php:849 #: ../automation_templates.php:433 ../cdef.php:749 ../color.php:562 #: ../data_input.php:640 ../data_queries.php:1069 #: ../data_source_profiles.php:746 ../data_sources.php:1241 #: ../data_templates.php:797 ../gprint_presets.php:289 #: ../graph_templates.php:655 ../graph_view.php:571 ../graphs.php:1677 #: ../graphs_new.php:554 ../host.php:1365 ../host_templates.php:727 #: ../lib/html_graph.php:190 ../managers.php:171 ../managers.php:554 #: ../managers.php:743 ../plugins.php:310 ../pollers.php:538 ../sites.php:408 #: ../tree.php:1506 ../user_admin.php:2214 ../user_admin.php:2580 #: ../user_admin.php:2667 ../user_admin.php:2773 ../user_admin.php:2860 #: ../user_admin.php:2947 ../user_admin.php:3034 ../user_domains.php:642 #: ../user_group_admin.php:1827 ../user_group_admin.php:2182 #: ../user_group_admin.php:2288 ../user_group_admin.php:2375 #: ../user_group_admin.php:2462 ../user_group_admin.php:2549 #: ../utilities.php:676 ../utilities.php:1009 ../utilities.php:1337 #: ../utilities.php:1584 ../utilities.php:2293 ../utilities.php:2557 msgid "Set/Refresh Filters" msgstr "УÑтановить/Обновить фильтры" #: ../aggregate_graphs.php:1037 ../aggregate_graphs.php:1372 #: ../aggregate_templates.php:577 ../automation_devices.php:471 #: ../automation_graph_rules.php:757 ../automation_networks.php:1085 #: ../automation_snmp.php:852 ../automation_templates.php:436 #: ../automation_tree_rules.php:749 ../cdef.php:752 ../color.php:565 #: ../color_templates.php:475 ../data_input.php:643 ../data_queries.php:1072 #: ../data_source_profiles.php:749 ../data_sources.php:1244 #: ../data_templates.php:800 ../gprint_presets.php:292 #: ../graph_templates.php:658 ../graph_view.php:574 ../graphs.php:1680 #: ../graphs_new.php:555 ../host.php:1368 ../host_templates.php:730 #: ../lib/api_automation.php:190 ../lib/api_automation.php:455 #: ../lib/api_automation.php:707 ../lib/api_automation.php:1045 #: ../lib/clog_webapi.php:343 ../lib/html_filter.php:86 #: ../lib/html_graph.php:193 ../lib/html_graph.php:322 #: ../lib/html_reports.php:1411 ../lib/html_tree.php:645 #: ../lib/html_tree.php:768 ../links.php:331 ../managers.php:174 #: ../managers.php:557 ../managers.php:746 ../plugins.php:313 #: ../pollers.php:541 ../sites.php:411 ../tree.php:1509 ../user_admin.php:2217 #: ../user_admin.php:2583 ../user_admin.php:2670 ../user_admin.php:2776 #: ../user_admin.php:2863 ../user_admin.php:2950 ../user_admin.php:3037 #: ../user_domains.php:645 msgid "Clear" msgstr "ОчиÑтить" #: ../aggregate_graphs.php:1037 ../aggregate_graphs.php:1372 #: ../automation_snmp.php:852 ../automation_templates.php:436 ../cdef.php:752 #: ../color.php:565 ../data_input.php:643 ../data_queries.php:1072 #: ../data_source_profiles.php:749 ../data_sources.php:1244 #: ../data_templates.php:800 ../gprint_presets.php:292 #: ../graph_templates.php:658 ../graph_view.php:574 ../graphs.php:1680 #: ../graphs_new.php:555 ../host.php:1368 ../host_templates.php:730 #: ../lib/html_graph.php:193 ../lib/html_tree.php:645 ../managers.php:174 #: ../managers.php:557 ../managers.php:746 ../plugins.php:313 #: ../pollers.php:541 ../sites.php:411 ../tree.php:1509 ../user_admin.php:2217 #: ../user_admin.php:2583 ../user_admin.php:2670 ../user_admin.php:2776 #: ../user_admin.php:2863 ../user_admin.php:2950 ../user_admin.php:3037 #: ../user_domains.php:645 ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 ../user_group_admin.php:2465 #: ../user_group_admin.php:2552 ../utilities.php:679 ../utilities.php:1012 #: ../utilities.php:1340 ../utilities.php:1587 ../utilities.php:2296 #: ../utilities.php:2558 msgid "Clear Filters" msgstr "ОчиÑтить фильтры" #: ../aggregate_graphs.php:1116 ../aggregate_graphs.php:1435 #: ../graph_view.php:619 ../graphs.php:1058 ../lib/api_automation.php:561 #: ../user_admin.php:1006 ../user_group_admin.php:821 msgid "Graph Title" msgstr "Ðазвание Графика" #: ../aggregate_graphs.php:1117 ../aggregate_graphs.php:1436 #: ../automation_graph_rules.php:856 ../automation_tree_rules.php:843 #: ../data_queries.php:1153 ../data_sources.php:1406 ../data_templates.php:910 #: ../graph_templates.php:762 ../graphs.php:1788 ../host.php:1500 #: ../host_templates.php:815 ../lib/api_automation.php:273 ../pollers.php:612 #: ../sites.php:482 ../tree.php:1559 ../user_admin.php:1006 #: ../user_admin.php:1101 ../user_admin.php:1242 ../user_admin.php:1384 #: ../user_admin.php:1521 ../user_group_admin.php:675 #: ../user_group_admin.php:821 ../user_group_admin.php:966 #: ../user_group_admin.php:1109 ../user_group_admin.php:1243 msgid "ID" msgstr "ИД" #: ../aggregate_graphs.php:1118 msgid "Included in Aggregate" msgstr "" #: ../aggregate_graphs.php:1119 ../aggregate_graphs.php:1438 #: ../graph_templates.php:765 ../graphs.php:1790 msgid "Size" msgstr "Размер" #: ../aggregate_graphs.php:1129 ../cdef.php:869 ../color.php:722 #: ../color.php:724 ../color_templates.php:566 ../data_input.php:741 #: ../data_queries.php:1173 ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 ../data_sources.php:1450 #: ../data_sources.php:1451 ../data_templates.php:930 ../gprint_presets.php:411 #: ../graph_templates.php:783 ../host_templates.php:834 #: ../include/global_settings.php:398 ../include/global_settings.php:1254 #: ../install/index.php:527 ../install/index.php:548 ../tree.php:1593 #: ../tree.php:1594 ../user_admin.php:2285 ../user_domains.php:731 #: ../user_group_admin.php:1897 ../vdef.php:864 msgid "No" msgstr "Ðет" #: ../aggregate_graphs.php:1129 ../cdef.php:869 ../color.php:722 #: ../color.php:724 ../color_templates.php:566 ../data_input.php:741 #: ../data_queries.php:1173 ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 ../data_sources.php:1450 #: ../data_sources.php:1451 ../data_templates.php:930 ../gprint_presets.php:411 #: ../graph_templates.php:783 ../host_templates.php:834 #: ../include/global_settings.php:398 ../include/global_settings.php:1254 #: ../install/index.php:526 ../install/index.php:527 ../install/index.php:547 #: ../install/index.php:548 ../tree.php:1593 ../tree.php:1594 #: ../user_admin.php:2283 ../user_domains.php:729 ../user_domains.php:731 #: ../user_group_admin.php:1895 ../vdef.php:864 msgid "Yes" msgstr "Да" #: ../aggregate_graphs.php:1135 ../graphs.php:1810 #: ../lib/api_automation.php:588 msgid "No Graphs Found" msgstr "Графики не найдены" #: ../aggregate_graphs.php:1317 ../aggregate_graphs.php:1426 #: ../lib/functions.php:2550 msgid "Aggregate Graphs" msgstr "" #: ../aggregate_graphs.php:1332 ../data_sources.php:1206 ../graph_view.php:524 #: ../graphs.php:1653 ../host.php:1347 ../lib/api_automation.php:434 #: ../lib/html_graph.php:159 ../lib/html_tree.php:611 ../rrdcleaner.php:351 #: ../user_admin.php:2537 ../user_admin.php:2734 ../user_group_admin.php:2139 #: ../user_group_admin.php:2249 ../utilities.php:1555 msgid "Template" msgstr "Шаблон" #: ../aggregate_graphs.php:1336 ../automation_devices.php:458 #: ../automation_devices.php:488 ../automation_devices.php:503 #: ../automation_devices.php:518 ../automation_graph_rules.php:711 #: ../automation_graph_rules.php:733 ../data_sources.php:1210 #: ../graphs.php:1657 ../graphs_items.php:308 ../graphs_items.php:329 #: ../host.php:1316 ../host.php:1334 ../host.php:1351 ../host.php:1385 #: ../lib/api_automation.php:143 ../lib/api_automation.php:161 #: ../lib/api_automation.php:421 ../lib/api_automation.php:438 #: ../lib/api_automation.php:998 ../lib/api_automation.php:1016 #: ../lib/html.php:1633 ../lib/html_reports.php:1388 ../managers.php:522 #: ../managers.php:734 ../user_admin.php:2541 ../user_admin.php:2738 #: ../user_group_admin.php:2143 ../user_group_admin.php:2253 #: ../utilities.php:654 ../utilities.php:1293 ../utilities.php:1559 #: ../utilities.php:1604 ../utilities.php:2267 ../utilities.php:2520 #: ../utilities.php:2533 msgid "Any" msgstr "Любой" #: ../aggregate_graphs.php:1337 ../aggregate_graphs.php:1450 #: ../automation_graph_rules.php:866 ../automation_graph_rules.php:867 #: ../automation_networks.php:421 ../automation_networks.php:633 #: ../automation_tree_rules.php:855 ../data_sources.php:824 #: ../data_sources.php:1211 ../data_sources.php:1436 ../data_templates.php:932 #: ../graph_view.php:782 ../graphs.php:1326 ../graphs.php:1658 #: ../graphs_items.php:309 ../graphs_items.php:330 ../host.php:1013 #: ../host.php:1317 ../host.php:1352 ../include/global_arrays.php:330 #: ../include/global_arrays.php:383 ../include/global_arrays.php:459 #: ../include/global_arrays.php:571 ../include/global_arrays.php:594 #: ../include/global_arrays.php:1318 ../include/global_form.php:389 #: ../include/global_form.php:712 ../include/global_form.php:721 #: ../include/global_form.php:732 ../include/global_form.php:775 #: ../include/global_form.php:782 ../include/global_form.php:808 #: ../include/global_form.php:837 ../include/global_form.php:845 #: ../include/global_form.php:1032 ../include/global_form.php:1041 #: ../include/global_form.php:2097 ../include/global_form.php:2139 #: ../include/global_settings.php:445 ../include/global_settings.php:453 #: ../include/global_settings.php:900 ../include/global_settings.php:1324 #: ../lib/api_automation.php:144 ../lib/api_automation.php:422 #: ../lib/api_automation.php:439 ../lib/api_automation.php:576 #: ../lib/api_automation.php:999 ../lib/html.php:1634 ../lib/html_form.php:315 #: ../lib/html_graph.php:396 ../lib/html_reports.php:280 #: ../lib/html_reports.php:328 ../lib/html_reports.php:340 #: ../lib/html_reports.php:349 ../lib/html_reports.php:359 #: ../lib/html_tree.php:843 ../settings.php:197 ../settings.php:214 #: ../settings.php:237 ../user_admin.php:2542 ../user_admin.php:2739 #: ../user_group_admin.php:2144 ../user_group_admin.php:2254 #: ../utilities.php:1560 msgid "None" msgstr "Ðет" #: ../aggregate_graphs.php:1435 msgid "The title for the Aggregate Graphs" msgstr "" #: ../aggregate_graphs.php:1436 msgid "The internal database identifier for this object" msgstr "" #: ../aggregate_graphs.php:1437 ../graphs.php:1062 msgid "Aggregate Template" msgstr "" #: ../aggregate_graphs.php:1437 msgid "The Aggregate Template that this Aggregate Graphs is based upon" msgstr "" #: ../aggregate_graphs.php:1456 msgid "No Aggregate Graphs Found" msgstr "" #: ../aggregate_items.php:346 msgid "Override Values for Graph Item" msgstr "" #: ../aggregate_items.php:357 ../lib/api_aggregate.php:1392 msgid "Override this Value" msgstr "" #: ../aggregate_templates.php:307 msgid "Click 'Continue' to Delete the following Aggregate Graph Template(s)." msgstr "" #: ../aggregate_templates.php:312 msgid "Delete Color Template(s)" msgstr "" #: ../aggregate_templates.php:315 msgid "You must select at least one Aggregate Graph Template." msgstr "" #: ../aggregate_templates.php:351 #, php-format msgid "Aggregate Template [edit: %s]" msgstr "" #: ../aggregate_templates.php:353 msgid "Aggregate Template [new]" msgstr "" #: ../aggregate_templates.php:531 ../aggregate_templates.php:631 #: ../lib/functions.php:2532 msgid "Aggregate Templates" msgstr "" #: ../aggregate_templates.php:544 ../automation_templates.php:418 #: ../automation_templates.php:503 ../color_templates.php:550 #: ../include/global_arrays.php:695 ../include/global_arrays.php:753 #: ../install/index.php:898 ../user_admin.php:2839 ../user_group_admin.php:2354 msgid "Templates" msgstr "Шаблоны" #: ../aggregate_templates.php:571 ../cdef.php:746 ../color.php:559 #: ../color_templates.php:469 ../data_sources.php:1278 #: ../gprint_presets.php:286 ../graph_templates.php:652 ../vdef.php:683 msgid "Has Graphs" msgstr "" #: ../aggregate_templates.php:640 ../color_templates.php:547 msgid "Template Title" msgstr "Ðазвание шаблона" #: ../aggregate_templates.php:641 msgid "" "Aggregate Templates that are in use can not be Deleted. In use is defined " "as being referenced by an Aggregate." msgstr "" #: ../aggregate_templates.php:641 ../cdef.php:852 ../color.php:699 #: ../color_templates.php:548 ../data_input.php:723 ../data_queries.php:1154 #: ../data_source_profiles.php:849 ../data_sources.php:1408 #: ../data_templates.php:911 ../gprint_presets.php:392 #: ../graph_templates.php:763 ../host_templates.php:816 ../vdef.php:846 msgid "Deletable" msgstr "УдалÑемый" #: ../aggregate_templates.php:642 ../cdef.php:853 ../color.php:700 #: ../data_queries.php:912 ../data_queries.php:1155 ../gprint_presets.php:393 #: ../graph_templates.php:764 ../vdef.php:847 msgid "Graphs Using" msgstr "" #: ../aggregate_templates.php:643 ../graph_view.php:619 #: ../include/global_arrays.php:655 ../include/global_arrays.php:989 #: ../include/global_form.php:1323 ../include/global_form.php:1551 #: ../lib/html_reports.php:345 ../tree.php:1286 msgid "Graph Template" msgstr "Шаблон Графика" #: ../aggregate_templates.php:665 msgid "No Aggregate Templates Found" msgstr "" #: ../auth_changepassword.php:93 msgid "You cannot use a previously entered password!" msgstr "" #: ../auth_changepassword.php:110 ../auth_changepassword.php:120 msgid "Your current password is not correct. Please try again." msgstr "" #: ../auth_changepassword.php:115 ../auth_changepassword.php:125 msgid "" "Your new password cannot be the same as the old password. Please try again." msgstr "" #: ../auth_changepassword.php:131 msgid "Your new passwords do not match, please retype." msgstr "" #: ../auth_changepassword.php:224 msgid "Forced password change" msgstr "" #: ../auth_changepassword.php:228 msgid "Password requirements include:" msgstr "" #: ../auth_changepassword.php:232 #, php-format msgid "Must be at least %d characters in length" msgstr "" #: ../auth_changepassword.php:236 msgid "Must include mixed case" msgstr "" #: ../auth_changepassword.php:240 msgid "Must include at least 1 number" msgstr "" #: ../auth_changepassword.php:244 msgid "Must include at least 1 special character" msgstr "" #: ../auth_changepassword.php:248 #, php-format msgid "Cannot be reused for %d password changes" msgstr "" #: ../auth_changepassword.php:258 ../auth_changepassword.php:284 #: ../include/global_form.php:1468 ../lib/functions.php:1826 msgid "Change Password" msgstr "" #: ../auth_changepassword.php:290 msgid "Please enter your current password and your new
    Cacti password." msgstr "" #: ../auth_changepassword.php:295 msgid "Current password" msgstr "" #: ../auth_changepassword.php:299 msgid "New password" msgstr "" #: ../auth_changepassword.php:303 msgid "Confirm new password" msgstr "" #: ../auth_changepassword.php:307 ../lib/html_form.php:1113 #: ../lib/html_form.php:1122 ../lib/html_graph.php:197 ../lib/html_tree.php:649 msgid "Save" msgstr " Сохранить " #: ../auth_changepassword.php:316 ../auth_login.php:649 #, php-format msgid "Version %1$s | %2$s" msgstr "" #: ../auth_login.php:50 msgid "" "Web Basic Authentication configured, but no username was passed from the web " "server. Please make sure you have authentication enabled on the web server." msgstr "" #: ../auth_login.php:97 #, php-format msgid "" "%s authenticated by Web Server, but both Template and Guest Users are not " "defined in Cacti." msgstr "" #: ../auth_login.php:116 ../auth_login.php:405 #, php-format msgid "LDAP Search Error: %s" msgstr "" #: ../auth_login.php:142 ../auth_login.php:445 #, php-format msgid "LDAP Error: %s" msgstr "" #: ../auth_login.php:219 ../auth_login.php:437 #, php-format msgid "Template user %s does not exist." msgstr "" #: ../auth_login.php:234 #, php-format msgid "Guest user %s does not exist." msgstr "" #: ../auth_login.php:269 msgid "Access Denied, user account disabled." msgstr "" #: ../auth_login.php:355 msgid "Access Denied, please contact you Cacti Administrator." msgstr "" #: ../auth_login.php:519 msgid "Login to Cacti" msgstr "" #: ../auth_login.php:552 msgid "User Login" msgstr "ÐутентификациÑ" #: ../auth_login.php:564 msgid "Enter your Username and Password below" msgstr "" #: ../auth_login.php:570 ../auth_login.php:573 #: ../include/global_settings.php:1187 ../lib/functions.php:3801 msgid "Username" msgstr "Ð˜Ð¼Ñ ÐŸÐ¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" #: ../auth_login.php:578 ../include/global_form.php:1435 #: ../lib/functions.php:3802 msgid "Password" msgstr "Пароль" #: ../auth_login.php:590 ../include/global_settings.php:1574 #: ../lib/auth.php:287 ../lib/auth.php:299 ../lib/auth.php:310 msgid "Local" msgstr "" #: ../auth_login.php:594 ../include/global_arrays.php:582 ../lib/auth.php:311 msgid "LDAP" msgstr "" #: ../auth_login.php:605 ../user_admin.php:2266 ../user_group_admin.php:675 msgid "Realm" msgstr "" #: ../auth_login.php:621 msgid "Keep me signed in" msgstr "ОÑтаватьÑÑ Ð² Ñети" #: ../auth_login.php:627 msgid "Login" msgstr "Вход" #: ../auth_login.php:640 msgid "Invalid User Name/Password Please Retype" msgstr "Ðе верный логин или пароль, попробуйте ещё раз" #: ../auth_login.php:643 msgid "User Account Disabled" msgstr "" #: ../auth_profile.php:150 msgid "User Account Details" msgstr "" #: ../auth_profile.php:161 ../include/global_arrays.php:565 #: ../include/global_settings.php:1910 ../lib/html.php:1519 #: ../lib/html.php:1541 msgid "Tree View" msgstr "" #: ../auth_profile.php:165 ../include/global_arrays.php:566 #: ../lib/html.php:1526 ../lib/html.php:1550 msgid "List View" msgstr "" #: ../auth_profile.php:169 ../include/global_arrays.php:567 #: ../lib/html.php:1533 msgid "Preview View" msgstr "" #: ../auth_profile.php:182 ../include/global_form.php:1411 #: ../user_admin.php:2263 msgid "User Name" msgstr "Ð˜Ð¼Ñ ÐŸÐ¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" #: ../auth_profile.php:183 ../include/global_form.php:1412 msgid "The login name for this user." msgstr "" #: ../auth_profile.php:190 ../include/global_form.php:1419 #: ../user_admin.php:2264 ../user_group_admin.php:675 ../utilities.php:764 msgid "Full Name" msgstr "Полное ИмÑ" #: ../auth_profile.php:191 ../include/global_form.php:1420 msgid "" "A more descriptive name for this user, that can include spaces or special " "characters." msgstr "" #: ../auth_profile.php:198 ../include/global_form.php:1427 msgid "Email Address" msgstr "" #: ../auth_profile.php:199 msgid "An Email Address you be reached at." msgstr "" #: ../auth_profile.php:206 ../auth_profile.php:208 msgid "Clear Private Data" msgstr "" #: ../auth_profile.php:207 msgid "Clear Private Data including Column sizing." msgstr "" #: ../auth_profile.php:217 ../auth_profile.php:219 msgid "Logout Everywhere" msgstr "" #: ../auth_profile.php:218 msgid "Clear all your Login Session Tokens." msgstr "" #: ../auth_profile.php:239 ../user_admin.php:1928 ../user_group_admin.php:1649 msgid "User Settings" msgstr "" #: ../auth_profile.php:296 msgid "Private Data Cleared" msgstr "" #: ../auth_profile.php:296 msgid "Your Private Data has been cleared." msgstr "" #: ../auth_profile.php:316 msgid "All your login sessions have been cleared." msgstr "" #: ../auth_profile.php:316 msgid "User Sessions Cleared" msgstr "" #: ../automation_devices.php:31 msgid "Add Device" msgstr "" #: ../automation_devices.php:39 ../automation_devices.php:271 #: ../automation_devices.php:389 ../automation_devices.php:399 #: ../automation_devices.php:622 ../automation_devices.php:623 ../host.php:1390 #: ../lib/api_automation.php:166 ../lib/api_automation.php:1021 #: ../lib/html_utility.php:811 msgid "Down" msgstr "" #: ../automation_devices.php:40 ../automation_devices.php:271 #: ../automation_devices.php:391 ../automation_devices.php:401 #: ../automation_devices.php:622 ../automation_devices.php:623 ../host.php:1389 #: ../lib/api_automation.php:165 ../lib/api_automation.php:1020 #: ../lib/html_utility.php:817 msgid "Up" msgstr "" #: ../automation_devices.php:90 msgid "Added manually through device automation interface." msgstr "" #: ../automation_devices.php:106 msgid "Added to Cacti" msgstr "" #: ../automation_devices.php:106 ../automation_devices.php:108 #: ../data_sources.php:822 ../graph_view.php:619 ../graphs.php:1331 #: ../graphs_items.php:304 ../include/global_arrays.php:651 #: ../include/global_arrays.php:696 ../include/global_arrays.php:1434 #: ../lib/api_automation.php:417 ../lib/functions.php:3796 ../lib/html.php:1629 #: ../lib/html.php:1659 ../lib/html_reports.php:335 ../lib/html_tree.php:349 #: ../lib/html_tree.php:377 ../utilities.php:1409 msgid "Device" msgstr "УÑтройÑтво" #: ../automation_devices.php:108 msgid "Not Added to Cacti" msgstr "" #: ../automation_devices.php:177 msgid "Click 'Continue' to add the following Discovered device(s)." msgstr "" #: ../automation_devices.php:183 ../pollers.php:602 msgid "Pollers" msgstr "РегиÑтраторы" #: ../automation_devices.php:187 msgid "Select Template" msgstr "" #: ../automation_devices.php:193 ../automation_templates.php:307 #: ../automation_templates.php:513 msgid "Availability Method" msgstr "" #: ../automation_devices.php:199 msgid "Add Device(s)" msgstr "" #: ../automation_devices.php:202 msgid "You must select at least one Device." msgstr "" #: ../automation_devices.php:239 ../automation_devices.php:529 ../host.php:1303 #: ../host.php:1396 ../host.php:1489 ../include/global_arrays.php:683 #: ../include/global_arrays.php:735 ../lib/api_automation.php:172 #: ../lib/api_automation.php:466 ../lib/functions.php:2136 ../pollers.php:616 #: ../sites.php:483 ../tree.php:1567 ../user_admin.php:1234 #: ../user_admin.php:2752 ../user_group_admin.php:958 #: ../user_group_admin.php:2267 ../utilities.php:263 msgid "Devices" msgstr "УÑтройÑтва" #: ../automation_devices.php:248 msgid "Device Name" msgstr "Ð˜Ð¼Ñ ÑƒÑтройÑтва" #: ../automation_devices.php:249 msgid "IP" msgstr "IP" #: ../automation_devices.php:250 msgid "SNMP Name" msgstr "" #: ../automation_devices.php:251 ../include/global_settings.php:1570 msgid "Location" msgstr "МеÑтоположение" #: ../automation_devices.php:252 msgid "Contact" msgstr "Контакт" #: ../automation_devices.php:253 ../include/global_form.php:970 #: ../include/global_form.php:1006 ../include/global_form.php:1287 #: ../include/global_form.php:1630 ../install/index.php:899 #: ../lib/api_automation.php:269 ../lib/api_automation.php:1137 #: ../managers.php:222 ../tree.php:647 ../user_admin.php:1101 #: ../user_admin.php:1242 ../user_group_admin.php:966 #: ../user_group_admin.php:1883 msgid "Description" msgstr "ОпиÑание" #: ../automation_devices.php:254 ../automation_devices.php:499 msgid "OS" msgstr "ОС" #: ../automation_devices.php:255 ../host.php:1505 #: ../include/global_arrays.php:331 msgid "Uptime" msgstr "Ðптайм" #: ../automation_devices.php:256 ../automation_devices.php:514 #: ../utilities.php:1605 msgid "SNMP" msgstr "SNMP" #: ../automation_devices.php:257 ../automation_devices.php:484 #: ../automation_graph_rules.php:729 ../automation_networks.php:964 #: ../automation_tree_rules.php:721 ../data_sources.php:1231 #: ../data_templates.php:915 ../host.php:686 ../host.php:778 ../host.php:1381 #: ../host.php:1503 ../lib/api_automation.php:157 ../lib/api_automation.php:271 #: ../lib/api_automation.php:560 ../lib/api_automation.php:1012 #: ../lib/api_automation.php:1140 ../lib/html_reports.php:1384 #: ../managers.php:224 ../plugins.php:282 ../plugins.php:377 ../pollers.php:614 #: ../user_admin.php:1242 ../user_group_admin.php:966 msgid "Status" msgstr "СтатуÑ" #: ../automation_devices.php:258 msgid "Last Check" msgstr "ПоÑледнÑÑ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ°" #: ../automation_devices.php:285 ../automation_devices.php:614 msgid "Not Detected" msgstr "" #: ../automation_devices.php:303 ../host.php:1547 msgid "No Devices Found" msgstr "УÑтройÑтва не найдены" #: ../automation_devices.php:439 msgid "Discovery Filters" msgstr "" #: ../automation_devices.php:454 msgid "Network" msgstr "Сеть" #: ../automation_devices.php:471 msgid "Reset fields to defaults" msgstr "СброÑить Ð¿Ð¾Ð»Ñ Ð¿Ð¾ умолчанию" #: ../automation_devices.php:474 ../color.php:571 ../lib/html_form.php:1128 msgid "Export" msgstr "ЭкÑпорт" #: ../automation_devices.php:474 msgid "Export to a file" msgstr "ЭкÑпорт в файл" #: ../automation_devices.php:477 ../lib/clog_webapi.php:120 #: ../lib/clog_webapi.php:346 ../managers.php:749 msgid "Purge" msgstr "" #: ../automation_devices.php:477 msgid "Purge Discovered Devices" msgstr "" #: ../automation_graph_rules.php:29 ../automation_snmp.php:30 #: ../automation_tree_rules.php:29 ../cdef.php:30 ../color_templates.php:29 #: ../data_templates.php:34 ../graph_templates.php:34 ../graphs.php:63 #: ../host_templates.php:31 ../include/global_arrays.php:1231 ../vdef.php:30 msgid "Duplicate" msgstr "Дублировать" #: ../automation_graph_rules.php:30 ../automation_networks.php:33 #: ../automation_tree_rules.php:30 ../data_sources.php:38 ../host.php:39 #: ../include/global_arrays.php:1232 ../include/global_settings.php:1145 #: ../links.php:29 ../managers.php:29 ../managers.php:35 ../plugins.php:29 #: ../pollers.php:31 ../user_admin.php:30 ../user_domains.php:31 #: ../user_domains.php:402 ../user_group_admin.php:32 msgid "Enable" msgstr "Включить" #: ../automation_graph_rules.php:31 ../automation_networks.php:32 #: ../automation_tree_rules.php:31 ../data_sources.php:39 ../host.php:40 #: ../include/global_arrays.php:1233 ../links.php:30 ../managers.php:30 #: ../managers.php:34 ../plugins.php:30 ../pollers.php:30 ../user_admin.php:31 #: ../user_domains.php:30 ../user_group_admin.php:33 msgid "Disable" msgstr "Выключить" #: ../automation_graph_rules.php:251 msgid "Press 'Continue' to delete the following Graph Rules." msgstr "" #: ../automation_graph_rules.php:258 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Graph Rules." msgstr "" #: ../automation_graph_rules.php:260 ../automation_tree_rules.php:262 #: ../graphs.php:851 ../graphs.php:862 msgid "Title Format" msgstr "" #: ../automation_graph_rules.php:260 ../automation_tree_rules.php:262 msgid "rule_name" msgstr "rule_name" #: ../automation_graph_rules.php:266 ../automation_tree_rules.php:268 msgid "Click 'Continue' to enable the following Rule(s)." msgstr "" #: ../automation_graph_rules.php:268 ../automation_tree_rules.php:270 msgid "Make sure, that those rules have successfully been tested!" msgstr "" #: ../automation_graph_rules.php:274 ../automation_tree_rules.php:276 msgid "Click 'Continue' to disable the following Rule(s)." msgstr "" #: ../automation_graph_rules.php:281 ../automation_tree_rules.php:283 msgid "You must select at least one Rule." msgstr "" #: ../automation_graph_rules.php:284 ../automation_tree_rules.php:286 msgid "Apply requested action" msgstr "" #: ../automation_graph_rules.php:414 ../automation_tree_rules.php:471 msgid "Are You Sure?" msgstr "Ð’Ñ‹ уверены?" #: ../automation_graph_rules.php:414 #, php-format msgid "Are you sure you want to delete the Rule '%s'?" msgstr "" #: ../automation_graph_rules.php:497 #, php-format msgid "Rule Selection [edit: %s]" msgstr "" #: ../automation_graph_rules.php:503 msgid "Rule Selection [new]" msgstr "" #: ../automation_graph_rules.php:513 ../automation_graph_rules.php:528 #: ../automation_graph_rules.php:544 ../automation_tree_rules.php:379 #: ../automation_tree_rules.php:529 msgid "Don't Show" msgstr "" #: ../automation_graph_rules.php:513 msgid "Rule Details." msgstr "" #: ../automation_graph_rules.php:528 msgid "Matching Devices." msgstr "" #: ../automation_graph_rules.php:544 msgid "Matching Objects." msgstr "" #: ../automation_graph_rules.php:580 msgid "Device Selection Criteria" msgstr "" #: ../automation_graph_rules.php:586 msgid "Graph Creation Criteria" msgstr "" #: ../automation_graph_rules.php:692 ../automation_graph_rules.php:739 #: ../automation_graph_rules.php:846 ../include/global_arrays.php:706 #: ../include/global_form.php:1571 ../lib/functions.php:2586 msgid "Graph Rules" msgstr "" #: ../automation_graph_rules.php:707 ../automation_graph_rules.php:857 #: ../include/global_arrays.php:992 ../include/global_form.php:1561 #: ../include/global_form.php:2176 msgid "Data Query" msgstr "" #: ../automation_graph_rules.php:734 ../automation_graph_rules.php:859 #: ../automation_networks.php:496 ../automation_tree_rules.php:848 #: ../automation_tree_rules.php:866 ../data_sources.php:1236 ../host.php:1386 #: ../include/global_arrays.php:614 ../include/global_form.php:1443 #: ../include/global_settings.php:339 ../lib/api_automation.php:162 #: ../lib/api_automation.php:1017 ../lib/html_reports.php:1389 #: ../lib/html_reports.php:1482 ../lib/html_reports.php:1493 #: ../lib/html_reports.php:1529 ../links.php:381 ../managers.php:249 #: ../managers.php:628 ../user_admin.php:1101 ../user_admin.php:1113 #: ../user_admin.php:2265 ../user_domains.php:341 ../user_domains.php:718 #: ../user_group_admin.php:87 ../user_group_admin.php:675 #: ../user_group_admin.php:690 ../user_group_admin.php:1887 #: ../utilities.php:2142 msgid "Enabled" msgstr "Включено" #: ../automation_graph_rules.php:735 ../automation_networks.php:979 #: ../automation_tree_rules.php:866 ../data_sources.php:1237 #: ../data_templates.php:934 ../host.php:1387 ../include/global_arrays.php:613 #: ../include/global_arrays.php:1159 ../include/global_arrays.php:1442 #: ../include/global_settings.php:339 ../include/global_settings.php:1021 #: ../include/global_settings.php:1035 ../include/global_settings.php:1047 #: ../include/global_settings.php:1072 ../include/global_settings.php:1086 #: ../include/global_settings.php:1145 ../include/global_settings.php:1764 #: ../lib/api_automation.php:163 ../lib/api_automation.php:1018 #: ../lib/html_reports.php:1390 ../lib/html_reports.php:1529 #: ../lib/html_utility.php:807 ../managers.php:249 ../managers.php:628 #: ../pollers.php:40 ../user_admin.php:1113 ../user_domains.php:402 #: ../user_group_admin.php:690 ../utilities.php:2142 msgid "Disabled" msgstr "Выключен" #: ../automation_graph_rules.php:855 ../automation_tree_rules.php:842 msgid "Rule Name" msgstr "" #: ../automation_graph_rules.php:855 msgid "The name of this rule." msgstr "" #: ../automation_graph_rules.php:856 msgid "" "The internal database ID for this rule. Useful in performing debugging and " "automation." msgstr "" #: ../automation_graph_rules.php:858 ../include/global_form.php:1803 #: ../include/global_form.php:1886 ../include/global_form.php:1988 #: ../include/global_form.php:2187 msgid "Graph Type" msgstr "" #: ../automation_graph_rules.php:881 msgid "No Graph Rules Found" msgstr "" #: ../automation_networks.php:34 msgid "Discover Now" msgstr "" #: ../automation_networks.php:35 msgid "Cancel Discovery" msgstr "" #: ../automation_networks.php:185 #, php-format msgid "ERROR: You must specificy the day of the week. Disabling Network %s!." msgstr "" #: ../automation_networks.php:191 #, php-format msgid "" "ERROR: You must specificy both the Months and Days of Month. Disabling " "Network %s!." msgstr "" #: ../automation_networks.php:197 #, php-format msgid "" "ERROR: You must specificy the Months, Weeks of Months, and Days of Week. " "Disabling Network %s!." msgstr "" #: ../automation_networks.php:215 #, php-format msgid "ERROR: Network '%s' is Invalid." msgstr "" #: ../automation_networks.php:312 msgid "Click 'Continue' to delete the following Network(s)." msgstr "" #: ../automation_networks.php:319 msgid "Click 'Continue' to enable the following Network(s)." msgstr "" #: ../automation_networks.php:326 msgid "Click 'Continue' to disable the following Network(s)." msgstr "" #: ../automation_networks.php:333 msgid "Click 'Continue' to discover the following Network(s)." msgstr "" #: ../automation_networks.php:340 msgid "Click 'Continue' to cancel on going Network Discovery(s)." msgstr "" #: ../automation_networks.php:347 msgid "You must select at least one Network." msgstr "" #: ../automation_networks.php:378 ../automation_networks.php:952 #: ../tree.php:1087 msgid "Manual" msgstr "" #: ../automation_networks.php:379 ../automation_networks.php:953 #: ../include/global_arrays.php:500 msgid "Daily" msgstr "" #: ../automation_networks.php:380 ../automation_networks.php:954 msgid "Weekly" msgstr "" #: ../automation_networks.php:381 ../automation_networks.php:955 msgid "Monthly" msgstr "" #: ../automation_networks.php:382 ../automation_networks.php:956 msgid "Monthly on Day" msgstr "" #: ../automation_networks.php:386 #, php-format msgid "Network Discovery Range [edit: %s]" msgstr "" #: ../automation_networks.php:388 msgid "Network Discovery Range [new]" msgstr "" #: ../automation_networks.php:395 ../include/global_form.php:1855 #: ../include/global_form.php:1955 ../include/global_settings.php:51 #: ../lib/html_reports.php:30 msgid "General Settings" msgstr "ОÑновые ÐаÑтройки" #: ../automation_networks.php:400 ../automation_snmp.php:645 #: ../data_input.php:468 ../data_input.php:502 ../data_queries.php:594 #: ../data_queries.php:690 ../data_queries.php:910 #: ../data_source_profiles.php:486 ../graph_templates.php:423 #: ../include/global_form.php:35 ../include/global_form.php:104 #: ../include/global_form.php:154 ../include/global_form.php:174 #: ../include/global_form.php:215 ../include/global_form.php:339 #: ../include/global_form.php:366 ../include/global_form.php:473 #: ../include/global_form.php:930 ../include/global_form.php:962 #: ../include/global_form.php:1259 ../include/global_form.php:1279 #: ../include/global_form.php:1349 ../include/global_form.php:1377 #: ../include/global_form.php:2070 ../include/global_form.php:2168 #: ../include/global_form.php:2215 ../install/index.php:466 #: ../install/index.php:543 ../install/index.php:899 ../lib/vdef.php:74 #: ../managers.php:607 ../pollers.php:52 ../sites.php:40 ../user_admin.php:1101 #: ../user_domains.php:317 ../utilities.php:466 ../utilities.php:2338 msgid "Name" msgstr "ИмÑ" #: ../automation_networks.php:401 msgid "Give this Network a meaningful name." msgstr "" #: ../automation_networks.php:404 msgid "New Network Discovery Range" msgstr "" #: ../automation_networks.php:408 ../automation_networks.php:961 #: ../host.php:1330 msgid "Data Collector" msgstr "" #: ../automation_networks.php:409 ../include/global_form.php:1022 msgid "" "Choose the Cacti Data Collector/Poller to be used to gather data from this " "Device." msgstr "" #: ../automation_networks.php:416 #, fuzzy msgid "Associated Site" msgstr "ÐÑÑоциирование RRA" #: ../automation_networks.php:417 msgid "" "Choose the Cacti Site that you wish to associate discovered Devices with." msgstr "" #: ../automation_networks.php:425 msgid "Subnet Range" msgstr "" #: ../automation_networks.php:426 msgid "" "Enter valid Network Ranges separated by commas. You may use an IP address, " "a Network range such as 192.168.1.0/24 or 192.168.1.0/255.255.255.0, or " "using wildcards such as 192.168.*.*" msgstr "" #: ../automation_networks.php:435 msgid "Total IP Addresses" msgstr "" #: ../automation_networks.php:436 msgid "Total addressable IP Addresses in this Network Range." msgstr "" #: ../automation_networks.php:441 msgid "Alternate DNS Servers" msgstr "" #: ../automation_networks.php:442 msgid "" "A space delimited list of alternate DNS Servers to use for DNS resolution. " "If blank, the poller OS will be used to resolve DNS names." msgstr "" #: ../automation_networks.php:445 msgid "Enter IPs or FQDNs of DNS Servers" msgstr "" #: ../automation_networks.php:449 msgid "Schedule Type" msgstr "" #: ../automation_networks.php:450 msgid "Define the collection frequency." msgstr "" #: ../automation_networks.php:457 msgid "Discovery Threads" msgstr "" #: ../automation_networks.php:458 msgid "Define the number of threads to use for discovering this Network Range." msgstr "" #: ../automation_networks.php:461 #, php-format msgid "%d Thread" msgstr "" #: ../automation_networks.php:462 ../automation_networks.php:463 #: ../automation_networks.php:464 ../automation_networks.php:465 #: ../automation_networks.php:466 ../automation_networks.php:467 #: ../automation_networks.php:468 ../automation_networks.php:469 #: ../automation_networks.php:470 ../automation_networks.php:471 #: ../automation_networks.php:472 ../include/global_arrays.php:548 #: ../include/global_arrays.php:549 ../include/global_arrays.php:550 #: ../include/global_arrays.php:551 ../include/global_arrays.php:552 #, php-format msgid "%d Threads" msgstr "" #: ../automation_networks.php:478 msgid "Run Limit" msgstr "" #: ../automation_networks.php:479 msgid "After the selected Run Limit, the discovery process will be terminated." msgstr "" #: ../automation_networks.php:482 #, php-format msgid "%d Minute" msgstr "" #: ../automation_networks.php:483 ../automation_networks.php:484 #: ../automation_networks.php:485 ../automation_networks.php:486 #: ../data_sources.php:1071 ../include/global_arrays.php:490 #: ../include/global_arrays.php:491 ../include/global_arrays.php:492 #: ../include/global_arrays.php:493 ../include/global_arrays.php:523 #: ../include/global_arrays.php:524 ../include/global_arrays.php:525 #: ../include/global_arrays.php:526 ../include/global_arrays.php:527 #: ../include/global_arrays.php:528 ../include/global_arrays.php:846 #: ../include/global_arrays.php:847 ../include/global_arrays.php:1166 #: ../include/global_arrays.php:1170 ../include/global_arrays.php:1178 #: ../include/global_arrays.php:1179 ../include/global_arrays.php:1201 #: ../include/global_arrays.php:1202 ../include/global_arrays.php:1203 #: ../include/global_arrays.php:1204 ../include/global_arrays.php:1205 #: ../include/global_arrays.php:1216 ../include/global_settings.php:1088 #: ../include/global_settings.php:1089 ../include/global_settings.php:1090 #: ../include/global_settings.php:1091 ../include/global_settings.php:1092 #: ../include/global_settings.php:1837 #, php-format msgid "%d Minutes" msgstr "" #: ../automation_networks.php:487 ../include/global_arrays.php:1071 #, php-format msgid "%d Hour" msgstr "" #: ../automation_networks.php:488 ../automation_networks.php:489 #: ../automation_networks.php:490 ../data_source_profiles.php:656 #: ../include/global_arrays.php:495 ../include/global_arrays.php:496 #: ../include/global_arrays.php:497 ../include/global_arrays.php:498 #: ../include/global_arrays.php:499 ../include/global_arrays.php:530 #: ../include/global_arrays.php:531 ../include/global_arrays.php:532 #: ../include/global_arrays.php:533 ../include/global_arrays.php:1072 #: ../include/global_arrays.php:1073 ../include/global_arrays.php:1074 #: ../include/global_arrays.php:1075 ../include/global_arrays.php:1118 #: ../include/global_arrays.php:1119 ../include/global_arrays.php:1120 #: ../include/global_arrays.php:1121 ../include/global_arrays.php:1122 #: ../include/global_arrays.php:1139 ../include/global_arrays.php:1140 #: ../include/global_arrays.php:1141 ../include/global_arrays.php:1142 #: ../include/global_arrays.php:1143 ../include/global_settings.php:1094 #: ../include/global_settings.php:1095 ../include/global_settings.php:1096 #: ../include/global_settings.php:1097 #, php-format msgid "%d Hours" msgstr "%d ЧаÑа(ов)" #: ../automation_networks.php:497 msgid "Enable this Network Range Enabled." msgstr "" #: ../automation_networks.php:502 msgid "Enable NetBIOS" msgstr "" #: ../automation_networks.php:503 msgid "Use NetBIOS to attempt to result the hostname of up hosts." msgstr "" #: ../automation_networks.php:509 msgid "Automatically Add to Cacti" msgstr "" #: ../automation_networks.php:510 msgid "" "For any newly discovered Devices that are reachable using SNMP and who match " "a Device Rule, add them to Cacti." msgstr "" #: ../automation_networks.php:515 msgid "Rerun Data Queries" msgstr "" #: ../automation_networks.php:516 msgid "" "If a device, previously added to Cacti, is found, rerun its data queries." msgstr "" #: ../automation_networks.php:521 msgid "Discovery Timing" msgstr "" #: ../automation_networks.php:526 msgid "Starting Date/Time" msgstr "" #: ../automation_networks.php:527 msgid "What time will this Network discover item start?" msgstr "" #: ../automation_networks.php:535 msgid "Rerun Every" msgstr "" #: ../automation_networks.php:536 msgid "Rerun discovery for this Network Range every X." msgstr "" #: ../automation_networks.php:551 msgid "Days of Week" msgstr "" #: ../automation_networks.php:552 ../automation_networks.php:610 msgid "What Day(s) of the week will this Network Range be discovered." msgstr "" #: ../automation_networks.php:554 ../automation_networks.php:612 #: ../include/global_arrays.php:1492 msgid "Sunday" msgstr "ВоÑкреÑенье" #: ../automation_networks.php:555 ../automation_networks.php:613 #: ../include/global_arrays.php:1493 msgid "Monday" msgstr "Понедельник" #: ../automation_networks.php:556 ../automation_networks.php:614 #: ../include/global_arrays.php:1494 msgid "Tuesday" msgstr "Вторник" #: ../automation_networks.php:557 ../automation_networks.php:615 #: ../include/global_arrays.php:1495 msgid "Wednesday" msgstr "Среда" #: ../automation_networks.php:558 ../automation_networks.php:616 #: ../include/global_arrays.php:1496 msgid "Thursday" msgstr "Четверг" #: ../automation_networks.php:559 ../automation_networks.php:617 #: ../include/global_arrays.php:1497 msgid "Friday" msgstr "ПÑтница" #: ../automation_networks.php:560 ../automation_networks.php:618 #: ../include/global_arrays.php:1498 msgid "Saturday" msgstr "Суббота" #: ../automation_networks.php:567 msgid "Months of Year" msgstr "" #: ../automation_networks.php:568 msgid "What Months(s) of the Year will this Network Range be discovered." msgstr "" #: ../automation_networks.php:570 ../include/global_arrays.php:1462 msgid "January" msgstr "" #: ../automation_networks.php:571 ../include/global_arrays.php:1463 msgid "February" msgstr "" #: ../automation_networks.php:572 ../include/global_arrays.php:1464 msgid "March" msgstr "" #: ../automation_networks.php:573 ../include/global_arrays.php:1465 msgid "April" msgstr "" #: ../automation_networks.php:574 ../include/global_arrays.php:1466 msgid "May" msgstr "" #: ../automation_networks.php:575 ../include/global_arrays.php:1467 msgid "June" msgstr "" #: ../automation_networks.php:576 ../include/global_arrays.php:1468 msgid "July" msgstr "" #: ../automation_networks.php:577 ../include/global_arrays.php:1469 msgid "August" msgstr "" #: ../automation_networks.php:578 ../include/global_arrays.php:1470 msgid "September" msgstr "" #: ../automation_networks.php:579 ../include/global_arrays.php:1471 msgid "October" msgstr "" #: ../automation_networks.php:580 ../include/global_arrays.php:1472 msgid "November" msgstr "" #: ../automation_networks.php:581 ../include/global_arrays.php:1473 msgid "December" msgstr "" #: ../automation_networks.php:588 msgid "Days of Month" msgstr "" #: ../automation_networks.php:589 msgid "What Day(s) of the Month will this Network Range be discovered." msgstr "" #: ../automation_networks.php:590 ../automation_networks.php:602 msgid "Last" msgstr "" #: ../automation_networks.php:596 msgid "Week(s) of Month" msgstr "" #: ../automation_networks.php:597 msgid "What Week(s) of the Month will this Network Range be discovered." msgstr "" #: ../automation_networks.php:599 msgid "First" msgstr "" #: ../automation_networks.php:600 msgid "Second" msgstr "" #: ../automation_networks.php:601 msgid "Third" msgstr "" #: ../automation_networks.php:609 msgid "Day(s) of Week" msgstr "" #: ../automation_networks.php:625 msgid "Reachability Settings" msgstr "" #: ../automation_networks.php:630 ../include/global_arrays.php:708 #: ../include/global_form.php:1062 ../include/global_form.php:1662 msgid "SNMP Options" msgstr "" #: ../automation_networks.php:631 msgid "Select the SNMP Options to use for discovery of this Network Range." msgstr "" #: ../automation_networks.php:637 ../include/global_form.php:1187 msgid "Ping Method" msgstr "" #: ../automation_networks.php:638 msgid "The type of ping packet to send." msgstr "" #: ../automation_networks.php:646 ../include/global_form.php:1197 #: ../include/global_settings.php:561 msgid "Ping Port" msgstr "" #: ../automation_networks.php:648 ../include/global_form.php:1199 msgid "TCP or UDP port to attempt connection." msgstr "" #: ../automation_networks.php:654 ../include/global_form.php:1205 #: ../include/global_settings.php:569 msgid "Ping Timeout Value" msgstr "" #: ../automation_networks.php:655 ../include/global_form.php:1206 #: ../include/global_settings.php:570 msgid "" "The timeout value to use for host ICMP and UDP pinging. This host SNMP " "timeout value applies for SNMP pings." msgstr "" #: ../automation_networks.php:663 ../include/global_form.php:1214 #: ../include/global_settings.php:577 msgid "Ping Retry Count" msgstr "" #: ../automation_networks.php:664 ../include/global_form.php:1215 msgid "" "After an initial failure, the number of ping retries Cacti will attempt " "before failing." msgstr "" #: ../automation_networks.php:704 msgid "Select the days(s) of the week" msgstr "" #: ../automation_networks.php:714 msgid "Select the month(s) of the year" msgstr "" #: ../automation_networks.php:724 msgid "Select the day(s) of the month" msgstr "" #: ../automation_networks.php:734 msgid "Select the week(s) of the month" msgstr "" #: ../automation_networks.php:744 msgid "Select the day(s) of the week" msgstr "" #: ../automation_networks.php:817 ../automation_networks.php:834 msgid "every X Days" msgstr "" #: ../automation_networks.php:817 ../automation_networks.php:834 msgid "every X Weeks" msgstr "" #: ../automation_networks.php:818 msgid "every X Days." msgstr "" #: ../automation_networks.php:818 ../automation_networks.php:835 msgid "every X." msgstr "" #: ../automation_networks.php:835 msgid "every X Weeks." msgstr "" #: ../automation_networks.php:933 msgid "Network Filters" msgstr "" #: ../automation_networks.php:943 ../automation_networks.php:1067 #: ../include/global_arrays.php:703 msgid "Networks" msgstr "Сети" #: ../automation_networks.php:960 msgid "Network Name" msgstr "" #: ../automation_networks.php:962 msgid "Schedule" msgstr "" #: ../automation_networks.php:963 msgid "Total IPs" msgstr "" #: ../automation_networks.php:964 msgid "The Current Status of this Networks Discovery" msgstr "" #: ../automation_networks.php:965 msgid "Pending/Running/Done" msgstr "" #: ../automation_networks.php:965 msgid "Progress" msgstr "" #: ../automation_networks.php:966 msgid "Up/SNMP Hosts" msgstr "" #: ../automation_networks.php:967 msgid "Threads" msgstr "" #: ../automation_networks.php:968 msgid "Last Runtime" msgstr "" #: ../automation_networks.php:969 msgid "Next Start" msgstr "" #: ../automation_networks.php:970 msgid "Last Started" msgstr "" #: ../automation_networks.php:995 ../pollers.php:37 ../utilities.php:1952 msgid "Running" msgstr "" #: ../automation_networks.php:1015 ../pollers.php:38 ../utilities.php:1951 msgid "Idle" msgstr "" #: ../automation_networks.php:1030 ../automation_snmp.php:705 #: ../automation_snmp.php:706 ../automation_snmp.php:707 #: ../automation_snmp.php:708 ../automation_snmp.php:709 #: ../automation_snmp.php:710 ../lib/html.php:937 ../user_admin.php:2278 #: ../utilities.php:406 ../utilities.php:792 ../utilities.php:2015 #: ../utilities.php:2115 ../utilities.php:2118 ../utilities.php:2121 #: ../utilities.php:2127 ../utilities.php:2358 msgid "N/A" msgstr "Ð/Д" #: ../automation_networks.php:1036 msgid "No Networks Found" msgstr "" #: ../automation_networks.php:1085 msgid "Clear Filtered" msgstr "" #: ../automation_snmp.php:225 msgid "You must select at least one SNMP Option." msgstr "" #: ../automation_snmp.php:233 msgid "Click 'Continue' to delete the following SNMP Option(s)." msgstr "" #: ../automation_snmp.php:240 msgid "" "Click 'Continue' to duplicate the following SNMP Options. You can optionally " "change the title format for the new SNMP Options." msgstr "" #: ../automation_snmp.php:242 msgid "Name Format" msgstr "" #: ../automation_snmp.php:242 msgid "name" msgstr "" #: ../automation_snmp.php:348 msgid "Click 'Continue' to delete the following SNMP Option Item." msgstr "" #: ../automation_snmp.php:349 msgid "SNMP Option:" msgstr "" #: ../automation_snmp.php:350 #, php-format msgid "SNMP Version: %s" msgstr "" #: ../automation_snmp.php:351 #, php-format msgid "SNMP Community/Username: %s" msgstr "" #: ../automation_snmp.php:357 msgid "Remove SNMP Item" msgstr "" #: ../automation_snmp.php:416 #, php-format msgid "SNMP Options [edit: %s]" msgstr "" #: ../automation_snmp.php:418 msgid "SNMP Options [new]" msgstr "" #: ../automation_snmp.php:434 ../include/global_form.php:1067 #: ../include/global_form.php:1667 msgid "SNMP Version" msgstr "ВерÑÐ¸Ñ SNMP" #: ../automation_snmp.php:435 msgid "Choose the SNMP version for this host." msgstr "" #: ../automation_snmp.php:443 msgid "SNMP Community String" msgstr "" #: ../automation_snmp.php:444 msgid "Fill in the SNMP read community for this device." msgstr "" #: ../automation_snmp.php:452 ../include/global_form.php:1147 #: ../include/global_form.php:1737 msgid "SNMP Port" msgstr "" #: ../automation_snmp.php:453 msgid "The UDP/TCP Port to poll the SNMP agent on." msgstr "" #: ../automation_snmp.php:461 ../include/global_form.php:1156 #: ../include/global_form.php:1746 msgid "SNMP Timeout" msgstr "" #: ../automation_snmp.php:462 ../include/global_form.php:1157 #: ../include/global_form.php:1747 msgid "" "The maximum number of milliseconds Cacti will wait for an SNMP response " "(does not work with php-snmp support)." msgstr "" #: ../automation_snmp.php:470 msgid "SNMP Retries" msgstr "" #: ../automation_snmp.php:471 msgid "" "The maximum number of attempts to reach a device via an SNMP readstring " "prior to giving up." msgstr "" #: ../automation_snmp.php:479 msgid "Maximum OID's Per Get Request" msgstr "" #: ../automation_snmp.php:480 ../include/global_form.php:1166 msgid "" "Specified the number of OIDs that can be obtained in a single SNMP Get " "request." msgstr "" #: ../automation_snmp.php:488 ../include/global_form.php:1086 #: ../include/global_form.php:1686 msgid "SNMP Username (v3)" msgstr "SNMP Ð˜Ð¼Ñ ÐŸÐ¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ (v3)" #: ../automation_snmp.php:489 ../include/global_form.php:1087 #: ../include/global_form.php:1687 msgid "SNMP v3 username for this device." msgstr "" #: ../automation_snmp.php:497 ../include/global_form.php:1095 msgid "SNMP Password (v3)" msgstr "SNMP Пароль (v3)" #: ../automation_snmp.php:498 msgid "SNMP v3 password for this device." msgstr "" #: ../automation_snmp.php:506 ../include/global_form.php:1104 #: ../include/global_form.php:1704 msgid "SNMP Auth Protocol (v3)" msgstr "" #: ../automation_snmp.php:507 ../include/global_settings.php:499 msgid "Choose the SNMPv3 Authorization Protocol." msgstr "" #: ../automation_snmp.php:514 ../include/global_form.php:1112 msgid "SNMP Privacy Passphrase (v3)" msgstr "" #: ../automation_snmp.php:515 ../include/global_form.php:1713 #: ../include/global_settings.php:506 msgid "Choose the SNMPv3 Privacy Passphrase." msgstr "" #: ../automation_snmp.php:523 ../include/global_form.php:1121 #: ../include/global_form.php:1721 msgid "SNMP Privacy Protocol (v3)" msgstr "" #: ../automation_snmp.php:524 ../include/global_settings.php:513 msgid "Choose the SNMPv3 Privacy Protocol." msgstr "" #: ../automation_snmp.php:531 msgid "SNMP Context" msgstr "" #: ../automation_snmp.php:532 msgid "Enter the SNMP Context to use for this device." msgstr "" #: ../automation_snmp.php:544 ../include/global_form.php:921 #: ../include/global_form.php:2117 ../include/global_form.php:2159 #: ../include/global_form.php:2313 ../lib/api_automation.php:1207 #: ../lib/api_automation.php:1269 ../lib/api_automation.php:1332 #: ../lib/html_reports.php:399 ../lib/html_reports.php:1210 msgid "Sequence" msgstr "" #: ../automation_snmp.php:545 ../lib/html_reports.php:400 msgid "Sequence of Item." msgstr "" #: ../automation_snmp.php:632 #, fuzzy, php-format #| msgid "Template [edit: %s]" msgid "SNMP Option Set [edit: %s]" msgstr "Шаблон [редактировать: %s]" #: ../automation_snmp.php:634 msgid "SNMP Option Set [new]" msgstr "" #: ../automation_snmp.php:646 msgid "Fill in the name of this SNMP Option Set." msgstr "" #: ../automation_snmp.php:671 ../automation_snmp.php:820 msgid "Automation SNMP Options" msgstr "" #: ../automation_snmp.php:674 ../cdef.php:584 ../lib/api_automation.php:1206 #: ../lib/api_automation.php:1268 ../lib/api_automation.php:1331 #: ../lib/html_reports.php:1209 ../vdef.php:564 msgid "Item" msgstr "" #: ../automation_snmp.php:675 ../include/auth.php:154 #: ../include/global_settings.php:469 ../permission_denied.php:67 #: ../plugins.php:379 msgid "Version" msgstr "ВерÑиÑ" #: ../automation_snmp.php:676 ../include/global_settings.php:476 msgid "Community" msgstr "" #: ../automation_snmp.php:677 ../lib/functions.php:3797 msgid "Port" msgstr "" #: ../automation_snmp.php:678 ../include/global_settings.php:518 msgid "Timeout" msgstr "" #: ../automation_snmp.php:679 ../include/global_settings.php:534 msgid "Retries" msgstr "" #: ../automation_snmp.php:680 msgid "Max OIDS" msgstr "" #: ../automation_snmp.php:681 msgid "Auth Username" msgstr "" #: ../automation_snmp.php:682 msgid "Auth Password" msgstr "" #: ../automation_snmp.php:683 msgid "Auth Protocol" msgstr "" #: ../automation_snmp.php:684 msgid "Priv Passphrase" msgstr "" #: ../automation_snmp.php:685 msgid "Priv Protocol" msgstr "" #: ../automation_snmp.php:686 msgid "Context" msgstr "" #: ../automation_snmp.php:687 ../data_queries.php:914 ../utilities.php:1600 msgid "Action" msgstr "" #: ../automation_snmp.php:700 msgid "none" msgstr "" #: ../automation_snmp.php:715 ../automation_templates.php:545 ../cdef.php:607 #: ../color_templates.php:110 ../data_queries.php:624 ../data_queries.php:722 #: ../lib/api_automation.php:1233 ../lib/api_automation.php:1296 #: ../lib/api_automation.php:1360 ../lib/html.php:959 #: ../lib/html_reports.php:1284 ../lib/html_reports.php:1286 ../tree.php:1578 #: ../tree.php:1582 ../tree.php:1585 ../tree.php:1586 ../vdef.php:588 msgid "Move Down" msgstr "" #: ../automation_snmp.php:721 ../automation_templates.php:551 ../cdef.php:613 #: ../color_templates.php:116 ../data_queries.php:629 ../data_queries.php:727 #: ../lib/api_automation.php:1239 ../lib/api_automation.php:1302 #: ../lib/api_automation.php:1366 ../lib/html.php:964 #: ../lib/html_reports.php:1286 ../lib/html_reports.php:1288 ../vdef.php:594 msgid "Move Up" msgstr "" #: ../automation_snmp.php:735 msgid "No SNMP Items" msgstr "" #: ../automation_snmp.php:770 msgid "Delete SNMP Option Item" msgstr "" #: ../automation_snmp.php:834 msgid "SNMP Rules" msgstr "" #: ../automation_snmp.php:923 msgid "SNMP Option Sets" msgstr "" #: ../automation_snmp.php:932 msgid "SNMP Option Set" msgstr "" #: ../automation_snmp.php:933 msgid "Networks Using" msgstr "" #: ../automation_snmp.php:934 msgid "SNMP Entries" msgstr "" #: ../automation_snmp.php:935 msgid "V1 Entries" msgstr "" #: ../automation_snmp.php:936 msgid "V2 Entries" msgstr "" #: ../automation_snmp.php:937 msgid "V3 Entries" msgstr "" #: ../automation_snmp.php:957 msgid "No SNMP Option Sets Found" msgstr "" #: ../automation_templates.php:190 msgid "Click 'Continue' to delete the folling Automation Template(s)." msgstr "" #: ../automation_templates.php:195 msgid "Delete Automation Template(s)" msgstr "" #: ../automation_templates.php:198 msgid "You must select at least one Automation Template." msgstr "" #: ../automation_templates.php:300 ../include/global_arrays.php:993 #: ../include/global_form.php:1038 ../include/global_form.php:1546 #: ../lib/html_reports.php:325 msgid "Device Template" msgstr "" #: ../automation_templates.php:301 msgid "Select a Device Template that Devices will be matched to." msgstr "" #: ../automation_templates.php:308 msgid "Choose the Availability Method to use for Discovered Devices." msgstr "" #: ../automation_templates.php:315 ../automation_templates.php:514 msgid "System Description Match" msgstr "" #: ../automation_templates.php:316 msgid "" "This is a unique string that will be matched to a devices sysDescr string to " "pair it to this Discovery Template. Any Perl regular expression can be used " "in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:322 ../automation_templates.php:515 msgid "System Name Match" msgstr "" #: ../automation_templates.php:323 msgid "" "This is a unique string that will be matched to a devices sysName string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:329 msgid "System OID Match" msgstr "" #: ../automation_templates.php:330 msgid "" "This is a unique string that will be matched to a devices sysOid string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:350 #, php-format msgid "Automation Templates [edit: %s]" msgstr "" #: ../automation_templates.php:352 msgid "Automation Templates [new]" msgstr "" #: ../automation_templates.php:403 msgid "Device Automation Templates" msgstr "" #: ../automation_templates.php:512 ../data_sources.php:1410 ../graphs.php:1789 #: ../user_admin.php:1384 ../user_group_admin.php:1109 msgid "Template Name" msgstr "Ð˜Ð¼Ñ Ð¨Ð°Ð±Ð»Ð¾Ð½Ð°" #: ../automation_templates.php:516 msgid "System ObjectId Match" msgstr "" #: ../automation_templates.php:520 ../data_queries.php:595 #: ../data_queries.php:691 ../links.php:382 ../tree.php:1563 msgid "Order" msgstr "" #: ../automation_templates.php:530 msgid "Unknown Template" msgstr "" #: ../automation_templates.php:565 msgid "No Automation Device Templates Found" msgstr "" #: ../automation_tree_rules.php:253 msgid "Click 'Continue' to delete the following Rule(s)." msgstr "" #: ../automation_tree_rules.php:260 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Rules." msgstr "" #: ../automation_tree_rules.php:379 msgid "Created Trees" msgstr "" #: ../automation_tree_rules.php:471 #, php-format msgid "Are you sure you want to DELETE the Rule '%s'?" msgstr "" #: ../automation_tree_rules.php:529 msgid "Eligible Objects" msgstr "" #: ../automation_tree_rules.php:542 #, php-format msgid "Tree Rule Selection [edit: %s]" msgstr "" #: ../automation_tree_rules.php:544 msgid "Tree Rules Selection [new]" msgstr "" #: ../automation_tree_rules.php:706 ../automation_tree_rules.php:731 #: ../automation_tree_rules.php:833 ../include/global_arrays.php:707 #: ../include/global_form.php:1576 ../lib/functions.php:2610 msgid "Tree Rules" msgstr "" #: ../automation_tree_rules.php:844 msgid "Hook into Tree" msgstr "" #: ../automation_tree_rules.php:845 msgid "At Subtree" msgstr "" #: ../automation_tree_rules.php:846 msgid "This Type" msgstr "" #: ../automation_tree_rules.php:847 msgid "Using Grouping" msgstr "" #: ../automation_tree_rules.php:856 msgid "ROOT" msgstr "" #: ../automation_tree_rules.php:872 msgid "No Tree Rules Found" msgstr "" #: ../cdef.php:277 #, fuzzy msgid "Click 'Continue' to delete the following CDEF." msgid_plural "Click 'Continue' to delete all following CDEFs." msgstr[0] "Ð’Ñ‹ уверены что хотите удалить Ñледующие VDEF" msgstr[1] "Ð’Ñ‹ уверены что хотите удалить Ñледующие VDEF" msgstr[2] "" #: ../cdef.php:282 #, fuzzy msgid "Delete CDEF" msgid_plural "Delete CDEFs" msgstr[0] "Удалить" msgstr[1] "Удалить" msgstr[2] "" #: ../cdef.php:286 msgid "" "Click 'Continue' to duplicate the following CDEF. You can optionally change " "the title format for the new CDEF." msgid_plural "" "Click 'Continue' to duplicate the following CDEFs. You can optionally change " "the title format for the new CDEFs." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../cdef.php:292 #, fuzzy msgid "Duplicate CDEF" msgid_plural "Duplicate CDEFs" msgstr[0] "Дублировать" msgstr[1] "Дублировать" msgstr[2] "" #: ../cdef.php:295 msgid "You must select at least one CDEF." msgstr "" #: ../cdef.php:337 msgid "Click 'Continue' to delete the following CDEF Item." msgstr "" #: ../cdef.php:338 #, php-format msgid "CDEF Name: '%s'" msgstr "" #: ../cdef.php:345 msgid "Remove CDEF Item" msgstr "" #: ../cdef.php:424 #, fuzzy #| msgid "Preview" msgid "CDEF Preview" msgstr "ПредпроÑмотр" #: ../cdef.php:430 #, php-format msgid "CDEF Items [edit: %s]" msgstr "" #: ../cdef.php:442 msgid "CDEF Item Type" msgstr "" #: ../cdef.php:443 msgid "Choose what type of CDEF item this is." msgstr "" #: ../cdef.php:464 msgid "CDEF Item Value" msgstr "" #: ../cdef.php:465 msgid "Enter a value for this CDEF item." msgstr "" #: ../cdef.php:558 #, php-format msgid "CDEF [edit: %s]" msgstr "" #: ../cdef.php:560 msgid "CDEF [new]" msgstr "" #: ../cdef.php:581 ../lib/functions.php:1986 msgid "CDEF Items" msgstr "" #: ../cdef.php:585 ../vdef.php:565 msgid "Item Value" msgstr "" #: ../cdef.php:598 ../vdef.php:579 #, php-format msgid "Item #%d" msgstr "" #: ../cdef.php:657 msgid "Delete CDEF Item" msgstr "" #: ../cdef.php:713 ../cdef.php:728 ../cdef.php:842 #: ../include/global_arrays.php:712 ../lib/functions.php:1968 msgid "CDEFs" msgstr "" #: ../cdef.php:851 msgid "CDEF Name" msgstr "" #: ../cdef.php:851 ../data_source_profiles.php:847 msgid "The name of this CDEF." msgstr "" #: ../cdef.php:852 msgid "" "CDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: ../cdef.php:853 msgid "The number of Graphs using this CDEF." msgstr "" #: ../cdef.php:854 ../color.php:701 ../data_input.php:725 #: ../data_queries.php:1156 ../data_source_profiles.php:854 #: ../gprint_presets.php:394 ../vdef.php:848 msgid "Templates Using" msgstr "" #: ../cdef.php:854 msgid "The number of Graphs Templates using this CDEF." msgstr "" #: ../cdef.php:876 msgid "No CDEFs" msgstr "" #: ../clog.php:33 ../clog_user.php:32 msgid "FATAL: YOU DO NO HAVE ACCESS TO THIS AREA OF CACTI" msgstr "" #: ../color.php:170 msgid "Unnamed Color" msgstr "" #: ../color.php:187 #, fuzzy msgid "Click 'Continue' to delete the following Color" msgid_plural "Click 'Continue' to delete the following Colors" msgstr[0] "Ð’Ñ‹ уверены что хотите удалить Ñтих пользователей?" msgstr[1] "Ð’Ñ‹ уверены что хотите удалить Ñтих пользователей?" msgstr[2] "" #: ../color.php:192 #, fuzzy msgid "Delete Color" msgid_plural "Delete Colors" msgstr[0] "Удалить" msgstr[1] "Удалить" msgstr[2] "" #: ../color.php:195 msgid "You must select at least one Color." msgstr "" #: ../color.php:351 msgid "Cacti has imported the following items:" msgstr "" #: ../color.php:365 ../color.php:568 msgid "Import Colors" msgstr "" #: ../color.php:368 msgid "Import Colors from Local File" msgstr "" #: ../color.php:369 msgid "" "Please specify the location of the CSV file containing your Color " "information." msgstr "" #: ../color.php:373 ../lib/html_form.php:463 msgid "Select a File" msgstr "" #: ../color.php:380 msgid "Overwrite Existing Data?" msgstr "" #: ../color.php:381 msgid "" "Should the import process be allowed to overwrite existing data? Please " "note, this does not mean delete old rows, only update duplicate rows." msgstr "" #: ../color.php:384 msgid "Allow Existing Rows to be Updated?" msgstr "" #: ../color.php:389 msgid "Required File Format Notes" msgstr "" #: ../color.php:392 msgid "The file must contain a header row with the following column headings." msgstr "" #: ../color.php:394 msgid "name - The Color Name" msgstr "" #: ../color.php:395 msgid "hex - The Hex Value" msgstr "" #: ../color.php:416 #, php-format msgid "Colors [edit: %s]" msgstr "" #: ../color.php:418 msgid "Colors [new]" msgstr "" #: ../color.php:520 ../color.php:535 ../include/global_arrays.php:714 #: ../lib/functions.php:2034 msgid "Colors" msgstr "Цвета" #: ../color.php:553 msgid "Named Colors" msgstr "" #: ../color.php:568 ../lib/html_form.php:1126 msgid "Import" msgstr "Импорт" #: ../color.php:571 msgid "Export Colors" msgstr "" #: ../color.php:695 ../color_templates.php:74 msgid "Hex" msgstr "" #: ../color.php:695 msgid "The Hex Value for this Color." msgstr "" #: ../color.php:696 msgid "Color Name" msgstr "" #: ../color.php:696 msgid "The name of this Color definition." msgstr "" #: ../color.php:697 msgid "Is this color a named color which are read only." msgstr "" #: ../color.php:697 msgid "Named Color" msgstr "" #: ../color.php:698 ../color_templates.php:73 ../include/global_arrays.php:700 #: ../include/global_form.php:812 ../include/global_form.php:2058 msgid "Color" msgstr "Цвет" #: ../color.php:698 msgid "The Color as shown on the screen." msgstr "" #: ../color.php:699 msgid "" "Colors in use cannot be Deleted. In use is defined as being referenced " "either by a Graph or a Graph Template." msgstr "" #: ../color.php:700 msgid "The number of Graph using this Color." msgstr "" #: ../color.php:701 msgid "The number of Graph Templates using this Color." msgstr "" #: ../color.php:731 msgid "No Colors Found" msgstr "" #: ../color_templates.php:72 msgid "Color Item" msgstr "" #: ../color_templates.php:93 ../lib/api_aggregate.php:1290 #: ../lib/api_aggregate.php:1293 ../lib/api_aggregate.php:1297 #: ../lib/html.php:896 #, php-format msgid "Item # %d" msgstr "" #: ../color_templates.php:132 ../graph_templates_inputs.php:222 #: ../lib/api_aggregate.php:1349 ../lib/html.php:978 msgid "No Items" msgstr "" #: ../color_templates.php:227 msgid "Click 'Continue' to delete the following Color Template" msgid_plural "Click 'Continue' to delete following Color Templates" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../color_templates.php:232 #, fuzzy msgid "Delete Color Template" msgid_plural "Delete Color Templates" msgstr[0] "Удалить шаблоны графиков" msgstr[1] "Удалить шаблоны графиков" msgstr[2] "" #: ../color_templates.php:236 msgid "" "Click 'Continue' to duplicate the following Color Template. You can " "optionally change the title format for the new color template." msgid_plural "" "Click 'Continue' to duplicate following Color Templates. You can optionally " "change the title format for the new color templates." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../color_templates.php:238 ../data_source_profiles.php:272 #: ../data_templates.php:364 ../graph_templates.php:323 #: ../host_templates.php:267 ../vdef.php:276 msgid "Title Format:" msgstr "" #: ../color_templates.php:242 #, fuzzy msgid "Duplicate Color Template" msgid_plural "Duplicate Color Templates" msgstr[0] "Продублировать шаблоны графиков" msgstr[1] "Продублировать шаблоны графиков" msgstr[2] "" #: ../color_templates.php:245 msgid "You must select at least one Color Template." msgstr "" #: ../color_templates.php:278 msgid "Color Template Items [new]" msgstr "" #: ../color_templates.php:289 #, php-format msgid "Color Template Items [edit: %s]" msgstr "" #: ../color_templates.php:322 msgid "Delete Color Item" msgstr "" #: ../color_templates.php:349 #, php-format msgid "Color Template [edit: %s]" msgstr "" #: ../color_templates.php:351 msgid "Color Template [new]" msgstr "" #: ../color_templates.php:432 ../color_templates.php:445 #: ../lib/functions.php:2508 msgid "Color Templates" msgstr "" #: ../color_templates.php:548 msgid "" "Color Templates that are in use cannot be Deleted. In use is defined as " "being referenced by an Aggregate Template." msgstr "" #: ../color_templates.php:573 msgid "No Color Templates Found" msgstr "" #: ../color_templates_items.php:273 msgid "Click 'Continue' to delete the following Color Template Color." msgstr "" #: ../color_templates_items.php:274 msgid "Color Name:" msgstr "" #: ../color_templates_items.php:275 msgid "Color Hex:" msgstr "" #: ../color_templates_items.php:281 msgid "Remove Color Item" msgstr "" #: ../color_templates_items.php:339 #, php-format msgid "Color Template Items [edit Report Item: %s]" msgstr "" #: ../color_templates_items.php:342 #, php-format msgid "Color Template Items [new Report Item: %s]" msgstr "" #: ../data_input.php:212 msgid "Click 'Continue' to delete the following Data Input Method" msgid_plural "Click 'Continue' to delete the following Data Input Method" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_input.php:218 #, fuzzy msgid "Delete Data Input Method" msgid_plural "Delete Data Input Methods" msgstr[0] "Метод Ввода Данных" msgstr[1] "Метод Ввода Данных" msgstr[2] "" #: ../data_input.php:220 msgid "You must select at least one data input method." msgstr "" #: ../data_input.php:259 msgid "Click 'Continue' to delete the following Data Input Field." msgstr "" #: ../data_input.php:260 #, php-format msgid "Field Name: %s" msgstr "" #: ../data_input.php:261 #, php-format msgid "Friendly Name: %s" msgstr "" #: ../data_input.php:267 ../host_templates.php:335 ../host_templates.php:395 msgid "Remove Data Input Field" msgstr "" #: ../data_input.php:362 #, php-format msgid "Output Fields [edit: %s]" msgstr "" #: ../data_input.php:363 ../include/global_form.php:461 msgid "Output Field" msgstr "" #: ../data_input.php:365 #, php-format msgid "Input Fields [edit: %s]" msgstr "" #: ../data_input.php:366 msgid "Input Field" msgstr "" #: ../data_input.php:432 #, php-format msgid "Data Input Methods [edit: %s]" msgstr "" #: ../data_input.php:434 msgid "Data Input Methods [new]" msgstr "" #: ../data_input.php:444 ../include/global_arrays.php:316 msgid "SNMP Get" msgstr "" #: ../data_input.php:447 ../include/global_arrays.php:317 msgid "SNMP Query" msgstr "" #: ../data_input.php:450 ../include/global_arrays.php:319 msgid "Script Query" msgstr "" #: ../data_input.php:453 ../include/global_arrays.php:321 msgid "Script Query - Script Server" msgstr "" #: ../data_input.php:466 msgid "Input Fields" msgstr "" #: ../data_input.php:469 ../data_input.php:503 msgid "Field Order" msgstr "" #: ../data_input.php:470 ../data_input.php:504 ../include/global_form.php:275 msgid "Friendly Name" msgstr "" #: ../data_input.php:484 ../data_input.php:519 msgid "(Not In Use)" msgstr "" #: ../data_input.php:496 msgid "No Input Fields" msgstr "" #: ../data_input.php:500 msgid "Output Fields" msgstr "" #: ../data_input.php:505 msgid "Update RRA" msgstr "" #: ../data_input.php:534 msgid "No Output Fields" msgstr "" #: ../data_input.php:556 ../host_templates.php:600 msgid "Delete Data Input Field" msgstr "" #: ../data_input.php:610 ../include/global_arrays.php:693 #: ../include/global_arrays.php:861 ../lib/functions.php:2172 msgid "Data Input Methods" msgstr "Метод Ввода Данных" #: ../data_input.php:625 ../data_input.php:713 msgid "Input Methods" msgstr "" #: ../data_input.php:722 msgid "Data Input Name" msgstr "" #: ../data_input.php:722 msgid "The name of this Data Input Method." msgstr "" #: ../data_input.php:723 msgid "" "Data Inputs that are in use cannot be Deleted. In use is defined as being " "referenced either by a Data Source or a Data Template." msgstr "" #: ../data_input.php:724 ../data_source_profiles.php:853 #: ../data_templates.php:912 msgid "Data Sources Using" msgstr "" #: ../data_input.php:724 msgid "The number of Data Sources that use this Data Input Method." msgstr "" #: ../data_input.php:725 msgid "The number of Data Templates that use this Data Input Method." msgstr "" #: ../data_input.php:726 ../data_queries.php:1157 #: ../include/global_arrays.php:985 ../include/global_form.php:385 #: ../include/global_form.php:1304 msgid "Data Input Method" msgstr "Метод Ввода Данных" #: ../data_input.php:726 msgid "The method used to gather information for this Data Input Method." msgstr "" #: ../data_input.php:749 msgid "No Data Input Methods Found" msgstr "" #: ../data_queries.php:316 #, fuzzy msgid "Click 'Continue' to delete the following Data Query." msgid_plural "Click 'Continue' to delete following Data Queries." msgstr[0] "Ð’Ñ‹ уверены что хотите удалить Ñтих пользователей?" msgstr[1] "Ð’Ñ‹ уверены что хотите удалить Ñтих пользователей?" msgstr[2] "" #: ../data_queries.php:322 msgid "Delete Data Query" msgid_plural "Delete Data Query" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_queries.php:324 msgid "You must select at least one data query." msgstr "" #: ../data_queries.php:419 msgid "Click 'Continue' to delete the following Data Query Graph Association." msgstr "" #: ../data_queries.php:420 #, php-format msgid "Graph Name: %s" msgstr "" #: ../data_queries.php:426 ../vdef.php:333 msgid "Remove VDEF Item" msgstr "" #: ../data_queries.php:479 #, php-format msgid "Associated Graph/Data Templates [edit: %s]" msgstr "" #: ../data_queries.php:502 msgid "Associated Data Templates" msgstr "" #: ../data_queries.php:520 #, fuzzy, php-format #| msgid "Graph Templates" msgid "Data Template - %s" msgstr "Шаблоны Графиков" #: ../data_queries.php:550 ../data_sources.php:881 ../data_templates.php:516 #: ../include/global_arrays.php:698 ../include/global_form.php:797 #: ../lib/api_aggregate.php:1215 ../lib/html.php:856 msgid "Data Source" msgstr "ИÑточник Данных" #: ../data_queries.php:585 msgid "Suggested Values - Graph Names" msgstr "" #: ../data_queries.php:596 ../data_queries.php:692 msgid "Equation" msgstr "Уравнение" #: ../data_queries.php:647 ../data_queries.php:746 msgid "No Suggested Values Found" msgstr "" #: ../data_queries.php:656 ../data_queries.php:755 #: ../include/global_form.php:2093 ../include/global_form.php:2135 #: ../lib/api_automation.php:1333 ../utilities.php:1409 msgid "Field Name" msgstr "Ð˜Ð¼Ñ Ð¿Ð¾Ð»Ñ" #: ../data_queries.php:662 ../data_queries.php:761 msgid "Suggested Value" msgstr "" #: ../data_queries.php:668 ../data_queries.php:767 ../host.php:762 #: ../host.php:879 ../host_templates.php:515 ../host_templates.php:569 #: ../lib/html.php:37 ../lib/html_filter.php:55 msgid "Add" msgstr "Добавить" #: ../data_queries.php:668 msgid "Add Graph Title Suggested Name" msgstr "" #: ../data_queries.php:678 msgid "Suggested Values - Data Source Names" msgstr "" #: ../data_queries.php:767 msgid "Add Data Source Name Suggested Name" msgstr "" #: ../data_queries.php:874 #, php-format msgid "Data Queries [edit: %s]" msgstr "" #: ../data_queries.php:876 msgid "Data Queries [new]" msgstr "" #: ../data_queries.php:896 msgid "Successfully located XML file" msgstr "" #: ../data_queries.php:899 msgid "Could not locate XML file." msgstr "" #: ../data_queries.php:907 ../host.php:681 ../host_templates.php:466 #: ../lib/functions.php:2226 msgid "Associated Graph Templates" msgstr "" #: ../data_queries.php:911 ../graph_templates.php:761 ../graphs_new.php:597 #: ../host.php:685 ../lib/api_automation.php:563 msgid "Graph Template Name" msgstr "" #: ../data_queries.php:913 msgid "Mapping ID" msgstr "" #: ../data_queries.php:954 msgid "Mapped Graph Templates with Graphs are read only" msgstr "" #: ../data_queries.php:961 msgid "No Graph Templates Defined." msgstr "" #: ../data_queries.php:985 msgid "Delete Associated Graph" msgstr "" #: ../data_queries.php:1039 ../data_queries.php:1054 ../data_queries.php:1143 #: ../include/global_arrays.php:692 ../include/global_arrays.php:862 #: ../lib/api_automation.php:1027 ../lib/functions.php:2208 msgid "Data Queries" msgstr "" #: ../data_queries.php:1152 ../host.php:776 ../utilities.php:1409 msgid "Data Query Name" msgstr "" #: ../data_queries.php:1152 msgid "The name of this Data Query." msgstr "" #: ../data_queries.php:1153 ../graph_templates.php:762 msgid "" "The internal ID for this Graph Template. Useful when performing automation " "or debugging." msgstr "" #: ../data_queries.php:1154 msgid "" "Data Queries that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: ../data_queries.php:1155 msgid "The number of Graphs using this Data Query." msgstr "" #: ../data_queries.php:1156 msgid "The number of Graphs Templates using this Data Query." msgstr "" #: ../data_queries.php:1157 msgid "" "The Data Input Method used to collect data for Data Sources associated with " "this Data Query." msgstr "" #: ../data_queries.php:1181 msgid "No Data Queries Found" msgstr "" #: ../data_source_profiles.php:261 msgid "Click 'Continue' to delete the following Data Source Profile" msgid_plural "Click 'Continue' to delete following Data Source Profiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_source_profiles.php:266 msgid "Delete Data Source Profile" msgid_plural "Delete Data Source Profiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_source_profiles.php:270 msgid "" "Click 'Continue' to duplicate the following Data Source Profile. You can " "optionally change the title format for the new Data Source Profile" msgid_plural "" "Click 'Continue' to duplicate following Data Source Profiles. You can " "optionally change the title format for the new Data Source Profiles." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_source_profiles.php:276 msgid "Duplicate Data Source Profile" msgid_plural "Duplicate Date Source Profiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_source_profiles.php:279 msgid "You must select at least one Data Source Profile." msgstr "" #: ../data_source_profiles.php:318 msgid "Click 'Continue' to delete the following Data Source Profile RRA." msgstr "" #: ../data_source_profiles.php:319 #, php-format msgid "Profile Name: %s" msgstr "" #: ../data_source_profiles.php:325 msgid "Remove Data Source Profile RRA" msgstr "" #: ../data_source_profiles.php:374 ../data_source_profiles.php:384 msgid "Each Insert is New Row" msgstr "" #: ../data_source_profiles.php:393 #, php-format msgid "RRA [edit: %s]" msgstr "" #: ../data_source_profiles.php:460 #, php-format msgid "Data Source Profile [edit: %s]" msgstr "" #: ../data_source_profiles.php:462 msgid "Data Source Profile [new]" msgstr "" #: ../data_source_profiles.php:480 msgid "Data Source Profile RRAs (press save to update timespans)" msgstr "" #: ../data_source_profiles.php:482 msgid "Data Source Profile RRAs (Read Only)" msgstr "" #: ../data_source_profiles.php:487 msgid "Effective Timespan" msgstr "" #: ../data_source_profiles.php:488 msgid "Steps" msgstr "" #: ../data_source_profiles.php:489 ../graphs_new.php:526 #: ../include/global_form.php:121 ../lib/html.php:323 ../lib/html_filter.php:73 #: ../lib/rrd.php:2689 ../pollers.php:523 ../utilities.php:468 #: ../utilities.php:1322 msgid "Rows" msgstr "Строк" #: ../data_source_profiles.php:535 msgid "Select Consolidation Function(s)" msgstr "" #: ../data_source_profiles.php:561 msgid "Delete Data Source Profile Item" msgstr "" #: ../data_source_profiles.php:621 ../include/global_arrays.php:1088 #: ../include/global_settings.php:1027 #, php-format msgid "%d Years" msgstr "%d Года" #: ../data_source_profiles.php:621 msgid "1 Year" msgstr "1 Год" #: ../data_source_profiles.php:630 ../include/global_arrays.php:1082 #: ../rrdcleaner.php:489 #, php-format msgid "%d Month" msgstr "" #: ../data_source_profiles.php:630 ../include/global_arrays.php:1083 #: ../include/global_arrays.php:1084 ../include/global_arrays.php:1085 #: ../include/global_arrays.php:1086 ../rrdcleaner.php:490 #: ../rrdcleaner.php:491 ../rrdcleaner.php:492 #, php-format msgid "%d Months" msgstr "%d МеÑÑца" #: ../data_source_profiles.php:639 ../include/global_arrays.php:1080 #: ../rrdcleaner.php:485 ../rrdcleaner.php:486 #, php-format msgid "%d Week" msgstr "" #: ../data_source_profiles.php:639 ../include/global_arrays.php:1081 #: ../rrdcleaner.php:487 ../rrdcleaner.php:488 #, php-format msgid "%d Weeks" msgstr "%d Ðедели" #: ../data_source_profiles.php:648 ../include/global_arrays.php:1076 #, php-format msgid "%d Day" msgstr "" #: ../data_source_profiles.php:648 ../include/global_arrays.php:1077 #: ../include/global_arrays.php:1078 ../include/global_arrays.php:1079 #: ../include/global_settings.php:1022 ../include/global_settings.php:1023 #: ../include/global_settings.php:1024 ../include/global_settings.php:1025 #: ../include/global_settings.php:1036 ../include/global_settings.php:1037 #: ../include/global_settings.php:1038 ../include/global_settings.php:1039 #, php-format msgid "%d Days" msgstr "%d ДнÑ(ей)" #: ../data_source_profiles.php:656 ../include/global_arrays.php:494 #: ../include/global_arrays.php:529 ../include/global_arrays.php:1117 #: ../include/global_arrays.php:1138 ../include/global_arrays.php:1171 #: ../include/global_arrays.php:1180 ../include/global_arrays.php:1206 #: ../include/global_settings.php:1093 msgid "1 Hour" msgstr "1 ЧаÑ" #: ../data_source_profiles.php:710 ../include/global_arrays.php:869 msgid "Data Source Profiles" msgstr "" #: ../data_source_profiles.php:725 ../data_source_profiles.php:838 msgid "Profiles" msgstr "" #: ../data_source_profiles.php:743 ../data_templates.php:794 msgid "Has Data Sources" msgstr "" #: ../data_source_profiles.php:847 msgid "Data Source Profile Name" msgstr "" #: ../data_source_profiles.php:848 msgid "Is this the default Profile for all new Data Templates?" msgstr "" #: ../data_source_profiles.php:849 msgid "" "Profiles that are in use cannot be Deleted. In use is defined as being " "referenced by a Data Source or a Data Template." msgstr "" #: ../data_source_profiles.php:850 msgid "Profiles that are in use by Data Sources become read only for now." msgstr "" #: ../data_source_profiles.php:850 ../include/global_form.php:190 msgid "Read Only" msgstr "" #: ../data_source_profiles.php:851 ../data_sources.php:1407 #: ../include/global_settings.php:855 msgid "Poller Interval" msgstr "ЧаÑтота ОпроÑа" #: ../data_source_profiles.php:851 msgid "The Polling Frequency for the Profile" msgstr "" #: ../data_source_profiles.php:852 ../include/global_form.php:52 #: ../include/global_form.php:453 msgid "Heartbeat" msgstr "" #: ../data_source_profiles.php:852 msgid "" "The Amount of Time, in seconds, without good data before Data is stored as " "Unknown" msgstr "" #: ../data_source_profiles.php:853 msgid "The number of Data Sources using this Profile." msgstr "" #: ../data_source_profiles.php:854 msgid "The number of Data Templates using this Profile." msgstr "" #: ../data_source_profiles.php:886 msgid "No Data Source Profiles" msgstr "" #: ../data_sources.php:36 ../data_sources.php:478 ../graphs.php:54 msgid "Change Device" msgstr "" #: ../data_sources.php:37 ../graphs.php:55 msgid "Reapply Suggested Names" msgstr "Применить Предлагаемые Имена" #: ../data_sources.php:446 msgid "Click 'Continue' to delete the following Data Source" msgid_plural "Click 'Continue' to delete following Data Sources" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_sources.php:450 msgid "The following graph is using these data sources:" msgid_plural "The following graphs are using these data sources:" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_sources.php:459 msgid "Leave the Graph untouched." msgid_plural "Leave all Graphs untouched." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_sources.php:460 msgid "" "Delete all Graph Items that reference this Data Source." msgid_plural "" "Delete all Graph Items that reference these Data Sources." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_sources.php:461 msgid "Delete all Graphs that reference this Data Source." msgid_plural "" "Delete all Graphs that reference these Data Sources." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_sources.php:468 #, fuzzy msgid "Delete Data Source" msgid_plural "Delete Data Sources" msgstr[0] "ИÑточник Данных" msgstr[1] "ИÑточник Данных" msgstr[2] "" #: ../data_sources.php:472 msgid "Choose a new Device for this Data Source and click 'Continue'." msgid_plural "Choose a new Device for these Data Sources and click 'Continue'" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_sources.php:474 msgid "New Device:" msgstr "" #: ../data_sources.php:482 msgid "Click 'Continue' to enable the following Data Source." msgid_plural "Click 'Continue' to enable all following Data Sources." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_sources.php:487 #, fuzzy msgid "Enable Data Source" msgid_plural "Enable Data Sources" msgstr[0] "ИÑточник Данных" msgstr[1] "ИÑточник Данных" msgstr[2] "" #: ../data_sources.php:491 msgid "Click 'Continue' to disable the following Data Source." msgid_plural "Click 'Continue' to disable all following Data Sources." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_sources.php:496 msgid "Disable Data Source" msgstr "" #: ../data_sources.php:500 msgid "" "Click 'Continue' to re-apply the suggested name to the following Data Source." msgid_plural "" "Click 'Continue' to re-apply the suggested names to all following Data " "Sources." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../data_sources.php:505 msgid "Reapply Suggested Naming to Data Source" msgstr "" #: ../data_sources.php:514 msgid "You must select at least one data source." msgstr "" #: ../data_sources.php:572 ../data_templates.php:631 #, php-format msgid "Custom Data [data input: %s]" msgstr "" #: ../data_sources.php:605 #, php-format msgid "(From Device: %s)" msgstr "" #: ../data_sources.php:608 msgid "(From Data Template)" msgstr "" #: ../data_sources.php:609 msgid "Nothing Entered" msgstr "" #: ../data_sources.php:624 ../data_templates.php:684 msgid "No Input Fields for the Selected Data Input Source" msgstr "" #: ../data_sources.php:700 #, php-format msgid "Data Source %d does not exist." msgstr "" #: ../data_sources.php:705 #, php-format msgid "Data Template Selection [edit: %s]" msgstr "" #: ../data_sources.php:711 msgid "Data Template Selection [new]" msgstr "" #: ../data_sources.php:744 msgid "Turn Off Data Source Debug Mode." msgstr "" #: ../data_sources.php:744 msgid "Turn On Data Source Debug Mode." msgstr "" #: ../data_sources.php:745 msgid "Turn Off Data Source Info Mode." msgstr "" #: ../data_sources.php:745 msgid "Turn On Data Source Info Mode." msgstr "" #: ../data_sources.php:748 msgid "Edit Data Template." msgstr "" #: ../data_sources.php:751 ../graphs.php:1294 msgid "Edit Device." msgstr "" #: ../data_sources.php:814 msgid "Selected Data Template" msgstr "" #: ../data_sources.php:815 #, php-format msgid "" "The name given to this data template. Please note that you may only change " "Graph Templates to a 100% compatible Graph Template, which means that it " "includes identical Data Sources." msgstr "" #: ../data_sources.php:823 msgid "Choose the Device that this Data Source belongs to." msgstr "" #: ../data_sources.php:869 msgid "Supplemental Data Template Data" msgstr "" #: ../data_sources.php:871 msgid "Data Source Fields" msgstr "" #: ../data_sources.php:872 msgid "Data Source Item Fields" msgstr "" #: ../data_sources.php:873 msgid "Custom Data" msgstr "" #: ../data_sources.php:957 #, php-format msgid "Data Source Item %s" msgstr "" #: ../data_sources.php:960 msgid "New" msgstr "Ðовый" #: ../data_sources.php:1019 msgid "Data Source Debug" msgstr "" #: ../data_sources.php:1039 msgid "RRDtool Tune Info" msgstr "" #: ../data_sources.php:1065 msgid "External" msgstr "" #: ../data_sources.php:1067 ../include/global_arrays.php:519 #: ../include/global_arrays.php:520 ../include/global_arrays.php:521 #: ../include/global_arrays.php:841 ../include/global_arrays.php:842 #: ../include/global_arrays.php:843 ../include/global_arrays.php:844 #: ../include/global_arrays.php:1160 ../include/global_arrays.php:1161 #: ../include/global_arrays.php:1162 ../include/global_arrays.php:1163 #: ../include/global_arrays.php:1164 ../include/global_arrays.php:1197 #: ../include/global_arrays.php:1198 ../include/global_arrays.php:1210 #: ../include/global_arrays.php:1211 ../include/global_arrays.php:1212 #: ../include/global_arrays.php:1213 ../include/global_arrays.php:1214 #: ../include/global_settings.php:1837 #, php-format msgid "%d Seconds" msgstr "" #: ../data_sources.php:1069 ../include/global_arrays.php:522 #: ../include/global_arrays.php:845 ../include/global_arrays.php:1165 #: ../include/global_arrays.php:1199 ../include/global_arrays.php:1215 #: ../include/global_settings.php:1087 ../include/global_settings.php:1837 msgid "1 Minute" msgstr "" #: ../data_sources.php:1196 ../graphs_items.php:292 #, php-format msgid "Data Sources [%s]" msgstr "" #: ../data_sources.php:1196 msgid "No Device" msgstr "" #: ../data_sources.php:1235 ../data_sources.php:1261 ../data_sources.php:1277 #: ../data_templates.php:764 ../graph_view.php:781 ../graphs_new.php:504 #: ../lib/clog_webapi.php:331 ../lib/html_graph.php:395 #: ../lib/html_reports.php:290 ../lib/html_tree.php:842 ../plugins.php:286 #: ../settings.php:196 ../settings.php:213 ../settings.php:236 #: ../utilities.php:636 ../utilities.php:1000 msgid "All" msgstr "Ð’Ñе" #: ../data_sources.php:1257 ../data_templates.php:760 msgid "Profile" msgstr "" #: ../data_sources.php:1273 ../data_sources.php:1279 msgid "Orphaned" msgstr "" #: ../data_sources.php:1283 ../data_sources.php:1396 ../host.php:1502 #: ../include/global_arrays.php:687 ../lib/api_automation.php:275 #: ../lib/functions.php:2118 ../user_admin.php:1242 ../user_group_admin.php:966 #: ../utilities.php:273 msgid "Data Sources" msgstr "ИÑточники Данных" #: ../data_sources.php:1405 ../utilities.php:1698 msgid "Data Source Name" msgstr "" #: ../data_sources.php:1405 msgid "" "The name of this Data Source. Generally programtically generated from the " "Data Template definition." msgstr "" #: ../data_sources.php:1406 msgid "" "The internal database ID for this Data Source. Useful when performing " "automation or debugging." msgstr "" #: ../data_sources.php:1407 msgid "The frequency that data is collected for this Data Source." msgstr "" #: ../data_sources.php:1408 msgid "If this Data Source is no long in use by Graphs, it can be Deleted." msgstr "" #: ../data_sources.php:1409 ../data_templates.php:934 ../plugins.php:38 #: ../plugins.php:287 msgid "Active" msgstr "Ðктивный" #: ../data_sources.php:1409 msgid "" "Whether or not data will be collected for this Data Source. Controlled at " "the Data Template level." msgstr "" #: ../data_sources.php:1410 msgid "The Data Template that this Data Source was based upon." msgstr "" #: ../data_sources.php:1457 msgid "No Data Sources Found" msgstr "" #: ../data_templates.php:35 msgid "Change Profile" msgstr "" #: ../data_templates.php:353 msgid "" "Click 'Continue' to delete the following Data Template(s). Any data sources " "attached to these templates will become individual Data Source(s) and all " "Templating benefits will be removed." msgstr "" #: ../data_templates.php:358 msgid "Delete Data Template(s)" msgstr "" #: ../data_templates.php:362 msgid "" "Click 'Continue' to duplicate the following Data Template(s). You can " "optionally change the title format for the new Data Template(s)." msgstr "" #: ../data_templates.php:364 msgid "template_title" msgstr "" #: ../data_templates.php:368 msgid "Duplicate Data Template(s)" msgstr "" #: ../data_templates.php:372 msgid "" "Click 'Continue' to change the default Data Source Profile for the following " "Data Template(s)." msgstr "" #: ../data_templates.php:374 msgid "New Data Source Profile" msgstr "" #: ../data_templates.php:380 msgid "" "NOTE: This change only will affect future Data Sources and does not alter " "existing Data Sources." msgstr "" #: ../data_templates.php:384 msgid "Change Data Source Profile" msgstr "" #: ../data_templates.php:387 msgid "You must select at least one data template." msgstr "" #: ../data_templates.php:499 #, php-format msgid "Data Templates [edit: %s]" msgstr "" #: ../data_templates.php:501 msgid "Data Templates [new]" msgstr "" #: ../data_templates.php:527 msgid "This field is always templated." msgstr "" #: ../data_templates.php:531 ../data_templates.php:603 #: ../data_templates.php:671 msgid "Use Per-Data Source Value (Ignore this Value)" msgstr "" #: ../data_templates.php:584 #, php-format msgid "Data Source Item [%s]" msgstr "" #: ../data_templates.php:676 msgid "Value will be derived from the device if this field is left empty." msgstr "" #: ../data_templates.php:745 ../data_templates.php:776 #: ../data_templates.php:900 ../include/global_arrays.php:873 #: ../lib/functions.php:2100 msgid "Data Templates" msgstr "" #: ../data_templates.php:909 msgid "Data Template Name" msgstr "" #: ../data_templates.php:909 msgid "The name of this Data Template." msgstr "" #: ../data_templates.php:910 msgid "" "The internal database ID for this Data Template. Useful when performing " "automation or debugging." msgstr "" #: ../data_templates.php:911 msgid "" "Data Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Data Source." msgstr "" #: ../data_templates.php:912 msgid "The number of Data Sources using this Data Template." msgstr "" #: ../data_templates.php:913 msgid "Input Method" msgstr "" #: ../data_templates.php:913 msgid "The method that is used to place Data into the Data Source RRDfile." msgstr "" #: ../data_templates.php:914 msgid "Profile Name" msgstr "" #: ../data_templates.php:914 msgid "The default Data Source Profile for this Data Template." msgstr "" #: ../data_templates.php:915 msgid "" "Data Sources based on Inactive Data Templates will not be updated when the " "poller runs." msgstr "" #: ../data_templates.php:939 msgid "No Data Templates Found" msgstr "" #: ../gprint_presets.php:148 msgid "Click 'Continue' to delete the folling GPRINT Preset(s)." msgstr "" #: ../gprint_presets.php:153 msgid "Delete GPRINT Preset(s)" msgstr "" #: ../gprint_presets.php:156 msgid "You must select at least one GPRINT Preset." msgstr "" #: ../gprint_presets.php:185 #, php-format msgid "GPRINT Presets [edit: %s]" msgstr "" #: ../gprint_presets.php:187 msgid "GPRINT Presets [new]" msgstr "" #: ../gprint_presets.php:253 ../lib/functions.php:1950 msgid "GPRINT Presets" msgstr "" #: ../gprint_presets.php:268 ../gprint_presets.php:381 #: ../include/global_arrays.php:715 msgid "GPRINTs" msgstr "" #: ../gprint_presets.php:390 msgid "GPRINT Preset Name" msgstr "" #: ../gprint_presets.php:390 msgid "The name of this GPRINT Preset." msgstr "" #: ../gprint_presets.php:391 #, fuzzy msgid "Format" msgstr "формат" #: ../gprint_presets.php:391 msgid "The GPRINT format string." msgstr "" #: ../gprint_presets.php:392 msgid "" "GPRINTs that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: ../gprint_presets.php:393 msgid "The number of Graphs using this GPRINT." msgstr "" #: ../gprint_presets.php:394 msgid "The number of Graphs Templates using this GPRINT." msgstr "" #: ../gprint_presets.php:418 msgid "No GPRINT Presets" msgstr "" #: ../graph.php:94 msgid "Viewing Graph" msgstr "" #: ../graph.php:124 ../lib/html.php:292 msgid "Graph Details, Zooming and Debugging Utilities" msgstr "" #: ../graph.php:125 msgid "CSV Export" msgstr "" #: ../graph.php:126 msgid "Real-time" msgstr "" #: ../graph.php:179 msgid "Utility View" msgstr "" #: ../graph.php:277 msgid "Graph Utility View" msgstr "" #: ../graph.php:290 msgid "Graph Source/Properties" msgstr "" #: ../graph.php:294 msgid "Graph Data" msgstr "" #: ../graph.php:307 ../graph_realtime.php:267 ../lib/clog_webapi.php:351 #: ../lib/html_graph.php:319 ../lib/html_tree.php:765 ../lib/html_tree.php:785 #: ../utilities.php:1020 ../utilities.php:1904 msgid "Refresh" msgstr "Обновить" #: ../graph.php:429 msgid "RRDtool Graph Syntax" msgstr "" #: ../graph_realtime.php:195 msgid "Real-time has been disabled by your administrator." msgstr "" #: ../graph_realtime.php:202 msgid "" "The Image Cache Directory does not exist. Please first create it and set " "permissions and then attempt to open another Real-time graph." msgstr "" #: ../graph_realtime.php:209 msgid "" "The Image Cache Directory is not writable. Please set permissions and then " "attempt to open another Real-time graph." msgstr "" #: ../graph_realtime.php:224 msgid "Cacti Real-time Graphing" msgstr "" #: ../graph_realtime.php:253 ../lib/html_graph.php:327 ../lib/html_tree.php:773 msgid "Window" msgstr "Окно" #: ../graph_realtime.php:283 #, php-format msgid "%d seconds left." msgstr "" #: ../graph_realtime.php:311 msgid "seconds left." msgstr "" #: ../graph_templates.php:35 msgid "Resize" msgstr "Изменить размер" #: ../graph_templates.php:36 msgid "Sync Graphs" msgstr "" #: ../graph_templates.php:312 msgid "" "Click 'Continue' to delete the following Graph Template(s). Any Graph(s) " "associated with the Template(s) will become individual Graph(s)." msgstr "" #: ../graph_templates.php:317 msgid "Delete Graph Template(s)" msgstr "Удалить шаблоны графиков" #: ../graph_templates.php:321 msgid "" "Click 'Continue' to duplicate the following Graph Template(s). You can " "optionally change the title format for the new Graph Template(s)." msgstr "" #: ../graph_templates.php:327 msgid "Duplicate Graph Template(s)" msgstr "Продублировать шаблоны графиков" #: ../graph_templates.php:331 msgid "" "Click 'Continue' to resize the following Graph Template(s) and Graph(s) to " "the Height and Width below. The defaults below are maintained in Settings." msgstr "" #: ../graph_templates.php:340 ../lib/html_reports.php:117 msgid "Graph Height" msgstr "Ð’Ñ‹Ñота графика" #: ../graph_templates.php:342 ../lib/html_reports.php:109 msgid "Graph Width" msgstr "Ширина графика" #: ../graph_templates.php:347 msgid "Resize Selected Graph Template(s)" msgstr "Изменить размер выбранных шаблонов" #: ../graph_templates.php:351 msgid "" "Click 'Continue' to Synchronize your Graphs the following Graph Template(s). " "This function is important if you have Graphs that exist with multiple " "versions of a Graph Template and wish to make them all common in appearance." msgstr "" #: ../graph_templates.php:356 msgid "Synchronize Graphs to Graph Template(s)" msgstr "" #: ../graph_templates.php:359 msgid "ERROR: You must select at least one graph template." msgstr "ОШИБКÐ: Ð’Ñ‹ должны выбрать как минимум один шаблон графика." #: ../graph_templates.php:413 #, php-format msgid "Graph Template Items [edit: %s]" msgstr "" #: ../graph_templates.php:420 ../lib/functions.php:2070 msgid "Graph Item Inputs" msgstr "" #: ../graph_templates.php:446 msgid "No Inputs" msgstr "" #: ../graph_templates.php:491 #, php-format msgid "Template [edit: %s]" msgstr "Шаблон [редактировать: %s]" #: ../graph_templates.php:493 msgid "Template [new]" msgstr "Шаблон [новый]" #: ../graph_templates.php:509 msgid "Graph Template Options" msgstr "" #: ../graph_templates.php:524 msgid "Use Per-Graph Value (Ignore this Value)" msgstr "" #: ../graph_templates.php:619 ../graph_templates.php:634 #: ../graph_templates.php:752 ../graphs_new.php:592 #: ../include/global_arrays.php:872 ../lib/functions.php:2046 #: ../user_admin.php:1376 ../user_group_admin.php:1101 msgid "Graph Templates" msgstr "Шаблоны Графиков" #: ../graph_templates.php:761 msgid "The name of this Graph Template." msgstr "" #: ../graph_templates.php:763 msgid "" "Graph Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Graph." msgstr "" #: ../graph_templates.php:764 msgid "The number of Graphs using this Graph Template." msgstr "" #: ../graph_templates.php:765 msgid "The default size of the resulting Graphs." msgstr "" #: ../graph_templates.php:766 msgid "Image Format" msgstr "Формат ИзображениÑ" #: ../graph_templates.php:766 msgid "The default image format for the resulting Graphs." msgstr "" #: ../graph_templates.php:767 msgid "The vertical label for the resulting Graphs." msgstr "" #: ../graph_templates.php:767 msgid "Vertical Label" msgstr "Ð’ÐµÑ€Ñ‚Ð¸ÐºÐ°Ð»ÑŒÐ½Ð°Ñ ÐœÐµÑ‚ÐºÐ°" #: ../graph_templates.php:793 msgid "No Graph Templates Found" msgstr "" #: ../graph_templates_inputs.php:145 #, php-format msgid "Graph Item Inputs [edit graph: %s]" msgstr "" #: ../graph_templates_inputs.php:191 msgid "Associated Graph Items" msgstr "" #: ../graph_templates_items.php:99 ../graph_templates_items.php:125 #: ../graphs_items.php:118 msgid "Cur:" msgstr "" #: ../graph_templates_items.php:106 ../graph_templates_items.php:132 #: ../graphs_items.php:125 msgid "Avg:" msgstr "" #: ../graph_templates_items.php:113 ../graph_templates_items.php:146 #: ../graphs_items.php:139 msgid "Max:" msgstr "" #: ../graph_templates_items.php:139 ../graphs_items.php:132 msgid "Min:" msgstr "" #: ../graph_templates_items.php:391 #, php-format msgid "Graph Template Items [edit graph: %s]" msgstr "" #: ../graph_view.php:242 msgid "YOU DO NOT HAVE RIGHTS FOR TREE VIEW" msgstr "У Ð’ÐС ÐЕДОСТÐТОЧÐО ПРÐÐ’ ДЛЯ ПРОСМОТРРДЕРЕВÐ" #: ../graph_view.php:320 msgid "YOU DO NOT HAVE RIGHTS FOR PREVIEW VIEW" msgstr "" #: ../graph_view.php:326 msgid "Graph Preview Filters" msgstr "" #: ../graph_view.php:326 msgid "[ Custom Graph List Applied - Filtering from List ]" msgstr "" #: ../graph_view.php:422 msgid "YOU DO NOT HAVE RIGHTS FOR LIST VIEW" msgstr "" #: ../graph_view.php:509 msgid "Graph List View Filters" msgstr "" #: ../graph_view.php:509 msgid "[ Custom Graph List Applied - Filter FROM List ]" msgstr "" #: ../graph_view.php:528 ../graph_view.php:770 ../graph_view.php:775 #: ../lib/html_graph.php:163 ../lib/html_graph.php:384 #: ../lib/html_graph.php:389 ../lib/html_tree.php:615 ../lib/html_tree.php:831 #: ../lib/html_tree.php:836 msgid "All Graphs & Templates" msgstr "" #: ../graph_view.php:577 ../graph_view.php:654 msgid "View" msgstr "Вид" #: ../graph_view.php:577 ../graph_view.php:654 ../include/global_arrays.php:853 #: ../lib/clog_webapi.php:249 msgid "View Graphs" msgstr "" #: ../graph_view.php:619 msgid "Graph Size" msgstr "" #: ../graph_view.php:633 msgid "Aggregated Device" msgstr "" #: ../graph_view.php:636 #, fuzzy msgid "Non-Device" msgstr "Ðет УÑтройÑтв" #: ../graph_view.php:637 msgid "Not Applicable" msgstr "" #: ../graph_view.php:772 ../lib/html_graph.php:386 ../lib/html_tree.php:833 #: ../settings.php:227 msgid "Templates Selected" msgstr "" #: ../graphs.php:49 ../graphs.php:845 ../lib/functions.php:1920 msgid "Change Graph Template" msgstr "Изменение Шаблона Графика" #: ../graphs.php:56 msgid "Create Aggregate Graph" msgstr "" #: ../graphs.php:57 msgid "Create Aggregate from Template" msgstr "" #: ../graphs.php:58 ../graphs.php:1094 ../host.php:43 msgid "Apply Automation Rules" msgstr "" #: ../graphs.php:64 ../graphs.php:867 msgid "Convert to Graph Template" msgstr "Преобразовать в Шаблон Графика" #: ../graphs.php:176 ../graphs_new.php:228 ../graphs_new.php:244 #, php-format msgid "Created graph: %s" msgstr "" #: ../graphs.php:184 ../graphs_new.php:236 ../graphs_new.php:252 msgid "ERROR: no Data Source associated. Check Template" msgstr "" #: ../graphs.php:795 msgid "" "Click 'Continue' to delete the following Graph(s). Note that if you choose " "to Delete Data Sources, only those Data Sources not in use elsewhere will " "also be Deleted." msgstr "" #: ../graphs.php:799 msgid "The following Data Source(s) are in use by these Graph(s)." msgstr "" #: ../graphs.php:808 msgid "" "Delete all Data Source(s) referenced by these Graph(s) that are not in use " "elsewhere." msgstr "" #: ../graphs.php:810 msgid "Leave the Data Source(s) untouched." msgstr "" #: ../graphs.php:822 msgid "" "Choose a Graph Template and click 'Continue' to change the Graph Template " "for the following Graph(s). Please note, that only compatible Graph " "Templates will be displayed. Compatible is identified by those having " "identical Data Sources." msgstr "" #: ../graphs.php:824 msgid "New Graph Template" msgstr "" #: ../graphs.php:849 msgid "" "Click 'Continue' to duplicate the following Graph(s). You can optionally " "change the title format for the new Graph(s)." msgstr "" #: ../graphs.php:852 msgid " (1)" msgstr "" #: ../graphs.php:856 #, fuzzy msgid "Duplicate Graph(s)" msgstr "Продублировать шаблоны графиков" #: ../graphs.php:860 msgid "" "Click 'Continue' to convert the following Graph(s) into Graph Template(s). " "You can optionally change the title format for the new Graph Template(s)." msgstr "" #: ../graphs.php:863 #, fuzzy msgid " Template" msgstr "Шаблон Графика" #: ../graphs.php:871 msgid "" "Click 'Continue' to place the following Graph(s) under the Tree Branch " "selected below." msgstr "" #: ../graphs.php:873 msgid "Destination Branch" msgstr "" #: ../graphs.php:886 msgid "Choose a new Device for these Graph(s) and click 'Continue'." msgstr "" #: ../graphs.php:888 msgid "New Device" msgstr "" #: ../graphs.php:900 msgid "" "Click 'Continue' to re-apply suggested naming to the following Graph(s)." msgstr "" #: ../graphs.php:905 msgid "Reapply Suggested Naming to Graph(s)" msgstr "" #: ../graphs.php:921 msgid "" "Click 'Continue' to create an Aggregate Graph from the selected Graph(s)." msgstr "" #: ../graphs.php:928 msgid "The following data sources are in use by these graphs:" msgstr "" #: ../graphs.php:961 msgid "Please confirm" msgstr "" #: ../graphs.php:1029 msgid "Resize Selected Graph(s)" msgstr "" #: ../graphs.php:1051 msgid "" "Select the Aggregate Template to use and press 'Continue' to create your " "Aggregate Graph. Otherwise press 'Cancel' to return." msgstr "" #: ../graphs.php:1072 msgid "Create Aggregate" msgstr "" #: ../graphs.php:1076 msgid "" "There are presently no Aggregate Templates defined for this Graph Template. " "Please either first create an Aggregate Template for the selected Graphs " "Graph Template and try again, or simply crease an un-templated Aggregate " "Graph." msgstr "" #: ../graphs.php:1077 msgid "Press 'Return' to return and select different Graphs." msgstr "" #: ../graphs.php:1089 msgid "Click 'Continue' to apply Automation Rules to the following Graphs." msgstr "" #: ../graphs.php:1105 msgid "You must select at least one Graph." msgstr "" #: ../graphs.php:1245 #, fuzzy, php-format #| msgid "Graph Items [edit: %s]" msgid "Graph [edit: %s]" msgstr "Графики [редактировать %s]" #: ../graphs.php:1251 #, fuzzy #| msgid "Graph Items [new]" msgid "Graph [new]" msgstr "Графики [новый]" #: ../graphs.php:1276 msgid "Turn Off Graph Debug Mode." msgstr "" #: ../graphs.php:1278 msgid "Turn On Graph Debug Mode." msgstr "" #: ../graphs.php:1291 msgid "Edit Graph Template." msgstr "" #: ../graphs.php:1297 msgid "Unlock Graph." msgstr "" #: ../graphs.php:1299 msgid "Lock Graph." msgstr "" #: ../graphs.php:1323 msgid "Selected Graph Template" msgstr "" #: ../graphs.php:1324 #, php-format msgid "" "Choose a Graph Template to apply to this Graph. Please note that you may " "only change Graph Templates to a 100% compatible Graph Template, which means " "that it includes identical Data Sources." msgstr "" #: ../graphs.php:1332 msgid "Choose the Device that this Graph belongs to." msgstr "" #: ../graphs.php:1371 msgid "Supplemental Graph Template Data" msgstr "" #: ../graphs.php:1373 msgid "Graph Fields" msgstr "" #: ../graphs.php:1374 msgid "Graph Item Fields" msgstr "" #: ../graphs.php:1643 ../lib/functions.php:1908 msgid "Graph Management" msgstr "Управление графиками" #: ../graphs.php:1787 ../include/global_form.php:1859 #: ../lib/html_reports.php:355 ../tree.php:681 msgid "Graph Name" msgstr "" #: ../graphs.php:1787 msgid "" "The Title of this Graph. Generally programatically generated from the Graph " "Template definition or Suggested Naming rules. The max length of the Title " "is controlled under Settings->Visual." msgstr "" #: ../graphs.php:1788 msgid "" "The internal database ID for this Graph. Useful when performing automation " "or debugging." msgstr "" #: ../graphs.php:1789 msgid "The Graph Template that this Graph was based upon." msgstr "" #: ../graphs.php:1790 msgid "The size of this Graph when not in Preview mode." msgstr "" #: ../graphs_items.php:290 msgid "Data Sources [No Device]" msgstr "" #: ../graphs_items.php:325 ../include/global_arrays.php:984 #: ../include/global_form.php:1556 msgid "Data Template" msgstr "" #: ../graphs_items.php:377 #, php-format msgid "Graph Items [graph: %s]" msgstr "" #: ../graphs_new.php:75 msgid "Default Settings Saved" msgstr "" #: ../graphs_new.php:281 #, php-format msgid "Create Graph from %s" msgstr "" #: ../graphs_new.php:302 #, php-format msgid "Created %s Graphs from %s" msgstr "" #: ../graphs_new.php:304 #, php-format msgid "Created 1 Graph from %s" msgstr "" #: ../graphs_new.php:345 #, php-format msgid "Graph [Template: %s]" msgstr "" #: ../graphs_new.php:346 #, php-format msgid "Graph Items [Template: %s]" msgstr "" #: ../graphs_new.php:351 #, php-format msgid "Data Source [Template: %s]" msgstr "" #: ../graphs_new.php:361 #, php-format msgid "Custom Data [Template: %s]" msgstr "" #: ../graphs_new.php:446 #, php-format msgid "New Graphs for [ %s ]" msgstr "" #: ../graphs_new.php:449 msgid "New Graphs for [ All Devices ]" msgstr "" #: ../graphs_new.php:454 msgid "New Graphs for None Host Type" msgstr "" #: ../graphs_new.php:500 msgid "Graph Types" msgstr "" #: ../graphs_new.php:505 msgid "Graph Template Based" msgstr "" #: ../graphs_new.php:541 msgid "Edit this Device" msgstr "" #: ../graphs_new.php:542 msgid "Create New Device" msgstr "" #: ../graphs_new.php:598 ../graphs_new.php:880 ../user_admin.php:1593 #: ../user_group_admin.php:1316 msgid "Select All" msgstr "Выбрать Ð’Ñе" #: ../graphs_new.php:674 ../include/global_arrays.php:679 #: ../include/global_arrays.php:750 ../lib/html_form.php:1111 #: ../lib/html_form.php:1124 ../tree.php:1025 msgid "Create" msgstr "Создать" #: ../graphs_new.php:676 msgid "(Select a graph type to create)" msgstr "" #: ../graphs_new.php:760 #, php-format msgid "Data Query [%s]" msgstr "" #: ../graphs_new.php:876 msgid "From there you can get more information." msgstr "" #: ../graphs_new.php:876 msgid "" "This Data Query returned 0 rows, perhaps there was a problem executing this " "Data Query." msgstr "" #: ../graphs_new.php:876 msgid "You can run this Data Query in debug mode" msgstr "" #: ../graphs_new.php:919 msgid "Search Returned no Rows." msgstr "" #: ../graphs_new.php:924 msgid "Error in data query." msgstr "" #: ../graphs_new.php:948 msgid "Select a Graph Type to Create" msgstr "" #: ../graphs_new.php:951 msgid "Make selection default" msgstr "" #: ../graphs_new.php:951 msgid "Set Default" msgstr "" #: ../host.php:41 msgid "Change Device Settings" msgstr "" #: ../host.php:42 msgid "Clear Statistics" msgstr "" #: ../host.php:44 msgid "Sync to Device Template" msgstr "" #: ../host.php:376 msgid "Click 'Continue' to enable the following Device(s)." msgstr "" #: ../host.php:381 msgid "Enable Device(s)" msgstr "" #: ../host.php:385 msgid "Click 'Continue' to disable the following Device(s)." msgstr "" #: ../host.php:390 msgid "Disable Device(s)" msgstr "" #: ../host.php:394 msgid "" "Click 'Continue' to change the Device options below for multiple Device(s). " "Please check the box next to the fields you want to update, and then fill in " "the new value." msgstr "" #: ../host.php:417 msgid "Update this Field" msgstr "" #: ../host.php:432 msgid "Change Device(s) SNMP Options" msgstr "" #: ../host.php:436 msgid "Click 'Continue' to clear the counters for the following Device(s)." msgstr "" #: ../host.php:441 msgid "Clear Statistics on Device(s)" msgstr "" #: ../host.php:445 msgid "" "Click 'Continue' to Synchronize the following Device(s) to their Device " "Template." msgstr "" #: ../host.php:450 msgid "Synchronize Device(s)" msgstr "" #: ../host.php:454 msgid "Click 'Continue' to delete the following Device(s)." msgstr "" #: ../host.php:457 msgid "" "Leave all Graph(s) and Data Source(s) untouched. Data Source(s) will be " "disabled however." msgstr "" #: ../host.php:458 msgid "Delete all associated Graph(s) and Data Source(s)." msgstr "" #: ../host.php:464 msgid "Delete Device(s)" msgstr "" #: ../host.php:468 msgid "" "Click 'Continue' to place the following Device(s) under the branch selected " "below." msgstr "" #: ../host.php:478 msgid "Place Device(s) on Tree" msgstr "" #: ../host.php:482 msgid "Click 'Continue' to apply Automation Rules to the following Devices(s)." msgstr "" #: ../host.php:487 msgid "Run Automation on Device(s)" msgstr "" #: ../host.php:498 msgid "You must select at least one device." msgstr "" #: ../host.php:598 msgid "Device [new]" msgstr "" #: ../host.php:604 #, php-format msgid "Device [edit: %s]" msgstr "" #: ../host.php:606 msgid "Disable Device Debug" msgstr "" #: ../host.php:608 msgid "Enable Device Debug" msgstr "" #: ../host.php:622 msgid "Create Graphs for this Device" msgstr "" #: ../host.php:624 msgid "Data Source List" msgstr "" #: ../host.php:625 msgid "Graph List" msgstr "" #: ../host.php:631 msgid "Contacting Device" msgstr "" #: ../host.php:663 msgid "Data Query Debug Information" msgstr "" #: ../host.php:666 ../templates_import.php:141 msgid "Hide" msgstr "" #: ../host.php:737 ../tree.php:1145 ../tree.php:1219 ../tree.php:1306 msgid "Edit" msgstr "" #: ../host.php:737 msgid "Is Being Graphed" msgstr "" #: ../host.php:737 msgid "Not Being Graphed" msgstr "" #: ../host.php:740 msgid "Delete Graph Template Association" msgstr "" #: ../host.php:747 ../host_templates.php:493 msgid "No associated graph templates." msgstr "Ðет аÑÑоциированых шаблонов графиков" #: ../host.php:756 ../host_templates.php:502 msgid "Add Graph Template" msgstr "Добавить Шаблон Графика" #: ../host.php:762 msgid "Add Graph Template to Device" msgstr "" #: ../host.php:772 ../host_templates.php:525 msgid "Associated Data Queries" msgstr "" #: ../host.php:777 ../host.php:873 msgid "Re-Index Method" msgstr "" #: ../host.php:779 ../lib/api_automation.php:1212 #: ../lib/api_automation.php:1274 ../lib/api_automation.php:1338 #: ../lib/functions.php:1926 ../lib/functions.php:1992 #: ../lib/functions.php:2058 ../lib/functions.php:2094 #: ../lib/functions.php:2112 ../lib/functions.php:2130 #: ../lib/functions.php:2148 ../lib/functions.php:2178 #: ../lib/functions.php:2214 ../lib/functions.php:2244 #: ../lib/functions.php:2334 ../lib/functions.php:2520 #: ../lib/functions.php:2544 ../lib/functions.php:2562 #: ../lib/functions.php:2580 ../lib/functions.php:2598 #: ../lib/functions.php:2622 ../lib/html_reports.php:1216 ../links.php:377 #: ../plugins.php:374 msgid "Actions" msgstr "" #: ../host.php:840 msgid "Fail" msgstr "" #: ../host.php:840 ../lib/functions.php:3811 ../lib/functions.php:3816 msgid "Success" msgstr "Выполненно" #: ../host.php:843 msgid "Reload Query" msgstr "" #: ../host.php:844 msgid "Verbose Query" msgstr "" #: ../host.php:845 msgid "Remove Query" msgstr "" #: ../host.php:851 msgid "No Associated Data Queries." msgstr "" #: ../host.php:867 ../host_templates.php:559 msgid "Add Data Query" msgstr "" #: ../host.php:879 msgid "Add Data Query to Device" msgstr "" #: ../host.php:1014 ../include/global_arrays.php:460 msgid "Ping and SNMP Uptime" msgstr "" #: ../host.php:1015 ../include/global_arrays.php:462 msgid "SNMP Uptime" msgstr "" #: ../host.php:1016 ../include/global_arrays.php:465 msgid "Ping" msgstr "" #: ../host.php:1017 ../include/global_arrays.php:461 msgid "Ping or SNMP Uptime" msgstr "" #: ../host.php:1018 ../include/global_arrays.php:463 msgid "SNMP Desc" msgstr "" #: ../host.php:1019 msgid "SNMP GetNext" msgstr "" #: ../host.php:1312 ../include/global_settings.php:441 msgid "Site" msgstr "Узел" #: ../host.php:1388 ../lib/api_automation.php:164 #: ../lib/api_automation.php:1019 msgid "Not Up" msgstr "" #: ../host.php:1391 ../lib/api_automation.php:167 #: ../lib/api_automation.php:1022 ../lib/html_utility.php:814 ../pollers.php:41 msgid "Recovering" msgstr "" #: ../host.php:1392 ../lib/api_automation.php:168 #: ../lib/api_automation.php:1023 ../lib/html_utility.php:823 #: ../plugins.php:166 ../utilities.php:2011 msgid "Unknown" msgstr "" #: ../host.php:1498 ../lib/api_automation.php:557 msgid "Device Description" msgstr "" #: ../host.php:1498 msgid "The name by which this Device will be referred to." msgstr "" #: ../host.php:1499 msgid "" "Either an IP address, or hostname. If a hostname, it must be resolvable by " "either DNS, or from your hosts file." msgstr "" #: ../host.php:1499 ../include/global_form.php:1013 #: ../include/global_form.php:1638 ../lib/api_automation.php:270 #: ../lib/api_automation.php:558 ../lib/api_automation.php:809 #: ../lib/api_automation.php:1138 ../managers.php:225 ../pollers.php:82 #: ../pollers.php:613 ../user_admin.php:1242 ../user_group_admin.php:966 msgid "Hostname" msgstr "" #: ../host.php:1500 msgid "" "The internal database ID for this Device. Useful when performing automation " "or debugging." msgstr "" #: ../host.php:1501 msgid "The total number of Graphs generated from this Device." msgstr "" #: ../host.php:1502 msgid "The total number of Data Sources generated from this Device." msgstr "" #: ../host.php:1503 msgid "" "The monitoring status of the Device based upon ping results. If this Device " "is a special type Device, by using the hostname \"localhost\", or due to the " "setting to not perform an Availability Check, it will always remain Up. " "When using cmd.php data collector, a Device with no Graphs, is not pinged by " "the data collector and will remain in an \"Unknown\" state." msgstr "" #: ../host.php:1504 msgid "In State" msgstr "" #: ../host.php:1504 msgid "The amount of time that this Device has been in its current state." msgstr "" #: ../host.php:1505 msgid "The current amount of time that the host has been up." msgstr "" #: ../host.php:1506 msgid "Poll Time" msgstr "Ð’Ñ€ÐµÐ¼Ñ ÐžÐ¿Ñ€Ð¾Ñа" #: ../host.php:1506 msgid "The amount of time it takes to collect data from this Device." msgstr "" #: ../host.php:1507 msgid "Current (ms)" msgstr "Текущий (мÑ)" #: ../host.php:1507 msgid "The current ping time in milliseconds to reach the Device." msgstr "" #: ../host.php:1508 msgid "Average (ms)" msgstr "Срейдний (мÑ)" #: ../host.php:1508 msgid "" "The average ping time in milliseconds to reach the Device since the counters " "were cleared for this Device." msgstr "" #: ../host.php:1509 msgid "Availability" msgstr "ДоÑтупноÑть" #: ../host.php:1509 msgid "" "The availability percentage based upon ping results since the counters were " "cleared for this Device." msgstr "" #: ../host_templates.php:32 msgid "Sync Devices" msgstr "" #: ../host_templates.php:256 msgid "Click 'Continue' to delete the following Device Template(s)." msgstr "" #: ../host_templates.php:261 msgid "Delete Device Template(s)" msgstr "" #: ../host_templates.php:265 msgid "" "Click 'Continue' to duplicate the following Device Template(s). Optionally " "change the title for the new Device Template(s)." msgstr "" #: ../host_templates.php:275 msgid "Duplicate Device Template(s)" msgstr "" #: ../host_templates.php:279 msgid "" "Click 'Continue' to Synchronize Devices associated with the selected Device " "Template(s). Note that this action may take some time depending on the " "number of Devices mapped to the Device Template." msgstr "" #: ../host_templates.php:286 msgid "Sync Devices to Device Template(s)" msgstr "" #: ../host_templates.php:289 msgid "You must select at least one host template." msgstr "" #: ../host_templates.php:328 msgid "" "Click 'Continue' to delete the following Graph Template will be " "disassociated from the Device Template." msgstr "" #: ../host_templates.php:329 #, php-format msgid "Graph Template Name: %s" msgstr "" #: ../host_templates.php:388 msgid "" "Click 'Continue' to delete the following Data Queries will be disassociated " "from the Device Template." msgstr "" #: ../host_templates.php:389 #, php-format msgid "Data Query Name: %s" msgstr "" #: ../host_templates.php:442 #, php-format msgid "Device Templates [edit: %s]" msgstr "" #: ../host_templates.php:444 msgid "Device Templates [new]" msgstr "" #: ../host_templates.php:461 msgid "Default Submit Button" msgstr "" #: ../host_templates.php:515 msgid "Add Graph Template to Device Template" msgstr "" #: ../host_templates.php:550 msgid "No associated data queries." msgstr "" #: ../host_templates.php:569 msgid "Add Data Query to Device Template" msgstr "" #: ../host_templates.php:691 ../host_templates.php:706 #: ../host_templates.php:805 ../include/global_arrays.php:874 #: ../lib/functions.php:2082 msgid "Device Templates" msgstr "Шаблон УÑтройÑтва" #: ../host_templates.php:724 msgid "Has Devices" msgstr "" #: ../host_templates.php:814 ../lib/api_automation.php:272 #: ../lib/api_automation.php:559 ../lib/api_automation.php:1139 msgid "Device Template Name" msgstr "" #: ../host_templates.php:814 msgid "The name of this Device Template." msgstr "" #: ../host_templates.php:815 msgid "" "The internal database ID for this Device Template. Useful when performing " "automation or debugging." msgstr "" #: ../host_templates.php:816 msgid "" "Device Templates in use cannot be Deleted. In use is defined as being " "referenced by a Device." msgstr "" #: ../host_templates.php:817 msgid "Devices Using" msgstr "" #: ../host_templates.php:817 msgid "The number of Devices using this Device Template." msgstr "" #: ../host_templates.php:840 msgid "No Device Templates Found" msgstr "" #: ../include/auth.php:115 ../include/auth.php:117 ../permission_denied.php:30 #: ../permission_denied.php:32 msgid "Login Again" msgstr "" #: ../include/auth.php:125 ../include/auth.php:146 ../permission_denied.php:60 msgid "Permission Denied" msgstr "" #: ../include/auth.php:148 ../permission_denied.php:62 msgid "" "If you feel that this is an error. Please contact your Cacti Administrator." msgstr "" #: ../include/auth.php:148 ../permission_denied.php:62 msgid "You are not permitted to access this section of Cacti." msgstr "" #: ../include/global_arrays.php:88 msgid "Save Successful." msgstr "" #: ../include/global_arrays.php:91 msgid "Save Failed." msgstr "" #: ../include/global_arrays.php:94 msgid "Save Failed: Field Input Error (Check Red Fields)." msgstr "" #: ../include/global_arrays.php:97 msgid "Passwords do not match, please retype." msgstr "" #: ../include/global_arrays.php:100 msgid "You must select at least one field." msgstr "" #: ../include/global_arrays.php:103 msgid "" "You must have built in user authentication turned on to use this feature." msgstr "" #: ../include/global_arrays.php:106 msgid "XML parse error." msgstr "" #: ../include/global_arrays.php:109 msgid "Username already in use." msgstr "" #: ../include/global_arrays.php:112 msgid "XML: Cacti version does not exist." msgstr "" #: ../include/global_arrays.php:115 msgid "XML: Hash version does not exist." msgstr "" #: ../include/global_arrays.php:118 msgid "XML: Generated with a newer version of Cacti." msgstr "" #: ../include/global_arrays.php:121 msgid "XML: Cannot locate type code." msgstr "" #: ../include/global_arrays.php:124 msgid "Username already exists." msgstr "" #: ../include/global_arrays.php:127 msgid "Username change not permitted for designated template or guest user." msgstr "" #: ../include/global_arrays.php:130 msgid "User delete not permitted for designated template or guest user." msgstr "" #: ../include/global_arrays.php:133 msgid "User delete not permitted for designated graph export user." msgstr "" #: ../include/global_arrays.php:136 msgid "" "Data Template Includes Deleted Data Source Profile. Please resave the Data " "Template with an existing Data Source Profile." msgstr "" #: ../include/global_arrays.php:139 msgid "" "Graph Template Includes Deleted GPrint Prefix. Please run Database Repair " "Script to Identify and/or Correct." msgstr "" #: ../include/global_arrays.php:142 msgid "" "Graph Template Includes Deleted CDEFs. Please run Database Repair Script to " "Identify and/or Correct." msgstr "" #: ../include/global_arrays.php:145 msgid "" "Graph Template Includes Deleted Data Input Method. Please run Database " "Repair Script to Identify." msgstr "" #: ../include/global_arrays.php:148 msgid "" "Data Template Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: ../include/global_arrays.php:151 msgid "" "Device Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: ../include/global_arrays.php:154 msgid "" "Data Query Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: ../include/global_arrays.php:157 msgid "" "Graph Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: ../include/global_arrays.php:160 msgid "" "Graph not found. Either it has been deleted or your database needs repair." msgstr "" #: ../include/global_arrays.php:163 msgid "SNMPv3 Auth Passphrases must be 8 characters or greater." msgstr "" #: ../include/global_arrays.php:166 msgid "" "Some Graphs not Updated. Unable to Change Device for Data Query based Graphs." msgstr "" #: ../include/global_arrays.php:169 msgid "Unable to Change Device for Data Query based Graphs." msgstr "" #: ../include/global_arrays.php:172 msgid "Cacti Log purged successfully" msgstr "" #: ../include/global_arrays.php:175 msgid "" "Error: If you force a password change, you must also allow the user to " "change their password." msgstr "" #: ../include/global_arrays.php:178 msgid "Error: You are not allowed to change your password." msgstr "" #: ../include/global_arrays.php:181 msgid "Error: LDAP/AD based password change not supported." msgstr "" #: ../include/global_arrays.php:184 msgid "Error: Unable to clear log, no write permissions" msgstr "" #: ../include/global_arrays.php:187 msgid "Error: Unable to clear log, file does not exist" msgstr "" #: ../include/global_arrays.php:190 msgid "Invalid Timestamp. Select timestamp in the future." msgstr "" #: ../include/global_arrays.php:193 msgid "Data Collector(s) Synchronized for Offline Operation" msgstr "" #: ../include/global_arrays.php:196 msgid "Data Collector(s) Not found when attempting Synchronization" msgstr "" #: ../include/global_arrays.php:199 msgid "Unable to establish MySQL connection with remote Data Collector." msgstr "" #: ../include/global_arrays.php:202 msgid "" "Data Collector Synchronization must be initiated from the main Cacti server." msgstr "" #: ../include/global_arrays.php:205 msgid "Report Saved" msgstr "" #: ../include/global_arrays.php:208 msgid "Report Save Failed" msgstr "" #: ../include/global_arrays.php:211 msgid "Report Item Saved" msgstr "" #: ../include/global_arrays.php:214 msgid "Report Item Save Failed" msgstr "" #: ../include/global_arrays.php:306 ../include/global_arrays.php:619 msgid "Function" msgstr "" #: ../include/global_arrays.php:307 ../include/global_arrays.php:621 msgid "Special Data Source" msgstr "" #: ../include/global_arrays.php:308 ../include/global_arrays.php:623 msgid "Custom String" msgstr "" #: ../include/global_arrays.php:318 ../include/global_arrays.php:325 msgid "Script/Command" msgstr "" #: ../include/global_arrays.php:320 ../include/global_arrays.php:326 #: ../utilities.php:1607 msgid "Script Server" msgstr "Сервер Скриптов" #: ../include/global_arrays.php:332 #, fuzzy msgid "Index Count" msgstr "Счетчик Событий" #: ../include/global_arrays.php:333 msgid "Verify All" msgstr "" #: ../include/global_arrays.php:337 msgid "" "All Re-Indexing will be manual or managed through scripts or Device " "Automation." msgstr "" #: ../include/global_arrays.php:338 msgid "" "When the Devices SNMP uptime goes backward, a Re-Index will be performed." msgstr "" #: ../include/global_arrays.php:339 msgid "When the Data Query index count changes, a Re-Index will be performed." msgstr "" #: ../include/global_arrays.php:340 msgid "Every polling cycle, a Re-Index will be performed. Very expensive." msgstr "" #: ../include/global_arrays.php:344 msgid "SNMP Field Name (Dropdown)" msgstr "" #: ../include/global_arrays.php:345 msgid "SNMP Field Value (From User)" msgstr "" #: ../include/global_arrays.php:346 msgid "SNMP Output Type (Dropdown)" msgstr "" #: ../include/global_arrays.php:365 ../include/global_arrays.php:371 msgid "Normal" msgstr "" #: ../include/global_arrays.php:366 msgid "Light" msgstr "" #: ../include/global_arrays.php:367 ../include/global_arrays.php:372 msgid "Mono" msgstr "" #: ../include/global_arrays.php:376 msgid "North" msgstr "Север" #: ../include/global_arrays.php:377 msgid "South" msgstr "Юг" #: ../include/global_arrays.php:378 msgid "West" msgstr "Запад" #: ../include/global_arrays.php:379 msgid "East" msgstr "ВоÑток" #: ../include/global_arrays.php:384 msgid "Left" msgstr "Лево" #: ../include/global_arrays.php:385 msgid "Right" msgstr "Право" #: ../include/global_arrays.php:386 msgid "Justified" msgstr "" #: ../include/global_arrays.php:387 msgid "Center" msgstr "Центр" #: ../include/global_arrays.php:391 msgid "Top -> Down" msgstr "Верх -> Ðиз" #: ../include/global_arrays.php:392 msgid "Bottom -> Up" msgstr "Ðиз -> Верх" #: ../include/global_arrays.php:396 ../tree.php:1129 msgid "Numeric" msgstr "" #: ../include/global_arrays.php:397 msgid "Timestamp" msgstr "" #: ../include/global_arrays.php:398 msgid "Duration" msgstr "" #: ../include/global_arrays.php:430 msgid "Not In Use" msgstr "" #: ../include/global_arrays.php:431 ../include/global_arrays.php:432 #: ../include/global_arrays.php:433 ../include/global_arrays.php:589 #: ../include/global_arrays.php:590 #, php-format msgid "Version %d" msgstr "" #: ../include/global_arrays.php:437 msgid "MD5 (default)" msgstr "" #: ../include/global_arrays.php:438 msgid "SHA" msgstr "" #: ../include/global_arrays.php:442 msgid "[None]" msgstr "" #: ../include/global_arrays.php:443 msgid "DES (default)" msgstr "" #: ../include/global_arrays.php:444 msgid "AES" msgstr "" #: ../include/global_arrays.php:453 msgid "Logfile Only" msgstr "" #: ../include/global_arrays.php:454 msgid "Logfile and Syslog/Eventlog" msgstr "" #: ../include/global_arrays.php:455 msgid "Syslog/Eventlog Only" msgstr "" #: ../include/global_arrays.php:464 msgid "SNMP getNext" msgstr "" #: ../include/global_arrays.php:469 msgid "ICMP Ping" msgstr "" #: ../include/global_arrays.php:470 msgid "TCP Ping" msgstr "" #: ../include/global_arrays.php:471 msgid "UDP Ping" msgstr "" #: ../include/global_arrays.php:475 msgid "NONE - Syslog Only if Selected" msgstr "" #: ../include/global_arrays.php:476 msgid "LOW - Statistics and Errors" msgstr "" #: ../include/global_arrays.php:477 msgid "MEDIUM - Statistics, Errors and Results" msgstr "" #: ../include/global_arrays.php:478 msgid "HIGH - Statistics, Errors, Results and Major I/O Events" msgstr "" #: ../include/global_arrays.php:479 msgid "DEBUG - Statistics, Errors, Results, I/O and Program Flow" msgstr "" #: ../include/global_arrays.php:480 msgid "DEVEL - Developer DEBUG Level" msgstr "" #: ../include/global_arrays.php:489 msgid "Selected Poller Interval" msgstr "" #: ../include/global_arrays.php:504 ../include/global_arrays.php:505 #: ../include/global_arrays.php:506 ../include/global_arrays.php:507 #: ../include/global_arrays.php:538 ../include/global_arrays.php:539 #: ../include/global_arrays.php:540 ../include/global_arrays.php:541 #, php-format msgid "Every %d Seconds" msgstr "" #: ../include/global_arrays.php:508 ../include/global_arrays.php:542 #: ../include/global_arrays.php:556 msgid "Every Minute" msgstr "" #: ../include/global_arrays.php:509 ../include/global_arrays.php:510 #: ../include/global_arrays.php:511 ../include/global_arrays.php:512 #: ../include/global_arrays.php:543 ../include/global_arrays.php:557 #, php-format msgid "Every %d Minutes" msgstr "" #: ../include/global_arrays.php:513 msgid "Every Hour" msgstr "" #: ../include/global_arrays.php:514 ../include/global_arrays.php:515 #: ../include/global_arrays.php:1444 ../include/global_arrays.php:1445 #: ../include/global_arrays.php:1446 ../include/global_arrays.php:1447 #: ../include/global_arrays.php:1448 ../include/global_settings.php:1765 #: ../include/global_settings.php:1766 #, php-format msgid "Every %d Hours" msgstr "" #: ../include/global_arrays.php:534 ../include/global_settings.php:1098 msgid "1 Day" msgstr "1 День" #: ../include/global_arrays.php:547 msgid "1 Thread (default)" msgstr "" #: ../include/global_arrays.php:572 msgid "Builtin Authentication" msgstr "" #: ../include/global_arrays.php:573 msgid "Web Basic Authentication" msgstr "" #: ../include/global_arrays.php:577 msgid "LDAP Authentication" msgstr "" #: ../include/global_arrays.php:578 msgid "Multiple LDAP/AD Domains" msgstr "" #: ../include/global_arrays.php:583 msgid "Active Directory" msgstr "" #: ../include/global_arrays.php:595 ../include/global_settings.php:1324 msgid "SSL" msgstr "" #: ../include/global_arrays.php:596 ../include/global_settings.php:1324 msgid "TLS" msgstr "" #: ../include/global_arrays.php:600 msgid "No Searching" msgstr "" #: ../include/global_arrays.php:601 msgid "Anonymous Searching" msgstr "" #: ../include/global_arrays.php:602 msgid "Specific Searching" msgstr "" #: ../include/global_arrays.php:615 msgid "Enabled (strict mode)" msgstr "" #: ../include/global_arrays.php:620 ../include/global_form.php:2101 #: ../include/global_form.php:2143 ../lib/api_automation.php:1210 #: ../lib/api_automation.php:1272 msgid "Operator" msgstr "" #: ../include/global_arrays.php:622 msgid "Another CDEF" msgstr "" #: ../include/global_arrays.php:641 msgid "Inherit Parent Sorting" msgstr "" #: ../include/global_arrays.php:642 msgid "Manual Ordering (No Sorting)" msgstr "" #: ../include/global_arrays.php:643 msgid "Alphabetic Ordering" msgstr "" #: ../include/global_arrays.php:644 msgid "Natural Ordering" msgstr "" #: ../include/global_arrays.php:645 msgid "Numeric Ordering" msgstr "" #: ../include/global_arrays.php:649 ../lib/rrd.php:2624 msgid "Header" msgstr "" #: ../include/global_arrays.php:650 ../include/global_arrays.php:697 #: ../include/global_arrays.php:1269 ../include/global_arrays.php:1433 #: ../lib/html_tree.php:351 msgid "Graph" msgstr "График" #: ../include/global_arrays.php:656 ../tree.php:1295 msgid "Data Query Index" msgstr "" #: ../include/global_arrays.php:660 msgid "Current Graph Item Data Source" msgstr "" #: ../include/global_arrays.php:661 msgid "Current Graph Item Polling Interval" msgstr "" #: ../include/global_arrays.php:662 msgid "All Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:663 msgid "All Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:664 msgid "All Similar Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:665 msgid "All Similar Data Sources (Do not Include Duplicates) Polling Interval" msgstr "" #: ../include/global_arrays.php:666 msgid "All Similar Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:667 msgid "Current Data Source Item: Minimum Value" msgstr "" #: ../include/global_arrays.php:668 msgid "Current Data Source Item: Maximum Value" msgstr "" #: ../include/global_arrays.php:669 msgid "Graph: Lower Limit" msgstr "" #: ../include/global_arrays.php:670 msgid "Graph: Upper Limit" msgstr "" #: ../include/global_arrays.php:671 msgid "Count of All Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:672 msgid "Count of All Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:673 msgid "Count of All Similar Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:674 msgid "Count of All Similar Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:680 ../lib/html_form_template.php:562 #: ../lib/html_form_template.php:577 msgid "New Graphs" msgstr "Ðовый график" #: ../include/global_arrays.php:682 ../include/global_arrays.php:734 #: ../include/global_arrays.php:751 msgid "Management" msgstr "Управление" #: ../include/global_arrays.php:684 ../sites.php:378 ../sites.php:393 #: ../sites.php:472 msgid "Sites" msgstr "Узлы" #: ../include/global_arrays.php:685 ../include/global_arrays.php:866 #: ../tree.php:1476 ../tree.php:1491 ../tree.php:1549 ../user_admin.php:1513 #: ../user_admin.php:2926 ../user_admin.php:3013 ../user_group_admin.php:1235 #: ../user_group_admin.php:2441 msgid "Trees" msgstr "ДеревьÑ" #: ../include/global_arrays.php:688 msgid "Aggregates" msgstr "" #: ../include/global_arrays.php:690 ../include/global_arrays.php:737 #: ../include/global_arrays.php:752 msgid "Data Collection" msgstr "Коллекции Данных" #: ../include/global_arrays.php:691 ../include/global_arrays.php:738 #: ../pollers.php:508 msgid "Data Collectors" msgstr "" #: ../include/global_arrays.php:699 msgid "Aggregate" msgstr "" #: ../include/global_arrays.php:702 ../include/global_arrays.php:754 #: ../include/global_settings.php:413 msgid "Automation" msgstr "ÐвтоматизациÑ" #: ../include/global_arrays.php:704 msgid "Discovered Devices" msgstr "" #: ../include/global_arrays.php:705 msgid "Device Rules" msgstr "" #: ../include/global_arrays.php:710 ../include/global_arrays.php:755 #: ../lib/html_filter.php:178 ../lib/html_graph.php:255 #: ../lib/html_tree.php:701 msgid "Presets" msgstr "" #: ../include/global_arrays.php:711 msgid "Data Profiles" msgstr "" #: ../include/global_arrays.php:713 ../lib/functions.php:2328 ../vdef.php:651 #: ../vdef.php:665 ../vdef.php:836 msgid "VDEFs" msgstr "" #: ../include/global_arrays.php:717 ../include/global_arrays.php:756 msgid "Import/Export" msgstr "Импорт/ЭкÑпорт" #: ../include/global_arrays.php:718 ../lib/functions.php:2442 #: ../templates_import.php:115 msgid "Import Templates" msgstr "Импорт Шаблонов" #: ../include/global_arrays.php:719 ../lib/functions.php:2430 #: ../templates_export.php:94 msgid "Export Templates" msgstr "ЭкÑпорт Шаблонов" #: ../include/global_arrays.php:721 ../include/global_arrays.php:740 #: ../include/global_arrays.php:757 ../lib/plugins.php:763 msgid "Configuration" msgstr "КонфигурациÑ" #: ../include/global_arrays.php:722 ../include/global_arrays.php:741 msgid "Settings" msgstr "ÐаÑтройки" #: ../include/global_arrays.php:723 ../lib/functions.php:2376 #: ../user_admin.php:2199 ../user_admin.php:2254 ../user_group_admin.php:667 #: ../user_group_admin.php:2528 msgid "Users" msgstr "" #: ../include/global_arrays.php:724 ../lib/functions.php:2406 msgid "User Groups" msgstr "" #: ../include/global_arrays.php:725 ../lib/functions.php:2394 #: ../user_domains.php:612 ../user_domains.php:705 msgid "User Domains" msgstr "" #: ../include/global_arrays.php:727 ../include/global_arrays.php:743 #: ../include/global_arrays.php:758 ../lib/functions.php:2256 msgid "Utilities" msgstr "Утилиты" #: ../include/global_arrays.php:728 ../include/global_arrays.php:744 msgid "System Utilities" msgstr "СиÑтемные Утилиты" #: ../include/global_arrays.php:729 ../include/global_arrays.php:772 #: ../include/global_arrays.php:855 ../links.php:90 ../links.php:301 #: ../links.php:370 ../links.php:483 msgid "External Links" msgstr "Внешние ÑÑылки" #: ../include/global_arrays.php:781 msgid "All Lines" msgstr "" #: ../include/global_arrays.php:782 ../include/global_arrays.php:783 #: ../include/global_arrays.php:784 ../include/global_arrays.php:785 #: ../include/global_arrays.php:786 ../include/global_arrays.php:787 #: ../include/global_arrays.php:788 ../include/global_arrays.php:789 #: ../include/global_arrays.php:790 ../include/global_arrays.php:791 #: ../include/global_arrays.php:792 ../include/global_arrays.php:793 #, php-format msgid "%d Lines" msgstr "%d Линий" #: ../include/global_arrays.php:848 msgid "Never" msgstr "" #: ../include/global_arrays.php:852 msgid "Console Access" msgstr "" #: ../include/global_arrays.php:854 msgid "Update Profile" msgstr "" #: ../include/global_arrays.php:857 ../user_admin.php:2178 msgid "User Management" msgstr "Управление ПользователÑми" #: ../include/global_arrays.php:858 msgid "Settings and Utilities" msgstr "" #: ../include/global_arrays.php:859 msgid "Automation Settings" msgstr "" #: ../include/global_arrays.php:864 msgid "Sites/Devices/Data Sources/Data Collectors" msgstr "" #: ../include/global_arrays.php:867 msgid "Remove Spikes from Graphs" msgstr "" #: ../include/global_arrays.php:870 msgid "Colors/GPrints/CDEFs/VDEFs" msgstr "" #: ../include/global_arrays.php:876 msgid "Export Data" msgstr "" #: ../include/global_arrays.php:877 msgid "Import Data" msgstr "" #: ../include/global_arrays.php:879 ../include/global_settings.php:665 msgid "Log Management" msgstr "" #: ../include/global_arrays.php:880 msgid "Log Viewing" msgstr "" #: ../include/global_arrays.php:882 msgid "Reports Management" msgstr "" #: ../include/global_arrays.php:883 msgid "Reports Creation" msgstr "" #: ../include/global_arrays.php:981 msgid "CDEF" msgstr "" #: ../include/global_arrays.php:982 msgid "CDEF Item" msgstr "" #: ../include/global_arrays.php:983 msgid "GPRINT Preset" msgstr "" #: ../include/global_arrays.php:986 msgid "Data Input Field" msgstr "" #: ../include/global_arrays.php:987 ../include/global_form.php:394 #: ../include/global_form.php:1613 msgid "Data Source Profile" msgstr "" #: ../include/global_arrays.php:988 msgid "Data Template Item" msgstr "" #: ../include/global_arrays.php:990 msgid "Graph Template Item" msgstr "" #: ../include/global_arrays.php:991 msgid "Graph Template Input" msgstr "" #: ../include/global_arrays.php:994 msgid "VDEF" msgstr "" #: ../include/global_arrays.php:995 msgid "VDEF Item" msgstr "" #: ../include/global_arrays.php:1039 msgid "Last Half Hour" msgstr "ПоÑледние 30 Минут" #: ../include/global_arrays.php:1040 msgid "Last Hour" msgstr "ПоÑледний ЧаÑ" #: ../include/global_arrays.php:1041 ../include/global_arrays.php:1042 #: ../include/global_arrays.php:1043 ../include/global_arrays.php:1044 #, php-format msgid "Last %d Hours" msgstr "ПоÑледние %d ЧаÑов" #: ../include/global_arrays.php:1045 msgid "Last Day" msgstr "ПоÑледние День" #: ../include/global_arrays.php:1046 ../include/global_arrays.php:1047 #: ../include/global_arrays.php:1048 #, php-format msgid "Last %d Days" msgstr "ПоÑледние %d ДнÑ(ей)" #: ../include/global_arrays.php:1049 msgid "Last Week" msgstr "ПоÑледнÑÑ ÐеделÑ" #: ../include/global_arrays.php:1050 #, php-format msgid "Last %d Weeks" msgstr "ПоÑледние %d Ðедели(ÑŒ)" #: ../include/global_arrays.php:1051 msgid "Last Month" msgstr "ПоÑледний МеÑÑц" #: ../include/global_arrays.php:1052 ../include/global_arrays.php:1053 #: ../include/global_arrays.php:1054 ../include/global_arrays.php:1055 #, php-format msgid "Last %d Months" msgstr "ПоÑледние %d МеÑÑца(ев)" #: ../include/global_arrays.php:1056 msgid "Last Year" msgstr "ПоÑледний Год" #: ../include/global_arrays.php:1057 #, php-format msgid "Last %d Years" msgstr "ПоÑледние %d Года" #: ../include/global_arrays.php:1058 msgid "Day Shift" msgstr "" #: ../include/global_arrays.php:1059 msgid "This Day" msgstr "" #: ../include/global_arrays.php:1060 msgid "This Week" msgstr "" #: ../include/global_arrays.php:1061 msgid "This Month" msgstr "" #: ../include/global_arrays.php:1062 msgid "This Year" msgstr "" #: ../include/global_arrays.php:1063 msgid "Previous Day" msgstr "Предыдущий День" #: ../include/global_arrays.php:1064 msgid "Previous Week" msgstr "ÐŸÑ€ÐµÐ´Ñ‹Ð´ÑƒÑ‰Ð°Ñ ÐеделÑ" #: ../include/global_arrays.php:1065 msgid "Previous Month" msgstr "Предыдущий МеÑÑц" #: ../include/global_arrays.php:1066 msgid "Previous Year" msgstr "Предыдущий Год" #: ../include/global_arrays.php:1070 #, php-format msgid "%d Min" msgstr "" #: ../include/global_arrays.php:1087 ../include/global_settings.php:1026 #: ../rrdcleaner.php:493 #, php-format msgid "%d Year" msgstr "" #: ../include/global_arrays.php:1102 msgid "Month Number, Day, Year" msgstr "" #: ../include/global_arrays.php:1103 msgid "Month Name, Day, Year" msgstr "" #: ../include/global_arrays.php:1104 msgid "Day, Month Number, Year" msgstr "" #: ../include/global_arrays.php:1105 msgid "Day, Month Name, Year" msgstr "" #: ../include/global_arrays.php:1106 msgid "Year, Month Number, Day" msgstr "" #: ../include/global_arrays.php:1107 msgid "Year, Month Name, Day" msgstr "" #: ../include/global_arrays.php:1116 msgid "After Boost" msgstr "" #: ../include/global_arrays.php:1126 ../include/global_arrays.php:1127 #: ../include/global_arrays.php:1128 ../include/global_arrays.php:1129 #: ../include/global_arrays.php:1130 ../include/global_arrays.php:1185 #: ../include/global_arrays.php:1186 ../include/global_arrays.php:1187 #: ../include/global_arrays.php:1188 ../include/global_arrays.php:1189 #, php-format msgid "%d MBytes" msgstr "" #: ../include/global_arrays.php:1131 ../include/global_arrays.php:1190 msgid "1 GByte" msgstr "1 Гбайт" #: ../include/global_arrays.php:1132 ../include/global_arrays.php:1191 #, php-format msgid "%s GBytes" msgstr "%s Гбайт" #: ../include/global_arrays.php:1133 ../include/global_arrays.php:1134 #: ../include/global_arrays.php:1192 ../include/global_arrays.php:1193 #, php-format msgid "%d GBytes" msgstr "%d Гбайт" #: ../include/global_arrays.php:1147 msgid "2,000 Data Source Items" msgstr "2,000 Элементов иÑточников данных" #: ../include/global_arrays.php:1148 msgid "5,000 Data Source Items" msgstr "5,000 Элементов иÑточников данных" #: ../include/global_arrays.php:1149 msgid "10,000 Data Source Items" msgstr "10,000 Элементов иÑточников данных" #: ../include/global_arrays.php:1150 msgid "15,000 Data Source Items" msgstr "15,000 Элементов иÑточников данных" #: ../include/global_arrays.php:1151 msgid "25,000 Data Source Items" msgstr "25,000 Элементов иÑточников данных" #: ../include/global_arrays.php:1152 msgid "50,000 Data Source Items (Default)" msgstr "50,000 Элементов иÑточников данных" #: ../include/global_arrays.php:1153 msgid "100,000 Data Source Items" msgstr "100,000 Элементов иÑточников данных" #: ../include/global_arrays.php:1154 msgid "200,000 Data Source Items" msgstr "200,000 Элементов иÑточников данных" #: ../include/global_arrays.php:1155 msgid "400,000 Data Source Items" msgstr "400,000 Элементов иÑточников данных" #: ../include/global_arrays.php:1172 msgid "2 Hours" msgstr "2 ЧаÑа" #: ../include/global_arrays.php:1173 msgid "4 Hours" msgstr "4 ЧаÑа" #: ../include/global_arrays.php:1174 msgid "6 Hours" msgstr "6 ЧаÑов" #: ../include/global_arrays.php:1181 #, php-format msgid "%s Hours" msgstr "%s ЧаÑов " #: ../include/global_arrays.php:1200 #, php-format msgid "%s Minutes" msgstr "%s Минут" #: ../include/global_arrays.php:1220 msgid "1 Megabyte" msgstr "1 Мегабайт" #: ../include/global_arrays.php:1221 ../include/global_arrays.php:1222 #: ../include/global_arrays.php:1223 ../include/global_arrays.php:1224 #: ../include/global_arrays.php:1225 ../include/global_arrays.php:1226 #, php-format msgid "%d Megabytes" msgstr "%d Мегабайт" #: ../include/global_arrays.php:1230 msgid "Send Now" msgstr "" #: ../include/global_arrays.php:1238 msgid "Take Ownership" msgstr "Стать владельцем" #: ../include/global_arrays.php:1242 msgid "Inline PNG Image" msgstr "" #: ../include/global_arrays.php:1247 msgid "Inline JPEG Image" msgstr "" #: ../include/global_arrays.php:1248 msgid "Inline GIF Image" msgstr "" #: ../include/global_arrays.php:1251 msgid "Attached PNG Image" msgstr "" #: ../include/global_arrays.php:1254 msgid "Attached JPEG Image" msgstr "" #: ../include/global_arrays.php:1255 msgid "Attached GIF Image" msgstr "" #: ../include/global_arrays.php:1259 msgid "Inline PNG Image, LN Style" msgstr "" #: ../include/global_arrays.php:1261 msgid "Inline JPEG Image, LN Style" msgstr "" #: ../include/global_arrays.php:1262 msgid "Inline GIF Image, LN Style" msgstr "" #: ../include/global_arrays.php:1267 msgid "Text" msgstr "ТекÑÑ‚" #: ../include/global_arrays.php:1268 ../include/global_form.php:2223 msgid "Tree" msgstr "Дерево" #: ../include/global_arrays.php:1270 msgid "Horizontal Rule" msgstr "" #: ../include/global_arrays.php:1274 msgid "left" msgstr "" #: ../include/global_arrays.php:1275 msgid "center" msgstr "" #: ../include/global_arrays.php:1276 msgid "right" msgstr "" #: ../include/global_arrays.php:1280 msgid "Minute(s)" msgstr "Минут(а)" #: ../include/global_arrays.php:1281 msgid "Hour(s)" msgstr "ЧаÑ(ов)" #: ../include/global_arrays.php:1282 msgid "Day(s)" msgstr "День(дней)" #: ../include/global_arrays.php:1283 msgid "Week(s)" msgstr "Ðедель" #: ../include/global_arrays.php:1284 msgid "Month(s), Day of Month" msgstr "" #: ../include/global_arrays.php:1285 msgid "Month(s), Day of Week" msgstr "" #: ../include/global_arrays.php:1286 msgid "Year(s)" msgstr "" #: ../include/global_arrays.php:1290 msgid "Keep Graph Types" msgstr "СохранÑть типы графиков" #: ../include/global_arrays.php:1291 msgid "Keep Type and STACK" msgstr "" #: ../include/global_arrays.php:1292 msgid "Convert to AREA/STACK Graph" msgstr "" #: ../include/global_arrays.php:1293 msgid "Convert to LINE1 Graph" msgstr "" #: ../include/global_arrays.php:1294 msgid "Convert to LINE2 Graph" msgstr "" #: ../include/global_arrays.php:1295 msgid "Convert to LINE3 Graph" msgstr "" #: ../include/global_arrays.php:1299 msgid "No Totals" msgstr "" #: ../include/global_arrays.php:1300 msgid "Print all Legend Items" msgstr "" #: ../include/global_arrays.php:1301 msgid "Print totaling Legend Items Only" msgstr "" #: ../include/global_arrays.php:1305 msgid "Total Similar Data Sources" msgstr "" #: ../include/global_arrays.php:1306 msgid "Total All Data Sources" msgstr "" #: ../include/global_arrays.php:1310 msgid "No Reordering" msgstr "" #: ../include/global_arrays.php:1311 msgid "Data Source, Graph" msgstr "" #: ../include/global_arrays.php:1312 msgid "Graph, Data Source" msgstr "" #: ../include/global_arrays.php:1319 msgid "contains" msgstr "" #: ../include/global_arrays.php:1320 msgid "does not contain" msgstr "" #: ../include/global_arrays.php:1321 msgid "begins with" msgstr "" #: ../include/global_arrays.php:1322 msgid "does not begin with" msgstr "" #: ../include/global_arrays.php:1323 msgid "ends with" msgstr "" #: ../include/global_arrays.php:1324 msgid "does not end with" msgstr "" #: ../include/global_arrays.php:1325 msgid "matches" msgstr "" #: ../include/global_arrays.php:1326 msgid "does not match with" msgstr "" #: ../include/global_arrays.php:1327 msgid "is less than" msgstr "" #: ../include/global_arrays.php:1328 msgid "is less than or equal" msgstr "" #: ../include/global_arrays.php:1329 msgid "is greater than" msgstr "" #: ../include/global_arrays.php:1330 msgid "is greater than or equal" msgstr "" #: ../include/global_arrays.php:1331 msgid "is unknown" msgstr "" #: ../include/global_arrays.php:1332 msgid "is not unknown" msgstr "" #: ../include/global_arrays.php:1333 msgid "is empty" msgstr "" #: ../include/global_arrays.php:1334 msgid "is not empty" msgstr "" #: ../include/global_arrays.php:1335 msgid "matches regular expression" msgstr "" #: ../include/global_arrays.php:1336 msgid "does not match regular expression" msgstr "" #: ../include/global_arrays.php:1438 msgid "Fixed String" msgstr "" #: ../include/global_arrays.php:1443 msgid "Every 1 Hour" msgstr "" #: ../include/global_arrays.php:1449 msgid "Every Day" msgstr "" #: ../include/global_arrays.php:1450 msgid "Every Week" msgstr "" #: ../include/global_arrays.php:1451 ../include/global_arrays.php:1452 #, php-format msgid "Every %d Weeks" msgstr "" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "cairo-dock-plug-ins" #: ../include/global_arrays.php:1477 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Jan" msgstr "Янв" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "cairo-dock-plug-ins" #: ../include/global_arrays.php:1478 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Feb" msgstr "Фев" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "cairo-dock-plug-ins" #: ../include/global_arrays.php:1479 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Mar" msgstr "Мар" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "cairo-dock-plug-ins" #: ../include/global_arrays.php:1480 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Apr" msgstr "Ðпр" #: ../include/global_arrays.php:1481 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "May" msgstr "_Май_" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "cairo-dock-plug-ins" #: ../include/global_arrays.php:1482 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Jun" msgstr "Июн" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "celestia" #: ../include/global_arrays.php:1483 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Jul" msgstr "июл" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "cairo-dock-plug-ins" #: ../include/global_arrays.php:1484 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Aug" msgstr "Ðвг" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "cairo-dock-plug-ins" #: ../include/global_arrays.php:1485 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Sep" msgstr "Сен" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "cairo-dock-plug-ins" #: ../include/global_arrays.php:1486 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Oct" msgstr "Окт" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "cairo-dock-plug-ins" #: ../include/global_arrays.php:1487 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Nov" msgstr "ÐоÑ" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "cairo-dock-plug-ins" #: ../include/global_arrays.php:1488 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Dec" msgstr "Дек" #: ../include/global_arrays.php:1502 #, fuzzy msgctxt "A textual representation of a day, three letters" msgid "Sun" msgstr "Ð’Ñ." #: ../include/global_arrays.php:1503 #, fuzzy msgctxt "A textual representation of a day, three letters" msgid "Mon" msgstr "Пн." #: ../include/global_arrays.php:1504 #, fuzzy msgctxt "A textual representation of a day, three letters" msgid "Tue" msgstr "Ð’Ñ‚." #: ../include/global_arrays.php:1505 #, fuzzy msgctxt "A textual representation of a day, three letters" msgid "Wed" msgstr "Ср." #: ../include/global_arrays.php:1506 #, fuzzy msgctxt "A textual representation of a day, three letters" msgid "Thu" msgstr "Чт." #: ../include/global_arrays.php:1507 #, fuzzy msgctxt "A textual representation of a day, three letters" msgid "Fri" msgstr "Пт." #: ../include/global_arrays.php:1508 #, fuzzy msgctxt "A textual representation of a day, three letters" msgid "Sat" msgstr "Сб." #: ../include/global_form.php:36 msgid "A useful name for this Data Storage and Polling Profile." msgstr "" #: ../include/global_form.php:40 msgid "New Profile" msgstr "" #: ../include/global_form.php:44 msgid "Polling Interval" msgstr "" #: ../include/global_form.php:45 msgid "The frequency that data will be collected from the Data Source?" msgstr "" #: ../include/global_form.php:53 msgid "" "How long can data be missing before RRDtool records unknown data. \n" "\t\t\tIncrease this value if your Data Source is unstable and you wish to " "carry forward \n" "\t\t\told data rather than show gaps in your graphs. This value is " "multiplied by the\n" "\t\t\tX-Files Factor to determine the actual amount of time." msgstr "" #: ../include/global_form.php:63 msgid "X-Files Factor" msgstr "" #: ../include/global_form.php:64 msgid "The amount of unknown data that can still be regarded as known." msgstr "" #: ../include/global_form.php:72 msgid "Consolidation Functions" msgstr "" #: ../include/global_form.php:73 ../include/global_form.php:105 msgid "How data is to be entered in RRAs." msgstr "" #: ../include/global_form.php:80 msgid "Is this the default storage profile?" msgstr "" #: ../include/global_form.php:86 msgid "RRDfile Size (in Bytes)" msgstr "" #: ../include/global_form.php:87 msgid "" "Based upon the number of Rows in all RRAs and the number of Consolidation " "Functions selected, the size of this entire in the RRDfile." msgstr "" #: ../include/global_form.php:109 msgid "New Profile RRA" msgstr "" #: ../include/global_form.php:113 msgid "Aggregation Level" msgstr "" #: ../include/global_form.php:114 msgid "" "The number of samples required prior to filling a row in the RRA " "specification. The first RRA should always have a value of 1." msgstr "" #: ../include/global_form.php:122 msgid "How many generations data is kept in the RRA." msgstr "" #: ../include/global_form.php:130 msgid "Effective Retention" msgstr "" #: ../include/global_form.php:131 msgid "" "Based upon the Aggregation Level, the Rows, and the Polling Interval the " "amount of data that will be retained in the RRA" msgstr "" #: ../include/global_form.php:136 msgid "RRA Size (in Bytes)" msgstr "" #: ../include/global_form.php:137 msgid "" "Based upon the number of Rows and the number of Consolidation Functions " "selected, the size of this RRA in the RRDfile." msgstr "" #: ../include/global_form.php:155 msgid "A useful name for this CDEF." msgstr "" #: ../include/global_form.php:175 msgid "The name of this Color." msgstr "" #: ../include/global_form.php:182 msgid "Hex Value" msgstr "" #: ../include/global_form.php:183 msgid "The hex value for this color; valid range: 000000-FFFFFF." msgstr "" #: ../include/global_form.php:191 msgid "Any named color should be read only." msgstr "" #: ../include/global_form.php:216 ../include/global_form.php:276 msgid "Enter a meaningful name for this data input method." msgstr "" #: ../include/global_form.php:223 msgid "Input Type" msgstr "" #: ../include/global_form.php:224 msgid "" "Choose the method you wish to use to collect data for this Data Input method." msgstr "" #: ../include/global_form.php:230 msgid "Input String" msgstr "" #: ../include/global_form.php:231 msgid "" "The data that is sent to the script, which includes the complete path to the " "script and input sources in <> brackets." msgstr "" #: ../include/global_form.php:252 ../include/global_form.php:263 #, php-format msgid "Field [%s]" msgstr "" #: ../include/global_form.php:253 #, php-format msgid "Choose the associated field from the %s field." msgstr "" #: ../include/global_form.php:264 #, php-format msgid "" "Enter a name for this %s field. Note: If using name value pairs in your " "script, for example: NAME:VALUE, it is important that the name match your " "output field name identically to the script output name or names." msgstr "" #: ../include/global_form.php:283 msgid "Update RRDfile" msgstr "" #: ../include/global_form.php:284 msgid "Whether data from this output field is to be entered into the RRDfile." msgstr "" #: ../include/global_form.php:291 msgid "Regular Expression Match" msgstr "" #: ../include/global_form.php:292 msgid "" "If you want to require a certain regular expression to be matched against " "input data, enter it here (preg_match format)." msgstr "" #: ../include/global_form.php:299 msgid "Allow Empty Input" msgstr "" #: ../include/global_form.php:300 msgid "Check here if you want to allow NULL input in this field from the user." msgstr "" #: ../include/global_form.php:307 msgid "Special Type Code" msgstr "" #: ../include/global_form.php:308 #, php-format msgid "" "If this field should be treated specially by host templates, indicate so " "here. Valid keywords for this field are %s" msgstr "" #: ../include/global_form.php:340 msgid "The name given to this data template." msgstr "" #: ../include/global_form.php:371 msgid "" "Choose a name for this data source. It can include replacement variables " "such as |host_description| or |query_fieldName|.\n" " For a complete list of supported replacement tags, please see " "the Cacti documentation." msgstr "" #: ../include/global_form.php:376 msgid "Data Source Path" msgstr "" #: ../include/global_form.php:381 msgid "The full path to the RRDfile." msgstr "" #: ../include/global_form.php:390 msgid "The script/source used to gather data for this data source." msgstr "" #: ../include/global_form.php:396 ../include/global_form.php:1615 msgid "" "Select the Data Source Profile. The Data Source Profile controls polling " "interval, the data aggregation, and retention policy for the resulting Data " "Sources." msgstr "" #: ../include/global_form.php:402 msgid "Step" msgstr "Шаг" #: ../include/global_form.php:407 msgid "The amount of time in seconds between expected updates." msgstr "" #: ../include/global_form.php:411 msgid "Data Source Active" msgstr "" #: ../include/global_form.php:414 msgid "Whether Cacti should gather data for this data source or not." msgstr "" #: ../include/global_form.php:422 msgid "Internal Data Source Name" msgstr "" #: ../include/global_form.php:427 msgid "" "Choose unique name to represent this piece of data inside of the RRDfile." msgstr "" #: ../include/global_form.php:430 msgid "Minimum Value (\"U\" for No Minimum)" msgstr "" #: ../include/global_form.php:435 msgid "The minimum value of data that is allowed to be collected." msgstr "" #: ../include/global_form.php:438 msgid "Maximum Value (\"U\" for No Maximum)" msgstr "" #: ../include/global_form.php:443 msgid "The maximum value of data that is allowed to be collected." msgstr "" #: ../include/global_form.php:446 msgid "Data Source Type" msgstr "" #: ../include/global_form.php:450 msgid "How data is represented in the RRA." msgstr "" #: ../include/global_form.php:458 msgid "" "The maximum amount of time that can pass before data is entered as " "'unknown'. (Usually 2x300=600)" msgstr "" #: ../include/global_form.php:464 msgid "Not Selected" msgstr "" #: ../include/global_form.php:465 msgid "" "When data is gathered, the data for this field will be put into this data " "source." msgstr "" #: ../include/global_form.php:474 msgid "" "Enter a name for this GPRINT preset, make sure it is something you recognize." msgstr "" #: ../include/global_form.php:481 msgid "GPRINT Text" msgstr "" #: ../include/global_form.php:482 msgid "Enter the custom GPRINT string here." msgstr "" #: ../include/global_form.php:500 msgid "Common Options" msgstr "" #: ../include/global_form.php:505 msgid "Title (--title)" msgstr "" #: ../include/global_form.php:509 msgid "" "The name that is printed on the graph. It can include replacement variables " "such as |host_description| or |query_fieldName|.\n" "\t\t\tFor a complete list of supported replacement tags, please see the " "Cacti documentation." msgstr "" #: ../include/global_form.php:514 msgid "Vertical Label (--vertical-label)" msgstr "" #: ../include/global_form.php:518 msgid "The label vertically printed to the left of the graph." msgstr "Ð’ÐµÑ€Ñ‚Ð¸ÐºÐ°Ð»ÑŒÐ½Ð°Ñ Ð¼ÐµÑ‚ÐºÐ° пишетÑÑ Ñлева от графика" #: ../include/global_form.php:522 msgid "Image Format (--imgformat)" msgstr "" #: ../include/global_form.php:526 msgid "" "The type of graph that is generated; PNG, GIF or SVG. The selection of " "graph image type is very RRDtool dependent." msgstr "" #: ../include/global_form.php:529 msgid "Height (--height)" msgstr "" #: ../include/global_form.php:533 msgid "" "The height (in pixels) of the graph area within the graph. This area does " "not include the legend, axis legends, or title." msgstr "" #: ../include/global_form.php:537 msgid "Width (--width)" msgstr "" #: ../include/global_form.php:541 msgid "" "The width (in pixels) of the graph area within the graph. This area does not " "include the legend, axis legends, or title." msgstr "" #: ../include/global_form.php:545 msgid "Base Value (--base)" msgstr "" #: ../include/global_form.php:549 msgid "Should be set to 1024 for memory and 1000 for traffic measurements." msgstr "" #: ../include/global_form.php:553 msgid "Slope Mode (--slope-mode)" msgstr "" #: ../include/global_form.php:556 msgid "" "Using Slope Mode evens out the shape of the graphs at the expense of\n" "\t\t\tsome on screen resolution." msgstr "" #: ../include/global_form.php:560 msgid "Scaling Options" msgstr "" #: ../include/global_form.php:565 msgid "Auto Scale" msgstr "" #: ../include/global_form.php:568 msgid "" "Auto scale the y-axis instead of defining an upper and lower limit. Note: if " "this is check both the\n" "\t\t\tUpper and Lower limit will be ignored." msgstr "" #: ../include/global_form.php:573 msgid "Auto Scale Options" msgstr "" #: ../include/global_form.php:576 msgid "" "Use
    \n" "\t\t\t--alt-autoscale to scale to the absolute minimum and maximum
    \n" "\t\t\t--alt-autoscale-max to scale to the maximum value, using a given lower " "limit
    \n" "\t\t\t--alt-autoscale-min to scale to the minimum value, using a given upper " "limit
    \n" "\t\t\t--alt-autoscale (with limits) to scale using both lower and upper " "limits (RRDtool default)
    " msgstr "" #: ../include/global_form.php:584 msgid "Use --alt-autoscale (ignoring given limits)" msgstr "" #: ../include/global_form.php:588 msgid "Use --alt-autoscale-max (accepting a lower limit)" msgstr "" #: ../include/global_form.php:592 msgid "Use --alt-autoscale-min (accepting an upper limit)" msgstr "" #: ../include/global_form.php:596 msgid "Use --alt-autoscale (accepting both limits, RRDtool default)" msgstr "" #: ../include/global_form.php:601 msgid "Logarithmic Scaling (--logarithmic)" msgstr "" #: ../include/global_form.php:605 msgid "Use Logarithmic y-axis scaling" msgstr "" #: ../include/global_form.php:608 msgid "SI Units for Logarithmic Scaling (--units=si)" msgstr "" #: ../include/global_form.php:611 msgid "" "Use SI Units for Logarithmic Scaling instead of using exponential notation." "
    \n" "\t\t\tNote: Linear graphs use SI notation by default." msgstr "" #: ../include/global_form.php:615 msgid "Rigid Boundaries Mode (--rigid)" msgstr "" #: ../include/global_form.php:618 msgid "" "Do not expand the lower and upper limit if the graph contains a value " "outside the valid range." msgstr "" #: ../include/global_form.php:621 msgid "Upper Limit (--upper-limit)" msgstr "" #: ../include/global_form.php:625 msgid "The maximum vertical value for the graph." msgstr "" #: ../include/global_form.php:629 msgid "Lower Limit (--lower-limit)" msgstr "" #: ../include/global_form.php:633 msgid "The minimum vertical value for the graph." msgstr "" #: ../include/global_form.php:637 msgid "Grid Options" msgstr "" #: ../include/global_form.php:642 msgid "Unit Grid Value (--unit/--y-grid)" msgstr "" #: ../include/global_form.php:646 msgid "" "Sets the exponent value on the Y-axis for numbers. Note: This option is\n" "\t\t\tdeprecated and replaced by the --y-grid option. In this option, Y-" "axis grid lines appear\n" "\t\t\tat each grid step interval. Labels are placed every label factor " "lines." msgstr "" #: ../include/global_form.php:652 msgid "Unit Exponent Value (--units-exponent)" msgstr "" #: ../include/global_form.php:656 msgid "" "What unit cacti should use on the Y-axis. Use 3 to display everything in \"k" "\" or -6\n" "\t\t\tto display everything in \"u\" (micro)." msgstr "" #: ../include/global_form.php:661 msgid "Unit Length (--units-length <length>)" msgstr "" #: ../include/global_form.php:666 msgid "" "How many digits should RRDtool assume the y-axis labels to be? You may have " "to use this \n" "\t\t\toption to make enough space once you start fiddling with the y-axis " "labeling." msgstr "" #: ../include/global_form.php:670 msgid "No Gridfit (--no-gridfit)" msgstr "" #: ../include/global_form.php:673 msgid "" "In order to avoid anti-aliasing blurring effects RRDtool snaps points to " "device \n" "\t\t\tresolution pixels, this results in a crisper appearance. If this is " "not to your liking, you can \n" "\t\t\tuse this switch to turn this behavior off.
    Note: Gridfitting is turned off for PDF, EPS, SVG output by default." msgstr "" #: ../include/global_form.php:678 msgid "Alternative Y Grid (--alt-y-grid)" msgstr "" #: ../include/global_form.php:681 msgid "" "The algorithm ensures that you always have a grid, that there are enough but " "not too many grid lines, \n" "\t\t\tand that the grid is metric. This parameter will also ensure that you " "get enough decimals displayed \n" "\t\t\teven if your graph goes from 69.998 to 70.001.
    Note: This parameter may interfere with --alt-autoscale options." msgstr "" #: ../include/global_form.php:686 msgid "Axis Options" msgstr "" #: ../include/global_form.php:691 msgid "Right Axis (--right-axis <scale:shift>)" msgstr "" #: ../include/global_form.php:696 msgid "" "A second axis will be drawn to the right of the graph. It is tied to the " "left axis via the \n" "\t\t\tscale and shift parameters." msgstr "" #: ../include/global_form.php:700 msgid "Right Axis Label (--right-axis-label <string>)" msgstr "" #: ../include/global_form.php:705 msgid "The label for the right axis." msgstr "" #: ../include/global_form.php:708 msgid "Right Axis Format (--right-axis-format <format>)" msgstr "" #: ../include/global_form.php:713 #, php-format msgid "" "By default, the format of the axis labels gets determined automatically. \n" "\t\t\tIf you want to do this yourself, use this option with the same %lf " "arguments you know from the PRINT and GPRINT commands." msgstr "" #: ../include/global_form.php:717 msgid "Right Axis Formatter (--right-axis-formatter <formatname>)" msgstr "" #: ../include/global_form.php:722 msgid "" "When you setup the right axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted " "as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S" "\"). See also --units-length and --right-axis-format. Finally\n" "\t\t\t\"duration\" where values are interpreted as duration in " "milliseconds. Formatting follows the rules of valstrfduration qualified " "PRINT/GPRINT." msgstr "" #: ../include/global_form.php:728 msgid "Left Axis Formatter (--left-axis-formatter <formatname>)" msgstr "" #: ../include/global_form.php:733 msgid "" "When you setup the left axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted " "as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S" "\"). See also --units-length. Finally \"duration\" where values\n" "\t\t\tare interpreted as duration in milliseconds. Formatting follows the " "rules of valstrfduration qualified PRINT/GPRINT." msgstr "" #: ../include/global_form.php:739 msgid "Legend Options" msgstr "" #: ../include/global_form.php:744 msgid "Auto Padding" msgstr "" #: ../include/global_form.php:747 msgid "" "Pad text so that legend and graph data always line up. Note: this could " "cause\n" "\t\t\tgraphs to take longer to render because of the larger overhead. Also " "Auto Padding may not\n" "\t\t\tbe accurate on all types of graphs, consistent labeling usually helps." msgstr "" #: ../include/global_form.php:752 msgid "Dynamic Labels (--dynamic-labels)" msgstr "" #: ../include/global_form.php:755 msgid "Draw line markers as a line." msgstr "" #: ../include/global_form.php:758 msgid "Force Rules Legend (--force-rules-legend)" msgstr "" #: ../include/global_form.php:761 msgid "Force the generation of HRULE and VRULE legends." msgstr "" #: ../include/global_form.php:764 msgid "Tab Width (--tabwidth <pixels>)" msgstr "" #: ../include/global_form.php:769 msgid "By default the tab-width is 40 pixels, use this option to change it." msgstr "" #: ../include/global_form.php:772 msgid "Legend Position (--legend-position=<position>)" msgstr "" #: ../include/global_form.php:776 msgid "Place the legend at the given side of the graph." msgstr "" #: ../include/global_form.php:779 msgid "Legend Direction (--legend-direction=<direction>)" msgstr "" #: ../include/global_form.php:783 msgid "Place the legend items in the given vertical order." msgstr "" #: ../include/global_form.php:790 ../lib/api_aggregate.php:1216 #: ../lib/html.php:857 msgid "Graph Item Type" msgstr "" #: ../include/global_form.php:794 msgid "How data for this item is represented visually on the graph." msgstr "" #: ../include/global_form.php:809 msgid "The data source to use for this graph item." msgstr "" #: ../include/global_form.php:816 msgid "The color to use for the legend." msgstr "Цвет иÑпользуемый Ð´Ð»Ñ Ð»ÐµÐ³ÐµÐ½Ð´Ñ‹" #: ../include/global_form.php:819 msgid "Opacity/Alpha Channel" msgstr "" #: ../include/global_form.php:823 msgid "The opacity/alpha channel of the color." msgstr "" #: ../include/global_form.php:826 ../lib/rrd.php:2688 msgid "Consolidation Function" msgstr "Ð¤ÑƒÐ½ÐºÑ†Ð¸Ñ ÐšÐ¾Ð½Ñолидации" #: ../include/global_form.php:830 msgid "How data for this item is represented statistically on the graph." msgstr "" #: ../include/global_form.php:833 msgid "CDEF Function" msgstr "" #: ../include/global_form.php:838 msgid "A CDEF (math) function to apply to this item on the graph or legend." msgstr "" #: ../include/global_form.php:841 msgid "VDEF Function" msgstr "" #: ../include/global_form.php:846 msgid "A VDEF (math) function to apply to this item on the graph legend." msgstr "" #: ../include/global_form.php:849 msgid "Shift Data" msgstr "" #: ../include/global_form.php:852 msgid "" "Offset your data on the time axis (x-axis) by the amount specified in the " "'value' field." msgstr "" #: ../include/global_form.php:855 ../lib/rrd.php:2658 ../utilities.php:2338 msgid "Value" msgstr "Значение" #: ../include/global_form.php:860 msgid "" "[HRULE|VRULE]: The value of the graph item.
    \n" "\t\t\t[TICK]: The fraction for the tick line.
    \n" "\t\t\t[SHIFT]: The time offset in seconds." msgstr "" #: ../include/global_form.php:865 msgid "GPRINT Type" msgstr "" #: ../include/global_form.php:869 msgid "" "If this graph item is a GPRINT, you can optionally choose another format\n" "\t\t\there. You can define additional types under \"GPRINT Presets\"." msgstr "" #: ../include/global_form.php:873 msgid "Text Alignment (TEXTALIGN)" msgstr "" #: ../include/global_form.php:878 msgid "" "All subsequent legend line(s) will be aligned as given here. You may use " "this command multiple times in a single graph.\n" "\t\t\tThis command does not produce tabular layout.
    Note: You may want to insert a <HR> on the preceding graph item.
    \n" "\t\t\tNote: A <HR> on this legend line will obsolete " "this setting!" msgstr "" #: ../include/global_form.php:883 msgid "Text Format" msgstr "Формат ТекÑта" #: ../include/global_form.php:888 msgid "Text that will be displayed on the legend for this graph item." msgstr "" #: ../include/global_form.php:891 msgid "Insert Hard Return" msgstr "" #: ../include/global_form.php:894 msgid "Forces the legend to the next line after this item." msgstr "" #: ../include/global_form.php:897 msgid "Line Width (decimal)" msgstr "" #: ../include/global_form.php:902 msgid "" "In case LINE was chosen, specify width of line here. You must include a " "decimal precision, for example 2.00" msgstr "" #: ../include/global_form.php:905 msgid "Dashes (dashes[=on_s[,off_s[,on_s,off_s]...]])" msgstr "" #: ../include/global_form.php:910 msgid "The dashes modifier enables dashed line style." msgstr "" #: ../include/global_form.php:913 msgid "Dash Offset (dash-offset=offset)" msgstr "" #: ../include/global_form.php:918 msgid "" "The dash-offset parameter specifies an offset into the pattern at which the " "stroke begins." msgstr "" #: ../include/global_form.php:931 msgid "The name given to this graph template." msgstr "" #: ../include/global_form.php:938 msgid "Multiple Instances" msgstr "" #: ../include/global_form.php:939 msgid "" "Check this checkbox if there can be more than one Graph of this type per " "Device." msgstr "" #: ../include/global_form.php:963 msgid "" "Enter a name for this graph item input, make sure it is something you " "recognize." msgstr "" #: ../include/global_form.php:971 msgid "" "Enter a description for this graph item input to describe what this input is " "used for." msgstr "" #: ../include/global_form.php:978 msgid "Field Type" msgstr "" #: ../include/global_form.php:979 msgid "How data is to be represented on the graph." msgstr "" #: ../include/global_form.php:1002 msgid "General Device Options" msgstr "" #: ../include/global_form.php:1007 msgid "Give this host a meaningful description." msgstr "" #: ../include/global_form.php:1014 ../include/global_form.php:1639 msgid "Fully qualified hostname or IP address for this device." msgstr "" #: ../include/global_form.php:1021 msgid "Poller Association" msgstr "" #: ../include/global_form.php:1029 msgid "Device Site Association" msgstr "" #: ../include/global_form.php:1030 msgid "What Site is this Device associated with." msgstr "" #: ../include/global_form.php:1039 msgid "" "Choose the Device Template to use to define the default Graph Templates and " "Data Queries associated with this Device." msgstr "" #: ../include/global_form.php:1046 msgid "Number of Collection Threads" msgstr "" #: ../include/global_form.php:1047 msgid "" "The number of concurrent threads to use for polling this device. This " "applies to the Spine poller only." msgstr "" #: ../include/global_form.php:1054 msgid "Disable Device" msgstr "" #: ../include/global_form.php:1055 msgid "Check this box to disable all checks for this host." msgstr "" #: ../include/global_form.php:1068 ../include/global_form.php:1668 msgid "Choose the SNMP version for this device." msgstr "" #: ../include/global_form.php:1076 ../include/global_form.php:1676 msgid "SNMP Community" msgstr "" #: ../include/global_form.php:1077 ../include/global_form.php:1677 msgid "SNMP read community for this device." msgstr "" #: ../include/global_form.php:1096 msgid "SNMP v3 authentication pass phrase for this device." msgstr "" #: ../include/global_form.php:1105 msgid "Choose the SNMPv3 authentication protocol." msgstr "" #: ../include/global_form.php:1113 msgid "Choose the SNMPv3 privacy passphrase." msgstr "" #: ../include/global_form.php:1122 msgid "Choose the SNMPv3 privacy protocol." msgstr "" #: ../include/global_form.php:1129 msgid "SNMP Context (v3)" msgstr "" #: ../include/global_form.php:1130 msgid "Enter the SNMP v3 context to use for this device." msgstr "" #: ../include/global_form.php:1138 msgid "SNMP Engine ID (v3)" msgstr "" #: ../include/global_form.php:1139 msgid "" "Enter the SNMP v3 Engine Id to use for this device. Leave this field empty " "to use the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "" #: ../include/global_form.php:1148 msgid "Enter the UDP port number to use for SNMP (default is 161)." msgstr "" #: ../include/global_form.php:1165 msgid "Maximum OIDs Per Get Request" msgstr "" #: ../include/global_form.php:1174 msgid "Availability/Reachability Options" msgstr "" #: ../include/global_form.php:1178 ../include/global_settings.php:547 msgid "Downed Device Detection" msgstr "" #: ../include/global_form.php:1179 ../include/global_settings.php:548 msgid "" "The method Cacti will use to determine if a host is available for polling. " "
    NOTE: It is recommended that, at a minimum, SNMP always be selected." msgstr "" #: ../include/global_form.php:1188 msgid "" "The type of ping packet to sent.
    NOTE: ICMP on Linux/UNIX requires " "root privileges." msgstr "" #: ../include/global_form.php:1225 ../include/global_form.php:1763 msgid "Additional Options" msgstr "" #: ../include/global_form.php:1229 ../include/global_form.php:1768 #: ../pollers.php:70 msgid "Notes" msgstr "" #: ../include/global_form.php:1230 ../include/global_form.php:1769 msgid "Enter notes to this host." msgstr "" #: ../include/global_form.php:1237 #, fuzzy msgid "External ID" msgstr "Внешние ÑÑылки" #: ../include/global_form.php:1238 msgid "External ID for linking Cacti data to external monitoring systems." msgstr "" #: ../include/global_form.php:1260 msgid "A useful name for this host template." msgstr "" #: ../include/global_form.php:1280 msgid "A name for this data query." msgstr "" #: ../include/global_form.php:1288 msgid "A description for this data query." msgstr "" #: ../include/global_form.php:1295 msgid "XML Path" msgstr "" #: ../include/global_form.php:1296 msgid "" "The full path to the XML file containing definitions for this data query." msgstr "" #: ../include/global_form.php:1305 msgid "" "Choose the input method for this Data Query. This input method defines how " "data is collected for each Device associated with the Data Query." msgstr "" #: ../include/global_form.php:1324 msgid "" "Choose the Graph Template to use for this Data Query Graph Template item." msgstr "" #: ../include/global_form.php:1350 msgid "A name for this associated graph." msgstr "" #: ../include/global_form.php:1378 msgid "A useful name for this graph tree." msgstr "" #: ../include/global_form.php:1385 ../include/global_form.php:2281 #: ../lib/api_automation.php:1334 ../tree.php:1279 msgid "Sorting Type" msgstr "" #: ../include/global_form.php:1386 ../include/global_form.php:2282 msgid "Choose how items in this tree will be sorted." msgstr "" #: ../include/global_form.php:1392 msgid "Publish" msgstr "" #: ../include/global_form.php:1393 msgid "Should this Tree be published for users to access?" msgstr "" #: ../include/global_form.php:1428 msgid "An Email Address where the User can be reached." msgstr "" #: ../include/global_form.php:1436 msgid "" "Enter the password for this user twice. Remember that passwords are case " "sensitive!" msgstr "" #: ../include/global_form.php:1444 ../user_group_admin.php:88 msgid "Determines if user is able to login." msgstr "" #: ../include/global_form.php:1450 ../tree.php:1561 msgid "Locked" msgstr "" #: ../include/global_form.php:1451 msgid "Determines if the user account is locked." msgstr "" #: ../include/global_form.php:1456 msgid "Account Options" msgstr "" #: ../include/global_form.php:1458 msgid "Set any user account specific options here." msgstr "" #: ../include/global_form.php:1462 msgid "Must Change Password at Next Login" msgstr "" #: ../include/global_form.php:1474 msgid "Maintain Custom Graph and User Settings" msgstr "" #: ../include/global_form.php:1481 msgid "Graph Options" msgstr "" #: ../include/global_form.php:1483 msgid "Set any graph specific options here." msgstr "" #: ../include/global_form.php:1487 msgid "User Has Rights to Tree View" msgstr "" #: ../include/global_form.php:1493 msgid "User Has Rights to List View" msgstr "" #: ../include/global_form.php:1499 msgid "User Has Rights to Preview View" msgstr "" #: ../include/global_form.php:1506 ../user_group_admin.php:130 msgid "Login Options" msgstr "" #: ../include/global_form.php:1509 msgid "What to do when this user logs in." msgstr "" #: ../include/global_form.php:1514 msgid "Show the page that user pointed their browser to." msgstr "" #: ../include/global_form.php:1518 msgid "Show the default console screen." msgstr "" #: ../include/global_form.php:1522 msgid "Show the default graph screen." msgstr "" #: ../include/global_form.php:1528 ../utilities.php:765 msgid "Authentication Realm" msgstr "" #: ../include/global_form.php:1529 msgid "" "Only used if you have LDAP or Web Basic Authentication enabled. Changing " "this to a non-enabled realm will effectively disable the user." msgstr "" #: ../include/global_form.php:1566 msgid "Discovery Rules" msgstr "" #: ../include/global_form.php:1584 msgid "Import Template from Local File" msgstr "" #: ../include/global_form.php:1585 msgid "" "If the XML file containing template data is located on your local machine, " "select it here." msgstr "" #: ../include/global_form.php:1590 msgid "Import Template from Text" msgstr "" #: ../include/global_form.php:1591 msgid "" "If you have the XML file containing template data as text, you can paste it " "into this box to import it." msgstr "" #: ../include/global_form.php:1599 msgid "Preview Import Only" msgstr "" #: ../include/global_form.php:1601 msgid "" "If checked, Cacti will not import the template, but rather compare the " "imported Template to the existing Template data. If you are acceptable of " "the change, you can them import." msgstr "" #: ../include/global_form.php:1606 msgid "Remove Orphaned Graph Items" msgstr "" #: ../include/global_form.php:1608 msgid "" "If checked, Cacti will delete any Graph Items from both the Graph Template " "and associated Graphs that are not included in the imported Graph Template." msgstr "" #: ../include/global_form.php:1625 msgid "General SNMP Entity Options" msgstr "" #: ../include/global_form.php:1631 msgid "Give this SNMP entity a meaningful description." msgstr "" #: ../include/global_form.php:1646 msgid "Disable SNMP Notification Receiver" msgstr "" #: ../include/global_form.php:1647 msgid "" "Check this box if you temporary do not want to send SNMP notifications to " "this host." msgstr "" #: ../include/global_form.php:1654 msgid "Maximum Log Size" msgstr "" #: ../include/global_form.php:1655 msgid "" "Maximum number of day's notification log entries for this receiver need to " "be stored." msgstr "" #: ../include/global_form.php:1695 msgid "SNMP Auth Password (v3)" msgstr "" #: ../include/global_form.php:1696 msgid "SNMP v3 user password for this device." msgstr "" #: ../include/global_form.php:1705 msgid "" "Choose the SNMPv3 Authorization Protocol.
    Note: SHA authentication " "support is only available if you have OpenSSL installed." msgstr "" #: ../include/global_form.php:1712 msgid "SNMP Privacy Password (v3)" msgstr "" #: ../include/global_form.php:1722 msgid "" "Choose the SNMPv3 Privacy Protocol.
    Note: DES/AES encryption support is " "only available if you have OpenSSL installed." msgstr "" #: ../include/global_form.php:1728 msgid "SNMP Engine ID" msgstr "" #: ../include/global_form.php:1729 msgid "" "Defines the unique SNMP Engine ID to identify this peer. Following format " "will be recommended:
    FlexibleLength+Enterprise(8000) + IANA-Cacti(5d75) + " "MAC-Following(03) + YOUR-MAC-ADDRESS(e.g.:D89D67287B00).
    Per default the " "locally administrated MAC 02-FF-FF-FF-FF-FF will be used." msgstr "" #: ../include/global_form.php:1738 msgid "The UDP port to be used for SNMP traps. Typically, 162." msgstr "" #: ../include/global_form.php:1754 msgid "SNMP Message Type" msgstr "" #: ../include/global_form.php:1755 msgid "" "SNMP traps are always unacknowledged. To send out acknowledged SNMP " "notifications, formally called \"INFORMS\", SNMPv2 or above will be required." msgstr "" #: ../include/global_form.php:1787 ../include/global_form.php:2046 #: ../links.php:379 msgid "Title" msgstr "Ðазвание" #: ../include/global_form.php:1788 msgid "The new Title of the aggregated Graph." msgstr "" #: ../include/global_form.php:1795 ../include/global_form.php:1878 #: ../include/global_form.php:1980 msgid "Prefix" msgstr "" #: ../include/global_form.php:1796 msgid "A Prefix for all GPRINT lines to distinguish e.g. different hosts." msgstr "" #: ../include/global_form.php:1804 ../include/global_form.php:1887 #: ../include/global_form.php:1989 msgid "" "Use this Option to create e.g. STACKed graphs.
    AREA/STACK: 1st graph " "keeps AREA/STACK items, others convert to STACK
    LINE1: all items convert " "to LINE1 items
    LINE2: all items convert to LINE2 items
    LINE3: all " "items convert to LINE3 items" msgstr "" #: ../include/global_form.php:1815 ../include/global_form.php:1898 #: ../include/global_form.php:2000 msgid "Totaling" msgstr "" #: ../include/global_form.php:1816 ../include/global_form.php:1899 #: ../include/global_form.php:2001 msgid "" "Please check those Items that shall be totaled in the \"Total\" column, when " "selecting any totaling option here." msgstr "" #: ../include/global_form.php:1823 ../include/global_form.php:1907 #: ../include/global_form.php:2009 msgid "Total Type" msgstr "" #: ../include/global_form.php:1824 ../include/global_form.php:1908 #: ../include/global_form.php:2010 msgid "Which type of totaling shall be performed." msgstr "" #: ../include/global_form.php:1831 ../include/global_form.php:1916 #: ../include/global_form.php:2018 msgid "Prefix for GPRINT Totals" msgstr "" #: ../include/global_form.php:1832 ../include/global_form.php:1917 #: ../include/global_form.php:2019 msgid "A Prefix for all totaling GPRINT lines." msgstr "" #: ../include/global_form.php:1839 ../include/global_form.php:1924 #: ../include/global_form.php:2026 msgid "Reorder Type" msgstr "" #: ../include/global_form.php:1840 ../include/global_form.php:1925 #: ../include/global_form.php:2027 msgid "Reordering of Graphs." msgstr "" #: ../include/global_form.php:1860 msgid "Please name this Aggregate Graph." msgstr "" #: ../include/global_form.php:1867 msgid "Propagation Enabled" msgstr "" #: ../include/global_form.php:1868 msgid "Is this to carry the template?" msgstr "" #: ../include/global_form.php:1874 msgid "Aggregate Graph Settings" msgstr "" #: ../include/global_form.php:1879 ../include/global_form.php:1981 msgid "" "A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may " "use both Host as well as Data Query replacement variables in this prefix." msgstr "" #: ../include/global_form.php:1959 msgid "Aggregate Template Name" msgstr "" #: ../include/global_form.php:1960 msgid "Please name this Aggregate Template." msgstr "" #: ../include/global_form.php:1967 msgid "Source Graph Template" msgstr "" #: ../include/global_form.php:1968 msgid "The Graph Template that this Aggregate Template is based upon." msgstr "" #: ../include/global_form.php:1976 msgid "Aggregate Template Settings" msgstr "" #: ../include/global_form.php:2050 msgid "The name of this Color Template." msgstr "" #: ../include/global_form.php:2061 msgid "A nice Color" msgstr "" #: ../include/global_form.php:2071 msgid "A useful name for this Template." msgstr "" #: ../include/global_form.php:2085 ../include/global_form.php:2127 #: ../lib/api_automation.php:1208 ../lib/api_automation.php:1270 msgid "Operation" msgstr "" #: ../include/global_form.php:2086 ../include/global_form.php:2128 msgid "Logical operation to combine rules." msgstr "" #: ../include/global_form.php:2094 ../include/global_form.php:2136 msgid "The Field Name that shall be used for this Rule Item." msgstr "" #: ../include/global_form.php:2102 ../include/global_form.php:2144 msgid "Operator." msgstr "" #: ../include/global_form.php:2109 ../include/global_form.php:2151 #: ../include/global_form.php:2297 msgid "Matching Pattern" msgstr "" #: ../include/global_form.php:2110 ../include/global_form.php:2152 msgid "The Pattern to be matched against." msgstr "" #: ../include/global_form.php:2118 ../include/global_form.php:2160 #: ../include/global_form.php:2314 msgid "Sequence." msgstr "" #: ../include/global_form.php:2169 ../include/global_form.php:2216 msgid "A useful name for this Rule." msgstr "" #: ../include/global_form.php:2177 msgid "Choose a Data Query to apply to this rule." msgstr "" #: ../include/global_form.php:2188 msgid "Choose any of the available Graph Types to apply to this rule." msgstr "" #: ../include/global_form.php:2203 ../include/global_form.php:2261 msgid "Enable Rule" msgstr "" #: ../include/global_form.php:2204 ../include/global_form.php:2262 msgid "Check this box to enable this rule." msgstr "" #: ../include/global_form.php:2224 msgid "Choose a Tree for the new Tree Items." msgstr "" #: ../include/global_form.php:2231 msgid "Leaf Item Type" msgstr "" #: ../include/global_form.php:2232 msgid "The Item Type that shall be dynamically added to the tree." msgstr "" #: ../include/global_form.php:2239 msgid "Graph Grouping Style" msgstr "" #: ../include/global_form.php:2240 msgid "" "Choose how graphs are grouped when drawn for this particular host on the " "tree." msgstr "" #: ../include/global_form.php:2250 msgid "Optional: Sub-Tree Item" msgstr "" #: ../include/global_form.php:2251 msgid "" "Choose a Sub-Tree Item to hook in.
    Make sure, that it is still there when " "this rule is executed!" msgstr "" #: ../include/global_form.php:2272 msgid "Header Type" msgstr "" #: ../include/global_form.php:2273 msgid "Choose an Object to build a new Sub-header." msgstr "" #: ../include/global_form.php:2289 msgid "Propagate Changes" msgstr "" #: ../include/global_form.php:2290 msgid "" "Propagate all options on this form (except for 'Title') to all child " "'Header' items." msgstr "" #: ../include/global_form.php:2298 msgid "" "The String Pattern (Regular Expression) to match against.
    Enclosing '/' " "must NOT be provided!" msgstr "" #: ../include/global_form.php:2305 msgid "Replacement Pattern" msgstr "" #: ../include/global_form.php:2306 msgid "" "The Replacement String Pattern for use as a Tree Header.
    Refer to a Match " "by e.g. \\${1} for the first match!" msgstr "" #: ../include/global_languages.php:592 msgid " T" msgstr "" #: ../include/global_languages.php:594 msgid " G" msgstr "" #: ../include/global_languages.php:596 msgid " M" msgstr "" #: ../include/global_languages.php:598 msgid " K" msgstr "" #: ../include/global_session.php:91 ../lib/html_filter.php:66 msgid "Enter a search term" msgstr "" #: ../include/global_session.php:92 msgid "Enter a regular expression" msgstr "" #: ../include/global_settings.php:38 ../include/global_settings.php:836 #: ../include/global_settings.php:940 ../include/global_settings.php:1565 #: ../managers.php:39 ../user_admin.php:1921 ../user_group_admin.php:1642 msgid "General" msgstr "" #: ../include/global_settings.php:39 msgid "Paths" msgstr "Путь" #: ../include/global_settings.php:40 msgid "Device Defaults" msgstr "" #: ../include/global_settings.php:41 ../include/global_settings.php:449 msgid "Poller" msgstr "РегиÑтратор" #: ../include/global_settings.php:42 msgid "Data Storage" msgstr "" #: ../include/global_settings.php:43 msgid "Visual" msgstr "" #: ../include/global_settings.php:44 ../lib/functions.php:3800 #: ../lib/functions.php:3805 msgid "Authentication" msgstr "ÐутентификациÑ" #: ../include/global_settings.php:45 msgid "Data Source Statistics" msgstr "" #: ../include/global_settings.php:46 msgid "Performance" msgstr "" #: ../include/global_settings.php:47 msgid "Spikes" msgstr "" #: ../include/global_settings.php:48 msgid "Mail/Reporting/DNS" msgstr "" #: ../include/global_settings.php:52 msgid "Time Spanning/Shifting" msgstr "" #: ../include/global_settings.php:53 msgid "Graph Thumbnail Settings" msgstr "" #: ../include/global_settings.php:54 msgid "Tree Settings" msgstr "" #: ../include/global_settings.php:55 msgid "Graph Fonts" msgstr "" #: ../include/global_settings.php:85 msgid "Required Tool Paths" msgstr "" #: ../include/global_settings.php:90 msgid "snmpwalk Binary Path" msgstr "" #: ../include/global_settings.php:91 msgid "The path to your snmpwalk binary." msgstr "" #: ../include/global_settings.php:96 msgid "snmpget Binary Path" msgstr "" #: ../include/global_settings.php:97 msgid "The path to your snmpget binary." msgstr "" #: ../include/global_settings.php:102 msgid "snmpbulkwalk Binary Path" msgstr "" #: ../include/global_settings.php:103 msgid "The path to your snmpbulkwalk binary." msgstr "" #: ../include/global_settings.php:108 msgid "snmpgetnext Binary Path" msgstr "" #: ../include/global_settings.php:109 msgid "The path to your snmpgetnext binary." msgstr "" #: ../include/global_settings.php:114 msgid "snmptrap Binary Path" msgstr "" #: ../include/global_settings.php:115 msgid "The path to your snmptrap binary." msgstr "" #: ../include/global_settings.php:120 msgid "RRDtool Binary Path" msgstr "" #: ../include/global_settings.php:121 msgid "The path to the rrdtool binary." msgstr "" #: ../include/global_settings.php:126 msgid "PHP Binary Path" msgstr "" #: ../include/global_settings.php:127 msgid "" "The path to your PHP binary file (may require a php recompile to get this " "file)." msgstr "" #: ../include/global_settings.php:132 msgid "Logging" msgstr "" #: ../include/global_settings.php:137 msgid "Cacti Log Path" msgstr "" #: ../include/global_settings.php:138 msgid "" "The path to your Cacti log file (if blank, defaults to /log/" "cacti.log)" msgstr "" #: ../include/global_settings.php:144 msgid "Rotate the Cacti Log Nightly" msgstr "" #: ../include/global_settings.php:145 msgid "This will rotate the Cacti Log every night at midnight." msgstr "" #: ../include/global_settings.php:150 msgid "Log Retention" msgstr "" #: ../include/global_settings.php:151 msgid "" "The number of days to retain old logs. Use 0 to never remove any logs. " "(0-365)" msgstr "" #: ../include/global_settings.php:157 msgid "Alternate Poller Path" msgstr "" #: ../include/global_settings.php:162 msgid "Spine Binary File Location" msgstr "" #: ../include/global_settings.php:163 msgid "The path to Spine binary." msgstr "" #: ../include/global_settings.php:168 msgid "Spine Config File Path" msgstr "" #: ../include/global_settings.php:169 msgid "" "The path to Spine configuration file. By default, in the cwd of spine, or /" "etc if not specified." msgstr "" #: ../include/global_settings.php:174 ../lib/functions.php:2238 #: ../rrdcleaner.php:296 msgid "RRD Cleaner" msgstr "" #: ../include/global_settings.php:179 msgid "RRDfile Auto Clean" msgstr "" #: ../include/global_settings.php:180 msgid "" "Automatically Delete, Archive, or Delete RRDfiles when removed from Cacti" msgstr "" #: ../include/global_settings.php:185 msgid "RRDfile Auto Clean Method" msgstr "" #: ../include/global_settings.php:186 msgid "The method used to Clean RRDfiles from Cacti after their deletion." msgstr "" #: ../include/global_settings.php:192 msgid "Archive directory" msgstr "" #: ../include/global_settings.php:193 msgid "" "This is the directory where RRDfiles are moved for " "Archive" msgstr "" #: ../include/global_settings.php:201 msgid "Event Logging" msgstr "" #: ../include/global_settings.php:206 msgid "Log Destination" msgstr "" #: ../include/global_settings.php:207 msgid "How will Cacti handle event logging." msgstr "" #: ../include/global_settings.php:213 msgid "Web Events" msgstr "" #: ../include/global_settings.php:214 msgid "What Cacti website messages should be placed in the log." msgstr "" #: ../include/global_settings.php:219 msgid "SNMP Messages" msgstr "" #: ../include/global_settings.php:223 msgid "Graph Syntax" msgstr "" #: ../include/global_settings.php:227 msgid "Developer Mode" msgstr "" #: ../include/global_settings.php:233 msgid "Log Settings" msgstr "" #: ../include/global_settings.php:238 msgid "Generic Log Level" msgstr "" #: ../include/global_settings.php:239 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: ../include/global_settings.php:245 msgid "Selective File Debug" msgstr "" #: ../include/global_settings.php:246 msgid "" "Select which files you wish to place in Debug mode regardless of the Generic " "Log Level setting. Any files selected will be treated as they are in Debug " "mode." msgstr "" #: ../include/global_settings.php:252 msgid "Selective Plugin Debug" msgstr "" #: ../include/global_settings.php:253 msgid "" "Select which Plugins you wish to place in Debug mode regardless of the " "Generic Log Level setting. Any files used by this plugin will be treated as " "they are in Debug mode." msgstr "" #: ../include/global_settings.php:259 msgid "Selective Device Debug" msgstr "" #: ../include/global_settings.php:260 msgid "" "A comma delimited list of Device ID's that you wish to be in Debug mode " "during data collection. This Debug level is only in place during the Cacti " "polling process." msgstr "" #: ../include/global_settings.php:267 msgid "Poller Syslog/Eventlog Selection" msgstr "" #: ../include/global_settings.php:268 msgid "" "If you are using the Syslog/Eventlog, What Cacti poller messages should be " "placed in the Syslog/Eventlog." msgstr "" #: ../include/global_settings.php:273 msgid "Statistics" msgstr "" #: ../include/global_settings.php:277 ../lib/clog_webapi.php:333 #: ../utilities.php:1002 msgid "Warnings" msgstr "" #: ../include/global_settings.php:281 ../lib/clog_webapi.php:334 #: ../utilities.php:1003 msgid "Errors" msgstr "" #: ../include/global_settings.php:287 msgid "Other Defaults" msgstr "" #: ../include/global_settings.php:292 msgid "Has Graphs/Data Sources Checked" msgstr "" #: ../include/global_settings.php:293 msgid "Should the Has Graphs and Has Data Sources be Checked by Default." msgstr "" #: ../include/global_settings.php:298 msgid "Graph Template Image Format" msgstr "" #: ../include/global_settings.php:299 msgid "The default Image Format to be used for all new Graph Templates." msgstr "" #: ../include/global_settings.php:305 msgid "Graph Template Height" msgstr "" #: ../include/global_settings.php:306 ../include/global_settings.php:314 msgid "The default Graph Width to be used for all new Graph Templates." msgstr "" #: ../include/global_settings.php:313 msgid "Graph Template Width" msgstr "" #: ../include/global_settings.php:321 msgid "Language Support" msgstr "Поддерфиваемые Языки" #: ../include/global_settings.php:322 msgid "" "Choose 'enabled' to allow the localization of Cacti. The strict mode " "requires that the requested language will also be supported by all plugins " "being installed at your system. If that's not the fact everything will be " "displayed in English." msgstr "" #: ../include/global_settings.php:328 msgid "Language" msgstr "" #: ../include/global_settings.php:329 msgid "Default language for this system." msgstr "" #: ../include/global_settings.php:335 msgid "Auto Language Detection" msgstr "ÐвтоматичеÑкое Определение Языка" #: ../include/global_settings.php:336 msgid "" "Allow to automatically determine the 'default' language of the user and " "provide it at login time if that language is supported by Cacti. If " "disabled, the default language will be in force until the user elects " "another language." msgstr "" #: ../include/global_settings.php:342 ../include/global_settings.php:1819 msgid "Date Display Format" msgstr "" #: ../include/global_settings.php:343 msgid "The System default date format to use in Cacti." msgstr "" #: ../include/global_settings.php:349 ../include/global_settings.php:1826 msgid "Date Separator" msgstr "" #: ../include/global_settings.php:350 msgid "The System default date separator to be used in Cacti." msgstr "" #: ../include/global_settings.php:356 msgid "Other Settings" msgstr "" #: ../include/global_settings.php:361 ../utilities.php:258 msgid "RRDtool Version" msgstr "" #: ../include/global_settings.php:362 msgid "The version of RRDtool that you have installed." msgstr "" #: ../include/global_settings.php:368 msgid "Graph Permission Method" msgstr "" #: ../include/global_settings.php:369 msgid "" "There are two methods for determining a User's Graph Permissions. The first " "is 'Permissive'. Under the 'Permissive' setting, a User only needs access " "to either the Graph, Device or Graph Template to gain access to the Graphs " "that apply to them. Under 'Restrictive', the User must have access to the " "Graph, the Device, and the Graph Template to gain access to the Graph." msgstr "" #: ../include/global_settings.php:376 msgid "Graph/Data Source Creation Method" msgstr "" #: ../include/global_settings.php:377 msgid "" "If set to Simple, Graphs and Data Sources can only be created from New " "Graphs. If Advanced, legacy Graph and Data Source creation is supported." msgstr "" #: ../include/global_settings.php:382 msgid "Show Form/Setting Help Inline" msgstr "" #: ../include/global_settings.php:383 msgid "" "When checked, Form and Setting Help will be show inline. Otherwise it will " "be presented when hovering over the help button." msgstr "" #: ../include/global_settings.php:388 msgid "Deletion Verification" msgstr "" #: ../include/global_settings.php:389 msgid "Prompt user before item deletion." msgstr "" #: ../include/global_settings.php:394 msgid "Hide Cacti Console" msgstr "" #: ../include/global_settings.php:395 msgid "" "For use with Cacti's External Link Support. Using this setting, you can " "replace the Cacti Console with your own page." msgstr "" #: ../include/global_settings.php:401 msgid "Enable Drag-N-Drop" msgstr "" #: ../include/global_settings.php:402 msgid "" "Some of Cacti's interfaces support Drag-N-Drop. If checked this option will " "be enabled. Note: For visually impaired user, this option may be disabled." msgstr "" #: ../include/global_settings.php:407 msgid "Force Connections over HTTPS" msgstr "" #: ../include/global_settings.php:408 msgid "" "When checked, any attempts to access Cacti will be redirected to HTTPS to " "insure high security." msgstr "" #: ../include/global_settings.php:419 msgid "Enable Automatic Graph Creation" msgstr "" #: ../include/global_settings.php:420 msgid "" "When disabled, Cacti Automation will not actively create any Graph.This is " "useful when adjusting Host settings so as to avoid creating new Graphs each " "time you save an object. Invoking Automation Rules manually will still be " "possible." msgstr "" #: ../include/global_settings.php:427 msgid "Enable Automatic Tree Item Creation" msgstr "" #: ../include/global_settings.php:428 msgid "" "When disabled, Cacti Automation will not actively create any Tree Item.This " "is useful when adjusting Host or Graph settings so as to avoid creating new " "Tree Entries each time you save an object. Invoking Rules manually will " "still be possible." msgstr "" #: ../include/global_settings.php:436 #, fuzzy msgid "General Defaults" msgstr "ОÑновые ÐаÑтройки" #: ../include/global_settings.php:442 msgid "The default Site for all new Devices." msgstr "" #: ../include/global_settings.php:450 msgid "The default Poller for all new Devices." msgstr "" #: ../include/global_settings.php:457 msgid "Re-index Method for Data Queries" msgstr "" #: ../include/global_settings.php:458 msgid "The default Re-index Method to use for all Data Queries." msgstr "" #: ../include/global_settings.php:464 msgid "SNMP Defaults" msgstr "" #: ../include/global_settings.php:470 msgid "Default SNMP version for all new hosts." msgstr "" #: ../include/global_settings.php:477 msgid "Default SNMP read community for all new hosts." msgstr "" #: ../include/global_settings.php:483 msgid "Username (v3)" msgstr "" #: ../include/global_settings.php:484 msgid "The SNMP v3 Username for polling hosts." msgstr "" #: ../include/global_settings.php:490 msgid "Password (v3)" msgstr "" #: ../include/global_settings.php:491 msgid "The SNMP v3 Password for polling hosts." msgstr "" #: ../include/global_settings.php:498 msgid "Auth Protocol (v3)" msgstr "" #: ../include/global_settings.php:505 msgid "Privacy Passphrase (v3)" msgstr "" #: ../include/global_settings.php:512 msgid "Privacy Protocol (v3)" msgstr "" #: ../include/global_settings.php:519 msgid "Default SNMP timeout in milli-seconds." msgstr "" #: ../include/global_settings.php:526 msgid "Port Number" msgstr "" #: ../include/global_settings.php:527 msgid "Default UDP port to be used for SNMP Calls. Typically, 161." msgstr "" #: ../include/global_settings.php:535 msgid "" "The number of times the SNMP poller will attempt to reach the host before " "failing." msgstr "" #: ../include/global_settings.php:542 msgid "Availability/Reachability" msgstr "" #: ../include/global_settings.php:554 msgid "Ping Type" msgstr "" #: ../include/global_settings.php:555 msgid "" "The type of ping packet to send.
    NOTE: ICMP requires that the Cacti " "Service ID have root privileges in UNIX/Linux." msgstr "" #: ../include/global_settings.php:562 msgid "" "When choosing either TCP or UDP Ping, which port should be checked for " "availability of the host prior to polling." msgstr "" #: ../include/global_settings.php:578 msgid "The number of times Cacti will attempt to ping a host before failing." msgstr "" #: ../include/global_settings.php:585 msgid "Up/Down Settings" msgstr "" #: ../include/global_settings.php:590 msgid "Failure Count" msgstr "" #: ../include/global_settings.php:591 msgid "" "The number of polling intervals a host must be down before logging an error " "and reporting host as down." msgstr "" #: ../include/global_settings.php:598 msgid "Recovery Count" msgstr "" #: ../include/global_settings.php:599 msgid "" "The number of polling intervals a host must remain up before returning host " "to an up status and issuing a notice." msgstr "" #: ../include/global_settings.php:608 msgid "Theme Settings" msgstr "" #: ../include/global_settings.php:613 ../include/global_settings.php:764 #: ../include/global_settings.php:1792 msgid "Theme" msgstr "" #: ../include/global_settings.php:614 ../include/global_settings.php:1793 msgid "Please select one of the available Themes to skin your Cacti with." msgstr "" #: ../include/global_settings.php:620 msgid "Table Settings" msgstr "" #: ../include/global_settings.php:625 msgid "Rows Per Page" msgstr "" #: ../include/global_settings.php:626 msgid "The default number of rows to display on for a table." msgstr "" #: ../include/global_settings.php:632 msgid "Graph/Data Source/Data Query Settings" msgstr "" #: ../include/global_settings.php:637 msgid "Maximum Title Length" msgstr "" #: ../include/global_settings.php:638 msgid "The maximum allowable Graph or Data Source titles." msgstr "" #: ../include/global_settings.php:645 msgid "Data Source Field Length" msgstr "" #: ../include/global_settings.php:646 msgid "The maximum Data Query field length." msgstr "" #: ../include/global_settings.php:653 msgid "Graph Creation" msgstr "" #: ../include/global_settings.php:658 msgid "Default Graph Type" msgstr "" #: ../include/global_settings.php:659 msgid "When creating graphs, what Graph Type would you like pre-selected?" msgstr "" #: ../include/global_settings.php:662 msgid "All Types" msgstr "" #: ../include/global_settings.php:662 msgid "By Template/Data Query" msgstr "" #: ../include/global_settings.php:670 msgid "Default Log Tail Lines" msgstr "" #: ../include/global_settings.php:671 msgid "Default number of lines of the Cacti log file to tail." msgstr "" #: ../include/global_settings.php:677 msgid "Maximum number of rows per page" msgstr "" #: ../include/global_settings.php:678 msgid "" "User defined number of lines for the CLOG to tail when selecting 'All lines'." msgstr "" #: ../include/global_settings.php:685 msgid "Log Tail Refresh" msgstr "" #: ../include/global_settings.php:686 msgid "How often do you want the Cacti log display to update." msgstr "" #: ../include/global_settings.php:692 msgid "RRDtool Graph Watermark" msgstr "" #: ../include/global_settings.php:697 msgid "Watermark Text" msgstr "" #: ../include/global_settings.php:698 msgid "Test to place at the bottom center of every Graph." msgstr "" #: ../include/global_settings.php:705 msgid "Log Viewer Settings" msgstr "" #: ../include/global_settings.php:710 msgid "Exclusion Regex" msgstr "" #: ../include/global_settings.php:711 msgid "" "Any strings that match this regex will be excluded from the user display.\n" "\t\t\t\tFor example, if you want to exclude all log lines that " "include the words 'Admin' or 'Login'\n" "\t\t\t\tyou would type '(Admin || Login)'" msgstr "" #: ../include/global_settings.php:720 msgid "Real-time Graphs" msgstr "" #: ../include/global_settings.php:725 msgid "Enable Real-time Graphing" msgstr "" #: ../include/global_settings.php:726 msgid "" "When an option is checked, users will be able to put Cacti into Real-time " "mode." msgstr "" #: ../include/global_settings.php:731 ../lib/html_reports.php:365 msgid "Graph Timespan" msgstr "" #: ../include/global_settings.php:732 msgid "This timespan you wish to see on the default graph." msgstr "" #: ../include/global_settings.php:738 ../utilities.php:1893 msgid "Refresh Interval" msgstr "" #: ../include/global_settings.php:739 msgid "This is the time between graph updates." msgstr "" #: ../include/global_settings.php:745 msgid "Cache Directory" msgstr "" #: ../include/global_settings.php:746 msgid "" "This is the location, on the web server where the RRDfiles and PNG files " "will be cached.\n" "\t\t\tThis cache will be managed by the poller.\n" "\t\t\tMake sure you have the correct read and write permissions on this " "folder" msgstr "" #: ../include/global_settings.php:755 msgid "RRDtool Graph Font Control" msgstr "" #: ../include/global_settings.php:760 msgid "Font Selection Method" msgstr "" #: ../include/global_settings.php:761 msgid "How do you wish fonts to be handled by default?" msgstr "" #: ../include/global_settings.php:764 msgid "System" msgstr "" #: ../include/global_settings.php:767 msgid "Default Font" msgstr "" #: ../include/global_settings.php:768 msgid "" "When not using Theme based font control, the Pangon font-config font name to " "use for all Graphs. Optionally, you may leave blank and control font " "settings on a per object basis." msgstr "" #: ../include/global_settings.php:770 ../include/global_settings.php:785 #: ../include/global_settings.php:800 ../include/global_settings.php:815 #: ../include/global_settings.php:830 msgid "Enter Valid Font Config Value" msgstr "" #: ../include/global_settings.php:774 ../include/global_settings.php:1977 msgid "Title Font Size" msgstr "" #: ../include/global_settings.php:775 ../include/global_settings.php:1978 msgid "The size of the font used for Graph Titles" msgstr "" #: ../include/global_settings.php:782 msgid "Title Font Setting" msgstr "" #: ../include/global_settings.php:783 msgid "" "The font to use for Graph Titles. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:789 ../include/global_settings.php:1990 msgid "Legend Font Size" msgstr "" #: ../include/global_settings.php:790 ../include/global_settings.php:1991 msgid "The size of the font used for Graph Legend items" msgstr "" #: ../include/global_settings.php:797 msgid "Legend Font Setting" msgstr "" #: ../include/global_settings.php:798 msgid "" "The font to use for Graph Legends. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:804 ../include/global_settings.php:2003 msgid "Axis Font Size" msgstr "" #: ../include/global_settings.php:805 ../include/global_settings.php:2004 msgid "The size of the font used for Graph Axis" msgstr "" #: ../include/global_settings.php:812 msgid "Axis Font Setting" msgstr "" #: ../include/global_settings.php:813 msgid "" "The font to use for Graph Axis items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:819 ../include/global_settings.php:2016 msgid "Unit Font Size" msgstr "" #: ../include/global_settings.php:820 ../include/global_settings.php:2017 msgid "The size of the font used for Graph Units" msgstr "" #: ../include/global_settings.php:827 msgid "Unit Font Setting" msgstr "" #: ../include/global_settings.php:828 msgid "" "The font to use for Graph Unit items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:841 msgid "Data Collection Enabled" msgstr "" #: ../include/global_settings.php:842 msgid "If you wish to stop the polling process completely, uncheck this box." msgstr "" #: ../include/global_settings.php:848 msgid "Poller Type" msgstr "" #: ../include/global_settings.php:849 msgid "" "The poller type to use. This setting will take effect at next polling " "interval." msgstr "" #: ../include/global_settings.php:856 msgid "" "The polling interval in use. This setting will effect how often RRDfiles " "are checked and updated.\n" "\t\t\tNOTE: If you change this value, you must re-populate the " "poller cache. Failure to do so, may result in lost data." msgstr "" #: ../include/global_settings.php:863 msgid "Cron Interval" msgstr "" #: ../include/global_settings.php:864 msgid "" "The cron interval in use. You need to set this setting to the interval that " "your cron or scheduled task is currently running." msgstr "" #: ../include/global_settings.php:870 msgid "Maximum Concurrent Poller Processes" msgstr "" #: ../include/global_settings.php:871 msgid "" "The number of concurrent processes to execute. Using a higher number when " "using cmd.php will improve performance. Performance improvements in spine " "are best resolved with the threads parameter" msgstr "" #: ../include/global_settings.php:878 msgid "Balance Process Load" msgstr "" #: ../include/global_settings.php:879 msgid "" "If you choose this option, Cacti will attempt to balance the load of each " "poller process by equally distributing poller items per process." msgstr "" #: ../include/global_settings.php:884 msgid "Disable increasing OID Check" msgstr "" #: ../include/global_settings.php:885 msgid "Controls disabling check for increasing OID while walking OID tree." msgstr "" #: ../include/global_settings.php:890 msgid "Spine Specific Execution Parameters" msgstr "" #: ../include/global_settings.php:895 msgid "Invalid Data Logging" msgstr "" #: ../include/global_settings.php:896 msgid "" "How would you like Spine output errors logged? The options are: 'Detailed' " "which is similar to cmd.php logging; 'Summary' which provides the number of " "output errors per host; and 'None', which does not provide error counts." msgstr "" #: ../include/global_settings.php:901 ../utilities.php:193 msgid "Summary" msgstr "" #: ../include/global_settings.php:902 msgid "Detailed" msgstr "" #: ../include/global_settings.php:906 msgid "Maximum Threads per Process" msgstr "" #: ../include/global_settings.php:907 msgid "" "The maximum threads allowed per process. Using a higher number when using " "Spine will improve performance." msgstr "" #: ../include/global_settings.php:914 msgid "Number of PHP Script Servers" msgstr "" #: ../include/global_settings.php:915 msgid "" "The number of concurrent script server processes to run per Spine process. " "Settings between 1 and 10 are accepted. This parameter will help if you are " "running several threads and script server scripts." msgstr "" #: ../include/global_settings.php:922 msgid "Script and Script Server Timeout Value" msgstr "" #: ../include/global_settings.php:923 msgid "" "The maximum time that Cacti will wait on a script to complete. This timeout " "value is in seconds" msgstr "" #: ../include/global_settings.php:930 msgid "The Maximum SNMP OIDs Per SNMP Get Request" msgstr "" #: ../include/global_settings.php:931 msgid "" "The maximum number of SNMP get OIDs to issue per snmpbulkwalk request. " "Increasing this value speeds poller performance over slow links. The " "maximum value is 100 OIDs. Decreasing this value to 0 or 1 will disable " "snmpbulkwalk" msgstr "" #: ../include/global_settings.php:945 msgid "Authentication Method" msgstr "" #: ../include/global_settings.php:946 msgid "" "
    None - No authentication will be used, all users will " "have full access.

    Built-in Authentication - Cacti handles user " "authentication, which allows you to create users and give them rights to " "different areas within Cacti.

    Web Basic Authentication - " "Authentication is handled by the web server. Users can be added or created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used.

    LDAP Authentication - " "Allows for authentication against a LDAP server. Users will be created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used. If PHPs LDAP module is not enabled, " "LDAP Authentication will not appear as a selectable option." "

    Multiple LDAP/AD Domain Authentication - Allows " "administrators to support multiple disparate groups from different LDAP/AD " "directories to access Cacti resources. Just as LDAP Authentication, the PHP " "LDAP module is required to utilize this method.
    " msgstr "" #: ../include/global_settings.php:952 msgid "Support Authentication Cookies" msgstr "" #: ../include/global_settings.php:953 msgid "" "If a user authenticates and selects 'Keep me signed in', an authentication " "cookie will be created on the user's computer allowing that user to stay " "logged in. The authentication cookie expires after 90 days of non-use." msgstr "" #: ../include/global_settings.php:958 msgid "Special Users" msgstr "Специальный пользователь" #: ../include/global_settings.php:963 msgid "Guest User" msgstr "ГоÑть" #: ../include/global_settings.php:964 msgid "The name of the guest user for viewing graphs; is 'No User' by default." msgstr "" #: ../include/global_settings.php:966 ../include/global_settings.php:974 #: ../user_domains.php:335 msgid "No User" msgstr "" #: ../include/global_settings.php:971 ../user_domains.php:331 msgid "User Template" msgstr "" #: ../include/global_settings.php:972 msgid "" "The name of the user that cacti will use as a template for new Web Basic and " "LDAP users; is 'guest' by default." msgstr "" #: ../include/global_settings.php:979 msgid "Local Account Complexity Requirements" msgstr "" #: ../include/global_settings.php:984 msgid "Minimum Length" msgstr "" #: ../include/global_settings.php:985 msgid "This is minimal length of allowed passwords." msgstr "" #: ../include/global_settings.php:992 msgid "Require Mix Case" msgstr "" #: ../include/global_settings.php:993 msgid "" "This will require new passwords to contains both lower and upper-case " "characters." msgstr "" #: ../include/global_settings.php:998 msgid "Require Number" msgstr "" #: ../include/global_settings.php:999 msgid "" "This will require new passwords to contain at least 1 numerical character." msgstr "" #: ../include/global_settings.php:1004 msgid "Require Special Character" msgstr "" #: ../include/global_settings.php:1005 msgid "" "This will require new passwords to contain at least 1 special character." msgstr "" #: ../include/global_settings.php:1010 msgid "Force Complexity Upon Old Passwords" msgstr "" #: ../include/global_settings.php:1011 msgid "" "This will require all old passwords to also meet the new complexity " "requirements upon login. If not met, it will force a password change." msgstr "" #: ../include/global_settings.php:1016 msgid "Expire Inactive Accounts" msgstr "" #: ../include/global_settings.php:1017 msgid "" "This is maximum number of days before inactive accounts are disabled. The " "Admin account is excluded from this policy." msgstr "" #: ../include/global_settings.php:1030 msgid "Expire Password" msgstr "" #: ../include/global_settings.php:1031 msgid "This is maximum number of days before a password is set to expire." msgstr "" #: ../include/global_settings.php:1042 msgid "Password History" msgstr "" #: ../include/global_settings.php:1043 msgid "Remember this number of old passwords and disallow re-using them." msgstr "" #: ../include/global_settings.php:1048 msgid "1 Change" msgstr "" #: ../include/global_settings.php:1049 ../include/global_settings.php:1050 #: ../include/global_settings.php:1051 ../include/global_settings.php:1052 #: ../include/global_settings.php:1053 ../include/global_settings.php:1054 #: ../include/global_settings.php:1055 ../include/global_settings.php:1056 #: ../include/global_settings.php:1057 ../include/global_settings.php:1058 #: ../include/global_settings.php:1059 #, php-format msgid "%d Changes" msgstr "" #: ../include/global_settings.php:1062 msgid "Account Locking" msgstr "" #: ../include/global_settings.php:1067 msgid "Lock Accounts" msgstr "" #: ../include/global_settings.php:1068 msgid "Lock an account after this many failed attempts in 1 hour." msgstr "" #: ../include/global_settings.php:1073 msgid "1 Attempt" msgstr "" #: ../include/global_settings.php:1074 ../include/global_settings.php:1075 #: ../include/global_settings.php:1076 ../include/global_settings.php:1077 #: ../include/global_settings.php:1078 #, php-format msgid "%d Attempts" msgstr "" #: ../include/global_settings.php:1081 msgid "Auto Unlock" msgstr "" #: ../include/global_settings.php:1082 msgid "" "An account will automatically be unlocked after this many minutes. Even if " "the correct password is entered, the account will not unlock until this time " "limit has been met. Max of 1440 minutes (1 Day)" msgstr "" #: ../include/global_settings.php:1101 msgid "LDAP General Settings" msgstr "" #: ../include/global_settings.php:1105 ../user_domains.php:358 msgid "Server" msgstr "" #: ../include/global_settings.php:1106 msgid "The DNS hostname or IP address of the server." msgstr "" #: ../include/global_settings.php:1111 ../user_domains.php:366 msgid "Port Standard" msgstr "" #: ../include/global_settings.php:1112 msgid "TCP/UDP port for Non-SSL communications." msgstr "" #: ../include/global_settings.php:1119 ../user_domains.php:375 msgid "Port SSL" msgstr "" #: ../include/global_settings.php:1120 ../user_domains.php:376 msgid "TCP/UDP port for SSL communications." msgstr "" #: ../include/global_settings.php:1127 ../user_domains.php:384 msgid "Protocol Version" msgstr "" #: ../include/global_settings.php:1128 ../user_domains.php:385 msgid "Protocol Version that the server supports." msgstr "" #: ../include/global_settings.php:1134 ../user_domains.php:391 msgid "Encryption" msgstr "" #: ../include/global_settings.php:1135 ../user_domains.php:392 msgid "" "Encryption that the server supports. TLS is only supported by Protocol " "Version 3." msgstr "" #: ../include/global_settings.php:1141 ../user_domains.php:398 msgid "Referrals" msgstr "" #: ../include/global_settings.php:1142 ../user_domains.php:399 msgid "" "Enable or Disable LDAP referrals. If disabled, it may increase the speed of " "searches." msgstr "" #: ../include/global_settings.php:1148 ../user_domains.php:405 msgid "Mode" msgstr "" #: ../include/global_settings.php:1149 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the user's " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the user's Distinguished Name (DN)." msgstr "" #: ../include/global_settings.php:1155 ../user_domains.php:412 msgid "Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1156 ../user_domains.php:413 msgid "" "Distinguished Name syntax, such as for windows: \"<username>" "@win2kdomain.local\" or for OpenLDAP: \"uid=<username>," "ou=people,dc=domain,dc=local\". \"<username>\" is replaced with " "the username that was supplied at the login prompt. This is only used when " "in \"No Searching\" mode." msgstr "" #: ../include/global_settings.php:1161 ../user_domains.php:419 msgid "Require Group Membership" msgstr "" #: ../include/global_settings.php:1162 ../user_domains.php:420 msgid "" "Require user to be member of group to authenticate. Group settings must be " "set for this to work, enabling without proper group settings will cause " "authentication failure." msgstr "" #: ../include/global_settings.php:1167 ../user_domains.php:425 msgid "LDAP Group Settings" msgstr "" #: ../include/global_settings.php:1171 ../user_domains.php:429 msgid "Group Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1172 ../user_domains.php:430 msgid "Distinguished Name of the group that user must have membership." msgstr "" #: ../include/global_settings.php:1177 ../user_domains.php:436 msgid "Group Member Attribute" msgstr "" #: ../include/global_settings.php:1178 ../user_domains.php:437 msgid "Name of the attribute that contains the usernames of the members." msgstr "" #: ../include/global_settings.php:1183 ../user_domains.php:443 msgid "Group Member Type" msgstr "" #: ../include/global_settings.php:1184 ../user_domains.php:444 msgid "" "Defines if users use full Distinguished Name or just Username in the defined " "Group Member Attribute." msgstr "" #: ../include/global_settings.php:1187 msgid "Distinguished Name" msgstr "" #: ../include/global_settings.php:1190 ../user_domains.php:450 msgid "LDAP Specific Search Settings" msgstr "" #: ../include/global_settings.php:1194 ../user_domains.php:454 msgid "Search Base" msgstr "" #: ../include/global_settings.php:1195 msgid "" "Search base for searching the LDAP directory, such as 'dc=win2kdomain," "dc=local' or 'ou=people,dc=domain,dc=local'." msgstr "" #: ../include/global_settings.php:1200 ../user_domains.php:461 msgid "Search Filter" msgstr "" #: ../include/global_settings.php:1201 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: '(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))' or for OpenLDAP: " "'(&(objectClass=account)(uid=<username>))'. '<username>' " "is replaced with the username that was supplied at the login prompt. " msgstr "" #: ../include/global_settings.php:1206 ../user_domains.php:468 msgid "Search Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1207 ../user_domains.php:469 msgid "" "Distinguished Name for Specific Searching binding to the LDAP directory." msgstr "" #: ../include/global_settings.php:1212 ../user_domains.php:475 msgid "Search Password" msgstr "" #: ../include/global_settings.php:1213 ../user_domains.php:476 msgid "Password for Specific Searching binding to the LDAP directory." msgstr "" #: ../include/global_settings.php:1220 msgid "URL Linking" msgstr "" #: ../include/global_settings.php:1225 msgid "Server Base URL" msgstr "" #: ../include/global_settings.php:1226 msgid "" "This is a the server location that will be used for links to the Cacti site." msgstr "" #: ../include/global_settings.php:1233 msgid "" "Emailing Options
    Send a Test Email
    " msgstr "" "Параметры отправки по Ñлектронной почте
    Отправить теÑтовое Ñообщение
    " #: ../include/global_settings.php:1237 msgid "Test Email" msgstr "" #: ../include/global_settings.php:1238 msgid "" "This is a Email account used for sending a test message to ensure everything " "is working properly." msgstr "" #: ../include/global_settings.php:1243 msgid "Mail Services" msgstr "Почтовые Ñлужбы" #: ../include/global_settings.php:1244 msgid "Which mail service to use in order to send mail" msgstr "Какую почтовую Ñлужбу иÑпользовать Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸ почты" #: ../include/global_settings.php:1246 ../include/global_settings.php:1247 msgid "PHP Mail() Function" msgstr "PHP Mail() ФункциÑ" #: ../include/global_settings.php:1247 ../lib/functions.php:3788 msgid "SMTP" msgstr "" #: ../include/global_settings.php:1247 ../lib/functions.php:3783 msgid "Sendmail" msgstr "" #: ../include/global_settings.php:1250 #, fuzzy #| msgid "Mail Services" msgid "Ping Mail Server" msgstr "Почтовые Ñлужбы" #: ../include/global_settings.php:1251 msgid "Ping the Mail Server before sending test Email?" msgstr "" #: ../include/global_settings.php:1257 ../lib/html_reports.php:186 msgid "From Email Address" msgstr "Email Ð°Ð´Ñ€ÐµÑ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÐµÐ»Ñ" #: ../include/global_settings.php:1258 msgid "This is the Email address that the Email will appear from." msgstr "Это Ð°Ð´Ñ€ÐµÑ Ñлектронной почты, который будет отображатьÑÑ Ð² пиÑьме." #: ../include/global_settings.php:1263 ../lib/html_reports.php:178 msgid "From Name" msgstr "От кого" #: ../include/global_settings.php:1264 msgid "This is the actual name that the Email will appear from." msgstr "" "Это фактичеÑкое имÑ, которое будет отображатьÑÑ Ð² Ñообщении Ñлектронной " "почты." #: ../include/global_settings.php:1269 msgid "Word Wrap" msgstr "ÐŸÐµÑ€ÐµÐ½Ð¾Ñ Ð¡Ñ‚Ñ€Ð¾Ðº" #: ../include/global_settings.php:1270 msgid "" "This is how many characters will be allowed before a line in the Email is " "automatically word wrapped. (0 = Disabled)" msgstr "" #: ../include/global_settings.php:1277 msgid "Sendmail Options" msgstr "Sendmail Опции" #: ../include/global_settings.php:1282 ../lib/functions.php:3783 msgid "Sendmail Path" msgstr "Sendmail Путь" #: ../include/global_settings.php:1283 msgid "" "This is the path to sendmail on your server. (Only used if Sendmail is " "selected as the Mail Service)" msgstr "" #: ../include/global_settings.php:1289 msgid "SMTP Options" msgstr "" #: ../include/global_settings.php:1294 msgid "SMTP Hostname" msgstr "" #: ../include/global_settings.php:1295 msgid "" "This is the hostname/IP of the SMTP Server you will send the Email to. For " "failover, separate your hosts using a semi-colon." msgstr "" #: ../include/global_settings.php:1301 msgid "SMTP Port" msgstr "" #: ../include/global_settings.php:1302 msgid "The port on the SMTP Server to use." msgstr "" #: ../include/global_settings.php:1309 msgid "SMTP Username" msgstr "SMTP Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" #: ../include/global_settings.php:1310 msgid "" "The username to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: ../include/global_settings.php:1315 msgid "SMTP Password" msgstr "SMTP Пароль" #: ../include/global_settings.php:1316 msgid "" "The password to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: ../include/global_settings.php:1321 msgid "SMTP Security" msgstr "" #: ../include/global_settings.php:1322 msgid "The encryption method to use for the Email." msgstr "Метод ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Email" #: ../include/global_settings.php:1328 msgid "SMTP Timeout" msgstr "SMTP таймаут" #: ../include/global_settings.php:1329 msgid "Please enter the SMTP timeout in seconds." msgstr "" #: ../include/global_settings.php:1336 msgid "Reporting Presets" msgstr "" #: ../include/global_settings.php:1341 msgid "Default Graph Image Format" msgstr "" #: ../include/global_settings.php:1342 msgid "" "When creating a new report, what image type should be used for the inline " "graphs." msgstr "" #: ../include/global_settings.php:1348 msgid "Maximum E-Mail Size" msgstr "" #: ../include/global_settings.php:1349 msgid "The maximum size of the E-Mail message including all attachements." msgstr "" #: ../include/global_settings.php:1355 msgid "Poller Logging Level for Cacti Reporting" msgstr "" #: ../include/global_settings.php:1356 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: ../include/global_settings.php:1362 msgid "Enable Lotus Notes (R) tweak" msgstr "" #: ../include/global_settings.php:1363 msgid "Enable code tweak for specific handling of Lotus Notes Mail Clients." msgstr "" #: ../include/global_settings.php:1368 msgid "DNS Options" msgstr "" #: ../include/global_settings.php:1373 msgid "Primary DNS IP Address" msgstr "" #: ../include/global_settings.php:1374 msgid "Enter the primary DNS IP Address to utilize for reverse lookups." msgstr "" #: ../include/global_settings.php:1380 msgid "Secondary DNS IP Address" msgstr "" #: ../include/global_settings.php:1381 msgid "Enter the secondary DNS IP Address to utilize for reverse lookups." msgstr "" #: ../include/global_settings.php:1387 msgid "DNS Timeout" msgstr "" #: ../include/global_settings.php:1388 msgid "" "Please enter the DNS timeout in milliseconds. Cacti uses a PHP based DNS " "resolver." msgstr "" #: ../include/global_settings.php:1397 msgid "Data Sources Statistics" msgstr "" #: ../include/global_settings.php:1402 msgid "Enable Data Source Statistics Collection" msgstr "" #: ../include/global_settings.php:1403 msgid "Should Data Source Statistics be collected for this Cacti system?" msgstr "" #: ../include/global_settings.php:1408 msgid "Daily Update Frequency" msgstr "" #: ../include/global_settings.php:1409 msgid "How frequent should Daily Stats be updated?" msgstr "" #: ../include/global_settings.php:1415 msgid "Hourly Average Window" msgstr "" #: ../include/global_settings.php:1416 msgid "" "The number of consecutive hours that represent the hourly\n" "\t\t\taverage. Keep in mind that a setting too high can result in very " "large memory tables" msgstr "" #: ../include/global_settings.php:1423 msgid "Maintenance Time" msgstr "" #: ../include/global_settings.php:1424 msgid "" "What time of day should Weekly, Monthly, and Yearly Data be updated? Format " "is HH:MM [am/pm]" msgstr "" #: ../include/global_settings.php:1431 msgid "Memory Limit for Data Source Statistics Data Collector" msgstr "" #: ../include/global_settings.php:1432 msgid "" "The maximum amount of memory for the Cacti Poller and Data Source Statistics " "Poller" msgstr "" #: ../include/global_settings.php:1438 msgid "Debugging" msgstr "" #: ../include/global_settings.php:1443 msgid "Enable Single RRDtool Pipe" msgstr "" #: ../include/global_settings.php:1444 msgid "" "Using a single pipe will speed the RRDtool process by 10x. However, RRDtool " "crashes\n" "\t\t\tproblems can occur. Disable this setting if you need to find a bad " "RRDfile." msgstr "" #: ../include/global_settings.php:1450 msgid "Enable Partial Reference Data Retrieve" msgstr "" #: ../include/global_settings.php:1451 msgid "" "If using a large system, it may be beneficial for you to only gather data as " "needed\n" "\t\t\tduring Cacti poller passes. If you check this box, Data Source " "Statistics will gather data this way." msgstr "" #: ../include/global_settings.php:1459 msgid "On-demand RRD Update Settings" msgstr "" #: ../include/global_settings.php:1464 msgid "Enable On-demand RRD Updating" msgstr "" #: ../include/global_settings.php:1465 msgid "" "Should Boost enable on demand RRD updating in Cacti? If you disable, this " "change will not take effect until after the next polling cycle." msgstr "" #: ../include/global_settings.php:1470 msgid "System Level RRD Updater" msgstr "" #: ../include/global_settings.php:1471 msgid "" "Before RRD On-demand Update Can be Cleared, a poller run must always pass" msgstr "" #: ../include/global_settings.php:1476 msgid "How Often Should Boost Update All RRDs" msgstr "" #: ../include/global_settings.php:1477 msgid "" "When you enable boost, your RRD files are only updated when they are " "requested by a user, or when this time period elapses." msgstr "" #: ../include/global_settings.php:1484 msgid "Maximum Records" msgstr "" #: ../include/global_settings.php:1485 msgid "" "If the boost output table exceeds this size, in records, an update will take " "place." msgstr "" #: ../include/global_settings.php:1492 msgid "Maximum Data Source Items Per Pass" msgstr "" #: ../include/global_settings.php:1493 msgid "" "To optimize performance, the boost RRD updater needs to know how many Data " "Source Items\n" "\t\t\tshould be retrieved in one pass. Please be careful not to set too " "high as graphing performance during\n" "\t\t\tmajor updates can be compromised. If you encounter graphing or " "polling slowness during updates, lower this\n" "\t\t\tnumber. The default value is 50000." msgstr "" #: ../include/global_settings.php:1502 msgid "Maximum Argument Length" msgstr "" #: ../include/global_settings.php:1503 msgid "" "When boost sends update commands to RRDtool, it must not exceed the " "operating systems\n" "\t\t\tMaximum Argument Length. This varies by operating system and kernel " "level. For example:\n" "\t\t\tWindows 2000 <= 2048, FreeBSD <= 65535, Linux 2.6.22-- <= 131072, " "Linux 2.6.23++ unlimited" msgstr "" #: ../include/global_settings.php:1512 msgid "Memory Limit for Boost and Poller" msgstr "" #: ../include/global_settings.php:1513 msgid "The maximum amount of memory for the Cacti Poller and Boosts Poller" msgstr "" #: ../include/global_settings.php:1519 msgid "Maximum RRD Update Script Run Time" msgstr "" #: ../include/global_settings.php:1520 msgid "" "The maximum boot poller run time allowed prior to boost issuing warning\n" "\t\t\tmessages relative to possible hardware/software issues preventing " "proper updates." msgstr "" #: ../include/global_settings.php:1527 msgid "Enable direct population of poller_output_boost table" msgstr "" #: ../include/global_settings.php:1528 msgid "" "Enables direct insert of records into poller output boost with results in a " "25% time reduction in each poll cycle." msgstr "" #: ../include/global_settings.php:1533 ../utilities.php:2139 msgid "Image Caching" msgstr "" #: ../include/global_settings.php:1538 msgid "Enable Image Caching" msgstr "" #: ../include/global_settings.php:1539 msgid "Should image caching be enabled?" msgstr "" #: ../include/global_settings.php:1544 msgid "Location for Image Files" msgstr "" #: ../include/global_settings.php:1545 msgid "" "Specify the location where Boost should place your image files. These files " "will be automatically purged by the poller when they expire." msgstr "" #: ../include/global_settings.php:1551 msgid "Process Interlocking" msgstr "" #: ../include/global_settings.php:1556 msgid "Boost Debug Log" msgstr "" #: ../include/global_settings.php:1557 msgid "" "If this field is non-blank, Boost will log RRDupdate output from the boost" "\tpoller process." msgstr "" #: ../include/global_settings.php:1571 msgid "" "Choose if RRDs will be stored locally or being handled by an external " "RRDtool proxy server." msgstr "" #: ../include/global_settings.php:1574 ../include/global_settings.php:1582 msgid "RRDtool Proxy Server" msgstr "" #: ../include/global_settings.php:1577 msgid "Structured RRD Path (/host_id/local_data_id.rrd)" msgstr "" #: ../include/global_settings.php:1578 msgid "Use a separate subfolder for each hosts RRD files." msgstr "" #: ../include/global_settings.php:1587 ../include/global_settings.php:1619 msgid "Proxy Server" msgstr "" #: ../include/global_settings.php:1588 msgid "The DNS hostname or IP address of the RRDtool proxy server." msgstr "" #: ../include/global_settings.php:1593 ../include/global_settings.php:1625 msgid "Proxy Port Number" msgstr "" #: ../include/global_settings.php:1594 msgid "TCP port for encrypted communication." msgstr "" #: ../include/global_settings.php:1601 ../include/global_settings.php:1633 #: ../utilities.php:248 msgid "RSA Fingerprint" msgstr "" #: ../include/global_settings.php:1602 msgid "" "The fingerprint of the current public RSA key the proxy is using. This is " "required to establish a trusted connection." msgstr "" #: ../include/global_settings.php:1609 msgid "RRDtool Proxy Server - Backup" msgstr "" #: ../include/global_settings.php:1614 msgid "Load Balancing" msgstr "" #: ../include/global_settings.php:1615 msgid "" "If both main and backup proxy are receivable this option allows to spread " "all requests against RRDtool." msgstr "" #: ../include/global_settings.php:1620 msgid "" "The DNS hostname or IP address of the RRDtool backup proxy server if proxy " "is running in MSR mode." msgstr "" #: ../include/global_settings.php:1626 msgid "TCP port for encrypted communication with the backup proxy." msgstr "" #: ../include/global_settings.php:1634 msgid "" "The fingerprint of the current public RSA key the backup proxy is using. " "This required to establish a trusted connection." msgstr "" #: ../include/global_settings.php:1643 msgid "Spike Kill Settings" msgstr "" #: ../include/global_settings.php:1648 msgid "Removal Method" msgstr "" #: ../include/global_settings.php:1649 msgid "" "There are two removal methods. The first, Standard Deviation, will remove " "any\n" "\t\t\tsample that is X number of standard deviations away from the average " "of samples. The second method,\n" "\t\t\tVariance, will remove any sample that is X% more than the Variance " "average. The Variance method takes\n" "\t\t\tinto account a certain number of 'outliers'. Those are exceptional " "samples, like the spike, that need\n" "\t\t\tto be excluded from the Variance Average calculation." msgstr "" #: ../include/global_settings.php:1656 msgid "Standard Deviation" msgstr "" #: ../include/global_settings.php:1656 msgid "Variance Based w/Outliers Removed" msgstr "" #: ../include/global_settings.php:1659 ../lib/html.php:1719 msgid "Replacement Method" msgstr "" #: ../include/global_settings.php:1660 msgid "" "There are three replacement methods. The first method replaces the spike " "with the\n" "\t\t\tthe average of the data source in question. The second method " "replaces the spike with a 'NaN'.\n" "\t\t\tThe last replaces the spike with the last known good value found." msgstr "" #: ../include/global_settings.php:1665 ../lib/html.php:1720 msgid "Average" msgstr "" #: ../include/global_settings.php:1665 ../lib/html.php:1722 msgid "Last Known Good" msgstr "" #: ../include/global_settings.php:1665 msgid "NaN's" msgstr "" #: ../include/global_settings.php:1668 msgid "Number of Standard Deviations" msgstr "" #: ../include/global_settings.php:1669 msgid "" "Any value that is this many standard deviations above the average will be " "excluded.\n" "\t\t\tA good number will be dependent on the type of data to be operated " "on. We recommend a number no lower\n" "\t\t\tthan 5 Standard Deviations." msgstr "" #: ../include/global_settings.php:1675 ../include/global_settings.php:1676 #: ../include/global_settings.php:1677 ../include/global_settings.php:1678 #: ../include/global_settings.php:1679 ../include/global_settings.php:1680 #: ../include/global_settings.php:1681 ../include/global_settings.php:1682 #: ../include/global_settings.php:1683 ../include/global_settings.php:1684 #, php-format msgid "%d Standard Deviations" msgstr "" #: ../include/global_settings.php:1688 ../lib/html.php:1731 msgid "Variance Percentage" msgstr "" #: ../include/global_settings.php:1689 #, php-format msgid "" "This value represents the percentage above the adjusted sample average once " "outliers\n" "\t\t\thave been removed from the sample. For example, a Variance Percentage " "of 100% on an adjusted average of 50\n" "\t\t\twould remove any sample above the quantity of 100 from the graph." msgstr "" #: ../include/global_settings.php:1710 msgid "Variance Number of Outliers" msgstr "" #: ../include/global_settings.php:1711 msgid "" "This value represents the number of high and low average samples will be " "removed from the\n" "\t\t\tsample set prior to calculating the Variance Average. If you choose " "an outlier value of 5, then both the top\n" "\t\t\tand bottom 5 averages are removed." msgstr "" #: ../include/global_settings.php:1717 ../include/global_settings.php:1718 #: ../include/global_settings.php:1719 ../include/global_settings.php:1720 #: ../include/global_settings.php:1721 ../include/global_settings.php:1722 #: ../include/global_settings.php:1723 ../include/global_settings.php:1724 #, php-format msgid "%d High/Low Samples" msgstr "" #: ../include/global_settings.php:1728 msgid "Max Kills Per RRA" msgstr "" #: ../include/global_settings.php:1729 msgid "" "This value represents the maximum number of spikes to remove from a Graph " "RRA." msgstr "" #: ../include/global_settings.php:1733 ../include/global_settings.php:1734 #: ../include/global_settings.php:1735 ../include/global_settings.php:1736 #: ../include/global_settings.php:1737 ../include/global_settings.php:1738 #: ../include/global_settings.php:1739 ../include/global_settings.php:1740 #, php-format msgid "%d Samples" msgstr "" #: ../include/global_settings.php:1744 msgid "RRDfile Backup Directory" msgstr "" #: ../include/global_settings.php:1745 msgid "" "If this directory is not empty, then your original RRDfiles will be backed\n" "\t\t\tup to this location." msgstr "" #: ../include/global_settings.php:1753 msgid "Batch Spike Kill Settings" msgstr "" #: ../include/global_settings.php:1758 msgid "Removal Schedule" msgstr "" #: ../include/global_settings.php:1759 msgid "" "Do you wish to periodically remove spikes from your graphs? If so, select " "the frequency\n" "\t\t\tbelow." msgstr "" #: ../include/global_settings.php:1767 msgid "Once a Day" msgstr "" #: ../include/global_settings.php:1768 msgid "Every Other Day" msgstr "" #: ../include/global_settings.php:1772 msgid "Base Time" msgstr "Базовое времÑ" #: ../include/global_settings.php:1773 msgid "" "The Base Time for Spike removal to occur. For example, if you use '12:00am' " "and you choose\n" "\t\t\tonce per day, the batch removal would begin at approximately midnight " "every day." msgstr "" #: ../include/global_settings.php:1781 msgid "Graph Templates to Spike Kill" msgstr "" #: ../include/global_settings.php:1783 msgid "" "When performing batch spike removal, only the templates selected below will " "be acted on." msgstr "" #: ../include/global_settings.php:1799 msgid "Default View Mode" msgstr "" #: ../include/global_settings.php:1800 msgid "" "Which Graph mode you want displayed by default when you first visit the " "Graphs page?" msgstr "" #: ../include/global_settings.php:1806 msgid "User Language" msgstr "Язык пользователÑ" #: ../include/global_settings.php:1807 msgid "Defines the preferred GUI language." msgstr "" #: ../include/global_settings.php:1813 msgid "Show Graph Title" msgstr "Показать название графика" #: ../include/global_settings.php:1814 msgid "" "Display the graph title on the page so that it may be searched using the " "browser." msgstr "" #: ../include/global_settings.php:1820 msgid "The date format to use in Cacti." msgstr "" #: ../include/global_settings.php:1827 msgid "The date separator to be used in Cacti." msgstr "" #: ../include/global_settings.php:1833 msgid "Page Refresh" msgstr "Обновить Ñтраницу" #: ../include/global_settings.php:1834 msgid "The number of seconds between automatic page refreshes." msgstr "" #: ../include/global_settings.php:1840 msgid "Preview Graphs Per Page" msgstr "" #: ../include/global_settings.php:1841 ../include/global_settings.php:1956 msgid "The number of graphs to display on one page in preview mode." msgstr "" #: ../include/global_settings.php:1849 msgid "Default Time Range" msgstr "" #: ../include/global_settings.php:1850 msgid "The default RRA to use in rare occasions." msgstr "" #: ../include/global_settings.php:1856 msgid "Default Graph View Timespan" msgstr "" #: ../include/global_settings.php:1857 msgid "The default timespan you wish to be displayed when you display graphs" msgstr "" #: ../include/global_settings.php:1863 msgid "Default Graph View Timeshift" msgstr "" #: ../include/global_settings.php:1864 msgid "The default timeshift you wish to be displayed when you display graphs" msgstr "" #: ../include/global_settings.php:1870 msgid "Allow Graph to extend to Future" msgstr "" #: ../include/global_settings.php:1871 msgid "When displaying Graphs, allow Graph Dates to extend 'to future'" msgstr "" #: ../include/global_settings.php:1876 msgid "First Day of the Week" msgstr "" #: ../include/global_settings.php:1877 msgid "The first Day of the Week for weekly Graph Displays" msgstr "" #: ../include/global_settings.php:1883 msgid "Start of Daily Shift" msgstr "" #: ../include/global_settings.php:1884 msgid "Start Time of the Daily Shift." msgstr "" #: ../include/global_settings.php:1891 msgid "End of Daily Shift" msgstr "" #: ../include/global_settings.php:1892 msgid "End Time of the Daily Shift." msgstr "" #: ../include/global_settings.php:1901 msgid "Thumbnail Sections" msgstr "" #: ../include/global_settings.php:1902 msgid "Which portions of Cacti display Thumbnails by default." msgstr "" #: ../include/global_settings.php:1906 ../lib/functions.php:1880 msgid "Preview Mode" msgstr "" #: ../include/global_settings.php:1916 msgid "Preview Thumbnail Columns" msgstr "" #: ../include/global_settings.php:1917 msgid "" "The number of columns to use when displaying Thumbnail graphs in Preview " "mode." msgstr "" #: ../include/global_settings.php:1920 ../include/global_settings.php:1927 #: ../lib/html_graph.php:231 ../lib/html_graph.php:232 #: ../lib/html_graph.php:233 ../lib/html_graph.php:234 #: ../lib/html_graph.php:235 ../lib/html_tree.php:677 ../lib/html_tree.php:678 #: ../lib/html_tree.php:679 ../lib/html_tree.php:680 ../lib/html_tree.php:681 #, php-format msgid "%d Columns" msgstr "" #: ../include/global_settings.php:1920 ../include/global_settings.php:1927 msgid "1 Column" msgstr "" #: ../include/global_settings.php:1923 msgid "Tree View Thumbnail Columns" msgstr "" #: ../include/global_settings.php:1924 msgid "" "The number of columns to use when displaying Thumbnail graphs in Tree mode." msgstr "" #: ../include/global_settings.php:1930 msgid "Thumbnail Height" msgstr "" #: ../include/global_settings.php:1931 msgid "The height of Thumbnail graphs in pixels." msgstr "" #: ../include/global_settings.php:1938 msgid "Thumbnail Width" msgstr "" #: ../include/global_settings.php:1939 msgid "The width of Thumbnail graphs in pixels." msgstr "" #: ../include/global_settings.php:1948 msgid "Default Tree" msgstr "Дерево по умолчанию" #: ../include/global_settings.php:1949 msgid "The default graph tree to use when displaying graphs in tree mode." msgstr "" #: ../include/global_settings.php:1955 msgid "Graphs Per Page" msgstr "" #: ../include/global_settings.php:1962 msgid "Expand Devices" msgstr "" #: ../include/global_settings.php:1963 msgid "" "Choose whether to expand the Graph Templates and Data Queries used by a " "Device on Tree." msgstr "" #: ../include/global_settings.php:1970 msgid "Use Custom Fonts" msgstr "" #: ../include/global_settings.php:1971 msgid "" "Choose whether to use your own custom fonts and font sizes or utilize the " "system defaults." msgstr "" #: ../include/global_settings.php:1984 msgid "Title Font File" msgstr "" #: ../include/global_settings.php:1985 msgid "The font file to use for Graph Titles" msgstr "" #: ../include/global_settings.php:1997 msgid "Legend Font File" msgstr "" #: ../include/global_settings.php:1998 msgid "The font file to be used for Graph Legend items" msgstr "" #: ../include/global_settings.php:2010 msgid "Axis Font File" msgstr "" #: ../include/global_settings.php:2011 msgid "The font file to be used for Graph Axis items" msgstr "" #: ../include/global_settings.php:2023 msgid "Unit Font File" msgstr "" #: ../include/global_settings.php:2024 msgid "The font file to be used for Graph Unit items" msgstr "" #: ../index.php:64 #, php-format msgid "" "You are now logged into Cacti. You can follow " "these basic steps to get started." msgstr "" "Ð’Ñ‹ вошли в Cacti. Ð’Ñ‹ можете проделать Ñти проÑтые " "шаги Ð´Ð»Ñ Ð½Ð°Ñ‡Ð°Ð»Ð°." #: ../index.php:67 #, php-format msgid "Create devices for network" msgstr "Создайте уÑтройÑтва Ð´Ð»Ñ Ñети" #: ../index.php:68 #, php-format msgid "Create graphs for your new devices" msgstr "Создайте график Ð´Ð»Ñ Ð²Ð°ÑˆÐµÐ³Ð¾ нового уÑтройÑтва" #: ../index.php:69 #, php-format msgid "View your new graphs" msgstr "ПоÑмотрите ваши новые графики" #: ../index.php:78 msgid "Offline" msgstr "Ðе в Ñети" #: ../index.php:78 msgid "Online" msgstr "Ð’ Ñети" #: ../index.php:78 msgid "Recovery" msgstr "ВоÑÑтанавливаетÑÑ" #: ../index.php:78 msgid "Remote Data Collector Status:" msgstr "" #: ../index.php:80 msgid "Number of Offline Records:" msgstr "" #: ../index.php:85 msgid "" "NOTE: You are logged into a Remote Data Collector. When " "'online', you will be able to view and control much of the Main Cacti " "Web Site just as if you were logged into it. Also, it's important to note " "that Remote Data Collectors are required to use the Cacti's Performance " "Boosting Services 'On Demand Updating' feature, and we always " "recommend using Spine. When the Remote Data Collector is 'offline', " "the Remote Data Collectos Web Site will contain much less information. " "However, it will cache all updates until the Main Cacti Database and Web " "Server are reachable. Then it will dump it's Boost table output back to the " "Main Cacti Database for updating." msgstr "" #: ../index.php:90 msgid "" "NOTE: None of the Core Cacti Plugins, to date, have been re-" "designed to work with Remote Data Collectors. Therefore, Plugins such as " "MacTrack, and HMIB, which require direct access to devices will not work " "with Remote Data Collectors at this time. However, plugins such as Thold " "will work so long as the Remote Data Collector is in 'online' mode." msgstr "" #: ../install/index.php:51 ../install/index.php:56 ../install/index.php:61 #: ../install/index.php:302 ../lib/html_utility.php:820 msgid "Error" msgstr "" #: ../install/index.php:53 #, php-format msgid "" "This installation is already up-to-date. Click here to " "use Cacti." msgstr "" #: ../install/index.php:58 #, php-format msgid "" "You are attempting to install Cacti %s onto a 0.6.x database. To continue, " "you must create a new database, import \"cacti.sql\" into it, and update " "\"include/config.php\" to point to the new database." msgstr "" #: ../install/index.php:63 #, php-format msgid "" "You have created a new database, but have not yet imported the 'cacti.sql' " "file. At the command line, execute the following to continue:

    mysql -u %s -p %s < cacti.sql

    This error may also be " "generated if the cacti database user does not have correct permissions on " "the Cacti database. Please ensure that the Cacti database user has the " "ability to SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, DROP, INDEX on the " "Cacti database." msgstr "" #: ../install/index.php:65 #, php-format msgid "" "In Cacti %s, you must also import MySQL TimeZone information into MySQL and " "grant the Cacti user SELECT access to the mysql.time_zone_name table" msgstr "" #: ../install/index.php:68 msgid "On Linux/UNIX, do the following:" msgstr "" #: ../install/index.php:68 msgid "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" msgstr "" #: ../install/index.php:70 msgid "" "On Windows, you must follow the instructions here Time zone description " "table. Once that is complete, you can issue the following command to " "grant the Cacti user access to the tables:" msgstr "" #: ../install/index.php:72 #, php-format msgid "" "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" msgstr "" #: ../install/index.php:304 #, php-format msgid "" "Invalid Cacti version %1$s, cannot upgrade to %2$s" msgstr "" #: ../install/index.php:410 msgid "Cacti Installation Wizard" msgstr "" #: ../install/index.php:418 msgid "License Agreement" msgstr "" #: ../install/index.php:420 msgid "" "Thanks for taking the time to download and install Cacti, the complete " "graphing solution for your network. Before you can start making cool graphs, " "there are a few pieces of data that Cacti needs to know." msgstr "" #: ../install/index.php:421 #, php-format msgid "" "Make sure you have read and followed the required steps needed to install " "Cacti before continuing. Install information can be found for Unix and Win32-based operating systems." msgstr "" #: ../install/index.php:422 #, php-format msgid "" "Also, if this is an upgrade, be sure to reading the Upgrade information file." msgstr "" #: ../install/index.php:423 msgid "" "Cacti is licensed under the GNU General Public License, you must agree to " "its provisions before continuing:" msgstr "" #: ../install/index.php:441 msgid "Pre-installation Checks" msgstr "" #: ../install/index.php:442 msgid "MySQL TimeZone Support" msgstr "" #: ../install/index.php:447 ../install/index.php:451 ../install/index.php:630 #: ../install/index.php:638 msgid "ERROR:" msgstr "" #: ../install/index.php:447 msgid "" "Your MySQL TimeZone database is not populated. Please populate this " "database before proceeding." msgstr "" #: ../install/index.php:451 msgid "" "Your Cacti database login account does not have access to the MySQL TimeZone " "database. Please provide the Cacti database account \"select\" access to " "the \"time_zone_name\" table in the \"mysql\" database, and populate MySQL's " "TimeZone information before proceeding." msgstr "" #: ../install/index.php:456 msgid "" "Your Cacti database account has access to the MySQL TimeZone database and " "that database is populated with global TimeZone information." msgstr "" #: ../install/index.php:459 msgid "Required PHP Module Support" msgstr "" #: ../install/index.php:461 msgid "" "Cacti requires several PHP Modules to be installed to work properly. If any " "of these are not installed, you will be unable to continue the installation " "until corrected. In addition, for optimal system performance Cacti should be " "run with certain MySQL system variables set. Please follow the MySQL " "recommendations at your discretion. Always seek the MySQL documentation if " "you have any questions." msgstr "" #: ../install/index.php:463 msgid "" "The following PHP extensions are mandatory, and MUST be installed before " "continuing your Cacti install." msgstr "" #: ../install/index.php:465 msgid "Required PHP Modules" msgstr "" #: ../install/index.php:466 ../install/index.php:543 ../plugins.php:41 #: ../plugins.php:288 ../utilities.php:415 msgid "Installed" msgstr "УÑтановленно" #: ../install/index.php:466 msgid "Required" msgstr "" #: ../install/index.php:468 ../utilities.php:387 msgid "PHP Version" msgstr "ВерÑÐ¸Ñ PHP" #: ../install/index.php:533 msgid "Optional PHP Module Support" msgstr "" #: ../install/index.php:535 msgid "" "The following PHP extensions are recommended, and should be installed before " "continuing your Cacti install." msgstr "" #: ../install/index.php:542 msgid "Optional Modules" msgstr "" #: ../install/index.php:543 msgid "Optional" msgstr "" #: ../install/index.php:553 msgid "" "These MySQL performance tuning settings will help your Cacti system perform " "better without issues for a longer time." msgstr "" #: ../install/index.php:555 msgid "Recommended MySQL System Variable Settings" msgstr "" #: ../install/index.php:560 msgid "Installation Type" msgstr "" #: ../install/index.php:565 #, php-format msgid "Upgrade from %s to %s" msgstr "" #: ../install/index.php:566 msgid "" "WARNING - If you are upgrading from a previous version please close all " "Cacti browser sessions and clear cache before continuing" msgstr "" #: ../install/index.php:569 msgid "Please select the type of installation" msgstr "" #: ../install/index.php:571 #, fuzzy #| msgid "Consolidation Function" msgid "Installation options:" msgstr "Ð¤ÑƒÐ½ÐºÑ†Ð¸Ñ ÐšÐ¾Ð½Ñолидации" #: ../install/index.php:574 msgid "Choose this for the Primary site." msgstr "" #: ../install/index.php:574 ../install/index.php:580 msgid "New Primary Server" msgstr "" #: ../install/index.php:575 ../install/index.php:581 msgid "New Remote Poller" msgstr "" #: ../install/index.php:575 msgid "" "Remote Pollers are used to access networks that are not readily accessible " "to the Primary site." msgstr "" #: ../install/index.php:585 msgid "" "The following information has been determined from Cacti's configuration " "file. If it is not correct, please edit \"include/config.php\" before " "continuing." msgstr "" #: ../install/index.php:589 msgid "Local Cacti database connection information" msgstr "" #: ../install/index.php:591 ../install/index.php:620 #, php-format msgid "Database: %s" msgstr "" #: ../install/index.php:592 ../install/index.php:621 #, php-format msgid "Database User: %s" msgstr "" #: ../install/index.php:593 ../install/index.php:622 #, php-format msgid "Database Hostname: %s" msgstr "" #: ../install/index.php:594 ../install/index.php:623 #, php-format msgid "Port: %s" msgstr "" #: ../install/index.php:595 ../install/index.php:624 #, php-format msgid "Server Operating System Type: %s" msgstr "" #: ../install/index.php:618 ../install/index.php:627 msgid "Remote Poller Cacti database connection information" msgstr "" #: ../install/index.php:630 msgid "" "Your config.php file must be writable by\n" "\t\t\t\t\t\t\t\t\t\tthe web server during install in order to configure the " "Remote poller. Once\n" "\t\t\t\t\t\t\t\t\t\tinstallation is complete, you must set this file to Read " "Only to prevent\n" "\t\t\t\t\t\t\t\t\t\tpossible security issues." msgstr "" #: ../install/index.php:638 msgid "" "Your Remote Cacti Poller information has not\n" "\t\t\t\t\t\t\t\t\t\tbeen included in your config.php file. Please review " "the config.php.dist, and\n" "\t\t\t\t\t\t\t\t\t\tset the variables: $rdatabase_default, " "$rdatabase_username, etc.\n" "\t\t\t\t\t\t\t\t\t\tThese variables must be set and point back to your " "Primary Cacti database server.\n" "\t\t\t\t\t\t\t\t\t\tCorrect this and try again." msgstr "" #: ../install/index.php:644 msgid "The variables that must be set include the following:" msgstr "" #: ../install/index.php:655 msgid "You must also set the $poller_id variable in the config.php." msgstr "" #: ../install/index.php:657 msgid "" "Once you have the variables set in the config.php file, you must also\n" "\t\t\t\t\t\t\t\t\t\tgrant the $rdatabase_username access to the Cacti " "database. Follow the same procedure you would with\n" "\t\t\t\t\t\t\t\t\t\tany other Cacti install. You may then press the 'Test " "Connection' button. If the test is\n" "\t\t\t\t\t\t\t\t\t\tsuccessful you will be able to proceed and complete the " "install." msgstr "" #: ../install/index.php:682 ../install/index.php:698 ../lib/html.php:342 msgid "Next" msgstr "СледующаÑ" #: ../install/index.php:707 msgid "Upgrade" msgstr "" #: ../install/index.php:720 msgid "Remote Database: " msgstr "" #: ../install/index.php:731 msgid "Critical Binary Locations and Versions" msgstr "" #: ../install/index.php:733 msgid "Make sure all of these values are correct before continuing." msgstr "" #: ../install/index.php:791 msgid "Directory Permission Checks" msgstr "" #: ../install/index.php:793 msgid "" "Please ensure the directory permissions below are correct before " "proceeding. During the install, these directories need to be owned by the " "Web Server user. These permission changes are required to allow the " "Installer to install Device Template packages which include XML and script " "files that will be placed in these directories. If you choose not to " "install the packages, there is an 'install_package.php' cli script that can " "be used from the command line after the install is complete." msgstr "" #: ../install/index.php:796 msgid "" "After the install is complete, you can make some of these directories read " "only to increase security." msgstr "" #: ../install/index.php:798 msgid "" "These directories will be required to stay read writable after the install " "so that the Cacti remote synchronization process can update them as the Main " "Cacti Web Site changes" msgstr "" #: ../install/index.php:829 msgid "Required Writable at Install Time Only" msgstr "" #: ../install/index.php:832 ../install/index.php:842 ../install/index.php:852 msgid "Writable" msgstr "" #: ../install/index.php:834 ../install/index.php:844 ../install/index.php:854 msgid "Not Writable" msgstr "" #: ../install/index.php:839 ../install/index.php:849 msgid "Required Writable after Install Complete" msgstr "" #: ../install/index.php:862 #, php-format msgid "" "Make sure your webserver has read and write access to the entire folder " "structure.
    Example: chown -R apache.apache %s/resource/" msgstr "" #: ../install/index.php:863 msgid "" "For SELINUX-users make sure that you have the correct permissions or set " "'setenforce 0' temporarily." msgstr "" #: ../install/index.php:865 msgid "Check Permissions" msgstr "" #: ../install/index.php:867 msgid "All folders are writable" msgstr "" #: ../install/index.php:873 msgid "" "If you are installing packages, once the packages are installed, you should " "change the scripts directory back to read only as this presents some " "exposure to the web site." msgstr "" #: ../install/index.php:873 ../install/index.php:879 ../install/index.php:915 msgid "NOTE:" msgstr "" #: ../install/index.php:879 msgid "" "For remote pollers, it is critical that\n" "\t\t\t\t\t\t\t\tthe paths that you will be updating frequently, including " "the plugins, scripts,\n" "\t\t\t\t\t\t\t\tand resources paths have read/write access as the data " "collector will have to\n" "\t\t\t\t\t\t\t\tupdate these paths from the main web server content." msgstr "" #: ../install/index.php:889 msgid "Template Setup" msgstr "" #: ../install/index.php:891 msgid "" "Please select the Device Templates that you wish to use after the Install. " "If you Operating System is Windows, you need to ensure that you select the " "'Windows Device' Template. If your Operating System is Linux/UNIX, make " "sure you select the 'Local Linux Machine' Device Template." msgstr "" #: ../install/index.php:893 msgid "" "Device Templates allow you to monitor and graph a vast assortment of data " "within Cacti. After you select the desired Device Templates, press 'Finish' " "and the installation will complete. Please be patient on this step, as the " "importation of the Device Templates can take a few minutes." msgstr "" #: ../install/index.php:899 ../plugins.php:378 msgid "Author" msgstr "" #: ../install/index.php:899 msgid "Homepage" msgstr "" #: ../install/index.php:917 msgid "" "Press 'Finish' to complete the installation process after selecting your " "Device Templates." msgstr "" #: ../install/index.php:921 msgid "Upgrade Results" msgstr "" #: ../install/index.php:928 msgid "[Fail]" msgstr "" #: ../install/index.php:929 msgid "[Success]" msgstr "" #: ../install/index.php:930 msgid "[Skipped]" msgstr "" #: ../install/index.php:934 msgid "Database upgrade completed!" msgstr "" #: ../install/index.php:955 msgid "" "One or more of the SQL queries needed to upgraded your Cacti installation " "has failed. Please see below for more details. Your Cacti MySQL user must " "have SELECT, INSERT, UPDATE, DELETE, ALTER, CREATE, and DROP permissions. You should try executing the failed queries as \"root\" " "to ensure that you do not have a permissions problem." msgstr "" #: ../install/index.php:955 ../utilities.php:2010 ../utilities.php:2011 #: ../utilities.php:2014 ../utilities.php:2015 msgid "WARNING:" msgstr "" #: ../install/index.php:960 msgid "No database action needed." msgstr "" #: ../install/index.php:965 msgid "Important Upgrade Notice" msgstr "" #: ../install/index.php:966 msgid "" "Before you continue with the installation, you must update " "your /etc/crontab file to point to poller.php instead of " "cmd.php." msgstr "" #: ../install/index.php:967 msgid "" "See the sample crontab entry below with the change made in red. Your crontab " "line will look slightly different based upon your setup." msgstr "" #: ../install/index.php:969 msgid "Once you have made this change, please click Finish to continue." msgstr "" #: ../install/index.php:976 #, fuzzy msgctxt "Dialog: previous" msgid "Previous" msgstr "ПредыдущаÑ" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "claws-mail" #: ../install/index.php:977 #, fuzzy msgctxt "Dialog: complete" msgid "Finish" msgstr "Готово" #: ../install/index.php:977 #, fuzzy msgctxt "Dialog: go to the next page" msgid "Next" msgstr "СледующаÑ" #: ../install/index.php:978 #, fuzzy msgctxt "Dialog: test connection" msgid "Test Connection" msgstr "Коллекции Данных" #: ../install/index.php:978 msgid "Test remote database connection" msgstr "" #: ../lib/aggregate.php:42 msgid "Display Graphs from this Aggregate" msgstr "" #: ../lib/api_aggregate.php:1101 msgid "" "The Graphs chosen for the Aggregate Graph below represent Graphs from " "multiple Graph Templates. Aggregate does not support creating Aggregate " "Graphs from multiple Graph Templates." msgstr "" #: ../lib/api_aggregate.php:1102 ../lib/api_aggregate.php:1121 msgid "Press 'Return' to return and select different Graphs" msgstr "" #: ../lib/api_aggregate.php:1120 msgid "" "The Graphs chosen for the Aggregate Graph do not use Graph Templates. " "Aggregate does not support creating Aggregate Graphs from non-templated " "graphs." msgstr "" #: ../lib/api_aggregate.php:1210 ../lib/functions.php:1932 msgid "Graph Items" msgstr "" #: ../lib/api_aggregate.php:1210 ../lib/functions.php:2064 msgid "Graph Template Items" msgstr "" #: ../lib/api_aggregate.php:1214 ../lib/html.php:855 msgid "Graph Item" msgstr "" #: ../lib/api_aggregate.php:1217 ../lib/html.php:858 msgid "CF Type" msgstr "" #: ../lib/api_aggregate.php:1218 ../lib/html.php:860 msgid "Item Color" msgstr "" #: ../lib/api_aggregate.php:1219 msgid "Color Template" msgstr "" #: ../lib/api_aggregate.php:1220 msgid "Skip" msgstr "" #: ../lib/api_automation.php:124 msgid "Matching Devices" msgstr "" #: ../lib/api_automation.php:139 ../lib/api_automation.php:994 #: ../lib/html_reports.php:268 ../lib/html_reports.php:1211 #: ../lib/html_reports.php:1481 ../lib/html_reports.php:1492 #: ../lib/rrd.php:2653 ../utilities.php:301 ../utilities.php:2338 msgid "Type" msgstr "Тип" #: ../lib/api_automation.php:299 msgid "No Matching Devices" msgstr "" #: ../lib/api_automation.php:408 ../lib/api_automation.php:674 #: ../lib/api_automation.php:799 msgid "Matching Objects" msgstr "" #: ../lib/api_automation.php:562 msgid "Graph ID" msgstr "" #: ../lib/api_automation.php:689 msgid "Objects" msgstr "" #: ../lib/api_automation.php:760 msgid "" "A blue font color indicates that the rule will be applied to the objects in " "question. Other objects will not be subject to the rule." msgstr "" #: ../lib/api_automation.php:760 #, php-format msgid "Matching Objects [ %s ]" msgstr "" #: ../lib/api_automation.php:810 msgid "Device Status" msgstr "" #: ../lib/api_automation.php:832 msgid "There are no Objects that match this rule." msgstr "" #: ../lib/api_automation.php:876 msgid "Error in data query" msgstr "" #: ../lib/api_automation.php:980 msgid "Matching Items" msgstr "" #: ../lib/api_automation.php:1142 msgid "Resulting Branch" msgstr "" #: ../lib/api_automation.php:1181 msgid "No Items Found" msgstr "" #: ../lib/api_automation.php:1209 ../lib/api_automation.php:1271 msgid "Field" msgstr "Поле" #: ../lib/api_automation.php:1211 ../lib/api_automation.php:1273 msgid "Pattern" msgstr "" #: ../lib/api_automation.php:1254 msgid "No Device Selection Criteria" msgstr "" #: ../lib/api_automation.php:1316 msgid "No Graph Creation Criteria" msgstr "" #: ../lib/api_automation.php:1335 msgid "Propagate Change" msgstr "" #: ../lib/api_automation.php:1336 msgid "Search Pattern" msgstr "" #: ../lib/api_automation.php:1337 msgid "Replace Pattern" msgstr "" #: ../lib/api_automation.php:1381 msgid "No Tree Creation Criteria" msgstr "" #: ../lib/api_automation.php:1941 #, php-format msgid "Rule Item [edit rule item for %s: %s]" msgstr "" #: ../lib/api_automation.php:1943 #, php-format msgid "Rule Item [new rule item for %s: %s]" msgstr "" #: ../lib/api_automation.php:2634 msgid "Added by Cacti Automation" msgstr "" #: ../lib/api_device.php:398 msgid "Device is Disabled" msgstr "" #: ../lib/api_device.php:399 msgid "Device Availability Check Bypassed" msgstr "" #: ../lib/api_device.php:406 msgid "SNMP Information" msgstr "" #: ../lib/api_device.php:410 msgid "SNMP not in use" msgstr "" #: ../lib/api_device.php:418 ../lib/api_device.php:422 #: ../lib/api_device.php:434 msgid "SNMP error" msgstr "" #: ../lib/api_device.php:441 msgid "System:" msgstr "" #: ../lib/api_device.php:447 msgid "Uptime:" msgstr "" #: ../lib/api_device.php:448 msgid "days" msgstr "" #: ../lib/api_device.php:448 msgid "hours" msgstr "" #: ../lib/api_device.php:448 msgid "minutes" msgstr "" #: ../lib/api_device.php:449 msgid "Hostname:" msgstr "" #: ../lib/api_device.php:450 msgid "Location:" msgstr "" #: ../lib/api_device.php:451 msgid "Contact:" msgstr "" #: ../lib/api_device.php:480 ../lib/functions.php:3814 #: ../lib/functions.php:3816 ../lib/functions.php:3820 msgid "Ping Results" msgstr "" #: ../lib/api_device.php:485 msgid "No Ping or SNMP Availability Check in Use" msgstr "" #: ../lib/auth.php:312 msgid "Web Basic" msgstr "" #: ../lib/clog_webapi.php:124 msgid "" "Click 'Continue' to purge the Cacti log file.


    Note: If logging is " "set to Cacti and Syslog, the log information will remain in Syslog." msgstr "" #: ../lib/clog_webapi.php:130 msgid "Purge cacti.log" msgstr "" #: ../lib/clog_webapi.php:156 ../utilities.php:975 msgid "Log Filters" msgstr "" #: ../lib/clog_webapi.php:183 #, php-format msgid "Log [Total Lines: %d %s - Additional Filter in Affect]" msgstr "" #: ../lib/clog_webapi.php:185 #, php-format msgid "Log [Total Lines: %d %s - No Other Filter in Affect]" msgstr "" #: ../lib/clog_webapi.php:195 ../utilities.php:1084 ../utilities.php:1403 #: ../utilities.php:1611 ../utilities.php:1691 ../utilities.php:2332 #: ../utilities.php:2542 msgid "Entries" msgstr "" #: ../lib/clog_webapi.php:311 ../utilities.php:984 msgid "Tail Lines" msgstr "" #: ../lib/clog_webapi.php:327 ../utilities.php:996 msgid "Message Type" msgstr "Тип ÑообщениÑ" #: ../lib/clog_webapi.php:332 ../utilities.php:1001 msgid "Stats" msgstr "" #: ../lib/clog_webapi.php:335 ../utilities.php:1004 msgid "Debug" msgstr "" #: ../lib/clog_webapi.php:336 ../utilities.php:1005 msgid "SQL Calls" msgstr "" #: ../lib/clog_webapi.php:367 ../utilities.php:1032 msgid "Display Order" msgstr "" #: ../lib/clog_webapi.php:371 ../utilities.php:1036 msgid "Newest First" msgstr "Ðовые Сначала" #: ../lib/clog_webapi.php:372 ../utilities.php:1037 msgid "Oldest First" msgstr "" #: ../lib/functions.php:676 #, php-format msgid "Error %s is not readable" msgstr "" #: ../lib/functions.php:1818 ../lib/functions.php:1823 msgid "Logged in as" msgstr "Вошел как" #: ../lib/functions.php:1818 msgid "Login as Regular User" msgstr "" #: ../lib/functions.php:1818 msgid "guest" msgstr "" #: ../lib/functions.php:1825 msgid "Edit Profile" msgstr "" #: ../lib/functions.php:1827 msgid "Logout" msgstr "Выход" #: ../lib/functions.php:1844 ../lib/functions.php:1850 msgid "User Profile (Edit)" msgstr "" #: ../lib/functions.php:1862 ../lib/functions.php:1868 msgid "Tree Mode" msgstr "" #: ../lib/functions.php:1874 msgid "List Mode" msgstr "" #: ../lib/functions.php:1896 ../lib/functions.php:1902 #: ../lib/functions.php:2756 ../lib/html.php:1299 ../lib/html.php:1371 #: ../links.php:344 ../user_admin.php:1653 ../user_group_admin.php:1374 msgid "Console" msgstr "КонÑоль" #: ../lib/functions.php:1914 ../lib/functions.php:1956 #: ../lib/functions.php:1974 ../lib/functions.php:2028 #: ../lib/functions.php:2040 ../lib/functions.php:2052 #: ../lib/functions.php:2088 ../lib/functions.php:2106 #: ../lib/functions.php:2124 ../lib/functions.php:2142 #: ../lib/functions.php:2160 ../lib/functions.php:2184 #: ../lib/functions.php:2220 ../lib/functions.php:2340 #: ../lib/functions.php:2364 ../lib/functions.php:2382 #: ../lib/functions.php:2400 ../lib/functions.php:2412 #: ../lib/functions.php:2514 ../lib/functions.php:2538 #: ../lib/functions.php:2556 ../lib/functions.php:2574 #: ../lib/functions.php:2592 ../lib/functions.php:2616 msgid "(Edit)" msgstr "" #: ../lib/functions.php:1938 msgid "Create New Graphs" msgstr "" #: ../lib/functions.php:1944 msgid "Create Graphs from Data Query" msgstr "" #: ../lib/functions.php:1962 ../lib/functions.php:1980 #: ../lib/functions.php:2076 ../lib/functions.php:2166 #: ../lib/functions.php:2190 ../lib/functions.php:2346 msgid "(Remove)" msgstr "" #: ../lib/functions.php:1998 ../lib/functions.php:2004 #: ../lib/functions.php:2010 ../lib/functions.php:2016 #: ../lib/functions.php:2280 msgid "View Cacti Log" msgstr "ПроÑмотреть логи Cacti" #: ../lib/functions.php:2022 msgid "Graph Trees" msgstr "" #: ../lib/functions.php:2154 msgid "Round Robin Archives" msgstr "" #: ../lib/functions.php:2196 msgid "Data Input Fields" msgstr "" #: ../lib/functions.php:2202 ../lib/functions.php:2232 msgid "(Remove Item)" msgstr "" #: ../lib/functions.php:2250 msgid "List unused Files" msgstr "" #: ../lib/functions.php:2262 ../lib/functions.php:2274 ../utilities.php:1780 msgid "View Poller Cache" msgstr "" #: ../lib/functions.php:2268 ../utilities.php:1784 msgid "View Data Query Cache" msgstr "" #: ../lib/functions.php:2286 ../utilities.php:1168 msgid "Clear Cacti Log" msgstr "" #: ../lib/functions.php:2292 ../utilities.php:1773 msgid "View User Log" msgstr "" #: ../lib/functions.php:2298 msgid "Clear User Log" msgstr "" #: ../lib/functions.php:2304 ../utilities.php:1764 msgid "Technical Support" msgstr "ТехничеÑÐºÐ°Ñ ÐŸÐ¾Ð´Ð´ÐµÑ€Ð¶ÐºÐ°" #: ../lib/functions.php:2310 ../utilities.php:1877 msgid "Boost Status" msgstr "" #: ../lib/functions.php:2316 msgid "View SNMP Agent Cache" msgstr "" #: ../lib/functions.php:2322 msgid "View SNMP Agent Notification Log" msgstr "" #: ../lib/functions.php:2352 msgid "VDEF Items" msgstr "" #: ../lib/functions.php:2358 msgid "View SNMP Notification Receivers" msgstr "" #: ../lib/functions.php:2370 msgid "Cacti Settings" msgstr "" #: ../lib/functions.php:2388 ../lib/functions.php:2418 msgid "(Action)" msgstr "" #: ../lib/functions.php:2436 msgid "Export Results" msgstr "" #: ../lib/functions.php:2448 ../lib/functions.php:2478 ../lib/html.php:1320 #: ../lib/html.php:1322 ../lib/html.php:1396 msgid "Reporting" msgstr "Отчёты" #: ../lib/functions.php:2454 ../lib/functions.php:2484 msgid "Report Add" msgstr "Добавить отчёт" #: ../lib/functions.php:2460 ../lib/functions.php:2490 msgid "Report Delete" msgstr "Удалить отчёт" #: ../lib/functions.php:2466 ../lib/functions.php:2496 msgid "Report Edit" msgstr "Изменить отчёт" #: ../lib/functions.php:2472 ../lib/functions.php:2502 msgid "Report Edit Item" msgstr "" #: ../lib/functions.php:2526 msgid "Color Template Items" msgstr "" #: ../lib/functions.php:2568 msgid "Aggregate Items" msgstr "" #: ../lib/functions.php:2604 msgid "Graph Rule Items" msgstr "" #: ../lib/functions.php:2628 msgid "Tree Rule Items" msgstr "" #: ../lib/functions.php:2713 msgid "Leaf" msgstr "" #: ../lib/functions.php:2727 msgid "Non Query Based" msgstr "" #: ../lib/functions.php:3435 msgid "" "Mailer Error: No TO address set!!
    If using the Test Mail " "link, please set the Alert e-mail setting." msgstr "" #: ../lib/functions.php:3747 #, php-format msgid "Authentication failed: %s" msgstr "" #: ../lib/functions.php:3751 #, php-format msgid "HELO failed: %s" msgstr "" #: ../lib/functions.php:3754 #, php-format msgid "Connect failed: %s" msgstr "" #: ../lib/functions.php:3757 msgid "SMTP error: " msgstr "" #: ../lib/functions.php:3770 msgid "" "This is a test message generated from Cacti. This message was sent to test " "the configuration of your Mail Settings." msgstr "" #: ../lib/functions.php:3771 msgid "Your email settings are currently set as follows" msgstr "" #: ../lib/functions.php:3772 msgid "Method" msgstr "" #: ../lib/functions.php:3774 msgid "Checking Configuration...
    " msgstr "" #: ../lib/functions.php:3781 msgid "PHP's Mailer Class" msgstr "" #: ../lib/functions.php:3787 msgid "Method: SMTP" msgstr "" #: ../lib/functions.php:3802 msgid "Not Shown for Security Reasons" msgstr "" #: ../lib/functions.php:3803 msgid "Security" msgstr "" #: ../lib/functions.php:3811 msgid "Ping Results:" msgstr "" #: ../lib/functions.php:3820 msgid "Bypassed" msgstr "" #: ../lib/functions.php:3828 msgid "Creating Message Text..." msgstr "" #: ../lib/functions.php:3831 msgid "Sending Message..." msgstr "" #: ../lib/functions.php:3835 msgid "Cacti Test Message" msgstr "" #: ../lib/functions.php:3837 msgid "Success!" msgstr "" #: ../lib/functions.php:3840 msgid "Message Not Sent due to ping failure." msgstr "" #: ../lib/html.php:233 msgid "Data Query:" msgstr "" #: ../lib/html.php:293 msgid "CSV Export of Graph Data" msgstr "" #: ../lib/html.php:294 msgid "Time Graph View" msgstr "" #: ../lib/html.php:296 msgid "Click to view just this Graph in Real-time" msgstr "" #: ../lib/html.php:299 msgid "Kill Spikes in Graphs" msgstr "" #: ../lib/html.php:336 msgid "Previous" msgstr "ПредыдущаÑ" #: ../lib/html.php:339 #, php-format msgid "%d to %d of %s [ %s ]" msgstr "" #: ../lib/html.php:348 #, fuzzy, php-format msgid "All %d %s" msgstr "Показаны вÑе %d %s" #: ../lib/html.php:354 #, php-format msgid "No %s Found" msgstr "" #: ../lib/html.php:674 ../lib/html.php:761 msgid "Select All Rows" msgstr "" #: ../lib/html.php:859 msgid "Alpha %" msgstr "" #: ../lib/html.php:900 msgid "No Task" msgstr "" #: ../lib/html.php:1144 #, fuzzy msgid "Choose an action" msgstr "Выбирите дейÑтвие:" #: ../lib/html.php:1154 msgid "Execute Action" msgstr "" #: ../lib/html.php:1329 ../lib/html.php:1331 ../lib/html.php:1407 msgid "Cacti Log" msgstr "Cacti Лог" #: ../lib/html.php:1721 msgid "Nan's" msgstr "" #: ../lib/html.php:1725 msgid "Standard Deviations" msgstr "" #: ../lib/html.php:1727 #, php-format msgid "%s Standard Deviations" msgstr "" #: ../lib/html.php:1737 msgid "Variance Outliers" msgstr "" #: ../lib/html.php:1739 #, php-format msgid "%d Outliers" msgstr "" #: ../lib/html.php:1743 msgid "Kills Per RRA" msgstr "" #: ../lib/html.php:1745 #, php-format msgid "%d Spikes" msgstr "" #: ../lib/html.php:1752 msgid "Remove StdDev" msgstr "" #: ../lib/html.php:1753 msgid "Remove Variance" msgstr "" #: ../lib/html.php:1754 msgid "Gap Fill Range" msgstr "" #: ../lib/html.php:1755 msgid "Float Range" msgstr "" #: ../lib/html.php:1756 msgid "Dry Run StdDev" msgstr "" #: ../lib/html.php:1757 msgid "Dry Run Variance" msgstr "" #: ../lib/html.php:1758 msgid "Dry Run Gap Fill Range" msgstr "" #: ../lib/html.php:1759 msgid "Dry Run Float Range" msgstr "" #: ../lib/html_filter.php:82 msgid "Apply filter to table" msgstr "" #: ../lib/html_filter.php:87 #, fuzzy #| msgid "Reset fields to defaults" msgid "Reset filter to default values" msgstr "СброÑить Ð¿Ð¾Ð»Ñ Ð¿Ð¾ умолчанию" #: ../lib/html_form.php:509 msgid "File Found" msgstr "" #: ../lib/html_form.php:511 msgid "Path is a Directory and not a File" msgstr "" #: ../lib/html_form.php:515 msgid "File is Not Found" msgstr "" #: ../lib/html_form.php:518 msgid "Enter a valid file path" msgstr "" #: ../lib/html_form.php:554 msgid "Directory Found" msgstr "" #: ../lib/html_form.php:556 msgid "Path is a File and not a Directory" msgstr "" #: ../lib/html_form.php:560 msgid "Directory is Not found" msgstr "" #: ../lib/html_form.php:563 msgid "Enter a valid directory path" msgstr "" #: ../lib/html_form.php:1056 msgid "NO FONT VERIFICATION POSSIBLE" msgstr "" #: ../lib/html_form_template.php:562 ../lib/html_form_template.php:577 #, php-format msgid "Data Query Data Sources must be created through %s" msgstr "" #: ../lib/html_graph.php:197 ../lib/html_tree.php:649 msgid "" "Save the current Graphs, Columns, Thumbnail, Preset, and Timeshift " "preferences to your profile" msgstr "" #: ../lib/html_graph.php:226 ../lib/html_tree.php:672 msgid "Columns" msgstr "" #: ../lib/html_graph.php:230 ../lib/html_tree.php:676 #, php-format msgid "%d Column" msgstr "" #: ../lib/html_graph.php:239 ../lib/html_reports.php:125 #: ../lib/html_tree.php:685 msgid "Thumbnails" msgstr "" #: ../lib/html_graph.php:261 ../lib/html_tree.php:707 msgid "Custom" msgstr "" #: ../lib/html_graph.php:282 ../lib/html_reports.php:1479 #: ../lib/html_reports.php:1490 ../lib/html_tree.php:728 msgid "From" msgstr "" #: ../lib/html_graph.php:288 ../lib/html_tree.php:734 msgid "Start Date Selector" msgstr "" #: ../lib/html_graph.php:291 ../lib/html_reports.php:1480 #: ../lib/html_reports.php:1491 ../lib/html_tree.php:737 msgid "To" msgstr "" #: ../lib/html_graph.php:297 ../lib/html_tree.php:743 msgid "End Date Selector" msgstr "" #: ../lib/html_graph.php:300 ../lib/html_tree.php:746 msgid "Shift Time Backward" msgstr "" #: ../lib/html_graph.php:303 ../lib/html_tree.php:749 msgid "Define Shifting Interval" msgstr "" #: ../lib/html_graph.php:316 ../lib/html_tree.php:762 msgid "Shift Time Forward" msgstr "" #: ../lib/html_graph.php:319 ../lib/html_tree.php:765 msgid "Refresh selected time span" msgstr "" #: ../lib/html_graph.php:322 ../lib/html_tree.php:768 msgid "Return to the default time span" msgstr "" #: ../lib/html_graph.php:339 msgid "Interval" msgstr "Интервал" #: ../lib/html_graph.php:351 ../lib/html_tree.php:797 msgid "Stop" msgstr "" #: ../lib/html_reports.php:35 ../lib/html_reports.php:1474 msgid "Report Name" msgstr "" #: ../lib/html_reports.php:37 msgid "New Report" msgstr "" #: ../lib/html_reports.php:38 msgid "Give this Report a descriptive Name" msgstr "" #: ../lib/html_reports.php:43 msgid "Enable Report" msgstr "" #: ../lib/html_reports.php:46 msgid "Check this box to enable this Report." msgstr "" #: ../lib/html_reports.php:51 msgid "Output Formatting" msgstr "" #: ../lib/html_reports.php:56 msgid "Use Custom Format HTML" msgstr "" #: ../lib/html_reports.php:59 msgid "Check this box if you want to use custom html and CSS for the report." msgstr "" #: ../lib/html_reports.php:64 msgid "Format File to Use" msgstr "" #: ../lib/html_reports.php:67 msgid "" "Choose the custom html wrapper and CSS file to use. This file contains both " "html and CSS to wrap around your report.\n" "\t\tIf it contains more than simply CSS, you need to place a special " " tag inside of the file. This format tag will be replaced by the " "report content. These files are located in the 'formats' directory." msgstr "" #: ../lib/html_reports.php:73 msgid "Default Text Font Size" msgstr "" #: ../lib/html_reports.php:74 msgid "" "Defines the default font size for all text in the report including the " "Report Title." msgstr "" #: ../lib/html_reports.php:81 msgid "Default Object Alignment" msgstr "" #: ../lib/html_reports.php:82 msgid "Defines the default Alignment for Text and Graphs." msgstr "" #: ../lib/html_reports.php:89 msgid "Graph Linked" msgstr "" #: ../lib/html_reports.php:92 msgid "Should the Graphs be linked back to the Cacti site?" msgstr "" #: ../lib/html_reports.php:96 msgid "Graph Settings" msgstr "СвойÑтва графиков" #: ../lib/html_reports.php:101 msgid "Graph Columns" msgstr "" #: ../lib/html_reports.php:105 msgid "The number of Graph columns." msgstr "" #: ../lib/html_reports.php:113 msgid "The Graph width in pixels." msgstr "" #: ../lib/html_reports.php:121 msgid "The Graph height in pixels." msgstr "" #: ../lib/html_reports.php:128 msgid "Should the Graphs be rendered as Thumbnails?" msgstr "" #: ../lib/html_reports.php:132 msgid "Email Frequency" msgstr "" #: ../lib/html_reports.php:137 msgid "Next Timestamp for Sending Mail Report" msgstr "" #: ../lib/html_reports.php:138 msgid "" "Start time for [first|next] mail to take place. All future mailing times " "will be based upon this start time. A good example would be 2:00am. The time " "must be in the future. If a fractional time is used, say 2:00am, it is " "assumed to be in the future." msgstr "" #: ../lib/html_reports.php:146 msgid "Report Interval" msgstr "" #: ../lib/html_reports.php:147 msgid "Defines a Report Frequency relative to the given Mailtime above." msgstr "" #: ../lib/html_reports.php:148 msgid "e.g. 'Week(s)' represents a weekly Reporting Interval." msgstr "" #: ../lib/html_reports.php:155 msgid "Interval Frequency" msgstr "" #: ../lib/html_reports.php:156 msgid "" "Based upon the Timespan of the Report Interval above, defines the Frequency " "within that Interval." msgstr "" #: ../lib/html_reports.php:157 msgid "" "e.g. If the Report Interval is 'Month(s)', then '2' indicates Every '2 " "Month(s) from the next Mailtime.' Lastly, if using the Month(s) Report " "Intervals, the 'Day of Week' and the 'Day of Month' are both calculated " "based upon the Mailtime you specify above." msgstr "" #: ../lib/html_reports.php:165 msgid "Email Sender/Receiver Details" msgstr "" #: ../lib/html_reports.php:170 msgid "Subject" msgstr "" #: ../lib/html_reports.php:172 msgid "Cacti Report" msgstr "" #: ../lib/html_reports.php:173 msgid "" "This value will be used as the default Email subject. The report name will " "be used if left blank." msgstr "" #: ../lib/html_reports.php:181 msgid "This Name will be used as the default E-mail Sender" msgstr "" #: ../lib/html_reports.php:189 msgid "This Address will be used as the E-mail Senders address" msgstr "" #: ../lib/html_reports.php:194 msgid "To Email Address(es)" msgstr "" #: ../lib/html_reports.php:200 msgid "Please separate multiple addresses by comma (,)" msgstr "" #: ../lib/html_reports.php:205 msgid "BCC Address(es)" msgstr "" #: ../lib/html_reports.php:211 msgid "Blind carbon copy. Please separate multiple addresses by comma (,)" msgstr "" #: ../lib/html_reports.php:216 msgid "Image attach type" msgstr "" #: ../lib/html_reports.php:219 msgid "Select one of the given Types for the Image Attachments" msgstr "" #: ../lib/html_reports.php:271 msgid "Item Type to be added." msgstr "" #: ../lib/html_reports.php:277 msgid "Graph Tree" msgstr "" #: ../lib/html_reports.php:281 msgid "Select a Tree to use." msgstr "" #: ../lib/html_reports.php:287 msgid "Graph Tree Branch" msgstr "" #: ../lib/html_reports.php:291 msgid "Select a Tree Branch to use." msgstr "" #: ../lib/html_reports.php:293 msgid "Branch:" msgstr "" #: ../lib/html_reports.php:299 ../lib/html_tree.php:593 msgid "Device:" msgstr "УÑтройÑтво:" #: ../lib/html_reports.php:309 msgid "Cascade to Branches" msgstr "" #: ../lib/html_reports.php:312 msgid "Should all children branch Graphs be rendered?" msgstr "" #: ../lib/html_reports.php:316 msgid "Graph Name Regular Expression" msgstr "" #: ../lib/html_reports.php:319 msgid "" "A Perl compatible regular expression (REGEXP) used to select graphs to " "include from the tree." msgstr "" #: ../lib/html_reports.php:329 msgid "Select a Device Template to use." msgstr "" #: ../lib/html_reports.php:338 msgid "Select a Device to specify a Graph" msgstr "" #: ../lib/html_reports.php:348 msgid "Select a Graph Template for the host" msgstr "" #: ../lib/html_reports.php:358 msgid "The Graph to use for this report item." msgstr "" #: ../lib/html_reports.php:368 msgid "Graph End Time is always set to Cacti's schedule." msgstr "" #: ../lib/html_reports.php:369 msgid "Graph Start Time equals Graph End Time minus given timespan" msgstr "" #: ../lib/html_reports.php:374 ../lib/html_reports.php:1214 msgid "Alignment" msgstr "" #: ../lib/html_reports.php:377 msgid "Alignment of the Item" msgstr "" #: ../lib/html_reports.php:382 msgid "Fixed Text" msgstr "" #: ../lib/html_reports.php:385 msgid "Enter descriptive Text" msgstr "" #: ../lib/html_reports.php:390 ../lib/html_reports.php:1215 msgid "Font Size" msgstr "" #: ../lib/html_reports.php:394 msgid "Font Size of the Item" msgstr "" #: ../lib/html_reports.php:457 msgid "Date/Time moved to the same time Tomorrow" msgstr "" #: ../lib/html_reports.php:640 msgid "You must select at least one Report." msgstr "" #: ../lib/html_reports.php:648 msgid "Click 'Continue' to delete the following Report(s)." msgstr "" #: ../lib/html_reports.php:655 msgid "Click 'Continue' to take ownership of the following Report(s)." msgstr "" #: ../lib/html_reports.php:662 msgid "" "Click 'Continue' to duplicate the following Report(s). You may optionally " "change the title for the new Reports" msgstr "" #: ../lib/html_reports.php:664 msgid "Name Format:" msgstr "" #: ../lib/html_reports.php:674 msgid "Click 'Continue' to enable the following Report(s)." msgstr "" #: ../lib/html_reports.php:676 msgid "" "Please be certain that those Report(s) have successfully been tested first!" msgstr "" #: ../lib/html_reports.php:682 msgid "Click 'Continue' to disable the following Reports." msgstr "" #: ../lib/html_reports.php:689 msgid "Click 'Continue' to send the following Report(s) now." msgstr "" #: ../lib/html_reports.php:735 #, php-format msgid "Unable to send Report '%d'. Please set destination e-mail addresses" msgstr "" #: ../lib/html_reports.php:740 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail subject" msgstr "" #: ../lib/html_reports.php:745 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail From Name" msgstr "" #: ../lib/html_reports.php:750 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail from address" msgstr "" #: ../lib/html_reports.php:806 #, fuzzy, php-format #| msgid "Graph Items [edit: %s]" msgid "Report Item [edit Report: %s]" msgstr "Графики [редактировать %s]" #: ../lib/html_reports.php:808 #, fuzzy, php-format #| msgid "Graph Items [edit: %s]" msgid "Report Item [new Report: %s]" msgstr "Графики [редактировать %s]" #: ../lib/html_reports.php:1059 ../user_admin.php:1937 #, php-format msgid "[edit: %s]" msgstr "[редакциÑ: %s" #: ../lib/html_reports.php:1060 msgid "Events" msgstr "" #: ../lib/html_reports.php:1062 ../lib/import.php:1803 ../user_admin.php:1939 msgid "[new]" msgstr "[новый]" #: ../lib/html_reports.php:1094 msgid "Send Report" msgstr "" #: ../lib/html_reports.php:1172 msgid "Scheduled Events" msgstr "" #: ../lib/html_reports.php:1183 msgid "Report Preview" msgstr "" #: ../lib/html_reports.php:1212 msgid "Item Details" msgstr "" #: ../lib/html_reports.php:1213 msgid "Timespan" msgstr "" #: ../lib/html_reports.php:1252 msgid "(All Branches)" msgstr "" #: ../lib/html_reports.php:1254 msgid "(Current Branch)" msgstr "" #: ../lib/html_reports.php:1297 msgid "No Report Items" msgstr "" #: ../lib/html_reports.php:1371 msgid "Administrator Level" msgstr "" #: ../lib/html_reports.php:1371 #, php-format msgid "Reports [%s]" msgstr "" #: ../lib/html_reports.php:1371 msgid "User Level" msgstr "" #: ../lib/html_reports.php:1466 msgid "Reports" msgstr "" #: ../lib/html_reports.php:1475 ../tree.php:1562 msgid "Owner" msgstr "" #: ../lib/html_reports.php:1476 ../lib/html_reports.php:1487 msgid "Frequency" msgstr "" #: ../lib/html_reports.php:1477 ../lib/html_reports.php:1488 msgid "Last Run" msgstr "" #: ../lib/html_reports.php:1478 ../lib/html_reports.php:1489 msgid "Next Run" msgstr "" #: ../lib/html_reports.php:1486 msgid "Report Title" msgstr "" #: ../lib/html_reports.php:1517 msgid "Report Disabled - No Owner" msgstr "" #: ../lib/html_reports.php:1527 msgid "Multiple" msgstr "" #: ../lib/html_reports.php:1528 msgid "Invalid" msgstr "" #: ../lib/html_reports.php:1535 msgid "No Reports Found" msgstr "Отчёты не найдены" #: ../lib/html_tree.php:580 ../lib/html_tree.php:583 ../lib/html_tree.php:586 msgid "Graph Template:" msgstr "" #: ../lib/html_tree.php:591 ../lib/reports.php:886 msgid "Tree:" msgstr "" #: ../lib/html_tree.php:592 ../lib/reports.php:891 msgid "Leaf:" msgstr "" #: ../lib/html_tree.php:596 msgid "Applied" msgstr "" #: ../lib/html_tree.php:596 msgid "Filter" msgstr "Фильтр" #: ../lib/html_tree.php:596 msgid "Graph Filters" msgstr "" #: ../lib/html_tree.php:642 msgid "Set/Refresh Filter" msgstr "" #: ../lib/html_utility.php:419 ../lib/html_utility.php:635 #, php-format msgid "The search term \"%s\" is not valid. Error is %s" msgstr "" #: ../lib/html_utility.php:766 msgid "There was an internal error!" msgstr "" #: ../lib/html_utility.php:767 msgid "Backtrack limit was exhausted!" msgstr "" #: ../lib/html_utility.php:768 msgid "Recursion limit was exhausted!" msgstr "" #: ../lib/html_utility.php:769 msgid "Bad UTF-8 error!" msgstr "" #: ../lib/html_utility.php:770 msgid "Bad UTF-8 offset error!" msgstr "" #: ../lib/import.php:229 msgid "written" msgstr "" #: ../lib/import.php:231 msgid "could not open" msgstr "" #: ../lib/import.php:237 msgid "not exists" msgstr "" #: ../lib/import.php:240 ../lib/import.php:244 msgid "not writable" msgstr "" #: ../lib/import.php:246 msgid "writable" msgstr "" #: ../lib/import.php:1764 msgid "Import Preview Results" msgstr "" #: ../lib/import.php:1764 msgid "Import Results" msgstr "" #: ../lib/import.php:1768 msgid "Cacti would make the following changes if the Package was imported:" msgstr "" #: ../lib/import.php:1770 msgid "Cacti has imported the following items for the Package:" msgstr "" #: ../lib/import.php:1773 msgid "Package Files" msgstr "" #: ../lib/import.php:1777 msgid "[preview] " msgstr "" #: ../lib/import.php:1782 msgid "Cacti would make the following changes if the Template was imported:" msgstr "" #: ../lib/import.php:1784 msgid "Cacti has imported the following items for the Template:" msgstr "" #: ../lib/import.php:1793 msgid "[success]" msgstr "[выполненно]" #: ../lib/import.php:1795 msgid "[fail]" msgstr "[ошибка]" #: ../lib/import.php:1797 msgid "[preview]" msgstr "" #: ../lib/import.php:1801 msgid "[updated]" msgstr "" #: ../lib/import.php:1805 msgid "[unchanged]" msgstr "" #: ../lib/import.php:1841 msgid "Found Dependency:" msgstr "" #: ../lib/import.php:1843 msgid "Unmet Dependency:" msgstr "" #: ../lib/ldap.php:197 ../lib/ldap.php:376 msgid "PHP LDAP not enabled" msgstr "" #: ../lib/ldap.php:204 ../lib/ldap.php:384 msgid "No username defined" msgstr "" #: ../lib/ldap.php:232 msgid "Protocol Error, Unable to set version" msgstr "" #: ../lib/ldap.php:243 ../lib/ldap.php:448 msgid "Unable to set referrals option" msgstr "" #: ../lib/ldap.php:255 ../lib/ldap.php:461 msgid "Protocol Error, unable to start TLS communications" msgstr "" #: ../lib/ldap.php:294 ../lib/ldap.php:313 msgid "Authentication Success" msgstr "" #: ../lib/ldap.php:297 msgid "Insufficient access" msgstr "" #: ../lib/ldap.php:304 msgid "Group DN could not be found to compare" msgstr "" #: ../lib/ldap.php:321 ../lib/ldap.php:505 msgid "Protocol Error" msgstr "" #: ../lib/ldap.php:325 msgid "Authentication Failure" msgstr "" #: ../lib/ldap.php:329 ../lib/ldap.php:515 msgid "Insufficient Access" msgstr "" #: ../lib/ldap.php:333 ../lib/ldap.php:520 msgid "Unable to Connect to Server" msgstr "" #: ../lib/ldap.php:337 ../lib/ldap.php:525 msgid "Connection Timeout" msgstr "" #: ../lib/ldap.php:341 ../lib/ldap.php:530 msgid "General Bind Error, LDAP result:" msgstr "" #: ../lib/ldap.php:347 msgid "Unable to Create LDAP Object" msgstr "" #: ../lib/ldap.php:400 ../lib/ldap.php:479 msgid "User found" msgstr "" #: ../lib/ldap.php:407 msgid "Specific DN and Password required" msgstr "" #: ../lib/ldap.php:436 msgid "Protocol Error, unable to set version" msgstr "" #: ../lib/ldap.php:485 msgid "More than one matching user found" msgstr "" #: ../lib/ldap.php:490 ../lib/ldap.php:496 msgid "Unable to find users DN" msgstr "" #: ../lib/ldap.php:510 msgid "Invalid Credentials" msgstr "" #: ../lib/ldap.php:537 msgid "Unable to create LDAP connection object" msgstr "" #: ../lib/ping.php:130 msgid "ICMP Ping timed out" msgstr "" #: ../lib/ping.php:199 ../lib/ping.php:217 #, php-format msgid "ICMP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:204 ../lib/ping.php:222 msgid "ICMP ping Timed out" msgstr "" #: ../lib/ping.php:229 ../lib/ping.php:431 ../lib/ping.php:536 msgid "Destination address not specified" msgstr "" #: ../lib/ping.php:326 ../lib/ping.php:446 msgid "default" msgstr "" #: ../lib/ping.php:356 msgid "PHP version does not support IPv6" msgstr "" #: ../lib/ping.php:378 #, php-format msgid "UDP ping error: %s" msgstr "" #: ../lib/ping.php:412 #, php-format msgid "UDP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:476 msgid "PHP binary does not support IPv6" msgstr "" #: ../lib/ping.php:500 #, php-format msgid "TCP ping: socket_select() failed, reason: %s" msgstr "" #: ../lib/ping.php:515 #, php-format msgid "TCP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:525 msgid "TCP ping timed out" msgstr "" #: ../lib/ping.php:552 msgid "Ping not performed due to setting." msgstr "" #: ../lib/plugins.php:479 #, php-format msgid "Plugin %s is required for %s, and it is not installed." msgstr "" #: ../lib/plugins.php:486 msgid "Plugin cannot be installed." msgstr "" #: ../lib/plugins.php:763 ../lib/plugins.php:770 ../plugins.php:267 msgid "Plugin Management" msgstr "Управление Плагинами" #: ../lib/reports.php:896 msgid "Host:" msgstr "" #: ../lib/reports.php:901 msgid "Graph:" msgstr "" #: ../lib/reports.php:1002 msgid "(No Graph Template)" msgstr "" #: ../lib/reports.php:1421 msgid "Add to Report" msgstr "" #: ../lib/reports.php:1439 msgid "" "Choose the Report to associate these graphs with. The defaults for " "alignment will be used for each graph in the list below." msgstr "" #: ../lib/reports.php:1441 msgid "Report:" msgstr "" #: ../lib/reports.php:1448 msgid "Graph Timespan:" msgstr "" #: ../lib/reports.php:1451 msgid "Graph Alignment:" msgstr "" #: ../lib/reports.php:1533 #, php-format msgid "Created Report Graph Item '%s'" msgstr "" #: ../lib/reports.php:1535 #, php-format msgid "Failed Adding Report Graph Item '%s' Already Exists" msgstr "" #: ../lib/reports.php:1538 #, php-format msgid "Skipped Report Graph Item '%s' Already Exists" msgstr "" #: ../lib/rrd.php:2414 #, php-format msgid "Required RRD step size is '%s'" msgstr "" #: ../lib/rrd.php:2452 #, php-format msgid "Type for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2457 #, php-format msgid "Heartbeat for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2465 #, php-format msgid "RRD minimum for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2489 #, php-format msgid "RRD maximum for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2499 #, php-format msgid "DS '%s' missing in RRDfile" msgstr "" #: ../lib/rrd.php:2508 #, php-format msgid "DS '%s' missing in Cacti definition" msgstr "" #: ../lib/rrd.php:2525 ../lib/rrd.php:2526 #, php-format msgid "Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: ../lib/rrd.php:2540 ../lib/rrd.php:2541 #, php-format msgid "File RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: ../lib/rrd.php:2572 #, php-format msgid "XFF for cacti RRA id '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2576 #, php-format msgid "Number of rows for Cacti RRA id '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2592 #, php-format msgid "RRA '%s' missing in RRDfile" msgstr "" #: ../lib/rrd.php:2601 #, php-format msgid "RRA '%s' missing in Cacti definition" msgstr "" #: ../lib/rrd.php:2620 msgid "RRD File Information" msgstr "" #: ../lib/rrd.php:2652 msgid "Data Source Items" msgstr "" #: ../lib/rrd.php:2654 msgid "Minimal Heartbeat" msgstr "" #: ../lib/rrd.php:2655 msgid "Min" msgstr "" #: ../lib/rrd.php:2656 msgid "Max" msgstr "" #: ../lib/rrd.php:2657 msgid "Last DS" msgstr "" #: ../lib/rrd.php:2659 msgid "Unknown Sec" msgstr "" #: ../lib/rrd.php:2687 msgid "Round Robin Archive" msgstr "" #: ../lib/rrd.php:2690 msgid "Cur Row" msgstr "" #: ../lib/rrd.php:2691 msgid "PDP per Row" msgstr "" #: ../lib/rrd.php:2692 msgid "X Files Factor" msgstr "" #: ../lib/rrd.php:2693 msgid "CDP Prep Value (0)" msgstr "" #: ../lib/rrd.php:2694 msgid "CDP Unknown Data points (0)" msgstr "" #: ../lib/rrd.php:2771 #, php-format msgid "rename %s to %s" msgstr "переименовать %s в %s" #: ../lib/rrd.php:2821 msgid "Error while parsing the XML of rrdtool dump" msgstr "" #: ../lib/rrd.php:2853 ../lib/rrd.php:2908 ../lib/rrd.php:2964 #, php-format msgid "ERROR while writing XML file: %s" msgstr "" #: ../lib/rrd.php:2862 #, php-format msgid "Added Data Source(s) to RRDfile: %s" msgstr "" #: ../lib/rrd.php:2864 ../lib/rrd.php:2919 #, php-format msgid "ERROR: RRDfile %s not writeable" msgstr "" #: ../lib/rrd.php:2891 ../lib/rrd.php:2947 msgid "Error while parsing the XML of RRDtool dump" msgstr "" #: ../lib/rrd.php:2917 #, php-format msgid "Deleted RRA(s) from RRDfile: %s" msgstr "" #: ../lib/rrd.php:2973 #, php-format msgid "Deleted rra(s) from rrd file: %s" msgstr "" #: ../lib/rrd.php:2975 #, php-format msgid "ERROR: RRD file %s not writeable" msgstr "" #: ../lib/rrd.php:3180 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) removed from RRD file\n" msgstr "" #: ../lib/rrd.php:3214 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) adding to RRD file\n" msgstr "" #: ../lib/utility.php:640 msgid "" "MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions " "to choose. Make sure you\n" "\t\t\t\trun the very latest release though which fixes a long standing low " "level networking\n" "\t\t\t\tissue that was casuing spine many issues with reliability." msgstr "" #: ../lib/utility.php:654 ../lib/utility.php:692 #, php-format msgid "" "It is recommended that you enable InnoDB in any %s version greater than 5.1." msgstr "" #: ../lib/utility.php:667 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8_general_ci collation type as some characters take more " "than a single byte. \n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes " "and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the " "internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting " "other languages." msgstr "" #: ../lib/utility.php:677 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8 character set as some characters take more than a single " "byte.\n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes " "and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the " "internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting " "other languages." msgstr "" #: ../lib/utility.php:705 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8mb4_unicode_ci collation type as some characters take more " "than a single byte." msgstr "" #: ../lib/utility.php:712 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8mb4 character set as some characters take more than a " "single byte." msgstr "" #: ../lib/utility.php:722 #, php-format msgid "" "Depending on the number of logins and use of spine data collector, \n" "\t\t\t\t%s will need many connections. The calculation for spine is:\n" "\t\t\t\ttotal_connections = total_processes * (total_threads + " "script_servers + 1), then you\n" "\t\t\t\tmust leave headroom for user connections, which will change " "depending on the number of\n" "\t\t\t\tconcurrent login accounts." msgstr "" #: ../lib/utility.php:731 #, php-format msgid "" "If using the Cacti Performance Booster and choosing a memory storage " "engine,\n" "\t\t\t\tyou have to be careful to flush your Performance Booster buffer " "before the system runs\n" "\t\t\t\tout of memory table space. This is done two ways, first reducing " "the size of your output\n" "\t\t\t\tcolumn to just the right size. This column is in the tables " "poller_output, \n" "\t\t\t\tand poller_output_boost. The second thing you can do is allocate " "more memory to memory\n" "\t\t\t\ttables. We have arbitrarily chosen a recommended value of 10% of " "system memory, but \n" "\t\t\t\tif you are using SSD disk drives, or have a smaller system, you may " "ignore this recommendation\n" "\t\t\t\tor choose a different storage engine. You may see the expected " "consumption of the \n" "\t\t\t\tPerformance Booster tables under Console -> System Utilities -> View " "Boost Status." msgstr "" #: ../lib/utility.php:744 msgid "" "Keeping the table cache larger means less file open/close operations when\n" "\t\t\t\tusing innodb_file_per_table." msgstr "" #: ../lib/utility.php:750 msgid "" "With Remote polling capabilities, large amounts of data \n" "\t\t\t\twill be synced from the main server to the remote pollers. \n" "\t\t\t\tTherefore, keep this value at or above 16M." msgstr "" #: ../lib/utility.php:757 msgid "" "When executing subqueries, having a larger temporary table size, \n" "\t\t\t\tkeep those temporary tables in memory." msgstr "" #: ../lib/utility.php:763 msgid "" "When performing joins, if they are below this size, they will \n" "\t\t\t\tbe kept in memory and never written to a temporary file." msgstr "" #: ../lib/utility.php:769 #, php-format msgid "" "When using InnoDB storage it is important to keep your table spaces\n" "\t\t\t\tseparate. This makes managing the tables simpler for long time " "users of %s.\n" "\t\t\t\tIf you are running with this currently off, you can migrate to the " "per file storage\n" "\t\t\t\tby enabling the feature, and then running an alter statement on all " "InnoDB tables." msgstr "" #: ../lib/utility.php:777 #, php-format msgid "" "InnoDB will hold as much tables and indexes in system memory as is " "possible.\n" "\t\t\t\tTherefore, you should make the innodb_buffer_pool large enough to " "hold as much\n" "\t\t\t\tof the tables and index in memory. Checking the size of the /var/" "lib/mysql/cacti\n" "\t\t\t\tdirectory will help in determining this value. We are recommending " "25% of your systems\n" "\t\t\t\ttotal memory, but your requirements will vary depending on your " "systems size." msgstr "" #: ../lib/utility.php:786 #, php-format msgid "" "With modern SSD type storage, this operation actually degrades the disk\n" "\t\t\t\tmore rapidly and adds a 50% overhead on all write operations." msgstr "" #: ../lib/utility.php:792 msgid "" "This is where metadata is stored. If you had a lot of tables, it would be " "useful to increase this." msgstr "" #: ../lib/utility.php:797 msgid "" "Rogue queries should not for the database to go offline to others. Kill " "these\n" "\t\t\t\tqueries before they kill your system." msgstr "" #: ../lib/utility.php:807 #, php-format msgid "" "Setting this value to 2 means that you will flush all transactions every\n" "\t\t\t\tsecond rather than at commit. This allows %s to perform writing " "less often." msgstr "" #: ../lib/utility.php:813 msgid "" "With modern SSD type storage, having multiple io threads is advantageous " "for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:822 #, php-format msgid "" "As of %s %s, the you can control how often %s flushes transactions to disk. " "The default is 1 second, but in high I/O systems setting to a value greater " "than 1 can allow disk I/O to be more sequential" msgstr "" #: ../lib/utility.php:827 msgid "" "With modern SSD type storage, having multiple read io threads is " "advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:833 msgid "" "With modern SSD type storage, having multiple write io threads is " "advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:839 #, php-format msgid "" "%s will divide the innodb_buffer_pool into memory regions to improve " "performance.\n" "\t\t\t\t\tThe max value is 64. When your innodb_buffer_pool is less than " "1GB, you should use the pool size\n" "\t\t\t\t\tdivided by 128MB. Continue to use this equation upto the max of " "64." msgstr "" #: ../lib/utility.php:846 #, php-format msgid "%s Tuning" msgstr "" #: ../lib/utility.php:846 msgid "Documentation" msgstr "" #: ../lib/utility.php:846 msgid "Note: Many changes below require a database restart" msgstr "" #: ../lib/vdef.php:75 msgid "A useful name for this VDEF." msgstr "" #: ../links.php:191 msgid "Click 'Continue' to Enable the following Page(s)." msgstr "" #: ../links.php:196 msgid "Enable Page(s)" msgstr "" #: ../links.php:200 msgid "Click 'Continue' to Disable the following Page(s)." msgstr "" #: ../links.php:205 msgid "Disable Page(s)" msgstr "" #: ../links.php:209 msgid "Click 'Continue' to Delete the following Page(s)." msgstr "" #: ../links.php:214 msgid "Delete Page(s)" msgstr "" #: ../links.php:217 msgid "You must select at least one page." msgstr "" #: ../links.php:315 msgid "Links" msgstr "" #: ../links.php:328 msgid "Apply Filter" msgstr "" #: ../links.php:331 msgid "Reset filters" msgstr "" #: ../links.php:345 ../links.php:508 ../user_admin.php:1654 #: ../user_group_admin.php:1375 msgid "Top Tab" msgstr "" #: ../links.php:346 ../user_admin.php:1655 ../user_group_admin.php:1376 msgid "Bottom Console" msgstr "" #: ../links.php:347 ../user_admin.php:1656 ../user_group_admin.php:1377 msgid "Top Console" msgstr "" #: ../links.php:378 msgid "Page" msgstr "" #: ../links.php:380 ../links.php:500 ../links.php:505 msgid "Style" msgstr "" #: ../links.php:392 msgid "Edit Page" msgstr "" #: ../links.php:395 msgid "View Page" msgstr "" #: ../links.php:419 msgid "Sort for Ordering" msgstr "" #: ../links.php:428 msgid "No Pages Found" msgstr "" #: ../links.php:509 msgid "Console Menu" msgstr "" #: ../links.php:510 msgid "Bottom of Console Page" msgstr "" #: ../links.php:511 msgid "Top of Console Page" msgstr "" #: ../links.php:513 msgid "Where should this page appear?" msgstr "" #: ../links.php:517 msgid "Console Menu Section" msgstr "" #: ../links.php:520 msgid "" "Under which Console heading should this item appear? (All External Link " "menus will appear between Configuration and Utilities)" msgstr "" #: ../links.php:524 msgid "New Console Section" msgstr "" #: ../links.php:527 msgid "If you don't like any of the choices above, type a new title in here." msgstr "" #: ../links.php:531 msgid "Tab/Menu Name" msgstr "" #: ../links.php:534 msgid "The text that will appear in the tab or menu." msgstr "" #: ../links.php:538 msgid "Content File/URL" msgstr "" #: ../links.php:542 msgid "Web URL Below" msgstr "" #: ../links.php:543 msgid "" "The file that contains the content for this page. This file needs to be in " "the Cacti 'include/content/' directory." msgstr "" #: ../links.php:547 msgid "Web URL Location" msgstr "" #: ../links.php:549 msgid "" "The valid URL to use for this external link. Must include the type, for " "example http://www.cacti.net. Note that many websites do not allow them to " "be embedded in an iframe from a foreign site, and therefore External Linking " "may not work." msgstr "" #: ../links.php:567 #, php-format msgid "External Links [edit: %s]" msgstr "" #: ../links.php:569 msgid "External Links [new]" msgstr "" #: ../logout.php:70 ../logout.php:119 msgid "Automatic Logout" msgstr "" #: ../logout.php:72 ../logout.php:121 msgid "You have been logged out of Cacti due to a session timeout." msgstr "" #: ../logout.php:73 ../logout.php:122 #, php-format msgid "Please close your browser or %sLogin Again%s" msgstr "" #: ../managers.php:40 ../managers.php:226 msgid "Notifications" msgstr "" #: ../managers.php:41 ../managers.php:227 msgid "Logs" msgstr "" #: ../managers.php:141 ../utilities.php:1821 msgid "SNMP Notification Receivers" msgstr "" #: ../managers.php:156 ../managers.php:231 ../managers.php:539 #: ../managers.php:793 msgid "Receivers" msgstr "" #: ../managers.php:223 msgid "Id" msgstr "" #: ../managers.php:257 msgid "No SNMP Notification Receivers" msgstr "" #: ../managers.php:288 #, php-format msgid "SNMP Notification Receiver [edit: %s]" msgstr "" #: ../managers.php:290 msgid "SNMP Notification Receiver [new]" msgstr "" #: ../managers.php:518 ../managers.php:607 ../utilities.php:2263 #: ../utilities.php:2338 msgid "MIB" msgstr "" #: ../managers.php:607 msgid "Kind" msgstr "" #: ../managers.php:607 ../utilities.php:2338 msgid "Max-Access" msgstr "" #: ../managers.php:607 msgid "Monitored" msgstr "" #: ../managers.php:607 ../utilities.php:1409 ../utilities.php:2338 msgid "OID" msgstr "" #: ../managers.php:634 msgid "No SNMP Notifications" msgstr "" #: ../managers.php:730 ../utilities.php:2516 msgid "Severity" msgstr "" #: ../managers.php:749 ../utilities.php:2559 msgid "Purge Notification Log" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Notification" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Time" msgstr "ВремÑ" #: ../managers.php:797 ../utilities.php:2613 msgid "Varbinds" msgstr "" #: ../managers.php:803 msgid "Severity Level" msgstr "" #: ../managers.php:821 ../utilities.php:2635 msgid "No SNMP Notification Log Entries" msgstr "" #: ../managers.php:998 msgid "Click 'Continue' to delete the following Notification Receiver" msgid_plural "Click 'Continue' to delete following Notification Receiver" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../managers.php:1000 msgid "Click 'Continue' to enable the following Notification Receiver" msgid_plural "Click 'Continue' to enable following Notification Receiver" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../managers.php:1002 msgid "Click 'Continue' to disable the following Notification Receiver" msgid_plural "Click 'Continue' to disable following Notification Receiver" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../managers.php:1059 msgid "" "Click 'Continue' to forward the following Notification Objects to this " "Notification Receiver." msgstr "" #: ../managers.php:1060 msgid "" "Click 'Continue' to disable forwarding the following Notification Objects to " "this Notification Receiver." msgstr "" #: ../managers.php:1069 msgid "Disable Notification Objects" msgstr "" #: ../managers.php:1071 msgid "You must select at least one notification object." msgstr "" #: ../plugins.php:28 msgid "Install" msgstr "" #: ../plugins.php:31 msgid "Uninstall" msgstr "" #: ../plugins.php:36 msgid "Not Compatible" msgstr "" #: ../plugins.php:37 ../plugins.php:291 ../utilities.php:417 msgid "Not Installed" msgstr "Ðе УÑтановленно" #: ../plugins.php:39 msgid "Awaiting Configuration" msgstr "" #: ../plugins.php:40 msgid "Awaiting Upgrade" msgstr "" #: ../plugins.php:167 msgid "Not Stated" msgstr "" #: ../plugins.php:289 msgid "Active/Installed" msgstr "" #: ../plugins.php:290 msgid "Configuration Issues" msgstr "" #: ../plugins.php:295 ../plugins.php:365 msgid "Plugins" msgstr "" #: ../plugins.php:374 msgid "" "Actions available include 'Install', 'Activate', 'Disable', 'Enable', " "'Uninstall'." msgstr "" #: ../plugins.php:375 msgid "Plugin Name" msgstr "" #: ../plugins.php:375 msgid "" "The name for this Plugin. The name is controlled by the directory it " "resides in." msgstr "" #: ../plugins.php:376 msgid "A description that the Plugins author has given to the Plugin." msgstr "" #: ../plugins.php:376 msgid "Plugin Description" msgstr "" #: ../plugins.php:377 msgid "The status of this Plugin." msgstr "" #: ../plugins.php:378 msgid "The author of this Plugin." msgstr "" #: ../plugins.php:379 msgid "The version of this Plugin." msgstr "" #: ../plugins.php:380 msgid "Load Order" msgstr "" #: ../plugins.php:380 msgid "" "The load order of the Plugin. You can change the load order by first " "sorting by it, then moving a Plugin either up or down." msgstr "" #: ../plugins.php:406 msgid "No Plugins Found" msgstr "" #: ../plugins.php:424 msgid "ERROR: Directory Missing" msgstr "" #: ../plugins.php:434 msgid "Order Before Previous Plugin" msgstr "" #: ../plugins.php:439 msgid "Order After Next Plugin" msgstr "" #: ../plugins.php:463 msgid "Install Plugin" msgstr "" #: ../plugins.php:467 ../plugins.php:471 ../plugins.php:474 msgid "Uninstall Plugin" msgstr "" #: ../plugins.php:468 msgid "Disable Plugin" msgstr "" #: ../plugins.php:475 msgid "Enable Plugin" msgstr "" #: ../plugins.php:478 msgid "Plugin is not compatible" msgstr "" #: ../pollers.php:32 msgid "Full Sync" msgstr "" #: ../pollers.php:36 msgid "New/Idle" msgstr "" #: ../pollers.php:39 msgid "Unknown/Down" msgstr "" #: ../pollers.php:48 msgid "Data Collector Information" msgstr "" #: ../pollers.php:53 msgid "The primary name for this Data Collector." msgstr "" #: ../pollers.php:56 msgid "New Data Collector" msgstr "" #: ../pollers.php:61 msgid "Web Site Hostname" msgstr "" #: ../pollers.php:62 msgid "" "The hostname for Data Collector. It may have to be a Fully Qualified Domain " "name for the remote Pollers to contact it for activities such as re-" "indexing, Real-time graphing, etc." msgstr "" #: ../pollers.php:71 msgid "Notes for this Data Collectors Database." msgstr "" #: ../pollers.php:78 msgid "Remote Database Connection" msgstr "" #: ../pollers.php:83 msgid "The hostname for the remote database server." msgstr "" #: ../pollers.php:91 msgid "Remote Database Name" msgstr "" #: ../pollers.php:92 msgid "The name of the remote database." msgstr "" #: ../pollers.php:100 msgid "Remote Database User" msgstr "" #: ../pollers.php:101 msgid "The user name to use to connect to the remote database." msgstr "" #: ../pollers.php:109 msgid "Remote Database Password" msgstr "" #: ../pollers.php:110 msgid "The user password to use to connect to the remote database." msgstr "" #: ../pollers.php:118 msgid "Remote Database Port" msgstr "" #: ../pollers.php:119 msgid "The TCP port to use to connect to the remote database." msgstr "" #: ../pollers.php:127 msgid "Remote Database SSL" msgstr "" #: ../pollers.php:128 msgid "If the remote database uses SSL to connect, check the checkbox below." msgstr "" #: ../pollers.php:283 msgid "" "Click 'Continue' to delete the following Data Collector. Note, all devices " "will be disassociated from this Data Collector and mapped back to the Main " "Cacti Data Collector." msgid_plural "" "Click 'Continue' to delete all following Data Collectors. Note, all devices " "will be disassociated from these Data Collectors and mapped back to the Main " "Cacti Data Collector." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../pollers.php:288 #, fuzzy msgid "Delete Data Collector" msgid_plural "Delete Data Collectors" msgstr[0] "Коллекции Данных" msgstr[1] "Коллекции Данных" msgstr[2] "" #: ../pollers.php:292 msgid "Click 'Continue' to disable the following Data Collector." msgid_plural "Click 'Continue' to disable the following Data Collectors." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../pollers.php:297 #, fuzzy msgid "Disable Data Collector" msgid_plural "Disable Data Collectors" msgstr[0] "Коллекции Данных" msgstr[1] "Коллекции Данных" msgstr[2] "" #: ../pollers.php:301 msgid "Click 'Continue' to enable the following Data Collector." msgid_plural "Click 'Continue' to enable the following Data Collectors." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../pollers.php:306 ../pollers.php:315 #, fuzzy msgid "Enable Data Collector" msgid_plural "Enable Data Collectors" msgstr[0] "Коллекции Данных" msgstr[1] "Коллекции Данных" msgstr[2] "" #: ../pollers.php:310 msgid "" "Click 'Continue' to Synchronize the Remote Data Collector for Offline " "Operation." msgid_plural "" "Click 'Continue' to Synchronize the Remote Data Collectors for Offline " "Operation." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../pollers.php:318 ../sites.php:283 msgid "You must select at least one Site." msgstr "" #: ../pollers.php:351 ../sites.php:316 #, php-format msgid "Site [edit: %s]" msgstr "" #: ../pollers.php:353 ../sites.php:318 msgid "Site [new]" msgstr "" #: ../pollers.php:379 msgid "" "Remote Data Collectors must be able to communicate to the Main Data " "Collector, and vice versa. Use this button to verify that the Main Data " "Collector can communicate to this Remote Data Collector." msgstr "" #: ../pollers.php:387 #, fuzzy msgid "Test Connection" msgstr "Коллекции Данных" #: ../pollers.php:387 #, fuzzy msgid "Test Database Connection" msgstr "Коллекции Данных" #: ../pollers.php:611 msgid "Collector Name" msgstr "" #: ../pollers.php:611 msgid "The Name of this Data Collector." msgstr "" #: ../pollers.php:612 msgid "The unique id associated with this Data Collector." msgstr "" #: ../pollers.php:613 msgid "The Hostname where the Data Collector is running." msgstr "" #: ../pollers.php:614 msgid "The Status of this Data Collector." msgstr "" #: ../pollers.php:615 msgid "Polling Time" msgstr "" #: ../pollers.php:615 msgid "The last data collection time for this Data Collector." msgstr "" #: ../pollers.php:616 msgid "The number of Devices associated with this Data Collector." msgstr "" #: ../pollers.php:617 msgid "SNMP Gets" msgstr "" #: ../pollers.php:617 msgid "The number of SNMP gets associated with this Collector." msgstr "" #: ../pollers.php:618 msgid "Scripts" msgstr "" #: ../pollers.php:618 msgid "The number of script calls associated with this Data Collector." msgstr "" #: ../pollers.php:619 msgid "Servers" msgstr "" #: ../pollers.php:619 msgid "The number of script server calls associated with this Data Collector." msgstr "" #: ../pollers.php:620 msgid "Last Finished" msgstr "" #: ../pollers.php:620 msgid "The last time this Data Collector completed." msgstr "" #: ../pollers.php:621 msgid "Last Update" msgstr "" #: ../pollers.php:621 msgid "The last time this Data Collector checked in with the main Cacti site." msgstr "" #: ../pollers.php:656 msgid "No Data Collectors Found" msgstr "" #: ../rrdcleaner.php:30 ../tree.php:31 #, fuzzy msgctxt "dropdown action" msgid "Delete" msgstr "Удалить" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "amule" #: ../rrdcleaner.php:31 #, fuzzy msgctxt "dropdown action" msgid "Archive" msgstr "Ðрхив" #: ../rrdcleaner.php:347 msgid "RRD File Name" msgstr "" #: ../rrdcleaner.php:348 msgid "DS Name" msgstr "" #: ../rrdcleaner.php:349 msgid "DS ID" msgstr "" #: ../rrdcleaner.php:350 msgid "Template ID" msgstr "" #: ../rrdcleaner.php:352 msgid "Last Modified" msgstr "" #: ../rrdcleaner.php:353 msgid "Size [KB]" msgstr "" #: ../rrdcleaner.php:364 ../rrdcleaner.php:365 msgid "Deleted" msgstr "" #: ../rrdcleaner.php:373 msgid "No unused RRD Files" msgstr "" #: ../rrdcleaner.php:395 msgid "Total Size [MB]:" msgstr "" #: ../rrdcleaner.php:397 msgid "Last Scan:" msgstr "" #: ../rrdcleaner.php:481 msgid "Time Since Update" msgstr "" #: ../rrdcleaner.php:497 msgid "RRDfiles" msgstr "" #: ../rrdcleaner.php:512 ../user_domains.php:642 ../user_group_admin.php:1827 #: ../user_group_admin.php:2182 ../user_group_admin.php:2288 #: ../user_group_admin.php:2375 ../user_group_admin.php:2462 #: ../user_group_admin.php:2549 #, fuzzy msgctxt "filter: use" msgid "Go" msgstr "Выполнить" #: ../rrdcleaner.php:515 ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 ../user_group_admin.php:2465 #, fuzzy msgctxt "filter: reset" msgid "Clear" msgstr "ОчиÑтить" #: ../rrdcleaner.php:518 msgid "Rescan" msgstr "" #: ../rrdcleaner.php:521 msgid "Delete All" msgstr "" #: ../rrdcleaner.php:521 msgid "Delete All Unknown RRDfiles" msgstr "" #: ../rrdcleaner.php:522 msgid "Archive All" msgstr "" #: ../rrdcleaner.php:522 msgid "Archive All Unknown RRDfiles" msgstr "" #: ../settings.php:138 #, php-format msgid "Cacti Settings (%s)" msgstr "" #: ../settings.php:191 msgid "Select Plugin(s)" msgstr "" #: ../settings.php:193 msgid "Plugins Selected" msgstr "" #: ../settings.php:208 msgid "Select File(s)" msgstr "" #: ../settings.php:210 msgid "Files Selected" msgstr "" #: ../settings.php:225 msgid "Select Template(s)" msgstr "" #: ../settings.php:230 msgid "All Templates Selected" msgstr "" #: ../settings.php:281 msgid "Poller Interval must be less than Cron Interval" msgstr "" #: ../settings.php:303 msgid "Test Email Results" msgstr "" #: ../sites.php:35 msgid "Site Information" msgstr "Данные Узла" #: ../sites.php:41 msgid "The primary name for the Site." msgstr "" #: ../sites.php:44 msgid "New Site" msgstr "" #: ../sites.php:49 msgid "Address1" msgstr "ÐдреÑ1" #: ../sites.php:50 msgid "The primary address for the Site." msgstr "" #: ../sites.php:52 msgid "Enter the Site Address" msgstr "" #: ../sites.php:58 msgid "Address2" msgstr "ÐдреÑ2" #: ../sites.php:59 msgid "Additional address information for the Site." msgstr "" #: ../sites.php:61 msgid "Additional Site Address information" msgstr "" #: ../sites.php:67 ../sites.php:484 msgid "City" msgstr "Город" #: ../sites.php:68 msgid "The city or locality for the Site." msgstr "" #: ../sites.php:70 msgid "Enter the City or Locality" msgstr "" #: ../sites.php:76 ../sites.php:485 msgid "State" msgstr "ОблаÑть" #: ../sites.php:77 msgid "The state for the Site." msgstr "" #: ../sites.php:79 msgid "Enter the state" msgstr "" #: ../sites.php:85 msgid "Postal/Zip Code" msgstr "ИндекÑ" #: ../sites.php:86 msgid "The postal or zip code for the Site." msgstr "" #: ../sites.php:88 msgid "Enter the postal code" msgstr "" #: ../sites.php:94 ../sites.php:486 msgid "Country" msgstr "Страна" #: ../sites.php:95 msgid "The country for the Site." msgstr "" #: ../sites.php:97 msgid "Enter the country" msgstr "" #: ../sites.php:103 msgid "TimeZone" msgstr "" #: ../sites.php:104 msgid "The TimeZone for the Site." msgstr "" #: ../sites.php:110 msgid "Latitude" msgstr "" #: ../sites.php:111 msgid "The Latitude for this Site." msgstr "" #: ../sites.php:113 msgid "example 38.889488" msgstr "" #: ../sites.php:119 msgid "Longitude" msgstr "" #: ../sites.php:120 msgid "The Longitude for this Site." msgstr "" #: ../sites.php:122 msgid "example -77.0374678" msgstr "" #: ../sites.php:128 msgid "Site Notes" msgstr "ОпиÑание узла" #: ../sites.php:131 msgid "Additional area use for random notes related to this Site." msgstr "" #: ../sites.php:134 msgid "Enter some useful information about the Site." msgstr "" #: ../sites.php:139 msgid "Alternate Name" msgstr "Другое ИмÑ" #: ../sites.php:140 msgid "Used for cases where a Site has an alternate named used to describe it" msgstr "" #: ../sites.php:142 msgid "If the Site is known by another name enter it here." msgstr "" #: ../sites.php:275 msgid "" "Click 'Continue' to delete the following Site. Note, all devices will be " "disassociated from this site." msgid_plural "" "Click 'Continue' to delete all following Sites. Note, all devices will be " "disassociated from this site." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../sites.php:280 #, fuzzy msgid "Delete Site" msgid_plural "Delete Sites" msgstr[0] "Удалить" msgstr[1] "Удалить" msgstr[2] "" #: ../sites.php:481 msgid "Site Name" msgstr "Ð˜Ð¼Ñ Ð£Ð·Ð»Ð°" #: ../sites.php:481 msgid "The name of this Site." msgstr "" #: ../sites.php:482 msgid "The unique id associated with this Site." msgstr "" #: ../sites.php:483 msgid "The number of Devices associated with this Site." msgstr "" #: ../sites.php:484 msgid "The City associated with this Site." msgstr "" #: ../sites.php:485 msgid "The State associated with this Site." msgstr "" #: ../sites.php:486 msgid "The Country associated with this Site." msgstr "" #: ../sites.php:504 msgid "No Sites Found" msgstr "" #: ../spikekill.php:37 #, php-format msgid "FATAL: Spike Kill method '%s' is Invalid\n" msgstr "" #: ../spikekill.php:81 msgid "FATAL: Spike Kill Not Allowed\n" msgstr "" #: ../templates_export.php:68 msgid "WARNING: Export Errors Encountered. Refresh Browser Window for Details!" msgstr "" #: ../templates_export.php:101 msgid "What would you like to export?" msgstr "" #: ../templates_export.php:130 #, php-format msgid "Available Templates [%s]" msgstr "" #: ../templates_export.php:134 #, php-format msgid "%s to Export" msgstr "" #: ../templates_export.php:135 msgid "Choose the exact item to export to XML." msgstr "" #: ../templates_export.php:144 ../templates_export.php:148 msgid "Include Dependencies" msgstr "" #: ../templates_export.php:145 msgid "" "Some templates rely on other items in Cacti to function properly. It is " "highly recommended that you select this box or the resulting import may fail." msgstr "" #: ../templates_export.php:154 msgid "Output Format" msgstr "" #: ../templates_export.php:155 msgid "Choose the format to output the resulting XML file in." msgstr "" #: ../templates_export.php:159 msgid "Output to the Browser (within Cacti)" msgstr "" #: ../templates_export.php:160 msgid "Output to the Browser (raw XML)" msgstr "" #: ../templates_export.php:161 msgid "Save File Locally" msgstr "" #: ../tree.php:32 msgctxt "dropdown action" msgid "Publish" msgstr "" #: ../tree.php:33 msgctxt "dropdown action" msgid "Un Publish" msgstr "" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "gnome-orca" #: ../tree.php:258 #, fuzzy msgctxt "ordering of tree items" msgid "inherit" msgstr "по наÑледÑтву" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "debian" #: ../tree.php:261 #, fuzzy msgctxt "ordering of tree items" msgid "manual" msgstr "ручной" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "gimp" #: ../tree.php:264 #, fuzzy msgctxt "ordering of tree items" msgid "alpha" msgstr "альфа-канал" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "i18n" #: ../tree.php:267 #, fuzzy msgctxt "ordering of tree items" msgid "natural" msgstr "природный" #: ../tree.php:270 msgctxt "ordering of tree items" msgid "numeric" msgstr "" #: ../tree.php:485 #, fuzzy msgid "Click 'Continue' to delete the following Tree." msgid_plural "Click 'Continue' to delete following Trees." msgstr[0] "Ð’Ñ‹ уверены что хотите удалить Ñтих пользователей?" msgstr[1] "Ð’Ñ‹ уверены что хотите удалить Ñтих пользователей?" msgstr[2] "" #: ../tree.php:490 #, fuzzy msgid "Delete Tree" msgid_plural "Delete Trees" msgstr[0] "Дерево по умолчанию" msgstr[1] "Дерево по умолчанию" msgstr[2] "" #: ../tree.php:494 msgid "Click 'Continue' to publish the following Tree." msgid_plural "Click 'Continue' to publish following Trees." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../tree.php:499 msgid "Publish Tree" msgid_plural "Publish Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../tree.php:503 msgid "Click 'Continue' to un-publish the following Tree." msgid_plural "Click 'Continue' to un-publish following Trees." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../tree.php:508 msgid "Un-publish Tree" msgid_plural "Un-publish Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../tree.php:511 msgid "You must select at least one Tree." msgstr "" #: ../tree.php:554 #, php-format msgid "Trees [edit: %s]" msgstr "" #: ../tree.php:566 msgid "Trees [new]" msgstr "" #: ../tree.php:592 msgid "Edit Tree" msgstr "" #: ../tree.php:592 msgid "" "To Edit this tree, you must first lock it by pressing the Edit Tree button." msgstr "" #: ../tree.php:595 msgid "Add Root Branch" msgstr "" #: ../tree.php:595 msgid "Finish Editing Tree" msgstr "" #: ../tree.php:595 #, php-format msgid "This tree has been locked for Editing on %1$s by %2$s." msgstr "" #: ../tree.php:601 msgid "To edit the tree, you must first unlock it and then lock it as yourself" msgstr "" #: ../tree.php:617 msgid "Tree Items" msgstr "" #: ../tree.php:625 msgid "Available Devices" msgstr "" #: ../tree.php:660 msgid "Available Graphs" msgstr "" #: ../tree.php:1039 #, fuzzy msgid "Rename" msgstr "Ð˜Ð¼Ñ ÐŸÐ¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" #: ../tree.php:1066 #, fuzzy msgid "Branch Sorting" msgstr "СвойÑтва графиков" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "gnome-orca" #: ../tree.php:1073 #, fuzzy msgid "Inherit" msgstr "по наÑледÑтву" #: ../tree.php:1101 msgid "Alphabetic" msgstr "" # Translation for this string generated by http://littlesvr.ca/ostd/ # based on translation from "i18n" #: ../tree.php:1115 #, fuzzy msgid "Natural" msgstr "природный" #: ../tree.php:1152 ../tree.php:1226 ../tree.php:1313 #, fuzzy msgid "Cut" msgstr "Страна" #: ../tree.php:1167 ../tree.php:1241 ../tree.php:1328 ../user_admin.php:29 #: ../user_group_admin.php:31 msgid "Copy" msgstr "Копировать" #: ../tree.php:1185 msgid "Paste" msgstr "" #: ../tree.php:1558 msgid "The name by which this Tree will be referred to as." msgstr "" #: ../tree.php:1558 ../user_admin.php:1521 ../user_group_admin.php:1243 msgid "Tree Name" msgstr "" #: ../tree.php:1559 msgid "" "The internal database ID for this Tree. Useful when performing automation " "or debugging." msgstr "" #: ../tree.php:1560 msgid "Published" msgstr "" #: ../tree.php:1560 msgid "Unpublished Trees cannot be viewed from the Graph tab" msgstr "" #: ../tree.php:1561 msgid "A Tree must be locked in order to be edited." msgstr "" #: ../tree.php:1562 msgid "The original author of this Tree." msgstr "" #: ../tree.php:1563 msgid "" "To change the order of the trees, first sort by this column, press the up or " "down arrows once they appear." msgstr "" #: ../tree.php:1564 msgid "Last Edited" msgstr "" #: ../tree.php:1564 msgid "The date that this Tree was last edited." msgstr "" #: ../tree.php:1565 msgid "Edited By" msgstr "" #: ../tree.php:1565 msgid "The last user to have modified this Tree." msgstr "" #: ../tree.php:1566 msgid "Branches" msgstr "" #: ../tree.php:1566 msgid "The total number of Branches in this Tree." msgstr "" #: ../tree.php:1567 msgid "The total number of individual Devices in this Tree." msgstr "" #: ../tree.php:1568 msgid "The total number of individual Graphs in this Tree." msgstr "" #: ../tree.php:1608 msgid "No Trees Found" msgstr "" #: ../user_admin.php:32 msgid "Batch Copy" msgstr "" #: ../user_admin.php:345 msgid "Click 'Continue' to delete the selected User(s)." msgstr "" #: ../user_admin.php:350 msgid "Delete User(s)" msgstr "" #: ../user_admin.php:360 msgid "Click 'Continue' to copy the selected User to a new User below." msgstr "" #: ../user_admin.php:365 msgid "Template Username:" msgstr "" #: ../user_admin.php:370 msgid "Username:" msgstr "Ð˜Ð¼Ñ ÐŸÐ¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ:" #: ../user_admin.php:377 msgid "Full Name:" msgstr "" #: ../user_admin.php:384 msgid "Realm:" msgstr "" #: ../user_admin.php:390 msgid "Copy User" msgstr "" #: ../user_admin.php:396 msgid "Click 'Continue' to enable the selected User(s)." msgstr "" #: ../user_admin.php:401 msgid "Enable User(s)" msgstr "" #: ../user_admin.php:407 msgid "Click 'Continue' to disable the selected User(s)." msgstr "" #: ../user_admin.php:412 msgid "Disable User(s)" msgstr "" #: ../user_admin.php:420 msgid "" "Click 'Continue' to overwrite the User(s) settings with the selected " "template User settings and permissions. The original users Full Name, " "Password, Realm and Enable status will be retained, all other fields will be " "overwritten from Template User." msgstr "" #: ../user_admin.php:423 msgid "Template User:" msgstr "" #: ../user_admin.php:429 msgid "User(s) to update:" msgstr "" #: ../user_admin.php:434 msgid "Reset User(s) Settings" msgstr "" #: ../user_admin.php:437 msgid "You must select at least one user." msgstr "" #: ../user_admin.php:812 ../user_group_admin.php:728 msgid "Allow" msgstr "" #: ../user_admin.php:813 ../user_group_admin.php:729 msgid "Deny" msgstr "" #: ../user_admin.php:838 msgid "" "Note: System Graph Policy is 'Permissive' meaning the User must have " "access to at least one of Graph, Device, or Graph Template to gain access to " "the Graph" msgstr "" #: ../user_admin.php:840 msgid "" "Note: System Graph Policy is 'Restrictive' meaning the User must have " "access to the Graph, Device, and Graph Template to gain access to the Graph" msgstr "" #: ../user_admin.php:844 ../user_group_admin.php:745 msgid "Default Graph Policy" msgstr "" #: ../user_admin.php:849 msgid "Default Graph Policy for this User" msgstr "" #: ../user_admin.php:1006 ../user_admin.php:1242 ../user_admin.php:1384 #: ../user_admin.php:1521 ../user_group_admin.php:821 #: ../user_group_admin.php:966 ../user_group_admin.php:1109 #: ../user_group_admin.php:1243 msgid "Effective Policy" msgstr "" #: ../user_admin.php:1020 ../user_group_admin.php:847 msgid "No Matching Graphs Found" msgstr "" #: ../user_admin.php:1035 ../user_admin.php:1041 ../user_admin.php:1287 #: ../user_admin.php:1293 ../user_admin.php:1426 ../user_admin.php:1432 #: ../user_admin.php:1562 ../user_admin.php:1568 ../user_group_admin.php:862 #: ../user_group_admin.php:868 ../user_group_admin.php:1010 #: ../user_group_admin.php:1016 ../user_group_admin.php:1151 #: ../user_group_admin.php:1157 ../user_group_admin.php:1283 #: ../user_group_admin.php:1289 msgid "Revoke Access" msgstr "" #: ../user_admin.php:1036 ../user_admin.php:1040 ../user_admin.php:1288 #: ../user_admin.php:1292 ../user_admin.php:1427 ../user_admin.php:1431 #: ../user_admin.php:1563 ../user_admin.php:1567 ../user_group_admin.php:62 #: ../user_group_admin.php:863 ../user_group_admin.php:867 #: ../user_group_admin.php:1011 ../user_group_admin.php:1015 #: ../user_group_admin.php:1152 ../user_group_admin.php:1156 #: ../user_group_admin.php:1284 ../user_group_admin.php:1288 msgid "Grant Access" msgstr "" #: ../user_admin.php:1093 ../user_admin.php:2646 ../user_group_admin.php:1812 #: ../user_group_admin.php:1872 msgid "Groups" msgstr "" #: ../user_admin.php:1101 ../user_admin.php:1110 msgid "Member" msgstr "" #: ../user_admin.php:1101 msgid "Policies (Graph/Device/Template)" msgstr "" #: ../user_admin.php:1110 ../user_group_admin.php:688 msgid "Non Member" msgstr "" #: ../user_admin.php:1112 ../user_admin.php:2299 ../user_admin.php:2300 #: ../user_admin.php:2301 ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 ../user_group_admin.php:1906 msgid "ALLOW" msgstr "" #: ../user_admin.php:1112 ../user_admin.php:2299 ../user_admin.php:2300 #: ../user_admin.php:2301 ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 ../user_group_admin.php:1906 msgid "DENY" msgstr "" #: ../user_admin.php:1118 msgid "No Matching User Groups Found" msgstr "" #: ../user_admin.php:1132 msgid "Assign Membership" msgstr "" #: ../user_admin.php:1133 msgid "Remove Membership" msgstr "" #: ../user_admin.php:1149 ../user_group_admin.php:886 msgid "Default Device Policy" msgstr "" #: ../user_admin.php:1154 msgid "Default Device Policy for this User" msgstr "" #: ../user_admin.php:1253 ../user_admin.php:1261 ../user_admin.php:1395 #: ../user_admin.php:1403 ../user_admin.php:1532 ../user_admin.php:1540 #: ../user_group_admin.php:832 ../user_group_admin.php:840 #: ../user_group_admin.php:977 ../user_group_admin.php:985 #: ../user_group_admin.php:1120 ../user_group_admin.php:1128 #: ../user_group_admin.php:1254 ../user_group_admin.php:1262 msgid "Access Granted" msgstr "" #: ../user_admin.php:1255 ../user_admin.php:1259 ../user_admin.php:1397 #: ../user_admin.php:1401 ../user_admin.php:1534 ../user_admin.php:1538 #: ../user_group_admin.php:834 ../user_group_admin.php:838 #: ../user_group_admin.php:979 ../user_group_admin.php:983 #: ../user_group_admin.php:1122 ../user_group_admin.php:1126 #: ../user_group_admin.php:1256 ../user_group_admin.php:1260 msgid "Access Restricted" msgstr "" #: ../user_admin.php:1272 ../user_group_admin.php:996 msgid "No Matching Devices Found" msgstr "" #: ../user_admin.php:1310 ../user_group_admin.php:1034 msgid "Default Graph Template Policy" msgstr "" #: ../user_admin.php:1315 msgid "Default Graph Template Policy for this User" msgstr "" #: ../user_admin.php:1384 ../user_group_admin.php:1109 msgid "Total Graphs" msgstr "" #: ../user_admin.php:1411 ../user_group_admin.php:1136 msgid "No Matching Graph Templates Found" msgstr "" #: ../user_admin.php:1449 ../user_group_admin.php:1175 msgid "Default Tree Policy" msgstr "" #: ../user_admin.php:1454 msgid "Default Tree Policy for this User" msgstr "" #: ../user_admin.php:1547 ../user_group_admin.php:1269 msgid "No Matching Trees Found" msgstr "" #: ../user_admin.php:1592 ../user_group_admin.php:1315 msgid "User Permissions" msgstr "" #: ../user_admin.php:1659 ../user_group_admin.php:1380 msgid "External Link Permissions" msgstr "" #: ../user_admin.php:1716 ../user_group_admin.php:1437 msgid "Plugin Permissions" msgstr "" #: ../user_admin.php:1772 msgid "Legacy 1.x Plugins" msgstr "" #: ../user_admin.php:1807 ../user_group_admin.php:1528 #, php-format msgid "User Settings %s" msgstr "" #: ../user_admin.php:1922 ../user_group_admin.php:1644 msgid "Permissions" msgstr "" #: ../user_admin.php:1923 msgid "Group Membership" msgstr "" #: ../user_admin.php:1924 ../user_group_admin.php:1645 msgid "Graph Perms" msgstr "" #: ../user_admin.php:1925 ../user_group_admin.php:1646 msgid "Device Perms" msgstr "" #: ../user_admin.php:1926 ../user_group_admin.php:1647 msgid "Template Perms" msgstr "" #: ../user_admin.php:1927 ../user_group_admin.php:1648 msgid "Tree Perms" msgstr "" #: ../user_admin.php:1969 #, php-format msgid "User Management %s" msgstr "" #: ../user_admin.php:2001 msgid "Password Too Short" msgstr "" #: ../user_admin.php:2006 msgid "Password Validation Passes" msgstr "" #: ../user_admin.php:2020 msgid "Passwords do Not Match" msgstr "" #: ../user_admin.php:2023 msgid "Passwords Match" msgstr "" #: ../user_admin.php:2267 ../user_group_admin.php:1884 msgid "Graph Policy" msgstr "" #: ../user_admin.php:2268 ../user_group_admin.php:1885 msgid "Device Policy" msgstr "" #: ../user_admin.php:2269 ../user_group_admin.php:1886 msgid "Template Policy" msgstr "" #: ../user_admin.php:2270 msgid "Last Login" msgstr "ПоÑледний Вход" #: ../user_admin.php:2291 #, fuzzy msgid "Unavailable" msgstr "ДоÑтупноÑть" #: ../user_admin.php:2307 msgid "No Users Found" msgstr "" #: ../user_admin.php:2522 ../user_group_admin.php:2124 #, php-format msgid "Graph Permissions %s" msgstr "" #: ../user_admin.php:2577 ../user_admin.php:2664 msgid "Show All" msgstr "" #: ../user_admin.php:2631 #, php-format msgid "Group Membership %s" msgstr "" #: ../user_admin.php:2719 ../user_group_admin.php:2234 #, php-format msgid "Devices Permission %s" msgstr "" #: ../user_admin.php:2770 ../user_admin.php:2857 ../user_admin.php:2944 #: ../user_group_admin.php:2179 ../user_group_admin.php:2285 #: ../user_group_admin.php:2372 ../user_group_admin.php:2459 msgid "Show Exceptions" msgstr "" #: ../user_admin.php:2824 ../user_group_admin.php:2339 #, php-format msgid "Template Permission %s" msgstr "" #: ../user_admin.php:2911 ../user_admin.php:2998 ../user_group_admin.php:2426 #, php-format msgid "Tree Permission %s" msgstr "" #: ../user_admin.php:3031 msgid "Show Exceptions<" msgstr "" #: ../user_domains.php:222 #, fuzzy msgid "Click 'Continue' to delete the following User Domain." msgid_plural "Click 'Continue' to delete following User Domains." msgstr[0] "Ð’Ñ‹ уверены что хотите удалить Ñтих пользователей?" msgstr[1] "Ð’Ñ‹ уверены что хотите удалить Ñтих пользователей?" msgstr[2] "" #: ../user_domains.php:227 msgid "Delete User Domain" msgid_plural "Delete User Domains" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../user_domains.php:231 #, fuzzy msgid "Click 'Continue' to disable the following User Domain." msgid_plural "Click 'Continue' to disable following User Domains." msgstr[0] "Ð’Ñ‹ уверены что хотите выключить Ñтих пользователей?" msgstr[1] "Ð’Ñ‹ уверены что хотите выключить Ñтих пользователей?" msgstr[2] "" #: ../user_domains.php:236 msgid "Disable User Domain" msgid_plural "Disable User Domains" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../user_domains.php:240 msgid "Click 'Continue' to enable the following User Domain." msgstr "" #: ../user_domains.php:245 msgid "Enabled User Domain" msgid_plural "Enable User Domains" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../user_domains.php:249 msgid "" "Click 'Continue' to make the following the following User Domain the default " "one." msgstr "" #: ../user_domains.php:254 msgid "Make Selected Domain Default" msgstr "" #: ../user_domains.php:257 msgid "You must select at least one User Domain." msgstr "" #: ../user_domains.php:308 #, php-format msgid "User Domain [edit: %s]" msgstr "" #: ../user_domains.php:310 msgid "User Domain [new]" msgstr "" #: ../user_domains.php:318 msgid "" "Enter a meaningful name for this domain. This will be the name that appears " "in the Login Realm during login." msgstr "" #: ../user_domains.php:324 msgid "Domains Type" msgstr "" #: ../user_domains.php:325 msgid "Choose what type of domain this is." msgstr "" #: ../user_domains.php:332 msgid "" "The name of the user that Cacti will use as a template for new user accounts." msgstr "" #: ../user_domains.php:342 msgid "" "If this checkbox is checked, users will be able to login using this domain." msgstr "" #: ../user_domains.php:359 msgid "The dns hostname or ip address of the server." msgstr "" #: ../user_domains.php:367 msgid "TCP/UDP port for Non SSL communications." msgstr "" #: ../user_domains.php:406 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "

    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the users " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the users Distinguished Name (DN)." msgstr "" #: ../user_domains.php:455 msgid "" "Search base for searching the LDAP directory, such as \"dc=win2kdomain," "dc=local\" or \"ou=people,dc=domain,dc=local\"." msgstr "" #: ../user_domains.php:462 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: \"(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))\" or for OpenLDAP: " "\"(&(objectClass=account)(uid=<username>))\". \"<username>\" " "is replaced with the username that was supplied at the login prompt." msgstr "" #: ../user_domains.php:501 msgid "Domain Properties" msgstr "" #: ../user_domains.php:627 msgid "Domains" msgstr "" #: ../user_domains.php:714 msgid "Domain Name" msgstr "" #: ../user_domains.php:715 msgid "Domain Type" msgstr "" #: ../user_domains.php:717 msgid "Effective User" msgstr "" #: ../user_domains.php:730 msgid "None Selected" msgstr "" #: ../user_domains.php:736 msgid "No User Domains Found" msgstr "" #: ../user_group_admin.php:39 ../user_group_admin.php:58 msgid "Defer to the Users Setting" msgstr "" #: ../user_group_admin.php:43 msgid "Show the Page that the User pointed their browser to" msgstr "" #: ../user_group_admin.php:47 msgid "Show the Console" msgstr "" #: ../user_group_admin.php:51 msgid "Show the default Graph Screen" msgstr "" #: ../user_group_admin.php:66 msgid "Restrict Access" msgstr "" #: ../user_group_admin.php:73 ../user_group_admin.php:1881 msgid "Group Name" msgstr "" #: ../user_group_admin.php:74 msgid "The name of this Group." msgstr "" #: ../user_group_admin.php:80 msgid "Group Description" msgstr "" #: ../user_group_admin.php:81 msgid "" "A more descriptive name for this group, that can include spaces or special " "characters." msgstr "" #: ../user_group_admin.php:93 msgid "General Group Options" msgstr "" #: ../user_group_admin.php:95 msgid "Set any user account-specific options here." msgstr "" #: ../user_group_admin.php:99 msgid "Allow Users of this Group to keep custom User Settings" msgstr "" #: ../user_group_admin.php:106 msgid "Tree Rights" msgstr "" #: ../user_group_admin.php:108 msgid "Should Users of this Group have access to the Tree?" msgstr "" #: ../user_group_admin.php:114 msgid "Graph List Rights" msgstr "" #: ../user_group_admin.php:116 msgid "Should Users of this Group have access to the Graph List?" msgstr "" #: ../user_group_admin.php:122 msgid "Graph Preview Rights" msgstr "" #: ../user_group_admin.php:124 msgid "Should Users of this Group have access to the Graph Preview?" msgstr "" #: ../user_group_admin.php:133 msgid "What to do when a User from this User Group logs in." msgstr "" #: ../user_group_admin.php:441 #, fuzzy msgid "Click 'Continue' to delete the following User Group" msgid_plural "Click 'Continue' to delete following User Groups" msgstr[0] "Ð’Ñ‹ уверены что хотите удалить Ñтих пользователей?" msgstr[1] "Ð’Ñ‹ уверены что хотите удалить Ñтих пользователей?" msgstr[2] "" #: ../user_group_admin.php:446 #, fuzzy msgid "Delete User Group" msgid_plural "Delete User Groups" msgstr[0] "Удалить график(и)" msgstr[1] "Удалить график(и)" msgstr[2] "" #: ../user_group_admin.php:454 msgid "Click 'Continue' to Copy the following User Group to a new User Group." msgid_plural "" "Click 'Continue' to Copy following User Groups to new User Groups." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../user_group_admin.php:460 msgid "Group Prefix:" msgstr "" #: ../user_group_admin.php:461 #, fuzzy msgid "New Group" msgstr "Ðовый график" #: ../user_group_admin.php:465 msgid "Copy User Group" msgid_plural "Copy User Groups" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../user_group_admin.php:471 #, fuzzy msgid "Click 'Continue' to enable the following User Group." msgid_plural "Click 'Continue' to enable following User Groups." msgstr[0] "Ð’Ñ‹ уверены что хотите включить Ñтих пользователей?" msgstr[1] "Ð’Ñ‹ уверены что хотите включить Ñтих пользователей?" msgstr[2] "" #: ../user_group_admin.php:476 msgid "Enable User Group" msgid_plural "Enable User Groups" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../user_group_admin.php:482 #, fuzzy msgid "Click 'Continue' to disable the following User Group." msgid_plural "Click 'Continue' to disable following User Groups." msgstr[0] "Ð’Ñ‹ уверены что хотите выключить Ñтих пользователей?" msgstr[1] "Ð’Ñ‹ уверены что хотите выключить Ñтих пользователей?" msgstr[2] "" #: ../user_group_admin.php:487 msgid "Disable User Group" msgid_plural "Disable User Groups" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../user_group_admin.php:490 msgid "You must select at least one Group." msgstr "" #: ../user_group_admin.php:675 msgid "Login Name" msgstr "" #: ../user_group_admin.php:675 msgid "Membership" msgstr "" #: ../user_group_admin.php:686 msgid "Group Member" msgstr "" #: ../user_group_admin.php:696 msgid "No Matching Group Members Found" msgstr "" #: ../user_group_admin.php:710 msgid "Add to Group" msgstr "" #: ../user_group_admin.php:711 msgid "Remove from Group" msgstr "" #: ../user_group_admin.php:750 ../user_group_admin.php:891 msgid "Default Graph policy for this User Group" msgstr "" #: ../user_group_admin.php:755 ../user_group_admin.php:896 #: ../user_group_admin.php:1044 ../user_group_admin.php:1185 msgid "Update" msgstr "" #: ../user_group_admin.php:1039 msgid "Default Graph Template policy for this User Group" msgstr "" #: ../user_group_admin.php:1180 msgid "Default Tree policy for this User Group" msgstr "" #: ../user_group_admin.php:1643 ../user_group_admin.php:1882 msgid "Members" msgstr "" #: ../user_group_admin.php:1655 #, php-format msgid "User Group Management [edit: %s]" msgstr "" #: ../user_group_admin.php:1657 msgid "User Group Management [new]" msgstr "" #: ../user_group_admin.php:1791 msgid "User Group Management" msgstr "" #: ../user_group_admin.php:1912 msgid "No User Groups Found" msgstr "" #: ../user_group_admin.php:2513 #, php-format msgid "User Membership %s" msgstr "" #: ../user_group_admin.php:2546 msgid "Show Members" msgstr "" #: ../user_group_admin.php:2552 #, fuzzy msgctxt "filter reset" msgid "Clear" msgstr "ОчиÑтить" #: ../utilities.php:164 msgid "" "NET-SNMP Not Installed or its paths are not set. Please install if you wish " "to monitor SNMP enabled devices." msgstr "" #: ../utilities.php:170 msgid "Configuration Settings" msgstr "ÐаÑтройки" #: ../utilities.php:170 #, php-format msgid "" "ERROR: Installed RRDtool version does not match configured version." "
    Please visit the %s and select the correct RRDtool Utility Version." msgstr "" #: ../utilities.php:174 #, php-format msgid "" "ERROR: RRDtool 1.2.x+ does not support the GIF images format, but %d\" " "graph(s) and/or templates have GIF set as the image format." msgstr "" #: ../utilities.php:194 msgid "Database" msgstr "База Данных" #: ../utilities.php:195 msgid "PHP Info" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ð¾ PHP" #: ../utilities.php:202 #, php-format msgid "Technical Support [%s]" msgstr "" #: ../utilities.php:229 msgid "General Information" msgstr "ОÑÐ½Ð¾Ð²Ð½Ð°Ñ Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ" #: ../utilities.php:231 ../utilities.php:766 msgid "Date" msgstr "Дата" #: ../utilities.php:238 msgid "Cacti Version" msgstr "ВерÑÐ¸Ñ Cacti" #: ../utilities.php:243 msgid "Cacti OS" msgstr "ОС" #: ../utilities.php:253 msgid "NET-SNMP Version" msgstr "" #: ../utilities.php:281 ../utilities.php:314 #, fuzzy, php-format msgid "Total: %s" msgstr "Итого:" #: ../utilities.php:288 msgid "Poller Information" msgstr "" #: ../utilities.php:311 #, php-format msgid "Action[%s]" msgstr "" #: ../utilities.php:316 msgid "No items to poll" msgstr "" #: ../utilities.php:322 msgid "Concurrent Processes" msgstr "КоличеÑтво Конкурирующих процеÑÑов" #: ../utilities.php:327 msgid "Max Threads" msgstr "" #: ../utilities.php:332 msgid "PHP Servers" msgstr "" #: ../utilities.php:337 msgid "Script Timeout" msgstr "" #: ../utilities.php:342 msgid "Max OID" msgstr "" #: ../utilities.php:347 msgid "Last Run Statistics" msgstr "" #: ../utilities.php:355 msgid "System Memory" msgstr "" #: ../utilities.php:384 msgid "PHP Information" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ PHP" #: ../utilities.php:391 msgid "" "PHP Version 5.5.0+ is recommended due to strong password hashing support." msgstr "" #: ../utilities.php:396 msgid "PHP OS" msgstr "ОС PHP" #: ../utilities.php:401 msgid "PHP uname" msgstr "" #: ../utilities.php:412 msgid "PHP SNMP" msgstr "" #: ../utilities.php:447 msgid "You've set memory limit to 'unlimited'." msgstr "" #: ../utilities.php:449 #, php-format msgid "" "It is highly suggested that you alter you php.ini memory_limit to %s or " "higher." msgstr "" #: ../utilities.php:450 msgid "" "This suggested memory value is calculated based on the number of data source " "present and is only to be used as a suggestion, actual values may vary " "system to system based on requirements." msgstr "" #: ../utilities.php:458 msgid "MySQL Table Information - Sizes in KBytes" msgstr "" #: ../utilities.php:467 msgid "Engine" msgstr "" #: ../utilities.php:469 msgid "Avg Row Length" msgstr "" #: ../utilities.php:470 msgid "Data Length" msgstr "" #: ../utilities.php:471 msgid "Index Length" msgstr "" #: ../utilities.php:472 msgid "Collation" msgstr "" #: ../utilities.php:473 msgid "Comment" msgstr "Комментарий" #: ../utilities.php:491 msgid "Unable to retrieve table status" msgstr "" #: ../utilities.php:497 msgid "PHP Module Information" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ модуле PHP" #: ../utilities.php:623 msgid "User Login History" msgstr "" #: ../utilities.php:632 ../utilities.php:763 msgid "User" msgstr "Пользователь" #: ../utilities.php:637 msgid "Deleted/Invalid" msgstr "" #: ../utilities.php:650 ../utilities.php:767 msgid "Result" msgstr "" #: ../utilities.php:655 msgid "Success - Pswd" msgstr "" #: ../utilities.php:656 msgid "Success - Token" msgstr "" #: ../utilities.php:657 msgid "Failed" msgstr "Ошибка" #: ../utilities.php:661 msgid "Attempts" msgstr "" #: ../utilities.php:676 ../utilities.php:1009 ../utilities.php:1337 #: ../utilities.php:1584 ../utilities.php:2293 ../utilities.php:2557 #: ../vdef.php:686 #, fuzzy msgctxt "Button: use filter settings" msgid "Go" msgstr "Выполнить" #: ../utilities.php:679 ../utilities.php:1012 ../utilities.php:1340 #: ../utilities.php:1587 ../utilities.php:2296 ../utilities.php:2558 #: ../vdef.php:689 #, fuzzy msgctxt "Button: reset filter settings" msgid "Clear" msgstr "ОчиÑтить" #: ../utilities.php:682 ../utilities.php:1015 ../utilities.php:2559 msgctxt "Button: delete all table entries" msgid "Purge" msgstr "" #: ../utilities.php:682 msgid "Purge User Log" msgstr "" #: ../utilities.php:756 msgid "User Logins" msgstr "" #: ../utilities.php:768 msgid "IP Address" msgstr "" #: ../utilities.php:784 msgid "(User Removed)" msgstr "" #: ../utilities.php:1015 msgid "Purge Log" msgstr "" #: ../utilities.php:1072 #, php-format msgid "Log [Total Lines: %d - Non-Matching Items Hidden]" msgstr "" #: ../utilities.php:1074 #, php-format msgid "Log [Total Lines: %d - All Items Shown]" msgstr "" #: ../utilities.php:1173 #, php-format msgid "%s - WEBUI: Cacti Log Cleared from Web Management Interface." msgstr "" #: ../utilities.php:1175 msgid "Cacti Log Cleared" msgstr "" #: ../utilities.php:1177 msgid "Error: Unable to clear log, no write permissions." msgstr "" #: ../utilities.php:1180 msgid "Error: Unable to clear log, file does not exist." msgstr "" #: ../utilities.php:1273 msgid "Data Query Cache Items" msgstr "" #: ../utilities.php:1289 msgid "Query Name" msgstr "" #: ../utilities.php:1409 msgid "Field Value" msgstr "" #: ../utilities.php:1409 msgid "Index" msgstr "" #: ../utilities.php:1545 msgid "Poller Cache Items" msgstr "" #: ../utilities.php:1606 msgid "Script" msgstr "Скрипт" #: ../utilities.php:1722 ../utilities.php:1727 msgid "SNMP Version:" msgstr "ВерÑÐ¸Ñ SNMP:" #: ../utilities.php:1723 msgid "Community:" msgstr "" #: ../utilities.php:1724 ../utilities.php:1728 msgid "OID:" msgstr "" #: ../utilities.php:1728 msgid "User:" msgstr "Пользователь:" #: ../utilities.php:1731 msgid "Script:" msgstr "Скрипт:" #: ../utilities.php:1733 msgid "Script Server:" msgstr "" #: ../utilities.php:1746 msgid "RRD:" msgstr "" #: ../utilities.php:1765 #, fuzzy msgid "Tecnical Support" msgstr "ТехничеÑÐºÐ°Ñ ÐŸÐ¾Ð´Ð´ÐµÑ€Ð¶ÐºÐ°" #: ../utilities.php:1767 msgid "" "Cacti technical support page. Used by developers and technical support " "persons to assist with issues in Cacti. Includes checks for common " "configuration issues." msgstr "" #: ../utilities.php:1769 msgid "Log Administration" msgstr "" #: ../utilities.php:1771 msgid "" "The Cacti Log stores statistic, error and other message depending on system " "settings. This information can be used to identify problems with the poller " "and application." msgstr "" #: ../utilities.php:1775 msgid "" "Allows Administrators to browse the user log. Administrators can filter and " "export the log as well." msgstr "" #: ../utilities.php:1779 msgid "Poller Cache Administration" msgstr "" #: ../utilities.php:1782 msgid "" "This is the data that is being passed to the poller each time it runs. This " "data is then in turn executed/interpreted and the results are fed into the " "RRDfiles for graphing or the database for display." msgstr "" #: ../utilities.php:1786 msgid "" "The Data Query Cache stores information gathered from Data Query input " "types. The values from these fields can be used in the text area of Graphs " "for Legends, Vertical Labels, and GPRINTS as well as in CDEF's." msgstr "" #: ../utilities.php:1788 msgid "Rebuild Poller Cache" msgstr "" #: ../utilities.php:1790 msgid "" "The poller cache will be cleared and re-generated if you select this option. " "Sometimes host/data source data can get out of sync with the cache in which " "case it makes sense to clear the cache and start over." msgstr "" #: ../utilities.php:1794 msgid "Boost Utilities" msgstr "" #: ../utilities.php:1795 msgid "View Boost Status" msgstr "" #: ../utilities.php:1797 msgid "" "This menu pick allows you to view various boost settings and statistics " "associated with the current running Boost configuration." msgstr "" #: ../utilities.php:1801 msgid "RRD Utilities" msgstr "" #: ../utilities.php:1802 msgid "RRDfile Cleaner" msgstr "" #: ../utilities.php:1804 msgid "" "When you delete Data Sources from Cacti, the corresponding RRDfiles are not " "removed automatically. Use this utility to facilitate the removal of these " "old files." msgstr "" #: ../utilities.php:1808 msgid "SNMPAgent Utilities" msgstr "" #: ../utilities.php:1809 msgid "View SNMPAgent Cache" msgstr "" #: ../utilities.php:1811 msgid "This shows all objects being handled by the SNMPAgent." msgstr "" #: ../utilities.php:1813 msgid "Rebuild SNMPAgent Cache" msgstr "" #: ../utilities.php:1815 msgid "" "The SNMP cache will be cleared and re-generated if you select this option. " "Note that it takes another poller run to restore the SNMP cache completely." msgstr "" #: ../utilities.php:1817 msgid "View SNMPAgent Notification Log" msgstr "" #: ../utilities.php:1819 msgid "" "This menu pick allows you to view the latest events SNMPAgent has handled in " "relation to the registered notification receivers." msgstr "" #: ../utilities.php:1823 msgid "Allows Administrators to maintain SNMP notification receivers." msgstr "" #: ../utilities.php:1829 msgid "Cacti System Utilities" msgstr "Утилиты Cacti" #: ../utilities.php:1953 msgid "Overrun Warning" msgstr "" #: ../utilities.php:1954 msgid "Timed Out" msgstr "" #: ../utilities.php:1955 msgid "Other" msgstr "" #: ../utilities.php:1957 msgid "Never Run" msgstr "" #: ../utilities.php:2010 msgid "Cannot open directory" msgstr "" #: ../utilities.php:2014 msgid "Directory Does NOT Exist!!" msgstr "" #: ../utilities.php:2021 msgid "Current Boost Status" msgstr "" #: ../utilities.php:2024 msgid "Boost On-demand Updating:" msgstr "" #: ../utilities.php:2027 msgid "Total Data Sources:" msgstr "" #: ../utilities.php:2031 msgid "Pending Boost Records:" msgstr "" #: ../utilities.php:2034 msgid "Archived Boost Records:" msgstr "" #: ../utilities.php:2037 msgid "Total Boost Records:" msgstr "" #: ../utilities.php:2041 msgid "Boost Storage Statistics" msgstr "" #: ../utilities.php:2045 msgid "Database Engine:" msgstr "" #: ../utilities.php:2049 msgid "Current Boost Table(s) Size:" msgstr "" #: ../utilities.php:2053 msgid "Avg Bytes/Record:" msgstr "" #: ../utilities.php:2081 #, php-format msgid "%d Bytes" msgstr "" #: ../utilities.php:2081 msgid "Max Record Length:" msgstr "" #: ../utilities.php:2087 ../utilities.php:2088 msgid "Unlimited" msgstr "" #: ../utilities.php:2093 msgid "Max Allowed Boost Table Size:" msgstr "" #: ../utilities.php:2097 msgid "Estimated Maximum Records:" msgstr "" #: ../utilities.php:2100 msgid "Runtime Statistics" msgstr "" #: ../utilities.php:2103 msgid "Last Start Time:" msgstr "" #: ../utilities.php:2106 msgid "Last Run Duration:" msgstr "" #: ../utilities.php:2107 #, php-format msgid "%d minutes" msgstr "" #: ../utilities.php:2107 #, php-format msgid "%d seconds" msgstr "" #: ../utilities.php:2108 #, php-format msgid "%0.2f percent of update frequency)" msgstr "" #: ../utilities.php:2112 msgid "RRD Updates:" msgstr "" #: ../utilities.php:2115 ../utilities.php:2121 msgid "MBytes" msgstr "" #: ../utilities.php:2115 msgid "Peak Poller Memory:" msgstr "" #: ../utilities.php:2118 msgid "Detailed Runtime Timers:" msgstr "" #: ../utilities.php:2121 msgid "Max Poller Memory Allowed:" msgstr "" #: ../utilities.php:2124 msgid "Run Time Configuration" msgstr "" #: ../utilities.php:2127 msgid "Update Frequency:" msgstr "" #: ../utilities.php:2130 msgid "Next Start Time:" msgstr "" #: ../utilities.php:2133 msgid "Maximum Records:" msgstr "" #: ../utilities.php:2133 msgid "Records" msgstr "" #: ../utilities.php:2136 msgid "Maximum Allowed Runtime:" msgstr "" #: ../utilities.php:2142 msgid "Image Caching Status:" msgstr "" #: ../utilities.php:2145 msgid "Cache Directory:" msgstr "" #: ../utilities.php:2148 msgid "Cached Files:" msgstr "" #: ../utilities.php:2151 msgid "Cached Files Size:" msgstr "" #: ../utilities.php:2248 msgid "SNMPAgent Cache" msgstr "" #: ../utilities.php:2278 msgid "OIDs" msgstr "" #: ../utilities.php:2358 msgid "Column Data" msgstr "" #: ../utilities.php:2358 msgid "Scalar" msgstr "" #: ../utilities.php:2501 msgid "SNMPAgent Notification Log" msgstr "" #: ../utilities.php:2529 ../utilities.php:2613 msgid "Receiver" msgstr "" #: ../utilities.php:2605 msgid "Log Entries" msgstr "" #: ../utilities.php:2620 #, php-format msgid "Severity Level: %s" msgstr "" #: ../vdef.php:265 #, fuzzy msgid "Click 'Continue' to delete the following VDEF." msgid_plural "Click 'Continue' to delete following VDEFs." msgstr[0] "Ð’Ñ‹ уверены что хотите удалить Ñледующие VDEF" msgstr[1] "Ð’Ñ‹ уверены что хотите удалить Ñледующие VDEF" msgstr[2] "" #: ../vdef.php:270 #, fuzzy msgid "Delete VDEF" msgid_plural "Delete VDEFs" msgstr[0] "Удалить" msgstr[1] "Удалить" msgstr[2] "" #: ../vdef.php:274 msgid "" "Click 'Continue' to duplicate the following VDEF. You can optionally change " "the title format for the new VDEF." msgid_plural "" "Click 'Continue' to duplicate following VDEFs. You can optionally change the " "title format for the new VDEFs." msgstr[0] "" msgstr[1] "" msgstr[2] "" #: ../vdef.php:280 #, fuzzy msgid "Duplicate VDEF" msgid_plural "Duplicate VDEFs" msgstr[0] "Дублировать" msgstr[1] "Дублировать" msgstr[2] "" #: ../vdef.php:283 msgid "You must select at least one VDEF." msgstr "Ð’Ñ‹ должны выбрать хотÑбы один VDEF" #: ../vdef.php:325 msgid "Click 'Continue' to delete the following VDEF's." msgstr "" #: ../vdef.php:385 #, fuzzy #| msgid "Preview" msgid "VDEF Preview" msgstr "ПредпроÑмотр" #: ../vdef.php:390 #, php-format msgid "VDEF Items [edit: %s]" msgstr "" #: ../vdef.php:392 msgid "VDEF Items [new]" msgstr "" #: ../vdef.php:408 msgid "Choose what type of VDEF item this is." msgstr "" #: ../vdef.php:408 msgid "VDEF Item Type" msgstr "" #: ../vdef.php:430 msgid "Enter a value for this VDEF item." msgstr "" #: ../vdef.php:430 msgid "VDEF Item Value" msgstr "" #: ../vdef.php:535 #, php-format msgid "VDEFs [edit: %s]" msgstr "" #: ../vdef.php:537 msgid "VDEFs [new]" msgstr "" #: ../vdef.php:600 ../vdef.php:639 msgid "Delete VDEF Item" msgstr "" #: ../vdef.php:845 msgid "The name of this VDEF." msgstr "" #: ../vdef.php:845 msgid "VDEF Name" msgstr "" #: ../vdef.php:846 msgid "" "VDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: ../vdef.php:847 msgid "The number of Graphs using this VDEF." msgstr "" #: ../vdef.php:848 msgid "The number of Graphs Templates using this VDEF." msgstr "" #: ../vdef.php:871 msgid "No VDEFs" msgstr "" #~ msgid "LINE LIMIT OF 1000 LINES REACHED!!" #~ msgstr "ДОСТИГÐУЛ ЛИМИТ Ð’ 1000 СТРОК!!" #~ msgid "%d Rows" #~ msgstr "%d Строк" #~ msgid "1 Month" #~ msgstr "1 МеÑÑц" #~ msgid "1 Week" #~ msgstr "1 ÐеделÑ" #~ msgid "30 Min" #~ msgstr "30 Мин." #~ msgid "ACCESS DENIED" #~ msgstr "ДОСТУП ЗÐПРЕЩЕÐ" #~ msgid "Accessible" #~ msgstr "Разрешено" #~ msgid "Action:" #~ msgstr "ДейÑтвие:" #~ msgid "Address" #~ msgstr "ÐдреÑ" #~ msgid "Are you sure you want to delete the following graphs?" #~ msgstr "Ð’Ñ‹ уверены что хотите удалить выбраные графики ?" #~ msgid "Are you sure you want to delete the following site(s)?" #~ msgstr "Ð’Ñ‹ уверены что хотите удалить Ñледующий(ие) узел(Ñ‹)" #~ msgid "Are you sure you want to delete the site" #~ msgstr "Ð’Ñ‹ уверены что хотите удалить Ñтот узел?" #~ msgid "Available for RRDTool 1.2.x and above" #~ msgstr "ДоÑтупно Ð´Ð»Ñ RRDTool 1.2.x и выше" #~ msgid "Average:" #~ msgstr "Среднее:" #~ msgid "Blue:" #~ msgstr "Голубой:" #~ msgid "Cacti Log File Cleared" #~ msgstr "Лог Cacti Очищен" #~ msgid "Clear Cacti Log File" #~ msgstr "ОчиÑтить Лог Cacti" #~ msgid "Color tag of the font." #~ msgstr "Цвет шрифта" #~ msgid "Current Language" #~ msgstr "Текущий Язык" #~ msgid "Current:" #~ msgstr "Текущее:" #~ msgid "Custom Legend" #~ msgstr "Выбор Легенды" #~ msgid "DB Info" #~ msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ð¾ БД" #~ msgid "Default Language" #~ msgstr "Язык по Умолчанию" #~ msgid "Default Policy" #~ msgstr "Правило По Умолчанию" #~ msgid "Default Time Zone" #~ msgstr "Стандартный ЧаÑовой ПоÑÑ" #~ msgid "Device Template:" #~ msgstr "Шаблон УÑтройÑтва:" #~ msgid "Device Type" #~ msgstr "Тип уÑтройÑтва" #~ msgid "ERROR: DIR NOT FOUND" #~ msgstr "ОШИБКÐ: ДИРЕКТОРИЯ ÐЕ ÐÐЙДЕÐÐ" #~ msgid "ERROR: FILE NOT FOUND" #~ msgstr "ОШИБКÐ: ФÐЙЛ ÐЕ ÐÐЙДЕÐ" #~ msgid "ERROR: IS DIR" #~ msgstr "ОШИБКÐ: ЭТО ДИРЕКТОРИЯ" #~ msgid "ERROR: IS FILE" #~ msgstr "ОШИБКÐ: ЭТО ФÐЙЛ" #~ msgid "ERROR: Installed RRDTool version does not match configured version." #~ msgstr "" #~ "ОШИБКÐ: УÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ RRDTool не Ñовпадает Ñо Ñконфигурированной" #~ msgid "End" #~ msgstr "Конец" #~ msgid "English" #~ msgstr "ÐнглийÑкий" #~ msgid "Error: Unable to clear log, " #~ msgstr "Ошибка: Ðевозможно очиÑтить лог, " #~ msgid "Font" #~ msgstr "Шрифт" #~ msgid "From:" #~ msgstr "От:" #~ msgid "General Technical Support Information" #~ msgstr "ОÑÐ½Ð¾Ð²Ð½Ð°Ñ Ð¢ÐµÑ…Ð½Ð¸Ñ‡ÐµÑÐºÐ°Ñ Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ " #~ msgid "Graph Template Labels" #~ msgstr "Метка Шаблона Графика" #~ msgid "Green:" #~ msgstr "Зеленый:" #~ msgid "Help" #~ msgstr "Помощь" #~ msgid "Hide/Unhide Menu" #~ msgstr "Скрыть/Открыть Меню" #~ msgid "Image" #~ msgstr "Изображение" #~ msgid "Import RRA Settings" #~ msgstr "Импорт ÑвойÑтв RRA" #~ msgid "Info" #~ msgstr "ИнформациÑ" #~ msgid "Japanese" #~ msgstr "日本語" #~ msgid "Languages" #~ msgstr "Языковые параметры" #~ msgid "Legend" #~ msgstr "Легенда" #~ msgid "Legend Position" #~ msgstr "ÐŸÐ¾Ð·Ð¸Ñ†Ð¸Ñ Ð›ÐµÐ³ÐµÐ½Ð´Ñ‹" #~ msgid "List" #~ msgstr "ЛиÑÑ‚" #~ msgid "Loaded Language Files" #~ msgstr "Загруженные Языковые Файлы" #~ msgid "Logarithmic Scaling" #~ msgstr "ЛогарифмичеÑÐºÐ°Ñ Ð¨ÐºÐ°Ð»Ð°" #~ msgid "Logout User" #~ msgstr "Выход" #~ msgid "Maximum" #~ msgstr "МакÑимум" #~ msgid "Maximum Value" #~ msgstr "МакÑимальное Значение" #~ msgid "Maximum:" #~ msgstr "МакÑимальное:" #~ msgid "Method:" #~ msgstr "Метод:" #~ msgid "Minimum" #~ msgstr "Минимум" #~ msgid "Minimum Value" #~ msgstr "Минимальное Значение" #~ msgid "Module Name:" #~ msgstr "Ð˜Ð¼Ñ ÐœÐ¾Ð´ÑƒÐ»Ñ" #~ msgid "New Full Name:" #~ msgstr "Ðовое Полное ИмÑ:" #~ msgid "New Username:" #~ msgstr "Ðовое Ð˜Ð¼Ñ ÐŸÐ¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ:" #~ msgid "No Access" #~ msgstr "Ðет ДоÑтупа" #~ msgid "No Graph Templates" #~ msgstr "Ðет Шаблонов Графиков" #~ msgid "No Graphs" #~ msgstr "Ðет Графиков" #~ msgid "No Language Files Loaded." #~ msgstr "Языковые Файлы Ðе Загружены" #~ msgid "No Records Found" #~ msgstr "ЗапиÑи Ðе Ðайдены" #~ msgid "No Trees" #~ msgstr "Ðет Деревьев" #~ msgid "No Users" #~ msgstr "Ðет Пользователей" #~ msgid "No VDEF's" #~ msgstr "Ðет VDEF" #~ msgid "Note: " #~ msgstr "Примечание:" #~ msgid "OK: DIR FOUND" #~ msgstr "ОК: ДИРЕКТОРИЯ ÐÐЙДЕÐÐ" #~ msgid "OK: FILE FOUND" #~ msgstr "ОК: ФÐЙЛ ÐÐЙДЕÐ" #~ msgid "Only Graph" #~ msgstr "Только График" #~ msgid "Page Top" #~ msgstr "Ðачало Страницы" #~ msgid "Password:" #~ msgstr "Пароль:" #~ msgid "Please enter a new password for cacti:" #~ msgstr "ПожайлуÑта введите новый пароль Ð´Ð»Ñ cacti" #~ msgid "Please enter your Cacti user name and password below:" #~ msgstr "ПожайлуÑта введите Ваши логин и пароль:" #~ msgid "Please visit the" #~ msgstr "ПожайлуÑта поÑетите" #~ msgid "Poller:" #~ msgstr "РегиÑтратор:" #~ msgid "RRDTool Utility Version" #~ msgstr "ВерÑÐ¸Ñ RRDTool" #~ msgid "RRDTool Version" #~ msgstr "ВерÑÐ¸Ñ RRDTool" #~ msgid "Red:" #~ msgstr "КраÑный:" #~ msgid "Redirect all HTTP connections to HTTPS." #~ msgstr "Перенаправление вÑех HTTP Ñоединений на HTTPS" #~ msgid "Require SSL Encryption" #~ msgstr "Ðеобходимо SSL шифрование" #~ msgid "Resize Graphs" #~ msgstr "Изменение Размеров Графиков" #~ msgid "Rows:" #~ msgstr "Строк:" #~ msgid "Russian" #~ msgstr "РуÑÑкий" #~ msgid "SNMP Utility Version" #~ msgstr "ВерÑÐ¸Ñ SNMP" #~ msgid "Search:" #~ msgstr "ПоиÑк:" #~ msgid "Show Device Details" #~ msgstr "Детали уÑтройÑтва" #~ msgid "Showing All Graphs" #~ msgstr "Показаны Ð’Ñе Графики" #~ msgid "Showing Graphs" #~ msgstr "Показать Графики" #~ msgid "Showing Rows" #~ msgstr "Показать Строки" #~ msgid "Site Filters" #~ msgstr "Фильтр узлов" #~ msgid "Site:" #~ msgstr "Узел:" #~ msgid "Some sites not removed as they contain devices!" #~ msgstr "Узел Ð½ÐµÐ»ÑŒÐ·Ñ ÑƒÐ´Ð°Ð»Ð¸Ñ‚ÑŒ еÑли он Ñодержит уÑтройÑтва!" #~ msgid "Start" #~ msgstr "Ðачать" #~ msgid "Status:" #~ msgstr "СтатуÑ:" #~ msgid "Supported Languages" #~ msgstr "Поддерживаемые Языки" #~ msgid "Template:" #~ msgstr "Шаблон:" #~ msgid "The full path to the RRD file." #~ msgstr "Полный путь к RRD файлам" #~ msgid "The version of RRDTool that you have installed." #~ msgstr "ВерÑÐ¸Ñ RRDTool которую вы уÑтановили." #~ msgid "Time Zone Support" #~ msgstr "Поддержка ЧаÑового ПоÑÑа" #~ msgid "To:" #~ msgstr "По:" #~ msgid "Total Lines:" #~ msgstr "Ð’Ñего Строк:" #~ msgid "Trees:" #~ msgstr "ДеревьÑ:" #~ msgid "Type:" #~ msgstr "Тип:" #~ msgid "Update Device Templates" #~ msgstr "Обновление Шаблонов УÑтройÑтв" #~ msgid "User Name:" #~ msgstr "Логин:" #~ msgid "VDEF Title" #~ msgstr "Ðазвание VDEF" #~ msgid "View Cacti Log File" #~ msgstr "ПоÑмотреть Лог Cacti" #~ msgid "WARNING: Function does not exist\n" #~ msgstr "Внимание: Ð¤ÑƒÐ½ÐºÑ†Ð¸Ñ Ð½Ðµ ÑущеÑтвует\n" #~ msgid "Watermark" #~ msgstr "ВодÑной Знак" #~ msgid "Width" #~ msgstr "Ширина" #~ msgid "Would you like to copy this user?" #~ msgstr "Хотите Ñкопировать Ñтого пользователÑ?" #~ msgid "YOU DO NOT HAVE RIGHTS TO CHANGE GRAPH SETTINGS" #~ msgstr "У Ð’ÐС ÐЕДОСТÐТОЧÐО ПРÐÐ’ ДЛЯ ИЗМЕÐЕÐИЯ СВОЙСТВ ГРÐФИКÐ" #~ msgid "" #~ "You must first select a Device Template. Please select 'Return' to " #~ "return to the previous menu." #~ msgstr "" #~ "Сначала вы должны выбрать Шаблон УÑтройÑтва. ПожайлуÑта нажмите 'Ðазад' " #~ "Ð´Ð»Ñ Ð²Ð¾Ð·Ð²Ñ€Ð°Ñ‚Ð° в предыдущее меню." #~ msgid "Your passwords do not match, please retype:" #~ msgstr "Ваши пароли не Ñовпадают, пожайлуÑта повторите:" #~ msgid "[edit: " #~ msgstr "[редакциÑ:" #~ msgid "[update]" #~ msgstr "[обновлено]" #~ msgid "_Apr_" #~ msgstr "_Ðпр_" #~ msgid "_Aug_" #~ msgstr "_Ðвг_" #~ msgid "_Dec_" #~ msgstr "_Дек_" #~ msgid "_Feb_" #~ msgstr "_Фев_" #~ msgid "_Jan_" #~ msgstr "_Янв_" #~ msgid "_Jul_" #~ msgstr "_Июль_" #~ msgid "_Jun_" #~ msgstr "_Июнь_" #~ msgid "_Mar_" #~ msgstr "_Март_" #~ msgid "_Nov_" #~ msgstr "_ÐоÑ_" #~ msgid "_Oct_" #~ msgstr "_Окт_" #~ msgid "_Sep_" #~ msgstr "_Сен_" #~ msgid "and select the correct RRDTool Utility Version." #~ msgstr "и выбирите корректную верÑию RRDTool" #~ msgid "file does not exist." #~ msgstr "файл не ÑущеÑтвует." #~ msgid "limit" #~ msgstr "лимит" #~ msgid "loading" #~ msgstr "загрузка" #~ msgid "mode" #~ msgstr "режим" #~ msgid "no write permissions." #~ msgstr "нет права на запиÑÑŒ." #~ msgid "of" #~ msgstr "из" #~ msgid "on:off" #~ msgstr "вкл.:выкл." #~ msgid "position" #~ msgstr "позициÑ" #~ msgid "string" #~ msgstr "Ñтрока" #~ msgid "threshold" #~ msgstr "порог" #~ msgid "to" #~ msgstr "по" #~ msgid "width" #~ msgstr "ширина" cacti-1.1.38/locales/po/japanese_japan.po0000664000175000017500000147355213264740213017635 0ustar tromantromanmsgid "" msgstr "" "Project-Id-Version: cacti\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-05-20 13:01+0200\n" "PO-Revision-Date: 2017-05-20 13:01+0200\n" "Last-Translator: Patrick Rademaker\n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 2.0.2\n" #: ../about.php:29 ../lib/functions.php:2424 msgid "About Cacti" msgstr "Cacti ã«ã¤ã„ã¦" #: ../about.php:35 ../index.php:73 ../logout.php:77 #, fuzzy, php-format msgid "Version %s" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ 1" #: ../about.php:42 msgid "" "Cacti is designed to be a complete graphing solution based on the RRDtool's " "framework. Its goal is to make a network administrator's job easier by " "taking care of all the necessary details necessary to create meaningful " "graphs." msgstr "" #: ../about.php:44 #, php-format msgid "" "Please see the official %sCacti website%s for information, support, and " "updates." msgstr "" #: ../about.php:46 msgid "Cacti Developers" msgstr "" #: ../about.php:58 msgid "Thanks" msgstr "" #: ../about.php:61 #, php-format msgid "" "A very special thanks to %sTobi Oetiker%s, the creator of %sRRDtool%s and " "the very popular %sMRTG%s." msgstr "" #: ../about.php:64 msgid "The users of Cacti" msgstr "" #: ../about.php:65 msgid "" "Especially anyone who has taken the time to create an issue report, or " "otherwise help fix a Cacti related problems. Also to anyone who has " "contributed to supporting Cacti." msgstr "" #: ../about.php:70 msgid "License" msgstr "" #: ../about.php:72 msgid "Cacti is licensed under the GNU GPL:" msgstr "" #: ../about.php:74 msgid "" "This program is free software; you can redistribute it and/or modify it " "under the terms of the GNU General Public License as published by the Free " "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" #: ../about.php:76 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" #: ../aggregate_graphs.php:40 ../aggregate_templates.php:29 #: ../automation_graph_rules.php:32 ../automation_networks.php:31 #: ../automation_snmp.php:29 ../automation_snmp.php:727 #: ../automation_templates.php:29 ../automation_tree_rules.php:32 #: ../cdef.php:29 ../cdef.php:619 ../color.php:28 ../color_templates.php:28 #: ../color_templates.php:122 ../data_input.php:29 ../data_input.php:490 #: ../data_input.php:528 ../data_queries.php:30 ../data_queries.php:638 #: ../data_queries.php:736 ../data_queries.php:950 #: ../data_source_profiles.php:29 ../data_source_profiles.php:513 #: ../data_sources.php:35 ../data_sources.php:942 ../data_templates.php:33 #: ../data_templates.php:571 ../gprint_presets.php:28 ../graph_templates.php:33 #: ../graph_templates.php:440 ../graphs.php:44 ../host.php:38 #: ../host_templates.php:30 ../host_templates.php:485 ../host_templates.php:542 #: ../include/global_arrays.php:1234 ../lib/api_automation.php:1246 #: ../lib/api_automation.php:1309 ../lib/api_automation.php:1373 #: ../lib/html.php:970 ../lib/html_form.php:1096 ../lib/html_reports.php:1291 #: ../links.php:28 ../managers.php:28 ../pollers.php:29 ../sites.php:28 #: ../tree.php:1051 ../tree.php:1204 ../tree.php:1264 ../user_admin.php:28 #: ../user_domains.php:29 ../user_group_admin.php:30 ../vdef.php:29 msgid "Delete" msgstr "削除" #: ../aggregate_graphs.php:41 msgid "Migrate Aggregate to use a Template" msgstr "" #: ../aggregate_graphs.php:42 msgid "Create New Aggregate from Aggregates" msgstr "" #: ../aggregate_graphs.php:46 #, fuzzy msgid "Associate with Aggregate" msgstr "関連グラフテンプレート" #: ../aggregate_graphs.php:47 msgid "Disassociate with Aggregate" msgstr "" #: ../aggregate_graphs.php:80 ../graphs.php:128 #, php-format msgid "Place on a Tree (%s)" msgstr "" #: ../aggregate_graphs.php:318 #, fuzzy msgid "Click 'Continue' to delete the following Aggregate Graph(s)." msgstr "次ã®ã‚°ãƒ©ãƒ•を本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 ../automation_devices.php:199 #: ../automation_graph_rules.php:284 ../automation_networks.php:358 #: ../automation_snmp.php:253 ../automation_snmp.php:356 #: ../automation_templates.php:195 ../automation_tree_rules.php:286 #: ../cdef.php:282 ../cdef.php:292 ../cdef.php:344 ../color.php:192 #: ../color_templates.php:232 ../color_templates.php:242 #: ../color_templates_items.php:280 ../data_input.php:218 ../data_input.php:266 #: ../data_queries.php:322 ../data_queries.php:425 #: ../data_source_profiles.php:266 ../data_source_profiles.php:276 #: ../data_source_profiles.php:324 ../data_sources.php:468 #: ../data_sources.php:478 ../data_sources.php:487 ../data_sources.php:496 #: ../data_sources.php:505 ../data_sources.php:511 ../data_templates.php:358 #: ../data_templates.php:368 ../data_templates.php:384 #: ../gprint_presets.php:153 ../graph_templates.php:317 #: ../graph_templates.php:327 ../graph_templates.php:347 #: ../graph_templates.php:356 ../graphs.php:818 ../graphs.php:845 #: ../graphs.php:856 ../graphs.php:867 ../graphs.php:882 ../graphs.php:905 #: ../graphs.php:1029 ../graphs.php:1072 ../graphs.php:1094 ../graphs.php:1102 #: ../graphs.php:1535 ../host.php:381 ../host.php:390 ../host.php:432 #: ../host.php:441 ../host.php:450 ../host.php:464 ../host.php:478 #: ../host.php:487 ../host.php:495 ../host_templates.php:261 #: ../host_templates.php:275 ../host_templates.php:286 #: ../host_templates.php:334 ../host_templates.php:394 #: ../lib/clog_webapi.php:129 ../lib/html_form.php:1095 #: ../lib/html_form.php:1107 ../lib/html_form.php:1118 #: ../lib/html_utility.php:198 ../links.php:196 ../links.php:205 #: ../links.php:214 ../managers.php:1012 ../managers.php:1069 #: ../pollers.php:288 ../pollers.php:297 ../pollers.php:306 ../pollers.php:315 #: ../sites.php:280 ../tree.php:490 ../tree.php:499 ../tree.php:508 #: ../user_admin.php:350 ../user_admin.php:390 ../user_admin.php:401 #: ../user_admin.php:412 ../user_admin.php:434 ../user_domains.php:227 #: ../user_domains.php:236 ../user_domains.php:245 ../user_domains.php:254 #: ../user_group_admin.php:446 ../user_group_admin.php:465 #: ../user_group_admin.php:476 ../user_group_admin.php:487 ../vdef.php:270 #: ../vdef.php:280 ../vdef.php:332 msgid "Cancel" msgstr "å–り消ã—" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 ../automation_devices.php:199 #: ../automation_graph_rules.php:284 ../automation_networks.php:350 #: ../automation_snmp.php:228 ../automation_snmp.php:357 #: ../automation_templates.php:195 ../automation_tree_rules.php:286 #: ../cdef.php:282 ../cdef.php:292 ../cdef.php:345 ../color.php:192 #: ../color_templates.php:232 ../color_templates.php:242 #: ../color_templates_items.php:281 ../data_input.php:218 ../data_input.php:267 #: ../data_queries.php:322 ../data_queries.php:426 #: ../data_source_profiles.php:266 ../data_source_profiles.php:276 #: ../data_source_profiles.php:325 ../data_sources.php:468 #: ../data_sources.php:478 ../data_sources.php:487 ../data_sources.php:496 #: ../data_sources.php:505 ../data_sources.php:511 ../data_templates.php:358 #: ../data_templates.php:368 ../data_templates.php:384 #: ../gprint_presets.php:153 ../graph_templates.php:317 #: ../graph_templates.php:327 ../graph_templates.php:347 #: ../graph_templates.php:356 ../graphs.php:818 ../graphs.php:845 #: ../graphs.php:856 ../graphs.php:867 ../graphs.php:882 ../graphs.php:905 #: ../graphs.php:1029 ../graphs.php:1072 ../graphs.php:1094 ../graphs.php:1102 #: ../host.php:381 ../host.php:390 ../host.php:432 ../host.php:441 #: ../host.php:450 ../host.php:464 ../host.php:478 ../host.php:487 #: ../host.php:495 ../host_templates.php:261 ../host_templates.php:275 #: ../host_templates.php:286 ../host_templates.php:335 #: ../host_templates.php:395 ../lib/clog_webapi.php:130 #: ../lib/html_reports.php:643 ../lib/html_utility.php:198 ../links.php:196 #: ../links.php:205 ../links.php:214 ../managers.php:1012 ../managers.php:1069 #: ../pollers.php:288 ../pollers.php:297 ../pollers.php:306 ../pollers.php:315 #: ../sites.php:280 ../tree.php:490 ../tree.php:499 ../tree.php:508 #: ../user_admin.php:350 ../user_admin.php:390 ../user_admin.php:401 #: ../user_admin.php:412 ../user_admin.php:434 ../user_domains.php:227 #: ../user_domains.php:236 ../user_domains.php:245 ../user_domains.php:254 #: ../user_group_admin.php:446 ../user_group_admin.php:465 #: ../user_group_admin.php:476 ../user_group_admin.php:487 ../vdef.php:270 #: ../vdef.php:280 ../vdef.php:333 msgid "Continue" msgstr "" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../graphs.php:818 #, fuzzy msgid "Delete Graph(s)" msgstr "グラフを更新ã™ã‚‹" #: ../aggregate_graphs.php:349 msgid "" "The selected Aggregate Graphs represent elements from more than one Graph " "Template." msgstr "" #: ../aggregate_graphs.php:350 msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, they must only be using one Graph Template. Please press " "'Return' and then select only Aggregate Graph that utilize the same Graph " "Template." msgstr "" #: ../aggregate_graphs.php:355 ../aggregate_graphs.php:395 #: ../aggregate_graphs.php:442 ../aggregate_templates.php:316 #: ../auth_changepassword.php:308 ../automation_devices.php:203 #: ../automation_graph_rules.php:282 ../automation_networks.php:359 #: ../automation_snmp.php:253 ../automation_templates.php:199 #: ../automation_tree_rules.php:284 ../cdef.php:296 ../color.php:196 #: ../color_templates.php:246 ../data_input.php:221 ../data_queries.php:325 #: ../data_source_profiles.php:280 ../data_sources.php:515 #: ../data_templates.php:388 ../gprint_presets.php:157 #: ../graph_templates.php:360 ../graphs.php:1031 ../graphs.php:1081 #: ../graphs.php:1084 ../graphs.php:1107 ../host.php:499 #: ../host_templates.php:290 ../include/auth.php:115 ../lib/html_form.php:1116 #: ../lib/html_utility.php:196 ../links.php:218 ../managers.php:1072 #: ../permission_denied.php:30 ../permission_denied.php:32 ../pollers.php:319 #: ../sites.php:284 ../tree.php:512 ../user_admin.php:439 #: ../user_domains.php:258 ../user_group_admin.php:491 ../vdef.php:284 msgid "Return" msgstr "" #: ../aggregate_graphs.php:368 msgid "" "Click 'Continue' and the following Aggregate Graph(s) will be migrated to " "use the Aggregate Template that you choose below." msgstr "" #: ../aggregate_graphs.php:374 #, fuzzy msgid "Aggregate Template:" msgstr "グラフã®ãƒ†ãƒ³ãƒ—レート" #: ../aggregate_graphs.php:388 msgid "" "There are currently no Aggregate Templates defined for the selected Legacy " "Aggregates." msgstr "" #: ../aggregate_graphs.php:389 #, php-format msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, first create an Aggregate Template for the Graph Template '%s'." msgstr "" #: ../aggregate_graphs.php:390 msgid "Please press 'Return' to continue." msgstr "" #: ../aggregate_graphs.php:401 msgid "" "Click 'Continue' to combine the following Aggregate Graph(s) into a single " "Aggregate Graph." msgstr "" #: ../aggregate_graphs.php:406 #, fuzzy msgid "Aggregate Name:" msgstr "テンプレートå" #: ../aggregate_graphs.php:407 msgid "New Aggregate" msgstr "" #: ../aggregate_graphs.php:413 msgid "" "Click 'Continue' to associate the following Graph(s) with the Aggregate " "Graph." msgstr "" #: ../aggregate_graphs.php:418 #, fuzzy msgid "Associate Graph(s)" msgstr "関連グラフテンプレート" #: ../aggregate_graphs.php:422 msgid "" "Click 'Continue' to disassociate the following Graph(s) from the Aggregate." msgstr "" #: ../aggregate_graphs.php:427 #, fuzzy msgid "Dis-Associate Graph(s)" msgstr "関連グラフテンプレート" #: ../aggregate_graphs.php:431 msgid "" "Click 'Continue' to place the following Aggregate Graph(s) under the Tree " "Branch." msgstr "" #: ../aggregate_graphs.php:433 ../host.php:470 msgid "Destination Branch:" msgstr "" #: ../aggregate_graphs.php:438 ../graphs.php:882 #, fuzzy msgid "Place Graph(s) on Tree" msgstr "グラフツリーãŒã‚りã¾ã›ã‚“" #: ../aggregate_graphs.php:441 msgid "You must select at least one graph." msgstr "" #: ../aggregate_graphs.php:476 ../graphs.php:1140 #, fuzzy msgid "Graph Items [new]" msgstr "グラフ項目" #: ../aggregate_graphs.php:492 ../graphs.php:1160 #, fuzzy, php-format msgid "Graph Items [edit: %s]" msgstr "グラフ項目" #: ../aggregate_graphs.php:560 ../aggregate_graphs.php:563 #: ../lib/html_reports.php:1060 ../lib/html_reports.php:1065 #: ../lib/html_reports.php:1104 ../utilities.php:1699 msgid "Details" msgstr "" #: ../aggregate_graphs.php:560 ../lib/html_reports.php:1060 #: ../lib/html_reports.php:1151 ../utilities.php:306 #, fuzzy msgid "Items" msgstr "é …ç›®" #: ../aggregate_graphs.php:560 ../aggregate_graphs.php:563 ../lib/html.php:1559 #: ../lib/html_reports.php:1060 #, fuzzy msgid "Preview" msgstr "プレビューモード" #: ../aggregate_graphs.php:607 msgid "Turn Off Graph Debug Mode" msgstr "" #: ../aggregate_graphs.php:609 msgid "Turn On Graph Debug Mode" msgstr "" #: ../aggregate_graphs.php:615 ../aggregate_graphs.php:880 msgid "Show Item Details" msgstr "" #: ../aggregate_graphs.php:621 #, php-format msgid "Aggregate Preview [%s]" msgstr "" #: ../aggregate_graphs.php:633 ../graph.php:431 ../graphs.php:1398 msgid "RRDTool Command:" msgstr "" #: ../aggregate_graphs.php:635 ../graph.php:434 ../graphs.php:1400 #, fuzzy msgid "RRDTool Says:" msgstr "RRDTool ãƒã‚¤ãƒŠãƒªãƒ‘ス" #: ../aggregate_graphs.php:660 #, fuzzy, php-format msgid "Aggregate Graph %s" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•を作æˆ" #: ../aggregate_graphs.php:798 ../lib/api_aggregate.php:1221 msgid "Total" msgstr "" #: ../aggregate_graphs.php:802 #, fuzzy msgid "All Items" msgstr "é …ç›®" #: ../aggregate_graphs.php:825 ../graphs.php:1414 ../lib/api_aggregate.php:1367 #, fuzzy msgid "Graph Configuration" msgstr "グラフオプション" #: ../aggregate_graphs.php:875 ../automation_graph_rules.php:513 #: ../automation_graph_rules.php:528 ../automation_graph_rules.php:544 #: ../automation_tree_rules.php:379 ../automation_tree_rules.php:529 msgid "Show" msgstr "" #: ../aggregate_graphs.php:877 msgid "Hide Item Details" msgstr "" #: ../aggregate_graphs.php:998 #, fuzzy msgid "Matching Graphs" msgstr "グラフを更新ã™ã‚‹" #: ../aggregate_graphs.php:1007 ../aggregate_graphs.php:1326 #: ../aggregate_templates.php:538 ../automation_devices.php:448 #: ../automation_graph_rules.php:701 ../automation_networks.php:1061 #: ../automation_networks.php:1082 ../automation_snmp.php:828 #: ../automation_templates.php:412 ../automation_tree_rules.php:715 #: ../cdef.php:722 ../color.php:529 ../color_templates.php:439 #: ../data_input.php:619 ../data_queries.php:1048 #: ../data_source_profiles.php:719 ../data_sources.php:1251 #: ../data_templates.php:754 ../gprint_presets.php:262 #: ../graph_templates.php:628 ../graph_view.php:517 ../graph_view.php:818 #: ../graphs.php:1687 ../graphs_new.php:548 ../host.php:1375 #: ../host_templates.php:700 ../lib/api_automation.php:133 #: ../lib/api_automation.php:460 ../lib/api_automation.php:683 #: ../lib/api_automation.php:988 ../lib/clog_webapi.php:380 #: ../lib/html_filter.php:63 ../lib/html_graph.php:206 #: ../lib/html_graph.php:432 ../lib/html_reports.php:1378 #: ../lib/html_tree.php:121 ../lib/html_tree.php:605 ../lib/html_tree.php:879 #: ../links.php:309 ../managers.php:150 ../managers.php:533 ../managers.php:724 #: ../plugins.php:276 ../pollers.php:517 ../rrdcleaner.php:475 #: ../settings.php:204 ../settings.php:221 ../settings.php:267 ../sites.php:387 #: ../tree.php:633 ../tree.php:668 ../tree.php:1485 ../user_admin.php:2193 #: ../user_admin.php:2531 ../user_admin.php:2640 ../user_admin.php:2728 #: ../user_admin.php:2833 ../user_admin.php:2920 ../user_admin.php:3007 #: ../user_domains.php:621 ../user_group_admin.php:1806 #: ../user_group_admin.php:2133 ../user_group_admin.php:2243 #: ../user_group_admin.php:2348 ../user_group_admin.php:2435 #: ../user_group_admin.php:2522 ../utilities.php:689 ../utilities.php:1045 #: ../utilities.php:1282 ../utilities.php:1594 ../utilities.php:2257 #: ../utilities.php:2510 ../vdef.php:659 #, fuzzy msgid "Search" msgstr "検索フィルター" #: ../aggregate_graphs.php:1013 ../aggregate_graphs.php:1111 #: ../aggregate_graphs.php:1354 ../color_templates.php:549 #: ../graph_view.php:395 ../graph_view.php:556 ../graphs.php:1693 #: ../host.php:1501 ../include/global_arrays.php:686 #: ../include/global_arrays.php:865 ../lib/api_automation.php:274 #: ../lib/functions.php:1856 ../lib/html.php:1308 ../lib/html.php:1310 #: ../lib/html.php:1383 ../lib/html_graph.php:212 ../lib/html_tree.php:658 #: ../lib/html_tree.php:1076 ../tree.php:1568 ../user_admin.php:998 #: ../user_admin.php:1242 ../user_admin.php:2559 ../user_group_admin.php:813 #: ../user_group_admin.php:966 ../user_group_admin.php:2161 #: ../utilities.php:268 msgid "Graphs" msgstr "グラフ" #: ../aggregate_graphs.php:1017 ../aggregate_graphs.php:1358 #: ../aggregate_templates.php:554 ../automation_devices.php:533 #: ../automation_graph_rules.php:743 ../automation_networks.php:1071 #: ../automation_snmp.php:838 ../automation_templates.php:422 #: ../automation_tree_rules.php:735 ../cdef.php:732 ../color.php:539 #: ../color_templates.php:453 ../data_input.php:629 ../data_queries.php:1058 #: ../data_source_profiles.php:729 ../data_source_profiles.php:848 #: ../data_sources.php:1287 ../data_templates.php:780 ../gprint_presets.php:272 #: ../graph_templates.php:638 ../graph_view.php:560 ../graphs.php:1697 #: ../graphs_new.php:530 ../host.php:1400 ../host_templates.php:710 #: ../include/global_form.php:79 ../lib/api_automation.php:176 #: ../lib/api_automation.php:470 ../lib/api_automation.php:693 #: ../lib/api_automation.php:1031 ../lib/html_reports.php:1398 ../links.php:319 #: ../managers.php:160 ../managers.php:543 ../plugins.php:299 #: ../pollers.php:527 ../rrdcleaner.php:501 ../sites.php:397 ../tree.php:1495 #: ../user_admin.php:2203 ../user_admin.php:2563 ../user_admin.php:2650 #: ../user_admin.php:2756 ../user_admin.php:2843 ../user_admin.php:2930 #: ../user_admin.php:3017 ../user_domains.php:32 ../user_domains.php:631 #: ../user_domains.php:716 ../user_group_admin.php:1816 #: ../user_group_admin.php:2165 ../user_group_admin.php:2271 #: ../user_group_admin.php:2358 ../user_group_admin.php:2445 #: ../user_group_admin.php:2532 ../utilities.php:665 ../utilities.php:1326 #: ../utilities.php:1615 ../utilities.php:2282 ../utilities.php:2546 #: ../vdef.php:669 #, fuzzy msgid "Default" msgstr "デフォルト RRA" #: ../aggregate_graphs.php:1031 msgid "Part of Aggregate" msgstr "" #: ../aggregate_graphs.php:1034 ../aggregate_graphs.php:1369 #: ../aggregate_templates.php:574 ../automation_devices.php:468 #: ../automation_graph_rules.php:754 ../automation_networks.php:1082 #: ../automation_snmp.php:849 ../automation_templates.php:433 #: ../automation_tree_rules.php:746 ../cdef.php:749 ../color.php:562 #: ../color_templates.php:472 ../data_input.php:640 ../data_queries.php:1069 #: ../data_source_profiles.php:746 ../data_sources.php:1241 #: ../data_templates.php:797 ../gprint_presets.php:289 #: ../graph_templates.php:655 ../graph_view.php:571 ../graphs.php:1677 #: ../graphs_new.php:554 ../host.php:1365 ../host_templates.php:727 #: ../lib/api_automation.php:187 ../lib/api_automation.php:452 #: ../lib/api_automation.php:704 ../lib/api_automation.php:1042 #: ../lib/clog_webapi.php:340 ../lib/html.php:1154 ../lib/html_filter.php:81 #: ../lib/html_graph.php:190 ../lib/html_reports.php:1408 #: ../lib/html_tree.php:642 ../links.php:328 ../managers.php:171 #: ../managers.php:554 ../managers.php:743 ../plugins.php:310 #: ../pollers.php:538 ../sites.php:408 ../tree.php:1506 ../user_admin.php:2214 #: ../user_admin.php:2580 ../user_admin.php:2667 ../user_admin.php:2773 #: ../user_admin.php:2860 ../user_admin.php:2947 ../user_admin.php:3034 msgid "Go" msgstr "" #: ../aggregate_graphs.php:1034 ../aggregate_graphs.php:1369 #: ../automation_devices.php:468 ../automation_snmp.php:849 #: ../automation_templates.php:433 ../cdef.php:749 ../color.php:562 #: ../data_input.php:640 ../data_queries.php:1069 #: ../data_source_profiles.php:746 ../data_sources.php:1241 #: ../data_templates.php:797 ../gprint_presets.php:289 #: ../graph_templates.php:655 ../graph_view.php:571 ../graphs.php:1677 #: ../graphs_new.php:554 ../host.php:1365 ../host_templates.php:727 #: ../lib/html_graph.php:190 ../managers.php:171 ../managers.php:554 #: ../managers.php:743 ../plugins.php:310 ../pollers.php:538 ../sites.php:408 #: ../tree.php:1506 ../user_admin.php:2214 ../user_admin.php:2580 #: ../user_admin.php:2667 ../user_admin.php:2773 ../user_admin.php:2860 #: ../user_admin.php:2947 ../user_admin.php:3034 ../user_domains.php:642 #: ../user_group_admin.php:1827 ../user_group_admin.php:2182 #: ../user_group_admin.php:2288 ../user_group_admin.php:2375 #: ../user_group_admin.php:2462 ../user_group_admin.php:2549 #: ../utilities.php:676 ../utilities.php:1009 ../utilities.php:1337 #: ../utilities.php:1584 ../utilities.php:2293 ../utilities.php:2557 #, fuzzy msgid "Set/Refresh Filters" msgstr "検索フィルター" #: ../aggregate_graphs.php:1037 ../aggregate_graphs.php:1372 #: ../aggregate_templates.php:577 ../automation_devices.php:471 #: ../automation_graph_rules.php:757 ../automation_networks.php:1085 #: ../automation_snmp.php:852 ../automation_templates.php:436 #: ../automation_tree_rules.php:749 ../cdef.php:752 ../color.php:565 #: ../color_templates.php:475 ../data_input.php:643 ../data_queries.php:1072 #: ../data_source_profiles.php:749 ../data_sources.php:1244 #: ../data_templates.php:800 ../gprint_presets.php:292 #: ../graph_templates.php:658 ../graph_view.php:574 ../graphs.php:1680 #: ../graphs_new.php:555 ../host.php:1368 ../host_templates.php:730 #: ../lib/api_automation.php:190 ../lib/api_automation.php:455 #: ../lib/api_automation.php:707 ../lib/api_automation.php:1045 #: ../lib/clog_webapi.php:343 ../lib/html_filter.php:86 #: ../lib/html_graph.php:193 ../lib/html_graph.php:322 #: ../lib/html_reports.php:1411 ../lib/html_tree.php:645 #: ../lib/html_tree.php:768 ../links.php:331 ../managers.php:174 #: ../managers.php:557 ../managers.php:746 ../plugins.php:313 #: ../pollers.php:541 ../sites.php:411 ../tree.php:1509 ../user_admin.php:2217 #: ../user_admin.php:2583 ../user_admin.php:2670 ../user_admin.php:2776 #: ../user_admin.php:2863 ../user_admin.php:2950 ../user_admin.php:3037 #: ../user_domains.php:645 msgid "Clear" msgstr "" #: ../aggregate_graphs.php:1037 ../aggregate_graphs.php:1372 #: ../automation_snmp.php:852 ../automation_templates.php:436 ../cdef.php:752 #: ../color.php:565 ../data_input.php:643 ../data_queries.php:1072 #: ../data_source_profiles.php:749 ../data_sources.php:1244 #: ../data_templates.php:800 ../gprint_presets.php:292 #: ../graph_templates.php:658 ../graph_view.php:574 ../graphs.php:1680 #: ../graphs_new.php:555 ../host.php:1368 ../host_templates.php:730 #: ../lib/html_graph.php:193 ../lib/html_tree.php:645 ../managers.php:174 #: ../managers.php:557 ../managers.php:746 ../plugins.php:313 #: ../pollers.php:541 ../sites.php:411 ../tree.php:1509 ../user_admin.php:2217 #: ../user_admin.php:2583 ../user_admin.php:2670 ../user_admin.php:2776 #: ../user_admin.php:2863 ../user_admin.php:2950 ../user_admin.php:3037 #: ../user_domains.php:645 ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 ../user_group_admin.php:2465 #: ../user_group_admin.php:2552 ../utilities.php:679 ../utilities.php:1012 #: ../utilities.php:1340 ../utilities.php:1587 ../utilities.php:2296 #: ../utilities.php:2558 #, fuzzy msgid "Clear Filters" msgstr "検索フィルター" #: ../aggregate_graphs.php:1116 ../aggregate_graphs.php:1435 #: ../graph_view.php:619 ../graphs.php:1058 ../lib/api_automation.php:561 #: ../user_admin.php:1006 ../user_group_admin.php:821 msgid "Graph Title" msgstr "グラフã®é¡Œå" #: ../aggregate_graphs.php:1117 ../aggregate_graphs.php:1436 #: ../automation_graph_rules.php:856 ../automation_tree_rules.php:843 #: ../data_queries.php:1153 ../data_sources.php:1406 ../data_templates.php:910 #: ../graph_templates.php:762 ../graphs.php:1788 ../host.php:1500 #: ../host_templates.php:815 ../lib/api_automation.php:273 ../pollers.php:612 #: ../sites.php:482 ../tree.php:1559 ../user_admin.php:1006 #: ../user_admin.php:1101 ../user_admin.php:1242 ../user_admin.php:1384 #: ../user_admin.php:1521 ../user_group_admin.php:675 #: ../user_group_admin.php:821 ../user_group_admin.php:966 #: ../user_group_admin.php:1109 ../user_group_admin.php:1243 msgid "ID" msgstr "" #: ../aggregate_graphs.php:1118 msgid "Included in Aggregate" msgstr "" #: ../aggregate_graphs.php:1119 ../aggregate_graphs.php:1438 #: ../graph_templates.php:765 ../graphs.php:1790 msgid "Size" msgstr "サイズ" #: ../aggregate_graphs.php:1129 ../cdef.php:869 ../color.php:722 #: ../color.php:724 ../color_templates.php:566 ../data_input.php:741 #: ../data_queries.php:1173 ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 ../data_sources.php:1450 #: ../data_sources.php:1451 ../data_templates.php:930 ../gprint_presets.php:411 #: ../graph_templates.php:783 ../host_templates.php:834 #: ../include/global_settings.php:398 ../include/global_settings.php:1254 #: ../install/index.php:527 ../install/index.php:548 ../tree.php:1593 #: ../tree.php:1594 ../user_admin.php:2285 ../user_domains.php:731 #: ../user_group_admin.php:1897 ../vdef.php:864 msgid "No" msgstr "ã„ã„ãˆ" #: ../aggregate_graphs.php:1129 ../cdef.php:869 ../color.php:722 #: ../color.php:724 ../color_templates.php:566 ../data_input.php:741 #: ../data_queries.php:1173 ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 ../data_sources.php:1450 #: ../data_sources.php:1451 ../data_templates.php:930 ../gprint_presets.php:411 #: ../graph_templates.php:783 ../host_templates.php:834 #: ../include/global_settings.php:398 ../include/global_settings.php:1254 #: ../install/index.php:526 ../install/index.php:527 ../install/index.php:547 #: ../install/index.php:548 ../tree.php:1593 ../tree.php:1594 #: ../user_admin.php:2283 ../user_domains.php:729 ../user_domains.php:731 #: ../user_group_admin.php:1895 ../vdef.php:864 msgid "Yes" msgstr "ã¯ã„" #: ../aggregate_graphs.php:1135 ../graphs.php:1810 #: ../lib/api_automation.php:588 msgid "No Graphs Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../aggregate_graphs.php:1317 ../aggregate_graphs.php:1426 #: ../lib/functions.php:2550 #, fuzzy msgid "Aggregate Graphs" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•を作æˆ" #: ../aggregate_graphs.php:1332 ../data_sources.php:1206 ../graph_view.php:524 #: ../graphs.php:1653 ../host.php:1347 ../lib/api_automation.php:434 #: ../lib/html_graph.php:159 ../lib/html_tree.php:611 ../rrdcleaner.php:351 #: ../user_admin.php:2537 ../user_admin.php:2734 ../user_group_admin.php:2139 #: ../user_group_admin.php:2249 ../utilities.php:1555 #, fuzzy msgid "Template" msgstr "テンプレートå" #: ../aggregate_graphs.php:1336 ../automation_devices.php:458 #: ../automation_devices.php:488 ../automation_devices.php:503 #: ../automation_devices.php:518 ../automation_graph_rules.php:711 #: ../automation_graph_rules.php:733 ../data_sources.php:1210 #: ../graphs.php:1657 ../graphs_items.php:308 ../graphs_items.php:329 #: ../host.php:1316 ../host.php:1334 ../host.php:1351 ../host.php:1385 #: ../lib/api_automation.php:143 ../lib/api_automation.php:161 #: ../lib/api_automation.php:421 ../lib/api_automation.php:438 #: ../lib/api_automation.php:998 ../lib/api_automation.php:1016 #: ../lib/html.php:1633 ../lib/html_reports.php:1388 ../managers.php:522 #: ../managers.php:734 ../user_admin.php:2541 ../user_admin.php:2738 #: ../user_group_admin.php:2143 ../user_group_admin.php:2253 #: ../utilities.php:654 ../utilities.php:1293 ../utilities.php:1559 #: ../utilities.php:1604 ../utilities.php:2267 ../utilities.php:2520 #: ../utilities.php:2533 msgid "Any" msgstr "" #: ../aggregate_graphs.php:1337 ../aggregate_graphs.php:1450 #: ../automation_graph_rules.php:866 ../automation_graph_rules.php:867 #: ../automation_networks.php:421 ../automation_networks.php:633 #: ../automation_tree_rules.php:855 ../data_sources.php:824 #: ../data_sources.php:1211 ../data_sources.php:1436 ../data_templates.php:932 #: ../graph_view.php:782 ../graphs.php:1326 ../graphs.php:1658 #: ../graphs_items.php:309 ../graphs_items.php:330 ../host.php:1013 #: ../host.php:1317 ../host.php:1352 ../include/global_arrays.php:330 #: ../include/global_arrays.php:383 ../include/global_arrays.php:459 #: ../include/global_arrays.php:571 ../include/global_arrays.php:594 #: ../include/global_arrays.php:1318 ../include/global_form.php:389 #: ../include/global_form.php:712 ../include/global_form.php:721 #: ../include/global_form.php:732 ../include/global_form.php:775 #: ../include/global_form.php:782 ../include/global_form.php:808 #: ../include/global_form.php:837 ../include/global_form.php:845 #: ../include/global_form.php:1032 ../include/global_form.php:1041 #: ../include/global_form.php:2097 ../include/global_form.php:2139 #: ../include/global_settings.php:445 ../include/global_settings.php:453 #: ../include/global_settings.php:900 ../include/global_settings.php:1324 #: ../lib/api_automation.php:144 ../lib/api_automation.php:422 #: ../lib/api_automation.php:439 ../lib/api_automation.php:576 #: ../lib/api_automation.php:999 ../lib/html.php:1634 ../lib/html_form.php:315 #: ../lib/html_graph.php:396 ../lib/html_reports.php:280 #: ../lib/html_reports.php:328 ../lib/html_reports.php:340 #: ../lib/html_reports.php:349 ../lib/html_reports.php:359 #: ../lib/html_tree.php:843 ../settings.php:197 ../settings.php:214 #: ../settings.php:237 ../user_admin.php:2542 ../user_admin.php:2739 #: ../user_group_admin.php:2144 ../user_group_admin.php:2254 #: ../utilities.php:1560 msgid "None" msgstr "ãªã—" #: ../aggregate_graphs.php:1435 msgid "The title for the Aggregate Graphs" msgstr "" #: ../aggregate_graphs.php:1436 msgid "The internal database identifier for this object" msgstr "" #: ../aggregate_graphs.php:1437 ../graphs.php:1062 #, fuzzy msgid "Aggregate Template" msgstr "グラフã®ãƒ†ãƒ³ãƒ—レート" #: ../aggregate_graphs.php:1437 msgid "The Aggregate Template that this Aggregate Graphs is based upon" msgstr "" #: ../aggregate_graphs.php:1456 #, fuzzy msgid "No Aggregate Graphs Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../aggregate_items.php:346 msgid "Override Values for Graph Item" msgstr "" #: ../aggregate_items.php:357 ../lib/api_aggregate.php:1392 msgid "Override this Value" msgstr "" #: ../aggregate_templates.php:307 msgid "Click 'Continue' to Delete the following Aggregate Graph Template(s)." msgstr "" #: ../aggregate_templates.php:312 #, fuzzy msgid "Delete Color Template(s)" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../aggregate_templates.php:315 msgid "You must select at least one Aggregate Graph Template." msgstr "" #: ../aggregate_templates.php:351 #, php-format msgid "Aggregate Template [edit: %s]" msgstr "" #: ../aggregate_templates.php:353 #, fuzzy msgid "Aggregate Template [new]" msgstr "グラフテンプレートå" #: ../aggregate_templates.php:531 ../aggregate_templates.php:631 #: ../lib/functions.php:2532 #, fuzzy msgid "Aggregate Templates" msgstr "グラフテンプレート" #: ../aggregate_templates.php:544 ../automation_templates.php:418 #: ../automation_templates.php:503 ../color_templates.php:550 #: ../include/global_arrays.php:695 ../include/global_arrays.php:753 #: ../install/index.php:898 ../user_admin.php:2839 ../user_group_admin.php:2354 #, fuzzy msgid "Templates" msgstr "グラフテンプレート" #: ../aggregate_templates.php:571 ../cdef.php:746 ../color.php:559 #: ../color_templates.php:469 ../data_sources.php:1278 #: ../gprint_presets.php:286 ../graph_templates.php:652 ../vdef.php:683 #, fuzzy msgid "Has Graphs" msgstr "グラフ" #: ../aggregate_templates.php:640 ../color_templates.php:547 #, fuzzy msgid "Template Title" msgstr "テンプレートå" #: ../aggregate_templates.php:641 msgid "" "Aggregate Templates that are in use can not be Deleted. In use is defined " "as being referenced by an Aggregate." msgstr "" #: ../aggregate_templates.php:641 ../cdef.php:852 ../color.php:699 #: ../color_templates.php:548 ../data_input.php:723 ../data_queries.php:1154 #: ../data_source_profiles.php:849 ../data_sources.php:1408 #: ../data_templates.php:911 ../gprint_presets.php:392 #: ../graph_templates.php:763 ../host_templates.php:816 ../vdef.php:846 #, fuzzy msgid "Deletable" msgstr "削除" #: ../aggregate_templates.php:642 ../cdef.php:853 ../color.php:700 #: ../data_queries.php:912 ../data_queries.php:1155 ../gprint_presets.php:393 #: ../graph_templates.php:764 ../vdef.php:847 #, fuzzy msgid "Graphs Using" msgstr "グラフ設定" #: ../aggregate_templates.php:643 ../graph_view.php:619 #: ../include/global_arrays.php:655 ../include/global_arrays.php:989 #: ../include/global_form.php:1323 ../include/global_form.php:1551 #: ../lib/html_reports.php:345 ../tree.php:1286 msgid "Graph Template" msgstr "グラフã®ãƒ†ãƒ³ãƒ—レート" #: ../aggregate_templates.php:665 #, fuzzy msgid "No Aggregate Templates Found" msgstr "グラフテンプレートãŒã‚りã¾ã›ã‚“" #: ../auth_changepassword.php:93 msgid "You cannot use a previously entered password!" msgstr "" #: ../auth_changepassword.php:110 ../auth_changepassword.php:120 msgid "Your current password is not correct. Please try again." msgstr "" #: ../auth_changepassword.php:115 ../auth_changepassword.php:125 msgid "" "Your new password cannot be the same as the old password. Please try again." msgstr "" #: ../auth_changepassword.php:131 #, fuzzy msgid "Your new passwords do not match, please retype." msgstr "パスワードãŒä¸€è‡´ã—ã¾ã›ã‚“。もã†ä¸€åº¦å…¥åŠ›ã—ã¦ãã ã•ã„。" #: ../auth_changepassword.php:224 msgid "Forced password change" msgstr "" #: ../auth_changepassword.php:228 msgid "Password requirements include:" msgstr "" #: ../auth_changepassword.php:232 #, php-format msgid "Must be at least %d characters in length" msgstr "" #: ../auth_changepassword.php:236 msgid "Must include mixed case" msgstr "" #: ../auth_changepassword.php:240 msgid "Must include at least 1 number" msgstr "" #: ../auth_changepassword.php:244 msgid "Must include at least 1 special character" msgstr "" #: ../auth_changepassword.php:248 #, php-format msgid "Cannot be reused for %d password changes" msgstr "" #: ../auth_changepassword.php:258 ../auth_changepassword.php:284 #: ../include/global_form.php:1468 ../lib/functions.php:1826 #, fuzzy msgid "Change Password" msgstr "åŽé›†ã®å¤‰æ›´" #: ../auth_changepassword.php:290 #, fuzzy msgid "Please enter your current password and your new
    Cacti password." msgstr "下記㫠Cacti ユーザーåã¨ãƒ‘スワードを入力ã—ã¦ãã ã•ã„:" #: ../auth_changepassword.php:295 #, fuzzy msgid "Current password" msgstr "ç¾åœ¨ (ミリ秒)" #: ../auth_changepassword.php:299 #, fuzzy msgid "New password" msgstr "パスワード" #: ../auth_changepassword.php:303 msgid "Confirm new password" msgstr "" #: ../auth_changepassword.php:307 ../lib/html_form.php:1113 #: ../lib/html_form.php:1122 ../lib/html_graph.php:197 ../lib/html_tree.php:649 msgid "Save" msgstr "ä¿å­˜" #: ../auth_changepassword.php:316 ../auth_login.php:649 #, fuzzy, php-format msgid "Version %1$s | %2$s" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ 1" #: ../auth_login.php:50 msgid "" "Web Basic Authentication configured, but no username was passed from the web " "server. Please make sure you have authentication enabled on the web server." msgstr "" #: ../auth_login.php:97 #, php-format msgid "" "%s authenticated by Web Server, but both Template and Guest Users are not " "defined in Cacti." msgstr "" #: ../auth_login.php:116 ../auth_login.php:405 #, php-format msgid "LDAP Search Error: %s" msgstr "" #: ../auth_login.php:142 ../auth_login.php:445 #, php-format msgid "LDAP Error: %s" msgstr "" #: ../auth_login.php:219 ../auth_login.php:437 #, fuzzy, php-format msgid "Template user %s does not exist." msgstr "XML: Cacti ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå­˜åœ¨ã—ã¾ã›ã‚“。" #: ../auth_login.php:234 #, fuzzy, php-format msgid "Guest user %s does not exist." msgstr "XML: ãƒãƒƒã‚·ãƒ¥ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå­˜åœ¨ã—ã¾ã›ã‚“。" #: ../auth_login.php:269 #, fuzzy msgid "Access Denied, user account disabled." msgstr "アクセス拒å¦ã•れã¾ã—ãŸã€‚Cacti 管ç†è€…ã«é€£çµ¡ã—ã¦ãã ã•ã„。" #: ../auth_login.php:355 msgid "Access Denied, please contact you Cacti Administrator." msgstr "アクセス拒å¦ã•れã¾ã—ãŸã€‚Cacti 管ç†è€…ã«é€£çµ¡ã—ã¦ãã ã•ã„。" #: ../auth_login.php:519 #, fuzzy msgid "Login to Cacti" msgstr "Cacti ã«ã¤ã„ã¦" #: ../auth_login.php:552 #, fuzzy msgid "User Login" msgstr "最終ログイン" #: ../auth_login.php:564 #, fuzzy msgid "Enter your Username and Password below" msgstr "下記㫠Cacti ユーザーåã¨ãƒ‘スワードを入力ã—ã¦ãã ã•ã„:" #: ../auth_login.php:570 ../auth_login.php:573 #: ../include/global_settings.php:1187 ../lib/functions.php:3801 msgid "Username" msgstr "ユーザーå" #: ../auth_login.php:578 ../include/global_form.php:1435 #: ../lib/functions.php:3802 msgid "Password" msgstr "パスワード" #: ../auth_login.php:590 ../include/global_settings.php:1574 #: ../lib/auth.php:287 ../lib/auth.php:299 ../lib/auth.php:310 msgid "Local" msgstr "ローカル" #: ../auth_login.php:594 ../include/global_arrays.php:582 ../lib/auth.php:311 msgid "LDAP" msgstr "LDAP" #: ../auth_login.php:605 ../user_admin.php:2266 ../user_group_admin.php:675 msgid "Realm" msgstr "領域" #: ../auth_login.php:621 msgid "Keep me signed in" msgstr "" #: ../auth_login.php:627 msgid "Login" msgstr "ログイン" #: ../auth_login.php:640 msgid "Invalid User Name/Password Please Retype" msgstr "" #: ../auth_login.php:643 msgid "User Account Disabled" msgstr "ユーザーアカウントã¯ç„¡åйã§ã™" #: ../auth_profile.php:150 #, fuzzy msgid "User Account Details" msgstr "ユーザーアカウントã¯ç„¡åйã§ã™" #: ../auth_profile.php:161 ../include/global_arrays.php:565 #: ../include/global_settings.php:1910 ../lib/html.php:1519 #: ../lib/html.php:1541 #, fuzzy msgid "Tree View" msgstr "ツリー表示モードツリーモード" #: ../auth_profile.php:165 ../include/global_arrays.php:566 #: ../lib/html.php:1526 ../lib/html.php:1550 #, fuzzy msgid "List View" msgstr "一覧表示モード" #: ../auth_profile.php:169 ../include/global_arrays.php:567 #: ../lib/html.php:1533 #, fuzzy msgid "Preview View" msgstr "プレビューモード" #: ../auth_profile.php:182 ../include/global_form.php:1411 #: ../user_admin.php:2263 msgid "User Name" msgstr "ユーザーå" #: ../auth_profile.php:183 ../include/global_form.php:1412 msgid "The login name for this user." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../auth_profile.php:190 ../include/global_form.php:1419 #: ../user_admin.php:2264 ../user_group_admin.php:675 ../utilities.php:764 msgid "Full Name" msgstr "フルãƒãƒ¼ãƒ " #: ../auth_profile.php:191 ../include/global_form.php:1420 msgid "" "A more descriptive name for this user, that can include spaces or special " "characters." msgstr "" #: ../auth_profile.php:198 ../include/global_form.php:1427 msgid "Email Address" msgstr "" #: ../auth_profile.php:199 msgid "An Email Address you be reached at." msgstr "" #: ../auth_profile.php:206 ../auth_profile.php:208 msgid "Clear Private Data" msgstr "" #: ../auth_profile.php:207 msgid "Clear Private Data including Column sizing." msgstr "" #: ../auth_profile.php:217 ../auth_profile.php:219 #, fuzzy msgid "Logout Everywhere" msgstr "ユーザーログアウト" #: ../auth_profile.php:218 msgid "Clear all your Login Session Tokens." msgstr "" #: ../auth_profile.php:239 ../user_admin.php:1928 ../user_group_admin.php:1649 #, fuzzy msgid "User Settings" msgstr "設定" #: ../auth_profile.php:296 #, fuzzy msgid "Private Data Cleared" msgstr "連想データ照会" #: ../auth_profile.php:296 msgid "Your Private Data has been cleared." msgstr "" #: ../auth_profile.php:316 msgid "All your login sessions have been cleared." msgstr "" #: ../auth_profile.php:316 msgid "User Sessions Cleared" msgstr "" #: ../automation_devices.php:31 #, fuzzy msgid "Add Device" msgstr "デãƒã‚¤ã‚¹" #: ../automation_devices.php:39 ../automation_devices.php:271 #: ../automation_devices.php:389 ../automation_devices.php:399 #: ../automation_devices.php:622 ../automation_devices.php:623 ../host.php:1390 #: ../lib/api_automation.php:166 ../lib/api_automation.php:1021 #: ../lib/html_utility.php:811 msgid "Down" msgstr "" #: ../automation_devices.php:40 ../automation_devices.php:271 #: ../automation_devices.php:391 ../automation_devices.php:401 #: ../automation_devices.php:622 ../automation_devices.php:623 ../host.php:1389 #: ../lib/api_automation.php:165 ../lib/api_automation.php:1020 #: ../lib/html_utility.php:817 msgid "Up" msgstr "" #: ../automation_devices.php:90 msgid "Added manually through device automation interface." msgstr "" #: ../automation_devices.php:106 #, fuzzy msgid "Added to Cacti" msgstr "Cacti ã«ã¤ã„ã¦" #: ../automation_devices.php:106 ../automation_devices.php:108 #: ../data_sources.php:822 ../graph_view.php:619 ../graphs.php:1331 #: ../graphs_items.php:304 ../include/global_arrays.php:651 #: ../include/global_arrays.php:696 ../include/global_arrays.php:1434 #: ../lib/api_automation.php:417 ../lib/functions.php:3796 ../lib/html.php:1629 #: ../lib/html.php:1659 ../lib/html_reports.php:335 ../lib/html_tree.php:349 #: ../lib/html_tree.php:377 ../utilities.php:1409 msgid "Device" msgstr "デãƒã‚¤ã‚¹" #: ../automation_devices.php:108 msgid "Not Added to Cacti" msgstr "" #: ../automation_devices.php:177 msgid "Click 'Continue' to add the following Discovered device(s)." msgstr "" #: ../automation_devices.php:183 ../pollers.php:602 msgid "Pollers" msgstr "åŽé›†" #: ../automation_devices.php:187 #, fuzzy msgid "Select Template" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../automation_devices.php:193 ../automation_templates.php:307 #: ../automation_templates.php:513 msgid "Availability Method" msgstr "" #: ../automation_devices.php:199 #, fuzzy msgid "Add Device(s)" msgstr "デãƒã‚¤ã‚¹" #: ../automation_devices.php:202 msgid "You must select at least one Device." msgstr "" #: ../automation_devices.php:239 ../automation_devices.php:529 ../host.php:1303 #: ../host.php:1396 ../host.php:1489 ../include/global_arrays.php:683 #: ../include/global_arrays.php:735 ../lib/api_automation.php:172 #: ../lib/api_automation.php:466 ../lib/functions.php:2136 ../pollers.php:616 #: ../sites.php:483 ../tree.php:1567 ../user_admin.php:1234 #: ../user_admin.php:2752 ../user_group_admin.php:958 #: ../user_group_admin.php:2267 ../utilities.php:263 msgid "Devices" msgstr "デãƒã‚¤ã‚¹" #: ../automation_devices.php:248 #, fuzzy msgid "Device Name" msgstr "デãƒã‚¤ã‚¹" #: ../automation_devices.php:249 msgid "IP" msgstr "" #: ../automation_devices.php:250 #, fuzzy msgid "SNMP Name" msgstr "SNMP タイムアウト" #: ../automation_devices.php:251 ../include/global_settings.php:1570 #, fuzzy msgid "Location" msgstr "æ“作" #: ../automation_devices.php:252 msgid "Contact" msgstr "" #: ../automation_devices.php:253 ../include/global_form.php:970 #: ../include/global_form.php:1006 ../include/global_form.php:1287 #: ../include/global_form.php:1630 ../install/index.php:899 #: ../lib/api_automation.php:269 ../lib/api_automation.php:1137 #: ../managers.php:222 ../tree.php:647 ../user_admin.php:1101 #: ../user_admin.php:1242 ../user_group_admin.php:966 #: ../user_group_admin.php:1883 msgid "Description" msgstr "説明" #: ../automation_devices.php:254 ../automation_devices.php:499 msgid "OS" msgstr "" #: ../automation_devices.php:255 ../host.php:1505 #: ../include/global_arrays.php:331 msgid "Uptime" msgstr "" #: ../automation_devices.php:256 ../automation_devices.php:514 #: ../utilities.php:1605 msgid "SNMP" msgstr "SNMP" #: ../automation_devices.php:257 ../automation_devices.php:484 #: ../automation_graph_rules.php:729 ../automation_networks.php:964 #: ../automation_tree_rules.php:721 ../data_sources.php:1231 #: ../data_templates.php:915 ../host.php:686 ../host.php:778 ../host.php:1381 #: ../host.php:1503 ../lib/api_automation.php:157 ../lib/api_automation.php:271 #: ../lib/api_automation.php:560 ../lib/api_automation.php:1012 #: ../lib/api_automation.php:1140 ../lib/html_reports.php:1384 #: ../managers.php:224 ../plugins.php:282 ../plugins.php:377 ../pollers.php:614 #: ../user_admin.php:1242 ../user_group_admin.php:966 msgid "Status" msgstr "状態" #: ../automation_devices.php:258 msgid "Last Check" msgstr "" #: ../automation_devices.php:285 ../automation_devices.php:614 msgid "Not Detected" msgstr "" #: ../automation_devices.php:303 ../host.php:1547 #, fuzzy msgid "No Devices Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../automation_devices.php:439 #, fuzzy msgid "Discovery Filters" msgstr "検索フィルター" #: ../automation_devices.php:454 msgid "Network" msgstr "" #: ../automation_devices.php:471 msgid "Reset fields to defaults" msgstr "" #: ../automation_devices.php:474 ../color.php:571 ../lib/html_form.php:1128 #, fuzzy msgid "Export" msgstr "データをエクスãƒãƒ¼ãƒˆã™ã‚‹" #: ../automation_devices.php:474 #, fuzzy msgid "Export to a file" msgstr "データをエクスãƒãƒ¼ãƒˆã™ã‚‹" #: ../automation_devices.php:477 ../lib/clog_webapi.php:120 #: ../lib/clog_webapi.php:346 ../managers.php:749 msgid "Purge" msgstr "" #: ../automation_devices.php:477 msgid "Purge Discovered Devices" msgstr "" #: ../automation_graph_rules.php:29 ../automation_snmp.php:30 #: ../automation_tree_rules.php:29 ../cdef.php:30 ../color_templates.php:29 #: ../data_templates.php:34 ../graph_templates.php:34 ../graphs.php:63 #: ../host_templates.php:31 ../include/global_arrays.php:1231 ../vdef.php:30 msgid "Duplicate" msgstr "複製" #: ../automation_graph_rules.php:30 ../automation_networks.php:33 #: ../automation_tree_rules.php:30 ../data_sources.php:38 ../host.php:39 #: ../include/global_arrays.php:1232 ../include/global_settings.php:1145 #: ../links.php:29 ../managers.php:29 ../managers.php:35 ../plugins.php:29 #: ../pollers.php:31 ../user_admin.php:30 ../user_domains.php:31 #: ../user_domains.php:402 ../user_group_admin.php:32 msgid "Enable" msgstr "有効" #: ../automation_graph_rules.php:31 ../automation_networks.php:32 #: ../automation_tree_rules.php:31 ../data_sources.php:39 ../host.php:40 #: ../include/global_arrays.php:1233 ../links.php:30 ../managers.php:30 #: ../managers.php:34 ../plugins.php:30 ../pollers.php:30 ../user_admin.php:31 #: ../user_domains.php:30 ../user_group_admin.php:33 msgid "Disable" msgstr "無効" #: ../automation_graph_rules.php:251 #, fuzzy msgid "Press 'Continue' to delete the following Graph Rules." msgstr "次ã®ã‚°ãƒ©ãƒ•を本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../automation_graph_rules.php:258 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Graph Rules." msgstr "" #: ../automation_graph_rules.php:260 ../automation_tree_rules.php:262 #: ../graphs.php:851 ../graphs.php:862 #, fuzzy msgid "Title Format" msgstr "題åã®æ›¸å¼:" #: ../automation_graph_rules.php:260 ../automation_tree_rules.php:262 msgid "rule_name" msgstr "" #: ../automation_graph_rules.php:266 ../automation_tree_rules.php:268 msgid "Click 'Continue' to enable the following Rule(s)." msgstr "" #: ../automation_graph_rules.php:268 ../automation_tree_rules.php:270 msgid "Make sure, that those rules have successfully been tested!" msgstr "" #: ../automation_graph_rules.php:274 ../automation_tree_rules.php:276 msgid "Click 'Continue' to disable the following Rule(s)." msgstr "" #: ../automation_graph_rules.php:281 ../automation_tree_rules.php:283 msgid "You must select at least one Rule." msgstr "" #: ../automation_graph_rules.php:284 ../automation_tree_rules.php:286 msgid "Apply requested action" msgstr "" #: ../automation_graph_rules.php:414 ../automation_tree_rules.php:471 msgid "Are You Sure?" msgstr "本当ã«ã—ã¾ã™ã‹?" #: ../automation_graph_rules.php:414 #, fuzzy, php-format msgid "Are you sure you want to delete the Rule '%s'?" msgstr "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../automation_graph_rules.php:497 #, php-format msgid "Rule Selection [edit: %s]" msgstr "" #: ../automation_graph_rules.php:503 msgid "Rule Selection [new]" msgstr "" #: ../automation_graph_rules.php:513 ../automation_graph_rules.php:528 #: ../automation_graph_rules.php:544 ../automation_tree_rules.php:379 #: ../automation_tree_rules.php:529 msgid "Don't Show" msgstr "" #: ../automation_graph_rules.php:513 msgid "Rule Details." msgstr "" #: ../automation_graph_rules.php:528 msgid "Matching Devices." msgstr "" #: ../automation_graph_rules.php:544 msgid "Matching Objects." msgstr "" #: ../automation_graph_rules.php:580 msgid "Device Selection Criteria" msgstr "" #: ../automation_graph_rules.php:586 msgid "Graph Creation Criteria" msgstr "" #: ../automation_graph_rules.php:692 ../automation_graph_rules.php:739 #: ../automation_graph_rules.php:846 ../include/global_arrays.php:706 #: ../include/global_form.php:1571 ../lib/functions.php:2586 #, fuzzy msgid "Graph Rules" msgstr "グラフ項目" #: ../automation_graph_rules.php:707 ../automation_graph_rules.php:857 #: ../include/global_arrays.php:992 ../include/global_form.php:1561 #: ../include/global_form.php:2176 msgid "Data Query" msgstr "データå•åˆã›" #: ../automation_graph_rules.php:734 ../automation_graph_rules.php:859 #: ../automation_networks.php:496 ../automation_tree_rules.php:848 #: ../automation_tree_rules.php:866 ../data_sources.php:1236 ../host.php:1386 #: ../include/global_arrays.php:614 ../include/global_form.php:1443 #: ../include/global_settings.php:339 ../lib/api_automation.php:162 #: ../lib/api_automation.php:1017 ../lib/html_reports.php:1389 #: ../lib/html_reports.php:1482 ../lib/html_reports.php:1493 #: ../lib/html_reports.php:1529 ../links.php:381 ../managers.php:249 #: ../managers.php:628 ../user_admin.php:1101 ../user_admin.php:1113 #: ../user_admin.php:2265 ../user_domains.php:341 ../user_domains.php:718 #: ../user_group_admin.php:87 ../user_group_admin.php:675 #: ../user_group_admin.php:690 ../user_group_admin.php:1887 #: ../utilities.php:2142 msgid "Enabled" msgstr "有効" #: ../automation_graph_rules.php:735 ../automation_networks.php:979 #: ../automation_tree_rules.php:866 ../data_sources.php:1237 #: ../data_templates.php:934 ../host.php:1387 ../include/global_arrays.php:613 #: ../include/global_arrays.php:1159 ../include/global_arrays.php:1442 #: ../include/global_settings.php:339 ../include/global_settings.php:1021 #: ../include/global_settings.php:1035 ../include/global_settings.php:1047 #: ../include/global_settings.php:1072 ../include/global_settings.php:1086 #: ../include/global_settings.php:1145 ../include/global_settings.php:1764 #: ../lib/api_automation.php:163 ../lib/api_automation.php:1018 #: ../lib/html_reports.php:1390 ../lib/html_reports.php:1529 #: ../lib/html_utility.php:807 ../managers.php:249 ../managers.php:628 #: ../pollers.php:40 ../user_admin.php:1113 ../user_domains.php:402 #: ../user_group_admin.php:690 ../utilities.php:2142 msgid "Disabled" msgstr "無効" #: ../automation_graph_rules.php:855 ../automation_tree_rules.php:842 #, fuzzy msgid "Rule Name" msgstr "フルãƒãƒ¼ãƒ " #: ../automation_graph_rules.php:855 #, fuzzy msgid "The name of this rule." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../automation_graph_rules.php:856 msgid "" "The internal database ID for this rule. Useful in performing debugging and " "automation." msgstr "" #: ../automation_graph_rules.php:858 ../include/global_form.php:1803 #: ../include/global_form.php:1886 ../include/global_form.php:1988 #: ../include/global_form.php:2187 #, fuzzy msgid "Graph Type" msgstr "グラフ項目ã®ç¨®é¡ž" #: ../automation_graph_rules.php:881 #, fuzzy msgid "No Graph Rules Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../automation_networks.php:34 msgid "Discover Now" msgstr "" #: ../automation_networks.php:35 msgid "Cancel Discovery" msgstr "" #: ../automation_networks.php:185 #, php-format msgid "ERROR: You must specificy the day of the week. Disabling Network %s!." msgstr "" #: ../automation_networks.php:191 #, php-format msgid "" "ERROR: You must specificy both the Months and Days of Month. Disabling " "Network %s!." msgstr "" #: ../automation_networks.php:197 #, php-format msgid "" "ERROR: You must specificy the Months, Weeks of Months, and Days of Week. " "Disabling Network %s!." msgstr "" #: ../automation_networks.php:215 #, php-format msgid "ERROR: Network '%s' is Invalid." msgstr "" #: ../automation_networks.php:312 #, fuzzy msgid "Click 'Continue' to delete the following Network(s)." msgstr "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../automation_networks.php:319 msgid "Click 'Continue' to enable the following Network(s)." msgstr "" #: ../automation_networks.php:326 msgid "Click 'Continue' to disable the following Network(s)." msgstr "" #: ../automation_networks.php:333 msgid "Click 'Continue' to discover the following Network(s)." msgstr "" #: ../automation_networks.php:340 msgid "Click 'Continue' to cancel on going Network Discovery(s)." msgstr "" #: ../automation_networks.php:347 msgid "You must select at least one Network." msgstr "" #: ../automation_networks.php:378 ../automation_networks.php:952 #: ../tree.php:1087 msgid "Manual" msgstr "" #: ../automation_networks.php:379 ../automation_networks.php:953 #: ../include/global_arrays.php:500 msgid "Daily" msgstr "" #: ../automation_networks.php:380 ../automation_networks.php:954 msgid "Weekly" msgstr "" #: ../automation_networks.php:381 ../automation_networks.php:955 msgid "Monthly" msgstr "" #: ../automation_networks.php:382 ../automation_networks.php:956 msgid "Monthly on Day" msgstr "" #: ../automation_networks.php:386 #, php-format msgid "Network Discovery Range [edit: %s]" msgstr "" #: ../automation_networks.php:388 msgid "Network Discovery Range [new]" msgstr "" #: ../automation_networks.php:395 ../include/global_form.php:1855 #: ../include/global_form.php:1955 ../include/global_settings.php:51 #: ../lib/html_reports.php:30 #, fuzzy msgid "General Settings" msgstr "グラフ設定" #: ../automation_networks.php:400 ../automation_snmp.php:645 #: ../data_input.php:468 ../data_input.php:502 ../data_queries.php:594 #: ../data_queries.php:690 ../data_queries.php:910 #: ../data_source_profiles.php:486 ../graph_templates.php:423 #: ../include/global_form.php:35 ../include/global_form.php:104 #: ../include/global_form.php:154 ../include/global_form.php:174 #: ../include/global_form.php:215 ../include/global_form.php:339 #: ../include/global_form.php:366 ../include/global_form.php:473 #: ../include/global_form.php:930 ../include/global_form.php:962 #: ../include/global_form.php:1259 ../include/global_form.php:1279 #: ../include/global_form.php:1349 ../include/global_form.php:1377 #: ../include/global_form.php:2070 ../include/global_form.php:2168 #: ../include/global_form.php:2215 ../install/index.php:466 #: ../install/index.php:543 ../install/index.php:899 ../lib/vdef.php:74 #: ../managers.php:607 ../pollers.php:52 ../sites.php:40 ../user_admin.php:1101 #: ../user_domains.php:317 ../utilities.php:466 ../utilities.php:2338 msgid "Name" msgstr "åå‰" #: ../automation_networks.php:401 msgid "Give this Network a meaningful name." msgstr "" #: ../automation_networks.php:404 msgid "New Network Discovery Range" msgstr "" #: ../automation_networks.php:408 ../automation_networks.php:961 #: ../host.php:1330 msgid "Data Collector" msgstr "" #: ../automation_networks.php:409 ../include/global_form.php:1022 msgid "" "Choose the Cacti Data Collector/Poller to be used to gather data from this " "Device." msgstr "" #: ../automation_networks.php:416 #, fuzzy msgid "Associated Site" msgstr "関連グラフテンプレート" #: ../automation_networks.php:417 msgid "" "Choose the Cacti Site that you wish to associate discovered Devices with." msgstr "" #: ../automation_networks.php:425 msgid "Subnet Range" msgstr "" #: ../automation_networks.php:426 msgid "" "Enter valid Network Ranges separated by commas. You may use an IP address, " "a Network range such as 192.168.1.0/24 or 192.168.1.0/255.255.255.0, or " "using wildcards such as 192.168.*.*" msgstr "" #: ../automation_networks.php:435 msgid "Total IP Addresses" msgstr "" #: ../automation_networks.php:436 msgid "Total addressable IP Addresses in this Network Range." msgstr "" #: ../automation_networks.php:441 msgid "Alternate DNS Servers" msgstr "" #: ../automation_networks.php:442 msgid "" "A space delimited list of alternate DNS Servers to use for DNS resolution. " "If blank, the poller OS will be used to resolve DNS names." msgstr "" #: ../automation_networks.php:445 msgid "Enter IPs or FQDNs of DNS Servers" msgstr "" #: ../automation_networks.php:449 #, fuzzy msgid "Schedule Type" msgstr "é …ç›®ã®ç¨®é¡ž" #: ../automation_networks.php:450 msgid "Define the collection frequency." msgstr "" #: ../automation_networks.php:457 msgid "Discovery Threads" msgstr "" #: ../automation_networks.php:458 msgid "Define the number of threads to use for discovering this Network Range." msgstr "" #: ../automation_networks.php:461 #, php-format msgid "%d Thread" msgstr "" #: ../automation_networks.php:462 ../automation_networks.php:463 #: ../automation_networks.php:464 ../automation_networks.php:465 #: ../automation_networks.php:466 ../automation_networks.php:467 #: ../automation_networks.php:468 ../automation_networks.php:469 #: ../automation_networks.php:470 ../automation_networks.php:471 #: ../automation_networks.php:472 ../include/global_arrays.php:548 #: ../include/global_arrays.php:549 ../include/global_arrays.php:550 #: ../include/global_arrays.php:551 ../include/global_arrays.php:552 #, php-format msgid "%d Threads" msgstr "" #: ../automation_networks.php:478 #, fuzzy msgid "Run Limit" msgstr "下é™" #: ../automation_networks.php:479 msgid "After the selected Run Limit, the discovery process will be terminated." msgstr "" #: ../automation_networks.php:482 #, php-format msgid "%d Minute" msgstr "" #: ../automation_networks.php:483 ../automation_networks.php:484 #: ../automation_networks.php:485 ../automation_networks.php:486 #: ../data_sources.php:1071 ../include/global_arrays.php:490 #: ../include/global_arrays.php:491 ../include/global_arrays.php:492 #: ../include/global_arrays.php:493 ../include/global_arrays.php:523 #: ../include/global_arrays.php:524 ../include/global_arrays.php:525 #: ../include/global_arrays.php:526 ../include/global_arrays.php:527 #: ../include/global_arrays.php:528 ../include/global_arrays.php:846 #: ../include/global_arrays.php:847 ../include/global_arrays.php:1166 #: ../include/global_arrays.php:1170 ../include/global_arrays.php:1178 #: ../include/global_arrays.php:1179 ../include/global_arrays.php:1201 #: ../include/global_arrays.php:1202 ../include/global_arrays.php:1203 #: ../include/global_arrays.php:1204 ../include/global_arrays.php:1205 #: ../include/global_arrays.php:1216 ../include/global_settings.php:1088 #: ../include/global_settings.php:1089 ../include/global_settings.php:1090 #: ../include/global_settings.php:1091 ../include/global_settings.php:1092 #: ../include/global_settings.php:1837 #, php-format msgid "%d Minutes" msgstr "" #: ../automation_networks.php:487 ../include/global_arrays.php:1071 #, php-format msgid "%d Hour" msgstr "" #: ../automation_networks.php:488 ../automation_networks.php:489 #: ../automation_networks.php:490 ../data_source_profiles.php:656 #: ../include/global_arrays.php:495 ../include/global_arrays.php:496 #: ../include/global_arrays.php:497 ../include/global_arrays.php:498 #: ../include/global_arrays.php:499 ../include/global_arrays.php:530 #: ../include/global_arrays.php:531 ../include/global_arrays.php:532 #: ../include/global_arrays.php:533 ../include/global_arrays.php:1072 #: ../include/global_arrays.php:1073 ../include/global_arrays.php:1074 #: ../include/global_arrays.php:1075 ../include/global_arrays.php:1118 #: ../include/global_arrays.php:1119 ../include/global_arrays.php:1120 #: ../include/global_arrays.php:1121 ../include/global_arrays.php:1122 #: ../include/global_arrays.php:1139 ../include/global_arrays.php:1140 #: ../include/global_arrays.php:1141 ../include/global_arrays.php:1142 #: ../include/global_arrays.php:1143 ../include/global_settings.php:1094 #: ../include/global_settings.php:1095 ../include/global_settings.php:1096 #: ../include/global_settings.php:1097 #, php-format msgid "%d Hours" msgstr "" #: ../automation_networks.php:497 msgid "Enable this Network Range Enabled." msgstr "" #: ../automation_networks.php:502 #, fuzzy msgid "Enable NetBIOS" msgstr "有効" #: ../automation_networks.php:503 msgid "Use NetBIOS to attempt to result the hostname of up hosts." msgstr "" #: ../automation_networks.php:509 msgid "Automatically Add to Cacti" msgstr "" #: ../automation_networks.php:510 msgid "" "For any newly discovered Devices that are reachable using SNMP and who match " "a Device Rule, add them to Cacti." msgstr "" #: ../automation_networks.php:515 #, fuzzy msgid "Rerun Data Queries" msgstr "データå•åˆã›" #: ../automation_networks.php:516 msgid "" "If a device, previously added to Cacti, is found, rerun its data queries." msgstr "" #: ../automation_networks.php:521 msgid "Discovery Timing" msgstr "" #: ../automation_networks.php:526 #, fuzzy msgid "Starting Date/Time" msgstr "ソートã®ç¨®é¡ž" #: ../automation_networks.php:527 msgid "What time will this Network discover item start?" msgstr "" #: ../automation_networks.php:535 msgid "Rerun Every" msgstr "" #: ../automation_networks.php:536 msgid "Rerun discovery for this Network Range every X." msgstr "" #: ../automation_networks.php:551 msgid "Days of Week" msgstr "" #: ../automation_networks.php:552 ../automation_networks.php:610 msgid "What Day(s) of the week will this Network Range be discovered." msgstr "" #: ../automation_networks.php:554 ../automation_networks.php:612 #: ../include/global_arrays.php:1492 msgid "Sunday" msgstr "" #: ../automation_networks.php:555 ../automation_networks.php:613 #: ../include/global_arrays.php:1493 msgid "Monday" msgstr "" #: ../automation_networks.php:556 ../automation_networks.php:614 #: ../include/global_arrays.php:1494 msgid "Tuesday" msgstr "" #: ../automation_networks.php:557 ../automation_networks.php:615 #: ../include/global_arrays.php:1495 msgid "Wednesday" msgstr "" #: ../automation_networks.php:558 ../automation_networks.php:616 #: ../include/global_arrays.php:1496 msgid "Thursday" msgstr "" #: ../automation_networks.php:559 ../automation_networks.php:617 #: ../include/global_arrays.php:1497 msgid "Friday" msgstr "" #: ../automation_networks.php:560 ../automation_networks.php:618 #: ../include/global_arrays.php:1498 msgid "Saturday" msgstr "" #: ../automation_networks.php:567 msgid "Months of Year" msgstr "" #: ../automation_networks.php:568 msgid "What Months(s) of the Year will this Network Range be discovered." msgstr "" #: ../automation_networks.php:570 ../include/global_arrays.php:1462 msgid "January" msgstr "" #: ../automation_networks.php:571 ../include/global_arrays.php:1463 msgid "February" msgstr "" #: ../automation_networks.php:572 ../include/global_arrays.php:1464 msgid "March" msgstr "" #: ../automation_networks.php:573 ../include/global_arrays.php:1465 msgid "April" msgstr "" #: ../automation_networks.php:574 ../include/global_arrays.php:1466 msgid "May" msgstr "" #: ../automation_networks.php:575 ../include/global_arrays.php:1467 msgid "June" msgstr "" #: ../automation_networks.php:576 ../include/global_arrays.php:1468 msgid "July" msgstr "" #: ../automation_networks.php:577 ../include/global_arrays.php:1469 msgid "August" msgstr "" #: ../automation_networks.php:578 ../include/global_arrays.php:1470 msgid "September" msgstr "" #: ../automation_networks.php:579 ../include/global_arrays.php:1471 msgid "October" msgstr "" #: ../automation_networks.php:580 ../include/global_arrays.php:1472 msgid "November" msgstr "" #: ../automation_networks.php:581 ../include/global_arrays.php:1473 msgid "December" msgstr "" #: ../automation_networks.php:588 msgid "Days of Month" msgstr "" #: ../automation_networks.php:589 msgid "What Day(s) of the Month will this Network Range be discovered." msgstr "" #: ../automation_networks.php:590 ../automation_networks.php:602 msgid "Last" msgstr "" #: ../automation_networks.php:596 msgid "Week(s) of Month" msgstr "" #: ../automation_networks.php:597 msgid "What Week(s) of the Month will this Network Range be discovered." msgstr "" #: ../automation_networks.php:599 msgid "First" msgstr "" #: ../automation_networks.php:600 msgid "Second" msgstr "" #: ../automation_networks.php:601 msgid "Third" msgstr "" #: ../automation_networks.php:609 msgid "Day(s) of Week" msgstr "" #: ../automation_networks.php:625 #, fuzzy msgid "Reachability Settings" msgstr "Cacti 設定" #: ../automation_networks.php:630 ../include/global_arrays.php:708 #: ../include/global_form.php:1062 ../include/global_form.php:1662 #, fuzzy msgid "SNMP Options" msgstr "FTP オプション" #: ../automation_networks.php:631 msgid "Select the SNMP Options to use for discovery of this Network Range." msgstr "" #: ../automation_networks.php:637 ../include/global_form.php:1187 #, fuzzy msgid "Ping Method" msgstr "å†ç´¢å¼•方法" #: ../automation_networks.php:638 msgid "The type of ping packet to send." msgstr "" #: ../automation_networks.php:646 ../include/global_form.php:1197 #: ../include/global_settings.php:561 #, fuzzy msgid "Ping Port" msgstr "FTP ãƒãƒ¼ãƒˆ" #: ../automation_networks.php:648 ../include/global_form.php:1199 msgid "TCP or UDP port to attempt connection." msgstr "" #: ../automation_networks.php:654 ../include/global_form.php:1205 #: ../include/global_settings.php:569 msgid "Ping Timeout Value" msgstr "Ping ã®ã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆå€¤" #: ../automation_networks.php:655 ../include/global_form.php:1206 #: ../include/global_settings.php:570 msgid "" "The timeout value to use for host ICMP and UDP pinging. This host SNMP " "timeout value applies for SNMP pings." msgstr "" #: ../automation_networks.php:663 ../include/global_form.php:1214 #: ../include/global_settings.php:577 msgid "Ping Retry Count" msgstr "" #: ../automation_networks.php:664 ../include/global_form.php:1215 msgid "" "After an initial failure, the number of ping retries Cacti will attempt " "before failing." msgstr "" #: ../automation_networks.php:704 msgid "Select the days(s) of the week" msgstr "" #: ../automation_networks.php:714 msgid "Select the month(s) of the year" msgstr "" #: ../automation_networks.php:724 msgid "Select the day(s) of the month" msgstr "" #: ../automation_networks.php:734 msgid "Select the week(s) of the month" msgstr "" #: ../automation_networks.php:744 msgid "Select the day(s) of the week" msgstr "" #: ../automation_networks.php:817 ../automation_networks.php:834 msgid "every X Days" msgstr "" #: ../automation_networks.php:817 ../automation_networks.php:834 msgid "every X Weeks" msgstr "" #: ../automation_networks.php:818 msgid "every X Days." msgstr "" #: ../automation_networks.php:818 ../automation_networks.php:835 msgid "every X." msgstr "" #: ../automation_networks.php:835 msgid "every X Weeks." msgstr "" #: ../automation_networks.php:933 #, fuzzy msgid "Network Filters" msgstr "検索フィルター" #: ../automation_networks.php:943 ../automation_networks.php:1067 #: ../include/global_arrays.php:703 msgid "Networks" msgstr "" #: ../automation_networks.php:960 #, fuzzy msgid "Network Name" msgstr "ユーザーå" #: ../automation_networks.php:962 msgid "Schedule" msgstr "" #: ../automation_networks.php:963 msgid "Total IPs" msgstr "" #: ../automation_networks.php:964 msgid "The Current Status of this Networks Discovery" msgstr "" #: ../automation_networks.php:965 msgid "Pending/Running/Done" msgstr "" #: ../automation_networks.php:965 msgid "Progress" msgstr "" #: ../automation_networks.php:966 #, fuzzy msgid "Up/SNMP Hosts" msgstr "ホストãŒã‚りã¾ã›ã‚“" #: ../automation_networks.php:967 msgid "Threads" msgstr "" #: ../automation_networks.php:968 msgid "Last Runtime" msgstr "" #: ../automation_networks.php:969 msgid "Next Start" msgstr "" #: ../automation_networks.php:970 msgid "Last Started" msgstr "" #: ../automation_networks.php:995 ../pollers.php:37 ../utilities.php:1952 msgid "Running" msgstr "" #: ../automation_networks.php:1015 ../pollers.php:38 ../utilities.php:1951 msgid "Idle" msgstr "" #: ../automation_networks.php:1030 ../automation_snmp.php:705 #: ../automation_snmp.php:706 ../automation_snmp.php:707 #: ../automation_snmp.php:708 ../automation_snmp.php:709 #: ../automation_snmp.php:710 ../lib/html.php:937 ../user_admin.php:2278 #: ../utilities.php:406 ../utilities.php:792 ../utilities.php:2015 #: ../utilities.php:2115 ../utilities.php:2118 ../utilities.php:2121 #: ../utilities.php:2127 ../utilities.php:2358 msgid "N/A" msgstr "" #: ../automation_networks.php:1036 #, fuzzy msgid "No Networks Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../automation_networks.php:1085 #, fuzzy msgid "Clear Filtered" msgstr "検索フィルター" #: ../automation_snmp.php:225 msgid "You must select at least one SNMP Option." msgstr "" #: ../automation_snmp.php:233 msgid "Click 'Continue' to delete the following SNMP Option(s)." msgstr "" #: ../automation_snmp.php:240 msgid "" "Click 'Continue' to duplicate the following SNMP Options. You can optionally " "change the title format for the new SNMP Options." msgstr "" #: ../automation_snmp.php:242 #, fuzzy msgid "Name Format" msgstr "題åã®æ›¸å¼:" #: ../automation_snmp.php:242 #, fuzzy msgid "name" msgstr "ホストå" #: ../automation_snmp.php:348 msgid "Click 'Continue' to delete the following SNMP Option Item." msgstr "" #: ../automation_snmp.php:349 #, fuzzy msgid "SNMP Option:" msgstr "SNMP オプションを変更" #: ../automation_snmp.php:350 #, php-format msgid "SNMP Version: %s" msgstr "" #: ../automation_snmp.php:351 #, php-format msgid "SNMP Community/Username: %s" msgstr "" #: ../automation_snmp.php:357 msgid "Remove SNMP Item" msgstr "" #: ../automation_snmp.php:416 #, php-format msgid "SNMP Options [edit: %s]" msgstr "" #: ../automation_snmp.php:418 #, fuzzy msgid "SNMP Options [new]" msgstr "SNMP オプションを変更" #: ../automation_snmp.php:434 ../include/global_form.php:1067 #: ../include/global_form.php:1667 #, fuzzy msgid "SNMP Version" msgstr "SNMP ユーティリティãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../automation_snmp.php:435 #, fuzzy msgid "Choose the SNMP version for this host." msgstr "ã“ã®ãƒ˜ãƒƒãƒ€ãƒ¼/グラフã®è¦ªã‚’é¸æŠžã—ã¾ã™ã€‚" #: ../automation_snmp.php:443 #, fuzzy msgid "SNMP Community String" msgstr "SNMP コミュニティ" #: ../automation_snmp.php:444 msgid "Fill in the SNMP read community for this device." msgstr "" #: ../automation_snmp.php:452 ../include/global_form.php:1147 #: ../include/global_form.php:1737 msgid "SNMP Port" msgstr "SNMP ãƒãƒ¼ãƒˆ" #: ../automation_snmp.php:453 msgid "The UDP/TCP Port to poll the SNMP agent on." msgstr "" #: ../automation_snmp.php:461 ../include/global_form.php:1156 #: ../include/global_form.php:1746 msgid "SNMP Timeout" msgstr "SNMP タイムアウト" #: ../automation_snmp.php:462 ../include/global_form.php:1157 #: ../include/global_form.php:1747 msgid "" "The maximum number of milliseconds Cacti will wait for an SNMP response " "(does not work with php-snmp support)." msgstr "" #: ../automation_snmp.php:470 msgid "SNMP Retries" msgstr "" #: ../automation_snmp.php:471 msgid "" "The maximum number of attempts to reach a device via an SNMP readstring " "prior to giving up." msgstr "" #: ../automation_snmp.php:479 msgid "Maximum OID's Per Get Request" msgstr "" #: ../automation_snmp.php:480 ../include/global_form.php:1166 msgid "" "Specified the number of OIDs that can be obtained in a single SNMP Get " "request." msgstr "" #: ../automation_snmp.php:488 ../include/global_form.php:1086 #: ../include/global_form.php:1686 #, fuzzy msgid "SNMP Username (v3)" msgstr "ユーザーå" #: ../automation_snmp.php:489 ../include/global_form.php:1087 #: ../include/global_form.php:1687 #, fuzzy msgid "SNMP v3 username for this device." msgstr "ã“ã®ã‚°ãƒ©ãƒ•ツリーã®åå‰ã§ã™ã€‚" #: ../automation_snmp.php:497 ../include/global_form.php:1095 #, fuzzy msgid "SNMP Password (v3)" msgstr "FTP パスワード" #: ../automation_snmp.php:498 msgid "SNMP v3 password for this device." msgstr "" #: ../automation_snmp.php:506 ../include/global_form.php:1104 #: ../include/global_form.php:1704 msgid "SNMP Auth Protocol (v3)" msgstr "" #: ../automation_snmp.php:507 ../include/global_settings.php:499 msgid "Choose the SNMPv3 Authorization Protocol." msgstr "" #: ../automation_snmp.php:514 ../include/global_form.php:1112 msgid "SNMP Privacy Passphrase (v3)" msgstr "" #: ../automation_snmp.php:515 ../include/global_form.php:1713 #: ../include/global_settings.php:506 msgid "Choose the SNMPv3 Privacy Passphrase." msgstr "" #: ../automation_snmp.php:523 ../include/global_form.php:1121 #: ../include/global_form.php:1721 msgid "SNMP Privacy Protocol (v3)" msgstr "" #: ../automation_snmp.php:524 ../include/global_settings.php:513 msgid "Choose the SNMPv3 Privacy Protocol." msgstr "" #: ../automation_snmp.php:531 #, fuzzy msgid "SNMP Context" msgstr "SNMP コミュニティ" #: ../automation_snmp.php:532 msgid "Enter the SNMP Context to use for this device." msgstr "" #: ../automation_snmp.php:544 ../include/global_form.php:921 #: ../include/global_form.php:2117 ../include/global_form.php:2159 #: ../include/global_form.php:2313 ../lib/api_automation.php:1207 #: ../lib/api_automation.php:1269 ../lib/api_automation.php:1332 #: ../lib/html_reports.php:399 ../lib/html_reports.php:1210 msgid "Sequence" msgstr "" #: ../automation_snmp.php:545 ../lib/html_reports.php:400 msgid "Sequence of Item." msgstr "" #: ../automation_snmp.php:632 #, fuzzy, php-format msgid "SNMP Option Set [edit: %s]" msgstr "SNMP オプションを変更" #: ../automation_snmp.php:634 #, fuzzy msgid "SNMP Option Set [new]" msgstr "SNMP オプションを変更" #: ../automation_snmp.php:646 msgid "Fill in the name of this SNMP Option Set." msgstr "" #: ../automation_snmp.php:671 ../automation_snmp.php:820 #, fuzzy msgid "Automation SNMP Options" msgstr "SNMP オプションを変更" #: ../automation_snmp.php:674 ../cdef.php:584 ../lib/api_automation.php:1206 #: ../lib/api_automation.php:1268 ../lib/api_automation.php:1331 #: ../lib/html_reports.php:1209 ../vdef.php:564 msgid "Item" msgstr "é …ç›®" #: ../automation_snmp.php:675 ../include/auth.php:154 #: ../include/global_settings.php:469 ../permission_denied.php:67 #: ../plugins.php:379 msgid "Version" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../automation_snmp.php:676 ../include/global_settings.php:476 #, fuzzy msgid "Community" msgstr "SNMP コミュニティ" #: ../automation_snmp.php:677 ../lib/functions.php:3797 #, fuzzy msgid "Port" msgstr "FTP ãƒãƒ¼ãƒˆ" #: ../automation_snmp.php:678 ../include/global_settings.php:518 #, fuzzy msgid "Timeout" msgstr "SNMP タイムアウト" #: ../automation_snmp.php:679 ../include/global_settings.php:534 msgid "Retries" msgstr "" #: ../automation_snmp.php:680 msgid "Max OIDS" msgstr "" #: ../automation_snmp.php:681 #, fuzzy msgid "Auth Username" msgstr "ユーザーå" #: ../automation_snmp.php:682 #, fuzzy msgid "Auth Password" msgstr "パスワード" #: ../automation_snmp.php:683 msgid "Auth Protocol" msgstr "" #: ../automation_snmp.php:684 msgid "Priv Passphrase" msgstr "" #: ../automation_snmp.php:685 msgid "Priv Protocol" msgstr "" #: ../automation_snmp.php:686 msgid "Context" msgstr "" #: ../automation_snmp.php:687 ../data_queries.php:914 ../utilities.php:1600 #, fuzzy msgid "Action" msgstr "æ“作" #: ../automation_snmp.php:700 msgid "none" msgstr "" #: ../automation_snmp.php:715 ../automation_templates.php:545 ../cdef.php:607 #: ../color_templates.php:110 ../data_queries.php:624 ../data_queries.php:722 #: ../lib/api_automation.php:1233 ../lib/api_automation.php:1296 #: ../lib/api_automation.php:1360 ../lib/html.php:959 #: ../lib/html_reports.php:1284 ../lib/html_reports.php:1286 ../tree.php:1578 #: ../tree.php:1582 ../tree.php:1585 ../tree.php:1586 ../vdef.php:588 msgid "Move Down" msgstr "" #: ../automation_snmp.php:721 ../automation_templates.php:551 ../cdef.php:613 #: ../color_templates.php:116 ../data_queries.php:629 ../data_queries.php:727 #: ../lib/api_automation.php:1239 ../lib/api_automation.php:1302 #: ../lib/api_automation.php:1366 ../lib/html.php:964 #: ../lib/html_reports.php:1286 ../lib/html_reports.php:1288 ../vdef.php:594 msgid "Move Up" msgstr "" #: ../automation_snmp.php:735 msgid "No SNMP Items" msgstr "" #: ../automation_snmp.php:770 #, fuzzy msgid "Delete SNMP Option Item" msgstr "SNMP オプションを変更" #: ../automation_snmp.php:834 msgid "SNMP Rules" msgstr "" #: ../automation_snmp.php:923 #, fuzzy msgid "SNMP Option Sets" msgstr "SNMP オプションを変更" #: ../automation_snmp.php:932 #, fuzzy msgid "SNMP Option Set" msgstr "SNMP オプションを変更" #: ../automation_snmp.php:933 msgid "Networks Using" msgstr "" #: ../automation_snmp.php:934 msgid "SNMP Entries" msgstr "" #: ../automation_snmp.php:935 msgid "V1 Entries" msgstr "" #: ../automation_snmp.php:936 msgid "V2 Entries" msgstr "" #: ../automation_snmp.php:937 msgid "V3 Entries" msgstr "" #: ../automation_snmp.php:957 msgid "No SNMP Option Sets Found" msgstr "" #: ../automation_templates.php:190 msgid "Click 'Continue' to delete the folling Automation Template(s)." msgstr "" #: ../automation_templates.php:195 #, fuzzy msgid "Delete Automation Template(s)" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../automation_templates.php:198 msgid "You must select at least one Automation Template." msgstr "" #: ../automation_templates.php:300 ../include/global_arrays.php:993 #: ../include/global_form.php:1038 ../include/global_form.php:1546 #: ../lib/html_reports.php:325 #, fuzzy msgid "Device Template" msgstr "ユーザーテンプレート" #: ../automation_templates.php:301 msgid "Select a Device Template that Devices will be matched to." msgstr "" #: ../automation_templates.php:308 msgid "Choose the Availability Method to use for Discovered Devices." msgstr "" #: ../automation_templates.php:315 ../automation_templates.php:514 #, fuzzy msgid "System Description Match" msgstr "説明" #: ../automation_templates.php:316 msgid "" "This is a unique string that will be matched to a devices sysDescr string to " "pair it to this Discovery Template. Any Perl regular expression can be used " "in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:322 ../automation_templates.php:515 msgid "System Name Match" msgstr "" #: ../automation_templates.php:323 msgid "" "This is a unique string that will be matched to a devices sysName string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:329 msgid "System OID Match" msgstr "" #: ../automation_templates.php:330 msgid "" "This is a unique string that will be matched to a devices sysOid string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:350 #, php-format msgid "Automation Templates [edit: %s]" msgstr "" #: ../automation_templates.php:352 msgid "Automation Templates [new]" msgstr "" #: ../automation_templates.php:403 msgid "Device Automation Templates" msgstr "" #: ../automation_templates.php:512 ../data_sources.php:1410 ../graphs.php:1789 #: ../user_admin.php:1384 ../user_group_admin.php:1109 msgid "Template Name" msgstr "テンプレートå" #: ../automation_templates.php:516 msgid "System ObjectId Match" msgstr "" #: ../automation_templates.php:520 ../data_queries.php:595 #: ../data_queries.php:691 ../links.php:382 ../tree.php:1563 msgid "Order" msgstr "" #: ../automation_templates.php:530 #, fuzzy msgid "Unknown Template" msgstr "ユーザーテンプレート" #: ../automation_templates.php:565 msgid "No Automation Device Templates Found" msgstr "" #: ../automation_tree_rules.php:253 #, fuzzy msgid "Click 'Continue' to delete the following Rule(s)." msgstr "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../automation_tree_rules.php:260 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Rules." msgstr "" #: ../automation_tree_rules.php:379 #, fuzzy msgid "Created Trees" msgstr "グラフツリー" #: ../automation_tree_rules.php:471 #, fuzzy, php-format msgid "Are you sure you want to DELETE the Rule '%s'?" msgstr "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../automation_tree_rules.php:529 msgid "Eligible Objects" msgstr "" #: ../automation_tree_rules.php:542 #, php-format msgid "Tree Rule Selection [edit: %s]" msgstr "" #: ../automation_tree_rules.php:544 msgid "Tree Rules Selection [new]" msgstr "" #: ../automation_tree_rules.php:706 ../automation_tree_rules.php:731 #: ../automation_tree_rules.php:833 ../include/global_arrays.php:707 #: ../include/global_form.php:1576 ../lib/functions.php:2610 #, fuzzy msgid "Tree Rules" msgstr "ツリー項目" #: ../automation_tree_rules.php:844 msgid "Hook into Tree" msgstr "" #: ../automation_tree_rules.php:845 msgid "At Subtree" msgstr "" #: ../automation_tree_rules.php:846 #, fuzzy msgid "This Type" msgstr "Ping ã®ç¨®é¡ž" #: ../automation_tree_rules.php:847 msgid "Using Grouping" msgstr "" #: ../automation_tree_rules.php:856 msgid "ROOT" msgstr "" #: ../automation_tree_rules.php:872 #, fuzzy msgid "No Tree Rules Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../cdef.php:277 msgid "Click 'Continue' to delete the following CDEF." msgid_plural "Click 'Continue' to delete all following CDEFs." msgstr[0] "" #: ../cdef.php:282 #, fuzzy msgid "Delete CDEF" msgid_plural "Delete CDEFs" msgstr[0] "削除" #: ../cdef.php:286 msgid "" "Click 'Continue' to duplicate the following CDEF. You can optionally change " "the title format for the new CDEF." msgid_plural "" "Click 'Continue' to duplicate the following CDEFs. You can optionally change " "the title format for the new CDEFs." msgstr[0] "" #: ../cdef.php:292 #, fuzzy msgid "Duplicate CDEF" msgid_plural "Duplicate CDEFs" msgstr[0] "複製" #: ../cdef.php:295 msgid "You must select at least one CDEF." msgstr "" #: ../cdef.php:337 msgid "Click 'Continue' to delete the following CDEF Item." msgstr "" #: ../cdef.php:338 #, php-format msgid "CDEF Name: '%s'" msgstr "" #: ../cdef.php:345 #, fuzzy msgid "Remove CDEF Item" msgstr "CDEF é …ç›®" #: ../cdef.php:424 #, fuzzy msgid "CDEF Preview" msgstr "プレビューモード" #: ../cdef.php:430 #, fuzzy, php-format msgid "CDEF Items [edit: %s]" msgstr "CDEF é …ç›®" #: ../cdef.php:442 #, fuzzy msgid "CDEF Item Type" msgstr "CDEF é …ç›®" #: ../cdef.php:443 msgid "Choose what type of CDEF item this is." msgstr "" #: ../cdef.php:464 #, fuzzy msgid "CDEF Item Value" msgstr "ツリー項目ã®å€¤" #: ../cdef.php:465 #, fuzzy msgid "Enter a value for this CDEF item." msgstr "ã“ã® CDEF ã®åå‰ã§ã™ã€‚" #: ../cdef.php:558 #, fuzzy, php-format msgid "CDEF [edit: %s]" msgstr "[編集: " #: ../cdef.php:560 #, fuzzy msgid "CDEF [new]" msgstr "[æ–°è¦]" #: ../cdef.php:581 ../lib/functions.php:1986 msgid "CDEF Items" msgstr "CDEF é …ç›®" #: ../cdef.php:585 ../vdef.php:565 #, fuzzy msgid "Item Value" msgstr "ツリー項目ã®å€¤" #: ../cdef.php:598 ../vdef.php:579 #, fuzzy, php-format msgid "Item #%d" msgstr "é …ç›®" #: ../cdef.php:657 #, fuzzy msgid "Delete CDEF Item" msgstr "CDEF é …ç›®" #: ../cdef.php:713 ../cdef.php:728 ../cdef.php:842 #: ../include/global_arrays.php:712 ../lib/functions.php:1968 msgid "CDEFs" msgstr "CDEF" #: ../cdef.php:851 #, fuzzy msgid "CDEF Name" msgstr "フルãƒãƒ¼ãƒ " #: ../cdef.php:851 ../data_source_profiles.php:847 #, fuzzy msgid "The name of this CDEF." msgstr "ã“ã® CDEF ã®åå‰ã§ã™ã€‚" #: ../cdef.php:852 msgid "" "CDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: ../cdef.php:853 msgid "The number of Graphs using this CDEF." msgstr "" #: ../cdef.php:854 ../color.php:701 ../data_input.php:725 #: ../data_queries.php:1156 ../data_source_profiles.php:854 #: ../gprint_presets.php:394 ../vdef.php:848 #, fuzzy msgid "Templates Using" msgstr "テンプレートå" #: ../cdef.php:854 msgid "The number of Graphs Templates using this CDEF." msgstr "" #: ../cdef.php:876 #, fuzzy msgid "No CDEFs" msgstr "CDEF" #: ../clog.php:33 ../clog_user.php:32 msgid "FATAL: YOU DO NO HAVE ACCESS TO THIS AREA OF CACTI" msgstr "" #: ../color.php:170 msgid "Unnamed Color" msgstr "" #: ../color.php:187 #, fuzzy msgid "Click 'Continue' to delete the following Color" msgid_plural "Click 'Continue' to delete the following Colors" msgstr[0] "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../color.php:192 #, fuzzy msgid "Delete Color" msgid_plural "Delete Colors" msgstr[0] "削除" #: ../color.php:195 msgid "You must select at least one Color." msgstr "" #: ../color.php:351 msgid "Cacti has imported the following items:" msgstr "" #: ../color.php:365 ../color.php:568 #, fuzzy msgid "Import Colors" msgstr "色" #: ../color.php:368 #, fuzzy msgid "Import Colors from Local File" msgstr "ローカルファイルã‹ã‚‰ãƒ†ãƒ³ãƒ—レートをインãƒãƒ¼ãƒˆ" #: ../color.php:369 msgid "" "Please specify the location of the CSV file containing your Color " "information." msgstr "" #: ../color.php:373 ../lib/html_form.php:463 #, fuzzy msgid "Select a File" msgstr "ã™ã¹ã¦é¸æŠž" #: ../color.php:380 msgid "Overwrite Existing Data?" msgstr "" #: ../color.php:381 msgid "" "Should the import process be allowed to overwrite existing data? Please " "note, this does not mean delete old rows, only update duplicate rows." msgstr "" #: ../color.php:384 msgid "Allow Existing Rows to be Updated?" msgstr "" #: ../color.php:389 msgid "Required File Format Notes" msgstr "" #: ../color.php:392 msgid "The file must contain a header row with the following column headings." msgstr "" #: ../color.php:394 msgid "name - The Color Name" msgstr "" #: ../color.php:395 msgid "hex - The Hex Value" msgstr "" #: ../color.php:416 #, php-format msgid "Colors [edit: %s]" msgstr "" #: ../color.php:418 #, fuzzy msgid "Colors [new]" msgstr "色" #: ../color.php:520 ../color.php:535 ../include/global_arrays.php:714 #: ../lib/functions.php:2034 msgid "Colors" msgstr "色" #: ../color.php:553 #, fuzzy msgid "Named Colors" msgstr "色" #: ../color.php:568 ../lib/html_form.php:1126 #, fuzzy msgid "Import" msgstr "データをインãƒãƒ¼ãƒˆã™ã‚‹" #: ../color.php:571 #, fuzzy msgid "Export Colors" msgstr "エクスãƒãƒ¼ãƒˆçµæžœ" #: ../color.php:695 ../color_templates.php:74 msgid "Hex" msgstr "" #: ../color.php:695 #, fuzzy msgid "The Hex Value for this Color." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../color.php:696 #, fuzzy msgid "Color Name" msgstr "色" #: ../color.php:696 msgid "The name of this Color definition." msgstr "" #: ../color.php:697 msgid "Is this color a named color which are read only." msgstr "" #: ../color.php:697 #, fuzzy msgid "Named Color" msgstr "色" #: ../color.php:698 ../color_templates.php:73 ../include/global_arrays.php:700 #: ../include/global_form.php:812 ../include/global_form.php:2058 msgid "Color" msgstr "色" #: ../color.php:698 msgid "The Color as shown on the screen." msgstr "" #: ../color.php:699 msgid "" "Colors in use cannot be Deleted. In use is defined as being referenced " "either by a Graph or a Graph Template." msgstr "" #: ../color.php:700 msgid "The number of Graph using this Color." msgstr "" #: ../color.php:701 msgid "The number of Graph Templates using this Color." msgstr "" #: ../color.php:731 #, fuzzy msgid "No Colors Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../color_templates.php:72 #, fuzzy msgid "Color Item" msgstr "色" #: ../color_templates.php:93 ../lib/api_aggregate.php:1290 #: ../lib/api_aggregate.php:1293 ../lib/api_aggregate.php:1297 #: ../lib/html.php:896 #, fuzzy, php-format msgid "Item # %d" msgstr "é …ç›®" #: ../color_templates.php:132 ../graph_templates_inputs.php:222 #: ../lib/api_aggregate.php:1349 ../lib/html.php:978 #, fuzzy msgid "No Items" msgstr "CDEF é …ç›®" #: ../color_templates.php:227 msgid "Click 'Continue' to delete the following Color Template" msgid_plural "Click 'Continue' to delete following Color Templates" msgstr[0] "" #: ../color_templates.php:232 #, fuzzy msgid "Delete Color Template" msgid_plural "Delete Color Templates" msgstr[0] "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../color_templates.php:236 msgid "" "Click 'Continue' to duplicate the following Color Template. You can " "optionally change the title format for the new color template." msgid_plural "" "Click 'Continue' to duplicate following Color Templates. You can optionally " "change the title format for the new color templates." msgstr[0] "" #: ../color_templates.php:238 ../data_source_profiles.php:272 #: ../data_templates.php:364 ../graph_templates.php:323 #: ../host_templates.php:267 ../vdef.php:276 msgid "Title Format:" msgstr "題åã®æ›¸å¼:" #: ../color_templates.php:242 #, fuzzy msgid "Duplicate Color Template" msgid_plural "Duplicate Color Templates" msgstr[0] "グラフテンプレートを更新ã™ã‚‹" #: ../color_templates.php:245 msgid "You must select at least one Color Template." msgstr "" #: ../color_templates.php:278 #, fuzzy msgid "Color Template Items [new]" msgstr "グラフテンプレートã®é …ç›®" #: ../color_templates.php:289 #, fuzzy, php-format msgid "Color Template Items [edit: %s]" msgstr "グラフテンプレートã®é …ç›®" #: ../color_templates.php:322 #, fuzzy msgid "Delete Color Item" msgstr "データソース項目" #: ../color_templates.php:349 #, php-format msgid "Color Template [edit: %s]" msgstr "" #: ../color_templates.php:351 #, fuzzy msgid "Color Template [new]" msgstr "グラフテンプレートå" #: ../color_templates.php:432 ../color_templates.php:445 #: ../lib/functions.php:2508 #, fuzzy msgid "Color Templates" msgstr "テンプレートエクスãƒãƒ¼ãƒˆ" #: ../color_templates.php:548 msgid "" "Color Templates that are in use cannot be Deleted. In use is defined as " "being referenced by an Aggregate Template." msgstr "" #: ../color_templates.php:573 #, fuzzy msgid "No Color Templates Found" msgstr "グラフテンプレートãŒã‚りã¾ã›ã‚“" #: ../color_templates_items.php:273 msgid "Click 'Continue' to delete the following Color Template Color." msgstr "" #: ../color_templates_items.php:274 #, fuzzy msgid "Color Name:" msgstr "ユーザーå:" #: ../color_templates_items.php:275 #, fuzzy msgid "Color Hex:" msgstr "色" #: ../color_templates_items.php:281 msgid "Remove Color Item" msgstr "" #: ../color_templates_items.php:339 #, php-format msgid "Color Template Items [edit Report Item: %s]" msgstr "" #: ../color_templates_items.php:342 #, php-format msgid "Color Template Items [new Report Item: %s]" msgstr "" #: ../data_input.php:212 msgid "Click 'Continue' to delete the following Data Input Method" msgid_plural "Click 'Continue' to delete the following Data Input Method" msgstr[0] "" #: ../data_input.php:218 #, fuzzy msgid "Delete Data Input Method" msgid_plural "Delete Data Input Methods" msgstr[0] "データã®å…¥åŠ›æ–¹æ³•" #: ../data_input.php:220 msgid "You must select at least one data input method." msgstr "" #: ../data_input.php:259 msgid "Click 'Continue' to delete the following Data Input Field." msgstr "" #: ../data_input.php:260 #, fuzzy, php-format msgid "Field Name: %s" msgstr "フルãƒãƒ¼ãƒ " #: ../data_input.php:261 #, php-format msgid "Friendly Name: %s" msgstr "" #: ../data_input.php:267 ../host_templates.php:335 ../host_templates.php:395 #, fuzzy msgid "Remove Data Input Field" msgstr "データã®å…¥åŠ›é …ç›®" #: ../data_input.php:362 #, fuzzy, php-format msgid "Output Fields [edit: %s]" msgstr "出力項目" #: ../data_input.php:363 ../include/global_form.php:461 #, fuzzy msgid "Output Field" msgstr "出力項目" #: ../data_input.php:365 #, fuzzy, php-format msgid "Input Fields [edit: %s]" msgstr "入力項目" #: ../data_input.php:366 #, fuzzy msgid "Input Field" msgstr "入力項目" #: ../data_input.php:432 #, fuzzy, php-format msgid "Data Input Methods [edit: %s]" msgstr "データã®å…¥åŠ›æ–¹æ³•" #: ../data_input.php:434 #, fuzzy msgid "Data Input Methods [new]" msgstr "データã®å…¥åŠ›æ–¹æ³•" #: ../data_input.php:444 ../include/global_arrays.php:316 #, fuzzy msgid "SNMP Get" msgstr "SNMP ãƒãƒ¼ãƒˆ" #: ../data_input.php:447 ../include/global_arrays.php:317 #, fuzzy msgid "SNMP Query" msgstr "SNMP ãƒãƒ¼ãƒˆ" #: ../data_input.php:450 ../include/global_arrays.php:319 #, fuzzy msgid "Script Query" msgstr "スクリプト" #: ../data_input.php:453 ../include/global_arrays.php:321 msgid "Script Query - Script Server" msgstr "" #: ../data_input.php:466 msgid "Input Fields" msgstr "入力項目" #: ../data_input.php:469 ../data_input.php:503 #, fuzzy msgid "Field Order" msgstr "é …ç›®ã®ç¨®é¡ž" #: ../data_input.php:470 ../data_input.php:504 ../include/global_form.php:275 #, fuzzy msgid "Friendly Name" msgstr "フルãƒãƒ¼ãƒ " #: ../data_input.php:484 ../data_input.php:519 msgid "(Not In Use)" msgstr "" #: ../data_input.php:496 #, fuzzy msgid "No Input Fields" msgstr "入力項目" #: ../data_input.php:500 msgid "Output Fields" msgstr "出力項目" #: ../data_input.php:505 #, fuzzy msgid "Update RRA" msgstr "RRD ファイルを更新ã™ã‚‹" #: ../data_input.php:534 #, fuzzy msgid "No Output Fields" msgstr "出力項目" #: ../data_input.php:556 ../host_templates.php:600 #, fuzzy msgid "Delete Data Input Field" msgstr "データã®å…¥åŠ›é …ç›®" #: ../data_input.php:610 ../include/global_arrays.php:693 #: ../include/global_arrays.php:861 ../lib/functions.php:2172 msgid "Data Input Methods" msgstr "データã®å…¥åŠ›æ–¹æ³•" #: ../data_input.php:625 ../data_input.php:713 #, fuzzy msgid "Input Methods" msgstr "データã®å…¥åŠ›æ–¹æ³•" #: ../data_input.php:722 #, fuzzy msgid "Data Input Name" msgstr "データ入力" #: ../data_input.php:722 #, fuzzy msgid "The name of this Data Input Method." msgstr "データã®å…¥åŠ›æ–¹æ³•ãŒã‚りã¾ã›ã‚“。" #: ../data_input.php:723 msgid "" "Data Inputs that are in use cannot be Deleted. In use is defined as being " "referenced either by a Data Source or a Data Template." msgstr "" #: ../data_input.php:724 ../data_source_profiles.php:853 #: ../data_templates.php:912 #, fuzzy msgid "Data Sources Using" msgstr "データソース" #: ../data_input.php:724 msgid "The number of Data Sources that use this Data Input Method." msgstr "" #: ../data_input.php:725 msgid "The number of Data Templates that use this Data Input Method." msgstr "" #: ../data_input.php:726 ../data_queries.php:1157 #: ../include/global_arrays.php:985 ../include/global_form.php:385 #: ../include/global_form.php:1304 msgid "Data Input Method" msgstr "データã®å…¥åŠ›æ–¹æ³•" #: ../data_input.php:726 msgid "The method used to gather information for this Data Input Method." msgstr "" #: ../data_input.php:749 #, fuzzy msgid "No Data Input Methods Found" msgstr "データã®å…¥åŠ›æ–¹æ³•ãŒã‚りã¾ã›ã‚“。" #: ../data_queries.php:316 #, fuzzy msgid "Click 'Continue' to delete the following Data Query." msgid_plural "Click 'Continue' to delete following Data Queries." msgstr[0] "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../data_queries.php:322 #, fuzzy msgid "Delete Data Query" msgid_plural "Delete Data Query" msgstr[0] "データå•åˆã›" #: ../data_queries.php:324 msgid "You must select at least one data query." msgstr "" #: ../data_queries.php:419 msgid "Click 'Continue' to delete the following Data Query Graph Association." msgstr "" #: ../data_queries.php:420 #, fuzzy, php-format msgid "Graph Name: %s" msgstr "グラフ項目" #: ../data_queries.php:426 ../vdef.php:333 #, fuzzy msgid "Remove VDEF Item" msgstr "CDEF é …ç›®" #: ../data_queries.php:479 #, fuzzy, php-format msgid "Associated Graph/Data Templates [edit: %s]" msgstr "関連グラフテンプレート" #: ../data_queries.php:502 #, fuzzy msgid "Associated Data Templates" msgstr "関連グラフテンプレート" #: ../data_queries.php:520 #, fuzzy, php-format msgid "Data Template - %s" msgstr "グラフテンプレート" #: ../data_queries.php:550 ../data_sources.php:881 ../data_templates.php:516 #: ../include/global_arrays.php:698 ../include/global_form.php:797 #: ../lib/api_aggregate.php:1215 ../lib/html.php:856 msgid "Data Source" msgstr "データソース" #: ../data_queries.php:585 msgid "Suggested Values - Graph Names" msgstr "" #: ../data_queries.php:596 ../data_queries.php:692 #, fuzzy msgid "Equation" msgstr "機能" #: ../data_queries.php:647 ../data_queries.php:746 #, fuzzy msgid "No Suggested Values Found" msgstr "ツリー項目ã®å€¤" #: ../data_queries.php:656 ../data_queries.php:755 #: ../include/global_form.php:2093 ../include/global_form.php:2135 #: ../lib/api_automation.php:1333 ../utilities.php:1409 #, fuzzy msgid "Field Name" msgstr "フルãƒãƒ¼ãƒ " #: ../data_queries.php:662 ../data_queries.php:761 #, fuzzy msgid "Suggested Value" msgstr "ツリー項目ã®å€¤" #: ../data_queries.php:668 ../data_queries.php:767 ../host.php:762 #: ../host.php:879 ../host_templates.php:515 ../host_templates.php:569 #: ../lib/html.php:37 ../lib/html_filter.php:55 msgid "Add" msgstr "追加" #: ../data_queries.php:668 #, fuzzy msgid "Add Graph Title Suggested Name" msgstr "グラフテンプレートå" #: ../data_queries.php:678 msgid "Suggested Values - Data Source Names" msgstr "" #: ../data_queries.php:767 msgid "Add Data Source Name Suggested Name" msgstr "" #: ../data_queries.php:874 #, fuzzy, php-format msgid "Data Queries [edit: %s]" msgstr "データå•åˆã›" #: ../data_queries.php:876 #, fuzzy msgid "Data Queries [new]" msgstr "データå•åˆã›" #: ../data_queries.php:896 msgid "Successfully located XML file" msgstr "" #: ../data_queries.php:899 msgid "Could not locate XML file." msgstr "" #: ../data_queries.php:907 ../host.php:681 ../host_templates.php:466 #: ../lib/functions.php:2226 msgid "Associated Graph Templates" msgstr "関連グラフテンプレート" #: ../data_queries.php:911 ../graph_templates.php:761 ../graphs_new.php:597 #: ../host.php:685 ../lib/api_automation.php:563 msgid "Graph Template Name" msgstr "グラフテンプレートå" #: ../data_queries.php:913 msgid "Mapping ID" msgstr "" #: ../data_queries.php:954 msgid "Mapped Graph Templates with Graphs are read only" msgstr "" #: ../data_queries.php:961 #, fuzzy msgid "No Graph Templates Defined." msgstr "グラフテンプレートãŒã‚りã¾ã›ã‚“" #: ../data_queries.php:985 #, fuzzy msgid "Delete Associated Graph" msgstr "関連グラフテンプレート" #: ../data_queries.php:1039 ../data_queries.php:1054 ../data_queries.php:1143 #: ../include/global_arrays.php:692 ../include/global_arrays.php:862 #: ../lib/api_automation.php:1027 ../lib/functions.php:2208 msgid "Data Queries" msgstr "データå•åˆã›" #: ../data_queries.php:1152 ../host.php:776 ../utilities.php:1409 msgid "Data Query Name" msgstr "データ照会å" #: ../data_queries.php:1152 #, fuzzy msgid "The name of this Data Query." msgstr "ã“ã®å•ã„åˆã‚ã›ã®åå‰ã§ã™ã€‚" #: ../data_queries.php:1153 ../graph_templates.php:762 msgid "" "The internal ID for this Graph Template. Useful when performing automation " "or debugging." msgstr "" #: ../data_queries.php:1154 msgid "" "Data Queries that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: ../data_queries.php:1155 #, fuzzy msgid "The number of Graphs using this Data Query." msgstr "ã“ã®å•ã„åˆã‚ã›ã®åå‰ã§ã™ã€‚" #: ../data_queries.php:1156 msgid "The number of Graphs Templates using this Data Query." msgstr "" #: ../data_queries.php:1157 msgid "" "The Data Input Method used to collect data for Data Sources associated with " "this Data Query." msgstr "" #: ../data_queries.php:1181 #, fuzzy msgid "No Data Queries Found" msgstr "データå•åˆã›" #: ../data_source_profiles.php:261 msgid "Click 'Continue' to delete the following Data Source Profile" msgid_plural "Click 'Continue' to delete following Data Source Profiles" msgstr[0] "" #: ../data_source_profiles.php:266 #, fuzzy msgid "Delete Data Source Profile" msgid_plural "Delete Data Source Profiles" msgstr[0] "データソースを更新ã™ã‚‹" #: ../data_source_profiles.php:270 msgid "" "Click 'Continue' to duplicate the following Data Source Profile. You can " "optionally change the title format for the new Data Source Profile" msgid_plural "" "Click 'Continue' to duplicate following Data Source Profiles. You can " "optionally change the title format for the new Data Source Profiles." msgstr[0] "" #: ../data_source_profiles.php:276 #, fuzzy msgid "Duplicate Data Source Profile" msgid_plural "Duplicate Date Source Profiles" msgstr[0] "データソースを更新ã™ã‚‹" #: ../data_source_profiles.php:279 msgid "You must select at least one Data Source Profile." msgstr "" #: ../data_source_profiles.php:318 msgid "Click 'Continue' to delete the following Data Source Profile RRA." msgstr "" #: ../data_source_profiles.php:319 #, php-format msgid "Profile Name: %s" msgstr "" #: ../data_source_profiles.php:325 msgid "Remove Data Source Profile RRA" msgstr "" #: ../data_source_profiles.php:374 ../data_source_profiles.php:384 msgid "Each Insert is New Row" msgstr "" #: ../data_source_profiles.php:393 #, fuzzy, php-format msgid "RRA [edit: %s]" msgstr "[編集: " #: ../data_source_profiles.php:460 #, fuzzy, php-format msgid "Data Source Profile [edit: %s]" msgstr "データソースã®ãƒ‘ス" #: ../data_source_profiles.php:462 #, fuzzy msgid "Data Source Profile [new]" msgstr "データソースã®ãƒ‘ス" #: ../data_source_profiles.php:480 msgid "Data Source Profile RRAs (press save to update timespans)" msgstr "" #: ../data_source_profiles.php:482 msgid "Data Source Profile RRAs (Read Only)" msgstr "" #: ../data_source_profiles.php:487 msgid "Effective Timespan" msgstr "" #: ../data_source_profiles.php:488 #, fuzzy msgid "Steps" msgstr "ステップ" #: ../data_source_profiles.php:489 ../graphs_new.php:526 #: ../include/global_form.php:121 ../lib/html.php:323 ../lib/html_filter.php:73 #: ../lib/rrd.php:2689 ../pollers.php:523 ../utilities.php:468 #: ../utilities.php:1322 msgid "Rows" msgstr "" #: ../data_source_profiles.php:535 msgid "Select Consolidation Function(s)" msgstr "" #: ../data_source_profiles.php:561 #, fuzzy msgid "Delete Data Source Profile Item" msgstr "データソース項目" #: ../data_source_profiles.php:621 ../include/global_arrays.php:1088 #: ../include/global_settings.php:1027 #, php-format msgid "%d Years" msgstr "" #: ../data_source_profiles.php:621 msgid "1 Year" msgstr "" #: ../data_source_profiles.php:630 ../include/global_arrays.php:1082 #: ../rrdcleaner.php:489 #, php-format msgid "%d Month" msgstr "" #: ../data_source_profiles.php:630 ../include/global_arrays.php:1083 #: ../include/global_arrays.php:1084 ../include/global_arrays.php:1085 #: ../include/global_arrays.php:1086 ../rrdcleaner.php:490 #: ../rrdcleaner.php:491 ../rrdcleaner.php:492 #, php-format msgid "%d Months" msgstr "" #: ../data_source_profiles.php:639 ../include/global_arrays.php:1080 #: ../rrdcleaner.php:485 ../rrdcleaner.php:486 #, php-format msgid "%d Week" msgstr "" #: ../data_source_profiles.php:639 ../include/global_arrays.php:1081 #: ../rrdcleaner.php:487 ../rrdcleaner.php:488 #, php-format msgid "%d Weeks" msgstr "" #: ../data_source_profiles.php:648 ../include/global_arrays.php:1076 #, php-format msgid "%d Day" msgstr "" #: ../data_source_profiles.php:648 ../include/global_arrays.php:1077 #: ../include/global_arrays.php:1078 ../include/global_arrays.php:1079 #: ../include/global_settings.php:1022 ../include/global_settings.php:1023 #: ../include/global_settings.php:1024 ../include/global_settings.php:1025 #: ../include/global_settings.php:1036 ../include/global_settings.php:1037 #: ../include/global_settings.php:1038 ../include/global_settings.php:1039 #, php-format msgid "%d Days" msgstr "" #: ../data_source_profiles.php:656 ../include/global_arrays.php:494 #: ../include/global_arrays.php:529 ../include/global_arrays.php:1117 #: ../include/global_arrays.php:1138 ../include/global_arrays.php:1171 #: ../include/global_arrays.php:1180 ../include/global_arrays.php:1206 #: ../include/global_settings.php:1093 msgid "1 Hour" msgstr "" #: ../data_source_profiles.php:710 ../include/global_arrays.php:869 #, fuzzy msgid "Data Source Profiles" msgstr "データソース" #: ../data_source_profiles.php:725 ../data_source_profiles.php:838 msgid "Profiles" msgstr "" #: ../data_source_profiles.php:743 ../data_templates.php:794 #, fuzzy msgid "Has Data Sources" msgstr "データソース" #: ../data_source_profiles.php:847 #, fuzzy msgid "Data Source Profile Name" msgstr "データソースã®ãƒ‘ス" #: ../data_source_profiles.php:848 msgid "Is this the default Profile for all new Data Templates?" msgstr "" #: ../data_source_profiles.php:849 msgid "" "Profiles that are in use cannot be Deleted. In use is defined as being " "referenced by a Data Source or a Data Template." msgstr "" #: ../data_source_profiles.php:850 msgid "Profiles that are in use by Data Sources become read only for now." msgstr "" #: ../data_source_profiles.php:850 ../include/global_form.php:190 msgid "Read Only" msgstr "" #: ../data_source_profiles.php:851 ../data_sources.php:1407 #: ../include/global_settings.php:855 msgid "Poller Interval" msgstr "" #: ../data_source_profiles.php:851 msgid "The Polling Frequency for the Profile" msgstr "" #: ../data_source_profiles.php:852 ../include/global_form.php:52 #: ../include/global_form.php:453 msgid "Heartbeat" msgstr "ãƒãƒ¼ãƒˆãƒ“ート" #: ../data_source_profiles.php:852 msgid "" "The Amount of Time, in seconds, without good data before Data is stored as " "Unknown" msgstr "" #: ../data_source_profiles.php:853 msgid "The number of Data Sources using this Profile." msgstr "" #: ../data_source_profiles.php:854 msgid "The number of Data Templates using this Profile." msgstr "" #: ../data_source_profiles.php:886 #, fuzzy msgid "No Data Source Profiles" msgstr "データソースãŒã‚りã¾ã›ã‚“" #: ../data_sources.php:36 ../data_sources.php:478 ../graphs.php:54 #, fuzzy msgid "Change Device" msgstr "デãƒã‚¤ã‚¹" #: ../data_sources.php:37 ../graphs.php:55 msgid "Reapply Suggested Names" msgstr "" #: ../data_sources.php:446 msgid "Click 'Continue' to delete the following Data Source" msgid_plural "Click 'Continue' to delete following Data Sources" msgstr[0] "" #: ../data_sources.php:450 msgid "The following graph is using these data sources:" msgid_plural "The following graphs are using these data sources:" msgstr[0] "" #: ../data_sources.php:459 msgid "Leave the Graph untouched." msgid_plural "Leave all Graphs untouched." msgstr[0] "" #: ../data_sources.php:460 msgid "" "Delete all Graph Items that reference this Data Source." msgid_plural "" "Delete all Graph Items that reference these Data Sources." msgstr[0] "" #: ../data_sources.php:461 msgid "Delete all Graphs that reference this Data Source." msgid_plural "" "Delete all Graphs that reference these Data Sources." msgstr[0] "" #: ../data_sources.php:468 #, fuzzy msgid "Delete Data Source" msgid_plural "Delete Data Sources" msgstr[0] "データソース" #: ../data_sources.php:472 msgid "Choose a new Device for this Data Source and click 'Continue'." msgid_plural "Choose a new Device for these Data Sources and click 'Continue'" msgstr[0] "" #: ../data_sources.php:474 #, fuzzy msgid "New Device:" msgstr "デãƒã‚¤ã‚¹" #: ../data_sources.php:482 msgid "Click 'Continue' to enable the following Data Source." msgid_plural "Click 'Continue' to enable all following Data Sources." msgstr[0] "" #: ../data_sources.php:487 #, fuzzy msgid "Enable Data Source" msgid_plural "Enable Data Sources" msgstr[0] "データソース" #: ../data_sources.php:491 msgid "Click 'Continue' to disable the following Data Source." msgid_plural "Click 'Continue' to disable all following Data Sources." msgstr[0] "" #: ../data_sources.php:496 #, fuzzy msgid "Disable Data Source" msgstr "データソースを更新ã™ã‚‹" #: ../data_sources.php:500 msgid "" "Click 'Continue' to re-apply the suggested name to the following Data Source." msgid_plural "" "Click 'Continue' to re-apply the suggested names to all following Data " "Sources." msgstr[0] "" #: ../data_sources.php:505 msgid "Reapply Suggested Naming to Data Source" msgstr "" #: ../data_sources.php:514 msgid "You must select at least one data source." msgstr "" #: ../data_sources.php:572 ../data_templates.php:631 #, php-format msgid "Custom Data [data input: %s]" msgstr "" #: ../data_sources.php:605 #, php-format msgid "(From Device: %s)" msgstr "" #: ../data_sources.php:608 #, fuzzy msgid "(From Data Template)" msgstr "グラフã®ãƒ†ãƒ³ãƒ—レート" #: ../data_sources.php:609 msgid "Nothing Entered" msgstr "" #: ../data_sources.php:624 ../data_templates.php:684 msgid "No Input Fields for the Selected Data Input Source" msgstr "" #: ../data_sources.php:700 #, fuzzy, php-format msgid "Data Source %d does not exist." msgstr "XML: Cacti ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå­˜åœ¨ã—ã¾ã›ã‚“。" #: ../data_sources.php:705 #, php-format msgid "Data Template Selection [edit: %s]" msgstr "" #: ../data_sources.php:711 msgid "Data Template Selection [new]" msgstr "" #: ../data_sources.php:744 msgid "Turn Off Data Source Debug Mode." msgstr "" #: ../data_sources.php:744 msgid "Turn On Data Source Debug Mode." msgstr "" #: ../data_sources.php:745 msgid "Turn Off Data Source Info Mode." msgstr "" #: ../data_sources.php:745 #, fuzzy msgid "Turn On Data Source Info Mode." msgstr "データソース項目" #: ../data_sources.php:748 #, fuzzy msgid "Edit Data Template." msgstr "グラフテンプレートを更新ã™ã‚‹" #: ../data_sources.php:751 ../graphs.php:1294 #, fuzzy msgid "Edit Device." msgstr "デãƒã‚¤ã‚¹" #: ../data_sources.php:814 #, fuzzy msgid "Selected Data Template" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../data_sources.php:815 #, php-format msgid "" "The name given to this data template. Please note that you may only change " "Graph Templates to a 100% compatible Graph Template, which means that it " "includes identical Data Sources." msgstr "" #: ../data_sources.php:823 msgid "Choose the Device that this Data Source belongs to." msgstr "" #: ../data_sources.php:869 msgid "Supplemental Data Template Data" msgstr "" #: ../data_sources.php:871 #, fuzzy msgid "Data Source Fields" msgstr "データソース" #: ../data_sources.php:872 #, fuzzy msgid "Data Source Item Fields" msgstr "データソース項目" #: ../data_sources.php:873 #, fuzzy msgid "Custom Data" msgstr "カスタム文字列" #: ../data_sources.php:957 #, fuzzy, php-format msgid "Data Source Item %s" msgstr "データソース項目" #: ../data_sources.php:960 msgid "New" msgstr "" #: ../data_sources.php:1019 #, fuzzy msgid "Data Source Debug" msgstr "データソース項目" #: ../data_sources.php:1039 msgid "RRDtool Tune Info" msgstr "" #: ../data_sources.php:1065 msgid "External" msgstr "" #: ../data_sources.php:1067 ../include/global_arrays.php:519 #: ../include/global_arrays.php:520 ../include/global_arrays.php:521 #: ../include/global_arrays.php:841 ../include/global_arrays.php:842 #: ../include/global_arrays.php:843 ../include/global_arrays.php:844 #: ../include/global_arrays.php:1160 ../include/global_arrays.php:1161 #: ../include/global_arrays.php:1162 ../include/global_arrays.php:1163 #: ../include/global_arrays.php:1164 ../include/global_arrays.php:1197 #: ../include/global_arrays.php:1198 ../include/global_arrays.php:1210 #: ../include/global_arrays.php:1211 ../include/global_arrays.php:1212 #: ../include/global_arrays.php:1213 ../include/global_arrays.php:1214 #: ../include/global_settings.php:1837 #, php-format msgid "%d Seconds" msgstr "" #: ../data_sources.php:1069 ../include/global_arrays.php:522 #: ../include/global_arrays.php:845 ../include/global_arrays.php:1165 #: ../include/global_arrays.php:1199 ../include/global_arrays.php:1215 #: ../include/global_settings.php:1087 ../include/global_settings.php:1837 msgid "1 Minute" msgstr "" #: ../data_sources.php:1196 ../graphs_items.php:292 #, fuzzy, php-format msgid "Data Sources [%s]" msgstr "データソース" #: ../data_sources.php:1196 #, fuzzy msgid "No Device" msgstr "デãƒã‚¤ã‚¹" #: ../data_sources.php:1235 ../data_sources.php:1261 ../data_sources.php:1277 #: ../data_templates.php:764 ../graph_view.php:781 ../graphs_new.php:504 #: ../lib/clog_webapi.php:331 ../lib/html_graph.php:395 #: ../lib/html_reports.php:290 ../lib/html_tree.php:842 ../plugins.php:286 #: ../settings.php:196 ../settings.php:213 ../settings.php:236 #: ../utilities.php:636 ../utilities.php:1000 msgid "All" msgstr "" #: ../data_sources.php:1257 ../data_templates.php:760 msgid "Profile" msgstr "" #: ../data_sources.php:1273 ../data_sources.php:1279 msgid "Orphaned" msgstr "" #: ../data_sources.php:1283 ../data_sources.php:1396 ../host.php:1502 #: ../include/global_arrays.php:687 ../lib/api_automation.php:275 #: ../lib/functions.php:2118 ../user_admin.php:1242 ../user_group_admin.php:966 #: ../utilities.php:273 msgid "Data Sources" msgstr "データソース" #: ../data_sources.php:1405 ../utilities.php:1698 #, fuzzy msgid "Data Source Name" msgstr "データソース" #: ../data_sources.php:1405 msgid "" "The name of this Data Source. Generally programtically generated from the " "Data Template definition." msgstr "" #: ../data_sources.php:1406 msgid "" "The internal database ID for this Data Source. Useful when performing " "automation or debugging." msgstr "" #: ../data_sources.php:1407 msgid "The frequency that data is collected for this Data Source." msgstr "" #: ../data_sources.php:1408 msgid "If this Data Source is no long in use by Graphs, it can be Deleted." msgstr "" #: ../data_sources.php:1409 ../data_templates.php:934 ../plugins.php:38 #: ../plugins.php:287 msgid "Active" msgstr "æ“作" #: ../data_sources.php:1409 msgid "" "Whether or not data will be collected for this Data Source. Controlled at " "the Data Template level." msgstr "" #: ../data_sources.php:1410 msgid "The Data Template that this Data Source was based upon." msgstr "" #: ../data_sources.php:1457 #, fuzzy msgid "No Data Sources Found" msgstr "データソースãŒã‚りã¾ã›ã‚“" #: ../data_templates.php:35 #, fuzzy msgid "Change Profile" msgstr "åŽé›†ã®å¤‰æ›´" #: ../data_templates.php:353 msgid "" "Click 'Continue' to delete the following Data Template(s). Any data sources " "attached to these templates will become individual Data Source(s) and all " "Templating benefits will be removed." msgstr "" #: ../data_templates.php:358 #, fuzzy msgid "Delete Data Template(s)" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../data_templates.php:362 msgid "" "Click 'Continue' to duplicate the following Data Template(s). You can " "optionally change the title format for the new Data Template(s)." msgstr "" #: ../data_templates.php:364 msgid "template_title" msgstr "" #: ../data_templates.php:368 #, fuzzy msgid "Duplicate Data Template(s)" msgstr "グラフテンプレートを更新ã™ã‚‹" #: ../data_templates.php:372 msgid "" "Click 'Continue' to change the default Data Source Profile for the following " "Data Template(s)." msgstr "" #: ../data_templates.php:374 #, fuzzy msgid "New Data Source Profile" msgstr "データソースãŒã‚りã¾ã›ã‚“" #: ../data_templates.php:380 msgid "" "NOTE: This change only will affect future Data Sources and does not alter " "existing Data Sources." msgstr "" #: ../data_templates.php:384 #, fuzzy msgid "Change Data Source Profile" msgstr "データソースを更新ã™ã‚‹" #: ../data_templates.php:387 msgid "You must select at least one data template." msgstr "" #: ../data_templates.php:499 #, php-format msgid "Data Templates [edit: %s]" msgstr "" #: ../data_templates.php:501 #, fuzzy msgid "Data Templates [new]" msgstr "グラフテンプレート" #: ../data_templates.php:527 #, fuzzy msgid "This field is always templated." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../data_templates.php:531 ../data_templates.php:603 #: ../data_templates.php:671 msgid "Use Per-Data Source Value (Ignore this Value)" msgstr "" #: ../data_templates.php:584 #, fuzzy, php-format msgid "Data Source Item [%s]" msgstr "データソース項目" #: ../data_templates.php:676 msgid "Value will be derived from the device if this field is left empty." msgstr "" #: ../data_templates.php:745 ../data_templates.php:776 #: ../data_templates.php:900 ../include/global_arrays.php:873 #: ../lib/functions.php:2100 #, fuzzy msgid "Data Templates" msgstr "グラフテンプレート" #: ../data_templates.php:909 #, fuzzy msgid "Data Template Name" msgstr "テンプレートå" #: ../data_templates.php:909 #, fuzzy msgid "The name of this Data Template." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../data_templates.php:910 msgid "" "The internal database ID for this Data Template. Useful when performing " "automation or debugging." msgstr "" #: ../data_templates.php:911 msgid "" "Data Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Data Source." msgstr "" #: ../data_templates.php:912 #, fuzzy msgid "The number of Data Sources using this Data Template." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../data_templates.php:913 #, fuzzy msgid "Input Method" msgstr "データã®å…¥åŠ›æ–¹æ³•" #: ../data_templates.php:913 msgid "The method that is used to place Data into the Data Source RRDfile." msgstr "" #: ../data_templates.php:914 msgid "Profile Name" msgstr "" #: ../data_templates.php:914 #, fuzzy msgid "The default Data Source Profile for this Data Template." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../data_templates.php:915 msgid "" "Data Sources based on Inactive Data Templates will not be updated when the " "poller runs." msgstr "" #: ../data_templates.php:939 #, fuzzy msgid "No Data Templates Found" msgstr "グラフテンプレートãŒã‚りã¾ã›ã‚“" #: ../gprint_presets.php:148 msgid "Click 'Continue' to delete the folling GPRINT Preset(s)." msgstr "" #: ../gprint_presets.php:153 #, fuzzy msgid "Delete GPRINT Preset(s)" msgstr "GPRINT プリセット" #: ../gprint_presets.php:156 msgid "You must select at least one GPRINT Preset." msgstr "" #: ../gprint_presets.php:185 #, fuzzy, php-format msgid "GPRINT Presets [edit: %s]" msgstr "GPRINT プリセット" #: ../gprint_presets.php:187 #, fuzzy msgid "GPRINT Presets [new]" msgstr "GPRINT プリセット" #: ../gprint_presets.php:253 ../lib/functions.php:1950 msgid "GPRINT Presets" msgstr "GPRINT プリセット" #: ../gprint_presets.php:268 ../gprint_presets.php:381 #: ../include/global_arrays.php:715 #, fuzzy msgid "GPRINTs" msgstr "GPRINT プリセット" #: ../gprint_presets.php:390 #, fuzzy msgid "GPRINT Preset Name" msgstr "GPRINT プリセット" #: ../gprint_presets.php:390 #, fuzzy msgid "The name of this GPRINT Preset." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../gprint_presets.php:391 #, fuzzy msgid "Format" msgstr "題åã®æ›¸å¼:" #: ../gprint_presets.php:391 msgid "The GPRINT format string." msgstr "" #: ../gprint_presets.php:392 msgid "" "GPRINTs that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: ../gprint_presets.php:393 msgid "The number of Graphs using this GPRINT." msgstr "" #: ../gprint_presets.php:394 msgid "The number of Graphs Templates using this GPRINT." msgstr "" #: ../gprint_presets.php:418 #, fuzzy msgid "No GPRINT Presets" msgstr "GPRINT プリセット" #: ../graph.php:94 #, fuzzy msgid "Viewing Graph" msgstr "グラフを表示ã™ã‚‹" #: ../graph.php:124 ../lib/html.php:292 msgid "Graph Details, Zooming and Debugging Utilities" msgstr "" #: ../graph.php:125 #, fuzzy msgid "CSV Export" msgstr "グラフエクスãƒãƒ¼ãƒˆ" #: ../graph.php:126 #, fuzzy msgid "Real-time" msgstr "領域" #: ../graph.php:179 #, fuzzy msgid "Utility View" msgstr "ユーティリティ" #: ../graph.php:277 #, fuzzy msgid "Graph Utility View" msgstr "グラフã®é¡Œå" #: ../graph.php:290 #, fuzzy msgid "Graph Source/Properties" msgstr "グラフツリーã®é …ç›®" #: ../graph.php:294 #, fuzzy msgid "Graph Data" msgstr "グラフ項目" #: ../graph.php:307 ../graph_realtime.php:267 ../lib/clog_webapi.php:351 #: ../lib/html_graph.php:319 ../lib/html_tree.php:765 ../lib/html_tree.php:785 #: ../utilities.php:1020 ../utilities.php:1904 msgid "Refresh" msgstr "" #: ../graph.php:429 msgid "RRDtool Graph Syntax" msgstr "" #: ../graph_realtime.php:195 msgid "Real-time has been disabled by your administrator." msgstr "" #: ../graph_realtime.php:202 msgid "" "The Image Cache Directory does not exist. Please first create it and set " "permissions and then attempt to open another Real-time graph." msgstr "" #: ../graph_realtime.php:209 msgid "" "The Image Cache Directory is not writable. Please set permissions and then " "attempt to open another Real-time graph." msgstr "" #: ../graph_realtime.php:224 msgid "Cacti Real-time Graphing" msgstr "" #: ../graph_realtime.php:253 ../lib/html_graph.php:327 ../lib/html_tree.php:773 msgid "Window" msgstr "" #: ../graph_realtime.php:283 #, php-format msgid "%d seconds left." msgstr "" #: ../graph_realtime.php:311 msgid "seconds left." msgstr "" #: ../graph_templates.php:35 msgid "Resize" msgstr "" #: ../graph_templates.php:36 #, fuzzy msgid "Sync Graphs" msgstr "グラフ" #: ../graph_templates.php:312 msgid "" "Click 'Continue' to delete the following Graph Template(s). Any Graph(s) " "associated with the Template(s) will become individual Graph(s)." msgstr "" #: ../graph_templates.php:317 #, fuzzy msgid "Delete Graph Template(s)" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../graph_templates.php:321 msgid "" "Click 'Continue' to duplicate the following Graph Template(s). You can " "optionally change the title format for the new Graph Template(s)." msgstr "" #: ../graph_templates.php:327 #, fuzzy msgid "Duplicate Graph Template(s)" msgstr "グラフテンプレートを更新ã™ã‚‹" #: ../graph_templates.php:331 msgid "" "Click 'Continue' to resize the following Graph Template(s) and Graph(s) to " "the Height and Width below. The defaults below are maintained in Settings." msgstr "" #: ../graph_templates.php:340 ../lib/html_reports.php:117 #, fuzzy msgid "Graph Height" msgstr "グラフã®é¡Œå" #: ../graph_templates.php:342 ../lib/html_reports.php:109 #, fuzzy msgid "Graph Width" msgstr "グラフã®é¡Œå" #: ../graph_templates.php:347 #, fuzzy msgid "Resize Selected Graph Template(s)" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../graph_templates.php:351 msgid "" "Click 'Continue' to Synchronize your Graphs the following Graph Template(s). " "This function is important if you have Graphs that exist with multiple " "versions of a Graph Template and wish to make them all common in appearance." msgstr "" #: ../graph_templates.php:356 #, fuzzy msgid "Synchronize Graphs to Graph Template(s)" msgstr "グラフテンプレートã«å¤‰æ›ã™ã‚‹" #: ../graph_templates.php:359 msgid "ERROR: You must select at least one graph template." msgstr "" #: ../graph_templates.php:413 #, fuzzy, php-format msgid "Graph Template Items [edit: %s]" msgstr "グラフテンプレートã®é …ç›®" #: ../graph_templates.php:420 ../lib/functions.php:2070 #, fuzzy msgid "Graph Item Inputs" msgstr "グラフ項目" #: ../graph_templates.php:446 #, fuzzy msgid "No Inputs" msgstr "データ入力" #: ../graph_templates.php:491 #, fuzzy, php-format msgid "Template [edit: %s]" msgstr "テンプレートå" #: ../graph_templates.php:493 #, fuzzy msgid "Template [new]" msgstr "テンプレートå" #: ../graph_templates.php:509 #, fuzzy msgid "Graph Template Options" msgstr "グラフテンプレート" #: ../graph_templates.php:524 msgid "Use Per-Graph Value (Ignore this Value)" msgstr "" #: ../graph_templates.php:619 ../graph_templates.php:634 #: ../graph_templates.php:752 ../graphs_new.php:592 #: ../include/global_arrays.php:872 ../lib/functions.php:2046 #: ../user_admin.php:1376 ../user_group_admin.php:1101 msgid "Graph Templates" msgstr "グラフテンプレート" #: ../graph_templates.php:761 #, fuzzy msgid "The name of this Graph Template." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../graph_templates.php:763 msgid "" "Graph Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Graph." msgstr "" #: ../graph_templates.php:764 #, fuzzy msgid "The number of Graphs using this Graph Template." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../graph_templates.php:765 msgid "The default size of the resulting Graphs." msgstr "" #: ../graph_templates.php:766 #, fuzzy msgid "Image Format" msgstr "題åã®æ›¸å¼:" #: ../graph_templates.php:766 msgid "The default image format for the resulting Graphs." msgstr "" #: ../graph_templates.php:767 msgid "The vertical label for the resulting Graphs." msgstr "" #: ../graph_templates.php:767 msgid "Vertical Label" msgstr "垂直ã®ãƒ©ãƒ™ãƒ«" #: ../graph_templates.php:793 #, fuzzy msgid "No Graph Templates Found" msgstr "グラフテンプレートãŒã‚りã¾ã›ã‚“" #: ../graph_templates_inputs.php:145 #, php-format msgid "Graph Item Inputs [edit graph: %s]" msgstr "" #: ../graph_templates_inputs.php:191 #, fuzzy msgid "Associated Graph Items" msgstr "関連グラフテンプレート" #: ../graph_templates_items.php:99 ../graph_templates_items.php:125 #: ../graphs_items.php:118 msgid "Cur:" msgstr "" #: ../graph_templates_items.php:106 ../graph_templates_items.php:132 #: ../graphs_items.php:125 msgid "Avg:" msgstr "" #: ../graph_templates_items.php:113 ../graph_templates_items.php:146 #: ../graphs_items.php:139 msgid "Max:" msgstr "" #: ../graph_templates_items.php:139 ../graphs_items.php:132 msgid "Min:" msgstr "" #: ../graph_templates_items.php:391 #, fuzzy, php-format msgid "Graph Template Items [edit graph: %s]" msgstr "グラフテンプレートã®é …ç›®" #: ../graph_view.php:242 msgid "YOU DO NOT HAVE RIGHTS FOR TREE VIEW" msgstr "" #: ../graph_view.php:320 msgid "YOU DO NOT HAVE RIGHTS FOR PREVIEW VIEW" msgstr "" #: ../graph_view.php:326 #, fuzzy msgid "Graph Preview Filters" msgstr "グラフツリーã®é …ç›®" #: ../graph_view.php:326 msgid "[ Custom Graph List Applied - Filtering from List ]" msgstr "" #: ../graph_view.php:422 msgid "YOU DO NOT HAVE RIGHTS FOR LIST VIEW" msgstr "" #: ../graph_view.php:509 msgid "Graph List View Filters" msgstr "" #: ../graph_view.php:509 msgid "[ Custom Graph List Applied - Filter FROM List ]" msgstr "" #: ../graph_view.php:528 ../graph_view.php:770 ../graph_view.php:775 #: ../lib/html_graph.php:163 ../lib/html_graph.php:384 #: ../lib/html_graph.php:389 ../lib/html_tree.php:615 ../lib/html_tree.php:831 #: ../lib/html_tree.php:836 #, fuzzy msgid "All Graphs & Templates" msgstr "グラフテンプレート" #: ../graph_view.php:577 ../graph_view.php:654 msgid "View" msgstr "" #: ../graph_view.php:577 ../graph_view.php:654 ../include/global_arrays.php:853 #: ../lib/clog_webapi.php:249 msgid "View Graphs" msgstr "グラフを表示ã™ã‚‹" #: ../graph_view.php:619 #, fuzzy msgid "Graph Size" msgstr "グラフã®é¡Œå" #: ../graph_view.php:633 #, fuzzy msgid "Aggregated Device" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•を作æˆ" #: ../graph_view.php:636 #, fuzzy msgid "Non-Device" msgstr "デãƒã‚¤ã‚¹" #: ../graph_view.php:637 msgid "Not Applicable" msgstr "" #: ../graph_view.php:772 ../lib/html_graph.php:386 ../lib/html_tree.php:833 #: ../settings.php:227 #, fuzzy msgid "Templates Selected" msgstr "テンプレートå" #: ../graphs.php:49 ../graphs.php:845 ../lib/functions.php:1920 msgid "Change Graph Template" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•テンプレートを変更ã™ã‚‹" #: ../graphs.php:56 #, fuzzy msgid "Create Aggregate Graph" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•を作æˆ" #: ../graphs.php:57 msgid "Create Aggregate from Template" msgstr "" #: ../graphs.php:58 ../graphs.php:1094 ../host.php:43 msgid "Apply Automation Rules" msgstr "" #: ../graphs.php:64 ../graphs.php:867 #, fuzzy msgid "Convert to Graph Template" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•テンプレートを変更ã™ã‚‹" #: ../graphs.php:176 ../graphs_new.php:228 ../graphs_new.php:244 #, fuzzy, php-format msgid "Created graph: %s" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•を作æˆ" #: ../graphs.php:184 ../graphs_new.php:236 ../graphs_new.php:252 msgid "ERROR: no Data Source associated. Check Template" msgstr "" #: ../graphs.php:795 msgid "" "Click 'Continue' to delete the following Graph(s). Note that if you choose " "to Delete Data Sources, only those Data Sources not in use elsewhere will " "also be Deleted." msgstr "" #: ../graphs.php:799 msgid "The following Data Source(s) are in use by these Graph(s)." msgstr "" #: ../graphs.php:808 msgid "" "Delete all Data Source(s) referenced by these Graph(s) that are not in use " "elsewhere." msgstr "" #: ../graphs.php:810 msgid "Leave the Data Source(s) untouched." msgstr "" #: ../graphs.php:822 msgid "" "Choose a Graph Template and click 'Continue' to change the Graph Template " "for the following Graph(s). Please note, that only compatible Graph " "Templates will be displayed. Compatible is identified by those having " "identical Data Sources." msgstr "" #: ../graphs.php:824 #, fuzzy msgid "New Graph Template" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•テンプレート:" #: ../graphs.php:849 #, fuzzy msgid "" "Click 'Continue' to duplicate the following Graph(s). You can optionally " "change the title format for the new Graph(s)." msgstr "次ã®ã‚°ãƒ©ãƒ•を本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../graphs.php:852 msgid " (1)" msgstr "" #: ../graphs.php:856 #, fuzzy msgid "Duplicate Graph(s)" msgstr "グラフテンプレートを更新ã™ã‚‹" #: ../graphs.php:860 msgid "" "Click 'Continue' to convert the following Graph(s) into Graph Template(s). " "You can optionally change the title format for the new Graph Template(s)." msgstr "" #: ../graphs.php:863 #, fuzzy msgid " Template" msgstr "グラフã®ãƒ†ãƒ³ãƒ—レート" #: ../graphs.php:871 msgid "" "Click 'Continue' to place the following Graph(s) under the Tree Branch " "selected below." msgstr "" #: ../graphs.php:873 msgid "Destination Branch" msgstr "" #: ../graphs.php:886 msgid "Choose a new Device for these Graph(s) and click 'Continue'." msgstr "" #: ../graphs.php:888 #, fuzzy msgid "New Device" msgstr "デãƒã‚¤ã‚¹" #: ../graphs.php:900 msgid "" "Click 'Continue' to re-apply suggested naming to the following Graph(s)." msgstr "" #: ../graphs.php:905 msgid "Reapply Suggested Naming to Graph(s)" msgstr "" #: ../graphs.php:921 msgid "" "Click 'Continue' to create an Aggregate Graph from the selected Graph(s)." msgstr "" #: ../graphs.php:928 msgid "The following data sources are in use by these graphs:" msgstr "" #: ../graphs.php:961 msgid "Please confirm" msgstr "" #: ../graphs.php:1029 msgid "Resize Selected Graph(s)" msgstr "" #: ../graphs.php:1051 msgid "" "Select the Aggregate Template to use and press 'Continue' to create your " "Aggregate Graph. Otherwise press 'Cancel' to return." msgstr "" #: ../graphs.php:1072 msgid "Create Aggregate" msgstr "" #: ../graphs.php:1076 msgid "" "There are presently no Aggregate Templates defined for this Graph Template. " "Please either first create an Aggregate Template for the selected Graphs " "Graph Template and try again, or simply crease an un-templated Aggregate " "Graph." msgstr "" #: ../graphs.php:1077 msgid "Press 'Return' to return and select different Graphs." msgstr "" #: ../graphs.php:1089 msgid "Click 'Continue' to apply Automation Rules to the following Graphs." msgstr "" #: ../graphs.php:1105 msgid "You must select at least one Graph." msgstr "" #: ../graphs.php:1245 #, fuzzy, php-format msgid "Graph [edit: %s]" msgstr "グラフ項目" #: ../graphs.php:1251 #, fuzzy msgid "Graph [new]" msgstr "グラフ項目" #: ../graphs.php:1276 msgid "Turn Off Graph Debug Mode." msgstr "" #: ../graphs.php:1278 msgid "Turn On Graph Debug Mode." msgstr "" #: ../graphs.php:1291 #, fuzzy msgid "Edit Graph Template." msgstr "グラフã®ãƒ†ãƒ³ãƒ—レート" #: ../graphs.php:1297 #, fuzzy msgid "Unlock Graph." msgstr "グラフãŒã‚りã¾ã›ã‚“" #: ../graphs.php:1299 #, fuzzy msgid "Lock Graph." msgstr "グラフãŒã‚りã¾ã›ã‚“" #: ../graphs.php:1323 msgid "Selected Graph Template" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../graphs.php:1324 #, php-format msgid "" "Choose a Graph Template to apply to this Graph. Please note that you may " "only change Graph Templates to a 100% compatible Graph Template, which means " "that it includes identical Data Sources." msgstr "" #: ../graphs.php:1332 msgid "Choose the Device that this Graph belongs to." msgstr "" #: ../graphs.php:1371 #, fuzzy msgid "Supplemental Graph Template Data" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../graphs.php:1373 #, fuzzy msgid "Graph Fields" msgstr "グラフ項目" #: ../graphs.php:1374 #, fuzzy msgid "Graph Item Fields" msgstr "グラフ項目" #: ../graphs.php:1643 ../lib/functions.php:1908 msgid "Graph Management" msgstr "グラフ管ç†" #: ../graphs.php:1787 ../include/global_form.php:1859 #: ../lib/html_reports.php:355 ../tree.php:681 #, fuzzy msgid "Graph Name" msgstr "グラフ管ç†" #: ../graphs.php:1787 msgid "" "The Title of this Graph. Generally programatically generated from the Graph " "Template definition or Suggested Naming rules. The max length of the Title " "is controlled under Settings->Visual." msgstr "" #: ../graphs.php:1788 msgid "" "The internal database ID for this Graph. Useful when performing automation " "or debugging." msgstr "" #: ../graphs.php:1789 msgid "The Graph Template that this Graph was based upon." msgstr "" #: ../graphs.php:1790 msgid "The size of this Graph when not in Preview mode." msgstr "" #: ../graphs_items.php:290 #, fuzzy msgid "Data Sources [No Device]" msgstr "データソース" #: ../graphs_items.php:325 ../include/global_arrays.php:984 #: ../include/global_form.php:1556 #, fuzzy msgid "Data Template" msgstr "グラフã®ãƒ†ãƒ³ãƒ—レート" #: ../graphs_items.php:377 #, fuzzy, php-format msgid "Graph Items [graph: %s]" msgstr "グラフ項目" #: ../graphs_new.php:75 #, fuzzy msgid "Default Settings Saved" msgstr "Cacti 設定" #: ../graphs_new.php:281 #, fuzzy, php-format msgid "Create Graph from %s" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•を作æˆ" #: ../graphs_new.php:302 #, fuzzy, php-format msgid "Created %s Graphs from %s" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•を作æˆ" #: ../graphs_new.php:304 #, fuzzy, php-format msgid "Created 1 Graph from %s" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•を作æˆ" #: ../graphs_new.php:345 #, fuzzy, php-format msgid "Graph [Template: %s]" msgstr "グラフテンプレート" #: ../graphs_new.php:346 #, fuzzy, php-format msgid "Graph Items [Template: %s]" msgstr "グラフテンプレート" #: ../graphs_new.php:351 #, fuzzy, php-format msgid "Data Source [Template: %s]" msgstr "データソースã®ç¨®é¡ž" #: ../graphs_new.php:361 #, php-format msgid "Custom Data [Template: %s]" msgstr "" #: ../graphs_new.php:446 #, fuzzy, php-format msgid "New Graphs for [ %s ]" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•" #: ../graphs_new.php:449 msgid "New Graphs for [ All Devices ]" msgstr "" #: ../graphs_new.php:454 msgid "New Graphs for None Host Type" msgstr "" #: ../graphs_new.php:500 #, fuzzy msgid "Graph Types" msgstr "グラフツリー" #: ../graphs_new.php:505 #, fuzzy msgid "Graph Template Based" msgstr "グラフテンプレートå" #: ../graphs_new.php:541 msgid "Edit this Device" msgstr "" #: ../graphs_new.php:542 #, fuzzy msgid "Create New Device" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•を作æˆ" #: ../graphs_new.php:598 ../graphs_new.php:880 ../user_admin.php:1593 #: ../user_group_admin.php:1316 msgid "Select All" msgstr "ã™ã¹ã¦é¸æŠž" #: ../graphs_new.php:674 ../include/global_arrays.php:679 #: ../include/global_arrays.php:750 ../lib/html_form.php:1111 #: ../lib/html_form.php:1124 ../tree.php:1025 msgid "Create" msgstr "作æˆ" #: ../graphs_new.php:676 msgid "(Select a graph type to create)" msgstr "" #: ../graphs_new.php:760 #, fuzzy, php-format msgid "Data Query [%s]" msgstr "データå•åˆã›" #: ../graphs_new.php:876 msgid "From there you can get more information." msgstr "" #: ../graphs_new.php:876 msgid "" "This Data Query returned 0 rows, perhaps there was a problem executing this " "Data Query." msgstr "" #: ../graphs_new.php:876 msgid "You can run this Data Query in debug mode" msgstr "" #: ../graphs_new.php:919 msgid "Search Returned no Rows." msgstr "" #: ../graphs_new.php:924 #, fuzzy msgid "Error in data query." msgstr "ã“ã®å•ã„åˆã‚ã›ã®åå‰ã§ã™ã€‚" #: ../graphs_new.php:948 #, fuzzy msgid "Select a Graph Type to Create" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../graphs_new.php:951 msgid "Make selection default" msgstr "" #: ../graphs_new.php:951 #, fuzzy msgid "Set Default" msgstr "DES (デフォルト)" #: ../host.php:41 #, fuzzy msgid "Change Device Settings" msgstr "Cacti 設定" #: ../host.php:42 msgid "Clear Statistics" msgstr "統計を消去" #: ../host.php:44 msgid "Sync to Device Template" msgstr "" #: ../host.php:376 msgid "Click 'Continue' to enable the following Device(s)." msgstr "" #: ../host.php:381 #, fuzzy msgid "Enable Device(s)" msgstr "デãƒã‚¤ã‚¹" #: ../host.php:385 msgid "Click 'Continue' to disable the following Device(s)." msgstr "" #: ../host.php:390 msgid "Disable Device(s)" msgstr "" #: ../host.php:394 msgid "" "Click 'Continue' to change the Device options below for multiple Device(s). " "Please check the box next to the fields you want to update, and then fill in " "the new value." msgstr "" #: ../host.php:417 #, fuzzy msgid "Update this Field" msgstr "RRD ファイルを更新ã™ã‚‹" #: ../host.php:432 #, fuzzy msgid "Change Device(s) SNMP Options" msgstr "SNMP オプションを変更" #: ../host.php:436 msgid "Click 'Continue' to clear the counters for the following Device(s)." msgstr "" #: ../host.php:441 #, fuzzy msgid "Clear Statistics on Device(s)" msgstr "統計を消去" #: ../host.php:445 msgid "" "Click 'Continue' to Synchronize the following Device(s) to their Device " "Template." msgstr "" #: ../host.php:450 msgid "Synchronize Device(s)" msgstr "" #: ../host.php:454 #, fuzzy msgid "Click 'Continue' to delete the following Device(s)." msgstr "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../host.php:457 msgid "" "Leave all Graph(s) and Data Source(s) untouched. Data Source(s) will be " "disabled however." msgstr "" #: ../host.php:458 msgid "Delete all associated Graph(s) and Data Source(s)." msgstr "" #: ../host.php:464 #, fuzzy msgid "Delete Device(s)" msgstr "デãƒã‚¤ã‚¹" #: ../host.php:468 msgid "" "Click 'Continue' to place the following Device(s) under the branch selected " "below." msgstr "" #: ../host.php:478 msgid "Place Device(s) on Tree" msgstr "" #: ../host.php:482 msgid "Click 'Continue' to apply Automation Rules to the following Devices(s)." msgstr "" #: ../host.php:487 msgid "Run Automation on Device(s)" msgstr "" #: ../host.php:498 msgid "You must select at least one device." msgstr "" #: ../host.php:598 #, fuzzy msgid "Device [new]" msgstr "デãƒã‚¤ã‚¹" #: ../host.php:604 #, php-format msgid "Device [edit: %s]" msgstr "" #: ../host.php:606 msgid "Disable Device Debug" msgstr "" #: ../host.php:608 msgid "Enable Device Debug" msgstr "" #: ../host.php:622 msgid "Create Graphs for this Device" msgstr "" #: ../host.php:624 #, fuzzy msgid "Data Source List" msgstr "データソース" #: ../host.php:625 #, fuzzy msgid "Graph List" msgstr "グラフã®é¡Œå" #: ../host.php:631 msgid "Contacting Device" msgstr "" #: ../host.php:663 msgid "Data Query Debug Information" msgstr "" #: ../host.php:666 ../templates_import.php:141 msgid "Hide" msgstr "" #: ../host.php:737 ../tree.php:1145 ../tree.php:1219 ../tree.php:1306 #, fuzzy msgid "Edit" msgstr "(編集)" #: ../host.php:737 msgid "Is Being Graphed" msgstr "" #: ../host.php:737 #, fuzzy msgid "Not Being Graphed" msgstr "グラフãŒã‚りã¾ã›ã‚“" #: ../host.php:740 #, fuzzy msgid "Delete Graph Template Association" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../host.php:747 ../host_templates.php:493 #, fuzzy msgid "No associated graph templates." msgstr "関連グラフテンプレート" #: ../host.php:756 ../host_templates.php:502 #, fuzzy msgid "Add Graph Template" msgstr "グラフã®ãƒ†ãƒ³ãƒ—レート" #: ../host.php:762 #, fuzzy msgid "Add Graph Template to Device" msgstr "グラフテンプレートã®é …ç›®" #: ../host.php:772 ../host_templates.php:525 msgid "Associated Data Queries" msgstr "連想データ照会" #: ../host.php:777 ../host.php:873 msgid "Re-Index Method" msgstr "å†ç´¢å¼•方法" #: ../host.php:779 ../lib/api_automation.php:1212 #: ../lib/api_automation.php:1274 ../lib/api_automation.php:1338 #: ../lib/functions.php:1926 ../lib/functions.php:1992 #: ../lib/functions.php:2058 ../lib/functions.php:2094 #: ../lib/functions.php:2112 ../lib/functions.php:2130 #: ../lib/functions.php:2148 ../lib/functions.php:2178 #: ../lib/functions.php:2214 ../lib/functions.php:2244 #: ../lib/functions.php:2334 ../lib/functions.php:2520 #: ../lib/functions.php:2544 ../lib/functions.php:2562 #: ../lib/functions.php:2580 ../lib/functions.php:2598 #: ../lib/functions.php:2622 ../lib/html_reports.php:1216 ../links.php:377 #: ../plugins.php:374 msgid "Actions" msgstr "æ“作" #: ../host.php:840 msgid "Fail" msgstr "" #: ../host.php:840 ../lib/functions.php:3811 ../lib/functions.php:3816 #, fuzzy msgid "Success" msgstr "ä¿å­˜ã«æˆåŠŸã—ã¾ã—ãŸã€‚" #: ../host.php:843 #, fuzzy msgid "Reload Query" msgstr "データå•åˆã›" #: ../host.php:844 msgid "Verbose Query" msgstr "" #: ../host.php:845 #, fuzzy msgid "Remove Query" msgstr "(削除)" #: ../host.php:851 #, fuzzy msgid "No Associated Data Queries." msgstr "連想データ照会" #: ../host.php:867 ../host_templates.php:559 #, fuzzy msgid "Add Data Query" msgstr "データå•åˆã›" #: ../host.php:879 #, fuzzy msgid "Add Data Query to Device" msgstr "データ照会å" #: ../host.php:1014 ../include/global_arrays.php:460 msgid "Ping and SNMP Uptime" msgstr "" #: ../host.php:1015 ../include/global_arrays.php:462 #, fuzzy msgid "SNMP Uptime" msgstr "SNMP タイムアウト" #: ../host.php:1016 ../include/global_arrays.php:465 #, fuzzy msgid "Ping" msgstr "UDP Ping" #: ../host.php:1017 ../include/global_arrays.php:461 msgid "Ping or SNMP Uptime" msgstr "" #: ../host.php:1018 ../include/global_arrays.php:463 #, fuzzy msgid "SNMP Desc" msgstr "SNMP" #: ../host.php:1019 msgid "SNMP GetNext" msgstr "" #: ../host.php:1312 ../include/global_settings.php:441 msgid "Site" msgstr "" #: ../host.php:1388 ../lib/api_automation.php:164 #: ../lib/api_automation.php:1019 msgid "Not Up" msgstr "" #: ../host.php:1391 ../lib/api_automation.php:167 #: ../lib/api_automation.php:1022 ../lib/html_utility.php:814 ../pollers.php:41 msgid "Recovering" msgstr "" #: ../host.php:1392 ../lib/api_automation.php:168 #: ../lib/api_automation.php:1023 ../lib/html_utility.php:823 #: ../plugins.php:166 ../utilities.php:2011 msgid "Unknown" msgstr "" #: ../host.php:1498 ../lib/api_automation.php:557 #, fuzzy msgid "Device Description" msgstr "説明" #: ../host.php:1498 msgid "The name by which this Device will be referred to." msgstr "" #: ../host.php:1499 msgid "" "Either an IP address, or hostname. If a hostname, it must be resolvable by " "either DNS, or from your hosts file." msgstr "" #: ../host.php:1499 ../include/global_form.php:1013 #: ../include/global_form.php:1638 ../lib/api_automation.php:270 #: ../lib/api_automation.php:558 ../lib/api_automation.php:809 #: ../lib/api_automation.php:1138 ../managers.php:225 ../pollers.php:82 #: ../pollers.php:613 ../user_admin.php:1242 ../user_group_admin.php:966 msgid "Hostname" msgstr "ホストå" #: ../host.php:1500 msgid "" "The internal database ID for this Device. Useful when performing automation " "or debugging." msgstr "" #: ../host.php:1501 msgid "The total number of Graphs generated from this Device." msgstr "" #: ../host.php:1502 msgid "The total number of Data Sources generated from this Device." msgstr "" #: ../host.php:1503 msgid "" "The monitoring status of the Device based upon ping results. If this Device " "is a special type Device, by using the hostname \"localhost\", or due to the " "setting to not perform an Availability Check, it will always remain Up. " "When using cmd.php data collector, a Device with no Graphs, is not pinged by " "the data collector and will remain in an \"Unknown\" state." msgstr "" #: ../host.php:1504 msgid "In State" msgstr "" #: ../host.php:1504 msgid "The amount of time that this Device has been in its current state." msgstr "" #: ../host.php:1505 msgid "The current amount of time that the host has been up." msgstr "" #: ../host.php:1506 #, fuzzy msgid "Poll Time" msgstr "åŽé›†" #: ../host.php:1506 msgid "The amount of time it takes to collect data from this Device." msgstr "" #: ../host.php:1507 msgid "Current (ms)" msgstr "ç¾åœ¨ (ミリ秒)" #: ../host.php:1507 msgid "The current ping time in milliseconds to reach the Device." msgstr "" #: ../host.php:1508 msgid "Average (ms)" msgstr "å¹³å‡ (ミリ秒)" #: ../host.php:1508 msgid "" "The average ping time in milliseconds to reach the Device since the counters " "were cleared for this Device." msgstr "" #: ../host.php:1509 msgid "Availability" msgstr "" #: ../host.php:1509 msgid "" "The availability percentage based upon ping results since the counters were " "cleared for this Device." msgstr "" #: ../host_templates.php:32 #, fuzzy msgid "Sync Devices" msgstr "デãƒã‚¤ã‚¹" #: ../host_templates.php:256 msgid "Click 'Continue' to delete the following Device Template(s)." msgstr "" #: ../host_templates.php:261 #, fuzzy msgid "Delete Device Template(s)" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../host_templates.php:265 msgid "" "Click 'Continue' to duplicate the following Device Template(s). Optionally " "change the title for the new Device Template(s)." msgstr "" #: ../host_templates.php:275 #, fuzzy msgid "Duplicate Device Template(s)" msgstr "グラフテンプレートを更新ã™ã‚‹" #: ../host_templates.php:279 msgid "" "Click 'Continue' to Synchronize Devices associated with the selected Device " "Template(s). Note that this action may take some time depending on the " "number of Devices mapped to the Device Template." msgstr "" #: ../host_templates.php:286 msgid "Sync Devices to Device Template(s)" msgstr "" #: ../host_templates.php:289 msgid "You must select at least one host template." msgstr "" #: ../host_templates.php:328 msgid "" "Click 'Continue' to delete the following Graph Template will be " "disassociated from the Device Template." msgstr "" #: ../host_templates.php:329 #, fuzzy, php-format msgid "Graph Template Name: %s" msgstr "グラフテンプレートå" #: ../host_templates.php:388 msgid "" "Click 'Continue' to delete the following Data Queries will be disassociated " "from the Device Template." msgstr "" #: ../host_templates.php:389 #, fuzzy, php-format msgid "Data Query Name: %s" msgstr "データ照会å" #: ../host_templates.php:442 #, php-format msgid "Device Templates [edit: %s]" msgstr "" #: ../host_templates.php:444 msgid "Device Templates [new]" msgstr "" #: ../host_templates.php:461 msgid "Default Submit Button" msgstr "" #: ../host_templates.php:515 #, fuzzy msgid "Add Graph Template to Device Template" msgstr "グラフテンプレートã®é …ç›®" #: ../host_templates.php:550 #, fuzzy msgid "No associated data queries." msgstr "連想データ照会" #: ../host_templates.php:569 msgid "Add Data Query to Device Template" msgstr "" #: ../host_templates.php:691 ../host_templates.php:706 #: ../host_templates.php:805 ../include/global_arrays.php:874 #: ../lib/functions.php:2082 #, fuzzy msgid "Device Templates" msgstr "ユーザーテンプレート" #: ../host_templates.php:724 #, fuzzy msgid "Has Devices" msgstr "デãƒã‚¤ã‚¹" #: ../host_templates.php:814 ../lib/api_automation.php:272 #: ../lib/api_automation.php:559 ../lib/api_automation.php:1139 #, fuzzy msgid "Device Template Name" msgstr "テンプレートå" #: ../host_templates.php:814 #, fuzzy msgid "The name of this Device Template." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../host_templates.php:815 msgid "" "The internal database ID for this Device Template. Useful when performing " "automation or debugging." msgstr "" #: ../host_templates.php:816 msgid "" "Device Templates in use cannot be Deleted. In use is defined as being " "referenced by a Device." msgstr "" #: ../host_templates.php:817 #, fuzzy msgid "Devices Using" msgstr "デãƒã‚¤ã‚¹" #: ../host_templates.php:817 #, fuzzy msgid "The number of Devices using this Device Template." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../host_templates.php:840 #, fuzzy msgid "No Device Templates Found" msgstr "グラフテンプレートãŒã‚りã¾ã›ã‚“" #: ../include/auth.php:115 ../include/auth.php:117 ../permission_denied.php:30 #: ../permission_denied.php:32 #, fuzzy msgid "Login Again" msgstr "ログイン設定" #: ../include/auth.php:125 ../include/auth.php:146 ../permission_denied.php:60 #, fuzzy msgid "Permission Denied" msgstr "アクセス拒å¦ã•れã¾ã—ãŸ" #: ../include/auth.php:148 ../permission_denied.php:62 #, fuzzy msgid "" "If you feel that this is an error. Please contact your Cacti Administrator." msgstr "アクセス拒å¦ã•れã¾ã—ãŸã€‚Cacti 管ç†è€…ã«é€£çµ¡ã—ã¦ãã ã•ã„。" #: ../include/auth.php:148 ../permission_denied.php:62 msgid "You are not permitted to access this section of Cacti." msgstr "" #: ../include/global_arrays.php:88 msgid "Save Successful." msgstr "ä¿å­˜ã«æˆåŠŸã—ã¾ã—ãŸã€‚" #: ../include/global_arrays.php:91 msgid "Save Failed." msgstr "ä¿å­˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚" #: ../include/global_arrays.php:94 msgid "Save Failed: Field Input Error (Check Red Fields)." msgstr "" #: ../include/global_arrays.php:97 msgid "Passwords do not match, please retype." msgstr "パスワードãŒä¸€è‡´ã—ã¾ã›ã‚“。もã†ä¸€åº¦å…¥åŠ›ã—ã¦ãã ã•ã„。" #: ../include/global_arrays.php:100 msgid "You must select at least one field." msgstr "" #: ../include/global_arrays.php:103 msgid "" "You must have built in user authentication turned on to use this feature." msgstr "" #: ../include/global_arrays.php:106 msgid "XML parse error." msgstr "XML ã®è§£æžã‚¨ãƒ©ãƒ¼ã§ã™ã€‚" #: ../include/global_arrays.php:109 msgid "Username already in use." msgstr "ユーザーåã¯æ—¢ã«ä½¿ç”¨ã•れã¦ã„ã¾ã™ã€‚" #: ../include/global_arrays.php:112 msgid "XML: Cacti version does not exist." msgstr "XML: Cacti ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå­˜åœ¨ã—ã¾ã›ã‚“。" #: ../include/global_arrays.php:115 msgid "XML: Hash version does not exist." msgstr "XML: ãƒãƒƒã‚·ãƒ¥ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå­˜åœ¨ã—ã¾ã›ã‚“。" #: ../include/global_arrays.php:118 msgid "XML: Generated with a newer version of Cacti." msgstr "XML: Cacti ã®ã‚ˆã‚Šæ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ç”Ÿæˆã•れã¾ã—ãŸã€‚" #: ../include/global_arrays.php:121 msgid "XML: Cannot locate type code." msgstr "" #: ../include/global_arrays.php:124 #, fuzzy msgid "Username already exists." msgstr "ユーザーåã¯æ—¢ã«ä½¿ç”¨ã•れã¦ã„ã¾ã™ã€‚" #: ../include/global_arrays.php:127 msgid "Username change not permitted for designated template or guest user." msgstr "" #: ../include/global_arrays.php:130 msgid "User delete not permitted for designated template or guest user." msgstr "" #: ../include/global_arrays.php:133 msgid "User delete not permitted for designated graph export user." msgstr "" #: ../include/global_arrays.php:136 msgid "" "Data Template Includes Deleted Data Source Profile. Please resave the Data " "Template with an existing Data Source Profile." msgstr "" #: ../include/global_arrays.php:139 msgid "" "Graph Template Includes Deleted GPrint Prefix. Please run Database Repair " "Script to Identify and/or Correct." msgstr "" #: ../include/global_arrays.php:142 msgid "" "Graph Template Includes Deleted CDEFs. Please run Database Repair Script to " "Identify and/or Correct." msgstr "" #: ../include/global_arrays.php:145 msgid "" "Graph Template Includes Deleted Data Input Method. Please run Database " "Repair Script to Identify." msgstr "" #: ../include/global_arrays.php:148 msgid "" "Data Template Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: ../include/global_arrays.php:151 msgid "" "Device Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: ../include/global_arrays.php:154 msgid "" "Data Query Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: ../include/global_arrays.php:157 msgid "" "Graph Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: ../include/global_arrays.php:160 msgid "" "Graph not found. Either it has been deleted or your database needs repair." msgstr "" #: ../include/global_arrays.php:163 msgid "SNMPv3 Auth Passphrases must be 8 characters or greater." msgstr "" #: ../include/global_arrays.php:166 msgid "" "Some Graphs not Updated. Unable to Change Device for Data Query based Graphs." msgstr "" #: ../include/global_arrays.php:169 msgid "Unable to Change Device for Data Query based Graphs." msgstr "" #: ../include/global_arrays.php:172 msgid "Cacti Log purged successfully" msgstr "" #: ../include/global_arrays.php:175 msgid "" "Error: If you force a password change, you must also allow the user to " "change their password." msgstr "" #: ../include/global_arrays.php:178 msgid "Error: You are not allowed to change your password." msgstr "" #: ../include/global_arrays.php:181 msgid "Error: LDAP/AD based password change not supported." msgstr "" #: ../include/global_arrays.php:184 msgid "Error: Unable to clear log, no write permissions" msgstr "" #: ../include/global_arrays.php:187 msgid "Error: Unable to clear log, file does not exist" msgstr "" #: ../include/global_arrays.php:190 msgid "Invalid Timestamp. Select timestamp in the future." msgstr "" #: ../include/global_arrays.php:193 msgid "Data Collector(s) Synchronized for Offline Operation" msgstr "" #: ../include/global_arrays.php:196 msgid "Data Collector(s) Not found when attempting Synchronization" msgstr "" #: ../include/global_arrays.php:199 msgid "Unable to establish MySQL connection with remote Data Collector." msgstr "" #: ../include/global_arrays.php:202 msgid "" "Data Collector Synchronization must be initiated from the main Cacti server." msgstr "" #: ../include/global_arrays.php:205 msgid "Report Saved" msgstr "" #: ../include/global_arrays.php:208 #, fuzzy msgid "Report Save Failed" msgstr "ä¿å­˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚" #: ../include/global_arrays.php:211 msgid "Report Item Saved" msgstr "" #: ../include/global_arrays.php:214 #, fuzzy msgid "Report Item Save Failed" msgstr "ä¿å­˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚" #: ../include/global_arrays.php:306 ../include/global_arrays.php:619 msgid "Function" msgstr "機能" #: ../include/global_arrays.php:307 ../include/global_arrays.php:621 #, fuzzy msgid "Special Data Source" msgstr "データソースを更新ã™ã‚‹" #: ../include/global_arrays.php:308 ../include/global_arrays.php:623 msgid "Custom String" msgstr "カスタム文字列" #: ../include/global_arrays.php:318 ../include/global_arrays.php:325 #, fuzzy msgid "Script/Command" msgstr "スクリプト" #: ../include/global_arrays.php:320 ../include/global_arrays.php:326 #: ../utilities.php:1607 #, fuzzy msgid "Script Server" msgstr "スクリプト" #: ../include/global_arrays.php:332 #, fuzzy msgid "Index Count" msgstr "å†ç´¢å¼•方法" #: ../include/global_arrays.php:333 msgid "Verify All" msgstr "" #: ../include/global_arrays.php:337 msgid "" "All Re-Indexing will be manual or managed through scripts or Device " "Automation." msgstr "" #: ../include/global_arrays.php:338 msgid "" "When the Devices SNMP uptime goes backward, a Re-Index will be performed." msgstr "" #: ../include/global_arrays.php:339 msgid "When the Data Query index count changes, a Re-Index will be performed." msgstr "" #: ../include/global_arrays.php:340 msgid "Every polling cycle, a Re-Index will be performed. Very expensive." msgstr "" #: ../include/global_arrays.php:344 msgid "SNMP Field Name (Dropdown)" msgstr "SNMP フィールドå(ドロップダウン)" #: ../include/global_arrays.php:345 msgid "SNMP Field Value (From User)" msgstr "SNMP フィールド値 (From User)" #: ../include/global_arrays.php:346 msgid "SNMP Output Type (Dropdown)" msgstr "SNMP 出力ã®ç¨®é¡ž (ドロップダウン)" #: ../include/global_arrays.php:365 ../include/global_arrays.php:371 msgid "Normal" msgstr "" #: ../include/global_arrays.php:366 msgid "Light" msgstr "" #: ../include/global_arrays.php:367 ../include/global_arrays.php:372 msgid "Mono" msgstr "" #: ../include/global_arrays.php:376 msgid "North" msgstr "" #: ../include/global_arrays.php:377 msgid "South" msgstr "" #: ../include/global_arrays.php:378 msgid "West" msgstr "" #: ../include/global_arrays.php:379 msgid "East" msgstr "" #: ../include/global_arrays.php:384 msgid "Left" msgstr "" #: ../include/global_arrays.php:385 msgid "Right" msgstr "" #: ../include/global_arrays.php:386 msgid "Justified" msgstr "" #: ../include/global_arrays.php:387 msgid "Center" msgstr "" #: ../include/global_arrays.php:391 msgid "Top -> Down" msgstr "" #: ../include/global_arrays.php:392 msgid "Bottom -> Up" msgstr "" #: ../include/global_arrays.php:396 ../tree.php:1129 #, fuzzy msgid "Numeric" msgstr "æ•°å­—é †" #: ../include/global_arrays.php:397 msgid "Timestamp" msgstr "" #: ../include/global_arrays.php:398 #, fuzzy msgid "Duration" msgstr "説明" #: ../include/global_arrays.php:430 msgid "Not In Use" msgstr "" #: ../include/global_arrays.php:431 ../include/global_arrays.php:432 #: ../include/global_arrays.php:433 ../include/global_arrays.php:589 #: ../include/global_arrays.php:590 #, fuzzy, php-format msgid "Version %d" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ 1" #: ../include/global_arrays.php:437 msgid "MD5 (default)" msgstr "MD5 (デフォルト)" #: ../include/global_arrays.php:438 msgid "SHA" msgstr "SHA" #: ../include/global_arrays.php:442 #, fuzzy msgid "[None]" msgstr "ãªã—" #: ../include/global_arrays.php:443 msgid "DES (default)" msgstr "DES (デフォルト)" #: ../include/global_arrays.php:444 msgid "AES" msgstr "" #: ../include/global_arrays.php:453 msgid "Logfile Only" msgstr "ログファイルã®ã¿" #: ../include/global_arrays.php:454 msgid "Logfile and Syslog/Eventlog" msgstr "" #: ../include/global_arrays.php:455 msgid "Syslog/Eventlog Only" msgstr "" #: ../include/global_arrays.php:464 msgid "SNMP getNext" msgstr "" #: ../include/global_arrays.php:469 msgid "ICMP Ping" msgstr "ICMP Ping" #: ../include/global_arrays.php:470 #, fuzzy msgid "TCP Ping" msgstr "ICMP Ping" #: ../include/global_arrays.php:471 msgid "UDP Ping" msgstr "UDP Ping" #: ../include/global_arrays.php:475 msgid "NONE - Syslog Only if Selected" msgstr "" #: ../include/global_arrays.php:476 msgid "LOW - Statistics and Errors" msgstr "" #: ../include/global_arrays.php:477 msgid "MEDIUM - Statistics, Errors and Results" msgstr "" #: ../include/global_arrays.php:478 msgid "HIGH - Statistics, Errors, Results and Major I/O Events" msgstr "" #: ../include/global_arrays.php:479 msgid "DEBUG - Statistics, Errors, Results, I/O and Program Flow" msgstr "" #: ../include/global_arrays.php:480 msgid "DEVEL - Developer DEBUG Level" msgstr "" #: ../include/global_arrays.php:489 msgid "Selected Poller Interval" msgstr "" #: ../include/global_arrays.php:504 ../include/global_arrays.php:505 #: ../include/global_arrays.php:506 ../include/global_arrays.php:507 #: ../include/global_arrays.php:538 ../include/global_arrays.php:539 #: ../include/global_arrays.php:540 ../include/global_arrays.php:541 #, php-format msgid "Every %d Seconds" msgstr "" #: ../include/global_arrays.php:508 ../include/global_arrays.php:542 #: ../include/global_arrays.php:556 msgid "Every Minute" msgstr "" #: ../include/global_arrays.php:509 ../include/global_arrays.php:510 #: ../include/global_arrays.php:511 ../include/global_arrays.php:512 #: ../include/global_arrays.php:543 ../include/global_arrays.php:557 #, php-format msgid "Every %d Minutes" msgstr "" #: ../include/global_arrays.php:513 msgid "Every Hour" msgstr "" #: ../include/global_arrays.php:514 ../include/global_arrays.php:515 #: ../include/global_arrays.php:1444 ../include/global_arrays.php:1445 #: ../include/global_arrays.php:1446 ../include/global_arrays.php:1447 #: ../include/global_arrays.php:1448 ../include/global_settings.php:1765 #: ../include/global_settings.php:1766 #, php-format msgid "Every %d Hours" msgstr "" #: ../include/global_arrays.php:534 ../include/global_settings.php:1098 msgid "1 Day" msgstr "" #: ../include/global_arrays.php:547 #, fuzzy msgid "1 Thread (default)" msgstr "DES (デフォルト)" #: ../include/global_arrays.php:572 msgid "Builtin Authentication" msgstr "組ã¿è¾¼ã¿èªè¨¼" #: ../include/global_arrays.php:573 msgid "Web Basic Authentication" msgstr "ウェブ Basic èªè¨¼" #: ../include/global_arrays.php:577 #, fuzzy msgid "LDAP Authentication" msgstr "組ã¿è¾¼ã¿èªè¨¼" #: ../include/global_arrays.php:578 msgid "Multiple LDAP/AD Domains" msgstr "" #: ../include/global_arrays.php:583 msgid "Active Directory" msgstr "" #: ../include/global_arrays.php:595 ../include/global_settings.php:1324 msgid "SSL" msgstr "" #: ../include/global_arrays.php:596 ../include/global_settings.php:1324 msgid "TLS" msgstr "" #: ../include/global_arrays.php:600 msgid "No Searching" msgstr "" #: ../include/global_arrays.php:601 msgid "Anonymous Searching" msgstr "" #: ../include/global_arrays.php:602 msgid "Specific Searching" msgstr "" #: ../include/global_arrays.php:615 msgid "Enabled (strict mode)" msgstr "" #: ../include/global_arrays.php:620 ../include/global_form.php:2101 #: ../include/global_form.php:2143 ../lib/api_automation.php:1210 #: ../lib/api_automation.php:1272 msgid "Operator" msgstr "æ“作" #: ../include/global_arrays.php:622 msgid "Another CDEF" msgstr "別㮠CDEF" #: ../include/global_arrays.php:641 msgid "Inherit Parent Sorting" msgstr "" #: ../include/global_arrays.php:642 msgid "Manual Ordering (No Sorting)" msgstr "手動整列 (ソートã—ã¾ã›ã‚“)" #: ../include/global_arrays.php:643 msgid "Alphabetic Ordering" msgstr "英字順" #: ../include/global_arrays.php:644 #, fuzzy msgid "Natural Ordering" msgstr "æ•°å­—é †" #: ../include/global_arrays.php:645 msgid "Numeric Ordering" msgstr "æ•°å­—é †" #: ../include/global_arrays.php:649 ../lib/rrd.php:2624 msgid "Header" msgstr "" #: ../include/global_arrays.php:650 ../include/global_arrays.php:697 #: ../include/global_arrays.php:1269 ../include/global_arrays.php:1433 #: ../lib/html_tree.php:351 msgid "Graph" msgstr "グラフ" #: ../include/global_arrays.php:656 ../tree.php:1295 #, fuzzy msgid "Data Query Index" msgstr "データ照会å" #: ../include/global_arrays.php:660 msgid "Current Graph Item Data Source" msgstr "ç¾åœ¨ã®ã‚°ãƒ©ãƒ•é …ç›®ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹" #: ../include/global_arrays.php:661 #, fuzzy msgid "Current Graph Item Polling Interval" msgstr "ç¾åœ¨ã®ã‚°ãƒ©ãƒ•é …ç›®ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹" #: ../include/global_arrays.php:662 #, fuzzy msgid "All Data Sources (Do not Include Duplicates)" msgstr "ã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹(複製をå«ã¾ãªã„)" #: ../include/global_arrays.php:663 msgid "All Data Sources (Include Duplicates)" msgstr "ã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹(複製をå«ã‚€)" #: ../include/global_arrays.php:664 #, fuzzy msgid "All Similar Data Sources (Do not Include Duplicates)" msgstr "ã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹(複製をå«ã¾ãªã„)" #: ../include/global_arrays.php:665 #, fuzzy msgid "All Similar Data Sources (Do not Include Duplicates) Polling Interval" msgstr "ã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹(複製をå«ã¾ãªã„)" #: ../include/global_arrays.php:666 #, fuzzy msgid "All Similar Data Sources (Include Duplicates)" msgstr "ã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹(複製をå«ã‚€)" #: ../include/global_arrays.php:667 msgid "Current Data Source Item: Minimum Value" msgstr "ç¾åœ¨ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹é …ç›®: 最å°å€¤" #: ../include/global_arrays.php:668 #, fuzzy msgid "Current Data Source Item: Maximum Value" msgstr "ç¾åœ¨ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹é …ç›®: 最å°å€¤" #: ../include/global_arrays.php:669 msgid "Graph: Lower Limit" msgstr "グラフ: 下é™" #: ../include/global_arrays.php:670 msgid "Graph: Upper Limit" msgstr "グラフ: 上é™" #: ../include/global_arrays.php:671 #, fuzzy msgid "Count of All Data Sources (Do not Include Duplicates)" msgstr "ã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹(複製をå«ã¾ãªã„)" #: ../include/global_arrays.php:672 #, fuzzy msgid "Count of All Data Sources (Include Duplicates)" msgstr "ã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹(複製をå«ã‚€)" #: ../include/global_arrays.php:673 #, fuzzy msgid "Count of All Similar Data Sources (Do not Include Duplicates)" msgstr "ã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹(複製をå«ã¾ãªã„)" #: ../include/global_arrays.php:674 #, fuzzy msgid "Count of All Similar Data Sources (Include Duplicates)" msgstr "ã™ã¹ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹(複製をå«ã‚€)" #: ../include/global_arrays.php:680 ../lib/html_form_template.php:562 #: ../lib/html_form_template.php:577 msgid "New Graphs" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•" #: ../include/global_arrays.php:682 ../include/global_arrays.php:734 #: ../include/global_arrays.php:751 #, fuzzy msgid "Management" msgstr "ユーザー管ç†" #: ../include/global_arrays.php:684 ../sites.php:378 ../sites.php:393 #: ../sites.php:472 msgid "Sites" msgstr "" #: ../include/global_arrays.php:685 ../include/global_arrays.php:866 #: ../tree.php:1476 ../tree.php:1491 ../tree.php:1549 ../user_admin.php:1513 #: ../user_admin.php:2926 ../user_admin.php:3013 ../user_group_admin.php:1235 #: ../user_group_admin.php:2441 #, fuzzy msgid "Trees" msgstr "ツリーãŒã‚りã¾ã›ã‚“" #: ../include/global_arrays.php:688 msgid "Aggregates" msgstr "" #: ../include/global_arrays.php:690 ../include/global_arrays.php:737 #: ../include/global_arrays.php:752 msgid "Data Collection" msgstr "" #: ../include/global_arrays.php:691 ../include/global_arrays.php:738 #: ../pollers.php:508 msgid "Data Collectors" msgstr "" #: ../include/global_arrays.php:699 msgid "Aggregate" msgstr "" #: ../include/global_arrays.php:702 ../include/global_arrays.php:754 #: ../include/global_settings.php:413 msgid "Automation" msgstr "" #: ../include/global_arrays.php:704 msgid "Discovered Devices" msgstr "" #: ../include/global_arrays.php:705 #, fuzzy msgid "Device Rules" msgstr "デãƒã‚¤ã‚¹" #: ../include/global_arrays.php:710 ../include/global_arrays.php:755 #: ../lib/html_filter.php:178 ../lib/html_graph.php:255 #: ../lib/html_tree.php:701 #, fuzzy msgid "Presets" msgstr "GPRINT プリセット" #: ../include/global_arrays.php:711 #, fuzzy msgid "Data Profiles" msgstr "データå•åˆã›" #: ../include/global_arrays.php:713 ../lib/functions.php:2328 ../vdef.php:651 #: ../vdef.php:665 ../vdef.php:836 #, fuzzy msgid "VDEFs" msgstr "CDEF" #: ../include/global_arrays.php:717 ../include/global_arrays.php:756 msgid "Import/Export" msgstr "インãƒãƒ¼ãƒˆ/エクスãƒãƒ¼ãƒˆ" #: ../include/global_arrays.php:718 ../lib/functions.php:2442 #: ../templates_import.php:115 msgid "Import Templates" msgstr "テンプレートインãƒãƒ¼ãƒˆ" #: ../include/global_arrays.php:719 ../lib/functions.php:2430 #: ../templates_export.php:94 msgid "Export Templates" msgstr "テンプレートエクスãƒãƒ¼ãƒˆ" #: ../include/global_arrays.php:721 ../include/global_arrays.php:740 #: ../include/global_arrays.php:757 ../lib/plugins.php:763 msgid "Configuration" msgstr "" #: ../include/global_arrays.php:722 ../include/global_arrays.php:741 msgid "Settings" msgstr "設定" #: ../include/global_arrays.php:723 ../lib/functions.php:2376 #: ../user_admin.php:2199 ../user_admin.php:2254 ../user_group_admin.php:667 #: ../user_group_admin.php:2528 #, fuzzy msgid "Users" msgstr "FTP ユーザー" #: ../include/global_arrays.php:724 ../lib/functions.php:2406 msgid "User Groups" msgstr "" #: ../include/global_arrays.php:725 ../lib/functions.php:2394 #: ../user_domains.php:612 ../user_domains.php:705 msgid "User Domains" msgstr "" #: ../include/global_arrays.php:727 ../include/global_arrays.php:743 #: ../include/global_arrays.php:758 ../lib/functions.php:2256 msgid "Utilities" msgstr "ユーティリティ" #: ../include/global_arrays.php:728 ../include/global_arrays.php:744 msgid "System Utilities" msgstr "システムユーティリティ" #: ../include/global_arrays.php:729 ../include/global_arrays.php:772 #: ../include/global_arrays.php:855 ../links.php:90 ../links.php:301 #: ../links.php:370 ../links.php:483 msgid "External Links" msgstr "" #: ../include/global_arrays.php:781 msgid "All Lines" msgstr "" #: ../include/global_arrays.php:782 ../include/global_arrays.php:783 #: ../include/global_arrays.php:784 ../include/global_arrays.php:785 #: ../include/global_arrays.php:786 ../include/global_arrays.php:787 #: ../include/global_arrays.php:788 ../include/global_arrays.php:789 #: ../include/global_arrays.php:790 ../include/global_arrays.php:791 #: ../include/global_arrays.php:792 ../include/global_arrays.php:793 #, php-format msgid "%d Lines" msgstr "" #: ../include/global_arrays.php:848 msgid "Never" msgstr "" #: ../include/global_arrays.php:852 msgid "Console Access" msgstr "コンソールアクセス" #: ../include/global_arrays.php:854 #, fuzzy msgid "Update Profile" msgstr "RRD ファイルを更新ã™ã‚‹" #: ../include/global_arrays.php:857 ../user_admin.php:2178 msgid "User Management" msgstr "ユーザー管ç†" #: ../include/global_arrays.php:858 #, fuzzy msgid "Settings and Utilities" msgstr "システムユーティリティ" #: ../include/global_arrays.php:859 #, fuzzy msgid "Automation Settings" msgstr "Cacti 設定" #: ../include/global_arrays.php:864 msgid "Sites/Devices/Data Sources/Data Collectors" msgstr "" #: ../include/global_arrays.php:867 msgid "Remove Spikes from Graphs" msgstr "" #: ../include/global_arrays.php:870 msgid "Colors/GPrints/CDEFs/VDEFs" msgstr "" #: ../include/global_arrays.php:876 msgid "Export Data" msgstr "データをエクスãƒãƒ¼ãƒˆã™ã‚‹" #: ../include/global_arrays.php:877 msgid "Import Data" msgstr "データをインãƒãƒ¼ãƒˆã™ã‚‹" #: ../include/global_arrays.php:879 ../include/global_settings.php:665 #, fuzzy msgid "Log Management" msgstr "ユーザー管ç†" #: ../include/global_arrays.php:880 msgid "Log Viewing" msgstr "" #: ../include/global_arrays.php:882 #, fuzzy msgid "Reports Management" msgstr "ユーザー管ç†" #: ../include/global_arrays.php:883 msgid "Reports Creation" msgstr "" #: ../include/global_arrays.php:981 msgid "CDEF" msgstr "CDEF" #: ../include/global_arrays.php:982 #, fuzzy msgid "CDEF Item" msgstr "CDEF é …ç›®" #: ../include/global_arrays.php:983 #, fuzzy msgid "GPRINT Preset" msgstr "GPRINT プリセット" #: ../include/global_arrays.php:986 #, fuzzy msgid "Data Input Field" msgstr "データã®å…¥åŠ›é …ç›®" #: ../include/global_arrays.php:987 ../include/global_form.php:394 #: ../include/global_form.php:1613 #, fuzzy msgid "Data Source Profile" msgstr "データソースã®ãƒ‘ス" #: ../include/global_arrays.php:988 #, fuzzy msgid "Data Template Item" msgstr "グラフテンプレートã®é …ç›®" #: ../include/global_arrays.php:990 #, fuzzy msgid "Graph Template Item" msgstr "グラフテンプレートã®é …ç›®" #: ../include/global_arrays.php:991 #, fuzzy msgid "Graph Template Input" msgstr "グラフテンプレートã®é …ç›®" #: ../include/global_arrays.php:994 msgid "VDEF" msgstr "" #: ../include/global_arrays.php:995 #, fuzzy msgid "VDEF Item" msgstr "CDEF é …ç›®" #: ../include/global_arrays.php:1039 msgid "Last Half Hour" msgstr "" #: ../include/global_arrays.php:1040 #, fuzzy msgid "Last Hour" msgstr "最終ログイン" #: ../include/global_arrays.php:1041 ../include/global_arrays.php:1042 #: ../include/global_arrays.php:1043 ../include/global_arrays.php:1044 #, php-format msgid "Last %d Hours" msgstr "" #: ../include/global_arrays.php:1045 msgid "Last Day" msgstr "" #: ../include/global_arrays.php:1046 ../include/global_arrays.php:1047 #: ../include/global_arrays.php:1048 #, php-format msgid "Last %d Days" msgstr "" #: ../include/global_arrays.php:1049 msgid "Last Week" msgstr "" #: ../include/global_arrays.php:1050 #, php-format msgid "Last %d Weeks" msgstr "" #: ../include/global_arrays.php:1051 #, fuzzy msgid "Last Month" msgstr "最終ログイン" #: ../include/global_arrays.php:1052 ../include/global_arrays.php:1053 #: ../include/global_arrays.php:1054 ../include/global_arrays.php:1055 #, php-format msgid "Last %d Months" msgstr "" #: ../include/global_arrays.php:1056 msgid "Last Year" msgstr "" #: ../include/global_arrays.php:1057 #, php-format msgid "Last %d Years" msgstr "" #: ../include/global_arrays.php:1058 msgid "Day Shift" msgstr "" #: ../include/global_arrays.php:1059 msgid "This Day" msgstr "" #: ../include/global_arrays.php:1060 msgid "This Week" msgstr "" #: ../include/global_arrays.php:1061 msgid "This Month" msgstr "" #: ../include/global_arrays.php:1062 msgid "This Year" msgstr "" #: ../include/global_arrays.php:1063 #, fuzzy msgid "Previous Day" msgstr "å‰ã«" #: ../include/global_arrays.php:1064 #, fuzzy msgid "Previous Week" msgstr "å‰ã«" #: ../include/global_arrays.php:1065 #, fuzzy msgid "Previous Month" msgstr "å‰ã«" #: ../include/global_arrays.php:1066 #, fuzzy msgid "Previous Year" msgstr "å‰ã«" #: ../include/global_arrays.php:1070 #, php-format msgid "%d Min" msgstr "" #: ../include/global_arrays.php:1087 ../include/global_settings.php:1026 #: ../rrdcleaner.php:493 #, php-format msgid "%d Year" msgstr "" #: ../include/global_arrays.php:1102 msgid "Month Number, Day, Year" msgstr "" #: ../include/global_arrays.php:1103 msgid "Month Name, Day, Year" msgstr "" #: ../include/global_arrays.php:1104 msgid "Day, Month Number, Year" msgstr "" #: ../include/global_arrays.php:1105 msgid "Day, Month Name, Year" msgstr "" #: ../include/global_arrays.php:1106 msgid "Year, Month Number, Day" msgstr "" #: ../include/global_arrays.php:1107 msgid "Year, Month Name, Day" msgstr "" #: ../include/global_arrays.php:1116 msgid "After Boost" msgstr "" #: ../include/global_arrays.php:1126 ../include/global_arrays.php:1127 #: ../include/global_arrays.php:1128 ../include/global_arrays.php:1129 #: ../include/global_arrays.php:1130 ../include/global_arrays.php:1185 #: ../include/global_arrays.php:1186 ../include/global_arrays.php:1187 #: ../include/global_arrays.php:1188 ../include/global_arrays.php:1189 #, php-format msgid "%d MBytes" msgstr "" #: ../include/global_arrays.php:1131 ../include/global_arrays.php:1190 msgid "1 GByte" msgstr "" #: ../include/global_arrays.php:1132 ../include/global_arrays.php:1191 #, php-format msgid "%s GBytes" msgstr "" #: ../include/global_arrays.php:1133 ../include/global_arrays.php:1134 #: ../include/global_arrays.php:1192 ../include/global_arrays.php:1193 #, php-format msgid "%d GBytes" msgstr "" #: ../include/global_arrays.php:1147 #, fuzzy msgid "2,000 Data Source Items" msgstr "データソース項目" #: ../include/global_arrays.php:1148 #, fuzzy msgid "5,000 Data Source Items" msgstr "データソース項目" #: ../include/global_arrays.php:1149 #, fuzzy msgid "10,000 Data Source Items" msgstr "データソース項目" #: ../include/global_arrays.php:1150 #, fuzzy msgid "15,000 Data Source Items" msgstr "データソース項目" #: ../include/global_arrays.php:1151 #, fuzzy msgid "25,000 Data Source Items" msgstr "データソース項目" #: ../include/global_arrays.php:1152 #, fuzzy msgid "50,000 Data Source Items (Default)" msgstr "データソース項目" #: ../include/global_arrays.php:1153 #, fuzzy msgid "100,000 Data Source Items" msgstr "データソース項目" #: ../include/global_arrays.php:1154 #, fuzzy msgid "200,000 Data Source Items" msgstr "データソース項目" #: ../include/global_arrays.php:1155 #, fuzzy msgid "400,000 Data Source Items" msgstr "データソース項目" #: ../include/global_arrays.php:1172 msgid "2 Hours" msgstr "" #: ../include/global_arrays.php:1173 msgid "4 Hours" msgstr "" #: ../include/global_arrays.php:1174 msgid "6 Hours" msgstr "" #: ../include/global_arrays.php:1181 #, php-format msgid "%s Hours" msgstr "" #: ../include/global_arrays.php:1200 #, php-format msgid "%s Minutes" msgstr "" #: ../include/global_arrays.php:1220 msgid "1 Megabyte" msgstr "" #: ../include/global_arrays.php:1221 ../include/global_arrays.php:1222 #: ../include/global_arrays.php:1223 ../include/global_arrays.php:1224 #: ../include/global_arrays.php:1225 ../include/global_arrays.php:1226 #, php-format msgid "%d Megabytes" msgstr "" #: ../include/global_arrays.php:1230 msgid "Send Now" msgstr "" #: ../include/global_arrays.php:1238 msgid "Take Ownership" msgstr "" #: ../include/global_arrays.php:1242 msgid "Inline PNG Image" msgstr "" #: ../include/global_arrays.php:1247 msgid "Inline JPEG Image" msgstr "" #: ../include/global_arrays.php:1248 msgid "Inline GIF Image" msgstr "" #: ../include/global_arrays.php:1251 msgid "Attached PNG Image" msgstr "" #: ../include/global_arrays.php:1254 msgid "Attached JPEG Image" msgstr "" #: ../include/global_arrays.php:1255 msgid "Attached GIF Image" msgstr "" #: ../include/global_arrays.php:1259 msgid "Inline PNG Image, LN Style" msgstr "" #: ../include/global_arrays.php:1261 msgid "Inline JPEG Image, LN Style" msgstr "" #: ../include/global_arrays.php:1262 msgid "Inline GIF Image, LN Style" msgstr "" #: ../include/global_arrays.php:1267 msgid "Text" msgstr "" #: ../include/global_arrays.php:1268 ../include/global_form.php:2223 #, fuzzy msgid "Tree" msgstr "ツリーãŒã‚りã¾ã›ã‚“" #: ../include/global_arrays.php:1270 msgid "Horizontal Rule" msgstr "" #: ../include/global_arrays.php:1274 msgid "left" msgstr "" #: ../include/global_arrays.php:1275 msgid "center" msgstr "" #: ../include/global_arrays.php:1276 msgid "right" msgstr "" #: ../include/global_arrays.php:1280 msgid "Minute(s)" msgstr "" #: ../include/global_arrays.php:1281 msgid "Hour(s)" msgstr "" #: ../include/global_arrays.php:1282 msgid "Day(s)" msgstr "" #: ../include/global_arrays.php:1283 msgid "Week(s)" msgstr "" #: ../include/global_arrays.php:1284 msgid "Month(s), Day of Month" msgstr "" #: ../include/global_arrays.php:1285 msgid "Month(s), Day of Week" msgstr "" #: ../include/global_arrays.php:1286 msgid "Year(s)" msgstr "" #: ../include/global_arrays.php:1290 #, fuzzy msgid "Keep Graph Types" msgstr "グラフツリー" #: ../include/global_arrays.php:1291 msgid "Keep Type and STACK" msgstr "" #: ../include/global_arrays.php:1292 #, fuzzy msgid "Convert to AREA/STACK Graph" msgstr "グラフテンプレートã«å¤‰æ›ã™ã‚‹" #: ../include/global_arrays.php:1293 #, fuzzy msgid "Convert to LINE1 Graph" msgstr "グラフテンプレートã«å¤‰æ›ã™ã‚‹" #: ../include/global_arrays.php:1294 #, fuzzy msgid "Convert to LINE2 Graph" msgstr "グラフテンプレートã«å¤‰æ›ã™ã‚‹" #: ../include/global_arrays.php:1295 #, fuzzy msgid "Convert to LINE3 Graph" msgstr "グラフテンプレートã«å¤‰æ›ã™ã‚‹" #: ../include/global_arrays.php:1299 msgid "No Totals" msgstr "" #: ../include/global_arrays.php:1300 msgid "Print all Legend Items" msgstr "" #: ../include/global_arrays.php:1301 msgid "Print totaling Legend Items Only" msgstr "" #: ../include/global_arrays.php:1305 #, fuzzy msgid "Total Similar Data Sources" msgstr "データソースãŒã‚りã¾ã›ã‚“" #: ../include/global_arrays.php:1306 #, fuzzy msgid "Total All Data Sources" msgstr "データソースãŒã‚りã¾ã›ã‚“" #: ../include/global_arrays.php:1310 #, fuzzy msgid "No Reordering" msgstr "æ•°å­—é †" #: ../include/global_arrays.php:1311 #, fuzzy msgid "Data Source, Graph" msgstr "データソースã®ãƒ‘ス" #: ../include/global_arrays.php:1312 #, fuzzy msgid "Graph, Data Source" msgstr "データソース" #: ../include/global_arrays.php:1319 msgid "contains" msgstr "" #: ../include/global_arrays.php:1320 msgid "does not contain" msgstr "" #: ../include/global_arrays.php:1321 msgid "begins with" msgstr "" #: ../include/global_arrays.php:1322 msgid "does not begin with" msgstr "" #: ../include/global_arrays.php:1323 msgid "ends with" msgstr "" #: ../include/global_arrays.php:1324 msgid "does not end with" msgstr "" #: ../include/global_arrays.php:1325 msgid "matches" msgstr "" #: ../include/global_arrays.php:1326 msgid "does not match with" msgstr "" #: ../include/global_arrays.php:1327 msgid "is less than" msgstr "" #: ../include/global_arrays.php:1328 msgid "is less than or equal" msgstr "" #: ../include/global_arrays.php:1329 msgid "is greater than" msgstr "" #: ../include/global_arrays.php:1330 msgid "is greater than or equal" msgstr "" #: ../include/global_arrays.php:1331 msgid "is unknown" msgstr "" #: ../include/global_arrays.php:1332 msgid "is not unknown" msgstr "" #: ../include/global_arrays.php:1333 msgid "is empty" msgstr "" #: ../include/global_arrays.php:1334 msgid "is not empty" msgstr "" #: ../include/global_arrays.php:1335 msgid "matches regular expression" msgstr "" #: ../include/global_arrays.php:1336 msgid "does not match regular expression" msgstr "" #: ../include/global_arrays.php:1438 msgid "Fixed String" msgstr "" #: ../include/global_arrays.php:1443 msgid "Every 1 Hour" msgstr "" #: ../include/global_arrays.php:1449 msgid "Every Day" msgstr "" #: ../include/global_arrays.php:1450 msgid "Every Week" msgstr "" #: ../include/global_arrays.php:1451 ../include/global_arrays.php:1452 #, php-format msgid "Every %d Weeks" msgstr "" #: ../include/global_arrays.php:1477 msgctxt "A short textual representation of a month, three letters" msgid "Jan" msgstr "" #: ../include/global_arrays.php:1478 msgctxt "A short textual representation of a month, three letters" msgid "Feb" msgstr "" #: ../include/global_arrays.php:1479 msgctxt "A short textual representation of a month, three letters" msgid "Mar" msgstr "" #: ../include/global_arrays.php:1480 msgctxt "A short textual representation of a month, three letters" msgid "Apr" msgstr "" #: ../include/global_arrays.php:1481 msgctxt "A short textual representation of a month, three letters" msgid "May" msgstr "" #: ../include/global_arrays.php:1482 msgctxt "A short textual representation of a month, three letters" msgid "Jun" msgstr "" #: ../include/global_arrays.php:1483 msgctxt "A short textual representation of a month, three letters" msgid "Jul" msgstr "" #: ../include/global_arrays.php:1484 msgctxt "A short textual representation of a month, three letters" msgid "Aug" msgstr "" #: ../include/global_arrays.php:1485 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Sep" msgstr "ステップ" #: ../include/global_arrays.php:1486 msgctxt "A short textual representation of a month, three letters" msgid "Oct" msgstr "" #: ../include/global_arrays.php:1487 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Nov" msgstr "ã„ã„ãˆ" #: ../include/global_arrays.php:1488 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Dec" msgstr "デãƒã‚¤ã‚¹" #: ../include/global_arrays.php:1502 msgctxt "A textual representation of a day, three letters" msgid "Sun" msgstr "" #: ../include/global_arrays.php:1503 msgctxt "A textual representation of a day, three letters" msgid "Mon" msgstr "" #: ../include/global_arrays.php:1504 msgctxt "A textual representation of a day, three letters" msgid "Tue" msgstr "" #: ../include/global_arrays.php:1505 msgctxt "A textual representation of a day, three letters" msgid "Wed" msgstr "" #: ../include/global_arrays.php:1506 msgctxt "A textual representation of a day, three letters" msgid "Thu" msgstr "" #: ../include/global_arrays.php:1507 msgctxt "A textual representation of a day, three letters" msgid "Fri" msgstr "" #: ../include/global_arrays.php:1508 #, fuzzy msgctxt "A textual representation of a day, three letters" msgid "Sat" msgstr "状態" #: ../include/global_form.php:36 #, fuzzy msgid "A useful name for this Data Storage and Polling Profile." msgstr "ã“ã®ã‚°ãƒ©ãƒ•ツリーã®åå‰ã§ã™ã€‚" #: ../include/global_form.php:40 msgid "New Profile" msgstr "" #: ../include/global_form.php:44 msgid "Polling Interval" msgstr "" #: ../include/global_form.php:45 msgid "The frequency that data will be collected from the Data Source?" msgstr "" #: ../include/global_form.php:53 msgid "" "How long can data be missing before RRDtool records unknown data. \n" "\t\t\tIncrease this value if your Data Source is unstable and you wish to " "carry forward \n" "\t\t\told data rather than show gaps in your graphs. This value is " "multiplied by the\n" "\t\t\tX-Files Factor to determine the actual amount of time." msgstr "" #: ../include/global_form.php:63 msgid "X-Files Factor" msgstr "" #: ../include/global_form.php:64 msgid "The amount of unknown data that can still be regarded as known." msgstr "" #: ../include/global_form.php:72 msgid "Consolidation Functions" msgstr "" #: ../include/global_form.php:73 ../include/global_form.php:105 msgid "How data is to be entered in RRAs." msgstr "" #: ../include/global_form.php:80 msgid "Is this the default storage profile?" msgstr "" #: ../include/global_form.php:86 msgid "RRDfile Size (in Bytes)" msgstr "" #: ../include/global_form.php:87 msgid "" "Based upon the number of Rows in all RRAs and the number of Consolidation " "Functions selected, the size of this entire in the RRDfile." msgstr "" #: ../include/global_form.php:109 msgid "New Profile RRA" msgstr "" #: ../include/global_form.php:113 msgid "Aggregation Level" msgstr "" #: ../include/global_form.php:114 msgid "" "The number of samples required prior to filling a row in the RRA " "specification. The first RRA should always have a value of 1." msgstr "" #: ../include/global_form.php:122 msgid "How many generations data is kept in the RRA." msgstr "" #: ../include/global_form.php:130 msgid "Effective Retention" msgstr "" #: ../include/global_form.php:131 msgid "" "Based upon the Aggregation Level, the Rows, and the Polling Interval the " "amount of data that will be retained in the RRA" msgstr "" #: ../include/global_form.php:136 msgid "RRA Size (in Bytes)" msgstr "" #: ../include/global_form.php:137 msgid "" "Based upon the number of Rows and the number of Consolidation Functions " "selected, the size of this RRA in the RRDfile." msgstr "" #: ../include/global_form.php:155 msgid "A useful name for this CDEF." msgstr "ã“ã® CDEF ã®åå‰ã§ã™ã€‚" #: ../include/global_form.php:175 #, fuzzy msgid "The name of this Color." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../include/global_form.php:182 msgid "Hex Value" msgstr "16 進値" #: ../include/global_form.php:183 msgid "The hex value for this color; valid range: 000000-FFFFFF." msgstr "" #: ../include/global_form.php:191 msgid "Any named color should be read only." msgstr "" #: ../include/global_form.php:216 ../include/global_form.php:276 msgid "Enter a meaningful name for this data input method." msgstr "" #: ../include/global_form.php:223 msgid "Input Type" msgstr "入力タイプ" #: ../include/global_form.php:224 msgid "" "Choose the method you wish to use to collect data for this Data Input method." msgstr "" #: ../include/global_form.php:230 #, fuzzy msgid "Input String" msgstr "カスタム文字列" #: ../include/global_form.php:231 msgid "" "The data that is sent to the script, which includes the complete path to the " "script and input sources in <> brackets." msgstr "" #: ../include/global_form.php:252 ../include/global_form.php:263 #, fuzzy, php-format msgid "Field [%s]" msgstr "é …ç›®ã®ç¨®é¡ž" #: ../include/global_form.php:253 #, php-format msgid "Choose the associated field from the %s field." msgstr "" #: ../include/global_form.php:264 #, php-format msgid "" "Enter a name for this %s field. Note: If using name value pairs in your " "script, for example: NAME:VALUE, it is important that the name match your " "output field name identically to the script output name or names." msgstr "" #: ../include/global_form.php:283 #, fuzzy msgid "Update RRDfile" msgstr "RRD ファイルを更新ã™ã‚‹" #: ../include/global_form.php:284 msgid "Whether data from this output field is to be entered into the RRDfile." msgstr "" #: ../include/global_form.php:291 msgid "Regular Expression Match" msgstr "" #: ../include/global_form.php:292 msgid "" "If you want to require a certain regular expression to be matched against " "input data, enter it here (preg_match format)." msgstr "" #: ../include/global_form.php:299 msgid "Allow Empty Input" msgstr "空ã®å€¤ã‚’許å¯ã™ã‚‹" #: ../include/global_form.php:300 msgid "Check here if you want to allow NULL input in this field from the user." msgstr "" #: ../include/global_form.php:307 msgid "Special Type Code" msgstr "" #: ../include/global_form.php:308 #, php-format msgid "" "If this field should be treated specially by host templates, indicate so " "here. Valid keywords for this field are %s" msgstr "" #: ../include/global_form.php:340 msgid "The name given to this data template." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../include/global_form.php:371 msgid "" "Choose a name for this data source. It can include replacement variables " "such as |host_description| or |query_fieldName|.\n" " For a complete list of supported replacement tags, please see " "the Cacti documentation." msgstr "" #: ../include/global_form.php:376 msgid "Data Source Path" msgstr "データソースã®ãƒ‘ス" #: ../include/global_form.php:381 #, fuzzy msgid "The full path to the RRDfile." msgstr "rrdtool ãƒã‚¤ãƒŠãƒªã¸ã®ãƒ‘スã§ã™ã€‚" #: ../include/global_form.php:390 msgid "The script/source used to gather data for this data source." msgstr "" #: ../include/global_form.php:396 ../include/global_form.php:1615 msgid "" "Select the Data Source Profile. The Data Source Profile controls polling " "interval, the data aggregation, and retention policy for the resulting Data " "Sources." msgstr "" #: ../include/global_form.php:402 msgid "Step" msgstr "ステップ" #: ../include/global_form.php:407 msgid "The amount of time in seconds between expected updates." msgstr "" #: ../include/global_form.php:411 #, fuzzy msgid "Data Source Active" msgstr "データソース項目" #: ../include/global_form.php:414 msgid "Whether Cacti should gather data for this data source or not." msgstr "" #: ../include/global_form.php:422 #, fuzzy msgid "Internal Data Source Name" msgstr "データソースを更新ã™ã‚‹" #: ../include/global_form.php:427 msgid "" "Choose unique name to represent this piece of data inside of the RRDfile." msgstr "" #: ../include/global_form.php:430 msgid "Minimum Value (\"U\" for No Minimum)" msgstr "" #: ../include/global_form.php:435 msgid "The minimum value of data that is allowed to be collected." msgstr "" #: ../include/global_form.php:438 msgid "Maximum Value (\"U\" for No Maximum)" msgstr "" #: ../include/global_form.php:443 msgid "The maximum value of data that is allowed to be collected." msgstr "" #: ../include/global_form.php:446 msgid "Data Source Type" msgstr "データソースã®ç¨®é¡ž" #: ../include/global_form.php:450 msgid "How data is represented in the RRA." msgstr "" #: ../include/global_form.php:458 msgid "" "The maximum amount of time that can pass before data is entered as " "'unknown'. (Usually 2x300=600)" msgstr "" #: ../include/global_form.php:464 msgid "Not Selected" msgstr "" #: ../include/global_form.php:465 msgid "" "When data is gathered, the data for this field will be put into this data " "source." msgstr "" #: ../include/global_form.php:474 msgid "" "Enter a name for this GPRINT preset, make sure it is something you recognize." msgstr "" #: ../include/global_form.php:481 msgid "GPRINT Text" msgstr "GPRINT テキスト" #: ../include/global_form.php:482 msgid "Enter the custom GPRINT string here." msgstr "カスタム GRPINT 文字列をã“ã“ã«å…¥åŠ›ã—ã¾ã™ã€‚" #: ../include/global_form.php:500 #, fuzzy msgid "Common Options" msgstr "ログイン設定" #: ../include/global_form.php:505 #, fuzzy msgid "Title (--title)" msgstr "題åã®ãƒ•ォントファイル" #: ../include/global_form.php:509 msgid "" "The name that is printed on the graph. It can include replacement variables " "such as |host_description| or |query_fieldName|.\n" "\t\t\tFor a complete list of supported replacement tags, please see the " "Cacti documentation." msgstr "" #: ../include/global_form.php:514 msgid "Vertical Label (--vertical-label)" msgstr "" #: ../include/global_form.php:518 msgid "The label vertically printed to the left of the graph." msgstr "" #: ../include/global_form.php:522 msgid "Image Format (--imgformat)" msgstr "" #: ../include/global_form.php:526 msgid "" "The type of graph that is generated; PNG, GIF or SVG. The selection of " "graph image type is very RRDtool dependent." msgstr "" #: ../include/global_form.php:529 msgid "Height (--height)" msgstr "" #: ../include/global_form.php:533 msgid "" "The height (in pixels) of the graph area within the graph. This area does " "not include the legend, axis legends, or title." msgstr "" #: ../include/global_form.php:537 msgid "Width (--width)" msgstr "" #: ../include/global_form.php:541 msgid "" "The width (in pixels) of the graph area within the graph. This area does not " "include the legend, axis legends, or title." msgstr "" #: ../include/global_form.php:545 msgid "Base Value (--base)" msgstr "" #: ../include/global_form.php:549 msgid "Should be set to 1024 for memory and 1000 for traffic measurements." msgstr "" #: ../include/global_form.php:553 msgid "Slope Mode (--slope-mode)" msgstr "" #: ../include/global_form.php:556 msgid "" "Using Slope Mode evens out the shape of the graphs at the expense of\n" "\t\t\tsome on screen resolution." msgstr "" #: ../include/global_form.php:560 #, fuzzy msgid "Scaling Options" msgstr "ログイン設定" #: ../include/global_form.php:565 msgid "Auto Scale" msgstr "" #: ../include/global_form.php:568 msgid "" "Auto scale the y-axis instead of defining an upper and lower limit. Note: if " "this is check both the\n" "\t\t\tUpper and Lower limit will be ignored." msgstr "" #: ../include/global_form.php:573 #, fuzzy msgid "Auto Scale Options" msgstr "アカウントオプション" #: ../include/global_form.php:576 msgid "" "Use
    \n" "\t\t\t--alt-autoscale to scale to the absolute minimum and maximum
    \n" "\t\t\t--alt-autoscale-max to scale to the maximum value, using a given lower " "limit
    \n" "\t\t\t--alt-autoscale-min to scale to the minimum value, using a given upper " "limit
    \n" "\t\t\t--alt-autoscale (with limits) to scale using both lower and upper " "limits (RRDtool default)
    " msgstr "" #: ../include/global_form.php:584 msgid "Use --alt-autoscale (ignoring given limits)" msgstr "" #: ../include/global_form.php:588 msgid "Use --alt-autoscale-max (accepting a lower limit)" msgstr "" #: ../include/global_form.php:592 msgid "Use --alt-autoscale-min (accepting an upper limit)" msgstr "" #: ../include/global_form.php:596 msgid "Use --alt-autoscale (accepting both limits, RRDtool default)" msgstr "" #: ../include/global_form.php:601 msgid "Logarithmic Scaling (--logarithmic)" msgstr "" #: ../include/global_form.php:605 msgid "Use Logarithmic y-axis scaling" msgstr "" #: ../include/global_form.php:608 msgid "SI Units for Logarithmic Scaling (--units=si)" msgstr "" #: ../include/global_form.php:611 msgid "" "Use SI Units for Logarithmic Scaling instead of using exponential notation." "
    \n" "\t\t\tNote: Linear graphs use SI notation by default." msgstr "" #: ../include/global_form.php:615 msgid "Rigid Boundaries Mode (--rigid)" msgstr "" #: ../include/global_form.php:618 msgid "" "Do not expand the lower and upper limit if the graph contains a value " "outside the valid range." msgstr "" #: ../include/global_form.php:621 msgid "Upper Limit (--upper-limit)" msgstr "" #: ../include/global_form.php:625 msgid "The maximum vertical value for the graph." msgstr "" #: ../include/global_form.php:629 msgid "Lower Limit (--lower-limit)" msgstr "" #: ../include/global_form.php:633 msgid "The minimum vertical value for the graph." msgstr "" #: ../include/global_form.php:637 #, fuzzy msgid "Grid Options" msgstr "グラフオプション" #: ../include/global_form.php:642 msgid "Unit Grid Value (--unit/--y-grid)" msgstr "" #: ../include/global_form.php:646 msgid "" "Sets the exponent value on the Y-axis for numbers. Note: This option is\n" "\t\t\tdeprecated and replaced by the --y-grid option. In this option, Y-" "axis grid lines appear\n" "\t\t\tat each grid step interval. Labels are placed every label factor " "lines." msgstr "" #: ../include/global_form.php:652 msgid "Unit Exponent Value (--units-exponent)" msgstr "" #: ../include/global_form.php:656 msgid "" "What unit cacti should use on the Y-axis. Use 3 to display everything in \"k" "\" or -6\n" "\t\t\tto display everything in \"u\" (micro)." msgstr "" #: ../include/global_form.php:661 msgid "Unit Length (--units-length <length>)" msgstr "" #: ../include/global_form.php:666 msgid "" "How many digits should RRDtool assume the y-axis labels to be? You may have " "to use this \n" "\t\t\toption to make enough space once you start fiddling with the y-axis " "labeling." msgstr "" #: ../include/global_form.php:670 msgid "No Gridfit (--no-gridfit)" msgstr "" #: ../include/global_form.php:673 msgid "" "In order to avoid anti-aliasing blurring effects RRDtool snaps points to " "device \n" "\t\t\tresolution pixels, this results in a crisper appearance. If this is " "not to your liking, you can \n" "\t\t\tuse this switch to turn this behavior off.
    Note: Gridfitting is turned off for PDF, EPS, SVG output by default." msgstr "" #: ../include/global_form.php:678 msgid "Alternative Y Grid (--alt-y-grid)" msgstr "" #: ../include/global_form.php:681 msgid "" "The algorithm ensures that you always have a grid, that there are enough but " "not too many grid lines, \n" "\t\t\tand that the grid is metric. This parameter will also ensure that you " "get enough decimals displayed \n" "\t\t\teven if your graph goes from 69.998 to 70.001.
    Note: This parameter may interfere with --alt-autoscale options." msgstr "" #: ../include/global_form.php:686 #, fuzzy msgid "Axis Options" msgstr "ログイン設定" #: ../include/global_form.php:691 msgid "Right Axis (--right-axis <scale:shift>)" msgstr "" #: ../include/global_form.php:696 msgid "" "A second axis will be drawn to the right of the graph. It is tied to the " "left axis via the \n" "\t\t\tscale and shift parameters." msgstr "" #: ../include/global_form.php:700 msgid "Right Axis Label (--right-axis-label <string>)" msgstr "" #: ../include/global_form.php:705 #, fuzzy msgid "The label for the right axis." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../include/global_form.php:708 msgid "Right Axis Format (--right-axis-format <format>)" msgstr "" #: ../include/global_form.php:713 #, php-format msgid "" "By default, the format of the axis labels gets determined automatically. \n" "\t\t\tIf you want to do this yourself, use this option with the same %lf " "arguments you know from the PRINT and GPRINT commands." msgstr "" #: ../include/global_form.php:717 msgid "Right Axis Formatter (--right-axis-formatter <formatname>)" msgstr "" #: ../include/global_form.php:722 msgid "" "When you setup the right axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted " "as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S" "\"). See also --units-length and --right-axis-format. Finally\n" "\t\t\t\"duration\" where values are interpreted as duration in " "milliseconds. Formatting follows the rules of valstrfduration qualified " "PRINT/GPRINT." msgstr "" #: ../include/global_form.php:728 msgid "Left Axis Formatter (--left-axis-formatter <formatname>)" msgstr "" #: ../include/global_form.php:733 msgid "" "When you setup the left axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted " "as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S" "\"). See also --units-length. Finally \"duration\" where values\n" "\t\t\tare interpreted as duration in milliseconds. Formatting follows the " "rules of valstrfduration qualified PRINT/GPRINT." msgstr "" #: ../include/global_form.php:739 #, fuzzy msgid "Legend Options" msgstr "ログイン設定" #: ../include/global_form.php:744 msgid "Auto Padding" msgstr "" #: ../include/global_form.php:747 msgid "" "Pad text so that legend and graph data always line up. Note: this could " "cause\n" "\t\t\tgraphs to take longer to render because of the larger overhead. Also " "Auto Padding may not\n" "\t\t\tbe accurate on all types of graphs, consistent labeling usually helps." msgstr "" #: ../include/global_form.php:752 msgid "Dynamic Labels (--dynamic-labels)" msgstr "" #: ../include/global_form.php:755 msgid "Draw line markers as a line." msgstr "" #: ../include/global_form.php:758 msgid "Force Rules Legend (--force-rules-legend)" msgstr "" #: ../include/global_form.php:761 msgid "Force the generation of HRULE and VRULE legends." msgstr "" #: ../include/global_form.php:764 msgid "Tab Width (--tabwidth <pixels>)" msgstr "" #: ../include/global_form.php:769 msgid "By default the tab-width is 40 pixels, use this option to change it." msgstr "" #: ../include/global_form.php:772 msgid "Legend Position (--legend-position=<position>)" msgstr "" #: ../include/global_form.php:776 msgid "Place the legend at the given side of the graph." msgstr "" #: ../include/global_form.php:779 msgid "Legend Direction (--legend-direction=<direction>)" msgstr "" #: ../include/global_form.php:783 msgid "Place the legend items in the given vertical order." msgstr "" #: ../include/global_form.php:790 ../lib/api_aggregate.php:1216 #: ../lib/html.php:857 msgid "Graph Item Type" msgstr "グラフ項目ã®ç¨®é¡ž" #: ../include/global_form.php:794 msgid "How data for this item is represented visually on the graph." msgstr "" #: ../include/global_form.php:809 #, fuzzy msgid "The data source to use for this graph item." msgstr "ã“ã®ã‚°ãƒ©ãƒ•ツリーã®åå‰ã§ã™ã€‚" #: ../include/global_form.php:816 #, fuzzy msgid "The color to use for the legend." msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントファイル" #: ../include/global_form.php:819 msgid "Opacity/Alpha Channel" msgstr "" #: ../include/global_form.php:823 msgid "The opacity/alpha channel of the color." msgstr "" #: ../include/global_form.php:826 ../lib/rrd.php:2688 msgid "Consolidation Function" msgstr "" #: ../include/global_form.php:830 msgid "How data for this item is represented statistically on the graph." msgstr "" #: ../include/global_form.php:833 #, fuzzy msgid "CDEF Function" msgstr "機能" #: ../include/global_form.php:838 msgid "A CDEF (math) function to apply to this item on the graph or legend." msgstr "" #: ../include/global_form.php:841 #, fuzzy msgid "VDEF Function" msgstr "機能" #: ../include/global_form.php:846 msgid "A VDEF (math) function to apply to this item on the graph legend." msgstr "" #: ../include/global_form.php:849 msgid "Shift Data" msgstr "" #: ../include/global_form.php:852 msgid "" "Offset your data on the time axis (x-axis) by the amount specified in the " "'value' field." msgstr "" #: ../include/global_form.php:855 ../lib/rrd.php:2658 ../utilities.php:2338 msgid "Value" msgstr "値" #: ../include/global_form.php:860 msgid "" "[HRULE|VRULE]: The value of the graph item.
    \n" "\t\t\t[TICK]: The fraction for the tick line.
    \n" "\t\t\t[SHIFT]: The time offset in seconds." msgstr "" #: ../include/global_form.php:865 #, fuzzy msgid "GPRINT Type" msgstr "GPRINT テキスト" #: ../include/global_form.php:869 msgid "" "If this graph item is a GPRINT, you can optionally choose another format\n" "\t\t\there. You can define additional types under \"GPRINT Presets\"." msgstr "" #: ../include/global_form.php:873 msgid "Text Alignment (TEXTALIGN)" msgstr "" #: ../include/global_form.php:878 msgid "" "All subsequent legend line(s) will be aligned as given here. You may use " "this command multiple times in a single graph.\n" "\t\t\tThis command does not produce tabular layout.
    Note: You may want to insert a <HR> on the preceding graph item.
    \n" "\t\t\tNote: A <HR> on this legend line will obsolete " "this setting!" msgstr "" #: ../include/global_form.php:883 #, fuzzy msgid "Text Format" msgstr "題åã®æ›¸å¼:" #: ../include/global_form.php:888 msgid "Text that will be displayed on the legend for this graph item." msgstr "" #: ../include/global_form.php:891 msgid "Insert Hard Return" msgstr "" #: ../include/global_form.php:894 msgid "Forces the legend to the next line after this item." msgstr "" #: ../include/global_form.php:897 msgid "Line Width (decimal)" msgstr "" #: ../include/global_form.php:902 msgid "" "In case LINE was chosen, specify width of line here. You must include a " "decimal precision, for example 2.00" msgstr "" #: ../include/global_form.php:905 msgid "Dashes (dashes[=on_s[,off_s[,on_s,off_s]...]])" msgstr "" #: ../include/global_form.php:910 msgid "The dashes modifier enables dashed line style." msgstr "" #: ../include/global_form.php:913 msgid "Dash Offset (dash-offset=offset)" msgstr "" #: ../include/global_form.php:918 msgid "" "The dash-offset parameter specifies an offset into the pattern at which the " "stroke begins." msgstr "" #: ../include/global_form.php:931 #, fuzzy msgid "The name given to this graph template." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../include/global_form.php:938 msgid "Multiple Instances" msgstr "" #: ../include/global_form.php:939 msgid "" "Check this checkbox if there can be more than one Graph of this type per " "Device." msgstr "" #: ../include/global_form.php:963 msgid "" "Enter a name for this graph item input, make sure it is something you " "recognize." msgstr "" #: ../include/global_form.php:971 msgid "" "Enter a description for this graph item input to describe what this input is " "used for." msgstr "" #: ../include/global_form.php:978 msgid "Field Type" msgstr "é …ç›®ã®ç¨®é¡ž" #: ../include/global_form.php:979 msgid "How data is to be represented on the graph." msgstr "" #: ../include/global_form.php:1002 #, fuzzy msgid "General Device Options" msgstr "グラフオプション" #: ../include/global_form.php:1007 msgid "Give this host a meaningful description." msgstr "" #: ../include/global_form.php:1014 ../include/global_form.php:1639 msgid "Fully qualified hostname or IP address for this device." msgstr "" #: ../include/global_form.php:1021 #, fuzzy msgid "Poller Association" msgstr "åŽé›†ã‚­ãƒ£ãƒƒã‚·ãƒ¥ç®¡ç†" #: ../include/global_form.php:1029 msgid "Device Site Association" msgstr "" #: ../include/global_form.php:1030 msgid "What Site is this Device associated with." msgstr "" #: ../include/global_form.php:1039 msgid "" "Choose the Device Template to use to define the default Graph Templates and " "Data Queries associated with this Device." msgstr "" #: ../include/global_form.php:1046 msgid "Number of Collection Threads" msgstr "" #: ../include/global_form.php:1047 msgid "" "The number of concurrent threads to use for polling this device. This " "applies to the Spine poller only." msgstr "" #: ../include/global_form.php:1054 #, fuzzy msgid "Disable Device" msgstr "無効" #: ../include/global_form.php:1055 msgid "Check this box to disable all checks for this host." msgstr "" #: ../include/global_form.php:1068 ../include/global_form.php:1668 #, fuzzy msgid "Choose the SNMP version for this device." msgstr "ã“ã®ãƒ˜ãƒƒãƒ€ãƒ¼/グラフã®è¦ªã‚’é¸æŠžã—ã¾ã™ã€‚" #: ../include/global_form.php:1076 ../include/global_form.php:1676 msgid "SNMP Community" msgstr "SNMP コミュニティ" #: ../include/global_form.php:1077 ../include/global_form.php:1677 msgid "SNMP read community for this device." msgstr "" #: ../include/global_form.php:1096 msgid "SNMP v3 authentication pass phrase for this device." msgstr "" #: ../include/global_form.php:1105 msgid "Choose the SNMPv3 authentication protocol." msgstr "" #: ../include/global_form.php:1113 msgid "Choose the SNMPv3 privacy passphrase." msgstr "" #: ../include/global_form.php:1122 msgid "Choose the SNMPv3 privacy protocol." msgstr "" #: ../include/global_form.php:1129 msgid "SNMP Context (v3)" msgstr "" #: ../include/global_form.php:1130 msgid "Enter the SNMP v3 context to use for this device." msgstr "" #: ../include/global_form.php:1138 msgid "SNMP Engine ID (v3)" msgstr "" #: ../include/global_form.php:1139 msgid "" "Enter the SNMP v3 Engine Id to use for this device. Leave this field empty " "to use the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "" #: ../include/global_form.php:1148 msgid "Enter the UDP port number to use for SNMP (default is 161)." msgstr "" #: ../include/global_form.php:1165 msgid "Maximum OIDs Per Get Request" msgstr "" #: ../include/global_form.php:1174 msgid "Availability/Reachability Options" msgstr "" #: ../include/global_form.php:1178 ../include/global_settings.php:547 msgid "Downed Device Detection" msgstr "" #: ../include/global_form.php:1179 ../include/global_settings.php:548 msgid "" "The method Cacti will use to determine if a host is available for polling. " "
    NOTE: It is recommended that, at a minimum, SNMP always be selected." msgstr "" #: ../include/global_form.php:1188 msgid "" "The type of ping packet to sent.
    NOTE: ICMP on Linux/UNIX requires " "root privileges." msgstr "" #: ../include/global_form.php:1225 ../include/global_form.php:1763 #, fuzzy msgid "Additional Options" msgstr "アカウントオプション" #: ../include/global_form.php:1229 ../include/global_form.php:1768 #: ../pollers.php:70 msgid "Notes" msgstr "" #: ../include/global_form.php:1230 ../include/global_form.php:1769 msgid "Enter notes to this host." msgstr "" #: ../include/global_form.php:1237 msgid "External ID" msgstr "" #: ../include/global_form.php:1238 msgid "External ID for linking Cacti data to external monitoring systems." msgstr "" #: ../include/global_form.php:1260 #, fuzzy msgid "A useful name for this host template." msgstr "ã“ã®ã‚°ãƒ©ãƒ•ツリーã®åå‰ã§ã™ã€‚" #: ../include/global_form.php:1280 msgid "A name for this data query." msgstr "ã“ã®å•ã„åˆã‚ã›ã®åå‰ã§ã™ã€‚" #: ../include/global_form.php:1288 #, fuzzy msgid "A description for this data query." msgstr "ã“ã®å•ã„åˆã‚ã›ã®åå‰ã§ã™ã€‚" #: ../include/global_form.php:1295 #, fuzzy msgid "XML Path" msgstr "パス" #: ../include/global_form.php:1296 msgid "" "The full path to the XML file containing definitions for this data query." msgstr "" #: ../include/global_form.php:1305 msgid "" "Choose the input method for this Data Query. This input method defines how " "data is collected for each Device associated with the Data Query." msgstr "" #: ../include/global_form.php:1324 msgid "" "Choose the Graph Template to use for this Data Query Graph Template item." msgstr "" #: ../include/global_form.php:1350 #, fuzzy msgid "A name for this associated graph." msgstr "ã“ã®å•ã„åˆã‚ã›ã®åå‰ã§ã™ã€‚" #: ../include/global_form.php:1378 msgid "A useful name for this graph tree." msgstr "ã“ã®ã‚°ãƒ©ãƒ•ツリーã®åå‰ã§ã™ã€‚" #: ../include/global_form.php:1385 ../include/global_form.php:2281 #: ../lib/api_automation.php:1334 ../tree.php:1279 msgid "Sorting Type" msgstr "ソートã®ç¨®é¡ž" #: ../include/global_form.php:1386 ../include/global_form.php:2282 msgid "Choose how items in this tree will be sorted." msgstr "" #: ../include/global_form.php:1392 msgid "Publish" msgstr "" #: ../include/global_form.php:1393 msgid "Should this Tree be published for users to access?" msgstr "" #: ../include/global_form.php:1428 msgid "An Email Address where the User can be reached." msgstr "" #: ../include/global_form.php:1436 msgid "" "Enter the password for this user twice. Remember that passwords are case " "sensitive!" msgstr "" #: ../include/global_form.php:1444 ../user_group_admin.php:88 msgid "Determines if user is able to login." msgstr "" #: ../include/global_form.php:1450 ../tree.php:1561 msgid "Locked" msgstr "" #: ../include/global_form.php:1451 msgid "Determines if the user account is locked." msgstr "" #: ../include/global_form.php:1456 msgid "Account Options" msgstr "アカウントオプション" #: ../include/global_form.php:1458 msgid "Set any user account specific options here." msgstr "" #: ../include/global_form.php:1462 #, fuzzy msgid "Must Change Password at Next Login" msgstr "ãƒ¦ãƒ¼ã‚¶ãƒ¼ã¯æ¬¡ã®ãƒ­ã‚°ã‚¤ãƒ³ã§ãƒ‘スワードを変ãˆãªã‘れã°ãªã‚‰ãªã„" #: ../include/global_form.php:1474 msgid "Maintain Custom Graph and User Settings" msgstr "" #: ../include/global_form.php:1481 msgid "Graph Options" msgstr "グラフオプション" #: ../include/global_form.php:1483 msgid "Set any graph specific options here." msgstr "" #: ../include/global_form.php:1487 msgid "User Has Rights to Tree View" msgstr "ユーザーã¯ãƒ„ãƒªãƒ¼è¡¨ç¤ºã®æ¨©é™ã‚’æŒã£ã¦ã„ã‚‹" #: ../include/global_form.php:1493 msgid "User Has Rights to List View" msgstr "ユーザーã¯ä¸€è¦§è¡¨ç¤ºã®æ¨©é™ã‚’æŒã£ã¦ã„ã‚‹" #: ../include/global_form.php:1499 msgid "User Has Rights to Preview View" msgstr "ユーザーã¯ãƒ—ãƒ¬ãƒ“ãƒ¥ãƒ¼è¡¨ç¤ºã®æ¨©é™ã‚’æŒã£ã¦ã„ã‚‹" #: ../include/global_form.php:1506 ../user_group_admin.php:130 msgid "Login Options" msgstr "ログイン設定" #: ../include/global_form.php:1509 msgid "What to do when this user logs in." msgstr "" #: ../include/global_form.php:1514 msgid "Show the page that user pointed their browser to." msgstr "" #: ../include/global_form.php:1518 msgid "Show the default console screen." msgstr "デフォルトã§ã‚³ãƒ³ã‚½ãƒ¼ãƒ«ç”»é¢ã‚’表示ã—ã¾ã™ã€‚" #: ../include/global_form.php:1522 msgid "Show the default graph screen." msgstr "デフォルトã§ã‚°ãƒ©ãƒ•ç”»é¢ã‚’表示ã—ã¾ã™ã€‚" #: ../include/global_form.php:1528 ../utilities.php:765 #, fuzzy msgid "Authentication Realm" msgstr "èªè¨¼æ–¹æ³•" #: ../include/global_form.php:1529 msgid "" "Only used if you have LDAP or Web Basic Authentication enabled. Changing " "this to a non-enabled realm will effectively disable the user." msgstr "" #: ../include/global_form.php:1566 #, fuzzy msgid "Discovery Rules" msgstr "検索フィルター" #: ../include/global_form.php:1584 msgid "Import Template from Local File" msgstr "ローカルファイルã‹ã‚‰ãƒ†ãƒ³ãƒ—レートをインãƒãƒ¼ãƒˆ" #: ../include/global_form.php:1585 msgid "" "If the XML file containing template data is located on your local machine, " "select it here." msgstr "" #: ../include/global_form.php:1590 msgid "Import Template from Text" msgstr "テキストã‹ã‚‰ãƒ†ãƒ³ãƒ—レートをインãƒãƒ¼ãƒˆ" #: ../include/global_form.php:1591 msgid "" "If you have the XML file containing template data as text, you can paste it " "into this box to import it." msgstr "" #: ../include/global_form.php:1599 msgid "Preview Import Only" msgstr "" #: ../include/global_form.php:1601 msgid "" "If checked, Cacti will not import the template, but rather compare the " "imported Template to the existing Template data. If you are acceptable of " "the change, you can them import." msgstr "" #: ../include/global_form.php:1606 msgid "Remove Orphaned Graph Items" msgstr "" #: ../include/global_form.php:1608 msgid "" "If checked, Cacti will delete any Graph Items from both the Graph Template " "and associated Graphs that are not included in the imported Graph Template." msgstr "" #: ../include/global_form.php:1625 #, fuzzy msgid "General SNMP Entity Options" msgstr "SNMP オプションを変更" #: ../include/global_form.php:1631 msgid "Give this SNMP entity a meaningful description." msgstr "" #: ../include/global_form.php:1646 msgid "Disable SNMP Notification Receiver" msgstr "" #: ../include/global_form.php:1647 msgid "" "Check this box if you temporary do not want to send SNMP notifications to " "this host." msgstr "" #: ../include/global_form.php:1654 msgid "Maximum Log Size" msgstr "最大ログサイズ" #: ../include/global_form.php:1655 msgid "" "Maximum number of day's notification log entries for this receiver need to " "be stored." msgstr "" #: ../include/global_form.php:1695 msgid "SNMP Auth Password (v3)" msgstr "" #: ../include/global_form.php:1696 msgid "SNMP v3 user password for this device." msgstr "" #: ../include/global_form.php:1705 msgid "" "Choose the SNMPv3 Authorization Protocol.
    Note: SHA authentication " "support is only available if you have OpenSSL installed." msgstr "" #: ../include/global_form.php:1712 msgid "SNMP Privacy Password (v3)" msgstr "" #: ../include/global_form.php:1722 msgid "" "Choose the SNMPv3 Privacy Protocol.
    Note: DES/AES encryption support is " "only available if you have OpenSSL installed." msgstr "" #: ../include/global_form.php:1728 msgid "SNMP Engine ID" msgstr "" #: ../include/global_form.php:1729 msgid "" "Defines the unique SNMP Engine ID to identify this peer. Following format " "will be recommended:
    FlexibleLength+Enterprise(8000) + IANA-Cacti(5d75) + " "MAC-Following(03) + YOUR-MAC-ADDRESS(e.g.:D89D67287B00).
    Per default the " "locally administrated MAC 02-FF-FF-FF-FF-FF will be used." msgstr "" #: ../include/global_form.php:1738 msgid "The UDP port to be used for SNMP traps. Typically, 162." msgstr "" #: ../include/global_form.php:1754 msgid "SNMP Message Type" msgstr "" #: ../include/global_form.php:1755 msgid "" "SNMP traps are always unacknowledged. To send out acknowledged SNMP " "notifications, formally called \"INFORMS\", SNMPv2 or above will be required." msgstr "" #: ../include/global_form.php:1787 ../include/global_form.php:2046 #: ../links.php:379 msgid "Title" msgstr "題å" #: ../include/global_form.php:1788 msgid "The new Title of the aggregated Graph." msgstr "" #: ../include/global_form.php:1795 ../include/global_form.php:1878 #: ../include/global_form.php:1980 msgid "Prefix" msgstr "" #: ../include/global_form.php:1796 msgid "A Prefix for all GPRINT lines to distinguish e.g. different hosts." msgstr "" #: ../include/global_form.php:1804 ../include/global_form.php:1887 #: ../include/global_form.php:1989 msgid "" "Use this Option to create e.g. STACKed graphs.
    AREA/STACK: 1st graph " "keeps AREA/STACK items, others convert to STACK
    LINE1: all items convert " "to LINE1 items
    LINE2: all items convert to LINE2 items
    LINE3: all " "items convert to LINE3 items" msgstr "" #: ../include/global_form.php:1815 ../include/global_form.php:1898 #: ../include/global_form.php:2000 msgid "Totaling" msgstr "" #: ../include/global_form.php:1816 ../include/global_form.php:1899 #: ../include/global_form.php:2001 msgid "" "Please check those Items that shall be totaled in the \"Total\" column, when " "selecting any totaling option here." msgstr "" #: ../include/global_form.php:1823 ../include/global_form.php:1907 #: ../include/global_form.php:2009 #, fuzzy msgid "Total Type" msgstr "ソートã®ç¨®é¡ž" #: ../include/global_form.php:1824 ../include/global_form.php:1908 #: ../include/global_form.php:2010 msgid "Which type of totaling shall be performed." msgstr "" #: ../include/global_form.php:1831 ../include/global_form.php:1916 #: ../include/global_form.php:2018 msgid "Prefix for GPRINT Totals" msgstr "" #: ../include/global_form.php:1832 ../include/global_form.php:1917 #: ../include/global_form.php:2019 msgid "A Prefix for all totaling GPRINT lines." msgstr "" #: ../include/global_form.php:1839 ../include/global_form.php:1924 #: ../include/global_form.php:2026 #, fuzzy msgid "Reorder Type" msgstr "é …ç›®ã®ç¨®é¡ž" #: ../include/global_form.php:1840 ../include/global_form.php:1925 #: ../include/global_form.php:2027 msgid "Reordering of Graphs." msgstr "" #: ../include/global_form.php:1860 msgid "Please name this Aggregate Graph." msgstr "" #: ../include/global_form.php:1867 msgid "Propagation Enabled" msgstr "" #: ../include/global_form.php:1868 msgid "Is this to carry the template?" msgstr "" #: ../include/global_form.php:1874 #, fuzzy msgid "Aggregate Graph Settings" msgstr "グラフ設定" #: ../include/global_form.php:1879 ../include/global_form.php:1981 msgid "" "A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may " "use both Host as well as Data Query replacement variables in this prefix." msgstr "" #: ../include/global_form.php:1959 #, fuzzy msgid "Aggregate Template Name" msgstr "グラフテンプレートå" #: ../include/global_form.php:1960 #, fuzzy msgid "Please name this Aggregate Template." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../include/global_form.php:1967 #, fuzzy msgid "Source Graph Template" msgstr "グラフテンプレートãŒã‚りã¾ã›ã‚“" #: ../include/global_form.php:1968 msgid "The Graph Template that this Aggregate Template is based upon." msgstr "" #: ../include/global_form.php:1976 msgid "Aggregate Template Settings" msgstr "" #: ../include/global_form.php:2050 #, fuzzy msgid "The name of this Color Template." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../include/global_form.php:2061 msgid "A nice Color" msgstr "" #: ../include/global_form.php:2071 #, fuzzy msgid "A useful name for this Template." msgstr "ã“ã®ã‚°ãƒ©ãƒ•ツリーã®åå‰ã§ã™ã€‚" #: ../include/global_form.php:2085 ../include/global_form.php:2127 #: ../lib/api_automation.php:1208 ../lib/api_automation.php:1270 #, fuzzy msgid "Operation" msgstr "æ“作" #: ../include/global_form.php:2086 ../include/global_form.php:2128 msgid "Logical operation to combine rules." msgstr "" #: ../include/global_form.php:2094 ../include/global_form.php:2136 msgid "The Field Name that shall be used for this Rule Item." msgstr "" #: ../include/global_form.php:2102 ../include/global_form.php:2144 #, fuzzy msgid "Operator." msgstr "æ“作" #: ../include/global_form.php:2109 ../include/global_form.php:2151 #: ../include/global_form.php:2297 msgid "Matching Pattern" msgstr "" #: ../include/global_form.php:2110 ../include/global_form.php:2152 msgid "The Pattern to be matched against." msgstr "" #: ../include/global_form.php:2118 ../include/global_form.php:2160 #: ../include/global_form.php:2314 msgid "Sequence." msgstr "" #: ../include/global_form.php:2169 ../include/global_form.php:2216 #, fuzzy msgid "A useful name for this Rule." msgstr "ã“ã® CDEF ã®åå‰ã§ã™ã€‚" #: ../include/global_form.php:2177 msgid "Choose a Data Query to apply to this rule." msgstr "" #: ../include/global_form.php:2188 msgid "Choose any of the available Graph Types to apply to this rule." msgstr "" #: ../include/global_form.php:2203 ../include/global_form.php:2261 #, fuzzy msgid "Enable Rule" msgstr "有効" #: ../include/global_form.php:2204 ../include/global_form.php:2262 msgid "Check this box to enable this rule." msgstr "" #: ../include/global_form.php:2224 msgid "Choose a Tree for the new Tree Items." msgstr "" #: ../include/global_form.php:2231 #, fuzzy msgid "Leaf Item Type" msgstr "ツリー項目ã®ç¨®é¡ž" #: ../include/global_form.php:2232 msgid "The Item Type that shall be dynamically added to the tree." msgstr "" #: ../include/global_form.php:2239 msgid "Graph Grouping Style" msgstr "グラフã®ã‚°ãƒ«ãƒ¼ãƒ—スタイル" #: ../include/global_form.php:2240 msgid "" "Choose how graphs are grouped when drawn for this particular host on the " "tree." msgstr "" #: ../include/global_form.php:2250 #, fuzzy msgid "Optional: Sub-Tree Item" msgstr "データソース項目" #: ../include/global_form.php:2251 msgid "" "Choose a Sub-Tree Item to hook in.
    Make sure, that it is still there when " "this rule is executed!" msgstr "" #: ../include/global_form.php:2272 #, fuzzy msgid "Header Type" msgstr "é …ç›®ã®ç¨®é¡ž" #: ../include/global_form.php:2273 msgid "Choose an Object to build a new Sub-header." msgstr "" #: ../include/global_form.php:2289 msgid "Propagate Changes" msgstr "" #: ../include/global_form.php:2290 msgid "" "Propagate all options on this form (except for 'Title') to all child " "'Header' items." msgstr "" #: ../include/global_form.php:2298 msgid "" "The String Pattern (Regular Expression) to match against.
    Enclosing '/' " "must NOT be provided!" msgstr "" #: ../include/global_form.php:2305 msgid "Replacement Pattern" msgstr "" #: ../include/global_form.php:2306 msgid "" "The Replacement String Pattern for use as a Tree Header.
    Refer to a Match " "by e.g. \\${1} for the first match!" msgstr "" #: ../include/global_languages.php:592 msgid " T" msgstr "" #: ../include/global_languages.php:594 msgid " G" msgstr "" #: ../include/global_languages.php:596 msgid " M" msgstr "" #: ../include/global_languages.php:598 msgid " K" msgstr "" #: ../include/global_session.php:91 ../lib/html_filter.php:66 msgid "Enter a search term" msgstr "" #: ../include/global_session.php:92 msgid "Enter a regular expression" msgstr "" #: ../include/global_settings.php:38 ../include/global_settings.php:836 #: ../include/global_settings.php:940 ../include/global_settings.php:1565 #: ../managers.php:39 ../user_admin.php:1921 ../user_group_admin.php:1642 msgid "General" msgstr "一般" #: ../include/global_settings.php:39 msgid "Paths" msgstr "パス" #: ../include/global_settings.php:40 #, fuzzy msgid "Device Defaults" msgstr "デãƒã‚¤ã‚¹" #: ../include/global_settings.php:41 ../include/global_settings.php:449 #, fuzzy msgid "Poller" msgstr "åŽé›†" #: ../include/global_settings.php:42 #, fuzzy msgid "Data Storage" msgstr "データソース" #: ../include/global_settings.php:43 msgid "Visual" msgstr "" #: ../include/global_settings.php:44 ../lib/functions.php:3800 #: ../lib/functions.php:3805 #, fuzzy msgid "Authentication" msgstr "èªè¨¼æ–¹æ³•" #: ../include/global_settings.php:45 #, fuzzy msgid "Data Source Statistics" msgstr "データソースã®ãƒ‘ス" #: ../include/global_settings.php:46 msgid "Performance" msgstr "" #: ../include/global_settings.php:47 msgid "Spikes" msgstr "" #: ../include/global_settings.php:48 msgid "Mail/Reporting/DNS" msgstr "" #: ../include/global_settings.php:52 msgid "Time Spanning/Shifting" msgstr "" #: ../include/global_settings.php:53 #, fuzzy msgid "Graph Thumbnail Settings" msgstr "グラフサムãƒã‚¤ãƒ«" #: ../include/global_settings.php:54 #, fuzzy msgid "Tree Settings" msgstr "設定" #: ../include/global_settings.php:55 #, fuzzy msgid "Graph Fonts" msgstr "グラフオプション" #: ../include/global_settings.php:85 #, fuzzy msgid "Required Tool Paths" msgstr "è¦æ±‚ã™ã‚‹ãƒ„ールã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../include/global_settings.php:90 msgid "snmpwalk Binary Path" msgstr "snmpwalk ãƒã‚¤ãƒŠãƒªãƒ‘ス" #: ../include/global_settings.php:91 msgid "The path to your snmpwalk binary." msgstr "snmpwalk ãƒã‚¤ãƒŠãƒªã¸ã®ãƒ‘スã§ã™ã€‚" #: ../include/global_settings.php:96 msgid "snmpget Binary Path" msgstr "snmpget ãƒã‚¤ãƒŠãƒªãƒ‘ス" #: ../include/global_settings.php:97 msgid "The path to your snmpget binary." msgstr "snmpget ãƒã‚¤ãƒŠãƒªã¸ã®ãƒ‘スã§ã™ã€‚" #: ../include/global_settings.php:102 #, fuzzy msgid "snmpbulkwalk Binary Path" msgstr "snmpwalk ãƒã‚¤ãƒŠãƒªãƒ‘ス" #: ../include/global_settings.php:103 #, fuzzy msgid "The path to your snmpbulkwalk binary." msgstr "snmpwalk ãƒã‚¤ãƒŠãƒªã¸ã®ãƒ‘スã§ã™ã€‚" #: ../include/global_settings.php:108 #, fuzzy msgid "snmpgetnext Binary Path" msgstr "snmpget ãƒã‚¤ãƒŠãƒªãƒ‘ス" #: ../include/global_settings.php:109 #, fuzzy msgid "The path to your snmpgetnext binary." msgstr "snmpget ãƒã‚¤ãƒŠãƒªã¸ã®ãƒ‘スã§ã™ã€‚" #: ../include/global_settings.php:114 #, fuzzy msgid "snmptrap Binary Path" msgstr "snmpget ãƒã‚¤ãƒŠãƒªãƒ‘ス" #: ../include/global_settings.php:115 #, fuzzy msgid "The path to your snmptrap binary." msgstr "snmpget ãƒã‚¤ãƒŠãƒªã¸ã®ãƒ‘スã§ã™ã€‚" #: ../include/global_settings.php:120 #, fuzzy msgid "RRDtool Binary Path" msgstr "RRDTool ãƒã‚¤ãƒŠãƒªãƒ‘ス" #: ../include/global_settings.php:121 msgid "The path to the rrdtool binary." msgstr "rrdtool ãƒã‚¤ãƒŠãƒªã¸ã®ãƒ‘スã§ã™ã€‚" #: ../include/global_settings.php:126 msgid "PHP Binary Path" msgstr "PHP ãƒã‚¤ãƒŠãƒªãƒ‘ス" #: ../include/global_settings.php:127 msgid "" "The path to your PHP binary file (may require a php recompile to get this " "file)." msgstr "" #: ../include/global_settings.php:132 msgid "Logging" msgstr "ログイン" #: ../include/global_settings.php:137 #, fuzzy msgid "Cacti Log Path" msgstr "データソースã®ãƒ‘ス" #: ../include/global_settings.php:138 msgid "" "The path to your Cacti log file (if blank, defaults to /log/" "cacti.log)" msgstr "" #: ../include/global_settings.php:144 msgid "Rotate the Cacti Log Nightly" msgstr "" #: ../include/global_settings.php:145 msgid "This will rotate the Cacti Log every night at midnight." msgstr "" #: ../include/global_settings.php:150 #, fuzzy msgid "Log Retention" msgstr "ログイン設定" #: ../include/global_settings.php:151 msgid "" "The number of days to retain old logs. Use 0 to never remove any logs. " "(0-365)" msgstr "" #: ../include/global_settings.php:157 msgid "Alternate Poller Path" msgstr "" #: ../include/global_settings.php:162 msgid "Spine Binary File Location" msgstr "" #: ../include/global_settings.php:163 #, fuzzy msgid "The path to Spine binary." msgstr "snmpget ãƒã‚¤ãƒŠãƒªã¸ã®ãƒ‘スã§ã™ã€‚" #: ../include/global_settings.php:168 msgid "Spine Config File Path" msgstr "" #: ../include/global_settings.php:169 msgid "" "The path to Spine configuration file. By default, in the cwd of spine, or /" "etc if not specified." msgstr "" #: ../include/global_settings.php:174 ../lib/functions.php:2238 #: ../rrdcleaner.php:296 msgid "RRD Cleaner" msgstr "" #: ../include/global_settings.php:179 msgid "RRDfile Auto Clean" msgstr "" #: ../include/global_settings.php:180 msgid "" "Automatically Delete, Archive, or Delete RRDfiles when removed from Cacti" msgstr "" #: ../include/global_settings.php:185 msgid "RRDfile Auto Clean Method" msgstr "" #: ../include/global_settings.php:186 msgid "The method used to Clean RRDfiles from Cacti after their deletion." msgstr "" #: ../include/global_settings.php:192 msgid "Archive directory" msgstr "" #: ../include/global_settings.php:193 msgid "" "This is the directory where RRDfiles are moved for " "Archive" msgstr "" #: ../include/global_settings.php:201 msgid "Event Logging" msgstr "イベントã®ãƒ­ã‚°è¨˜éŒ²" #: ../include/global_settings.php:206 #, fuzzy msgid "Log Destination" msgstr "ログイン設定" #: ../include/global_settings.php:207 msgid "How will Cacti handle event logging." msgstr "" #: ../include/global_settings.php:213 msgid "Web Events" msgstr "" #: ../include/global_settings.php:214 msgid "What Cacti website messages should be placed in the log." msgstr "" #: ../include/global_settings.php:219 msgid "SNMP Messages" msgstr "" #: ../include/global_settings.php:223 #, fuzzy msgid "Graph Syntax" msgstr "グラフ設定" #: ../include/global_settings.php:227 #, fuzzy msgid "Developer Mode" msgstr "プレビューモード" #: ../include/global_settings.php:233 #, fuzzy msgid "Log Settings" msgstr "設定" #: ../include/global_settings.php:238 msgid "Generic Log Level" msgstr "" #: ../include/global_settings.php:239 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: ../include/global_settings.php:245 msgid "Selective File Debug" msgstr "" #: ../include/global_settings.php:246 msgid "" "Select which files you wish to place in Debug mode regardless of the Generic " "Log Level setting. Any files selected will be treated as they are in Debug " "mode." msgstr "" #: ../include/global_settings.php:252 msgid "Selective Plugin Debug" msgstr "" #: ../include/global_settings.php:253 msgid "" "Select which Plugins you wish to place in Debug mode regardless of the " "Generic Log Level setting. Any files used by this plugin will be treated as " "they are in Debug mode." msgstr "" #: ../include/global_settings.php:259 msgid "Selective Device Debug" msgstr "" #: ../include/global_settings.php:260 msgid "" "A comma delimited list of Device ID's that you wish to be in Debug mode " "during data collection. This Debug level is only in place during the Cacti " "polling process." msgstr "" #: ../include/global_settings.php:267 msgid "Poller Syslog/Eventlog Selection" msgstr "" #: ../include/global_settings.php:268 msgid "" "If you are using the Syslog/Eventlog, What Cacti poller messages should be " "placed in the Syslog/Eventlog." msgstr "" #: ../include/global_settings.php:273 #, fuzzy msgid "Statistics" msgstr "統計を消去" #: ../include/global_settings.php:277 ../lib/clog_webapi.php:333 #: ../utilities.php:1002 #, fuzzy msgid "Warnings" msgstr "åŽé›†ã®è­¦å‘Š" #: ../include/global_settings.php:281 ../lib/clog_webapi.php:334 #: ../utilities.php:1003 #, fuzzy msgid "Errors" msgstr "エラー" #: ../include/global_settings.php:287 msgid "Other Defaults" msgstr "" #: ../include/global_settings.php:292 msgid "Has Graphs/Data Sources Checked" msgstr "" #: ../include/global_settings.php:293 msgid "Should the Has Graphs and Has Data Sources be Checked by Default." msgstr "" #: ../include/global_settings.php:298 #, fuzzy msgid "Graph Template Image Format" msgstr "グラフテンプレートã®é …ç›®" #: ../include/global_settings.php:299 #, fuzzy msgid "The default Image Format to be used for all new Graph Templates." msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントファイル" #: ../include/global_settings.php:305 #, fuzzy msgid "Graph Template Height" msgstr "グラフテンプレートå" #: ../include/global_settings.php:306 ../include/global_settings.php:314 #, fuzzy msgid "The default Graph Width to be used for all new Graph Templates." msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントファイル" #: ../include/global_settings.php:313 #, fuzzy msgid "Graph Template Width" msgstr "グラフã®ãƒ†ãƒ³ãƒ—レート" #: ../include/global_settings.php:321 msgid "Language Support" msgstr "" #: ../include/global_settings.php:322 msgid "" "Choose 'enabled' to allow the localization of Cacti. The strict mode " "requires that the requested language will also be supported by all plugins " "being installed at your system. If that's not the fact everything will be " "displayed in English." msgstr "" #: ../include/global_settings.php:328 msgid "Language" msgstr "" #: ../include/global_settings.php:329 #, fuzzy msgid "Default language for this system." msgstr "ã“ã®ã‚°ãƒ©ãƒ•ツリーã®åå‰ã§ã™ã€‚" #: ../include/global_settings.php:335 msgid "Auto Language Detection" msgstr "" #: ../include/global_settings.php:336 msgid "" "Allow to automatically determine the 'default' language of the user and " "provide it at login time if that language is supported by Cacti. If " "disabled, the default language will be in force until the user elects " "another language." msgstr "" #: ../include/global_settings.php:342 ../include/global_settings.php:1819 #, fuzzy msgid "Date Display Format" msgstr "ã‚°ãƒ©ãƒ•ã®æ—¥ä»˜ã®è¡¨ç¤ºå½¢å¼" #: ../include/global_settings.php:343 #, fuzzy msgid "The System default date format to use in Cacti." msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントファイル" #: ../include/global_settings.php:349 ../include/global_settings.php:1826 #, fuzzy msgid "Date Separator" msgstr "ã‚°ãƒ©ãƒ•ã®æ—¥ä»˜ã®è¡¨ç¤ºå½¢å¼" #: ../include/global_settings.php:350 #, fuzzy msgid "The System default date separator to be used in Cacti." msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントファイル" #: ../include/global_settings.php:356 #, fuzzy msgid "Other Settings" msgstr "設定" #: ../include/global_settings.php:361 ../utilities.php:258 #, fuzzy msgid "RRDtool Version" msgstr "プロトコルãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../include/global_settings.php:362 msgid "The version of RRDtool that you have installed." msgstr "" #: ../include/global_settings.php:368 #, fuzzy msgid "Graph Permission Method" msgstr "グラフ権é™" #: ../include/global_settings.php:369 msgid "" "There are two methods for determining a User's Graph Permissions. The first " "is 'Permissive'. Under the 'Permissive' setting, a User only needs access " "to either the Graph, Device or Graph Template to gain access to the Graphs " "that apply to them. Under 'Restrictive', the User must have access to the " "Graph, the Device, and the Graph Template to gain access to the Graph." msgstr "" #: ../include/global_settings.php:376 #, fuzzy msgid "Graph/Data Source Creation Method" msgstr "データソースã®ãƒ‘ス" #: ../include/global_settings.php:377 msgid "" "If set to Simple, Graphs and Data Sources can only be created from New " "Graphs. If Advanced, legacy Graph and Data Source creation is supported." msgstr "" #: ../include/global_settings.php:382 msgid "Show Form/Setting Help Inline" msgstr "" #: ../include/global_settings.php:383 msgid "" "When checked, Form and Setting Help will be show inline. Otherwise it will " "be presented when hovering over the help button." msgstr "" #: ../include/global_settings.php:388 #, fuzzy msgid "Deletion Verification" msgstr "組ã¿è¾¼ã¿èªè¨¼" #: ../include/global_settings.php:389 msgid "Prompt user before item deletion." msgstr "" #: ../include/global_settings.php:394 msgid "Hide Cacti Console" msgstr "" #: ../include/global_settings.php:395 msgid "" "For use with Cacti's External Link Support. Using this setting, you can " "replace the Cacti Console with your own page." msgstr "" #: ../include/global_settings.php:401 msgid "Enable Drag-N-Drop" msgstr "" #: ../include/global_settings.php:402 msgid "" "Some of Cacti's interfaces support Drag-N-Drop. If checked this option will " "be enabled. Note: For visually impaired user, this option may be disabled." msgstr "" #: ../include/global_settings.php:407 msgid "Force Connections over HTTPS" msgstr "" #: ../include/global_settings.php:408 msgid "" "When checked, any attempts to access Cacti will be redirected to HTTPS to " "insure high security." msgstr "" #: ../include/global_settings.php:419 msgid "Enable Automatic Graph Creation" msgstr "" #: ../include/global_settings.php:420 msgid "" "When disabled, Cacti Automation will not actively create any Graph.This is " "useful when adjusting Host settings so as to avoid creating new Graphs each " "time you save an object. Invoking Automation Rules manually will still be " "possible." msgstr "" #: ../include/global_settings.php:427 msgid "Enable Automatic Tree Item Creation" msgstr "" #: ../include/global_settings.php:428 msgid "" "When disabled, Cacti Automation will not actively create any Tree Item.This " "is useful when adjusting Host or Graph settings so as to avoid creating new " "Tree Entries each time you save an object. Invoking Rules manually will " "still be possible." msgstr "" #: ../include/global_settings.php:436 #, fuzzy msgid "General Defaults" msgstr "デãƒã‚¤ã‚¹" #: ../include/global_settings.php:442 msgid "The default Site for all new Devices." msgstr "" #: ../include/global_settings.php:450 msgid "The default Poller for all new Devices." msgstr "" #: ../include/global_settings.php:457 msgid "Re-index Method for Data Queries" msgstr "" #: ../include/global_settings.php:458 msgid "The default Re-index Method to use for all Data Queries." msgstr "" #: ../include/global_settings.php:464 #, fuzzy msgid "SNMP Defaults" msgstr "SNMP タイムアウト" #: ../include/global_settings.php:470 msgid "Default SNMP version for all new hosts." msgstr "" #: ../include/global_settings.php:477 msgid "Default SNMP read community for all new hosts." msgstr "" #: ../include/global_settings.php:483 #, fuzzy msgid "Username (v3)" msgstr "ユーザーå" #: ../include/global_settings.php:484 msgid "The SNMP v3 Username for polling hosts." msgstr "" #: ../include/global_settings.php:490 #, fuzzy msgid "Password (v3)" msgstr "パスワード" #: ../include/global_settings.php:491 msgid "The SNMP v3 Password for polling hosts." msgstr "" #: ../include/global_settings.php:498 msgid "Auth Protocol (v3)" msgstr "" #: ../include/global_settings.php:505 msgid "Privacy Passphrase (v3)" msgstr "" #: ../include/global_settings.php:512 msgid "Privacy Protocol (v3)" msgstr "" #: ../include/global_settings.php:519 msgid "Default SNMP timeout in milli-seconds." msgstr "" #: ../include/global_settings.php:526 msgid "Port Number" msgstr "" #: ../include/global_settings.php:527 msgid "Default UDP port to be used for SNMP Calls. Typically, 161." msgstr "" #: ../include/global_settings.php:535 msgid "" "The number of times the SNMP poller will attempt to reach the host before " "failing." msgstr "" #: ../include/global_settings.php:542 msgid "Availability/Reachability" msgstr "" #: ../include/global_settings.php:554 msgid "Ping Type" msgstr "Ping ã®ç¨®é¡ž" #: ../include/global_settings.php:555 msgid "" "The type of ping packet to send.
    NOTE: ICMP requires that the Cacti " "Service ID have root privileges in UNIX/Linux." msgstr "" #: ../include/global_settings.php:562 msgid "" "When choosing either TCP or UDP Ping, which port should be checked for " "availability of the host prior to polling." msgstr "" #: ../include/global_settings.php:578 msgid "The number of times Cacti will attempt to ping a host before failing." msgstr "" #: ../include/global_settings.php:585 #, fuzzy msgid "Up/Down Settings" msgstr "グラフ設定" #: ../include/global_settings.php:590 msgid "Failure Count" msgstr "失敗回数" #: ../include/global_settings.php:591 msgid "" "The number of polling intervals a host must be down before logging an error " "and reporting host as down." msgstr "" #: ../include/global_settings.php:598 msgid "Recovery Count" msgstr "" #: ../include/global_settings.php:599 msgid "" "The number of polling intervals a host must remain up before returning host " "to an up status and issuing a notice." msgstr "" #: ../include/global_settings.php:608 #, fuzzy msgid "Theme Settings" msgstr "設定" #: ../include/global_settings.php:613 ../include/global_settings.php:764 #: ../include/global_settings.php:1792 msgid "Theme" msgstr "" #: ../include/global_settings.php:614 ../include/global_settings.php:1793 msgid "Please select one of the available Themes to skin your Cacti with." msgstr "" #: ../include/global_settings.php:620 #, fuzzy msgid "Table Settings" msgstr "グラフ設定" #: ../include/global_settings.php:625 msgid "Rows Per Page" msgstr "ページ毎ã®è¡Œæ•°" #: ../include/global_settings.php:626 #, fuzzy msgid "The default number of rows to display on for a table." msgstr "データソース一覧ã®å˜ä¸€ãƒšãƒ¼ã‚¸ã§è¡¨ç¤ºã™ã‚‹è¡Œæ•°ã§ã™ã€‚" #: ../include/global_settings.php:632 msgid "Graph/Data Source/Data Query Settings" msgstr "" #: ../include/global_settings.php:637 msgid "Maximum Title Length" msgstr "題åã®æœ€å¤§é•·" #: ../include/global_settings.php:638 #, fuzzy msgid "The maximum allowable Graph or Data Source titles." msgstr "データソースタイトルã®å˜ä¸€ãƒšãƒ¼ã‚¸ã§è¡¨ç¤ºã™ã‚‹è¡Œæ•°ã§ã™ã€‚<" #: ../include/global_settings.php:645 #, fuzzy msgid "Data Source Field Length" msgstr "データソースã®ãƒ‘ス" #: ../include/global_settings.php:646 #, fuzzy msgid "The maximum Data Query field length." msgstr "é …ç›®ã®æœ€å¤§é•·" #: ../include/global_settings.php:653 #, fuzzy msgid "Graph Creation" msgstr "グラフオプション" #: ../include/global_settings.php:658 #, fuzzy msgid "Default Graph Type" msgstr "デフォルトã®ã‚°ãƒ©ãƒ•ツリー" #: ../include/global_settings.php:659 msgid "When creating graphs, what Graph Type would you like pre-selected?" msgstr "" #: ../include/global_settings.php:662 #, fuzzy msgid "All Types" msgstr "é …ç›®ã®ç¨®é¡ž" #: ../include/global_settings.php:662 #, fuzzy msgid "By Template/Data Query" msgstr "データå•åˆã›" #: ../include/global_settings.php:670 #, fuzzy msgid "Default Log Tail Lines" msgstr "デフォルトãƒãƒªã‚·" #: ../include/global_settings.php:671 msgid "Default number of lines of the Cacti log file to tail." msgstr "" #: ../include/global_settings.php:677 msgid "Maximum number of rows per page" msgstr "" #: ../include/global_settings.php:678 msgid "" "User defined number of lines for the CLOG to tail when selecting 'All lines'." msgstr "" #: ../include/global_settings.php:685 msgid "Log Tail Refresh" msgstr "" #: ../include/global_settings.php:686 msgid "How often do you want the Cacti log display to update." msgstr "" #: ../include/global_settings.php:692 msgid "RRDtool Graph Watermark" msgstr "" #: ../include/global_settings.php:697 msgid "Watermark Text" msgstr "" #: ../include/global_settings.php:698 msgid "Test to place at the bottom center of every Graph." msgstr "" #: ../include/global_settings.php:705 #, fuzzy msgid "Log Viewer Settings" msgstr "Cacti 設定" #: ../include/global_settings.php:710 msgid "Exclusion Regex" msgstr "" #: ../include/global_settings.php:711 msgid "" "Any strings that match this regex will be excluded from the user display.\n" "\t\t\t\tFor example, if you want to exclude all log lines that " "include the words 'Admin' or 'Login'\n" "\t\t\t\tyou would type '(Admin || Login)'" msgstr "" #: ../include/global_settings.php:720 #, fuzzy msgid "Real-time Graphs" msgstr "グラフを更新ã™ã‚‹" #: ../include/global_settings.php:725 msgid "Enable Real-time Graphing" msgstr "" #: ../include/global_settings.php:726 msgid "" "When an option is checked, users will be able to put Cacti into Real-time " "mode." msgstr "" #: ../include/global_settings.php:731 ../lib/html_reports.php:365 #, fuzzy msgid "Graph Timespan" msgstr "グラフã®é¡Œå" #: ../include/global_settings.php:732 msgid "This timespan you wish to see on the default graph." msgstr "" #: ../include/global_settings.php:738 ../utilities.php:1893 msgid "Refresh Interval" msgstr "" #: ../include/global_settings.php:739 msgid "This is the time between graph updates." msgstr "" #: ../include/global_settings.php:745 msgid "Cache Directory" msgstr "" #: ../include/global_settings.php:746 msgid "" "This is the location, on the web server where the RRDfiles and PNG files " "will be cached.\n" "\t\t\tThis cache will be managed by the poller.\n" "\t\t\tMake sure you have the correct read and write permissions on this " "folder" msgstr "" #: ../include/global_settings.php:755 msgid "RRDtool Graph Font Control" msgstr "" #: ../include/global_settings.php:760 #, fuzzy msgid "Font Selection Method" msgstr "èªè¨¼æ–¹æ³•" #: ../include/global_settings.php:761 msgid "How do you wish fonts to be handled by default?" msgstr "" #: ../include/global_settings.php:764 msgid "System" msgstr "" #: ../include/global_settings.php:767 #, fuzzy msgid "Default Font" msgstr "デフォルト RRA" #: ../include/global_settings.php:768 msgid "" "When not using Theme based font control, the Pangon font-config font name to " "use for all Graphs. Optionally, you may leave blank and control font " "settings on a per object basis." msgstr "" #: ../include/global_settings.php:770 ../include/global_settings.php:785 #: ../include/global_settings.php:800 ../include/global_settings.php:815 #: ../include/global_settings.php:830 msgid "Enter Valid Font Config Value" msgstr "" #: ../include/global_settings.php:774 ../include/global_settings.php:1977 msgid "Title Font Size" msgstr "題åã®ãƒ•ォントサイズ" #: ../include/global_settings.php:775 ../include/global_settings.php:1978 #, fuzzy msgid "The size of the font used for Graph Titles" msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントサイズ" #: ../include/global_settings.php:782 #, fuzzy msgid "Title Font Setting" msgstr "題åã®ãƒ•ォントサイズ" #: ../include/global_settings.php:783 msgid "" "The font to use for Graph Titles. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:789 ../include/global_settings.php:1990 msgid "Legend Font Size" msgstr "凡例ã®ãƒ•ォントサイズ" #: ../include/global_settings.php:790 ../include/global_settings.php:1991 msgid "The size of the font used for Graph Legend items" msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントサイズ" #: ../include/global_settings.php:797 #, fuzzy msgid "Legend Font Setting" msgstr "凡例ã®ãƒ•ォントサイズ" #: ../include/global_settings.php:798 msgid "" "The font to use for Graph Legends. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:804 ../include/global_settings.php:2003 #, fuzzy msgid "Axis Font Size" msgstr "å˜ä½ã®ãƒ•ォントサイズ" #: ../include/global_settings.php:805 ../include/global_settings.php:2004 #, fuzzy msgid "The size of the font used for Graph Axis" msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントサイズ" #: ../include/global_settings.php:812 msgid "Axis Font Setting" msgstr "" #: ../include/global_settings.php:813 msgid "" "The font to use for Graph Axis items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:819 ../include/global_settings.php:2016 msgid "Unit Font Size" msgstr "å˜ä½ã®ãƒ•ォントサイズ" #: ../include/global_settings.php:820 ../include/global_settings.php:2017 #, fuzzy msgid "The size of the font used for Graph Units" msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントサイズ" #: ../include/global_settings.php:827 #, fuzzy msgid "Unit Font Setting" msgstr "å˜ä½ã®ãƒ•ォントサイズ" #: ../include/global_settings.php:828 msgid "" "The font to use for Graph Unit items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:841 msgid "Data Collection Enabled" msgstr "" #: ../include/global_settings.php:842 msgid "If you wish to stop the polling process completely, uncheck this box." msgstr "" #: ../include/global_settings.php:848 #, fuzzy msgid "Poller Type" msgstr "åŽé›†" #: ../include/global_settings.php:849 msgid "" "The poller type to use. This setting will take effect at next polling " "interval." msgstr "" #: ../include/global_settings.php:856 msgid "" "The polling interval in use. This setting will effect how often RRDfiles " "are checked and updated.\n" "\t\t\tNOTE: If you change this value, you must re-populate the " "poller cache. Failure to do so, may result in lost data." msgstr "" #: ../include/global_settings.php:863 msgid "Cron Interval" msgstr "" #: ../include/global_settings.php:864 msgid "" "The cron interval in use. You need to set this setting to the interval that " "your cron or scheduled task is currently running." msgstr "" #: ../include/global_settings.php:870 msgid "Maximum Concurrent Poller Processes" msgstr "" #: ../include/global_settings.php:871 msgid "" "The number of concurrent processes to execute. Using a higher number when " "using cmd.php will improve performance. Performance improvements in spine " "are best resolved with the threads parameter" msgstr "" #: ../include/global_settings.php:878 msgid "Balance Process Load" msgstr "" #: ../include/global_settings.php:879 msgid "" "If you choose this option, Cacti will attempt to balance the load of each " "poller process by equally distributing poller items per process." msgstr "" #: ../include/global_settings.php:884 msgid "Disable increasing OID Check" msgstr "" #: ../include/global_settings.php:885 msgid "Controls disabling check for increasing OID while walking OID tree." msgstr "" #: ../include/global_settings.php:890 msgid "Spine Specific Execution Parameters" msgstr "" #: ../include/global_settings.php:895 #, fuzzy msgid "Invalid Data Logging" msgstr "イベントã®ãƒ­ã‚°è¨˜éŒ²" #: ../include/global_settings.php:896 msgid "" "How would you like Spine output errors logged? The options are: 'Detailed' " "which is similar to cmd.php logging; 'Summary' which provides the number of " "output errors per host; and 'None', which does not provide error counts." msgstr "" #: ../include/global_settings.php:901 ../utilities.php:193 msgid "Summary" msgstr "" #: ../include/global_settings.php:902 #, fuzzy msgid "Detailed" msgstr "ä¿å­˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚" #: ../include/global_settings.php:906 msgid "Maximum Threads per Process" msgstr "" #: ../include/global_settings.php:907 msgid "" "The maximum threads allowed per process. Using a higher number when using " "Spine will improve performance." msgstr "" #: ../include/global_settings.php:914 msgid "Number of PHP Script Servers" msgstr "" #: ../include/global_settings.php:915 msgid "" "The number of concurrent script server processes to run per Spine process. " "Settings between 1 and 10 are accepted. This parameter will help if you are " "running several threads and script server scripts." msgstr "" #: ../include/global_settings.php:922 msgid "Script and Script Server Timeout Value" msgstr "" #: ../include/global_settings.php:923 msgid "" "The maximum time that Cacti will wait on a script to complete. This timeout " "value is in seconds" msgstr "" #: ../include/global_settings.php:930 msgid "The Maximum SNMP OIDs Per SNMP Get Request" msgstr "" #: ../include/global_settings.php:931 msgid "" "The maximum number of SNMP get OIDs to issue per snmpbulkwalk request. " "Increasing this value speeds poller performance over slow links. The " "maximum value is 100 OIDs. Decreasing this value to 0 or 1 will disable " "snmpbulkwalk" msgstr "" #: ../include/global_settings.php:945 msgid "Authentication Method" msgstr "èªè¨¼æ–¹æ³•" #: ../include/global_settings.php:946 msgid "" "
    None - No authentication will be used, all users will " "have full access.

    Built-in Authentication - Cacti handles user " "authentication, which allows you to create users and give them rights to " "different areas within Cacti.

    Web Basic Authentication - " "Authentication is handled by the web server. Users can be added or created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used.

    LDAP Authentication - " "Allows for authentication against a LDAP server. Users will be created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used. If PHPs LDAP module is not enabled, " "LDAP Authentication will not appear as a selectable option." "

    Multiple LDAP/AD Domain Authentication - Allows " "administrators to support multiple disparate groups from different LDAP/AD " "directories to access Cacti resources. Just as LDAP Authentication, the PHP " "LDAP module is required to utilize this method.
    " msgstr "" #: ../include/global_settings.php:952 #, fuzzy msgid "Support Authentication Cookies" msgstr "組ã¿è¾¼ã¿èªè¨¼" #: ../include/global_settings.php:953 msgid "" "If a user authenticates and selects 'Keep me signed in', an authentication " "cookie will be created on the user's computer allowing that user to stay " "logged in. The authentication cookie expires after 90 days of non-use." msgstr "" #: ../include/global_settings.php:958 msgid "Special Users" msgstr "" #: ../include/global_settings.php:963 msgid "Guest User" msgstr "ゲストユーザー" #: ../include/global_settings.php:964 msgid "The name of the guest user for viewing graphs; is 'No User' by default." msgstr "" #: ../include/global_settings.php:966 ../include/global_settings.php:974 #: ../user_domains.php:335 #, fuzzy msgid "No User" msgstr "FTP ユーザー" #: ../include/global_settings.php:971 ../user_domains.php:331 msgid "User Template" msgstr "ユーザーテンプレート" #: ../include/global_settings.php:972 msgid "" "The name of the user that cacti will use as a template for new Web Basic and " "LDAP users; is 'guest' by default." msgstr "" #: ../include/global_settings.php:979 msgid "Local Account Complexity Requirements" msgstr "" #: ../include/global_settings.php:984 #, fuzzy msgid "Minimum Length" msgstr "é …ç›®ã®æœ€å¤§é•·" #: ../include/global_settings.php:985 msgid "This is minimal length of allowed passwords." msgstr "" #: ../include/global_settings.php:992 msgid "Require Mix Case" msgstr "" #: ../include/global_settings.php:993 msgid "" "This will require new passwords to contains both lower and upper-case " "characters." msgstr "" #: ../include/global_settings.php:998 msgid "Require Number" msgstr "" #: ../include/global_settings.php:999 msgid "" "This will require new passwords to contain at least 1 numerical character." msgstr "" #: ../include/global_settings.php:1004 msgid "Require Special Character" msgstr "" #: ../include/global_settings.php:1005 msgid "" "This will require new passwords to contain at least 1 special character." msgstr "" #: ../include/global_settings.php:1010 msgid "Force Complexity Upon Old Passwords" msgstr "" #: ../include/global_settings.php:1011 msgid "" "This will require all old passwords to also meet the new complexity " "requirements upon login. If not met, it will force a password change." msgstr "" #: ../include/global_settings.php:1016 msgid "Expire Inactive Accounts" msgstr "" #: ../include/global_settings.php:1017 msgid "" "This is maximum number of days before inactive accounts are disabled. The " "Admin account is excluded from this policy." msgstr "" #: ../include/global_settings.php:1030 #, fuzzy msgid "Expire Password" msgstr "パスワード" #: ../include/global_settings.php:1031 #, fuzzy msgid "This is maximum number of days before a password is set to expire." msgstr "データソースタイトルã®å˜ä¸€ãƒšãƒ¼ã‚¸ã§è¡¨ç¤ºã™ã‚‹è¡Œæ•°ã§ã™ã€‚<" #: ../include/global_settings.php:1042 #, fuzzy msgid "Password History" msgstr "パスワード" #: ../include/global_settings.php:1043 msgid "Remember this number of old passwords and disallow re-using them." msgstr "" #: ../include/global_settings.php:1048 #, fuzzy msgid "1 Change" msgstr "ホストを変更" #: ../include/global_settings.php:1049 ../include/global_settings.php:1050 #: ../include/global_settings.php:1051 ../include/global_settings.php:1052 #: ../include/global_settings.php:1053 ../include/global_settings.php:1054 #: ../include/global_settings.php:1055 ../include/global_settings.php:1056 #: ../include/global_settings.php:1057 ../include/global_settings.php:1058 #: ../include/global_settings.php:1059 #, fuzzy, php-format msgid "%d Changes" msgstr "ホストを変更" #: ../include/global_settings.php:1062 #, fuzzy msgid "Account Locking" msgstr "アカウントオプション" #: ../include/global_settings.php:1067 msgid "Lock Accounts" msgstr "" #: ../include/global_settings.php:1068 msgid "Lock an account after this many failed attempts in 1 hour." msgstr "" #: ../include/global_settings.php:1073 msgid "1 Attempt" msgstr "" #: ../include/global_settings.php:1074 ../include/global_settings.php:1075 #: ../include/global_settings.php:1076 ../include/global_settings.php:1077 #: ../include/global_settings.php:1078 #, php-format msgid "%d Attempts" msgstr "" #: ../include/global_settings.php:1081 msgid "Auto Unlock" msgstr "" #: ../include/global_settings.php:1082 msgid "" "An account will automatically be unlocked after this many minutes. Even if " "the correct password is entered, the account will not unlock until this time " "limit has been met. Max of 1440 minutes (1 Day)" msgstr "" #: ../include/global_settings.php:1101 #, fuzzy msgid "LDAP General Settings" msgstr "グラフ設定" #: ../include/global_settings.php:1105 ../user_domains.php:358 msgid "Server" msgstr "サーãƒãƒ¼" #: ../include/global_settings.php:1106 msgid "The DNS hostname or IP address of the server." msgstr "" #: ../include/global_settings.php:1111 ../user_domains.php:366 msgid "Port Standard" msgstr "標準ãƒãƒ¼ãƒˆ" #: ../include/global_settings.php:1112 msgid "TCP/UDP port for Non-SSL communications." msgstr "" #: ../include/global_settings.php:1119 ../user_domains.php:375 msgid "Port SSL" msgstr "SSL ãƒãƒ¼ãƒˆ" #: ../include/global_settings.php:1120 ../user_domains.php:376 msgid "TCP/UDP port for SSL communications." msgstr "" #: ../include/global_settings.php:1127 ../user_domains.php:384 msgid "Protocol Version" msgstr "プロトコルãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../include/global_settings.php:1128 ../user_domains.php:385 msgid "Protocol Version that the server supports." msgstr "サーãƒãƒ¼ãŒã‚µãƒãƒ¼ãƒˆã™ã‚‹ãƒ—ロトコルã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™ã€‚" #: ../include/global_settings.php:1134 ../user_domains.php:391 msgid "Encryption" msgstr "æš—å·åŒ–" #: ../include/global_settings.php:1135 ../user_domains.php:392 msgid "" "Encryption that the server supports. TLS is only supported by Protocol " "Version 3." msgstr "" #: ../include/global_settings.php:1141 ../user_domains.php:398 msgid "Referrals" msgstr "" #: ../include/global_settings.php:1142 ../user_domains.php:399 msgid "" "Enable or Disable LDAP referrals. If disabled, it may increase the speed of " "searches." msgstr "" #: ../include/global_settings.php:1148 ../user_domains.php:405 msgid "Mode" msgstr "モード" #: ../include/global_settings.php:1149 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the user's " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the user's Distinguished Name (DN)." msgstr "" #: ../include/global_settings.php:1155 ../user_domains.php:412 msgid "Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1156 ../user_domains.php:413 msgid "" "Distinguished Name syntax, such as for windows: \"<username>" "@win2kdomain.local\" or for OpenLDAP: \"uid=<username>," "ou=people,dc=domain,dc=local\". \"<username>\" is replaced with " "the username that was supplied at the login prompt. This is only used when " "in \"No Searching\" mode." msgstr "" #: ../include/global_settings.php:1161 ../user_domains.php:419 #, fuzzy msgid "Require Group Membership" msgstr "è¦æ±‚ã™ã‚‹ãƒ„ールã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../include/global_settings.php:1162 ../user_domains.php:420 msgid "" "Require user to be member of group to authenticate. Group settings must be " "set for this to work, enabling without proper group settings will cause " "authentication failure." msgstr "" #: ../include/global_settings.php:1167 ../user_domains.php:425 #, fuzzy msgid "LDAP Group Settings" msgstr "グラフ設定" #: ../include/global_settings.php:1171 ../user_domains.php:429 msgid "Group Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1172 ../user_domains.php:430 msgid "Distinguished Name of the group that user must have membership." msgstr "" #: ../include/global_settings.php:1177 ../user_domains.php:436 msgid "Group Member Attribute" msgstr "" #: ../include/global_settings.php:1178 ../user_domains.php:437 msgid "Name of the attribute that contains the usernames of the members." msgstr "" #: ../include/global_settings.php:1183 ../user_domains.php:443 #, fuzzy msgid "Group Member Type" msgstr "グラフ項目ã®ç¨®é¡ž" #: ../include/global_settings.php:1184 ../user_domains.php:444 msgid "" "Defines if users use full Distinguished Name or just Username in the defined " "Group Member Attribute." msgstr "" #: ../include/global_settings.php:1187 msgid "Distinguished Name" msgstr "" #: ../include/global_settings.php:1190 ../user_domains.php:450 msgid "LDAP Specific Search Settings" msgstr "" #: ../include/global_settings.php:1194 ../user_domains.php:454 #, fuzzy msgid "Search Base" msgstr "検索パスワード" #: ../include/global_settings.php:1195 msgid "" "Search base for searching the LDAP directory, such as 'dc=win2kdomain," "dc=local' or 'ou=people,dc=domain,dc=local'." msgstr "" #: ../include/global_settings.php:1200 ../user_domains.php:461 msgid "Search Filter" msgstr "検索フィルター" #: ../include/global_settings.php:1201 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: '(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))' or for OpenLDAP: " "'(&(objectClass=account)(uid=<username>))'. '<username>' " "is replaced with the username that was supplied at the login prompt. " msgstr "" #: ../include/global_settings.php:1206 ../user_domains.php:468 msgid "Search Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1207 ../user_domains.php:469 msgid "" "Distinguished Name for Specific Searching binding to the LDAP directory." msgstr "" #: ../include/global_settings.php:1212 ../user_domains.php:475 msgid "Search Password" msgstr "検索パスワード" #: ../include/global_settings.php:1213 ../user_domains.php:476 msgid "Password for Specific Searching binding to the LDAP directory." msgstr "" #: ../include/global_settings.php:1220 msgid "URL Linking" msgstr "" #: ../include/global_settings.php:1225 msgid "Server Base URL" msgstr "" #: ../include/global_settings.php:1226 msgid "" "This is a the server location that will be used for links to the Cacti site." msgstr "" #: ../include/global_settings.php:1233 msgid "" "Emailing Options
    Send a Test Email
    " msgstr "" #: ../include/global_settings.php:1237 msgid "Test Email" msgstr "" #: ../include/global_settings.php:1238 msgid "" "This is a Email account used for sending a test message to ensure everything " "is working properly." msgstr "" #: ../include/global_settings.php:1243 #, fuzzy msgid "Mail Services" msgstr "デãƒã‚¤ã‚¹" #: ../include/global_settings.php:1244 msgid "Which mail service to use in order to send mail" msgstr "" #: ../include/global_settings.php:1246 ../include/global_settings.php:1247 msgid "PHP Mail() Function" msgstr "" #: ../include/global_settings.php:1247 ../lib/functions.php:3788 msgid "SMTP" msgstr "" #: ../include/global_settings.php:1247 ../lib/functions.php:3783 msgid "Sendmail" msgstr "" #: ../include/global_settings.php:1250 #, fuzzy msgid "Ping Mail Server" msgstr "デãƒã‚¤ã‚¹" #: ../include/global_settings.php:1251 msgid "Ping the Mail Server before sending test Email?" msgstr "" #: ../include/global_settings.php:1257 ../lib/html_reports.php:186 msgid "From Email Address" msgstr "" #: ../include/global_settings.php:1258 msgid "This is the Email address that the Email will appear from." msgstr "" #: ../include/global_settings.php:1263 ../lib/html_reports.php:178 #, fuzzy msgid "From Name" msgstr "フルãƒãƒ¼ãƒ " #: ../include/global_settings.php:1264 msgid "This is the actual name that the Email will appear from." msgstr "" #: ../include/global_settings.php:1269 msgid "Word Wrap" msgstr "" #: ../include/global_settings.php:1270 msgid "" "This is how many characters will be allowed before a line in the Email is " "automatically word wrapped. (0 = Disabled)" msgstr "" #: ../include/global_settings.php:1277 #, fuzzy msgid "Sendmail Options" msgstr "グラフオプション" #: ../include/global_settings.php:1282 ../lib/functions.php:3783 msgid "Sendmail Path" msgstr "" #: ../include/global_settings.php:1283 msgid "" "This is the path to sendmail on your server. (Only used if Sendmail is " "selected as the Mail Service)" msgstr "" #: ../include/global_settings.php:1289 #, fuzzy msgid "SMTP Options" msgstr "FTP オプション" #: ../include/global_settings.php:1294 #, fuzzy msgid "SMTP Hostname" msgstr "ホストå" #: ../include/global_settings.php:1295 msgid "" "This is the hostname/IP of the SMTP Server you will send the Email to. For " "failover, separate your hosts using a semi-colon." msgstr "" #: ../include/global_settings.php:1301 #, fuzzy msgid "SMTP Port" msgstr "SNMP ãƒãƒ¼ãƒˆ" #: ../include/global_settings.php:1302 msgid "The port on the SMTP Server to use." msgstr "" #: ../include/global_settings.php:1309 #, fuzzy msgid "SMTP Username" msgstr "ユーザーå" #: ../include/global_settings.php:1310 msgid "" "The username to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: ../include/global_settings.php:1315 #, fuzzy msgid "SMTP Password" msgstr "FTP パスワード" #: ../include/global_settings.php:1316 msgid "" "The password to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: ../include/global_settings.php:1321 msgid "SMTP Security" msgstr "" #: ../include/global_settings.php:1322 msgid "The encryption method to use for the Email." msgstr "" #: ../include/global_settings.php:1328 #, fuzzy msgid "SMTP Timeout" msgstr "SNMP タイムアウト" #: ../include/global_settings.php:1329 msgid "Please enter the SMTP timeout in seconds." msgstr "" #: ../include/global_settings.php:1336 msgid "Reporting Presets" msgstr "" #: ../include/global_settings.php:1341 #, fuzzy msgid "Default Graph Image Format" msgstr "デフォルトã®ã‚°ãƒ©ãƒ•ツリー" #: ../include/global_settings.php:1342 msgid "" "When creating a new report, what image type should be used for the inline " "graphs." msgstr "" #: ../include/global_settings.php:1348 #, fuzzy msgid "Maximum E-Mail Size" msgstr "最大ログサイズ" #: ../include/global_settings.php:1349 msgid "The maximum size of the E-Mail message including all attachements." msgstr "" #: ../include/global_settings.php:1355 msgid "Poller Logging Level for Cacti Reporting" msgstr "" #: ../include/global_settings.php:1356 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: ../include/global_settings.php:1362 msgid "Enable Lotus Notes (R) tweak" msgstr "" #: ../include/global_settings.php:1363 msgid "Enable code tweak for specific handling of Lotus Notes Mail Clients." msgstr "" #: ../include/global_settings.php:1368 #, fuzzy msgid "DNS Options" msgstr "FTP オプション" #: ../include/global_settings.php:1373 msgid "Primary DNS IP Address" msgstr "" #: ../include/global_settings.php:1374 msgid "Enter the primary DNS IP Address to utilize for reverse lookups." msgstr "" #: ../include/global_settings.php:1380 msgid "Secondary DNS IP Address" msgstr "" #: ../include/global_settings.php:1381 msgid "Enter the secondary DNS IP Address to utilize for reverse lookups." msgstr "" #: ../include/global_settings.php:1387 #, fuzzy msgid "DNS Timeout" msgstr "SNMP タイムアウト" #: ../include/global_settings.php:1388 msgid "" "Please enter the DNS timeout in milliseconds. Cacti uses a PHP based DNS " "resolver." msgstr "" #: ../include/global_settings.php:1397 #, fuzzy msgid "Data Sources Statistics" msgstr "データソースã®ãƒ‘ス" #: ../include/global_settings.php:1402 msgid "Enable Data Source Statistics Collection" msgstr "" #: ../include/global_settings.php:1403 msgid "Should Data Source Statistics be collected for this Cacti system?" msgstr "" #: ../include/global_settings.php:1408 msgid "Daily Update Frequency" msgstr "" #: ../include/global_settings.php:1409 msgid "How frequent should Daily Stats be updated?" msgstr "" #: ../include/global_settings.php:1415 msgid "Hourly Average Window" msgstr "" #: ../include/global_settings.php:1416 msgid "" "The number of consecutive hours that represent the hourly\n" "\t\t\taverage. Keep in mind that a setting too high can result in very " "large memory tables" msgstr "" #: ../include/global_settings.php:1423 msgid "Maintenance Time" msgstr "" #: ../include/global_settings.php:1424 msgid "" "What time of day should Weekly, Monthly, and Yearly Data be updated? Format " "is HH:MM [am/pm]" msgstr "" #: ../include/global_settings.php:1431 msgid "Memory Limit for Data Source Statistics Data Collector" msgstr "" #: ../include/global_settings.php:1432 msgid "" "The maximum amount of memory for the Cacti Poller and Data Source Statistics " "Poller" msgstr "" #: ../include/global_settings.php:1438 #, fuzzy msgid "Debugging" msgstr "ログイン" #: ../include/global_settings.php:1443 msgid "Enable Single RRDtool Pipe" msgstr "" #: ../include/global_settings.php:1444 msgid "" "Using a single pipe will speed the RRDtool process by 10x. However, RRDtool " "crashes\n" "\t\t\tproblems can occur. Disable this setting if you need to find a bad " "RRDfile." msgstr "" #: ../include/global_settings.php:1450 msgid "Enable Partial Reference Data Retrieve" msgstr "" #: ../include/global_settings.php:1451 msgid "" "If using a large system, it may be beneficial for you to only gather data as " "needed\n" "\t\t\tduring Cacti poller passes. If you check this box, Data Source " "Statistics will gather data this way." msgstr "" #: ../include/global_settings.php:1459 msgid "On-demand RRD Update Settings" msgstr "" #: ../include/global_settings.php:1464 msgid "Enable On-demand RRD Updating" msgstr "" #: ../include/global_settings.php:1465 msgid "" "Should Boost enable on demand RRD updating in Cacti? If you disable, this " "change will not take effect until after the next polling cycle." msgstr "" #: ../include/global_settings.php:1470 msgid "System Level RRD Updater" msgstr "" #: ../include/global_settings.php:1471 msgid "" "Before RRD On-demand Update Can be Cleared, a poller run must always pass" msgstr "" #: ../include/global_settings.php:1476 msgid "How Often Should Boost Update All RRDs" msgstr "" #: ../include/global_settings.php:1477 msgid "" "When you enable boost, your RRD files are only updated when they are " "requested by a user, or when this time period elapses." msgstr "" #: ../include/global_settings.php:1484 #, fuzzy msgid "Maximum Records" msgstr "最大値" #: ../include/global_settings.php:1485 msgid "" "If the boost output table exceeds this size, in records, an update will take " "place." msgstr "" #: ../include/global_settings.php:1492 #, fuzzy msgid "Maximum Data Source Items Per Pass" msgstr "データソース項目" #: ../include/global_settings.php:1493 msgid "" "To optimize performance, the boost RRD updater needs to know how many Data " "Source Items\n" "\t\t\tshould be retrieved in one pass. Please be careful not to set too " "high as graphing performance during\n" "\t\t\tmajor updates can be compromised. If you encounter graphing or " "polling slowness during updates, lower this\n" "\t\t\tnumber. The default value is 50000." msgstr "" #: ../include/global_settings.php:1502 #, fuzzy msgid "Maximum Argument Length" msgstr "é …ç›®ã®æœ€å¤§é•·" #: ../include/global_settings.php:1503 msgid "" "When boost sends update commands to RRDtool, it must not exceed the " "operating systems\n" "\t\t\tMaximum Argument Length. This varies by operating system and kernel " "level. For example:\n" "\t\t\tWindows 2000 <= 2048, FreeBSD <= 65535, Linux 2.6.22-- <= 131072, " "Linux 2.6.23++ unlimited" msgstr "" #: ../include/global_settings.php:1512 msgid "Memory Limit for Boost and Poller" msgstr "" #: ../include/global_settings.php:1513 msgid "The maximum amount of memory for the Cacti Poller and Boosts Poller" msgstr "" #: ../include/global_settings.php:1519 msgid "Maximum RRD Update Script Run Time" msgstr "" #: ../include/global_settings.php:1520 msgid "" "The maximum boot poller run time allowed prior to boost issuing warning\n" "\t\t\tmessages relative to possible hardware/software issues preventing " "proper updates." msgstr "" #: ../include/global_settings.php:1527 msgid "Enable direct population of poller_output_boost table" msgstr "" #: ../include/global_settings.php:1528 msgid "" "Enables direct insert of records into poller output boost with results in a " "25% time reduction in each poll cycle." msgstr "" #: ../include/global_settings.php:1533 ../utilities.php:2139 msgid "Image Caching" msgstr "" #: ../include/global_settings.php:1538 msgid "Enable Image Caching" msgstr "" #: ../include/global_settings.php:1539 msgid "Should image caching be enabled?" msgstr "" #: ../include/global_settings.php:1544 msgid "Location for Image Files" msgstr "" #: ../include/global_settings.php:1545 msgid "" "Specify the location where Boost should place your image files. These files " "will be automatically purged by the poller when they expire." msgstr "" #: ../include/global_settings.php:1551 msgid "Process Interlocking" msgstr "" #: ../include/global_settings.php:1556 msgid "Boost Debug Log" msgstr "" #: ../include/global_settings.php:1557 msgid "" "If this field is non-blank, Boost will log RRDupdate output from the boost" "\tpoller process." msgstr "" #: ../include/global_settings.php:1571 msgid "" "Choose if RRDs will be stored locally or being handled by an external " "RRDtool proxy server." msgstr "" #: ../include/global_settings.php:1574 ../include/global_settings.php:1582 msgid "RRDtool Proxy Server" msgstr "" #: ../include/global_settings.php:1577 msgid "Structured RRD Path (/host_id/local_data_id.rrd)" msgstr "" #: ../include/global_settings.php:1578 msgid "Use a separate subfolder for each hosts RRD files." msgstr "" #: ../include/global_settings.php:1587 ../include/global_settings.php:1619 #, fuzzy msgid "Proxy Server" msgstr "サーãƒãƒ¼" #: ../include/global_settings.php:1588 msgid "The DNS hostname or IP address of the RRDtool proxy server." msgstr "" #: ../include/global_settings.php:1593 ../include/global_settings.php:1625 msgid "Proxy Port Number" msgstr "" #: ../include/global_settings.php:1594 msgid "TCP port for encrypted communication." msgstr "" #: ../include/global_settings.php:1601 ../include/global_settings.php:1633 #: ../utilities.php:248 msgid "RSA Fingerprint" msgstr "" #: ../include/global_settings.php:1602 msgid "" "The fingerprint of the current public RSA key the proxy is using. This is " "required to establish a trusted connection." msgstr "" #: ../include/global_settings.php:1609 msgid "RRDtool Proxy Server - Backup" msgstr "" #: ../include/global_settings.php:1614 msgid "Load Balancing" msgstr "" #: ../include/global_settings.php:1615 msgid "" "If both main and backup proxy are receivable this option allows to spread " "all requests against RRDtool." msgstr "" #: ../include/global_settings.php:1620 msgid "" "The DNS hostname or IP address of the RRDtool backup proxy server if proxy " "is running in MSR mode." msgstr "" #: ../include/global_settings.php:1626 msgid "TCP port for encrypted communication with the backup proxy." msgstr "" #: ../include/global_settings.php:1634 msgid "" "The fingerprint of the current public RSA key the backup proxy is using. " "This required to establish a trusted connection." msgstr "" #: ../include/global_settings.php:1643 #, fuzzy msgid "Spike Kill Settings" msgstr "グラフ設定" #: ../include/global_settings.php:1648 #, fuzzy msgid "Removal Method" msgstr "å†ç´¢å¼•方法" #: ../include/global_settings.php:1649 msgid "" "There are two removal methods. The first, Standard Deviation, will remove " "any\n" "\t\t\tsample that is X number of standard deviations away from the average " "of samples. The second method,\n" "\t\t\tVariance, will remove any sample that is X% more than the Variance " "average. The Variance method takes\n" "\t\t\tinto account a certain number of 'outliers'. Those are exceptional " "samples, like the spike, that need\n" "\t\t\tto be excluded from the Variance Average calculation." msgstr "" #: ../include/global_settings.php:1656 msgid "Standard Deviation" msgstr "" #: ../include/global_settings.php:1656 msgid "Variance Based w/Outliers Removed" msgstr "" #: ../include/global_settings.php:1659 ../lib/html.php:1719 #, fuzzy msgid "Replacement Method" msgstr "å†ç´¢å¼•方法" #: ../include/global_settings.php:1660 msgid "" "There are three replacement methods. The first method replaces the spike " "with the\n" "\t\t\tthe average of the data source in question. The second method " "replaces the spike with a 'NaN'.\n" "\t\t\tThe last replaces the spike with the last known good value found." msgstr "" #: ../include/global_settings.php:1665 ../lib/html.php:1720 #, fuzzy msgid "Average" msgstr "å¹³å‡ (ミリ秒)" #: ../include/global_settings.php:1665 ../lib/html.php:1722 msgid "Last Known Good" msgstr "" #: ../include/global_settings.php:1665 msgid "NaN's" msgstr "" #: ../include/global_settings.php:1668 msgid "Number of Standard Deviations" msgstr "" #: ../include/global_settings.php:1669 msgid "" "Any value that is this many standard deviations above the average will be " "excluded.\n" "\t\t\tA good number will be dependent on the type of data to be operated " "on. We recommend a number no lower\n" "\t\t\tthan 5 Standard Deviations." msgstr "" #: ../include/global_settings.php:1675 ../include/global_settings.php:1676 #: ../include/global_settings.php:1677 ../include/global_settings.php:1678 #: ../include/global_settings.php:1679 ../include/global_settings.php:1680 #: ../include/global_settings.php:1681 ../include/global_settings.php:1682 #: ../include/global_settings.php:1683 ../include/global_settings.php:1684 #, php-format msgid "%d Standard Deviations" msgstr "" #: ../include/global_settings.php:1688 ../lib/html.php:1731 msgid "Variance Percentage" msgstr "" #: ../include/global_settings.php:1689 #, php-format msgid "" "This value represents the percentage above the adjusted sample average once " "outliers\n" "\t\t\thave been removed from the sample. For example, a Variance Percentage " "of 100% on an adjusted average of 50\n" "\t\t\twould remove any sample above the quantity of 100 from the graph." msgstr "" #: ../include/global_settings.php:1710 msgid "Variance Number of Outliers" msgstr "" #: ../include/global_settings.php:1711 msgid "" "This value represents the number of high and low average samples will be " "removed from the\n" "\t\t\tsample set prior to calculating the Variance Average. If you choose " "an outlier value of 5, then both the top\n" "\t\t\tand bottom 5 averages are removed." msgstr "" #: ../include/global_settings.php:1717 ../include/global_settings.php:1718 #: ../include/global_settings.php:1719 ../include/global_settings.php:1720 #: ../include/global_settings.php:1721 ../include/global_settings.php:1722 #: ../include/global_settings.php:1723 ../include/global_settings.php:1724 #, php-format msgid "%d High/Low Samples" msgstr "" #: ../include/global_settings.php:1728 msgid "Max Kills Per RRA" msgstr "" #: ../include/global_settings.php:1729 msgid "" "This value represents the maximum number of spikes to remove from a Graph " "RRA." msgstr "" #: ../include/global_settings.php:1733 ../include/global_settings.php:1734 #: ../include/global_settings.php:1735 ../include/global_settings.php:1736 #: ../include/global_settings.php:1737 ../include/global_settings.php:1738 #: ../include/global_settings.php:1739 ../include/global_settings.php:1740 #, php-format msgid "%d Samples" msgstr "" #: ../include/global_settings.php:1744 msgid "RRDfile Backup Directory" msgstr "" #: ../include/global_settings.php:1745 msgid "" "If this directory is not empty, then your original RRDfiles will be backed\n" "\t\t\tup to this location." msgstr "" #: ../include/global_settings.php:1753 #, fuzzy msgid "Batch Spike Kill Settings" msgstr "Cacti 設定" #: ../include/global_settings.php:1758 msgid "Removal Schedule" msgstr "" #: ../include/global_settings.php:1759 msgid "" "Do you wish to periodically remove spikes from your graphs? If so, select " "the frequency\n" "\t\t\tbelow." msgstr "" #: ../include/global_settings.php:1767 msgid "Once a Day" msgstr "" #: ../include/global_settings.php:1768 msgid "Every Other Day" msgstr "" #: ../include/global_settings.php:1772 msgid "Base Time" msgstr "" #: ../include/global_settings.php:1773 msgid "" "The Base Time for Spike removal to occur. For example, if you use '12:00am' " "and you choose\n" "\t\t\tonce per day, the batch removal would begin at approximately midnight " "every day." msgstr "" #: ../include/global_settings.php:1781 #, fuzzy msgid "Graph Templates to Spike Kill" msgstr "グラフテンプレートã®é …ç›®" #: ../include/global_settings.php:1783 msgid "" "When performing batch spike removal, only the templates selected below will " "be acted on." msgstr "" #: ../include/global_settings.php:1799 msgid "Default View Mode" msgstr "デフォルト表示モード" #: ../include/global_settings.php:1800 msgid "" "Which Graph mode you want displayed by default when you first visit the " "Graphs page?" msgstr "" #: ../include/global_settings.php:1806 #, fuzzy msgid "User Language" msgstr "ユーザー管ç†" #: ../include/global_settings.php:1807 msgid "Defines the preferred GUI language." msgstr "" #: ../include/global_settings.php:1813 #, fuzzy msgid "Show Graph Title" msgstr "グラフã®é¡Œå" #: ../include/global_settings.php:1814 msgid "" "Display the graph title on the page so that it may be searched using the " "browser." msgstr "" #: ../include/global_settings.php:1820 #, fuzzy msgid "The date format to use in Cacti." msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントファイル" #: ../include/global_settings.php:1827 #, fuzzy msgid "The date separator to be used in Cacti." msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントファイル" #: ../include/global_settings.php:1833 msgid "Page Refresh" msgstr "" #: ../include/global_settings.php:1834 msgid "The number of seconds between automatic page refreshes." msgstr "" #: ../include/global_settings.php:1840 #, fuzzy msgid "Preview Graphs Per Page" msgstr "ページ毎ã®è¡Œæ•°" #: ../include/global_settings.php:1841 ../include/global_settings.php:1956 #, fuzzy msgid "The number of graphs to display on one page in preview mode." msgstr "データソース一覧ã®å˜ä¸€ãƒšãƒ¼ã‚¸ã§è¡¨ç¤ºã™ã‚‹è¡Œæ•°ã§ã™ã€‚" #: ../include/global_settings.php:1849 #, fuzzy msgid "Default Time Range" msgstr "デフォルト表示モード" #: ../include/global_settings.php:1850 msgid "The default RRA to use in rare occasions." msgstr "" #: ../include/global_settings.php:1856 #, fuzzy msgid "Default Graph View Timespan" msgstr "デフォルトã®ã‚°ãƒ©ãƒ•ツリー" #: ../include/global_settings.php:1857 msgid "The default timespan you wish to be displayed when you display graphs" msgstr "" #: ../include/global_settings.php:1863 #, fuzzy msgid "Default Graph View Timeshift" msgstr "デフォルトã®ã‚°ãƒ©ãƒ•ツリー" #: ../include/global_settings.php:1864 msgid "The default timeshift you wish to be displayed when you display graphs" msgstr "" #: ../include/global_settings.php:1870 #, fuzzy msgid "Allow Graph to extend to Future" msgstr "グラフã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã‚’許å¯ã™ã‚‹" #: ../include/global_settings.php:1871 msgid "When displaying Graphs, allow Graph Dates to extend 'to future'" msgstr "" #: ../include/global_settings.php:1876 msgid "First Day of the Week" msgstr "" #: ../include/global_settings.php:1877 msgid "The first Day of the Week for weekly Graph Displays" msgstr "" #: ../include/global_settings.php:1883 msgid "Start of Daily Shift" msgstr "" #: ../include/global_settings.php:1884 msgid "Start Time of the Daily Shift." msgstr "" #: ../include/global_settings.php:1891 msgid "End of Daily Shift" msgstr "" #: ../include/global_settings.php:1892 msgid "End Time of the Daily Shift." msgstr "" #: ../include/global_settings.php:1901 msgid "Thumbnail Sections" msgstr "サムãƒã‚¤ãƒ«ã‚»ã‚¯ã‚·ãƒ§ãƒ³" #: ../include/global_settings.php:1902 msgid "Which portions of Cacti display Thumbnails by default." msgstr "" #: ../include/global_settings.php:1906 ../lib/functions.php:1880 msgid "Preview Mode" msgstr "プレビューモード" #: ../include/global_settings.php:1916 #, fuzzy msgid "Preview Thumbnail Columns" msgstr "サムãƒã‚¤ãƒ«ã®åˆ—æ•°" #: ../include/global_settings.php:1917 msgid "" "The number of columns to use when displaying Thumbnail graphs in Preview " "mode." msgstr "" #: ../include/global_settings.php:1920 ../include/global_settings.php:1927 #: ../lib/html_graph.php:231 ../lib/html_graph.php:232 #: ../lib/html_graph.php:233 ../lib/html_graph.php:234 #: ../lib/html_graph.php:235 ../lib/html_tree.php:677 ../lib/html_tree.php:678 #: ../lib/html_tree.php:679 ../lib/html_tree.php:680 ../lib/html_tree.php:681 #, php-format msgid "%d Columns" msgstr "" #: ../include/global_settings.php:1920 ../include/global_settings.php:1927 msgid "1 Column" msgstr "" #: ../include/global_settings.php:1923 #, fuzzy msgid "Tree View Thumbnail Columns" msgstr "サムãƒã‚¤ãƒ«ã®åˆ—æ•°" #: ../include/global_settings.php:1924 msgid "" "The number of columns to use when displaying Thumbnail graphs in Tree mode." msgstr "" #: ../include/global_settings.php:1930 msgid "Thumbnail Height" msgstr "サムãƒã‚¤ãƒ«ã®é«˜ã•" #: ../include/global_settings.php:1931 msgid "The height of Thumbnail graphs in pixels." msgstr "" #: ../include/global_settings.php:1938 msgid "Thumbnail Width" msgstr "サムãƒã‚¤ãƒ«ã®å¹…" #: ../include/global_settings.php:1939 msgid "The width of Thumbnail graphs in pixels." msgstr "" #: ../include/global_settings.php:1948 #, fuzzy msgid "Default Tree" msgstr "デフォルトã®ã‚°ãƒ©ãƒ•ツリー" #: ../include/global_settings.php:1949 msgid "The default graph tree to use when displaying graphs in tree mode." msgstr "" #: ../include/global_settings.php:1955 #, fuzzy msgid "Graphs Per Page" msgstr "ページ毎ã®è¡Œæ•°" #: ../include/global_settings.php:1962 #, fuzzy msgid "Expand Devices" msgstr "デãƒã‚¤ã‚¹" #: ../include/global_settings.php:1963 msgid "" "Choose whether to expand the Graph Templates and Data Queries used by a " "Device on Tree." msgstr "" #: ../include/global_settings.php:1970 msgid "Use Custom Fonts" msgstr "" #: ../include/global_settings.php:1971 msgid "" "Choose whether to use your own custom fonts and font sizes or utilize the " "system defaults." msgstr "" #: ../include/global_settings.php:1984 msgid "Title Font File" msgstr "題åã®ãƒ•ォントファイル" #: ../include/global_settings.php:1985 #, fuzzy msgid "The font file to use for Graph Titles" msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントファイル" #: ../include/global_settings.php:1997 msgid "Legend Font File" msgstr "凡例ã®ãƒ•ォントファイル" #: ../include/global_settings.php:1998 msgid "The font file to be used for Graph Legend items" msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントファイル" #: ../include/global_settings.php:2010 #, fuzzy msgid "Axis Font File" msgstr "å˜ä½ã®ãƒ•ォントファイル" #: ../include/global_settings.php:2011 #, fuzzy msgid "The font file to be used for Graph Axis items" msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントファイル" #: ../include/global_settings.php:2023 msgid "Unit Font File" msgstr "å˜ä½ã®ãƒ•ォントファイル" #: ../include/global_settings.php:2024 #, fuzzy msgid "The font file to be used for Graph Unit items" msgstr "グラフã®å‡¡ä¾‹é …ç›®ã§ä½¿ç”¨ã™ã‚‹ãƒ•ォントファイル" #: ../index.php:64 #, php-format msgid "" "You are now logged into
    Cacti. You can follow " "these basic steps to get started." msgstr "" #: ../index.php:67 #, php-format msgid "Create devices for network" msgstr "" #: ../index.php:68 #, php-format msgid "Create graphs for your new devices" msgstr "" #: ../index.php:69 #, php-format msgid "View your new graphs" msgstr "" #: ../index.php:78 msgid "Offline" msgstr "" #: ../index.php:78 msgid "Online" msgstr "" #: ../index.php:78 msgid "Recovery" msgstr "" #: ../index.php:78 msgid "Remote Data Collector Status:" msgstr "" #: ../index.php:80 msgid "Number of Offline Records:" msgstr "" #: ../index.php:85 msgid "" "NOTE: You are logged into a Remote Data Collector. When " "'online', you will be able to view and control much of the Main Cacti " "Web Site just as if you were logged into it. Also, it's important to note " "that Remote Data Collectors are required to use the Cacti's Performance " "Boosting Services 'On Demand Updating' feature, and we always " "recommend using Spine. When the Remote Data Collector is 'offline', " "the Remote Data Collectos Web Site will contain much less information. " "However, it will cache all updates until the Main Cacti Database and Web " "Server are reachable. Then it will dump it's Boost table output back to the " "Main Cacti Database for updating." msgstr "" #: ../index.php:90 msgid "" "NOTE: None of the Core Cacti Plugins, to date, have been re-" "designed to work with Remote Data Collectors. Therefore, Plugins such as " "MacTrack, and HMIB, which require direct access to devices will not work " "with Remote Data Collectors at this time. However, plugins such as Thold " "will work so long as the Remote Data Collector is in 'online' mode." msgstr "" #: ../install/index.php:51 ../install/index.php:56 ../install/index.php:61 #: ../install/index.php:302 ../lib/html_utility.php:820 msgid "Error" msgstr "エラー" #: ../install/index.php:53 #, php-format msgid "" "This installation is already up-to-date. Click here to " "use Cacti." msgstr "" #: ../install/index.php:58 #, php-format msgid "" "You are attempting to install Cacti %s onto a 0.6.x database. To continue, " "you must create a new database, import \"cacti.sql\" into it, and update " "\"include/config.php\" to point to the new database." msgstr "" #: ../install/index.php:63 #, php-format msgid "" "You have created a new database, but have not yet imported the 'cacti.sql' " "file. At the command line, execute the following to continue:

    mysql -u %s -p %s < cacti.sql

    This error may also be " "generated if the cacti database user does not have correct permissions on " "the Cacti database. Please ensure that the Cacti database user has the " "ability to SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, DROP, INDEX on the " "Cacti database." msgstr "" #: ../install/index.php:65 #, php-format msgid "" "In Cacti %s, you must also import MySQL TimeZone information into MySQL and " "grant the Cacti user SELECT access to the mysql.time_zone_name table" msgstr "" #: ../install/index.php:68 msgid "On Linux/UNIX, do the following:" msgstr "" #: ../install/index.php:68 msgid "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" msgstr "" #: ../install/index.php:70 msgid "" "On Windows, you must follow the instructions here Time zone description " "table. Once that is complete, you can issue the following command to " "grant the Cacti user access to the tables:" msgstr "" #: ../install/index.php:72 #, php-format msgid "" "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" msgstr "" #: ../install/index.php:304 #, php-format msgid "" "Invalid Cacti version %1$s, cannot upgrade to %2$s" msgstr "" #: ../install/index.php:410 msgid "Cacti Installation Wizard" msgstr "" #: ../install/index.php:418 msgid "License Agreement" msgstr "" #: ../install/index.php:420 msgid "" "Thanks for taking the time to download and install Cacti, the complete " "graphing solution for your network. Before you can start making cool graphs, " "there are a few pieces of data that Cacti needs to know." msgstr "" #: ../install/index.php:421 #, php-format msgid "" "Make sure you have read and followed the required steps needed to install " "Cacti before continuing. Install information can be found for Unix and Win32-based operating systems." msgstr "" #: ../install/index.php:422 #, php-format msgid "" "Also, if this is an upgrade, be sure to reading the Upgrade information file." msgstr "" #: ../install/index.php:423 msgid "" "Cacti is licensed under the GNU General Public License, you must agree to " "its provisions before continuing:" msgstr "" #: ../install/index.php:441 msgid "Pre-installation Checks" msgstr "" #: ../install/index.php:442 msgid "MySQL TimeZone Support" msgstr "" #: ../install/index.php:447 ../install/index.php:451 ../install/index.php:630 #: ../install/index.php:638 msgid "ERROR:" msgstr "" #: ../install/index.php:447 msgid "" "Your MySQL TimeZone database is not populated. Please populate this " "database before proceeding." msgstr "" #: ../install/index.php:451 msgid "" "Your Cacti database login account does not have access to the MySQL TimeZone " "database. Please provide the Cacti database account \"select\" access to " "the \"time_zone_name\" table in the \"mysql\" database, and populate MySQL's " "TimeZone information before proceeding." msgstr "" #: ../install/index.php:456 msgid "" "Your Cacti database account has access to the MySQL TimeZone database and " "that database is populated with global TimeZone information." msgstr "" #: ../install/index.php:459 msgid "Required PHP Module Support" msgstr "" #: ../install/index.php:461 msgid "" "Cacti requires several PHP Modules to be installed to work properly. If any " "of these are not installed, you will be unable to continue the installation " "until corrected. In addition, for optimal system performance Cacti should be " "run with certain MySQL system variables set. Please follow the MySQL " "recommendations at your discretion. Always seek the MySQL documentation if " "you have any questions." msgstr "" #: ../install/index.php:463 msgid "" "The following PHP extensions are mandatory, and MUST be installed before " "continuing your Cacti install." msgstr "" #: ../install/index.php:465 #, fuzzy msgid "Required PHP Modules" msgstr "è¦æ±‚ã™ã‚‹ãƒ„ールã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../install/index.php:466 ../install/index.php:543 ../plugins.php:41 #: ../plugins.php:288 ../utilities.php:415 msgid "Installed" msgstr "" #: ../install/index.php:466 msgid "Required" msgstr "" #: ../install/index.php:468 ../utilities.php:387 #, fuzzy msgid "PHP Version" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../install/index.php:533 msgid "Optional PHP Module Support" msgstr "" #: ../install/index.php:535 msgid "" "The following PHP extensions are recommended, and should be installed before " "continuing your Cacti install." msgstr "" #: ../install/index.php:542 msgid "Optional Modules" msgstr "" #: ../install/index.php:543 #, fuzzy msgid "Optional" msgstr "FTP オプション" #: ../install/index.php:553 msgid "" "These MySQL performance tuning settings will help your Cacti system perform " "better without issues for a longer time." msgstr "" #: ../install/index.php:555 msgid "Recommended MySQL System Variable Settings" msgstr "" #: ../install/index.php:560 msgid "Installation Type" msgstr "" #: ../install/index.php:565 #, php-format msgid "Upgrade from %s to %s" msgstr "" #: ../install/index.php:566 msgid "" "WARNING - If you are upgrading from a previous version please close all " "Cacti browser sessions and clear cache before continuing" msgstr "" #: ../install/index.php:569 msgid "Please select the type of installation" msgstr "" #: ../install/index.php:571 #, fuzzy msgid "Installation options:" msgstr "ログイン設定" #: ../install/index.php:574 #, fuzzy msgid "Choose this for the Primary site." msgstr "ã“ã®ãƒ˜ãƒƒãƒ€ãƒ¼/グラフã®è¦ªã‚’é¸æŠžã—ã¾ã™ã€‚" #: ../install/index.php:574 ../install/index.php:580 msgid "New Primary Server" msgstr "" #: ../install/index.php:575 ../install/index.php:581 msgid "New Remote Poller" msgstr "" #: ../install/index.php:575 msgid "" "Remote Pollers are used to access networks that are not readily accessible " "to the Primary site." msgstr "" #: ../install/index.php:585 msgid "" "The following information has been determined from Cacti's configuration " "file. If it is not correct, please edit \"include/config.php\" before " "continuing." msgstr "" #: ../install/index.php:589 msgid "Local Cacti database connection information" msgstr "" #: ../install/index.php:591 ../install/index.php:620 #, php-format msgid "Database: %s" msgstr "" #: ../install/index.php:592 ../install/index.php:621 #, php-format msgid "Database User: %s" msgstr "" #: ../install/index.php:593 ../install/index.php:622 #, php-format msgid "Database Hostname: %s" msgstr "" #: ../install/index.php:594 ../install/index.php:623 #, php-format msgid "Port: %s" msgstr "" #: ../install/index.php:595 ../install/index.php:624 #, php-format msgid "Server Operating System Type: %s" msgstr "" #: ../install/index.php:618 ../install/index.php:627 msgid "Remote Poller Cacti database connection information" msgstr "" #: ../install/index.php:630 msgid "" "Your config.php file must be writable by\n" "\t\t\t\t\t\t\t\t\t\tthe web server during install in order to configure the " "Remote poller. Once\n" "\t\t\t\t\t\t\t\t\t\tinstallation is complete, you must set this file to Read " "Only to prevent\n" "\t\t\t\t\t\t\t\t\t\tpossible security issues." msgstr "" #: ../install/index.php:638 msgid "" "Your Remote Cacti Poller information has not\n" "\t\t\t\t\t\t\t\t\t\tbeen included in your config.php file. Please review " "the config.php.dist, and\n" "\t\t\t\t\t\t\t\t\t\tset the variables: $rdatabase_default, " "$rdatabase_username, etc.\n" "\t\t\t\t\t\t\t\t\t\tThese variables must be set and point back to your " "Primary Cacti database server.\n" "\t\t\t\t\t\t\t\t\t\tCorrect this and try again." msgstr "" #: ../install/index.php:644 msgid "The variables that must be set include the following:" msgstr "" #: ../install/index.php:655 msgid "You must also set the $poller_id variable in the config.php." msgstr "" #: ../install/index.php:657 msgid "" "Once you have the variables set in the config.php file, you must also\n" "\t\t\t\t\t\t\t\t\t\tgrant the $rdatabase_username access to the Cacti " "database. Follow the same procedure you would with\n" "\t\t\t\t\t\t\t\t\t\tany other Cacti install. You may then press the 'Test " "Connection' button. If the test is\n" "\t\t\t\t\t\t\t\t\t\tsuccessful you will be able to proceed and complete the " "install." msgstr "" #: ../install/index.php:682 ../install/index.php:698 ../lib/html.php:342 msgid "Next" msgstr "次ã«" #: ../install/index.php:707 msgid "Upgrade" msgstr "" #: ../install/index.php:720 msgid "Remote Database: " msgstr "" #: ../install/index.php:731 msgid "Critical Binary Locations and Versions" msgstr "" #: ../install/index.php:733 msgid "Make sure all of these values are correct before continuing." msgstr "" #: ../install/index.php:791 #, fuzzy msgid "Directory Permission Checks" msgstr "ツリー権é™" #: ../install/index.php:793 msgid "" "Please ensure the directory permissions below are correct before " "proceeding. During the install, these directories need to be owned by the " "Web Server user. These permission changes are required to allow the " "Installer to install Device Template packages which include XML and script " "files that will be placed in these directories. If you choose not to " "install the packages, there is an 'install_package.php' cli script that can " "be used from the command line after the install is complete." msgstr "" #: ../install/index.php:796 msgid "" "After the install is complete, you can make some of these directories read " "only to increase security." msgstr "" #: ../install/index.php:798 msgid "" "These directories will be required to stay read writable after the install " "so that the Cacti remote synchronization process can update them as the Main " "Cacti Web Site changes" msgstr "" #: ../install/index.php:829 msgid "Required Writable at Install Time Only" msgstr "" #: ../install/index.php:832 ../install/index.php:842 ../install/index.php:852 #, fuzzy msgid "Writable" msgstr "無効" #: ../install/index.php:834 ../install/index.php:844 ../install/index.php:854 msgid "Not Writable" msgstr "" #: ../install/index.php:839 ../install/index.php:849 msgid "Required Writable after Install Complete" msgstr "" #: ../install/index.php:862 #, php-format msgid "" "Make sure your webserver has read and write access to the entire folder " "structure.
    Example: chown -R apache.apache %s/resource/" msgstr "" #: ../install/index.php:863 msgid "" "For SELINUX-users make sure that you have the correct permissions or set " "'setenforce 0' temporarily." msgstr "" #: ../install/index.php:865 #, fuzzy msgid "Check Permissions" msgstr "ツリー権é™" #: ../install/index.php:867 msgid "All folders are writable" msgstr "" #: ../install/index.php:873 msgid "" "If you are installing packages, once the packages are installed, you should " "change the scripts directory back to read only as this presents some " "exposure to the web site." msgstr "" #: ../install/index.php:873 ../install/index.php:879 ../install/index.php:915 msgid "NOTE:" msgstr "" #: ../install/index.php:879 msgid "" "For remote pollers, it is critical that\n" "\t\t\t\t\t\t\t\tthe paths that you will be updating frequently, including " "the plugins, scripts,\n" "\t\t\t\t\t\t\t\tand resources paths have read/write access as the data " "collector will have to\n" "\t\t\t\t\t\t\t\tupdate these paths from the main web server content." msgstr "" #: ../install/index.php:889 #, fuzzy msgid "Template Setup" msgstr "テンプレートå" #: ../install/index.php:891 msgid "" "Please select the Device Templates that you wish to use after the Install. " "If you Operating System is Windows, you need to ensure that you select the " "'Windows Device' Template. If your Operating System is Linux/UNIX, make " "sure you select the 'Local Linux Machine' Device Template." msgstr "" #: ../install/index.php:893 msgid "" "Device Templates allow you to monitor and graph a vast assortment of data " "within Cacti. After you select the desired Device Templates, press 'Finish' " "and the installation will complete. Please be patient on this step, as the " "importation of the Device Templates can take a few minutes." msgstr "" #: ../install/index.php:899 ../plugins.php:378 msgid "Author" msgstr "" #: ../install/index.php:899 msgid "Homepage" msgstr "" #: ../install/index.php:917 msgid "" "Press 'Finish' to complete the installation process after selecting your " "Device Templates." msgstr "" #: ../install/index.php:921 #, fuzzy msgid "Upgrade Results" msgstr "エクスãƒãƒ¼ãƒˆçµæžœ" #: ../install/index.php:928 msgid "[Fail]" msgstr "" #: ../install/index.php:929 msgid "[Success]" msgstr "" #: ../install/index.php:930 msgid "[Skipped]" msgstr "" #: ../install/index.php:934 msgid "Database upgrade completed!" msgstr "" #: ../install/index.php:955 msgid "" "One or more of the SQL queries needed to upgraded your Cacti installation " "has failed. Please see below for more details. Your Cacti MySQL user must " "have SELECT, INSERT, UPDATE, DELETE, ALTER, CREATE, and DROP permissions. You should try executing the failed queries as \"root\" " "to ensure that you do not have a permissions problem." msgstr "" #: ../install/index.php:955 ../utilities.php:2010 ../utilities.php:2011 #: ../utilities.php:2014 ../utilities.php:2015 msgid "WARNING:" msgstr "" #: ../install/index.php:960 msgid "No database action needed." msgstr "" #: ../install/index.php:965 msgid "Important Upgrade Notice" msgstr "" #: ../install/index.php:966 msgid "" "Before you continue with the installation, you must update " "your /etc/crontab file to point to poller.php instead of " "cmd.php." msgstr "" #: ../install/index.php:967 msgid "" "See the sample crontab entry below with the change made in red. Your crontab " "line will look slightly different based upon your setup." msgstr "" #: ../install/index.php:969 msgid "Once you have made this change, please click Finish to continue." msgstr "" #: ../install/index.php:976 #, fuzzy msgctxt "Dialog: previous" msgid "Previous" msgstr "å‰ã«" #: ../install/index.php:977 msgctxt "Dialog: complete" msgid "Finish" msgstr "" #: ../install/index.php:977 #, fuzzy msgctxt "Dialog: go to the next page" msgid "Next" msgstr "次ã«" #: ../install/index.php:978 msgctxt "Dialog: test connection" msgid "Test Connection" msgstr "" #: ../install/index.php:978 msgid "Test remote database connection" msgstr "" #: ../lib/aggregate.php:42 msgid "Display Graphs from this Aggregate" msgstr "" #: ../lib/api_aggregate.php:1101 msgid "" "The Graphs chosen for the Aggregate Graph below represent Graphs from " "multiple Graph Templates. Aggregate does not support creating Aggregate " "Graphs from multiple Graph Templates." msgstr "" #: ../lib/api_aggregate.php:1102 ../lib/api_aggregate.php:1121 msgid "Press 'Return' to return and select different Graphs" msgstr "" #: ../lib/api_aggregate.php:1120 msgid "" "The Graphs chosen for the Aggregate Graph do not use Graph Templates. " "Aggregate does not support creating Aggregate Graphs from non-templated " "graphs." msgstr "" #: ../lib/api_aggregate.php:1210 ../lib/functions.php:1932 msgid "Graph Items" msgstr "グラフ項目" #: ../lib/api_aggregate.php:1210 ../lib/functions.php:2064 msgid "Graph Template Items" msgstr "グラフテンプレートã®é …ç›®" #: ../lib/api_aggregate.php:1214 ../lib/html.php:855 #, fuzzy msgid "Graph Item" msgstr "グラフ項目" #: ../lib/api_aggregate.php:1217 ../lib/html.php:858 #, fuzzy msgid "CF Type" msgstr "é …ç›®ã®ç¨®é¡ž" #: ../lib/api_aggregate.php:1218 ../lib/html.php:860 #, fuzzy msgid "Item Color" msgstr "色" #: ../lib/api_aggregate.php:1219 #, fuzzy msgid "Color Template" msgstr "ユーザーテンプレート" #: ../lib/api_aggregate.php:1220 msgid "Skip" msgstr "" #: ../lib/api_automation.php:124 #, fuzzy msgid "Matching Devices" msgstr "デãƒã‚¤ã‚¹" #: ../lib/api_automation.php:139 ../lib/api_automation.php:994 #: ../lib/html_reports.php:268 ../lib/html_reports.php:1211 #: ../lib/html_reports.php:1481 ../lib/html_reports.php:1492 #: ../lib/rrd.php:2653 ../utilities.php:301 ../utilities.php:2338 #, fuzzy msgid "Type" msgstr "Ping ã®ç¨®é¡ž" #: ../lib/api_automation.php:299 msgid "No Matching Devices" msgstr "" #: ../lib/api_automation.php:408 ../lib/api_automation.php:674 #: ../lib/api_automation.php:799 msgid "Matching Objects" msgstr "" #: ../lib/api_automation.php:562 #, fuzzy msgid "Graph ID" msgstr "グラフ" #: ../lib/api_automation.php:689 msgid "Objects" msgstr "" #: ../lib/api_automation.php:760 msgid "" "A blue font color indicates that the rule will be applied to the objects in " "question. Other objects will not be subject to the rule." msgstr "" #: ../lib/api_automation.php:760 #, php-format msgid "Matching Objects [ %s ]" msgstr "" #: ../lib/api_automation.php:810 #, fuzzy msgid "Device Status" msgstr "デãƒã‚¤ã‚¹" #: ../lib/api_automation.php:832 msgid "There are no Objects that match this rule." msgstr "" #: ../lib/api_automation.php:876 #, fuzzy msgid "Error in data query" msgstr "ã“ã®å•ã„åˆã‚ã›ã®åå‰ã§ã™ã€‚" #: ../lib/api_automation.php:980 #, fuzzy msgid "Matching Items" msgstr "グラフ項目" #: ../lib/api_automation.php:1142 msgid "Resulting Branch" msgstr "" #: ../lib/api_automation.php:1181 #, fuzzy msgid "No Items Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../lib/api_automation.php:1209 ../lib/api_automation.php:1271 #, fuzzy msgid "Field" msgstr "é …ç›®ã®ç¨®é¡ž" #: ../lib/api_automation.php:1211 ../lib/api_automation.php:1273 msgid "Pattern" msgstr "" #: ../lib/api_automation.php:1254 msgid "No Device Selection Criteria" msgstr "" #: ../lib/api_automation.php:1316 msgid "No Graph Creation Criteria" msgstr "" #: ../lib/api_automation.php:1335 msgid "Propagate Change" msgstr "" #: ../lib/api_automation.php:1336 #, fuzzy msgid "Search Pattern" msgstr "検索フィルター" #: ../lib/api_automation.php:1337 msgid "Replace Pattern" msgstr "" #: ../lib/api_automation.php:1381 msgid "No Tree Creation Criteria" msgstr "" #: ../lib/api_automation.php:1941 #, php-format msgid "Rule Item [edit rule item for %s: %s]" msgstr "" #: ../lib/api_automation.php:1943 #, php-format msgid "Rule Item [new rule item for %s: %s]" msgstr "" #: ../lib/api_automation.php:2634 #, fuzzy msgid "Added by Cacti Automation" msgstr "Cacti ã«ã¤ã„ã¦" #: ../lib/api_device.php:398 #, fuzzy msgid "Device is Disabled" msgstr "無効" #: ../lib/api_device.php:399 msgid "Device Availability Check Bypassed" msgstr "" #: ../lib/api_device.php:406 #, fuzzy msgid "SNMP Information" msgstr "PHP ã®æƒ…å ±" #: ../lib/api_device.php:410 msgid "SNMP not in use" msgstr "" #: ../lib/api_device.php:418 ../lib/api_device.php:422 #: ../lib/api_device.php:434 #, fuzzy msgid "SNMP error" msgstr "SNMP ãƒãƒ¼ãƒˆ" #: ../lib/api_device.php:441 msgid "System:" msgstr "" #: ../lib/api_device.php:447 msgid "Uptime:" msgstr "" #: ../lib/api_device.php:448 msgid "days" msgstr "" #: ../lib/api_device.php:448 msgid "hours" msgstr "" #: ../lib/api_device.php:448 msgid "minutes" msgstr "" #: ../lib/api_device.php:449 #, fuzzy msgid "Hostname:" msgstr "ホストå" #: ../lib/api_device.php:450 #, fuzzy msgid "Location:" msgstr "æ“作" #: ../lib/api_device.php:451 msgid "Contact:" msgstr "" #: ../lib/api_device.php:480 ../lib/functions.php:3814 #: ../lib/functions.php:3816 ../lib/functions.php:3820 #, fuzzy msgid "Ping Results" msgstr "エクスãƒãƒ¼ãƒˆçµæžœ" #: ../lib/api_device.php:485 msgid "No Ping or SNMP Availability Check in Use" msgstr "" #: ../lib/auth.php:312 msgid "Web Basic" msgstr "" #: ../lib/clog_webapi.php:124 msgid "" "Click 'Continue' to purge the Cacti log file.


    Note: If logging is " "set to Cacti and Syslog, the log information will remain in Syslog." msgstr "" #: ../lib/clog_webapi.php:130 msgid "Purge cacti.log" msgstr "" #: ../lib/clog_webapi.php:156 ../utilities.php:975 msgid "Log Filters" msgstr "" #: ../lib/clog_webapi.php:183 #, php-format msgid "Log [Total Lines: %d %s - Additional Filter in Affect]" msgstr "" #: ../lib/clog_webapi.php:185 #, php-format msgid "Log [Total Lines: %d %s - No Other Filter in Affect]" msgstr "" #: ../lib/clog_webapi.php:195 ../utilities.php:1084 ../utilities.php:1403 #: ../utilities.php:1611 ../utilities.php:1691 ../utilities.php:2332 #: ../utilities.php:2542 msgid "Entries" msgstr "" #: ../lib/clog_webapi.php:311 ../utilities.php:984 msgid "Tail Lines" msgstr "" #: ../lib/clog_webapi.php:327 ../utilities.php:996 msgid "Message Type" msgstr "" #: ../lib/clog_webapi.php:332 ../utilities.php:1001 #, fuzzy msgid "Stats" msgstr "状態" #: ../lib/clog_webapi.php:335 ../utilities.php:1004 msgid "Debug" msgstr "" #: ../lib/clog_webapi.php:336 ../utilities.php:1005 msgid "SQL Calls" msgstr "" #: ../lib/clog_webapi.php:367 ../utilities.php:1032 msgid "Display Order" msgstr "" #: ../lib/clog_webapi.php:371 ../utilities.php:1036 msgid "Newest First" msgstr "" #: ../lib/clog_webapi.php:372 ../utilities.php:1037 msgid "Oldest First" msgstr "" #: ../lib/functions.php:676 #, php-format msgid "Error %s is not readable" msgstr "" #: ../lib/functions.php:1818 ../lib/functions.php:1823 #, fuzzy msgid "Logged in as" msgstr "ログイン" #: ../lib/functions.php:1818 msgid "Login as Regular User" msgstr "" #: ../lib/functions.php:1818 msgid "guest" msgstr "" #: ../lib/functions.php:1825 msgid "Edit Profile" msgstr "" #: ../lib/functions.php:1827 msgid "Logout" msgstr "ログアウト" #: ../lib/functions.php:1844 ../lib/functions.php:1850 msgid "User Profile (Edit)" msgstr "" #: ../lib/functions.php:1862 ../lib/functions.php:1868 msgid "Tree Mode" msgstr "ツリーモード" #: ../lib/functions.php:1874 msgid "List Mode" msgstr "一覧モード" #: ../lib/functions.php:1896 ../lib/functions.php:1902 #: ../lib/functions.php:2756 ../lib/html.php:1299 ../lib/html.php:1371 #: ../links.php:344 ../user_admin.php:1653 ../user_group_admin.php:1374 msgid "Console" msgstr "コンソール" #: ../lib/functions.php:1914 ../lib/functions.php:1956 #: ../lib/functions.php:1974 ../lib/functions.php:2028 #: ../lib/functions.php:2040 ../lib/functions.php:2052 #: ../lib/functions.php:2088 ../lib/functions.php:2106 #: ../lib/functions.php:2124 ../lib/functions.php:2142 #: ../lib/functions.php:2160 ../lib/functions.php:2184 #: ../lib/functions.php:2220 ../lib/functions.php:2340 #: ../lib/functions.php:2364 ../lib/functions.php:2382 #: ../lib/functions.php:2400 ../lib/functions.php:2412 #: ../lib/functions.php:2514 ../lib/functions.php:2538 #: ../lib/functions.php:2556 ../lib/functions.php:2574 #: ../lib/functions.php:2592 ../lib/functions.php:2616 msgid "(Edit)" msgstr "(編集)" #: ../lib/functions.php:1938 msgid "Create New Graphs" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•を作æˆ" #: ../lib/functions.php:1944 #, fuzzy msgid "Create Graphs from Data Query" msgstr "ç¾åœ¨ã®ã‚°ãƒ©ãƒ•é …ç›®ã®ãƒ‡ãƒ¼ã‚¿ã‚½ãƒ¼ã‚¹" #: ../lib/functions.php:1962 ../lib/functions.php:1980 #: ../lib/functions.php:2076 ../lib/functions.php:2166 #: ../lib/functions.php:2190 ../lib/functions.php:2346 msgid "(Remove)" msgstr "(削除)" #: ../lib/functions.php:1998 ../lib/functions.php:2004 #: ../lib/functions.php:2010 ../lib/functions.php:2016 #: ../lib/functions.php:2280 msgid "View Cacti Log" msgstr "" #: ../lib/functions.php:2022 msgid "Graph Trees" msgstr "グラフツリー" #: ../lib/functions.php:2154 #, fuzzy msgid "Round Robin Archives" msgstr "RRA ã‚’æ›´æ–°ã™ã‚‹" #: ../lib/functions.php:2196 msgid "Data Input Fields" msgstr "データã®å…¥åŠ›é …ç›®" #: ../lib/functions.php:2202 ../lib/functions.php:2232 #, fuzzy msgid "(Remove Item)" msgstr "(削除)" #: ../lib/functions.php:2250 msgid "List unused Files" msgstr "" #: ../lib/functions.php:2262 ../lib/functions.php:2274 ../utilities.php:1780 #, fuzzy msgid "View Poller Cache" msgstr "SNMP キャッシュを閲覧ã™ã‚‹" #: ../lib/functions.php:2268 ../utilities.php:1784 #, fuzzy msgid "View Data Query Cache" msgstr "データ照会å" #: ../lib/functions.php:2286 ../utilities.php:1168 msgid "Clear Cacti Log" msgstr "" #: ../lib/functions.php:2292 ../utilities.php:1773 msgid "View User Log" msgstr "" #: ../lib/functions.php:2298 msgid "Clear User Log" msgstr "" #: ../lib/functions.php:2304 ../utilities.php:1764 msgid "Technical Support" msgstr "" #: ../lib/functions.php:2310 ../utilities.php:1877 #, fuzzy msgid "Boost Status" msgstr "状態" #: ../lib/functions.php:2316 #, fuzzy msgid "View SNMP Agent Cache" msgstr "SNMP キャッシュを閲覧ã™ã‚‹" #: ../lib/functions.php:2322 msgid "View SNMP Agent Notification Log" msgstr "" #: ../lib/functions.php:2352 #, fuzzy msgid "VDEF Items" msgstr "CDEF é …ç›®" #: ../lib/functions.php:2358 msgid "View SNMP Notification Receivers" msgstr "" #: ../lib/functions.php:2370 msgid "Cacti Settings" msgstr "Cacti 設定" #: ../lib/functions.php:2388 ../lib/functions.php:2418 #, fuzzy msgid "(Action)" msgstr "æ“作" #: ../lib/functions.php:2436 msgid "Export Results" msgstr "エクスãƒãƒ¼ãƒˆçµæžœ" #: ../lib/functions.php:2448 ../lib/functions.php:2478 ../lib/html.php:1320 #: ../lib/html.php:1322 ../lib/html.php:1396 msgid "Reporting" msgstr "" #: ../lib/functions.php:2454 ../lib/functions.php:2484 msgid "Report Add" msgstr "" #: ../lib/functions.php:2460 ../lib/functions.php:2490 #, fuzzy msgid "Report Delete" msgstr "削除" #: ../lib/functions.php:2466 ../lib/functions.php:2496 msgid "Report Edit" msgstr "" #: ../lib/functions.php:2472 ../lib/functions.php:2502 msgid "Report Edit Item" msgstr "" #: ../lib/functions.php:2526 #, fuzzy msgid "Color Template Items" msgstr "グラフテンプレートã®é …ç›®" #: ../lib/functions.php:2568 #, fuzzy msgid "Aggregate Items" msgstr "ツリー項目" #: ../lib/functions.php:2604 #, fuzzy msgid "Graph Rule Items" msgstr "グラフ項目" #: ../lib/functions.php:2628 #, fuzzy msgid "Tree Rule Items" msgstr "ツリー項目" #: ../lib/functions.php:2713 msgid "Leaf" msgstr "" #: ../lib/functions.php:2727 #, fuzzy msgid "Non Query Based" msgstr "データ照会å" #: ../lib/functions.php:3435 msgid "" "Mailer Error: No TO address set!!
    If using the Test Mail " "link, please set the Alert e-mail setting." msgstr "" #: ../lib/functions.php:3747 #, fuzzy, php-format msgid "Authentication failed: %s" msgstr "èªè¨¼æ–¹æ³•" #: ../lib/functions.php:3751 #, php-format msgid "HELO failed: %s" msgstr "" #: ../lib/functions.php:3754 #, fuzzy, php-format msgid "Connect failed: %s" msgstr "èªè¨¼æ–¹æ³•" #: ../lib/functions.php:3757 msgid "SMTP error: " msgstr "" #: ../lib/functions.php:3770 msgid "" "This is a test message generated from Cacti. This message was sent to test " "the configuration of your Mail Settings." msgstr "" #: ../lib/functions.php:3771 msgid "Your email settings are currently set as follows" msgstr "" #: ../lib/functions.php:3772 #, fuzzy msgid "Method" msgstr "エクスãƒãƒ¼ãƒˆæ–¹æ³•" #: ../lib/functions.php:3774 msgid "Checking Configuration...
    " msgstr "" #: ../lib/functions.php:3781 msgid "PHP's Mailer Class" msgstr "" #: ../lib/functions.php:3787 msgid "Method: SMTP" msgstr "" #: ../lib/functions.php:3802 msgid "Not Shown for Security Reasons" msgstr "" #: ../lib/functions.php:3803 msgid "Security" msgstr "" #: ../lib/functions.php:3811 msgid "Ping Results:" msgstr "" #: ../lib/functions.php:3820 msgid "Bypassed" msgstr "" #: ../lib/functions.php:3828 msgid "Creating Message Text..." msgstr "" #: ../lib/functions.php:3831 msgid "Sending Message..." msgstr "" #: ../lib/functions.php:3835 msgid "Cacti Test Message" msgstr "" #: ../lib/functions.php:3837 msgid "Success!" msgstr "" #: ../lib/functions.php:3840 msgid "Message Not Sent due to ping failure." msgstr "" #: ../lib/html.php:233 #, fuzzy msgid "Data Query:" msgstr "データå•åˆã›" #: ../lib/html.php:293 #, fuzzy msgid "CSV Export of Graph Data" msgstr "データをエクスãƒãƒ¼ãƒˆã™ã‚‹" #: ../lib/html.php:294 #, fuzzy msgid "Time Graph View" msgstr "グラフを表示ã™ã‚‹" #: ../lib/html.php:296 msgid "Click to view just this Graph in Real-time" msgstr "" #: ../lib/html.php:299 msgid "Kill Spikes in Graphs" msgstr "" #: ../lib/html.php:336 msgid "Previous" msgstr "å‰ã«" #: ../lib/html.php:339 #, php-format msgid "%d to %d of %s [ %s ]" msgstr "" #: ../lib/html.php:348 #, php-format msgid "All %d %s" msgstr "" #: ../lib/html.php:354 #, fuzzy, php-format msgid "No %s Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../lib/html.php:674 ../lib/html.php:761 #, fuzzy msgid "Select All Rows" msgstr "ã™ã¹ã¦é¸æŠž" #: ../lib/html.php:859 msgid "Alpha %" msgstr "" #: ../lib/html.php:900 #, fuzzy msgid "No Task" msgstr "ツリーãŒã‚りã¾ã›ã‚“" #: ../lib/html.php:1144 #, fuzzy msgid "Choose an action" msgstr "ログイン設定" #: ../lib/html.php:1154 msgid "Execute Action" msgstr "" #: ../lib/html.php:1329 ../lib/html.php:1331 ../lib/html.php:1407 #, fuzzy msgid "Cacti Log" msgstr "最終ログイン" #: ../lib/html.php:1721 msgid "Nan's" msgstr "" #: ../lib/html.php:1725 msgid "Standard Deviations" msgstr "" #: ../lib/html.php:1727 #, php-format msgid "%s Standard Deviations" msgstr "" #: ../lib/html.php:1737 msgid "Variance Outliers" msgstr "" #: ../lib/html.php:1739 #, php-format msgid "%d Outliers" msgstr "" #: ../lib/html.php:1743 msgid "Kills Per RRA" msgstr "" #: ../lib/html.php:1745 #, php-format msgid "%d Spikes" msgstr "" #: ../lib/html.php:1752 msgid "Remove StdDev" msgstr "" #: ../lib/html.php:1753 msgid "Remove Variance" msgstr "" #: ../lib/html.php:1754 msgid "Gap Fill Range" msgstr "" #: ../lib/html.php:1755 msgid "Float Range" msgstr "" #: ../lib/html.php:1756 msgid "Dry Run StdDev" msgstr "" #: ../lib/html.php:1757 msgid "Dry Run Variance" msgstr "" #: ../lib/html.php:1758 msgid "Dry Run Gap Fill Range" msgstr "" #: ../lib/html.php:1759 msgid "Dry Run Float Range" msgstr "" #: ../lib/html_filter.php:82 msgid "Apply filter to table" msgstr "" #: ../lib/html_filter.php:87 msgid "Reset filter to default values" msgstr "" #: ../lib/html_form.php:509 msgid "File Found" msgstr "" #: ../lib/html_form.php:511 msgid "Path is a Directory and not a File" msgstr "" #: ../lib/html_form.php:515 msgid "File is Not Found" msgstr "" #: ../lib/html_form.php:518 msgid "Enter a valid file path" msgstr "" #: ../lib/html_form.php:554 msgid "Directory Found" msgstr "" #: ../lib/html_form.php:556 msgid "Path is a File and not a Directory" msgstr "" #: ../lib/html_form.php:560 msgid "Directory is Not found" msgstr "" #: ../lib/html_form.php:563 msgid "Enter a valid directory path" msgstr "" #: ../lib/html_form.php:1056 msgid "NO FONT VERIFICATION POSSIBLE" msgstr "" #: ../lib/html_form_template.php:562 ../lib/html_form_template.php:577 #, php-format msgid "Data Query Data Sources must be created through %s" msgstr "" #: ../lib/html_graph.php:197 ../lib/html_tree.php:649 msgid "" "Save the current Graphs, Columns, Thumbnail, Preset, and Timeshift " "preferences to your profile" msgstr "" #: ../lib/html_graph.php:226 ../lib/html_tree.php:672 msgid "Columns" msgstr "" #: ../lib/html_graph.php:230 ../lib/html_tree.php:676 #, php-format msgid "%d Column" msgstr "" #: ../lib/html_graph.php:239 ../lib/html_reports.php:125 #: ../lib/html_tree.php:685 #, fuzzy msgid "Thumbnails" msgstr "グラフサムãƒã‚¤ãƒ«" #: ../lib/html_graph.php:261 ../lib/html_tree.php:707 #, fuzzy msgid "Custom" msgstr "カスタム文字列" #: ../lib/html_graph.php:282 ../lib/html_reports.php:1479 #: ../lib/html_reports.php:1490 ../lib/html_tree.php:728 msgid "From" msgstr "" #: ../lib/html_graph.php:288 ../lib/html_tree.php:734 msgid "Start Date Selector" msgstr "" #: ../lib/html_graph.php:291 ../lib/html_reports.php:1480 #: ../lib/html_reports.php:1491 ../lib/html_tree.php:737 msgid "To" msgstr "" #: ../lib/html_graph.php:297 ../lib/html_tree.php:743 msgid "End Date Selector" msgstr "" #: ../lib/html_graph.php:300 ../lib/html_tree.php:746 msgid "Shift Time Backward" msgstr "" #: ../lib/html_graph.php:303 ../lib/html_tree.php:749 msgid "Define Shifting Interval" msgstr "" #: ../lib/html_graph.php:316 ../lib/html_tree.php:762 msgid "Shift Time Forward" msgstr "" #: ../lib/html_graph.php:319 ../lib/html_tree.php:765 msgid "Refresh selected time span" msgstr "" #: ../lib/html_graph.php:322 ../lib/html_tree.php:768 msgid "Return to the default time span" msgstr "" #: ../lib/html_graph.php:339 msgid "Interval" msgstr "" #: ../lib/html_graph.php:351 ../lib/html_tree.php:797 msgid "Stop" msgstr "" #: ../lib/html_reports.php:35 ../lib/html_reports.php:1474 #, fuzzy msgid "Report Name" msgstr "ユーザーå" #: ../lib/html_reports.php:37 msgid "New Report" msgstr "" #: ../lib/html_reports.php:38 msgid "Give this Report a descriptive Name" msgstr "" #: ../lib/html_reports.php:43 #, fuzzy msgid "Enable Report" msgstr "有効" #: ../lib/html_reports.php:46 msgid "Check this box to enable this Report." msgstr "" #: ../lib/html_reports.php:51 #, fuzzy msgid "Output Formatting" msgstr "出力書å¼" #: ../lib/html_reports.php:56 msgid "Use Custom Format HTML" msgstr "" #: ../lib/html_reports.php:59 msgid "Check this box if you want to use custom html and CSS for the report." msgstr "" #: ../lib/html_reports.php:64 msgid "Format File to Use" msgstr "" #: ../lib/html_reports.php:67 msgid "" "Choose the custom html wrapper and CSS file to use. This file contains both " "html and CSS to wrap around your report.\n" "\t\tIf it contains more than simply CSS, you need to place a special " " tag inside of the file. This format tag will be replaced by the " "report content. These files are located in the 'formats' directory." msgstr "" #: ../lib/html_reports.php:73 #, fuzzy msgid "Default Text Font Size" msgstr "題åã®ãƒ•ォントサイズ" #: ../lib/html_reports.php:74 msgid "" "Defines the default font size for all text in the report including the " "Report Title." msgstr "" #: ../lib/html_reports.php:81 msgid "Default Object Alignment" msgstr "" #: ../lib/html_reports.php:82 msgid "Defines the default Alignment for Text and Graphs." msgstr "" #: ../lib/html_reports.php:89 #, fuzzy msgid "Graph Linked" msgstr "グラフã®é¡Œå" #: ../lib/html_reports.php:92 msgid "Should the Graphs be linked back to the Cacti site?" msgstr "" #: ../lib/html_reports.php:96 msgid "Graph Settings" msgstr "グラフ設定" #: ../lib/html_reports.php:101 #, fuzzy msgid "Graph Columns" msgstr "グラフオプション" #: ../lib/html_reports.php:105 msgid "The number of Graph columns." msgstr "" #: ../lib/html_reports.php:113 msgid "The Graph width in pixels." msgstr "" #: ../lib/html_reports.php:121 msgid "The Graph height in pixels." msgstr "" #: ../lib/html_reports.php:128 msgid "Should the Graphs be rendered as Thumbnails?" msgstr "" #: ../lib/html_reports.php:132 msgid "Email Frequency" msgstr "" #: ../lib/html_reports.php:137 msgid "Next Timestamp for Sending Mail Report" msgstr "" #: ../lib/html_reports.php:138 msgid "" "Start time for [first|next] mail to take place. All future mailing times " "will be based upon this start time. A good example would be 2:00am. The time " "must be in the future. If a fractional time is used, say 2:00am, it is " "assumed to be in the future." msgstr "" #: ../lib/html_reports.php:146 msgid "Report Interval" msgstr "" #: ../lib/html_reports.php:147 msgid "Defines a Report Frequency relative to the given Mailtime above." msgstr "" #: ../lib/html_reports.php:148 msgid "e.g. 'Week(s)' represents a weekly Reporting Interval." msgstr "" #: ../lib/html_reports.php:155 msgid "Interval Frequency" msgstr "" #: ../lib/html_reports.php:156 msgid "" "Based upon the Timespan of the Report Interval above, defines the Frequency " "within that Interval." msgstr "" #: ../lib/html_reports.php:157 msgid "" "e.g. If the Report Interval is 'Month(s)', then '2' indicates Every '2 " "Month(s) from the next Mailtime.' Lastly, if using the Month(s) Report " "Intervals, the 'Day of Week' and the 'Day of Month' are both calculated " "based upon the Mailtime you specify above." msgstr "" #: ../lib/html_reports.php:165 msgid "Email Sender/Receiver Details" msgstr "" #: ../lib/html_reports.php:170 msgid "Subject" msgstr "" #: ../lib/html_reports.php:172 #, fuzzy msgid "Cacti Report" msgstr "Cacti 設定" #: ../lib/html_reports.php:173 msgid "" "This value will be used as the default Email subject. The report name will " "be used if left blank." msgstr "" #: ../lib/html_reports.php:181 msgid "This Name will be used as the default E-mail Sender" msgstr "" #: ../lib/html_reports.php:189 msgid "This Address will be used as the E-mail Senders address" msgstr "" #: ../lib/html_reports.php:194 msgid "To Email Address(es)" msgstr "" #: ../lib/html_reports.php:200 msgid "Please separate multiple addresses by comma (,)" msgstr "" #: ../lib/html_reports.php:205 msgid "BCC Address(es)" msgstr "" #: ../lib/html_reports.php:211 msgid "Blind carbon copy. Please separate multiple addresses by comma (,)" msgstr "" #: ../lib/html_reports.php:216 msgid "Image attach type" msgstr "" #: ../lib/html_reports.php:219 msgid "Select one of the given Types for the Image Attachments" msgstr "" #: ../lib/html_reports.php:271 msgid "Item Type to be added." msgstr "" #: ../lib/html_reports.php:277 #, fuzzy msgid "Graph Tree" msgstr "グラフツリー" #: ../lib/html_reports.php:281 msgid "Select a Tree to use." msgstr "" #: ../lib/html_reports.php:287 #, fuzzy msgid "Graph Tree Branch" msgstr "グラフツリー" #: ../lib/html_reports.php:291 msgid "Select a Tree Branch to use." msgstr "" #: ../lib/html_reports.php:293 msgid "Branch:" msgstr "" #: ../lib/html_reports.php:299 ../lib/html_tree.php:593 #, fuzzy msgid "Device:" msgstr "デãƒã‚¤ã‚¹" #: ../lib/html_reports.php:309 msgid "Cascade to Branches" msgstr "" #: ../lib/html_reports.php:312 msgid "Should all children branch Graphs be rendered?" msgstr "" #: ../lib/html_reports.php:316 msgid "Graph Name Regular Expression" msgstr "" #: ../lib/html_reports.php:319 msgid "" "A Perl compatible regular expression (REGEXP) used to select graphs to " "include from the tree." msgstr "" #: ../lib/html_reports.php:329 #, fuzzy msgid "Select a Device Template to use." msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../lib/html_reports.php:338 msgid "Select a Device to specify a Graph" msgstr "" #: ../lib/html_reports.php:348 #, fuzzy msgid "Select a Graph Template for the host" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../lib/html_reports.php:358 msgid "The Graph to use for this report item." msgstr "" #: ../lib/html_reports.php:368 msgid "Graph End Time is always set to Cacti's schedule." msgstr "" #: ../lib/html_reports.php:369 msgid "Graph Start Time equals Graph End Time minus given timespan" msgstr "" #: ../lib/html_reports.php:374 ../lib/html_reports.php:1214 msgid "Alignment" msgstr "" #: ../lib/html_reports.php:377 msgid "Alignment of the Item" msgstr "" #: ../lib/html_reports.php:382 msgid "Fixed Text" msgstr "" #: ../lib/html_reports.php:385 msgid "Enter descriptive Text" msgstr "" #: ../lib/html_reports.php:390 ../lib/html_reports.php:1215 #, fuzzy msgid "Font Size" msgstr "å˜ä½ã®ãƒ•ォントサイズ" #: ../lib/html_reports.php:394 msgid "Font Size of the Item" msgstr "" #: ../lib/html_reports.php:457 msgid "Date/Time moved to the same time Tomorrow" msgstr "" #: ../lib/html_reports.php:640 msgid "You must select at least one Report." msgstr "" #: ../lib/html_reports.php:648 #, fuzzy msgid "Click 'Continue' to delete the following Report(s)." msgstr "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../lib/html_reports.php:655 msgid "Click 'Continue' to take ownership of the following Report(s)." msgstr "" #: ../lib/html_reports.php:662 msgid "" "Click 'Continue' to duplicate the following Report(s). You may optionally " "change the title for the new Reports" msgstr "" #: ../lib/html_reports.php:664 #, fuzzy msgid "Name Format:" msgstr "題åã®æ›¸å¼:" #: ../lib/html_reports.php:674 msgid "Click 'Continue' to enable the following Report(s)." msgstr "" #: ../lib/html_reports.php:676 msgid "" "Please be certain that those Report(s) have successfully been tested first!" msgstr "" #: ../lib/html_reports.php:682 msgid "Click 'Continue' to disable the following Reports." msgstr "" #: ../lib/html_reports.php:689 msgid "Click 'Continue' to send the following Report(s) now." msgstr "" #: ../lib/html_reports.php:735 #, php-format msgid "Unable to send Report '%d'. Please set destination e-mail addresses" msgstr "" #: ../lib/html_reports.php:740 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail subject" msgstr "" #: ../lib/html_reports.php:745 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail From Name" msgstr "" #: ../lib/html_reports.php:750 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail from address" msgstr "" #: ../lib/html_reports.php:806 #, fuzzy, php-format msgid "Report Item [edit Report: %s]" msgstr "グラフ項目" #: ../lib/html_reports.php:808 #, fuzzy, php-format msgid "Report Item [new Report: %s]" msgstr "ツリー項目" #: ../lib/html_reports.php:1059 ../user_admin.php:1937 #, fuzzy, php-format msgid "[edit: %s]" msgstr "[編集: " #: ../lib/html_reports.php:1060 msgid "Events" msgstr "" #: ../lib/html_reports.php:1062 ../lib/import.php:1803 ../user_admin.php:1939 msgid "[new]" msgstr "[æ–°è¦]" #: ../lib/html_reports.php:1094 msgid "Send Report" msgstr "" #: ../lib/html_reports.php:1172 msgid "Scheduled Events" msgstr "" #: ../lib/html_reports.php:1183 msgid "Report Preview" msgstr "" #: ../lib/html_reports.php:1212 msgid "Item Details" msgstr "" #: ../lib/html_reports.php:1213 msgid "Timespan" msgstr "" #: ../lib/html_reports.php:1252 msgid "(All Branches)" msgstr "" #: ../lib/html_reports.php:1254 #, fuzzy msgid "(Current Branch)" msgstr "ç¾åœ¨ (ミリ秒)" #: ../lib/html_reports.php:1297 msgid "No Report Items" msgstr "" #: ../lib/html_reports.php:1371 #, fuzzy msgid "Administrator Level" msgstr "ユーザー管ç†" #: ../lib/html_reports.php:1371 #, php-format msgid "Reports [%s]" msgstr "" #: ../lib/html_reports.php:1371 #, fuzzy msgid "User Level" msgstr "ユーザーå" #: ../lib/html_reports.php:1466 msgid "Reports" msgstr "" #: ../lib/html_reports.php:1475 ../tree.php:1562 msgid "Owner" msgstr "" #: ../lib/html_reports.php:1476 ../lib/html_reports.php:1487 msgid "Frequency" msgstr "" #: ../lib/html_reports.php:1477 ../lib/html_reports.php:1488 #, fuzzy msgid "Last Run" msgstr "最終ログイン" #: ../lib/html_reports.php:1478 ../lib/html_reports.php:1489 #, fuzzy msgid "Next Run" msgstr "次ã«" #: ../lib/html_reports.php:1486 #, fuzzy msgid "Report Title" msgstr "グラフã®é¡Œå" #: ../lib/html_reports.php:1517 msgid "Report Disabled - No Owner" msgstr "" #: ../lib/html_reports.php:1527 msgid "Multiple" msgstr "" #: ../lib/html_reports.php:1528 msgid "Invalid" msgstr "" #: ../lib/html_reports.php:1535 #, fuzzy msgid "No Reports Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../lib/html_tree.php:580 ../lib/html_tree.php:583 ../lib/html_tree.php:586 #, fuzzy msgid "Graph Template:" msgstr "グラフã®ãƒ†ãƒ³ãƒ—レート" #: ../lib/html_tree.php:591 ../lib/reports.php:886 #, fuzzy msgid "Tree:" msgstr "ツリーãŒã‚りã¾ã›ã‚“" #: ../lib/html_tree.php:592 ../lib/reports.php:891 msgid "Leaf:" msgstr "" #: ../lib/html_tree.php:596 msgid "Applied" msgstr "" #: ../lib/html_tree.php:596 #, fuzzy msgid "Filter" msgstr "検索フィルター" #: ../lib/html_tree.php:596 #, fuzzy msgid "Graph Filters" msgstr "グラフ項目" #: ../lib/html_tree.php:642 #, fuzzy msgid "Set/Refresh Filter" msgstr "検索フィルター" #: ../lib/html_utility.php:419 ../lib/html_utility.php:635 #, php-format msgid "The search term \"%s\" is not valid. Error is %s" msgstr "" #: ../lib/html_utility.php:766 msgid "There was an internal error!" msgstr "" #: ../lib/html_utility.php:767 msgid "Backtrack limit was exhausted!" msgstr "" #: ../lib/html_utility.php:768 msgid "Recursion limit was exhausted!" msgstr "" #: ../lib/html_utility.php:769 msgid "Bad UTF-8 error!" msgstr "" #: ../lib/html_utility.php:770 msgid "Bad UTF-8 offset error!" msgstr "" #: ../lib/import.php:229 msgid "written" msgstr "" #: ../lib/import.php:231 msgid "could not open" msgstr "" #: ../lib/import.php:237 msgid "not exists" msgstr "" #: ../lib/import.php:240 ../lib/import.php:244 msgid "not writable" msgstr "" #: ../lib/import.php:246 #, fuzzy msgid "writable" msgstr "無効" #: ../lib/import.php:1764 #, fuzzy msgid "Import Preview Results" msgstr "エクスãƒãƒ¼ãƒˆçµæžœ" #: ../lib/import.php:1764 #, fuzzy msgid "Import Results" msgstr "エクスãƒãƒ¼ãƒˆçµæžœ" #: ../lib/import.php:1768 msgid "Cacti would make the following changes if the Package was imported:" msgstr "" #: ../lib/import.php:1770 msgid "Cacti has imported the following items for the Package:" msgstr "" #: ../lib/import.php:1773 msgid "Package Files" msgstr "" #: ../lib/import.php:1777 #, fuzzy msgid "[preview] " msgstr "プレビューモード" #: ../lib/import.php:1782 msgid "Cacti would make the following changes if the Template was imported:" msgstr "" #: ../lib/import.php:1784 msgid "Cacti has imported the following items for the Template:" msgstr "" #: ../lib/import.php:1793 msgid "[success]" msgstr "" #: ../lib/import.php:1795 msgid "[fail]" msgstr "" #: ../lib/import.php:1797 msgid "[preview]" msgstr "" #: ../lib/import.php:1801 msgid "[updated]" msgstr "" #: ../lib/import.php:1805 msgid "[unchanged]" msgstr "" #: ../lib/import.php:1841 #, fuzzy msgid "Found Dependency:" msgstr "ä¾å­˜æ€§ã‚’å«ã‚€" #: ../lib/import.php:1843 #, fuzzy msgid "Unmet Dependency:" msgstr "ä¾å­˜æ€§ã‚’å«ã‚€" #: ../lib/ldap.php:197 ../lib/ldap.php:376 msgid "PHP LDAP not enabled" msgstr "" #: ../lib/ldap.php:204 ../lib/ldap.php:384 msgid "No username defined" msgstr "" #: ../lib/ldap.php:232 msgid "Protocol Error, Unable to set version" msgstr "" #: ../lib/ldap.php:243 ../lib/ldap.php:448 msgid "Unable to set referrals option" msgstr "" #: ../lib/ldap.php:255 ../lib/ldap.php:461 msgid "Protocol Error, unable to start TLS communications" msgstr "" #: ../lib/ldap.php:294 ../lib/ldap.php:313 #, fuzzy msgid "Authentication Success" msgstr "èªè¨¼æ–¹æ³•" #: ../lib/ldap.php:297 msgid "Insufficient access" msgstr "" #: ../lib/ldap.php:304 msgid "Group DN could not be found to compare" msgstr "" #: ../lib/ldap.php:321 ../lib/ldap.php:505 #, fuzzy msgid "Protocol Error" msgstr "プロトコルãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../lib/ldap.php:325 #, fuzzy msgid "Authentication Failure" msgstr "èªè¨¼æ–¹æ³•" #: ../lib/ldap.php:329 ../lib/ldap.php:515 #, fuzzy msgid "Insufficient Access" msgstr "コンソールアクセス" #: ../lib/ldap.php:333 ../lib/ldap.php:520 msgid "Unable to Connect to Server" msgstr "" #: ../lib/ldap.php:337 ../lib/ldap.php:525 msgid "Connection Timeout" msgstr "" #: ../lib/ldap.php:341 ../lib/ldap.php:530 msgid "General Bind Error, LDAP result:" msgstr "" #: ../lib/ldap.php:347 msgid "Unable to Create LDAP Object" msgstr "" #: ../lib/ldap.php:400 ../lib/ldap.php:479 msgid "User found" msgstr "" #: ../lib/ldap.php:407 msgid "Specific DN and Password required" msgstr "" #: ../lib/ldap.php:436 msgid "Protocol Error, unable to set version" msgstr "" #: ../lib/ldap.php:485 msgid "More than one matching user found" msgstr "" #: ../lib/ldap.php:490 ../lib/ldap.php:496 msgid "Unable to find users DN" msgstr "" #: ../lib/ldap.php:510 msgid "Invalid Credentials" msgstr "" #: ../lib/ldap.php:537 msgid "Unable to create LDAP connection object" msgstr "" #: ../lib/ping.php:130 #, fuzzy msgid "ICMP Ping timed out" msgstr "ICMP Ping" #: ../lib/ping.php:199 ../lib/ping.php:217 #, php-format msgid "ICMP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:204 ../lib/ping.php:222 #, fuzzy msgid "ICMP ping Timed out" msgstr "Ping ã®ã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆå€¤" #: ../lib/ping.php:229 ../lib/ping.php:431 ../lib/ping.php:536 msgid "Destination address not specified" msgstr "" #: ../lib/ping.php:326 ../lib/ping.php:446 #, fuzzy msgid "default" msgstr "DES (デフォルト)" #: ../lib/ping.php:356 #, fuzzy msgid "PHP version does not support IPv6" msgstr "XML: ãƒãƒƒã‚·ãƒ¥ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå­˜åœ¨ã—ã¾ã›ã‚“。" #: ../lib/ping.php:378 #, php-format msgid "UDP ping error: %s" msgstr "" #: ../lib/ping.php:412 #, php-format msgid "UDP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:476 msgid "PHP binary does not support IPv6" msgstr "" #: ../lib/ping.php:500 #, php-format msgid "TCP ping: socket_select() failed, reason: %s" msgstr "" #: ../lib/ping.php:515 #, php-format msgid "TCP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:525 #, fuzzy msgid "TCP ping timed out" msgstr "Ping ã®ã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆå€¤" #: ../lib/ping.php:552 msgid "Ping not performed due to setting." msgstr "" #: ../lib/plugins.php:479 #, php-format msgid "Plugin %s is required for %s, and it is not installed." msgstr "" #: ../lib/plugins.php:486 msgid "Plugin cannot be installed." msgstr "" #: ../lib/plugins.php:763 ../lib/plugins.php:770 ../plugins.php:267 #, fuzzy msgid "Plugin Management" msgstr "ユーザー管ç†" #: ../lib/reports.php:896 #, fuzzy msgid "Host:" msgstr "ホスト" #: ../lib/reports.php:901 #, fuzzy msgid "Graph:" msgstr "グラフ" #: ../lib/reports.php:1002 #, fuzzy msgid "(No Graph Template)" msgstr "グラフテンプレートãŒã‚りã¾ã›ã‚“" #: ../lib/reports.php:1421 msgid "Add to Report" msgstr "" #: ../lib/reports.php:1439 msgid "" "Choose the Report to associate these graphs with. The defaults for " "alignment will be used for each graph in the list below." msgstr "" #: ../lib/reports.php:1441 msgid "Report:" msgstr "" #: ../lib/reports.php:1448 #, fuzzy msgid "Graph Timespan:" msgstr "グラフã®é¡Œå" #: ../lib/reports.php:1451 #, fuzzy msgid "Graph Alignment:" msgstr "グラフ管ç†" #: ../lib/reports.php:1533 #, php-format msgid "Created Report Graph Item '%s'" msgstr "" #: ../lib/reports.php:1535 #, php-format msgid "Failed Adding Report Graph Item '%s' Already Exists" msgstr "" #: ../lib/reports.php:1538 #, php-format msgid "Skipped Report Graph Item '%s' Already Exists" msgstr "" #: ../lib/rrd.php:2414 #, php-format msgid "Required RRD step size is '%s'" msgstr "" #: ../lib/rrd.php:2452 #, php-format msgid "Type for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2457 #, php-format msgid "Heartbeat for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2465 #, php-format msgid "RRD minimum for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2489 #, php-format msgid "RRD maximum for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2499 #, php-format msgid "DS '%s' missing in RRDfile" msgstr "" #: ../lib/rrd.php:2508 #, php-format msgid "DS '%s' missing in Cacti definition" msgstr "" #: ../lib/rrd.php:2525 ../lib/rrd.php:2526 #, php-format msgid "Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: ../lib/rrd.php:2540 ../lib/rrd.php:2541 #, php-format msgid "File RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: ../lib/rrd.php:2572 #, php-format msgid "XFF for cacti RRA id '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2576 #, php-format msgid "Number of rows for Cacti RRA id '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2592 #, php-format msgid "RRA '%s' missing in RRDfile" msgstr "" #: ../lib/rrd.php:2601 #, php-format msgid "RRA '%s' missing in Cacti definition" msgstr "" #: ../lib/rrd.php:2620 #, fuzzy msgid "RRD File Information" msgstr "PHP ã®æƒ…å ±" #: ../lib/rrd.php:2652 #, fuzzy msgid "Data Source Items" msgstr "データソース項目" #: ../lib/rrd.php:2654 #, fuzzy msgid "Minimal Heartbeat" msgstr "ãƒãƒ¼ãƒˆãƒ“ート" #: ../lib/rrd.php:2655 msgid "Min" msgstr "" #: ../lib/rrd.php:2656 msgid "Max" msgstr "" #: ../lib/rrd.php:2657 msgid "Last DS" msgstr "" #: ../lib/rrd.php:2659 msgid "Unknown Sec" msgstr "" #: ../lib/rrd.php:2687 #, fuzzy msgid "Round Robin Archive" msgstr "RRA ã‚’æ›´æ–°ã™ã‚‹" #: ../lib/rrd.php:2690 msgid "Cur Row" msgstr "" #: ../lib/rrd.php:2691 msgid "PDP per Row" msgstr "" #: ../lib/rrd.php:2692 msgid "X Files Factor" msgstr "" #: ../lib/rrd.php:2693 msgid "CDP Prep Value (0)" msgstr "" #: ../lib/rrd.php:2694 msgid "CDP Unknown Data points (0)" msgstr "" #: ../lib/rrd.php:2771 #, php-format msgid "rename %s to %s" msgstr "" #: ../lib/rrd.php:2821 msgid "Error while parsing the XML of rrdtool dump" msgstr "" #: ../lib/rrd.php:2853 ../lib/rrd.php:2908 ../lib/rrd.php:2964 #, php-format msgid "ERROR while writing XML file: %s" msgstr "" #: ../lib/rrd.php:2862 #, php-format msgid "Added Data Source(s) to RRDfile: %s" msgstr "" #: ../lib/rrd.php:2864 ../lib/rrd.php:2919 #, php-format msgid "ERROR: RRDfile %s not writeable" msgstr "" #: ../lib/rrd.php:2891 ../lib/rrd.php:2947 msgid "Error while parsing the XML of RRDtool dump" msgstr "" #: ../lib/rrd.php:2917 #, php-format msgid "Deleted RRA(s) from RRDfile: %s" msgstr "" #: ../lib/rrd.php:2973 #, php-format msgid "Deleted rra(s) from rrd file: %s" msgstr "" #: ../lib/rrd.php:2975 #, php-format msgid "ERROR: RRD file %s not writeable" msgstr "" #: ../lib/rrd.php:3180 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) removed from RRD file\n" msgstr "" #: ../lib/rrd.php:3214 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) adding to RRD file\n" msgstr "" #: ../lib/utility.php:640 msgid "" "MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions " "to choose. Make sure you\n" "\t\t\t\trun the very latest release though which fixes a long standing low " "level networking\n" "\t\t\t\tissue that was casuing spine many issues with reliability." msgstr "" #: ../lib/utility.php:654 ../lib/utility.php:692 #, php-format msgid "" "It is recommended that you enable InnoDB in any %s version greater than 5.1." msgstr "" #: ../lib/utility.php:667 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8_general_ci collation type as some characters take more " "than a single byte. \n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes " "and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the " "internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting " "other languages." msgstr "" #: ../lib/utility.php:677 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8 character set as some characters take more than a single " "byte.\n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes " "and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the " "internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting " "other languages." msgstr "" #: ../lib/utility.php:705 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8mb4_unicode_ci collation type as some characters take more " "than a single byte." msgstr "" #: ../lib/utility.php:712 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8mb4 character set as some characters take more than a " "single byte." msgstr "" #: ../lib/utility.php:722 #, php-format msgid "" "Depending on the number of logins and use of spine data collector, \n" "\t\t\t\t%s will need many connections. The calculation for spine is:\n" "\t\t\t\ttotal_connections = total_processes * (total_threads + " "script_servers + 1), then you\n" "\t\t\t\tmust leave headroom for user connections, which will change " "depending on the number of\n" "\t\t\t\tconcurrent login accounts." msgstr "" #: ../lib/utility.php:731 #, php-format msgid "" "If using the Cacti Performance Booster and choosing a memory storage " "engine,\n" "\t\t\t\tyou have to be careful to flush your Performance Booster buffer " "before the system runs\n" "\t\t\t\tout of memory table space. This is done two ways, first reducing " "the size of your output\n" "\t\t\t\tcolumn to just the right size. This column is in the tables " "poller_output, \n" "\t\t\t\tand poller_output_boost. The second thing you can do is allocate " "more memory to memory\n" "\t\t\t\ttables. We have arbitrarily chosen a recommended value of 10% of " "system memory, but \n" "\t\t\t\tif you are using SSD disk drives, or have a smaller system, you may " "ignore this recommendation\n" "\t\t\t\tor choose a different storage engine. You may see the expected " "consumption of the \n" "\t\t\t\tPerformance Booster tables under Console -> System Utilities -> View " "Boost Status." msgstr "" #: ../lib/utility.php:744 msgid "" "Keeping the table cache larger means less file open/close operations when\n" "\t\t\t\tusing innodb_file_per_table." msgstr "" #: ../lib/utility.php:750 msgid "" "With Remote polling capabilities, large amounts of data \n" "\t\t\t\twill be synced from the main server to the remote pollers. \n" "\t\t\t\tTherefore, keep this value at or above 16M." msgstr "" #: ../lib/utility.php:757 msgid "" "When executing subqueries, having a larger temporary table size, \n" "\t\t\t\tkeep those temporary tables in memory." msgstr "" #: ../lib/utility.php:763 msgid "" "When performing joins, if they are below this size, they will \n" "\t\t\t\tbe kept in memory and never written to a temporary file." msgstr "" #: ../lib/utility.php:769 #, php-format msgid "" "When using InnoDB storage it is important to keep your table spaces\n" "\t\t\t\tseparate. This makes managing the tables simpler for long time " "users of %s.\n" "\t\t\t\tIf you are running with this currently off, you can migrate to the " "per file storage\n" "\t\t\t\tby enabling the feature, and then running an alter statement on all " "InnoDB tables." msgstr "" #: ../lib/utility.php:777 #, php-format msgid "" "InnoDB will hold as much tables and indexes in system memory as is " "possible.\n" "\t\t\t\tTherefore, you should make the innodb_buffer_pool large enough to " "hold as much\n" "\t\t\t\tof the tables and index in memory. Checking the size of the /var/" "lib/mysql/cacti\n" "\t\t\t\tdirectory will help in determining this value. We are recommending " "25% of your systems\n" "\t\t\t\ttotal memory, but your requirements will vary depending on your " "systems size." msgstr "" #: ../lib/utility.php:786 #, php-format msgid "" "With modern SSD type storage, this operation actually degrades the disk\n" "\t\t\t\tmore rapidly and adds a 50% overhead on all write operations." msgstr "" #: ../lib/utility.php:792 msgid "" "This is where metadata is stored. If you had a lot of tables, it would be " "useful to increase this." msgstr "" #: ../lib/utility.php:797 msgid "" "Rogue queries should not for the database to go offline to others. Kill " "these\n" "\t\t\t\tqueries before they kill your system." msgstr "" #: ../lib/utility.php:807 #, php-format msgid "" "Setting this value to 2 means that you will flush all transactions every\n" "\t\t\t\tsecond rather than at commit. This allows %s to perform writing " "less often." msgstr "" #: ../lib/utility.php:813 msgid "" "With modern SSD type storage, having multiple io threads is advantageous " "for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:822 #, php-format msgid "" "As of %s %s, the you can control how often %s flushes transactions to disk. " "The default is 1 second, but in high I/O systems setting to a value greater " "than 1 can allow disk I/O to be more sequential" msgstr "" #: ../lib/utility.php:827 msgid "" "With modern SSD type storage, having multiple read io threads is " "advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:833 msgid "" "With modern SSD type storage, having multiple write io threads is " "advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:839 #, php-format msgid "" "%s will divide the innodb_buffer_pool into memory regions to improve " "performance.\n" "\t\t\t\t\tThe max value is 64. When your innodb_buffer_pool is less than " "1GB, you should use the pool size\n" "\t\t\t\t\tdivided by 128MB. Continue to use this equation upto the max of " "64." msgstr "" #: ../lib/utility.php:846 #, php-format msgid "%s Tuning" msgstr "" #: ../lib/utility.php:846 msgid "Documentation" msgstr "" #: ../lib/utility.php:846 msgid "Note: Many changes below require a database restart" msgstr "" #: ../lib/vdef.php:75 #, fuzzy msgid "A useful name for this VDEF." msgstr "ã“ã® CDEF ã®åå‰ã§ã™ã€‚" #: ../links.php:191 msgid "Click 'Continue' to Enable the following Page(s)." msgstr "" #: ../links.php:196 #, fuzzy msgid "Enable Page(s)" msgstr "有効" #: ../links.php:200 msgid "Click 'Continue' to Disable the following Page(s)." msgstr "" #: ../links.php:205 #, fuzzy msgid "Disable Page(s)" msgstr "無効" #: ../links.php:209 msgid "Click 'Continue' to Delete the following Page(s)." msgstr "" #: ../links.php:214 #, fuzzy msgid "Delete Page(s)" msgstr "削除" #: ../links.php:217 msgid "You must select at least one page." msgstr "" #: ../links.php:315 msgid "Links" msgstr "" #: ../links.php:328 msgid "Apply Filter" msgstr "" #: ../links.php:331 msgid "Reset filters" msgstr "" #: ../links.php:345 ../links.php:508 ../user_admin.php:1654 #: ../user_group_admin.php:1375 msgid "Top Tab" msgstr "" #: ../links.php:346 ../user_admin.php:1655 ../user_group_admin.php:1376 #, fuzzy msgid "Bottom Console" msgstr "コンソール" #: ../links.php:347 ../user_admin.php:1656 ../user_group_admin.php:1377 #, fuzzy msgid "Top Console" msgstr "コンソール" #: ../links.php:378 msgid "Page" msgstr "" #: ../links.php:380 ../links.php:500 ../links.php:505 msgid "Style" msgstr "" #: ../links.php:392 msgid "Edit Page" msgstr "" #: ../links.php:395 #, fuzzy msgid "View Page" msgstr "SNMP キャッシュを閲覧ã™ã‚‹" #: ../links.php:419 #, fuzzy msgid "Sort for Ordering" msgstr "æ•°å­—é †" #: ../links.php:428 #, fuzzy msgid "No Pages Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../links.php:509 #, fuzzy msgid "Console Menu" msgstr "コンソール" #: ../links.php:510 msgid "Bottom of Console Page" msgstr "" #: ../links.php:511 msgid "Top of Console Page" msgstr "" #: ../links.php:513 msgid "Where should this page appear?" msgstr "" #: ../links.php:517 msgid "Console Menu Section" msgstr "" #: ../links.php:520 msgid "" "Under which Console heading should this item appear? (All External Link " "menus will appear between Configuration and Utilities)" msgstr "" #: ../links.php:524 msgid "New Console Section" msgstr "" #: ../links.php:527 msgid "If you don't like any of the choices above, type a new title in here." msgstr "" #: ../links.php:531 #, fuzzy msgid "Tab/Menu Name" msgstr "テンプレートå" #: ../links.php:534 msgid "The text that will appear in the tab or menu." msgstr "" #: ../links.php:538 #, fuzzy msgid "Content File/URL" msgstr "å˜ä½ã®ãƒ•ォントファイル" #: ../links.php:542 msgid "Web URL Below" msgstr "" #: ../links.php:543 msgid "" "The file that contains the content for this page. This file needs to be in " "the Cacti 'include/content/' directory." msgstr "" #: ../links.php:547 msgid "Web URL Location" msgstr "" #: ../links.php:549 msgid "" "The valid URL to use for this external link. Must include the type, for " "example http://www.cacti.net. Note that many websites do not allow them to " "be embedded in an iframe from a foreign site, and therefore External Linking " "may not work." msgstr "" #: ../links.php:567 #, php-format msgid "External Links [edit: %s]" msgstr "" #: ../links.php:569 msgid "External Links [new]" msgstr "" #: ../logout.php:70 ../logout.php:119 msgid "Automatic Logout" msgstr "" #: ../logout.php:72 ../logout.php:121 msgid "You have been logged out of Cacti due to a session timeout." msgstr "" #: ../logout.php:73 ../logout.php:122 #, php-format msgid "Please close your browser or %sLogin Again%s" msgstr "" #: ../managers.php:40 ../managers.php:226 #, fuzzy msgid "Notifications" msgstr "æ“作" #: ../managers.php:41 ../managers.php:227 msgid "Logs" msgstr "" #: ../managers.php:141 ../utilities.php:1821 msgid "SNMP Notification Receivers" msgstr "" #: ../managers.php:156 ../managers.php:231 ../managers.php:539 #: ../managers.php:793 msgid "Receivers" msgstr "" #: ../managers.php:223 msgid "Id" msgstr "" #: ../managers.php:257 msgid "No SNMP Notification Receivers" msgstr "" #: ../managers.php:288 #, php-format msgid "SNMP Notification Receiver [edit: %s]" msgstr "" #: ../managers.php:290 msgid "SNMP Notification Receiver [new]" msgstr "" #: ../managers.php:518 ../managers.php:607 ../utilities.php:2263 #: ../utilities.php:2338 msgid "MIB" msgstr "" #: ../managers.php:607 msgid "Kind" msgstr "" #: ../managers.php:607 ../utilities.php:2338 msgid "Max-Access" msgstr "" #: ../managers.php:607 msgid "Monitored" msgstr "" #: ../managers.php:607 ../utilities.php:1409 ../utilities.php:2338 msgid "OID" msgstr "" #: ../managers.php:634 msgid "No SNMP Notifications" msgstr "" #: ../managers.php:730 ../utilities.php:2516 msgid "Severity" msgstr "" #: ../managers.php:749 ../utilities.php:2559 msgid "Purge Notification Log" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Notification" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Time" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Varbinds" msgstr "" #: ../managers.php:803 msgid "Severity Level" msgstr "" #: ../managers.php:821 ../utilities.php:2635 msgid "No SNMP Notification Log Entries" msgstr "" #: ../managers.php:998 msgid "Click 'Continue' to delete the following Notification Receiver" msgid_plural "Click 'Continue' to delete following Notification Receiver" msgstr[0] "" #: ../managers.php:1000 msgid "Click 'Continue' to enable the following Notification Receiver" msgid_plural "Click 'Continue' to enable following Notification Receiver" msgstr[0] "" #: ../managers.php:1002 msgid "Click 'Continue' to disable the following Notification Receiver" msgid_plural "Click 'Continue' to disable following Notification Receiver" msgstr[0] "" #: ../managers.php:1059 msgid "" "Click 'Continue' to forward the following Notification Objects to this " "Notification Receiver." msgstr "" #: ../managers.php:1060 msgid "" "Click 'Continue' to disable forwarding the following Notification Objects to " "this Notification Receiver." msgstr "" #: ../managers.php:1069 msgid "Disable Notification Objects" msgstr "" #: ../managers.php:1071 msgid "You must select at least one notification object." msgstr "" #: ../plugins.php:28 msgid "Install" msgstr "" #: ../plugins.php:31 msgid "Uninstall" msgstr "" #: ../plugins.php:36 msgid "Not Compatible" msgstr "" #: ../plugins.php:37 ../plugins.php:291 ../utilities.php:417 msgid "Not Installed" msgstr "" #: ../plugins.php:39 msgid "Awaiting Configuration" msgstr "" #: ../plugins.php:40 msgid "Awaiting Upgrade" msgstr "" #: ../plugins.php:167 #, fuzzy msgid "Not Stated" msgstr "標準ãƒãƒ¼ãƒˆ" #: ../plugins.php:289 msgid "Active/Installed" msgstr "" #: ../plugins.php:290 msgid "Configuration Issues" msgstr "" #: ../plugins.php:295 ../plugins.php:365 msgid "Plugins" msgstr "" #: ../plugins.php:374 msgid "" "Actions available include 'Install', 'Activate', 'Disable', 'Enable', " "'Uninstall'." msgstr "" #: ../plugins.php:375 #, fuzzy msgid "Plugin Name" msgstr "フルãƒãƒ¼ãƒ " #: ../plugins.php:375 msgid "" "The name for this Plugin. The name is controlled by the directory it " "resides in." msgstr "" #: ../plugins.php:376 msgid "A description that the Plugins author has given to the Plugin." msgstr "" #: ../plugins.php:376 #, fuzzy msgid "Plugin Description" msgstr "説明" #: ../plugins.php:377 msgid "The status of this Plugin." msgstr "" #: ../plugins.php:378 msgid "The author of this Plugin." msgstr "" #: ../plugins.php:379 msgid "The version of this Plugin." msgstr "" #: ../plugins.php:380 msgid "Load Order" msgstr "" #: ../plugins.php:380 msgid "" "The load order of the Plugin. You can change the load order by first " "sorting by it, then moving a Plugin either up or down." msgstr "" #: ../plugins.php:406 #, fuzzy msgid "No Plugins Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../plugins.php:424 msgid "ERROR: Directory Missing" msgstr "" #: ../plugins.php:434 msgid "Order Before Previous Plugin" msgstr "" #: ../plugins.php:439 msgid "Order After Next Plugin" msgstr "" #: ../plugins.php:463 msgid "Install Plugin" msgstr "" #: ../plugins.php:467 ../plugins.php:471 ../plugins.php:474 msgid "Uninstall Plugin" msgstr "" #: ../plugins.php:468 #, fuzzy msgid "Disable Plugin" msgstr "無効" #: ../plugins.php:475 #, fuzzy msgid "Enable Plugin" msgstr "有効" #: ../plugins.php:478 msgid "Plugin is not compatible" msgstr "" #: ../pollers.php:32 msgid "Full Sync" msgstr "" #: ../pollers.php:36 msgid "New/Idle" msgstr "" #: ../pollers.php:39 msgid "Unknown/Down" msgstr "" #: ../pollers.php:48 msgid "Data Collector Information" msgstr "" #: ../pollers.php:53 #, fuzzy msgid "The primary name for this Data Collector." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../pollers.php:56 msgid "New Data Collector" msgstr "" #: ../pollers.php:61 #, fuzzy msgid "Web Site Hostname" msgstr "ホストå" #: ../pollers.php:62 msgid "" "The hostname for Data Collector. It may have to be a Fully Qualified Domain " "name for the remote Pollers to contact it for activities such as re-" "indexing, Real-time graphing, etc." msgstr "" #: ../pollers.php:71 msgid "Notes for this Data Collectors Database." msgstr "" #: ../pollers.php:78 msgid "Remote Database Connection" msgstr "" #: ../pollers.php:83 #, fuzzy msgid "The hostname for the remote database server." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../pollers.php:91 #, fuzzy msgid "Remote Database Name" msgstr "テンプレートå" #: ../pollers.php:92 #, fuzzy msgid "The name of the remote database." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../pollers.php:100 msgid "Remote Database User" msgstr "" #: ../pollers.php:101 msgid "The user name to use to connect to the remote database." msgstr "" #: ../pollers.php:109 msgid "Remote Database Password" msgstr "" #: ../pollers.php:110 msgid "The user password to use to connect to the remote database." msgstr "" #: ../pollers.php:118 msgid "Remote Database Port" msgstr "" #: ../pollers.php:119 msgid "The TCP port to use to connect to the remote database." msgstr "" #: ../pollers.php:127 msgid "Remote Database SSL" msgstr "" #: ../pollers.php:128 msgid "If the remote database uses SSL to connect, check the checkbox below." msgstr "" #: ../pollers.php:283 msgid "" "Click 'Continue' to delete the following Data Collector. Note, all devices " "will be disassociated from this Data Collector and mapped back to the Main " "Cacti Data Collector." msgid_plural "" "Click 'Continue' to delete all following Data Collectors. Note, all devices " "will be disassociated from these Data Collectors and mapped back to the Main " "Cacti Data Collector." msgstr[0] "" #: ../pollers.php:288 msgid "Delete Data Collector" msgid_plural "Delete Data Collectors" msgstr[0] "" #: ../pollers.php:292 msgid "Click 'Continue' to disable the following Data Collector." msgid_plural "Click 'Continue' to disable the following Data Collectors." msgstr[0] "" #: ../pollers.php:297 msgid "Disable Data Collector" msgid_plural "Disable Data Collectors" msgstr[0] "" #: ../pollers.php:301 msgid "Click 'Continue' to enable the following Data Collector." msgid_plural "Click 'Continue' to enable the following Data Collectors." msgstr[0] "" #: ../pollers.php:306 ../pollers.php:315 msgid "Enable Data Collector" msgid_plural "Enable Data Collectors" msgstr[0] "" #: ../pollers.php:310 msgid "" "Click 'Continue' to Synchronize the Remote Data Collector for Offline " "Operation." msgid_plural "" "Click 'Continue' to Synchronize the Remote Data Collectors for Offline " "Operation." msgstr[0] "" #: ../pollers.php:318 ../sites.php:283 msgid "You must select at least one Site." msgstr "" #: ../pollers.php:351 ../sites.php:316 #, fuzzy, php-format msgid "Site [edit: %s]" msgstr "[編集: " #: ../pollers.php:353 ../sites.php:318 #, fuzzy msgid "Site [new]" msgstr "[æ–°è¦]" #: ../pollers.php:379 msgid "" "Remote Data Collectors must be able to communicate to the Main Data " "Collector, and vice versa. Use this button to verify that the Main Data " "Collector can communicate to this Remote Data Collector." msgstr "" #: ../pollers.php:387 msgid "Test Connection" msgstr "" #: ../pollers.php:387 msgid "Test Database Connection" msgstr "" #: ../pollers.php:611 #, fuzzy msgid "Collector Name" msgstr "ユーザーå" #: ../pollers.php:611 #, fuzzy msgid "The Name of this Data Collector." msgstr "ã“ã®å•ã„åˆã‚ã›ã®åå‰ã§ã™ã€‚" #: ../pollers.php:612 msgid "The unique id associated with this Data Collector." msgstr "" #: ../pollers.php:613 msgid "The Hostname where the Data Collector is running." msgstr "" #: ../pollers.php:614 msgid "The Status of this Data Collector." msgstr "" #: ../pollers.php:615 #, fuzzy msgid "Polling Time" msgstr "Ping ã®ç¨®é¡ž" #: ../pollers.php:615 msgid "The last data collection time for this Data Collector." msgstr "" #: ../pollers.php:616 msgid "The number of Devices associated with this Data Collector." msgstr "" #: ../pollers.php:617 #, fuzzy msgid "SNMP Gets" msgstr "SNMP ãƒãƒ¼ãƒˆ" #: ../pollers.php:617 msgid "The number of SNMP gets associated with this Collector." msgstr "" #: ../pollers.php:618 #, fuzzy msgid "Scripts" msgstr "スクリプト" #: ../pollers.php:618 msgid "The number of script calls associated with this Data Collector." msgstr "" #: ../pollers.php:619 #, fuzzy msgid "Servers" msgstr "サーãƒãƒ¼" #: ../pollers.php:619 msgid "The number of script server calls associated with this Data Collector." msgstr "" #: ../pollers.php:620 #, fuzzy msgid "Last Finished" msgstr "最終ログイン" #: ../pollers.php:620 #, fuzzy msgid "The last time this Data Collector completed." msgstr "ã“ã®ãƒ‡ãƒ¼ã‚¿ãƒ†ãƒ³ãƒ—レートã«åå‰ã‚’与ãˆã¦ãã ã•ã„。" #: ../pollers.php:621 msgid "Last Update" msgstr "" #: ../pollers.php:621 msgid "The last time this Data Collector checked in with the main Cacti site." msgstr "" #: ../pollers.php:656 msgid "No Data Collectors Found" msgstr "" #: ../rrdcleaner.php:30 ../tree.php:31 #, fuzzy msgctxt "dropdown action" msgid "Delete" msgstr "削除" #: ../rrdcleaner.php:31 msgctxt "dropdown action" msgid "Archive" msgstr "" #: ../rrdcleaner.php:347 #, fuzzy msgid "RRD File Name" msgstr "フルãƒãƒ¼ãƒ " #: ../rrdcleaner.php:348 #, fuzzy msgid "DS Name" msgstr "åå‰" #: ../rrdcleaner.php:349 msgid "DS ID" msgstr "" #: ../rrdcleaner.php:350 #, fuzzy msgid "Template ID" msgstr "テンプレートå" #: ../rrdcleaner.php:352 #, fuzzy msgid "Last Modified" msgstr "一覧モード" #: ../rrdcleaner.php:353 #, fuzzy msgid "Size [KB]" msgstr "サイズ" #: ../rrdcleaner.php:364 ../rrdcleaner.php:365 #, fuzzy msgid "Deleted" msgstr "削除" #: ../rrdcleaner.php:373 msgid "No unused RRD Files" msgstr "" #: ../rrdcleaner.php:395 msgid "Total Size [MB]:" msgstr "" #: ../rrdcleaner.php:397 #, fuzzy msgid "Last Scan:" msgstr "最終ログイン" #: ../rrdcleaner.php:481 msgid "Time Since Update" msgstr "" #: ../rrdcleaner.php:497 msgid "RRDfiles" msgstr "" #: ../rrdcleaner.php:512 ../user_domains.php:642 ../user_group_admin.php:1827 #: ../user_group_admin.php:2182 ../user_group_admin.php:2288 #: ../user_group_admin.php:2375 ../user_group_admin.php:2462 #: ../user_group_admin.php:2549 msgctxt "filter: use" msgid "Go" msgstr "" #: ../rrdcleaner.php:515 ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 ../user_group_admin.php:2465 msgctxt "filter: reset" msgid "Clear" msgstr "" #: ../rrdcleaner.php:518 msgid "Rescan" msgstr "" #: ../rrdcleaner.php:521 #, fuzzy msgid "Delete All" msgstr "ã™ã¹ã¦é¸æŠž" #: ../rrdcleaner.php:521 msgid "Delete All Unknown RRDfiles" msgstr "" #: ../rrdcleaner.php:522 msgid "Archive All" msgstr "" #: ../rrdcleaner.php:522 msgid "Archive All Unknown RRDfiles" msgstr "" #: ../settings.php:138 #, fuzzy, php-format msgid "Cacti Settings (%s)" msgstr "Cacti 設定" #: ../settings.php:191 #, fuzzy msgid "Select Plugin(s)" msgstr "ã™ã¹ã¦é¸æŠž" #: ../settings.php:193 msgid "Plugins Selected" msgstr "" #: ../settings.php:208 #, fuzzy msgid "Select File(s)" msgstr "ã™ã¹ã¦é¸æŠž" #: ../settings.php:210 msgid "Files Selected" msgstr "" #: ../settings.php:225 #, fuzzy msgid "Select Template(s)" msgstr "é¸æŠžæ¸ˆã‚°ãƒ©ãƒ•ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆ" #: ../settings.php:230 msgid "All Templates Selected" msgstr "" #: ../settings.php:281 msgid "Poller Interval must be less than Cron Interval" msgstr "" #: ../settings.php:303 msgid "Test Email Results" msgstr "" #: ../sites.php:35 #, fuzzy msgid "Site Information" msgstr "PHP ã®æƒ…å ±" #: ../sites.php:41 #, fuzzy msgid "The primary name for the Site." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../sites.php:44 msgid "New Site" msgstr "" #: ../sites.php:49 msgid "Address1" msgstr "" #: ../sites.php:50 msgid "The primary address for the Site." msgstr "" #: ../sites.php:52 msgid "Enter the Site Address" msgstr "" #: ../sites.php:58 msgid "Address2" msgstr "" #: ../sites.php:59 msgid "Additional address information for the Site." msgstr "" #: ../sites.php:61 msgid "Additional Site Address information" msgstr "" #: ../sites.php:67 ../sites.php:484 msgid "City" msgstr "" #: ../sites.php:68 msgid "The city or locality for the Site." msgstr "" #: ../sites.php:70 msgid "Enter the City or Locality" msgstr "" #: ../sites.php:76 ../sites.php:485 #, fuzzy msgid "State" msgstr "状態" #: ../sites.php:77 #, fuzzy msgid "The state for the Site." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../sites.php:79 msgid "Enter the state" msgstr "" #: ../sites.php:85 msgid "Postal/Zip Code" msgstr "" #: ../sites.php:86 msgid "The postal or zip code for the Site." msgstr "" #: ../sites.php:88 msgid "Enter the postal code" msgstr "" #: ../sites.php:94 ../sites.php:486 msgid "Country" msgstr "" #: ../sites.php:95 msgid "The country for the Site." msgstr "" #: ../sites.php:97 msgid "Enter the country" msgstr "" #: ../sites.php:103 msgid "TimeZone" msgstr "" #: ../sites.php:104 #, fuzzy msgid "The TimeZone for the Site." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../sites.php:110 msgid "Latitude" msgstr "" #: ../sites.php:111 #, fuzzy msgid "The Latitude for this Site." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../sites.php:113 msgid "example 38.889488" msgstr "" #: ../sites.php:119 msgid "Longitude" msgstr "" #: ../sites.php:120 #, fuzzy msgid "The Longitude for this Site." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../sites.php:122 msgid "example -77.0374678" msgstr "" #: ../sites.php:128 msgid "Site Notes" msgstr "" #: ../sites.php:131 msgid "Additional area use for random notes related to this Site." msgstr "" #: ../sites.php:134 msgid "Enter some useful information about the Site." msgstr "" #: ../sites.php:139 #, fuzzy msgid "Alternate Name" msgstr "テンプレートå" #: ../sites.php:140 msgid "Used for cases where a Site has an alternate named used to describe it" msgstr "" #: ../sites.php:142 msgid "If the Site is known by another name enter it here." msgstr "" #: ../sites.php:275 msgid "" "Click 'Continue' to delete the following Site. Note, all devices will be " "disassociated from this site." msgid_plural "" "Click 'Continue' to delete all following Sites. Note, all devices will be " "disassociated from this site." msgstr[0] "" #: ../sites.php:280 #, fuzzy msgid "Delete Site" msgid_plural "Delete Sites" msgstr[0] "削除" #: ../sites.php:481 #, fuzzy msgid "Site Name" msgstr "ユーザーå" #: ../sites.php:481 #, fuzzy msgid "The name of this Site." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../sites.php:482 msgid "The unique id associated with this Site." msgstr "" #: ../sites.php:483 msgid "The number of Devices associated with this Site." msgstr "" #: ../sites.php:484 msgid "The City associated with this Site." msgstr "" #: ../sites.php:485 msgid "The State associated with this Site." msgstr "" #: ../sites.php:486 msgid "The Country associated with this Site." msgstr "" #: ../sites.php:504 #, fuzzy msgid "No Sites Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../spikekill.php:37 #, php-format msgid "FATAL: Spike Kill method '%s' is Invalid\n" msgstr "" #: ../spikekill.php:81 msgid "FATAL: Spike Kill Not Allowed\n" msgstr "" #: ../templates_export.php:68 msgid "WARNING: Export Errors Encountered. Refresh Browser Window for Details!" msgstr "" #: ../templates_export.php:101 msgid "What would you like to export?" msgstr "" #: ../templates_export.php:130 #, php-format msgid "Available Templates [%s]" msgstr "" #: ../templates_export.php:134 #, php-format msgid "%s to Export" msgstr "" #: ../templates_export.php:135 msgid "Choose the exact item to export to XML." msgstr "" #: ../templates_export.php:144 ../templates_export.php:148 msgid "Include Dependencies" msgstr "ä¾å­˜æ€§ã‚’å«ã‚€" #: ../templates_export.php:145 msgid "" "Some templates rely on other items in Cacti to function properly. It is " "highly recommended that you select this box or the resulting import may fail." msgstr "" #: ../templates_export.php:154 msgid "Output Format" msgstr "出力書å¼" #: ../templates_export.php:155 msgid "Choose the format to output the resulting XML file in." msgstr "" #: ../templates_export.php:159 msgid "Output to the Browser (within Cacti)" msgstr "ブラウザーã¸å‡ºåŠ› (Cacti ã§)" #: ../templates_export.php:160 msgid "Output to the Browser (raw XML)" msgstr "ブラウザーã¸å‡ºåŠ› (生 XML)" #: ../templates_export.php:161 #, fuzzy msgid "Save File Locally" msgstr "ä¿å­˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚" #: ../tree.php:32 msgctxt "dropdown action" msgid "Publish" msgstr "" #: ../tree.php:33 msgctxt "dropdown action" msgid "Un Publish" msgstr "" #: ../tree.php:258 msgctxt "ordering of tree items" msgid "inherit" msgstr "" #: ../tree.php:261 msgctxt "ordering of tree items" msgid "manual" msgstr "" #: ../tree.php:264 msgctxt "ordering of tree items" msgid "alpha" msgstr "" #: ../tree.php:267 msgctxt "ordering of tree items" msgid "natural" msgstr "" #: ../tree.php:270 msgctxt "ordering of tree items" msgid "numeric" msgstr "" #: ../tree.php:485 #, fuzzy msgid "Click 'Continue' to delete the following Tree." msgid_plural "Click 'Continue' to delete following Trees." msgstr[0] "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../tree.php:490 #, fuzzy msgid "Delete Tree" msgid_plural "Delete Trees" msgstr[0] "削除" #: ../tree.php:494 msgid "Click 'Continue' to publish the following Tree." msgid_plural "Click 'Continue' to publish following Trees." msgstr[0] "" #: ../tree.php:499 msgid "Publish Tree" msgid_plural "Publish Trees" msgstr[0] "" #: ../tree.php:503 msgid "Click 'Continue' to un-publish the following Tree." msgid_plural "Click 'Continue' to un-publish following Trees." msgstr[0] "" #: ../tree.php:508 msgid "Un-publish Tree" msgid_plural "Un-publish Trees" msgstr[0] "" #: ../tree.php:511 msgid "You must select at least one Tree." msgstr "" #: ../tree.php:554 #, fuzzy, php-format msgid "Trees [edit: %s]" msgstr "[編集: " #: ../tree.php:566 #, fuzzy msgid "Trees [new]" msgstr "[æ–°è¦]" #: ../tree.php:592 msgid "Edit Tree" msgstr "" #: ../tree.php:592 msgid "" "To Edit this tree, you must first lock it by pressing the Edit Tree button." msgstr "" #: ../tree.php:595 msgid "Add Root Branch" msgstr "" #: ../tree.php:595 msgid "Finish Editing Tree" msgstr "" #: ../tree.php:595 #, php-format msgid "This tree has been locked for Editing on %1$s by %2$s." msgstr "" #: ../tree.php:601 msgid "To edit the tree, you must first unlock it and then lock it as yourself" msgstr "" #: ../tree.php:617 msgid "Tree Items" msgstr "ツリー項目" #: ../tree.php:625 msgid "Available Devices" msgstr "" #: ../tree.php:660 #, fuzzy msgid "Available Graphs" msgstr "グラフを表示ã™ã‚‹" #: ../tree.php:1039 #, fuzzy msgid "Rename" msgstr "ホストå" #: ../tree.php:1066 #, fuzzy msgid "Branch Sorting" msgstr "グラフ設定" #: ../tree.php:1073 msgid "Inherit" msgstr "" #: ../tree.php:1101 #, fuzzy msgid "Alphabetic" msgstr "英字順" #: ../tree.php:1115 #, fuzzy msgid "Natural" msgstr "æ•°å­—é †" #: ../tree.php:1152 ../tree.php:1226 ../tree.php:1313 #, fuzzy msgid "Cut" msgstr "カスタム文字列" #: ../tree.php:1167 ../tree.php:1241 ../tree.php:1328 ../user_admin.php:29 #: ../user_group_admin.php:31 msgid "Copy" msgstr "コピー" #: ../tree.php:1185 msgid "Paste" msgstr "" #: ../tree.php:1558 msgid "The name by which this Tree will be referred to as." msgstr "" #: ../tree.php:1558 ../user_admin.php:1521 ../user_group_admin.php:1243 #, fuzzy msgid "Tree Name" msgstr "テンプレートå" #: ../tree.php:1559 msgid "" "The internal database ID for this Tree. Useful when performing automation " "or debugging." msgstr "" #: ../tree.php:1560 msgid "Published" msgstr "" #: ../tree.php:1560 msgid "Unpublished Trees cannot be viewed from the Graph tab" msgstr "" #: ../tree.php:1561 msgid "A Tree must be locked in order to be edited." msgstr "" #: ../tree.php:1562 #, fuzzy msgid "The original author of this Tree." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../tree.php:1563 msgid "" "To change the order of the trees, first sort by this column, press the up or " "down arrows once they appear." msgstr "" #: ../tree.php:1564 msgid "Last Edited" msgstr "" #: ../tree.php:1564 msgid "The date that this Tree was last edited." msgstr "" #: ../tree.php:1565 msgid "Edited By" msgstr "" #: ../tree.php:1565 msgid "The last user to have modified this Tree." msgstr "" #: ../tree.php:1566 msgid "Branches" msgstr "" #: ../tree.php:1566 msgid "The total number of Branches in this Tree." msgstr "" #: ../tree.php:1567 msgid "The total number of individual Devices in this Tree." msgstr "" #: ../tree.php:1568 msgid "The total number of individual Graphs in this Tree." msgstr "" #: ../tree.php:1608 #, fuzzy msgid "No Trees Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../user_admin.php:32 msgid "Batch Copy" msgstr "" #: ../user_admin.php:345 msgid "Click 'Continue' to delete the selected User(s)." msgstr "" #: ../user_admin.php:350 #, fuzzy msgid "Delete User(s)" msgstr "削除" #: ../user_admin.php:360 msgid "Click 'Continue' to copy the selected User to a new User below." msgstr "" #: ../user_admin.php:365 #, fuzzy msgid "Template Username:" msgstr "テンプレートå" #: ../user_admin.php:370 #, fuzzy msgid "Username:" msgstr "ユーザーå" #: ../user_admin.php:377 #, fuzzy msgid "Full Name:" msgstr "フルãƒãƒ¼ãƒ " #: ../user_admin.php:384 #, fuzzy msgid "Realm:" msgstr "領域" #: ../user_admin.php:390 #, fuzzy msgid "Copy User" msgstr "コピー" #: ../user_admin.php:396 msgid "Click 'Continue' to enable the selected User(s)." msgstr "" #: ../user_admin.php:401 #, fuzzy msgid "Enable User(s)" msgstr "有効" #: ../user_admin.php:407 msgid "Click 'Continue' to disable the selected User(s)." msgstr "" #: ../user_admin.php:412 #, fuzzy msgid "Disable User(s)" msgstr "無効" #: ../user_admin.php:420 msgid "" "Click 'Continue' to overwrite the User(s) settings with the selected " "template User settings and permissions. The original users Full Name, " "Password, Realm and Enable status will be retained, all other fields will be " "overwritten from Template User." msgstr "" #: ../user_admin.php:423 #, fuzzy msgid "Template User:" msgstr "テンプレートå" #: ../user_admin.php:429 msgid "User(s) to update:" msgstr "" #: ../user_admin.php:434 msgid "Reset User(s) Settings" msgstr "" #: ../user_admin.php:437 msgid "You must select at least one user." msgstr "" #: ../user_admin.php:812 ../user_group_admin.php:728 msgid "Allow" msgstr "" #: ../user_admin.php:813 ../user_group_admin.php:729 msgid "Deny" msgstr "" #: ../user_admin.php:838 msgid "" "Note: System Graph Policy is 'Permissive' meaning the User must have " "access to at least one of Graph, Device, or Graph Template to gain access to " "the Graph" msgstr "" #: ../user_admin.php:840 msgid "" "Note: System Graph Policy is 'Restrictive' meaning the User must have " "access to the Graph, Device, and Graph Template to gain access to the Graph" msgstr "" #: ../user_admin.php:844 ../user_group_admin.php:745 msgid "Default Graph Policy" msgstr "デフォルトグラフãƒãƒªã‚·" #: ../user_admin.php:849 #, fuzzy msgid "Default Graph Policy for this User" msgstr "デフォルトグラフãƒãƒªã‚·" #: ../user_admin.php:1006 ../user_admin.php:1242 ../user_admin.php:1384 #: ../user_admin.php:1521 ../user_group_admin.php:821 #: ../user_group_admin.php:966 ../user_group_admin.php:1109 #: ../user_group_admin.php:1243 #, fuzzy msgid "Effective Policy" msgstr "デフォルトãƒãƒªã‚·" #: ../user_admin.php:1020 ../user_group_admin.php:847 #, fuzzy msgid "No Matching Graphs Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../user_admin.php:1035 ../user_admin.php:1041 ../user_admin.php:1287 #: ../user_admin.php:1293 ../user_admin.php:1426 ../user_admin.php:1432 #: ../user_admin.php:1562 ../user_admin.php:1568 ../user_group_admin.php:862 #: ../user_group_admin.php:868 ../user_group_admin.php:1010 #: ../user_group_admin.php:1016 ../user_group_admin.php:1151 #: ../user_group_admin.php:1157 ../user_group_admin.php:1283 #: ../user_group_admin.php:1289 #, fuzzy msgid "Revoke Access" msgstr "コンソールアクセス" #: ../user_admin.php:1036 ../user_admin.php:1040 ../user_admin.php:1288 #: ../user_admin.php:1292 ../user_admin.php:1427 ../user_admin.php:1431 #: ../user_admin.php:1563 ../user_admin.php:1567 ../user_group_admin.php:62 #: ../user_group_admin.php:863 ../user_group_admin.php:867 #: ../user_group_admin.php:1011 ../user_group_admin.php:1015 #: ../user_group_admin.php:1152 ../user_group_admin.php:1156 #: ../user_group_admin.php:1284 ../user_group_admin.php:1288 #, fuzzy msgid "Grant Access" msgstr "コンソールアクセス" #: ../user_admin.php:1093 ../user_admin.php:2646 ../user_group_admin.php:1812 #: ../user_group_admin.php:1872 msgid "Groups" msgstr "" #: ../user_admin.php:1101 ../user_admin.php:1110 msgid "Member" msgstr "" #: ../user_admin.php:1101 #, fuzzy msgid "Policies (Graph/Device/Template)" msgstr "関連グラフテンプレート" #: ../user_admin.php:1110 ../user_group_admin.php:688 msgid "Non Member" msgstr "" #: ../user_admin.php:1112 ../user_admin.php:2299 ../user_admin.php:2300 #: ../user_admin.php:2301 ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 ../user_group_admin.php:1906 msgid "ALLOW" msgstr "" #: ../user_admin.php:1112 ../user_admin.php:2299 ../user_admin.php:2300 #: ../user_admin.php:2301 ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 ../user_group_admin.php:1906 msgid "DENY" msgstr "" #: ../user_admin.php:1118 msgid "No Matching User Groups Found" msgstr "" #: ../user_admin.php:1132 msgid "Assign Membership" msgstr "" #: ../user_admin.php:1133 msgid "Remove Membership" msgstr "" #: ../user_admin.php:1149 ../user_group_admin.php:886 #, fuzzy msgid "Default Device Policy" msgstr "デフォルトãƒãƒªã‚·" #: ../user_admin.php:1154 msgid "Default Device Policy for this User" msgstr "" #: ../user_admin.php:1253 ../user_admin.php:1261 ../user_admin.php:1395 #: ../user_admin.php:1403 ../user_admin.php:1532 ../user_admin.php:1540 #: ../user_group_admin.php:832 ../user_group_admin.php:840 #: ../user_group_admin.php:977 ../user_group_admin.php:985 #: ../user_group_admin.php:1120 ../user_group_admin.php:1128 #: ../user_group_admin.php:1254 ../user_group_admin.php:1262 #, fuzzy msgid "Access Granted" msgstr "アクセス拒å¦ã•れã¾ã—ãŸ" #: ../user_admin.php:1255 ../user_admin.php:1259 ../user_admin.php:1397 #: ../user_admin.php:1401 ../user_admin.php:1534 ../user_admin.php:1538 #: ../user_group_admin.php:834 ../user_group_admin.php:838 #: ../user_group_admin.php:979 ../user_group_admin.php:983 #: ../user_group_admin.php:1122 ../user_group_admin.php:1126 #: ../user_group_admin.php:1256 ../user_group_admin.php:1260 #, fuzzy msgid "Access Restricted" msgstr "アクセス拒å¦ã•れã¾ã—ãŸ" #: ../user_admin.php:1272 ../user_group_admin.php:996 #, fuzzy msgid "No Matching Devices Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../user_admin.php:1310 ../user_group_admin.php:1034 #, fuzzy msgid "Default Graph Template Policy" msgstr "デフォルトグラフãƒãƒªã‚·" #: ../user_admin.php:1315 #, fuzzy msgid "Default Graph Template Policy for this User" msgstr "デフォルトグラフãƒãƒªã‚·" #: ../user_admin.php:1384 ../user_group_admin.php:1109 #, fuzzy msgid "Total Graphs" msgstr "グラフãŒã‚りã¾ã›ã‚“" #: ../user_admin.php:1411 ../user_group_admin.php:1136 #, fuzzy msgid "No Matching Graph Templates Found" msgstr "グラフテンプレートãŒã‚りã¾ã›ã‚“" #: ../user_admin.php:1449 ../user_group_admin.php:1175 #, fuzzy msgid "Default Tree Policy" msgstr "デフォルトãƒãƒªã‚·" #: ../user_admin.php:1454 #, fuzzy msgid "Default Tree Policy for this User" msgstr "デフォルトグラフãƒãƒªã‚·" #: ../user_admin.php:1547 ../user_group_admin.php:1269 #, fuzzy msgid "No Matching Trees Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../user_admin.php:1592 ../user_group_admin.php:1315 #, fuzzy msgid "User Permissions" msgstr "ツリー権é™" #: ../user_admin.php:1659 ../user_group_admin.php:1380 #, fuzzy msgid "External Link Permissions" msgstr "領域権é™" #: ../user_admin.php:1716 ../user_group_admin.php:1437 #, fuzzy msgid "Plugin Permissions" msgstr "領域権é™" #: ../user_admin.php:1772 msgid "Legacy 1.x Plugins" msgstr "" #: ../user_admin.php:1807 ../user_group_admin.php:1528 #, fuzzy, php-format msgid "User Settings %s" msgstr "グラフ設定" #: ../user_admin.php:1922 ../user_group_admin.php:1644 #, fuzzy msgid "Permissions" msgstr "ツリー権é™" #: ../user_admin.php:1923 msgid "Group Membership" msgstr "" #: ../user_admin.php:1924 ../user_group_admin.php:1645 #, fuzzy msgid "Graph Perms" msgstr "グラフ項目" #: ../user_admin.php:1925 ../user_group_admin.php:1646 #, fuzzy msgid "Device Perms" msgstr "デãƒã‚¤ã‚¹" #: ../user_admin.php:1926 ../user_group_admin.php:1647 #, fuzzy msgid "Template Perms" msgstr "テンプレートå" #: ../user_admin.php:1927 ../user_group_admin.php:1648 #, fuzzy msgid "Tree Perms" msgstr "ツリー項目" #: ../user_admin.php:1969 #, fuzzy, php-format msgid "User Management %s" msgstr "ユーザー管ç†" #: ../user_admin.php:2001 #, fuzzy msgid "Password Too Short" msgstr "パスワード" #: ../user_admin.php:2006 msgid "Password Validation Passes" msgstr "" #: ../user_admin.php:2020 #, fuzzy msgid "Passwords do Not Match" msgstr "パスワードãŒä¸€è‡´ã—ã¾ã›ã‚“。もã†ä¸€åº¦å…¥åŠ›ã—ã¦ãã ã•ã„。" #: ../user_admin.php:2023 #, fuzzy msgid "Passwords Match" msgstr "パスワード" #: ../user_admin.php:2267 ../user_group_admin.php:1884 #, fuzzy msgid "Graph Policy" msgstr "デフォルトグラフãƒãƒªã‚·" #: ../user_admin.php:2268 ../user_group_admin.php:1885 #, fuzzy msgid "Device Policy" msgstr "デフォルトãƒãƒªã‚·" #: ../user_admin.php:2269 ../user_group_admin.php:1886 #, fuzzy msgid "Template Policy" msgstr "デフォルトãƒãƒªã‚·" #: ../user_admin.php:2270 msgid "Last Login" msgstr "最終ログイン" #: ../user_admin.php:2291 msgid "Unavailable" msgstr "" #: ../user_admin.php:2307 #, fuzzy msgid "No Users Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../user_admin.php:2522 ../user_group_admin.php:2124 #, fuzzy, php-format msgid "Graph Permissions %s" msgstr "グラフ権é™" #: ../user_admin.php:2577 ../user_admin.php:2664 msgid "Show All" msgstr "" #: ../user_admin.php:2631 #, php-format msgid "Group Membership %s" msgstr "" #: ../user_admin.php:2719 ../user_group_admin.php:2234 #, fuzzy, php-format msgid "Devices Permission %s" msgstr "ツリー権é™" #: ../user_admin.php:2770 ../user_admin.php:2857 ../user_admin.php:2944 #: ../user_group_admin.php:2179 ../user_group_admin.php:2285 #: ../user_group_admin.php:2372 ../user_group_admin.php:2459 msgid "Show Exceptions" msgstr "" #: ../user_admin.php:2824 ../user_group_admin.php:2339 #, fuzzy, php-format msgid "Template Permission %s" msgstr "ツリー権é™" #: ../user_admin.php:2911 ../user_admin.php:2998 ../user_group_admin.php:2426 #, fuzzy, php-format msgid "Tree Permission %s" msgstr "ツリー権é™" #: ../user_admin.php:3031 msgid "Show Exceptions<" msgstr "" #: ../user_domains.php:222 #, fuzzy msgid "Click 'Continue' to delete the following User Domain." msgid_plural "Click 'Continue' to delete following User Domains." msgstr[0] "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../user_domains.php:227 msgid "Delete User Domain" msgid_plural "Delete User Domains" msgstr[0] "" #: ../user_domains.php:231 msgid "Click 'Continue' to disable the following User Domain." msgid_plural "Click 'Continue' to disable following User Domains." msgstr[0] "" #: ../user_domains.php:236 msgid "Disable User Domain" msgid_plural "Disable User Domains" msgstr[0] "" #: ../user_domains.php:240 msgid "Click 'Continue' to enable the following User Domain." msgstr "" #: ../user_domains.php:245 msgid "Enabled User Domain" msgid_plural "Enable User Domains" msgstr[0] "" #: ../user_domains.php:249 msgid "" "Click 'Continue' to make the following the following User Domain the default " "one." msgstr "" #: ../user_domains.php:254 msgid "Make Selected Domain Default" msgstr "" #: ../user_domains.php:257 msgid "You must select at least one User Domain." msgstr "" #: ../user_domains.php:308 #, php-format msgid "User Domain [edit: %s]" msgstr "" #: ../user_domains.php:310 msgid "User Domain [new]" msgstr "" #: ../user_domains.php:318 msgid "" "Enter a meaningful name for this domain. This will be the name that appears " "in the Login Realm during login." msgstr "" #: ../user_domains.php:324 #, fuzzy msgid "Domains Type" msgstr "Ping ã®ç¨®é¡ž" #: ../user_domains.php:325 msgid "Choose what type of domain this is." msgstr "" #: ../user_domains.php:332 msgid "" "The name of the user that Cacti will use as a template for new user accounts." msgstr "" #: ../user_domains.php:342 msgid "" "If this checkbox is checked, users will be able to login using this domain." msgstr "" #: ../user_domains.php:359 msgid "The dns hostname or ip address of the server." msgstr "" #: ../user_domains.php:367 msgid "TCP/UDP port for Non SSL communications." msgstr "" #: ../user_domains.php:406 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "

    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the users " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the users Distinguished Name (DN)." msgstr "" #: ../user_domains.php:455 msgid "" "Search base for searching the LDAP directory, such as \"dc=win2kdomain," "dc=local\" or \"ou=people,dc=domain,dc=local\"." msgstr "" #: ../user_domains.php:462 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: \"(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))\" or for OpenLDAP: " "\"(&(objectClass=account)(uid=<username>))\". \"<username>\" " "is replaced with the username that was supplied at the login prompt." msgstr "" #: ../user_domains.php:501 #, fuzzy msgid "Domain Properties" msgstr "プロパティ" #: ../user_domains.php:627 msgid "Domains" msgstr "" #: ../user_domains.php:714 msgid "Domain Name" msgstr "" #: ../user_domains.php:715 #, fuzzy msgid "Domain Type" msgstr "Ping ã®ç¨®é¡ž" #: ../user_domains.php:717 msgid "Effective User" msgstr "" #: ../user_domains.php:730 msgid "None Selected" msgstr "" #: ../user_domains.php:736 #, fuzzy msgid "No User Domains Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../user_group_admin.php:39 ../user_group_admin.php:58 msgid "Defer to the Users Setting" msgstr "" #: ../user_group_admin.php:43 msgid "Show the Page that the User pointed their browser to" msgstr "" #: ../user_group_admin.php:47 #, fuzzy msgid "Show the Console" msgstr "デフォルトã§ã‚³ãƒ³ã‚½ãƒ¼ãƒ«ç”»é¢ã‚’表示ã—ã¾ã™ã€‚" #: ../user_group_admin.php:51 #, fuzzy msgid "Show the default Graph Screen" msgstr "デフォルトã§ã‚°ãƒ©ãƒ•ç”»é¢ã‚’表示ã—ã¾ã™ã€‚" #: ../user_group_admin.php:66 msgid "Restrict Access" msgstr "" #: ../user_group_admin.php:73 ../user_group_admin.php:1881 #, fuzzy msgid "Group Name" msgstr "フルãƒãƒ¼ãƒ " #: ../user_group_admin.php:74 #, fuzzy msgid "The name of this Group." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ­ã‚°ã‚¤ãƒ³åã§ã™ã€‚" #: ../user_group_admin.php:80 #, fuzzy msgid "Group Description" msgstr "説明" #: ../user_group_admin.php:81 msgid "" "A more descriptive name for this group, that can include spaces or special " "characters." msgstr "" #: ../user_group_admin.php:93 #, fuzzy msgid "General Group Options" msgstr "グラフオプション" #: ../user_group_admin.php:95 msgid "Set any user account-specific options here." msgstr "" #: ../user_group_admin.php:99 msgid "Allow Users of this Group to keep custom User Settings" msgstr "" #: ../user_group_admin.php:106 #, fuzzy msgid "Tree Rights" msgstr "ツリー項目" #: ../user_group_admin.php:108 msgid "Should Users of this Group have access to the Tree?" msgstr "" #: ../user_group_admin.php:114 #, fuzzy msgid "Graph List Rights" msgstr "グラフ設定" #: ../user_group_admin.php:116 msgid "Should Users of this Group have access to the Graph List?" msgstr "" #: ../user_group_admin.php:122 #, fuzzy msgid "Graph Preview Rights" msgstr "グラフツリーã®é …ç›®" #: ../user_group_admin.php:124 msgid "Should Users of this Group have access to the Graph Preview?" msgstr "" #: ../user_group_admin.php:133 msgid "What to do when a User from this User Group logs in." msgstr "" #: ../user_group_admin.php:441 #, fuzzy msgid "Click 'Continue' to delete the following User Group" msgid_plural "Click 'Continue' to delete following User Groups" msgstr[0] "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../user_group_admin.php:446 msgid "Delete User Group" msgid_plural "Delete User Groups" msgstr[0] "" #: ../user_group_admin.php:454 #, fuzzy msgid "Click 'Continue' to Copy the following User Group to a new User Group." msgid_plural "" "Click 'Continue' to Copy following User Groups to new User Groups." msgstr[0] "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../user_group_admin.php:460 #, fuzzy msgid "Group Prefix:" msgstr "フルãƒãƒ¼ãƒ " #: ../user_group_admin.php:461 #, fuzzy msgid "New Group" msgstr "æ–°è¦ã‚°ãƒ©ãƒ•" #: ../user_group_admin.php:465 #, fuzzy msgid "Copy User Group" msgid_plural "Copy User Groups" msgstr[0] "コピー" #: ../user_group_admin.php:471 msgid "Click 'Continue' to enable the following User Group." msgid_plural "Click 'Continue' to enable following User Groups." msgstr[0] "" #: ../user_group_admin.php:476 msgid "Enable User Group" msgid_plural "Enable User Groups" msgstr[0] "" #: ../user_group_admin.php:482 msgid "Click 'Continue' to disable the following User Group." msgid_plural "Click 'Continue' to disable following User Groups." msgstr[0] "" #: ../user_group_admin.php:487 msgid "Disable User Group" msgid_plural "Disable User Groups" msgstr[0] "" #: ../user_group_admin.php:490 msgid "You must select at least one Group." msgstr "" #: ../user_group_admin.php:675 #, fuzzy msgid "Login Name" msgstr "ログイン" #: ../user_group_admin.php:675 msgid "Membership" msgstr "" #: ../user_group_admin.php:686 msgid "Group Member" msgstr "" #: ../user_group_admin.php:696 msgid "No Matching Group Members Found" msgstr "" #: ../user_group_admin.php:710 msgid "Add to Group" msgstr "" #: ../user_group_admin.php:711 msgid "Remove from Group" msgstr "" #: ../user_group_admin.php:750 ../user_group_admin.php:891 #, fuzzy msgid "Default Graph policy for this User Group" msgstr "デフォルトグラフãƒãƒªã‚·" #: ../user_group_admin.php:755 ../user_group_admin.php:896 #: ../user_group_admin.php:1044 ../user_group_admin.php:1185 #, fuzzy msgid "Update" msgstr "グラフを更新ã™ã‚‹" #: ../user_group_admin.php:1039 msgid "Default Graph Template policy for this User Group" msgstr "" #: ../user_group_admin.php:1180 msgid "Default Tree policy for this User Group" msgstr "" #: ../user_group_admin.php:1643 ../user_group_admin.php:1882 msgid "Members" msgstr "" #: ../user_group_admin.php:1655 #, fuzzy, php-format msgid "User Group Management [edit: %s]" msgstr "ユーザー管ç†" #: ../user_group_admin.php:1657 #, fuzzy msgid "User Group Management [new]" msgstr "ユーザー管ç†" #: ../user_group_admin.php:1791 #, fuzzy msgid "User Group Management" msgstr "ユーザー管ç†" #: ../user_group_admin.php:1912 #, fuzzy msgid "No User Groups Found" msgstr "グラフãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../user_group_admin.php:2513 #, php-format msgid "User Membership %s" msgstr "" #: ../user_group_admin.php:2546 msgid "Show Members" msgstr "" #: ../user_group_admin.php:2552 msgctxt "filter reset" msgid "Clear" msgstr "" #: ../utilities.php:164 msgid "" "NET-SNMP Not Installed or its paths are not set. Please install if you wish " "to monitor SNMP enabled devices." msgstr "" #: ../utilities.php:170 #, fuzzy msgid "Configuration Settings" msgstr "Cacti 設定" #: ../utilities.php:170 #, php-format msgid "" "ERROR: Installed RRDtool version does not match configured version." "
    Please visit the %s and select the correct RRDtool Utility Version." msgstr "" #: ../utilities.php:174 #, php-format msgid "" "ERROR: RRDtool 1.2.x+ does not support the GIF images format, but %d\" " "graph(s) and/or templates have GIF set as the image format." msgstr "" #: ../utilities.php:194 msgid "Database" msgstr "" #: ../utilities.php:195 #, fuzzy msgid "PHP Info" msgstr "PHP ã®æƒ…å ±" #: ../utilities.php:202 #, php-format msgid "Technical Support [%s]" msgstr "" #: ../utilities.php:229 #, fuzzy msgid "General Information" msgstr "PHP ã®æƒ…å ±" #: ../utilities.php:231 ../utilities.php:766 msgid "Date" msgstr "" #: ../utilities.php:238 #, fuzzy msgid "Cacti Version" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../utilities.php:243 #, fuzzy msgid "Cacti OS" msgstr "Cacti 設定" #: ../utilities.php:253 #, fuzzy msgid "NET-SNMP Version" msgstr "SNMP ユーティリティãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../utilities.php:281 ../utilities.php:314 #, fuzzy, php-format msgid "Total: %s" msgstr "グラフãŒã‚りã¾ã›ã‚“" #: ../utilities.php:288 #, fuzzy msgid "Poller Information" msgstr "PHP ã®æƒ…å ±" #: ../utilities.php:311 #, fuzzy, php-format msgid "Action[%s]" msgstr "æ“作" #: ../utilities.php:316 msgid "No items to poll" msgstr "" #: ../utilities.php:322 msgid "Concurrent Processes" msgstr "" #: ../utilities.php:327 msgid "Max Threads" msgstr "" #: ../utilities.php:332 #, fuzzy msgid "PHP Servers" msgstr "サーãƒãƒ¼" #: ../utilities.php:337 #, fuzzy msgid "Script Timeout" msgstr "SNMP タイムアウト" #: ../utilities.php:342 msgid "Max OID" msgstr "" #: ../utilities.php:347 #, fuzzy msgid "Last Run Statistics" msgstr "統計を消去" #: ../utilities.php:355 msgid "System Memory" msgstr "" #: ../utilities.php:384 msgid "PHP Information" msgstr "PHP ã®æƒ…å ±" #: ../utilities.php:391 msgid "" "PHP Version 5.5.0+ is recommended due to strong password hashing support." msgstr "" #: ../utilities.php:396 msgid "PHP OS" msgstr "" #: ../utilities.php:401 msgid "PHP uname" msgstr "" #: ../utilities.php:412 #, fuzzy msgid "PHP SNMP" msgstr "SNMP" #: ../utilities.php:447 msgid "You've set memory limit to 'unlimited'." msgstr "" #: ../utilities.php:449 #, php-format msgid "" "It is highly suggested that you alter you php.ini memory_limit to %s or " "higher." msgstr "" #: ../utilities.php:450 msgid "" "This suggested memory value is calculated based on the number of data source " "present and is only to be used as a suggestion, actual values may vary " "system to system based on requirements." msgstr "" #: ../utilities.php:458 msgid "MySQL Table Information - Sizes in KBytes" msgstr "" #: ../utilities.php:467 msgid "Engine" msgstr "" #: ../utilities.php:469 msgid "Avg Row Length" msgstr "" #: ../utilities.php:470 #, fuzzy msgid "Data Length" msgstr "データ入力" #: ../utilities.php:471 #, fuzzy msgid "Index Length" msgstr "å†ç´¢å¼•方法" #: ../utilities.php:472 msgid "Collation" msgstr "" #: ../utilities.php:473 msgid "Comment" msgstr "" #: ../utilities.php:491 msgid "Unable to retrieve table status" msgstr "" #: ../utilities.php:497 #, fuzzy msgid "PHP Module Information" msgstr "PHP ã®æƒ…å ±" #: ../utilities.php:623 msgid "User Login History" msgstr "" #: ../utilities.php:632 ../utilities.php:763 #, fuzzy msgid "User" msgstr "FTP ユーザー" #: ../utilities.php:637 msgid "Deleted/Invalid" msgstr "" #: ../utilities.php:650 ../utilities.php:767 #, fuzzy msgid "Result" msgstr "エクスãƒãƒ¼ãƒˆçµæžœ" #: ../utilities.php:655 msgid "Success - Pswd" msgstr "" #: ../utilities.php:656 msgid "Success - Token" msgstr "" #: ../utilities.php:657 #, fuzzy msgid "Failed" msgstr "ä¿å­˜ã«å¤±æ•—ã—ã¾ã—ãŸã€‚" #: ../utilities.php:661 msgid "Attempts" msgstr "" #: ../utilities.php:676 ../utilities.php:1009 ../utilities.php:1337 #: ../utilities.php:1584 ../utilities.php:2293 ../utilities.php:2557 #: ../vdef.php:686 msgctxt "Button: use filter settings" msgid "Go" msgstr "" #: ../utilities.php:679 ../utilities.php:1012 ../utilities.php:1340 #: ../utilities.php:1587 ../utilities.php:2296 ../utilities.php:2558 #: ../vdef.php:689 msgctxt "Button: reset filter settings" msgid "Clear" msgstr "" #: ../utilities.php:682 ../utilities.php:1015 ../utilities.php:2559 msgctxt "Button: delete all table entries" msgid "Purge" msgstr "" #: ../utilities.php:682 msgid "Purge User Log" msgstr "" #: ../utilities.php:756 #, fuzzy msgid "User Logins" msgstr "最終ログイン" #: ../utilities.php:768 msgid "IP Address" msgstr "" #: ../utilities.php:784 #, fuzzy msgid "(User Removed)" msgstr "(削除)" #: ../utilities.php:1015 msgid "Purge Log" msgstr "" #: ../utilities.php:1072 #, php-format msgid "Log [Total Lines: %d - Non-Matching Items Hidden]" msgstr "" #: ../utilities.php:1074 #, php-format msgid "Log [Total Lines: %d - All Items Shown]" msgstr "" #: ../utilities.php:1173 #, php-format msgid "%s - WEBUI: Cacti Log Cleared from Web Management Interface." msgstr "" #: ../utilities.php:1175 msgid "Cacti Log Cleared" msgstr "" #: ../utilities.php:1177 msgid "Error: Unable to clear log, no write permissions." msgstr "" #: ../utilities.php:1180 msgid "Error: Unable to clear log, file does not exist." msgstr "" #: ../utilities.php:1273 #, fuzzy msgid "Data Query Cache Items" msgstr "データソース項目" #: ../utilities.php:1289 #, fuzzy msgid "Query Name" msgstr "データ照会å" #: ../utilities.php:1409 #, fuzzy msgid "Field Value" msgstr "16 進値" #: ../utilities.php:1409 msgid "Index" msgstr "" #: ../utilities.php:1545 #, fuzzy msgid "Poller Cache Items" msgstr "åŽé›†ã‚­ãƒ£ãƒƒã‚·ãƒ¥ç®¡ç†" #: ../utilities.php:1606 msgid "Script" msgstr "スクリプト" #: ../utilities.php:1722 ../utilities.php:1727 #, fuzzy msgid "SNMP Version:" msgstr "SNMP ユーティリティãƒãƒ¼ã‚¸ãƒ§ãƒ³" #: ../utilities.php:1723 #, fuzzy msgid "Community:" msgstr "SNMP コミュニティ" #: ../utilities.php:1724 ../utilities.php:1728 msgid "OID:" msgstr "" #: ../utilities.php:1728 #, fuzzy msgid "User:" msgstr "ユーザーå:" #: ../utilities.php:1731 #, fuzzy msgid "Script:" msgstr "スクリプト" #: ../utilities.php:1733 #, fuzzy msgid "Script Server:" msgstr "スクリプト" #: ../utilities.php:1746 msgid "RRD:" msgstr "" #: ../utilities.php:1765 msgid "Tecnical Support" msgstr "" #: ../utilities.php:1767 msgid "" "Cacti technical support page. Used by developers and technical support " "persons to assist with issues in Cacti. Includes checks for common " "configuration issues." msgstr "" #: ../utilities.php:1769 #, fuzzy msgid "Log Administration" msgstr "ユーザー管ç†" #: ../utilities.php:1771 msgid "" "The Cacti Log stores statistic, error and other message depending on system " "settings. This information can be used to identify problems with the poller " "and application." msgstr "" #: ../utilities.php:1775 msgid "" "Allows Administrators to browse the user log. Administrators can filter and " "export the log as well." msgstr "" #: ../utilities.php:1779 msgid "Poller Cache Administration" msgstr "åŽé›†ã‚­ãƒ£ãƒƒã‚·ãƒ¥ç®¡ç†" #: ../utilities.php:1782 msgid "" "This is the data that is being passed to the poller each time it runs. This " "data is then in turn executed/interpreted and the results are fed into the " "RRDfiles for graphing or the database for display." msgstr "" #: ../utilities.php:1786 msgid "" "The Data Query Cache stores information gathered from Data Query input " "types. The values from these fields can be used in the text area of Graphs " "for Legends, Vertical Labels, and GPRINTS as well as in CDEF's." msgstr "" #: ../utilities.php:1788 msgid "Rebuild Poller Cache" msgstr "" #: ../utilities.php:1790 msgid "" "The poller cache will be cleared and re-generated if you select this option. " "Sometimes host/data source data can get out of sync with the cache in which " "case it makes sense to clear the cache and start over." msgstr "" #: ../utilities.php:1794 #, fuzzy msgid "Boost Utilities" msgstr "システムユーティリティ" #: ../utilities.php:1795 msgid "View Boost Status" msgstr "" #: ../utilities.php:1797 msgid "" "This menu pick allows you to view various boost settings and statistics " "associated with the current running Boost configuration." msgstr "" #: ../utilities.php:1801 #, fuzzy msgid "RRD Utilities" msgstr "ユーティリティ" #: ../utilities.php:1802 #, fuzzy msgid "RRDfile Cleaner" msgstr "フルãƒãƒ¼ãƒ " #: ../utilities.php:1804 msgid "" "When you delete Data Sources from Cacti, the corresponding RRDfiles are not " "removed automatically. Use this utility to facilitate the removal of these " "old files." msgstr "" #: ../utilities.php:1808 #, fuzzy msgid "SNMPAgent Utilities" msgstr "システムユーティリティ" #: ../utilities.php:1809 #, fuzzy msgid "View SNMPAgent Cache" msgstr "SNMP キャッシュを閲覧ã™ã‚‹" #: ../utilities.php:1811 msgid "This shows all objects being handled by the SNMPAgent." msgstr "" #: ../utilities.php:1813 #, fuzzy msgid "Rebuild SNMPAgent Cache" msgstr "SNMP キャッシュを閲覧ã™ã‚‹" #: ../utilities.php:1815 msgid "" "The SNMP cache will be cleared and re-generated if you select this option. " "Note that it takes another poller run to restore the SNMP cache completely." msgstr "" #: ../utilities.php:1817 msgid "View SNMPAgent Notification Log" msgstr "" #: ../utilities.php:1819 msgid "" "This menu pick allows you to view the latest events SNMPAgent has handled in " "relation to the registered notification receivers." msgstr "" #: ../utilities.php:1823 msgid "Allows Administrators to maintain SNMP notification receivers." msgstr "" #: ../utilities.php:1829 #, fuzzy msgid "Cacti System Utilities" msgstr "システムユーティリティ" #: ../utilities.php:1953 #, fuzzy msgid "Overrun Warning" msgstr "åŽé›†ã®è­¦å‘Š" #: ../utilities.php:1954 msgid "Timed Out" msgstr "" #: ../utilities.php:1955 msgid "Other" msgstr "" #: ../utilities.php:1957 msgid "Never Run" msgstr "" #: ../utilities.php:2010 #, fuzzy msgid "Cannot open directory" msgstr "リモートディレクトリã®ã‚µãƒ‹ã‚¿ã‚¤ã‚º" #: ../utilities.php:2014 msgid "Directory Does NOT Exist!!" msgstr "" #: ../utilities.php:2021 msgid "Current Boost Status" msgstr "" #: ../utilities.php:2024 msgid "Boost On-demand Updating:" msgstr "" #: ../utilities.php:2027 #, fuzzy msgid "Total Data Sources:" msgstr "データソースãŒã‚りã¾ã›ã‚“" #: ../utilities.php:2031 msgid "Pending Boost Records:" msgstr "" #: ../utilities.php:2034 msgid "Archived Boost Records:" msgstr "" #: ../utilities.php:2037 msgid "Total Boost Records:" msgstr "" #: ../utilities.php:2041 #, fuzzy msgid "Boost Storage Statistics" msgstr "統計を消去" #: ../utilities.php:2045 msgid "Database Engine:" msgstr "" #: ../utilities.php:2049 msgid "Current Boost Table(s) Size:" msgstr "" #: ../utilities.php:2053 msgid "Avg Bytes/Record:" msgstr "" #: ../utilities.php:2081 #, php-format msgid "%d Bytes" msgstr "" #: ../utilities.php:2081 #, fuzzy msgid "Max Record Length:" msgstr "é …ç›®ã®æœ€å¤§é•·" #: ../utilities.php:2087 ../utilities.php:2088 msgid "Unlimited" msgstr "" #: ../utilities.php:2093 msgid "Max Allowed Boost Table Size:" msgstr "" #: ../utilities.php:2097 msgid "Estimated Maximum Records:" msgstr "" #: ../utilities.php:2100 #, fuzzy msgid "Runtime Statistics" msgstr "統計を消去" #: ../utilities.php:2103 msgid "Last Start Time:" msgstr "" #: ../utilities.php:2106 msgid "Last Run Duration:" msgstr "" #: ../utilities.php:2107 #, php-format msgid "%d minutes" msgstr "" #: ../utilities.php:2107 #, php-format msgid "%d seconds" msgstr "" #: ../utilities.php:2108 #, php-format msgid "%0.2f percent of update frequency)" msgstr "" #: ../utilities.php:2112 msgid "RRD Updates:" msgstr "" #: ../utilities.php:2115 ../utilities.php:2121 msgid "MBytes" msgstr "" #: ../utilities.php:2115 msgid "Peak Poller Memory:" msgstr "" #: ../utilities.php:2118 msgid "Detailed Runtime Timers:" msgstr "" #: ../utilities.php:2121 msgid "Max Poller Memory Allowed:" msgstr "" #: ../utilities.php:2124 msgid "Run Time Configuration" msgstr "" #: ../utilities.php:2127 msgid "Update Frequency:" msgstr "" #: ../utilities.php:2130 msgid "Next Start Time:" msgstr "" #: ../utilities.php:2133 #, fuzzy msgid "Maximum Records:" msgstr "最大値" #: ../utilities.php:2133 msgid "Records" msgstr "" #: ../utilities.php:2136 #, fuzzy msgid "Maximum Allowed Runtime:" msgstr "最大ログサイズ" #: ../utilities.php:2142 msgid "Image Caching Status:" msgstr "" #: ../utilities.php:2145 msgid "Cache Directory:" msgstr "" #: ../utilities.php:2148 #, fuzzy msgid "Cached Files:" msgstr "検索フィルター" #: ../utilities.php:2151 msgid "Cached Files Size:" msgstr "" #: ../utilities.php:2248 #, fuzzy msgid "SNMPAgent Cache" msgstr "SNMP キャッシュを閲覧ã™ã‚‹" #: ../utilities.php:2278 msgid "OIDs" msgstr "" #: ../utilities.php:2358 msgid "Column Data" msgstr "" #: ../utilities.php:2358 msgid "Scalar" msgstr "" #: ../utilities.php:2501 msgid "SNMPAgent Notification Log" msgstr "" #: ../utilities.php:2529 ../utilities.php:2613 msgid "Receiver" msgstr "" #: ../utilities.php:2605 msgid "Log Entries" msgstr "" #: ../utilities.php:2620 #, php-format msgid "Severity Level: %s" msgstr "" #: ../vdef.php:265 msgid "Click 'Continue' to delete the following VDEF." msgid_plural "Click 'Continue' to delete following VDEFs." msgstr[0] "" #: ../vdef.php:270 #, fuzzy msgid "Delete VDEF" msgid_plural "Delete VDEFs" msgstr[0] "削除" #: ../vdef.php:274 msgid "" "Click 'Continue' to duplicate the following VDEF. You can optionally change " "the title format for the new VDEF." msgid_plural "" "Click 'Continue' to duplicate following VDEFs. You can optionally change the " "title format for the new VDEFs." msgstr[0] "" #: ../vdef.php:280 #, fuzzy msgid "Duplicate VDEF" msgid_plural "Duplicate VDEFs" msgstr[0] "複製" #: ../vdef.php:283 msgid "You must select at least one VDEF." msgstr "" #: ../vdef.php:325 #, fuzzy msgid "Click 'Continue' to delete the following VDEF's." msgstr "次ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’本当ã«å‰Šé™¤ã—ã¾ã™ã‹?" #: ../vdef.php:385 #, fuzzy msgid "VDEF Preview" msgstr "プレビューモード" #: ../vdef.php:390 #, php-format msgid "VDEF Items [edit: %s]" msgstr "" #: ../vdef.php:392 #, fuzzy msgid "VDEF Items [new]" msgstr "CDEF é …ç›®" #: ../vdef.php:408 msgid "Choose what type of VDEF item this is." msgstr "" #: ../vdef.php:408 #, fuzzy msgid "VDEF Item Type" msgstr "ツリー項目ã®ç¨®é¡ž" #: ../vdef.php:430 msgid "Enter a value for this VDEF item." msgstr "" #: ../vdef.php:430 #, fuzzy msgid "VDEF Item Value" msgstr "ツリー項目ã®å€¤" #: ../vdef.php:535 #, fuzzy, php-format msgid "VDEFs [edit: %s]" msgstr "[編集: " #: ../vdef.php:537 #, fuzzy msgid "VDEFs [new]" msgstr "[æ–°è¦]" #: ../vdef.php:600 ../vdef.php:639 #, fuzzy msgid "Delete VDEF Item" msgstr "CDEF é …ç›®" #: ../vdef.php:845 #, fuzzy msgid "The name of this VDEF." msgstr "ã“ã® CDEF ã®åå‰ã§ã™ã€‚" #: ../vdef.php:845 #, fuzzy msgid "VDEF Name" msgstr "フルãƒãƒ¼ãƒ " #: ../vdef.php:846 msgid "" "VDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: ../vdef.php:847 msgid "The number of Graphs using this VDEF." msgstr "" #: ../vdef.php:848 msgid "The number of Graphs Templates using this VDEF." msgstr "" #: ../vdef.php:871 #, fuzzy msgid "No VDEFs" msgstr "CDEF" #, fuzzy #~ msgid "edit" #~ msgstr "[編集: " #, fuzzy #~ msgid "new" #~ msgstr "[æ–°è¦]" #, fuzzy #~ msgid "Graph Template Selection [edit: %s]" #~ msgstr "グラフテンプレートã®é …ç›®" #, fuzzy #~ msgid "Graph Template Selection [new]" #~ msgstr "グラフテンプレートã®é …ç›®" #, fuzzy #~ msgid "Report Details" #~ msgstr "データをエクスãƒãƒ¼ãƒˆã™ã‚‹" #~ msgid "Graph Export" #~ msgstr "グラフエクスãƒãƒ¼ãƒˆ" #~ msgid "ACCESS DENIED" #~ msgstr "ã‚¢ã‚¯ã‚»ã‚¹ãŒæ‹’å¦ã•れã¾ã—ãŸ" #~ msgid "Edit (Graph Permissions)" #~ msgstr "編集 (グラフ権é™)" #~ msgid "Edit (Graph Settings)" #~ msgstr "編集 (グラフ設定)" #~ msgid "Edit (Realm Permissions)" #~ msgstr "編集 (領域権é™)" #~ msgid "FTP Host" #~ msgstr "FTP ホスト" #~ msgid "Graph Permissions (By Graph Template)" #~ msgstr "ã‚°ãƒ©ãƒ•æ¨©é™ (グラフテンプレートより)" #~ msgid "Graph Permissions (By Graph)" #~ msgstr "ã‚°ãƒ©ãƒ•æ¨©é™ (グラフより)" #~ msgid "Hosts" #~ msgstr "ホスト" #~ msgid "Minimum Value" #~ msgstr "最å°å€¤" #~ msgid "Parent Item" #~ msgstr "親ã®é …ç›®" #~ msgid "Password for the remote ftp account (leave empty for blank)." #~ msgstr "リモート ftp アカウントã®ãƒ‘スワード(パスワードãªã—ã¯ç©ºã«ã—ã¾ã™)" #~ msgid "Password:" #~ msgstr "パスワード:" #~ msgid "RRAs" #~ msgstr "RRA" #~ msgid "RRDTool Default Font Path" #~ msgstr "RRDTãŠãŠï½Œ デフォルトフォントã®ãƒ‘ス" #~ msgid "RRDTool Utility Version" #~ msgstr "RRDTool ユーティリティãƒãƒ¼ã‚¸ãƒ§ãƒ³" #~ msgid "Timing" #~ msgstr "タイミング" #~ msgid "To disable the following devices, press the \"yes\" button below." #~ msgstr "次ã®ãƒ‡ãƒã‚¤ã‚¹ã‚’無効ã«ã™ã‚‹å ´åˆã€ä¸‹ã®ã€Œã¯ã„ã€ãƒœã‚¿ãƒ³ã‚’押ã—ã¾ã™ã€‚" #~ msgid "To enable the following devices, press the \"yes\" button below." #~ msgstr "次ã®ãƒ‡ãƒã‚¤ã‚¹ã‚’有効ã«ã™ã‚‹å ´åˆã€ä¸‹ã®ã€Œã¯ã„ã€ãƒœã‚¿ãƒ³ã‚’押ã—ã¾ã™ã€‚" #~ msgid "Tree View (Dual Pane)" #~ msgstr "ツリービュー (二é‡ãƒšã‚¤ãƒ³)" #~ msgid "Tree View (Single Pane)" #~ msgstr "ツリー表示 (å˜ä¸€ãƒšã‚¤ãƒ³)" #~ msgid "Upper Limit" #~ msgstr "上é™" #~ msgid "Use passive mode" #~ msgstr "パッシブモードを使ã†" #~ msgid "Version 2" #~ msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ 2" #~ msgid "Version 3" #~ msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ 3" cacti-1.1.38/locales/po/german_germany.po0000664000175000017500000252545613264740213017673 0ustar tromantroman# German translation for Cacti. # Copyright (C) 2004-2018 The Cacti Group # This file is distributed under the same license as the Cacti package. # # # Default translations: # graph - Diagramm # item - Element # # Wolfgang Stöggl , 2017. # msgid "" msgstr "" "Project-Id-Version: Cacti German Language File\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-10-14 08:11-0400\n" "PO-Revision-Date: 2017-10-16 11:32+0200\n" "Last-Translator: Wolfgang Stoeggl \n" "Language-Team: Cacti Developers \n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Basepath: .\n" "X-Poedit-KeywordsList: __;__date\n" "X-Generator: Poedit 2.0.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: /var/www/html/cacti/about.php:29 #: /var/www/html/cacti/include/global_session.php:108 #: /var/www/html/cacti/lib/functions.php:2435 msgid "About Cacti" msgstr "Über Cacti" #: /var/www/html/cacti/about.php:35 /var/www/html/cacti/index.php:73 #: /var/www/html/cacti/logout.php:81 #, php-format msgid "Version %s" msgstr "Version %s" #: /var/www/html/cacti/about.php:42 msgid "" "Cacti is designed to be a complete graphing solution based on the RRDtool's " "framework. Its goal is to make a network administrator's job easier by " "taking care of all the necessary details necessary to create meaningful " "graphs." msgstr "" "Cacti wurde konstruiert als vollständige Diagramm-Lösung, basierend auf " "RRDTool's Rahmenwerk. Das Ziel ist es, die Arbeit von Netzwerk " "Administratoren zu vereinfachen, indem Cacti alle erforderlichen Details zur " "Erzeugung verständlicher Diagramme berücksichtigt." #: /var/www/html/cacti/about.php:44 #, php-format msgid "" "Please see the official %sCacti website%s for information, support, and " "updates." msgstr "" "Besuchen Sie die offizielle %sCacti Webseite%s for weitere Information, " "Unterstützung und Aktualisierungen." #: /var/www/html/cacti/about.php:46 msgid "Cacti Developers" msgstr "Cacti Entwickler" #: /var/www/html/cacti/about.php:58 msgid "Thanks" msgstr "Danksagung" #: /var/www/html/cacti/about.php:61 #, php-format msgid "" "A very special thanks to %sTobi Oetiker%s, the creator of %sRRDtool%s and " "the very popular %sMRTG%s." msgstr "" "Ein ganz besonderer Dank gilt %sTobi Oetiker%s, dem Schöpfer von %sRRDtool%s " "und dem sehr beliebten %sMRTG%s." #: /var/www/html/cacti/about.php:64 msgid "The users of Cacti" msgstr "Die Benutzer von Cacti" #: /var/www/html/cacti/about.php:65 msgid "" "Especially anyone who has taken the time to create an issue report, or " "otherwise help fix a Cacti related problems. Also to anyone who has " "contributed to supporting Cacti." msgstr "" "Besonders jenen, die sich die Zeit genommen haben einen Fehlerbericht zu " "erstellen, oder anderweitig geholfen haben Fehler in Cacti zu beheben. Sowie " "denen, die zur Unterstützung von Cacti beigetragen haben." #: /var/www/html/cacti/about.php:70 msgid "License" msgstr "Lizenz" #: /var/www/html/cacti/about.php:72 msgid "Cacti is licensed under the GNU GPL:" msgstr "Cacti ist lizensiert unter der GNU GPL:" #: /var/www/html/cacti/about.php:74 /var/www/html/cacti/install/index.php:438 msgid "" "This program is free software; you can redistribute it and/or modify it " "under the terms of the GNU General Public License as published by the Free " "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" "Dieses Programm ist freie Software: Sie können sie weitergeben und/oder " "verändern unter den Bedingungen der GNU General Public License, wie von der " "Free Software Foundation veröffentlicht; entweder Version 2 der Lizenz oder " "(nach Ihrer Wahl) jeder späteren Version." #: /var/www/html/cacti/about.php:76 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" "Dieses Programm wird verteilt in der Hoffnung, dass es nützlich ist, aber " "OHNE JEDE GARANTIE; sogar ohne die implizite Garantie der MARKTGÄNGIGKEIT " "oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK. Weitere Details finden Sie in der " "GNU General Public License." #: /var/www/html/cacti/aggregate_graphs.php:40 #: /var/www/html/cacti/aggregate_templates.php:29 #: /var/www/html/cacti/automation_graph_rules.php:32 #: /var/www/html/cacti/automation_networks.php:31 #: /var/www/html/cacti/automation_snmp.php:29 #: /var/www/html/cacti/automation_snmp.php:731 #: /var/www/html/cacti/automation_templates.php:29 #: /var/www/html/cacti/automation_tree_rules.php:32 #: /var/www/html/cacti/cdef.php:29 /var/www/html/cacti/cdef.php:620 #: /var/www/html/cacti/color.php:28 /var/www/html/cacti/color_templates.php:28 #: /var/www/html/cacti/color_templates.php:122 #: /var/www/html/cacti/data_input.php:29 /var/www/html/cacti/data_input.php:490 #: /var/www/html/cacti/data_input.php:529 #: /var/www/html/cacti/data_queries.php:30 #: /var/www/html/cacti/data_queries.php:637 #: /var/www/html/cacti/data_queries.php:735 #: /var/www/html/cacti/data_queries.php:955 #: /var/www/html/cacti/data_source_profiles.php:29 #: /var/www/html/cacti/data_source_profiles.php:583 #: /var/www/html/cacti/data_sources.php:35 #: /var/www/html/cacti/data_sources.php:942 #: /var/www/html/cacti/data_templates.php:33 #: /var/www/html/cacti/data_templates.php:573 #: /var/www/html/cacti/gprint_presets.php:28 #: /var/www/html/cacti/graph_templates.php:33 #: /var/www/html/cacti/graph_templates.php:440 #: /var/www/html/cacti/graphs.php:44 /var/www/html/cacti/host.php:38 #: /var/www/html/cacti/host_templates.php:30 #: /var/www/html/cacti/host_templates.php:485 #: /var/www/html/cacti/host_templates.php:542 #: /var/www/html/cacti/include/global_arrays.php:1289 #: /var/www/html/cacti/lib/api_automation.php:1277 #: /var/www/html/cacti/lib/api_automation.php:1340 #: /var/www/html/cacti/lib/api_automation.php:1404 #: /var/www/html/cacti/lib/html.php:986 #: /var/www/html/cacti/lib/html_form.php:1121 #: /var/www/html/cacti/lib/html_reports.php:1326 #: /var/www/html/cacti/links.php:28 /var/www/html/cacti/managers.php:28 #: /var/www/html/cacti/pollers.php:29 /var/www/html/cacti/sites.php:28 #: /var/www/html/cacti/tree.php:1077 /var/www/html/cacti/tree.php:1230 #: /var/www/html/cacti/tree.php:1290 /var/www/html/cacti/user_admin.php:28 #: /var/www/html/cacti/user_domains.php:29 #: /var/www/html/cacti/user_group_admin.php:30 /var/www/html/cacti/vdef.php:29 msgid "Delete" msgstr "Löschen" #: /var/www/html/cacti/aggregate_graphs.php:41 msgid "Migrate Aggregate to use a Template" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:42 msgid "Create New Aggregate from Aggregates" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:46 msgid "Associate with Aggregate" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:47 msgid "Disassociate with Aggregate" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:80 #: /var/www/html/cacti/graphs.php:128 #, php-format msgid "Place on a Tree (%s)" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:318 msgid "Click 'Continue' to delete the following Aggregate Graph(s)." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:323 #: /var/www/html/cacti/aggregate_graphs.php:384 #: /var/www/html/cacti/aggregate_graphs.php:409 #: /var/www/html/cacti/aggregate_graphs.php:418 #: /var/www/html/cacti/aggregate_graphs.php:427 #: /var/www/html/cacti/aggregate_graphs.php:438 #: /var/www/html/cacti/aggregate_templates.php:312 #: /var/www/html/cacti/automation_devices.php:199 #: /var/www/html/cacti/automation_graph_rules.php:289 #: /var/www/html/cacti/automation_networks.php:358 #: /var/www/html/cacti/automation_snmp.php:253 #: /var/www/html/cacti/automation_snmp.php:359 #: /var/www/html/cacti/automation_templates.php:195 #: /var/www/html/cacti/automation_tree_rules.php:286 #: /var/www/html/cacti/cdef.php:282 /var/www/html/cacti/cdef.php:293 #: /var/www/html/cacti/cdef.php:345 /var/www/html/cacti/color.php:192 #: /var/www/html/cacti/color_templates.php:232 #: /var/www/html/cacti/color_templates.php:242 #: /var/www/html/cacti/color_templates_items.php:280 #: /var/www/html/cacti/data_input.php:218 #: /var/www/html/cacti/data_input.php:266 #: /var/www/html/cacti/data_queries.php:322 #: /var/www/html/cacti/data_queries.php:425 #: /var/www/html/cacti/data_source_profiles.php:280 #: /var/www/html/cacti/data_source_profiles.php:290 #: /var/www/html/cacti/data_source_profiles.php:341 #: /var/www/html/cacti/data_sources.php:468 #: /var/www/html/cacti/data_sources.php:478 #: /var/www/html/cacti/data_sources.php:487 #: /var/www/html/cacti/data_sources.php:496 #: /var/www/html/cacti/data_sources.php:505 #: /var/www/html/cacti/data_sources.php:511 #: /var/www/html/cacti/data_templates.php:358 #: /var/www/html/cacti/data_templates.php:368 #: /var/www/html/cacti/data_templates.php:384 #: /var/www/html/cacti/gprint_presets.php:153 #: /var/www/html/cacti/graph_templates.php:317 #: /var/www/html/cacti/graph_templates.php:327 #: /var/www/html/cacti/graph_templates.php:347 #: /var/www/html/cacti/graph_templates.php:356 #: /var/www/html/cacti/graphs.php:858 /var/www/html/cacti/graphs.php:874 #: /var/www/html/cacti/graphs.php:885 /var/www/html/cacti/graphs.php:896 #: /var/www/html/cacti/graphs.php:911 /var/www/html/cacti/graphs.php:925 #: /var/www/html/cacti/graphs.php:934 /var/www/html/cacti/graphs.php:1060 #: /var/www/html/cacti/graphs.php:1103 /var/www/html/cacti/graphs.php:1125 #: /var/www/html/cacti/graphs.php:1133 /var/www/html/cacti/graphs.php:1575 #: /var/www/html/cacti/host.php:385 /var/www/html/cacti/host.php:394 #: /var/www/html/cacti/host.php:436 /var/www/html/cacti/host.php:445 #: /var/www/html/cacti/host.php:454 /var/www/html/cacti/host.php:468 #: /var/www/html/cacti/host.php:482 /var/www/html/cacti/host.php:491 #: /var/www/html/cacti/host.php:499 /var/www/html/cacti/host_templates.php:261 #: /var/www/html/cacti/host_templates.php:275 #: /var/www/html/cacti/host_templates.php:286 #: /var/www/html/cacti/host_templates.php:334 #: /var/www/html/cacti/host_templates.php:394 #: /var/www/html/cacti/lib/clog_webapi.php:163 #: /var/www/html/cacti/lib/html_form.php:1120 #: /var/www/html/cacti/lib/html_form.php:1132 #: /var/www/html/cacti/lib/html_form.php:1143 #: /var/www/html/cacti/lib/html_utility.php:210 #: /var/www/html/cacti/links.php:196 /var/www/html/cacti/links.php:205 #: /var/www/html/cacti/links.php:214 /var/www/html/cacti/managers.php:1034 #: /var/www/html/cacti/managers.php:1091 /var/www/html/cacti/pollers.php:288 #: /var/www/html/cacti/pollers.php:297 /var/www/html/cacti/pollers.php:306 #: /var/www/html/cacti/pollers.php:315 /var/www/html/cacti/sites.php:291 #: /var/www/html/cacti/tree.php:512 /var/www/html/cacti/tree.php:521 #: /var/www/html/cacti/tree.php:530 /var/www/html/cacti/user_admin.php:340 #: /var/www/html/cacti/user_admin.php:380 #: /var/www/html/cacti/user_admin.php:391 #: /var/www/html/cacti/user_admin.php:402 #: /var/www/html/cacti/user_admin.php:424 #: /var/www/html/cacti/user_domains.php:227 #: /var/www/html/cacti/user_domains.php:236 #: /var/www/html/cacti/user_domains.php:245 #: /var/www/html/cacti/user_domains.php:254 #: /var/www/html/cacti/user_group_admin.php:446 #: /var/www/html/cacti/user_group_admin.php:465 #: /var/www/html/cacti/user_group_admin.php:476 #: /var/www/html/cacti/user_group_admin.php:487 #: /var/www/html/cacti/vdef.php:270 /var/www/html/cacti/vdef.php:280 #: /var/www/html/cacti/vdef.php:332 msgid "Cancel" msgstr "Abbrechen" #: /var/www/html/cacti/aggregate_graphs.php:323 #: /var/www/html/cacti/aggregate_graphs.php:384 #: /var/www/html/cacti/aggregate_graphs.php:409 #: /var/www/html/cacti/aggregate_graphs.php:418 #: /var/www/html/cacti/aggregate_graphs.php:427 #: /var/www/html/cacti/aggregate_graphs.php:438 #: /var/www/html/cacti/aggregate_templates.php:312 #: /var/www/html/cacti/automation_devices.php:199 #: /var/www/html/cacti/automation_graph_rules.php:289 #: /var/www/html/cacti/automation_networks.php:350 #: /var/www/html/cacti/automation_snmp.php:228 #: /var/www/html/cacti/automation_snmp.php:360 #: /var/www/html/cacti/automation_templates.php:195 #: /var/www/html/cacti/automation_tree_rules.php:286 #: /var/www/html/cacti/cdef.php:282 /var/www/html/cacti/cdef.php:293 #: /var/www/html/cacti/cdef.php:346 /var/www/html/cacti/color.php:192 #: /var/www/html/cacti/color_templates.php:232 #: /var/www/html/cacti/color_templates.php:242 #: /var/www/html/cacti/color_templates_items.php:281 #: /var/www/html/cacti/data_input.php:218 #: /var/www/html/cacti/data_input.php:267 #: /var/www/html/cacti/data_queries.php:322 #: /var/www/html/cacti/data_queries.php:426 #: /var/www/html/cacti/data_source_profiles.php:280 #: /var/www/html/cacti/data_source_profiles.php:290 #: /var/www/html/cacti/data_source_profiles.php:342 #: /var/www/html/cacti/data_sources.php:468 #: /var/www/html/cacti/data_sources.php:478 #: /var/www/html/cacti/data_sources.php:487 #: /var/www/html/cacti/data_sources.php:496 #: /var/www/html/cacti/data_sources.php:505 #: /var/www/html/cacti/data_sources.php:511 #: /var/www/html/cacti/data_templates.php:358 #: /var/www/html/cacti/data_templates.php:368 #: /var/www/html/cacti/data_templates.php:384 #: /var/www/html/cacti/gprint_presets.php:153 #: /var/www/html/cacti/graph_templates.php:317 #: /var/www/html/cacti/graph_templates.php:327 #: /var/www/html/cacti/graph_templates.php:347 #: /var/www/html/cacti/graph_templates.php:356 #: /var/www/html/cacti/graphs.php:858 /var/www/html/cacti/graphs.php:874 #: /var/www/html/cacti/graphs.php:885 /var/www/html/cacti/graphs.php:896 #: /var/www/html/cacti/graphs.php:911 /var/www/html/cacti/graphs.php:925 #: /var/www/html/cacti/graphs.php:934 /var/www/html/cacti/graphs.php:1060 #: /var/www/html/cacti/graphs.php:1103 /var/www/html/cacti/graphs.php:1125 #: /var/www/html/cacti/graphs.php:1133 /var/www/html/cacti/host.php:385 #: /var/www/html/cacti/host.php:394 /var/www/html/cacti/host.php:436 #: /var/www/html/cacti/host.php:445 /var/www/html/cacti/host.php:454 #: /var/www/html/cacti/host.php:468 /var/www/html/cacti/host.php:482 #: /var/www/html/cacti/host.php:491 /var/www/html/cacti/host.php:499 #: /var/www/html/cacti/host_templates.php:261 #: /var/www/html/cacti/host_templates.php:275 #: /var/www/html/cacti/host_templates.php:286 #: /var/www/html/cacti/host_templates.php:335 #: /var/www/html/cacti/host_templates.php:395 #: /var/www/html/cacti/lib/clog_webapi.php:164 #: /var/www/html/cacti/lib/html_reports.php:674 #: /var/www/html/cacti/lib/html_utility.php:210 #: /var/www/html/cacti/links.php:196 /var/www/html/cacti/links.php:205 #: /var/www/html/cacti/links.php:214 /var/www/html/cacti/managers.php:1034 #: /var/www/html/cacti/managers.php:1091 /var/www/html/cacti/pollers.php:288 #: /var/www/html/cacti/pollers.php:297 /var/www/html/cacti/pollers.php:306 #: /var/www/html/cacti/pollers.php:315 /var/www/html/cacti/sites.php:291 #: /var/www/html/cacti/tree.php:512 /var/www/html/cacti/tree.php:521 #: /var/www/html/cacti/tree.php:530 /var/www/html/cacti/user_admin.php:340 #: /var/www/html/cacti/user_admin.php:380 #: /var/www/html/cacti/user_admin.php:391 #: /var/www/html/cacti/user_admin.php:402 #: /var/www/html/cacti/user_admin.php:424 #: /var/www/html/cacti/user_domains.php:227 #: /var/www/html/cacti/user_domains.php:236 #: /var/www/html/cacti/user_domains.php:245 #: /var/www/html/cacti/user_domains.php:254 #: /var/www/html/cacti/user_group_admin.php:446 #: /var/www/html/cacti/user_group_admin.php:465 #: /var/www/html/cacti/user_group_admin.php:476 #: /var/www/html/cacti/user_group_admin.php:487 #: /var/www/html/cacti/vdef.php:270 /var/www/html/cacti/vdef.php:280 #: /var/www/html/cacti/vdef.php:333 msgid "Continue" msgstr "Fortsetzen" #: /var/www/html/cacti/aggregate_graphs.php:323 #: /var/www/html/cacti/aggregate_graphs.php:384 #: /var/www/html/cacti/aggregate_graphs.php:409 #: /var/www/html/cacti/graphs.php:858 #, fuzzy msgid "Delete Graph(s)" msgstr "Diagramm(e) löschen:" #: /var/www/html/cacti/aggregate_graphs.php:349 msgid "" "The selected Aggregate Graphs represent elements from more than one Graph " "Template." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:350 msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, they must only be using one Graph Template. Please press " "'Return' and then select only Aggregate Graph that utilize the same Graph " "Template." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:355 #: /var/www/html/cacti/aggregate_graphs.php:395 #: /var/www/html/cacti/aggregate_graphs.php:442 #: /var/www/html/cacti/aggregate_templates.php:316 #: /var/www/html/cacti/auth_changepassword.php:308 #: /var/www/html/cacti/auth_profile.php:420 #: /var/www/html/cacti/auth_profile.php:430 #: /var/www/html/cacti/automation_devices.php:203 #: /var/www/html/cacti/automation_graph_rules.php:287 #: /var/www/html/cacti/automation_networks.php:359 #: /var/www/html/cacti/automation_snmp.php:253 #: /var/www/html/cacti/automation_templates.php:199 #: /var/www/html/cacti/automation_tree_rules.php:284 #: /var/www/html/cacti/cdef.php:297 /var/www/html/cacti/color.php:196 #: /var/www/html/cacti/color_templates.php:246 #: /var/www/html/cacti/data_input.php:221 #: /var/www/html/cacti/data_queries.php:325 #: /var/www/html/cacti/data_source_profiles.php:294 #: /var/www/html/cacti/data_sources.php:515 #: /var/www/html/cacti/data_templates.php:388 #: /var/www/html/cacti/gprint_presets.php:157 #: /var/www/html/cacti/graph_templates.php:360 #: /var/www/html/cacti/graphs.php:1062 /var/www/html/cacti/graphs.php:1112 #: /var/www/html/cacti/graphs.php:1115 /var/www/html/cacti/graphs.php:1138 #: /var/www/html/cacti/host.php:503 /var/www/html/cacti/host_templates.php:290 #: /var/www/html/cacti/include/auth.php:116 #: /var/www/html/cacti/lib/html_form.php:1141 #: /var/www/html/cacti/lib/html_utility.php:208 #: /var/www/html/cacti/links.php:218 /var/www/html/cacti/managers.php:1037 #: /var/www/html/cacti/managers.php:1094 #: /var/www/html/cacti/permission_denied.php:30 #: /var/www/html/cacti/permission_denied.php:32 #: /var/www/html/cacti/pollers.php:319 /var/www/html/cacti/sites.php:295 #: /var/www/html/cacti/tree.php:534 /var/www/html/cacti/user_admin.php:429 #: /var/www/html/cacti/user_domains.php:258 #: /var/www/html/cacti/user_group_admin.php:491 #: /var/www/html/cacti/vdef.php:284 msgid "Return" msgstr "Zurück" #: /var/www/html/cacti/aggregate_graphs.php:368 msgid "" "Click 'Continue' and the following Aggregate Graph(s) will be migrated to " "use the Aggregate Template that you choose below." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:374 msgid "Aggregate Template:" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:388 msgid "" "There are currently no Aggregate Templates defined for the selected Legacy " "Aggregates." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:389 #, php-format msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, first create an Aggregate Template for the Graph Template '%s'." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:390 msgid "Please press 'Return' to continue." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:401 msgid "" "Click 'Continue' to combine the following Aggregate Graph(s) into a single " "Aggregate Graph." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:406 msgid "Aggregate Name:" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:407 msgid "New Aggregate" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:413 msgid "" "Click 'Continue' to associate the following Graph(s) with the Aggregate " "Graph." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:418 msgid "Associate Graph(s)" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:422 msgid "" "Click 'Continue' to disassociate the following Graph(s) from the Aggregate." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:427 msgid "Dis-Associate Graph(s)" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:431 msgid "" "Click 'Continue' to place the following Aggregate Graph(s) under the Tree " "Branch." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:433 #: /var/www/html/cacti/host.php:474 msgid "Destination Branch:" msgstr "Ziel Zweig:" #: /var/www/html/cacti/aggregate_graphs.php:438 #: /var/www/html/cacti/graphs.php:911 msgid "Place Graph(s) on Tree" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:441 msgid "You must select at least one graph." msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:476 #: /var/www/html/cacti/graphs.php:1171 msgid "Graph Items [new]" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:492 #: /var/www/html/cacti/graphs.php:1202 #, php-format msgid "Graph Items [edit: %s]" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:565 #: /var/www/html/cacti/aggregate_graphs.php:572 #: /var/www/html/cacti/lib/html_reports.php:1095 #: /var/www/html/cacti/lib/html_reports.php:1100 #: /var/www/html/cacti/lib/html_reports.php:1139 #: /var/www/html/cacti/utilities.php:1742 msgid "Details" msgstr "Details" #: /var/www/html/cacti/aggregate_graphs.php:566 #: /var/www/html/cacti/lib/html_reports.php:1095 #: /var/www/html/cacti/lib/html_reports.php:1186 #: /var/www/html/cacti/utilities.php:317 msgid "Items" msgstr "Elemente" #: /var/www/html/cacti/aggregate_graphs.php:567 #: /var/www/html/cacti/aggregate_graphs.php:573 #: /var/www/html/cacti/lib/html.php:1589 #: /var/www/html/cacti/lib/html_reports.php:1095 msgid "Preview" msgstr "Vorschau" #: /var/www/html/cacti/aggregate_graphs.php:631 msgid "Turn Off Graph Debug Mode" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:633 msgid "Turn On Graph Debug Mode" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:639 #: /var/www/html/cacti/aggregate_graphs.php:903 msgid "Show Item Details" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:645 #, php-format msgid "Aggregate Preview [%s]" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:657 #: /var/www/html/cacti/graph.php:483 /var/www/html/cacti/graphs.php:1438 msgid "RRDTool Command:" msgstr "RRDTool Befehl:" #: /var/www/html/cacti/aggregate_graphs.php:659 #: /var/www/html/cacti/graph.php:486 /var/www/html/cacti/graphs.php:1440 msgid "RRDTool Says:" msgstr "RRDTool sagt:" #: /var/www/html/cacti/aggregate_graphs.php:684 #, php-format msgid "Aggregate Graph %s" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:821 #: /var/www/html/cacti/graphs.php:1020 #: /var/www/html/cacti/lib/api_aggregate.php:1301 msgid "Total" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:825 #: /var/www/html/cacti/graphs.php:1022 #, fuzzy msgid "All Items" msgstr "Poller Elemente" #: /var/www/html/cacti/aggregate_graphs.php:848 #: /var/www/html/cacti/graphs.php:1454 #: /var/www/html/cacti/lib/api_aggregate.php:1448 msgid "Graph Configuration" msgstr "Graph Konfiguration" #: /var/www/html/cacti/aggregate_graphs.php:898 #: /var/www/html/cacti/automation_graph_rules.php:554 #: /var/www/html/cacti/automation_graph_rules.php:569 #: /var/www/html/cacti/automation_graph_rules.php:585 #: /var/www/html/cacti/automation_tree_rules.php:379 #: /var/www/html/cacti/automation_tree_rules.php:529 msgid "Show" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:900 msgid "Hide Item Details" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:1020 msgid "Matching Graphs" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:1029 #: /var/www/html/cacti/aggregate_graphs.php:1346 #: /var/www/html/cacti/aggregate_templates.php:538 #: /var/www/html/cacti/automation_devices.php:448 #: /var/www/html/cacti/automation_graph_rules.php:747 #: /var/www/html/cacti/automation_networks.php:1061 #: /var/www/html/cacti/automation_networks.php:1083 #: /var/www/html/cacti/automation_snmp.php:831 #: /var/www/html/cacti/automation_templates.php:412 #: /var/www/html/cacti/automation_tree_rules.php:715 #: /var/www/html/cacti/cdef.php:723 /var/www/html/cacti/color.php:529 #: /var/www/html/cacti/color_templates.php:439 #: /var/www/html/cacti/data_input.php:620 #: /var/www/html/cacti/data_queries.php:1053 #: /var/www/html/cacti/data_source_profiles.php:799 #: /var/www/html/cacti/data_sources.php:1250 #: /var/www/html/cacti/data_templates.php:756 #: /var/www/html/cacti/gprint_presets.php:262 #: /var/www/html/cacti/graph_templates.php:628 #: /var/www/html/cacti/graph_view.php:519 #: /var/www/html/cacti/graph_view.php:823 /var/www/html/cacti/graphs.php:1727 #: /var/www/html/cacti/graphs_new.php:570 /var/www/html/cacti/host.php:1496 #: /var/www/html/cacti/host_templates.php:700 #: /var/www/html/cacti/lib/api_automation.php:141 #: /var/www/html/cacti/lib/api_automation.php:469 #: /var/www/html/cacti/lib/api_automation.php:699 #: /var/www/html/cacti/lib/api_automation.php:1019 #: /var/www/html/cacti/lib/clog_webapi.php:464 #: /var/www/html/cacti/lib/html_filter.php:63 #: /var/www/html/cacti/lib/html_graph.php:204 #: /var/www/html/cacti/lib/html_graph.php:420 #: /var/www/html/cacti/lib/html_reports.php:1413 #: /var/www/html/cacti/lib/html_tree.php:121 #: /var/www/html/cacti/lib/html_tree.php:598 #: /var/www/html/cacti/lib/html_tree.php:860 /var/www/html/cacti/links.php:309 #: /var/www/html/cacti/managers.php:150 /var/www/html/cacti/managers.php:523 #: /var/www/html/cacti/managers.php:755 /var/www/html/cacti/plugins.php:288 #: /var/www/html/cacti/pollers.php:517 /var/www/html/cacti/rrdcleaner.php:475 #: /var/www/html/cacti/settings.php:215 /var/www/html/cacti/settings.php:234 #: /var/www/html/cacti/settings.php:283 /var/www/html/cacti/sites.php:398 #: /var/www/html/cacti/tree.php:655 /var/www/html/cacti/tree.php:690 #: /var/www/html/cacti/tree.php:1510 /var/www/html/cacti/user_admin.php:2206 #: /var/www/html/cacti/user_admin.php:2544 #: /var/www/html/cacti/user_admin.php:2651 #: /var/www/html/cacti/user_admin.php:2737 #: /var/www/html/cacti/user_admin.php:2840 #: /var/www/html/cacti/user_admin.php:2925 #: /var/www/html/cacti/user_admin.php:3010 #: /var/www/html/cacti/user_domains.php:621 #: /var/www/html/cacti/user_group_admin.php:1827 #: /var/www/html/cacti/user_group_admin.php:2152 #: /var/www/html/cacti/user_group_admin.php:2260 #: /var/www/html/cacti/user_group_admin.php:2363 #: /var/www/html/cacti/user_group_admin.php:2448 #: /var/www/html/cacti/user_group_admin.php:2533 #: /var/www/html/cacti/utilities.php:697 /var/www/html/cacti/utilities.php:1092 #: /var/www/html/cacti/utilities.php:1327 #: /var/www/html/cacti/utilities.php:1637 #: /var/www/html/cacti/utilities.php:2312 #: /var/www/html/cacti/utilities.php:2563 /var/www/html/cacti/vdef.php:659 msgid "Search" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:1035 #: /var/www/html/cacti/aggregate_graphs.php:1132 #: /var/www/html/cacti/aggregate_graphs.php:1374 #: /var/www/html/cacti/color_templates.php:548 #: /var/www/html/cacti/graph_view.php:397 #: /var/www/html/cacti/graph_view.php:558 /var/www/html/cacti/graphs.php:1733 #: /var/www/html/cacti/host.php:1560 #: /var/www/html/cacti/include/global_arrays.php:738 #: /var/www/html/cacti/include/global_arrays.php:919 #: /var/www/html/cacti/lib/api_automation.php:281 #: /var/www/html/cacti/lib/functions.php:1867 #: /var/www/html/cacti/lib/html.php:1324 /var/www/html/cacti/lib/html.php:1326 #: /var/www/html/cacti/lib/html.php:1405 #: /var/www/html/cacti/lib/html_graph.php:210 #: /var/www/html/cacti/lib/html_tree.php:649 #: /var/www/html/cacti/lib/html_tree.php:1058 /var/www/html/cacti/tree.php:1592 #: /var/www/html/cacti/user_admin.php:988 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_admin.php:2572 #: /var/www/html/cacti/user_group_admin.php:813 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:2180 #: /var/www/html/cacti/utilities.php:279 msgid "Graphs" msgstr "Diagramme" #: /var/www/html/cacti/aggregate_graphs.php:1039 #: /var/www/html/cacti/aggregate_graphs.php:1378 #: /var/www/html/cacti/aggregate_templates.php:554 #: /var/www/html/cacti/automation_devices.php:533 #: /var/www/html/cacti/automation_graph_rules.php:789 #: /var/www/html/cacti/automation_networks.php:1071 #: /var/www/html/cacti/automation_snmp.php:841 #: /var/www/html/cacti/automation_templates.php:422 #: /var/www/html/cacti/automation_tree_rules.php:735 #: /var/www/html/cacti/cdef.php:733 /var/www/html/cacti/color.php:539 #: /var/www/html/cacti/color_templates.php:453 #: /var/www/html/cacti/data_input.php:630 #: /var/www/html/cacti/data_queries.php:1063 #: /var/www/html/cacti/data_source_profiles.php:809 #: /var/www/html/cacti/data_source_profiles.php:930 #: /var/www/html/cacti/data_sources.php:1286 #: /var/www/html/cacti/data_templates.php:782 #: /var/www/html/cacti/gprint_presets.php:272 #: /var/www/html/cacti/graph_templates.php:638 #: /var/www/html/cacti/graph_view.php:562 /var/www/html/cacti/graphs.php:1737 #: /var/www/html/cacti/graphs_new.php:580 /var/www/html/cacti/host.php:1521 #: /var/www/html/cacti/host_templates.php:710 #: /var/www/html/cacti/include/global_form.php:76 #: /var/www/html/cacti/lib/api_automation.php:184 #: /var/www/html/cacti/lib/api_automation.php:479 #: /var/www/html/cacti/lib/api_automation.php:709 #: /var/www/html/cacti/lib/api_automation.php:1062 #: /var/www/html/cacti/lib/html_reports.php:1433 #: /var/www/html/cacti/links.php:319 /var/www/html/cacti/managers.php:160 #: /var/www/html/cacti/managers.php:533 /var/www/html/cacti/plugins.php:311 #: /var/www/html/cacti/pollers.php:527 /var/www/html/cacti/rrdcleaner.php:501 #: /var/www/html/cacti/sites.php:408 /var/www/html/cacti/tree.php:1520 #: /var/www/html/cacti/user_admin.php:2216 #: /var/www/html/cacti/user_admin.php:2576 #: /var/www/html/cacti/user_admin.php:2661 #: /var/www/html/cacti/user_admin.php:2765 #: /var/www/html/cacti/user_admin.php:2850 #: /var/www/html/cacti/user_admin.php:2935 #: /var/www/html/cacti/user_admin.php:3020 #: /var/www/html/cacti/user_domains.php:32 #: /var/www/html/cacti/user_domains.php:631 #: /var/www/html/cacti/user_domains.php:714 #: /var/www/html/cacti/user_group_admin.php:1837 #: /var/www/html/cacti/user_group_admin.php:2184 #: /var/www/html/cacti/user_group_admin.php:2288 #: /var/www/html/cacti/user_group_admin.php:2373 #: /var/www/html/cacti/user_group_admin.php:2458 #: /var/www/html/cacti/user_group_admin.php:2543 #: /var/www/html/cacti/utilities.php:675 /var/www/html/cacti/utilities.php:1371 #: /var/www/html/cacti/utilities.php:1658 #: /var/www/html/cacti/utilities.php:2337 #: /var/www/html/cacti/utilities.php:2599 /var/www/html/cacti/vdef.php:669 msgid "Default" msgstr "Voreinstellung" #: /var/www/html/cacti/aggregate_graphs.php:1052 msgid "Part of Aggregate" msgstr "" # Button? #: /var/www/html/cacti/aggregate_graphs.php:1057 #: /var/www/html/cacti/aggregate_graphs.php:1390 #: /var/www/html/cacti/aggregate_templates.php:575 #: /var/www/html/cacti/automation_devices.php:469 #: /var/www/html/cacti/automation_graph_rules.php:801 #: /var/www/html/cacti/automation_networks.php:1083 #: /var/www/html/cacti/automation_snmp.php:853 #: /var/www/html/cacti/automation_templates.php:434 #: /var/www/html/cacti/automation_tree_rules.php:747 #: /var/www/html/cacti/cdef.php:751 /var/www/html/cacti/color.php:563 #: /var/www/html/cacti/color_templates.php:473 #: /var/www/html/cacti/data_input.php:642 #: /var/www/html/cacti/data_queries.php:1075 #: /var/www/html/cacti/data_source_profiles.php:827 #: /var/www/html/cacti/data_sources.php:1241 #: /var/www/html/cacti/data_templates.php:800 #: /var/www/html/cacti/gprint_presets.php:290 #: /var/www/html/cacti/graph_templates.php:656 #: /var/www/html/cacti/graph_view.php:574 /var/www/html/cacti/graphs.php:1718 #: /var/www/html/cacti/graphs_new.php:559 /var/www/html/cacti/host.php:1486 #: /var/www/html/cacti/host_templates.php:728 #: /var/www/html/cacti/lib/api_automation.php:196 #: /var/www/html/cacti/lib/api_automation.php:460 #: /var/www/html/cacti/lib/api_automation.php:721 #: /var/www/html/cacti/lib/api_automation.php:1074 #: /var/www/html/cacti/lib/clog_webapi.php:412 #: /var/www/html/cacti/lib/html.php:1170 #: /var/www/html/cacti/lib/html_filter.php:81 #: /var/www/html/cacti/lib/html_graph.php:191 #: /var/www/html/cacti/lib/html_reports.php:1444 #: /var/www/html/cacti/lib/html_tree.php:636 /var/www/html/cacti/links.php:329 #: /var/www/html/cacti/managers.php:172 /var/www/html/cacti/managers.php:545 #: /var/www/html/cacti/managers.php:775 /var/www/html/cacti/plugins.php:323 #: /var/www/html/cacti/pollers.php:539 /var/www/html/cacti/sites.php:420 #: /var/www/html/cacti/tree.php:1532 /var/www/html/cacti/user_admin.php:2228 #: /var/www/html/cacti/user_admin.php:2594 #: /var/www/html/cacti/user_admin.php:2679 #: /var/www/html/cacti/user_admin.php:2783 #: /var/www/html/cacti/user_admin.php:2868 #: /var/www/html/cacti/user_admin.php:2953 #: /var/www/html/cacti/user_admin.php:3038 msgid "Go" msgstr "Los" #: /var/www/html/cacti/aggregate_graphs.php:1057 #: /var/www/html/cacti/aggregate_graphs.php:1390 #: /var/www/html/cacti/automation_devices.php:469 #: /var/www/html/cacti/automation_snmp.php:853 #: /var/www/html/cacti/automation_templates.php:434 #: /var/www/html/cacti/cdef.php:751 /var/www/html/cacti/color.php:563 #: /var/www/html/cacti/data_input.php:642 #: /var/www/html/cacti/data_queries.php:1075 #: /var/www/html/cacti/data_source_profiles.php:827 #: /var/www/html/cacti/data_sources.php:1241 #: /var/www/html/cacti/data_templates.php:800 #: /var/www/html/cacti/gprint_presets.php:290 #: /var/www/html/cacti/graph_templates.php:656 #: /var/www/html/cacti/graph_view.php:574 /var/www/html/cacti/graphs.php:1718 #: /var/www/html/cacti/graphs_new.php:559 /var/www/html/cacti/host.php:1486 #: /var/www/html/cacti/host_templates.php:728 #: /var/www/html/cacti/lib/html_graph.php:191 #: /var/www/html/cacti/managers.php:172 /var/www/html/cacti/managers.php:545 #: /var/www/html/cacti/managers.php:775 /var/www/html/cacti/plugins.php:323 #: /var/www/html/cacti/pollers.php:539 /var/www/html/cacti/sites.php:420 #: /var/www/html/cacti/tree.php:1532 /var/www/html/cacti/user_admin.php:2228 #: /var/www/html/cacti/user_admin.php:2594 #: /var/www/html/cacti/user_admin.php:2679 #: /var/www/html/cacti/user_admin.php:2783 #: /var/www/html/cacti/user_admin.php:2868 #: /var/www/html/cacti/user_admin.php:2953 #: /var/www/html/cacti/user_admin.php:3038 #: /var/www/html/cacti/user_domains.php:643 #: /var/www/html/cacti/user_group_admin.php:1849 #: /var/www/html/cacti/user_group_admin.php:2202 #: /var/www/html/cacti/user_group_admin.php:2306 #: /var/www/html/cacti/user_group_admin.php:2391 #: /var/www/html/cacti/user_group_admin.php:2476 #: /var/www/html/cacti/user_group_admin.php:2561 #: /var/www/html/cacti/utilities.php:687 /var/www/html/cacti/utilities.php:1044 #: /var/www/html/cacti/utilities.php:1383 #: /var/www/html/cacti/utilities.php:1628 #: /var/www/html/cacti/utilities.php:2349 #: /var/www/html/cacti/utilities.php:2611 msgid "Set/Refresh Filters" msgstr "" # Button? #: /var/www/html/cacti/aggregate_graphs.php:1058 #: /var/www/html/cacti/aggregate_graphs.php:1391 #: /var/www/html/cacti/aggregate_templates.php:576 #: /var/www/html/cacti/automation_devices.php:470 #: /var/www/html/cacti/automation_graph_rules.php:802 #: /var/www/html/cacti/automation_networks.php:1084 #: /var/www/html/cacti/automation_snmp.php:854 #: /var/www/html/cacti/automation_templates.php:435 #: /var/www/html/cacti/automation_tree_rules.php:748 #: /var/www/html/cacti/cdef.php:752 /var/www/html/cacti/color.php:564 #: /var/www/html/cacti/color_templates.php:474 #: /var/www/html/cacti/data_input.php:643 #: /var/www/html/cacti/data_queries.php:1076 #: /var/www/html/cacti/data_source_profiles.php:828 #: /var/www/html/cacti/data_sources.php:1242 #: /var/www/html/cacti/data_templates.php:801 #: /var/www/html/cacti/gprint_presets.php:291 #: /var/www/html/cacti/graph_templates.php:657 #: /var/www/html/cacti/graph_view.php:575 /var/www/html/cacti/graphs.php:1719 #: /var/www/html/cacti/graphs_new.php:560 /var/www/html/cacti/host.php:1487 #: /var/www/html/cacti/host_templates.php:729 #: /var/www/html/cacti/lib/api_automation.php:197 #: /var/www/html/cacti/lib/api_automation.php:461 #: /var/www/html/cacti/lib/api_automation.php:722 #: /var/www/html/cacti/lib/api_automation.php:1075 #: /var/www/html/cacti/lib/clog_webapi.php:413 #: /var/www/html/cacti/lib/html_filter.php:86 #: /var/www/html/cacti/lib/html_graph.php:192 #: /var/www/html/cacti/lib/html_graph.php:308 #: /var/www/html/cacti/lib/html_reports.php:1445 #: /var/www/html/cacti/lib/html_tree.php:637 #: /var/www/html/cacti/lib/html_tree.php:747 /var/www/html/cacti/links.php:330 #: /var/www/html/cacti/managers.php:173 /var/www/html/cacti/managers.php:546 #: /var/www/html/cacti/managers.php:776 /var/www/html/cacti/plugins.php:324 #: /var/www/html/cacti/pollers.php:540 /var/www/html/cacti/sites.php:421 #: /var/www/html/cacti/tree.php:1533 /var/www/html/cacti/user_admin.php:2229 #: /var/www/html/cacti/user_admin.php:2595 #: /var/www/html/cacti/user_admin.php:2680 #: /var/www/html/cacti/user_admin.php:2784 #: /var/www/html/cacti/user_admin.php:2869 #: /var/www/html/cacti/user_admin.php:2954 #: /var/www/html/cacti/user_admin.php:3039 #: /var/www/html/cacti/user_domains.php:644 msgid "Clear" msgstr "Löschen" #: /var/www/html/cacti/aggregate_graphs.php:1058 #: /var/www/html/cacti/aggregate_graphs.php:1391 #: /var/www/html/cacti/automation_snmp.php:854 #: /var/www/html/cacti/automation_templates.php:435 #: /var/www/html/cacti/cdef.php:752 /var/www/html/cacti/color.php:564 #: /var/www/html/cacti/data_input.php:643 #: /var/www/html/cacti/data_queries.php:1076 #: /var/www/html/cacti/data_source_profiles.php:828 #: /var/www/html/cacti/data_sources.php:1242 #: /var/www/html/cacti/data_templates.php:801 #: /var/www/html/cacti/gprint_presets.php:291 #: /var/www/html/cacti/graph_templates.php:657 #: /var/www/html/cacti/graph_view.php:575 /var/www/html/cacti/graphs.php:1719 #: /var/www/html/cacti/graphs_new.php:560 /var/www/html/cacti/host.php:1487 #: /var/www/html/cacti/host_templates.php:729 #: /var/www/html/cacti/lib/html_graph.php:192 #: /var/www/html/cacti/lib/html_tree.php:637 #: /var/www/html/cacti/managers.php:173 /var/www/html/cacti/managers.php:546 #: /var/www/html/cacti/managers.php:776 /var/www/html/cacti/plugins.php:324 #: /var/www/html/cacti/pollers.php:540 /var/www/html/cacti/sites.php:421 #: /var/www/html/cacti/tree.php:1533 /var/www/html/cacti/user_admin.php:2229 #: /var/www/html/cacti/user_admin.php:2595 #: /var/www/html/cacti/user_admin.php:2680 #: /var/www/html/cacti/user_admin.php:2784 #: /var/www/html/cacti/user_admin.php:2869 #: /var/www/html/cacti/user_admin.php:2954 #: /var/www/html/cacti/user_admin.php:3039 #: /var/www/html/cacti/user_domains.php:644 #: /var/www/html/cacti/user_group_admin.php:1850 #: /var/www/html/cacti/user_group_admin.php:2203 #: /var/www/html/cacti/user_group_admin.php:2307 #: /var/www/html/cacti/user_group_admin.php:2392 #: /var/www/html/cacti/user_group_admin.php:2477 #: /var/www/html/cacti/user_group_admin.php:2562 #: /var/www/html/cacti/utilities.php:688 /var/www/html/cacti/utilities.php:1045 #: /var/www/html/cacti/utilities.php:1384 #: /var/www/html/cacti/utilities.php:1629 #: /var/www/html/cacti/utilities.php:2350 #: /var/www/html/cacti/utilities.php:2612 msgid "Clear Filters" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:1137 #: /var/www/html/cacti/aggregate_graphs.php:1454 #: /var/www/html/cacti/graph_view.php:618 /var/www/html/cacti/graphs.php:1089 #: /var/www/html/cacti/lib/api_automation.php:569 #: /var/www/html/cacti/user_admin.php:996 #: /var/www/html/cacti/user_group_admin.php:821 msgid "Graph Title" msgstr "Graph Titel" #: /var/www/html/cacti/aggregate_graphs.php:1138 #: /var/www/html/cacti/aggregate_graphs.php:1455 #: /var/www/html/cacti/automation_graph_rules.php:900 #: /var/www/html/cacti/automation_tree_rules.php:841 #: /var/www/html/cacti/data_queries.php:1159 #: /var/www/html/cacti/data_sources.php:1405 #: /var/www/html/cacti/data_templates.php:910 #: /var/www/html/cacti/graph_templates.php:764 #: /var/www/html/cacti/graphs.php:1827 /var/www/html/cacti/host.php:1554 #: /var/www/html/cacti/host_templates.php:817 #: /var/www/html/cacti/lib/api_automation.php:280 #: /var/www/html/cacti/pollers.php:613 /var/www/html/cacti/sites.php:494 #: /var/www/html/cacti/tree.php:1583 /var/www/html/cacti/user_admin.php:996 #: /var/www/html/cacti/user_admin.php:1091 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_admin.php:1376 #: /var/www/html/cacti/user_admin.php:1513 #: /var/www/html/cacti/user_group_admin.php:675 #: /var/www/html/cacti/user_group_admin.php:821 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:1109 #: /var/www/html/cacti/user_group_admin.php:1243 msgid "ID" msgstr "ID" #: /var/www/html/cacti/aggregate_graphs.php:1139 msgid "Included in Aggregate" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:1140 #: /var/www/html/cacti/aggregate_graphs.php:1457 #: /var/www/html/cacti/graph_templates.php:767 #: /var/www/html/cacti/graphs.php:1829 msgid "Size" msgstr "Größe" #: /var/www/html/cacti/aggregate_graphs.php:1150 #: /var/www/html/cacti/cdef.php:872 /var/www/html/cacti/color.php:725 #: /var/www/html/cacti/color.php:727 #: /var/www/html/cacti/color_templates.php:565 #: /var/www/html/cacti/data_input.php:743 #: /var/www/html/cacti/data_queries.php:1179 #: /var/www/html/cacti/data_source_profiles.php:958 #: /var/www/html/cacti/data_source_profiles.php:959 #: /var/www/html/cacti/data_sources.php:1449 #: /var/www/html/cacti/data_sources.php:1450 #: /var/www/html/cacti/data_templates.php:930 #: /var/www/html/cacti/gprint_presets.php:413 #: /var/www/html/cacti/graph_templates.php:785 #: /var/www/html/cacti/host_templates.php:836 #: /var/www/html/cacti/include/global_settings.php:415 #: /var/www/html/cacti/include/global_settings.php:662 #: /var/www/html/cacti/include/global_settings.php:1290 #: /var/www/html/cacti/install/index.php:543 #: /var/www/html/cacti/install/index.php:564 /var/www/html/cacti/tree.php:1617 #: /var/www/html/cacti/tree.php:1618 /var/www/html/cacti/user_admin.php:2297 #: /var/www/html/cacti/user_domains.php:729 #: /var/www/html/cacti/user_group_admin.php:1917 #: /var/www/html/cacti/vdef.php:866 msgid "No" msgstr "Nein" #: /var/www/html/cacti/aggregate_graphs.php:1150 #: /var/www/html/cacti/cdef.php:872 /var/www/html/cacti/color.php:725 #: /var/www/html/cacti/color.php:727 #: /var/www/html/cacti/color_templates.php:565 #: /var/www/html/cacti/data_input.php:743 #: /var/www/html/cacti/data_queries.php:1179 #: /var/www/html/cacti/data_source_profiles.php:957 #: /var/www/html/cacti/data_source_profiles.php:958 #: /var/www/html/cacti/data_source_profiles.php:959 #: /var/www/html/cacti/data_sources.php:1449 #: /var/www/html/cacti/data_sources.php:1450 #: /var/www/html/cacti/data_templates.php:930 #: /var/www/html/cacti/gprint_presets.php:413 #: /var/www/html/cacti/graph_templates.php:785 #: /var/www/html/cacti/host_templates.php:836 #: /var/www/html/cacti/include/global_settings.php:415 #: /var/www/html/cacti/include/global_settings.php:661 #: /var/www/html/cacti/include/global_settings.php:1290 #: /var/www/html/cacti/install/index.php:542 #: /var/www/html/cacti/install/index.php:543 #: /var/www/html/cacti/install/index.php:563 #: /var/www/html/cacti/install/index.php:564 /var/www/html/cacti/tree.php:1617 #: /var/www/html/cacti/tree.php:1618 /var/www/html/cacti/user_admin.php:2295 #: /var/www/html/cacti/user_domains.php:727 #: /var/www/html/cacti/user_domains.php:729 #: /var/www/html/cacti/user_group_admin.php:1915 #: /var/www/html/cacti/vdef.php:866 msgid "Yes" msgstr "Ja" #: /var/www/html/cacti/aggregate_graphs.php:1156 #: /var/www/html/cacti/graphs.php:1848 #: /var/www/html/cacti/lib/api_automation.php:596 msgid "No Graphs Found" msgstr "Kein Graph gefunden" #: /var/www/html/cacti/aggregate_graphs.php:1337 #: /var/www/html/cacti/aggregate_graphs.php:1445 #: /var/www/html/cacti/lib/functions.php:2561 msgid "Aggregate Graphs" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:1352 #: /var/www/html/cacti/data_sources.php:1205 #: /var/www/html/cacti/graph_view.php:526 /var/www/html/cacti/graphs.php:1693 #: /var/www/html/cacti/host.php:1467 #: /var/www/html/cacti/lib/api_automation.php:441 #: /var/www/html/cacti/lib/html_graph.php:159 #: /var/www/html/cacti/lib/html_tree.php:604 #: /var/www/html/cacti/rrdcleaner.php:351 #: /var/www/html/cacti/user_admin.php:2550 #: /var/www/html/cacti/user_admin.php:2743 #: /var/www/html/cacti/user_group_admin.php:2158 #: /var/www/html/cacti/user_group_admin.php:2266 #: /var/www/html/cacti/utilities.php:1598 msgid "Template" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:1356 #: /var/www/html/cacti/automation_devices.php:458 #: /var/www/html/cacti/automation_devices.php:488 #: /var/www/html/cacti/automation_devices.php:503 #: /var/www/html/cacti/automation_devices.php:518 #: /var/www/html/cacti/automation_graph_rules.php:757 #: /var/www/html/cacti/automation_graph_rules.php:779 #: /var/www/html/cacti/automation_tree_rules.php:725 #: /var/www/html/cacti/data_sources.php:1209 #: /var/www/html/cacti/graphs.php:1697 /var/www/html/cacti/graphs_items.php:330 #: /var/www/html/cacti/host.php:1436 /var/www/html/cacti/host.php:1454 #: /var/www/html/cacti/host.php:1471 /var/www/html/cacti/host.php:1506 #: /var/www/html/cacti/lib/api_automation.php:151 #: /var/www/html/cacti/lib/api_automation.php:169 #: /var/www/html/cacti/lib/api_automation.php:428 #: /var/www/html/cacti/lib/api_automation.php:445 #: /var/www/html/cacti/lib/api_automation.php:1029 #: /var/www/html/cacti/lib/api_automation.php:1047 #: /var/www/html/cacti/lib/html.php:1663 /var/www/html/cacti/lib/html.php:1684 #: /var/www/html/cacti/lib/html_reports.php:1423 #: /var/www/html/cacti/managers.php:512 /var/www/html/cacti/managers.php:765 #: /var/www/html/cacti/user_admin.php:2554 #: /var/www/html/cacti/user_admin.php:2747 #: /var/www/html/cacti/user_group_admin.php:2162 #: /var/www/html/cacti/user_group_admin.php:2270 #: /var/www/html/cacti/utilities.php:664 /var/www/html/cacti/utilities.php:1338 #: /var/www/html/cacti/utilities.php:1602 #: /var/www/html/cacti/utilities.php:1647 #: /var/www/html/cacti/utilities.php:2322 #: /var/www/html/cacti/utilities.php:2573 #: /var/www/html/cacti/utilities.php:2586 msgid "Any" msgstr "Beliebig" #: /var/www/html/cacti/aggregate_graphs.php:1357 #: /var/www/html/cacti/aggregate_graphs.php:1469 #: /var/www/html/cacti/automation_graph_rules.php:910 #: /var/www/html/cacti/automation_graph_rules.php:911 #: /var/www/html/cacti/automation_networks.php:421 #: /var/www/html/cacti/automation_networks.php:633 #: /var/www/html/cacti/automation_tree_rules.php:853 #: /var/www/html/cacti/data_sources.php:824 #: /var/www/html/cacti/data_sources.php:1210 #: /var/www/html/cacti/data_sources.php:1435 #: /var/www/html/cacti/data_templates.php:932 #: /var/www/html/cacti/graph_view.php:787 /var/www/html/cacti/graphs.php:358 #: /var/www/html/cacti/graphs.php:1365 /var/www/html/cacti/graphs.php:1374 #: /var/www/html/cacti/graphs.php:1698 /var/www/html/cacti/graphs_items.php:331 #: /var/www/html/cacti/graphs_items.php:443 /var/www/html/cacti/host.php:1049 #: /var/www/html/cacti/host.php:1437 /var/www/html/cacti/host.php:1472 #: /var/www/html/cacti/include/global_arrays.php:358 #: /var/www/html/cacti/include/global_arrays.php:411 #: /var/www/html/cacti/include/global_arrays.php:487 #: /var/www/html/cacti/include/global_arrays.php:622 #: /var/www/html/cacti/include/global_arrays.php:645 #: /var/www/html/cacti/include/global_arrays.php:1373 #: /var/www/html/cacti/include/global_form.php:392 #: /var/www/html/cacti/include/global_form.php:698 #: /var/www/html/cacti/include/global_form.php:706 #: /var/www/html/cacti/include/global_form.php:714 #: /var/www/html/cacti/include/global_form.php:752 #: /var/www/html/cacti/include/global_form.php:759 #: /var/www/html/cacti/include/global_form.php:785 #: /var/www/html/cacti/include/global_form.php:814 #: /var/www/html/cacti/include/global_form.php:822 #: /var/www/html/cacti/include/global_form.php:1004 #: /var/www/html/cacti/include/global_form.php:1013 #: /var/www/html/cacti/include/global_form.php:2057 #: /var/www/html/cacti/include/global_form.php:2099 #: /var/www/html/cacti/include/global_settings.php:462 #: /var/www/html/cacti/include/global_settings.php:470 #: /var/www/html/cacti/include/global_settings.php:936 #: /var/www/html/cacti/include/global_settings.php:1360 #: /var/www/html/cacti/lib/api_automation.php:152 #: /var/www/html/cacti/lib/api_automation.php:429 #: /var/www/html/cacti/lib/api_automation.php:446 #: /var/www/html/cacti/lib/api_automation.php:584 #: /var/www/html/cacti/lib/api_automation.php:1030 #: /var/www/html/cacti/lib/html.php:1664 /var/www/html/cacti/lib/html.php:1682 #: /var/www/html/cacti/lib/html_form.php:318 #: /var/www/html/cacti/lib/html_graph.php:384 #: /var/www/html/cacti/lib/html_reports.php:311 #: /var/www/html/cacti/lib/html_reports.php:359 #: /var/www/html/cacti/lib/html_reports.php:371 #: /var/www/html/cacti/lib/html_reports.php:380 #: /var/www/html/cacti/lib/html_reports.php:390 #: /var/www/html/cacti/lib/html_reports.php:850 #: /var/www/html/cacti/lib/html_tree.php:824 #: /var/www/html/cacti/settings.php:208 /var/www/html/cacti/settings.php:227 #: /var/www/html/cacti/settings.php:253 /var/www/html/cacti/user_admin.php:2555 #: /var/www/html/cacti/user_admin.php:2748 #: /var/www/html/cacti/user_group_admin.php:2163 #: /var/www/html/cacti/user_group_admin.php:2271 #: /var/www/html/cacti/utilities.php:1603 msgid "None" msgstr "Nichts" #: /var/www/html/cacti/aggregate_graphs.php:1454 msgid "The title for the Aggregate Graphs" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:1455 msgid "The internal database identifier for this object" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:1456 #: /var/www/html/cacti/graphs.php:1093 msgid "Aggregate Template" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:1456 msgid "The Aggregate Template that this Aggregate Graphs is based upon" msgstr "" #: /var/www/html/cacti/aggregate_graphs.php:1475 msgid "No Aggregate Graphs Found" msgstr "" #: /var/www/html/cacti/aggregate_items.php:346 msgid "Override Values for Graph Item" msgstr "" #: /var/www/html/cacti/aggregate_items.php:357 #: /var/www/html/cacti/lib/api_aggregate.php:1480 msgid "Override this Value" msgstr "" #: /var/www/html/cacti/aggregate_templates.php:307 msgid "Click 'Continue' to Delete the following Aggregate Graph Template(s)." msgstr "" #: /var/www/html/cacti/aggregate_templates.php:312 msgid "Delete Color Template(s)" msgstr "" #: /var/www/html/cacti/aggregate_templates.php:315 msgid "You must select at least one Aggregate Graph Template." msgstr "" #: /var/www/html/cacti/aggregate_templates.php:351 #, php-format msgid "Aggregate Template [edit: %s]" msgstr "" #: /var/www/html/cacti/aggregate_templates.php:353 msgid "Aggregate Template [new]" msgstr "" #: /var/www/html/cacti/aggregate_templates.php:531 #: /var/www/html/cacti/aggregate_templates.php:630 #: /var/www/html/cacti/lib/functions.php:2543 msgid "Aggregate Templates" msgstr "" #: /var/www/html/cacti/aggregate_templates.php:544 #: /var/www/html/cacti/automation_templates.php:418 #: /var/www/html/cacti/automation_templates.php:501 #: /var/www/html/cacti/color_templates.php:549 #: /var/www/html/cacti/include/global_arrays.php:747 #: /var/www/html/cacti/include/global_arrays.php:805 #: /var/www/html/cacti/install/index.php:886 #: /var/www/html/cacti/user_admin.php:2846 #: /var/www/html/cacti/user_group_admin.php:2369 msgid "Templates" msgstr "Schablonen" #: /var/www/html/cacti/aggregate_templates.php:570 #: /var/www/html/cacti/cdef.php:746 /var/www/html/cacti/color.php:558 #: /var/www/html/cacti/color_templates.php:468 #: /var/www/html/cacti/data_sources.php:1277 #: /var/www/html/cacti/gprint_presets.php:285 #: /var/www/html/cacti/graph_templates.php:651 /var/www/html/cacti/vdef.php:682 msgid "Has Graphs" msgstr "" #: /var/www/html/cacti/aggregate_templates.php:639 #: /var/www/html/cacti/color_templates.php:546 msgid "Template Title" msgstr "Überschrift des Templates" #: /var/www/html/cacti/aggregate_templates.php:640 msgid "" "Aggregate Templates that are in use can not be Deleted. In use is defined " "as being referenced by an Aggregate." msgstr "" #: /var/www/html/cacti/aggregate_templates.php:640 #: /var/www/html/cacti/cdef.php:855 /var/www/html/cacti/color.php:702 #: /var/www/html/cacti/color_templates.php:547 #: /var/www/html/cacti/data_input.php:725 #: /var/www/html/cacti/data_queries.php:1160 #: /var/www/html/cacti/data_source_profiles.php:931 #: /var/www/html/cacti/data_sources.php:1407 #: /var/www/html/cacti/data_templates.php:911 #: /var/www/html/cacti/gprint_presets.php:394 #: /var/www/html/cacti/graph_templates.php:765 #: /var/www/html/cacti/host_templates.php:818 /var/www/html/cacti/vdef.php:848 msgid "Deletable" msgstr "" #: /var/www/html/cacti/aggregate_templates.php:641 #: /var/www/html/cacti/cdef.php:856 /var/www/html/cacti/color.php:703 #: /var/www/html/cacti/data_queries.php:917 #: /var/www/html/cacti/data_queries.php:1161 #: /var/www/html/cacti/gprint_presets.php:395 #: /var/www/html/cacti/graph_templates.php:766 /var/www/html/cacti/vdef.php:849 msgid "Graphs Using" msgstr "" #: /var/www/html/cacti/aggregate_templates.php:642 #: /var/www/html/cacti/graph_view.php:618 #: /var/www/html/cacti/include/global_arrays.php:707 #: /var/www/html/cacti/include/global_arrays.php:1043 #: /var/www/html/cacti/include/global_form.php:1295 #: /var/www/html/cacti/include/global_form.php:1523 #: /var/www/html/cacti/lib/html_reports.php:376 #: /var/www/html/cacti/tree.php:1312 msgid "Graph Template" msgstr "Graph Template" #: /var/www/html/cacti/aggregate_templates.php:664 msgid "No Aggregate Templates Found" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:93 msgid "You cannot use a previously entered password!" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:110 #: /var/www/html/cacti/auth_changepassword.php:120 msgid "Your current password is not correct. Please try again." msgstr "" "Ihr aktuelles Kennwort ist nicht korrekt. Bitte versuchen Sie es erneut." #: /var/www/html/cacti/auth_changepassword.php:115 #: /var/www/html/cacti/auth_changepassword.php:125 msgid "" "Your new password cannot be the same as the old password. Please try again." msgstr "" "Ihr neues und altes Kennwort müssen sich voneinander unterscheiden. Bitte " "versuchen Sie es erneut." #: /var/www/html/cacti/auth_changepassword.php:131 msgid "Your new passwords do not match, please retype." msgstr "Ihre neuen Kennwörter stimmen nicht überein, bitte erneut eingeben." #: /var/www/html/cacti/auth_changepassword.php:224 msgid "Forced password change" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:228 msgid "Password requirements include:" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:232 #, php-format msgid "Must be at least %d characters in length" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:236 msgid "Must include mixed case" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:240 msgid "Must include at least 1 number" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:244 msgid "Must include at least 1 special character" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:248 #, php-format msgid "Cannot be reused for %d password changes" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:258 #: /var/www/html/cacti/auth_changepassword.php:284 #: /var/www/html/cacti/include/global_form.php:1440 #: /var/www/html/cacti/lib/functions.php:1837 msgid "Change Password" msgstr "Kennwort ändern" #: /var/www/html/cacti/auth_changepassword.php:290 msgid "Please enter your current password and your new
    Cacti password." msgstr "" #: /var/www/html/cacti/auth_changepassword.php:295 msgid "Current password" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:299 msgid "New password" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:303 msgid "Confirm new password" msgstr "" #: /var/www/html/cacti/auth_changepassword.php:307 #: /var/www/html/cacti/auth_profile.php:399 #: /var/www/html/cacti/auth_profile.php:430 #: /var/www/html/cacti/graphs_new.php:561 #: /var/www/html/cacti/lib/html_form.php:1138 #: /var/www/html/cacti/lib/html_form.php:1147 #: /var/www/html/cacti/lib/html_graph.php:194 #: /var/www/html/cacti/lib/html_tree.php:639 #: /var/www/html/cacti/settings.php:295 msgid "Save" msgstr "Speichern" #: /var/www/html/cacti/auth_changepassword.php:316 #: /var/www/html/cacti/auth_login.php:673 #, php-format msgid "Version %1$s | %2$s" msgstr "" #: /var/www/html/cacti/auth_login.php:50 msgid "" "Web Basic Authentication configured, but no username was passed from the web " "server. Please make sure you have authentication enabled on the web server." msgstr "" "Web-Standardauthentifizierung konfiguriert, aber kein Benutzername wurde vom " "Web-Server übergeben. Bitte stellen Sie sicher, dass Sie die " "Authentifizierung auf dem Server aktiviert haben." #: /var/www/html/cacti/auth_login.php:97 #, php-format msgid "" "%s authenticated by Web Server, but both Template and Guest Users are not " "defined in Cacti." msgstr "" #: /var/www/html/cacti/auth_login.php:116 #: /var/www/html/cacti/auth_login.php:406 #, php-format msgid "LDAP Search Error: %s" msgstr "" #: /var/www/html/cacti/auth_login.php:143 #: /var/www/html/cacti/auth_login.php:446 #, php-format msgid "LDAP Error: %s" msgstr "" #: /var/www/html/cacti/auth_login.php:220 #: /var/www/html/cacti/auth_login.php:438 #, php-format msgid "Template user %s does not exist." msgstr "" #: /var/www/html/cacti/auth_login.php:235 #, php-format msgid "Guest user %s does not exist." msgstr "" #: /var/www/html/cacti/auth_login.php:270 msgid "Access Denied, user account disabled." msgstr "Zugriff verweigert, Benutzerkonto deaktiviert." #: /var/www/html/cacti/auth_login.php:356 msgid "Access Denied, please contact you Cacti Administrator." msgstr "Zugriff verweigert, bitte kontaktieren Sie Ihren Cacti Administrator." #: /var/www/html/cacti/auth_login.php:541 msgid "Login to Cacti" msgstr "" #: /var/www/html/cacti/auth_login.php:575 msgid "User Login" msgstr "Benutzer anmelden" #: /var/www/html/cacti/auth_login.php:587 msgid "Enter your Username and Password below" msgstr "Geben Sie Ihren Benutzernamen und Kennwort ein" #: /var/www/html/cacti/auth_login.php:593 #: /var/www/html/cacti/auth_login.php:596 #: /var/www/html/cacti/include/global_settings.php:1223 #: /var/www/html/cacti/lib/functions.php:3855 msgid "Username" msgstr "Benutzername" #: /var/www/html/cacti/auth_login.php:601 #: /var/www/html/cacti/include/global_form.php:1407 #: /var/www/html/cacti/lib/functions.php:3856 msgid "Password" msgstr "Kennwort" #: /var/www/html/cacti/auth_login.php:613 #: /var/www/html/cacti/include/global_settings.php:1601 #: /var/www/html/cacti/lib/auth.php:287 /var/www/html/cacti/lib/auth.php:299 #: /var/www/html/cacti/lib/auth.php:310 msgid "Local" msgstr "Lokal" #: /var/www/html/cacti/auth_login.php:617 #: /var/www/html/cacti/include/global_arrays.php:633 #: /var/www/html/cacti/lib/auth.php:311 msgid "LDAP" msgstr "LDAP" #: /var/www/html/cacti/auth_login.php:628 #: /var/www/html/cacti/user_admin.php:2278 #: /var/www/html/cacti/user_group_admin.php:675 msgid "Realm" msgstr "Bereich" #: /var/www/html/cacti/auth_login.php:645 msgid "Keep me signed in" msgstr "Angemeldet bleiben" #: /var/www/html/cacti/auth_login.php:651 msgid "Login" msgstr "Anmelden" #: /var/www/html/cacti/auth_login.php:664 msgid "Invalid User Name/Password Please Retype" msgstr "Ungültiger Benutzername oder Kennwort. Bitte erneut eingeben" #: /var/www/html/cacti/auth_login.php:667 msgid "User Account Disabled" msgstr "Benutzerkonto deaktiviert" #: /var/www/html/cacti/auth_profile.php:150 msgid "User Account Details" msgstr "Benutzerkonto" #: /var/www/html/cacti/auth_profile.php:161 #: /var/www/html/cacti/include/global_arrays.php:616 #: /var/www/html/cacti/include/global_session.php:101 #: /var/www/html/cacti/include/global_settings.php:1930 #: /var/www/html/cacti/lib/html.php:1549 /var/www/html/cacti/lib/html.php:1571 msgid "Tree View" msgstr "Baum Ansicht" #: /var/www/html/cacti/auth_profile.php:165 #: /var/www/html/cacti/include/global_arrays.php:617 #: /var/www/html/cacti/include/global_session.php:102 #: /var/www/html/cacti/lib/html.php:1556 /var/www/html/cacti/lib/html.php:1580 msgid "List View" msgstr "Listen Ansicht" #: /var/www/html/cacti/auth_profile.php:169 #: /var/www/html/cacti/include/global_arrays.php:618 #: /var/www/html/cacti/include/global_session.php:103 #: /var/www/html/cacti/lib/html.php:1563 msgid "Preview View" msgstr "Vorschau" #: /var/www/html/cacti/auth_profile.php:182 #: /var/www/html/cacti/include/global_form.php:1383 #: /var/www/html/cacti/user_admin.php:2275 msgid "User Name" msgstr "Benutzername" #: /var/www/html/cacti/auth_profile.php:183 #: /var/www/html/cacti/include/global_form.php:1384 msgid "The login name for this user." msgstr "Der Anmeldename für diesen Benutzer." #: /var/www/html/cacti/auth_profile.php:190 #: /var/www/html/cacti/include/global_form.php:1391 #: /var/www/html/cacti/user_admin.php:2276 #: /var/www/html/cacti/user_group_admin.php:675 #: /var/www/html/cacti/utilities.php:771 msgid "Full Name" msgstr "Vollständiger Name" #: /var/www/html/cacti/auth_profile.php:191 #: /var/www/html/cacti/include/global_form.php:1392 msgid "" "A more descriptive name for this user, that can include spaces or special " "characters." msgstr "" "Beschreibender Name für den Benutzer, darf Leerzeichen oder spezielle " "Zeichen enthalten." #: /var/www/html/cacti/auth_profile.php:198 #: /var/www/html/cacti/include/global_form.php:1399 msgid "Email Address" msgstr "E-Mail Adresse" #: /var/www/html/cacti/auth_profile.php:199 msgid "An Email Address you be reached at." msgstr "Eine e-Mail-Adresse unter welcher Sie erreichbar sind." #: /var/www/html/cacti/auth_profile.php:206 #: /var/www/html/cacti/auth_profile.php:208 msgid "Clear Private Data" msgstr "Persönliche Daten löschen" #: /var/www/html/cacti/auth_profile.php:207 msgid "Clear Private Data including Column sizing." msgstr "" #: /var/www/html/cacti/auth_profile.php:217 #: /var/www/html/cacti/auth_profile.php:219 msgid "Logout Everywhere" msgstr "" #: /var/www/html/cacti/auth_profile.php:218 msgid "Clear all your Login Session Tokens." msgstr "" #: /var/www/html/cacti/auth_profile.php:239 #: /var/www/html/cacti/user_admin.php:1942 #: /var/www/html/cacti/user_group_admin.php:1671 msgid "User Settings" msgstr "" #: /var/www/html/cacti/auth_profile.php:296 msgid "Private Data Cleared" msgstr "" #: /var/www/html/cacti/auth_profile.php:296 msgid "Your Private Data has been cleared." msgstr "Ihre privaten Daten wurden gelöscht." #: /var/www/html/cacti/auth_profile.php:316 msgid "All your login sessions have been cleared." msgstr "" #: /var/www/html/cacti/auth_profile.php:316 msgid "User Sessions Cleared" msgstr "" #: /var/www/html/cacti/automation_devices.php:31 msgid "Add Device" msgstr "Gerät hinzufügen" #: /var/www/html/cacti/automation_devices.php:39 #: /var/www/html/cacti/automation_devices.php:271 #: /var/www/html/cacti/automation_devices.php:389 #: /var/www/html/cacti/automation_devices.php:399 #: /var/www/html/cacti/automation_devices.php:621 #: /var/www/html/cacti/automation_devices.php:622 #: /var/www/html/cacti/host.php:1511 #: /var/www/html/cacti/lib/api_automation.php:174 #: /var/www/html/cacti/lib/api_automation.php:1052 #: /var/www/html/cacti/lib/html_utility.php:837 msgid "Down" msgstr "Runter" #: /var/www/html/cacti/automation_devices.php:40 #: /var/www/html/cacti/automation_devices.php:271 #: /var/www/html/cacti/automation_devices.php:391 #: /var/www/html/cacti/automation_devices.php:401 #: /var/www/html/cacti/automation_devices.php:621 #: /var/www/html/cacti/automation_devices.php:622 #: /var/www/html/cacti/host.php:1510 #: /var/www/html/cacti/lib/api_automation.php:173 #: /var/www/html/cacti/lib/api_automation.php:1051 #: /var/www/html/cacti/lib/html_utility.php:843 msgid "Up" msgstr "Hoch" #: /var/www/html/cacti/automation_devices.php:90 msgid "Added manually through device automation interface." msgstr "" #: /var/www/html/cacti/automation_devices.php:106 msgid "Added to Cacti" msgstr "" #: /var/www/html/cacti/automation_devices.php:106 #: /var/www/html/cacti/automation_devices.php:108 #: /var/www/html/cacti/data_sources.php:822 #: /var/www/html/cacti/graph_view.php:618 /var/www/html/cacti/graphs.php:1370 #: /var/www/html/cacti/include/global_arrays.php:703 #: /var/www/html/cacti/include/global_arrays.php:748 #: /var/www/html/cacti/include/global_arrays.php:1489 #: /var/www/html/cacti/lib/api_automation.php:424 #: /var/www/html/cacti/lib/functions.php:3850 #: /var/www/html/cacti/lib/html.php:1659 /var/www/html/cacti/lib/html.php:1689 #: /var/www/html/cacti/lib/html_reports.php:366 #: /var/www/html/cacti/lib/html_tree.php:342 #: /var/www/html/cacti/lib/html_tree.php:370 #: /var/www/html/cacti/utilities.php:1453 msgid "Device" msgstr "Zielsysteme" #: /var/www/html/cacti/automation_devices.php:108 msgid "Not Added to Cacti" msgstr "" #: /var/www/html/cacti/automation_devices.php:177 msgid "Click 'Continue' to add the following Discovered device(s)." msgstr "" #: /var/www/html/cacti/automation_devices.php:183 #: /var/www/html/cacti/pollers.php:603 msgid "Pollers" msgstr "Poller" #: /var/www/html/cacti/automation_devices.php:187 msgid "Select Template" msgstr "" #: /var/www/html/cacti/automation_devices.php:193 #: /var/www/html/cacti/automation_templates.php:307 #: /var/www/html/cacti/automation_templates.php:511 msgid "Availability Method" msgstr "" #: /var/www/html/cacti/automation_devices.php:199 msgid "Add Device(s)" msgstr "" #: /var/www/html/cacti/automation_devices.php:202 msgid "You must select at least one Device." msgstr "" #: /var/www/html/cacti/automation_devices.php:239 #: /var/www/html/cacti/automation_devices.php:529 #: /var/www/html/cacti/host.php:1423 /var/www/html/cacti/host.php:1517 #: /var/www/html/cacti/host.php:1617 #: /var/www/html/cacti/include/global_arrays.php:735 #: /var/www/html/cacti/include/global_arrays.php:787 #: /var/www/html/cacti/lib/api_automation.php:180 #: /var/www/html/cacti/lib/api_automation.php:475 #: /var/www/html/cacti/lib/functions.php:2147 #: /var/www/html/cacti/pollers.php:617 /var/www/html/cacti/sites.php:495 #: /var/www/html/cacti/tree.php:1591 /var/www/html/cacti/user_admin.php:1224 #: /var/www/html/cacti/user_admin.php:2761 #: /var/www/html/cacti/user_group_admin.php:958 #: /var/www/html/cacti/user_group_admin.php:2284 #: /var/www/html/cacti/utilities.php:274 msgid "Devices" msgstr "Zielsysteme" #: /var/www/html/cacti/automation_devices.php:248 msgid "Device Name" msgstr "" #: /var/www/html/cacti/automation_devices.php:249 msgid "IP" msgstr "" #: /var/www/html/cacti/automation_devices.php:250 msgid "SNMP Name" msgstr "" #: /var/www/html/cacti/automation_devices.php:251 #: /var/www/html/cacti/include/global_settings.php:1597 msgid "Location" msgstr "" #: /var/www/html/cacti/automation_devices.php:252 msgid "Contact" msgstr "" #: /var/www/html/cacti/automation_devices.php:253 #: /var/www/html/cacti/include/global_form.php:942 #: /var/www/html/cacti/include/global_form.php:978 #: /var/www/html/cacti/include/global_form.php:1259 #: /var/www/html/cacti/include/global_form.php:1602 #: /var/www/html/cacti/install/index.php:887 #: /var/www/html/cacti/lib/api_automation.php:276 #: /var/www/html/cacti/lib/api_automation.php:1168 #: /var/www/html/cacti/managers.php:216 /var/www/html/cacti/tree.php:669 #: /var/www/html/cacti/user_admin.php:1091 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:1903 msgid "Description" msgstr "Beschreibung" #: /var/www/html/cacti/automation_devices.php:254 #: /var/www/html/cacti/automation_devices.php:499 msgid "OS" msgstr "" #: /var/www/html/cacti/automation_devices.php:255 #: /var/www/html/cacti/host.php:1584 #: /var/www/html/cacti/include/global_arrays.php:359 msgid "Uptime" msgstr "" #: /var/www/html/cacti/automation_devices.php:256 #: /var/www/html/cacti/automation_devices.php:514 #: /var/www/html/cacti/utilities.php:1648 msgid "SNMP" msgstr "SNMP" #: /var/www/html/cacti/automation_devices.php:257 #: /var/www/html/cacti/automation_devices.php:484 #: /var/www/html/cacti/automation_graph_rules.php:775 #: /var/www/html/cacti/automation_networks.php:964 #: /var/www/html/cacti/automation_tree_rules.php:721 #: /var/www/html/cacti/data_sources.php:1230 #: /var/www/html/cacti/data_templates.php:915 /var/www/html/cacti/host.php:715 #: /var/www/html/cacti/host.php:814 /var/www/html/cacti/host.php:1502 #: /var/www/html/cacti/host.php:1572 #: /var/www/html/cacti/lib/api_automation.php:165 #: /var/www/html/cacti/lib/api_automation.php:278 #: /var/www/html/cacti/lib/api_automation.php:568 #: /var/www/html/cacti/lib/api_automation.php:1043 #: /var/www/html/cacti/lib/api_automation.php:1171 #: /var/www/html/cacti/lib/html_reports.php:1419 #: /var/www/html/cacti/managers.php:218 /var/www/html/cacti/plugins.php:294 #: /var/www/html/cacti/plugins.php:388 /var/www/html/cacti/pollers.php:615 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_group_admin.php:966 msgid "Status" msgstr "Status" #: /var/www/html/cacti/automation_devices.php:258 msgid "Last Check" msgstr "" #: /var/www/html/cacti/automation_devices.php:285 #: /var/www/html/cacti/automation_devices.php:613 msgid "Not Detected" msgstr "" #: /var/www/html/cacti/automation_devices.php:303 #: /var/www/html/cacti/host.php:1660 msgid "No Devices Found" msgstr "" #: /var/www/html/cacti/automation_devices.php:439 msgid "Discovery Filters" msgstr "" #: /var/www/html/cacti/automation_devices.php:454 msgid "Network" msgstr "" #: /var/www/html/cacti/automation_devices.php:470 msgid "Reset fields to defaults" msgstr "" #: /var/www/html/cacti/automation_devices.php:475 #: /var/www/html/cacti/color.php:570 /var/www/html/cacti/host.php:1488 #: /var/www/html/cacti/lib/html_form.php:1153 msgid "Export" msgstr "Exportieren" #: /var/www/html/cacti/automation_devices.php:475 msgid "Export to a file" msgstr "" #: /var/www/html/cacti/automation_devices.php:476 #: /var/www/html/cacti/lib/clog_webapi.php:154 #: /var/www/html/cacti/lib/clog_webapi.php:414 #: /var/www/html/cacti/managers.php:777 msgid "Purge" msgstr "Löschen" #: /var/www/html/cacti/automation_devices.php:476 msgid "Purge Discovered Devices" msgstr "" #: /var/www/html/cacti/automation_devices.php:643 #: /var/www/html/cacti/automation_networks.php:1030 #: /var/www/html/cacti/automation_snmp.php:709 #: /var/www/html/cacti/automation_snmp.php:710 #: /var/www/html/cacti/automation_snmp.php:711 #: /var/www/html/cacti/automation_snmp.php:712 #: /var/www/html/cacti/automation_snmp.php:713 #: /var/www/html/cacti/automation_snmp.php:714 #: /var/www/html/cacti/lib/html.php:953 /var/www/html/cacti/user_admin.php:2290 #: /var/www/html/cacti/utilities.php:417 /var/www/html/cacti/utilities.php:799 #: /var/www/html/cacti/utilities.php:2066 #: /var/www/html/cacti/utilities.php:2163 #: /var/www/html/cacti/utilities.php:2171 #: /var/www/html/cacti/utilities.php:2174 #: /var/www/html/cacti/utilities.php:2177 #: /var/www/html/cacti/utilities.php:2183 #: /var/www/html/cacti/utilities.php:2412 msgid "N/A" msgstr "Nicht verfügbar" #: /var/www/html/cacti/automation_graph_rules.php:29 #: /var/www/html/cacti/automation_snmp.php:30 #: /var/www/html/cacti/automation_tree_rules.php:29 #: /var/www/html/cacti/cdef.php:30 /var/www/html/cacti/color_templates.php:29 #: /var/www/html/cacti/data_templates.php:34 #: /var/www/html/cacti/graph_templates.php:34 /var/www/html/cacti/graphs.php:63 #: /var/www/html/cacti/host_templates.php:31 #: /var/www/html/cacti/include/global_arrays.php:1286 #: /var/www/html/cacti/vdef.php:30 msgid "Duplicate" msgstr "Duplizieren" #: /var/www/html/cacti/automation_graph_rules.php:30 #: /var/www/html/cacti/automation_networks.php:33 #: /var/www/html/cacti/automation_tree_rules.php:30 #: /var/www/html/cacti/data_sources.php:38 /var/www/html/cacti/host.php:39 #: /var/www/html/cacti/include/global_arrays.php:1287 #: /var/www/html/cacti/include/global_settings.php:1181 #: /var/www/html/cacti/links.php:29 /var/www/html/cacti/managers.php:29 #: /var/www/html/cacti/managers.php:35 /var/www/html/cacti/plugins.php:29 #: /var/www/html/cacti/pollers.php:31 /var/www/html/cacti/user_admin.php:30 #: /var/www/html/cacti/user_domains.php:31 #: /var/www/html/cacti/user_domains.php:402 #: /var/www/html/cacti/user_group_admin.php:32 msgid "Enable" msgstr "Aktivieren" #: /var/www/html/cacti/automation_graph_rules.php:31 #: /var/www/html/cacti/automation_networks.php:32 #: /var/www/html/cacti/automation_tree_rules.php:31 #: /var/www/html/cacti/data_sources.php:39 /var/www/html/cacti/host.php:40 #: /var/www/html/cacti/include/global_arrays.php:1288 #: /var/www/html/cacti/links.php:30 /var/www/html/cacti/managers.php:30 #: /var/www/html/cacti/managers.php:34 /var/www/html/cacti/plugins.php:30 #: /var/www/html/cacti/pollers.php:30 /var/www/html/cacti/user_admin.php:31 #: /var/www/html/cacti/user_domains.php:30 #: /var/www/html/cacti/user_group_admin.php:33 msgid "Disable" msgstr "Deaktivieren" #: /var/www/html/cacti/automation_graph_rules.php:256 msgid "Press 'Continue' to delete the following Graph Rules." msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:263 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Graph Rules." msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:265 #: /var/www/html/cacti/automation_tree_rules.php:262 #: /var/www/html/cacti/graphs.php:880 /var/www/html/cacti/graphs.php:891 msgid "Title Format" msgstr "Titelformat" #: /var/www/html/cacti/automation_graph_rules.php:265 #: /var/www/html/cacti/automation_tree_rules.php:262 msgid "rule_name" msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:271 #: /var/www/html/cacti/automation_tree_rules.php:268 msgid "Click 'Continue' to enable the following Rule(s)." msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:273 #: /var/www/html/cacti/automation_tree_rules.php:270 msgid "Make sure, that those rules have successfully been tested!" msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:279 #: /var/www/html/cacti/automation_tree_rules.php:276 msgid "Click 'Continue' to disable the following Rule(s)." msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:286 #: /var/www/html/cacti/automation_tree_rules.php:283 msgid "You must select at least one Rule." msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:289 #: /var/www/html/cacti/automation_tree_rules.php:286 msgid "Apply requested action" msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:419 #: /var/www/html/cacti/automation_tree_rules.php:471 msgid "Are You Sure?" msgstr "Sind Sie sicher?" #: /var/www/html/cacti/automation_graph_rules.php:419 #, php-format msgid "Are you sure you want to delete the Rule '%s'?" msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:538 #, php-format msgid "Rule Selection [edit: %s]" msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:544 msgid "Rule Selection [new]" msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:554 #: /var/www/html/cacti/automation_graph_rules.php:569 #: /var/www/html/cacti/automation_graph_rules.php:585 #: /var/www/html/cacti/automation_tree_rules.php:379 #: /var/www/html/cacti/automation_tree_rules.php:529 msgid "Don't Show" msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:554 msgid "Rule Details." msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:569 msgid "Matching Devices." msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:585 msgid "Matching Objects." msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:625 msgid "Device Selection Criteria" msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:631 msgid "Graph Creation Criteria" msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:738 #: /var/www/html/cacti/automation_graph_rules.php:785 #: /var/www/html/cacti/automation_graph_rules.php:890 #: /var/www/html/cacti/include/global_arrays.php:758 #: /var/www/html/cacti/lib/functions.php:2597 msgid "Graph Rules" msgstr "Diagramm-Regeln" #: /var/www/html/cacti/automation_graph_rules.php:753 #: /var/www/html/cacti/automation_graph_rules.php:901 #: /var/www/html/cacti/include/global_arrays.php:1046 #: /var/www/html/cacti/include/global_form.php:1533 #: /var/www/html/cacti/include/global_form.php:2136 msgid "Data Query" msgstr "Datenabfrage" #: /var/www/html/cacti/automation_graph_rules.php:780 #: /var/www/html/cacti/automation_graph_rules.php:903 #: /var/www/html/cacti/automation_graph_rules.php:919 #: /var/www/html/cacti/automation_networks.php:496 #: /var/www/html/cacti/automation_tree_rules.php:726 #: /var/www/html/cacti/automation_tree_rules.php:846 #: /var/www/html/cacti/automation_tree_rules.php:864 #: /var/www/html/cacti/data_sources.php:1235 /var/www/html/cacti/host.php:1507 #: /var/www/html/cacti/include/global_arrays.php:666 #: /var/www/html/cacti/include/global_form.php:1415 #: /var/www/html/cacti/include/global_settings.php:356 #: /var/www/html/cacti/lib/api_automation.php:170 #: /var/www/html/cacti/lib/api_automation.php:1048 #: /var/www/html/cacti/lib/html_reports.php:1424 #: /var/www/html/cacti/lib/html_reports.php:1516 #: /var/www/html/cacti/lib/html_reports.php:1527 #: /var/www/html/cacti/lib/html_reports.php:1563 #: /var/www/html/cacti/links.php:380 /var/www/html/cacti/managers.php:243 #: /var/www/html/cacti/managers.php:627 /var/www/html/cacti/user_admin.php:1091 #: /var/www/html/cacti/user_admin.php:1103 #: /var/www/html/cacti/user_admin.php:2277 #: /var/www/html/cacti/user_domains.php:341 #: /var/www/html/cacti/user_domains.php:716 #: /var/www/html/cacti/user_group_admin.php:87 #: /var/www/html/cacti/user_group_admin.php:675 #: /var/www/html/cacti/user_group_admin.php:690 #: /var/www/html/cacti/user_group_admin.php:1907 #: /var/www/html/cacti/utilities.php:2198 msgid "Enabled" msgstr "Aktiviert" #: /var/www/html/cacti/automation_graph_rules.php:781 #: /var/www/html/cacti/automation_graph_rules.php:919 #: /var/www/html/cacti/automation_networks.php:979 #: /var/www/html/cacti/automation_tree_rules.php:727 #: /var/www/html/cacti/automation_tree_rules.php:864 #: /var/www/html/cacti/data_sources.php:1236 #: /var/www/html/cacti/data_templates.php:934 /var/www/html/cacti/host.php:1508 #: /var/www/html/cacti/include/global_arrays.php:665 #: /var/www/html/cacti/include/global_arrays.php:1214 #: /var/www/html/cacti/include/global_arrays.php:1497 #: /var/www/html/cacti/include/global_settings.php:356 #: /var/www/html/cacti/include/global_settings.php:1057 #: /var/www/html/cacti/include/global_settings.php:1071 #: /var/www/html/cacti/include/global_settings.php:1083 #: /var/www/html/cacti/include/global_settings.php:1108 #: /var/www/html/cacti/include/global_settings.php:1122 #: /var/www/html/cacti/include/global_settings.php:1181 #: /var/www/html/cacti/include/global_settings.php:1779 #: /var/www/html/cacti/lib/api_automation.php:171 #: /var/www/html/cacti/lib/api_automation.php:1049 #: /var/www/html/cacti/lib/html_reports.php:1425 #: /var/www/html/cacti/lib/html_reports.php:1563 #: /var/www/html/cacti/lib/html_utility.php:833 #: /var/www/html/cacti/managers.php:243 /var/www/html/cacti/managers.php:627 #: /var/www/html/cacti/pollers.php:40 /var/www/html/cacti/user_admin.php:1103 #: /var/www/html/cacti/user_domains.php:402 #: /var/www/html/cacti/user_group_admin.php:690 #: /var/www/html/cacti/utilities.php:2198 msgid "Disabled" msgstr "Deaktiviert" #: /var/www/html/cacti/automation_graph_rules.php:899 #: /var/www/html/cacti/automation_tree_rules.php:840 msgid "Rule Name" msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:899 msgid "The name of this rule." msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:900 msgid "" "The internal database ID for this rule. Useful in performing debugging and " "automation." msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:902 #: /var/www/html/cacti/include/global_form.php:1775 #: /var/www/html/cacti/include/global_form.php:1854 #: /var/www/html/cacti/include/global_form.php:1952 #: /var/www/html/cacti/include/global_form.php:2147 msgid "Graph Type" msgstr "" #: /var/www/html/cacti/automation_graph_rules.php:925 msgid "No Graph Rules Found" msgstr "Keine Diagramm-Regeln gefunden" #: /var/www/html/cacti/automation_networks.php:34 msgid "Discover Now" msgstr "" #: /var/www/html/cacti/automation_networks.php:35 msgid "Cancel Discovery" msgstr "" #: /var/www/html/cacti/automation_networks.php:185 #, fuzzy, php-format msgid "ERROR: You must specificy the day of the week. Disabling Network %s!." msgstr "" "FEHLER: Sie müssen entweder eine gültige Zielsystem-Id oder 'All' für alle " "Zielsysteme angeben!" #: /var/www/html/cacti/automation_networks.php:191 #, php-format msgid "" "ERROR: You must specificy both the Months and Days of Month. Disabling " "Network %s!" msgstr "" #: /var/www/html/cacti/automation_networks.php:197 #, php-format msgid "" "ERROR: You must specificy the Months, Weeks of Months, and Days of Week. " "Disabling Network %s!" msgstr "" #: /var/www/html/cacti/automation_networks.php:215 #, php-format msgid "ERROR: Network '%s' is Invalid." msgstr "" #: /var/www/html/cacti/automation_networks.php:312 msgid "Click 'Continue' to delete the following Network(s)." msgstr "" #: /var/www/html/cacti/automation_networks.php:319 msgid "Click 'Continue' to enable the following Network(s)." msgstr "" #: /var/www/html/cacti/automation_networks.php:326 msgid "Click 'Continue' to disable the following Network(s)." msgstr "" #: /var/www/html/cacti/automation_networks.php:333 msgid "Click 'Continue' to discover the following Network(s)." msgstr "" #: /var/www/html/cacti/automation_networks.php:340 msgid "Click 'Continue' to cancel on going Network Discovery(s)." msgstr "" #: /var/www/html/cacti/automation_networks.php:347 msgid "You must select at least one Network." msgstr "Bitte wählen Sie mindestens ein Netzwerk aus." #: /var/www/html/cacti/automation_networks.php:378 #: /var/www/html/cacti/automation_networks.php:952 #: /var/www/html/cacti/tree.php:1113 msgid "Manual" msgstr "" #: /var/www/html/cacti/automation_networks.php:379 #: /var/www/html/cacti/automation_networks.php:953 #: /var/www/html/cacti/include/global_arrays.php:530 #: /var/www/html/cacti/include/global_arrays.php:1511 msgid "Daily" msgstr "" #: /var/www/html/cacti/automation_networks.php:380 #: /var/www/html/cacti/automation_networks.php:954 #: /var/www/html/cacti/include/global_arrays.php:1512 msgid "Weekly" msgstr "" #: /var/www/html/cacti/automation_networks.php:381 #: /var/www/html/cacti/automation_networks.php:955 #: /var/www/html/cacti/include/global_arrays.php:1513 msgid "Monthly" msgstr "" #: /var/www/html/cacti/automation_networks.php:382 #: /var/www/html/cacti/automation_networks.php:956 msgid "Monthly on Day" msgstr "" #: /var/www/html/cacti/automation_networks.php:386 #, php-format msgid "Network Discovery Range [edit: %s]" msgstr "" #: /var/www/html/cacti/automation_networks.php:388 msgid "Network Discovery Range [new]" msgstr "" #: /var/www/html/cacti/automation_networks.php:395 #: /var/www/html/cacti/include/global_form.php:1823 #: /var/www/html/cacti/include/global_form.php:1919 #: /var/www/html/cacti/include/global_settings.php:51 #: /var/www/html/cacti/lib/html_reports.php:30 msgid "General Settings" msgstr "Basis Einstellungen" #: /var/www/html/cacti/automation_networks.php:400 #: /var/www/html/cacti/automation_snmp.php:649 #: /var/www/html/cacti/data_input.php:468 #: /var/www/html/cacti/data_input.php:502 #: /var/www/html/cacti/data_queries.php:593 #: /var/www/html/cacti/data_queries.php:689 #: /var/www/html/cacti/data_queries.php:915 #: /var/www/html/cacti/data_source_profiles.php:548 #: /var/www/html/cacti/graph_templates.php:423 #: /var/www/html/cacti/include/global_form.php:35 #: /var/www/html/cacti/include/global_form.php:101 #: /var/www/html/cacti/include/global_form.php:158 #: /var/www/html/cacti/include/global_form.php:178 #: /var/www/html/cacti/include/global_form.php:219 #: /var/www/html/cacti/include/global_form.php:343 #: /var/www/html/cacti/include/global_form.php:370 #: /var/www/html/cacti/include/global_form.php:476 #: /var/www/html/cacti/include/global_form.php:902 #: /var/www/html/cacti/include/global_form.php:934 #: /var/www/html/cacti/include/global_form.php:1231 #: /var/www/html/cacti/include/global_form.php:1251 #: /var/www/html/cacti/include/global_form.php:1321 #: /var/www/html/cacti/include/global_form.php:1349 #: /var/www/html/cacti/include/global_form.php:2030 #: /var/www/html/cacti/include/global_form.php:2128 #: /var/www/html/cacti/include/global_form.php:2173 #: /var/www/html/cacti/install/index.php:482 #: /var/www/html/cacti/install/index.php:559 #: /var/www/html/cacti/install/index.php:887 #: /var/www/html/cacti/lib/vdef.php:74 /var/www/html/cacti/managers.php:591 #: /var/www/html/cacti/pollers.php:52 /var/www/html/cacti/sites.php:40 #: /var/www/html/cacti/user_admin.php:1091 #: /var/www/html/cacti/user_domains.php:317 #: /var/www/html/cacti/utilities.php:477 /var/www/html/cacti/utilities.php:2392 msgid "Name" msgstr "Name" #: /var/www/html/cacti/automation_networks.php:401 msgid "Give this Network a meaningful name." msgstr "" #: /var/www/html/cacti/automation_networks.php:404 msgid "New Network Discovery Range" msgstr "" #: /var/www/html/cacti/automation_networks.php:408 #: /var/www/html/cacti/automation_networks.php:961 #: /var/www/html/cacti/host.php:1450 msgid "Data Collector" msgstr "" #: /var/www/html/cacti/automation_networks.php:409 #: /var/www/html/cacti/include/global_form.php:994 msgid "" "Choose the Cacti Data Collector/Poller to be used to gather data from this " "Device." msgstr "" #: /var/www/html/cacti/automation_networks.php:416 #, fuzzy msgid "Associated Site" msgstr "Zugeordnetes XML Feld" #: /var/www/html/cacti/automation_networks.php:417 msgid "" "Choose the Cacti Site that you wish to associate discovered Devices with." msgstr "" "Wählen Sie die Cacti-Site, mit der Sie vorgefundene Geräte verknüpfen " "möchten." #: /var/www/html/cacti/automation_networks.php:425 msgid "Subnet Range" msgstr "" #: /var/www/html/cacti/automation_networks.php:426 msgid "" "Enter valid Network Ranges separated by commas. You may use an IP address, " "a Network range such as 192.168.1.0/24 or 192.168.1.0/255.255.255.0, or " "using wildcards such as 192.168.*.*" msgstr "" #: /var/www/html/cacti/automation_networks.php:435 msgid "Total IP Addresses" msgstr "" #: /var/www/html/cacti/automation_networks.php:436 msgid "Total addressable IP Addresses in this Network Range." msgstr "" #: /var/www/html/cacti/automation_networks.php:441 msgid "Alternate DNS Servers" msgstr "" #: /var/www/html/cacti/automation_networks.php:442 msgid "" "A space delimited list of alternate DNS Servers to use for DNS resolution. " "If blank, the poller OS will be used to resolve DNS names." msgstr "" #: /var/www/html/cacti/automation_networks.php:445 msgid "Enter IPs or FQDNs of DNS Servers" msgstr "" #: /var/www/html/cacti/automation_networks.php:449 msgid "Schedule Type" msgstr "" #: /var/www/html/cacti/automation_networks.php:450 msgid "Define the collection frequency." msgstr "" #: /var/www/html/cacti/automation_networks.php:457 msgid "Discovery Threads" msgstr "" #: /var/www/html/cacti/automation_networks.php:458 msgid "Define the number of threads to use for discovering this Network Range." msgstr "" #: /var/www/html/cacti/automation_networks.php:461 #, php-format msgid "%d Thread" msgstr "%d Thread" #: /var/www/html/cacti/automation_networks.php:462 #: /var/www/html/cacti/automation_networks.php:463 #: /var/www/html/cacti/automation_networks.php:464 #: /var/www/html/cacti/automation_networks.php:465 #: /var/www/html/cacti/automation_networks.php:466 #: /var/www/html/cacti/automation_networks.php:467 #: /var/www/html/cacti/automation_networks.php:468 #: /var/www/html/cacti/automation_networks.php:469 #: /var/www/html/cacti/automation_networks.php:470 #: /var/www/html/cacti/automation_networks.php:471 #: /var/www/html/cacti/automation_networks.php:472 #: /var/www/html/cacti/include/global_arrays.php:599 #: /var/www/html/cacti/include/global_arrays.php:600 #: /var/www/html/cacti/include/global_arrays.php:601 #: /var/www/html/cacti/include/global_arrays.php:602 #: /var/www/html/cacti/include/global_arrays.php:603 #, php-format msgid "%d Threads" msgstr "%d Threads" #: /var/www/html/cacti/automation_networks.php:478 msgid "Run Limit" msgstr "" #: /var/www/html/cacti/automation_networks.php:479 msgid "After the selected Run Limit, the discovery process will be terminated." msgstr "" #: /var/www/html/cacti/automation_networks.php:482 #, php-format msgid "%d Minute" msgstr "%d Minute" #: /var/www/html/cacti/automation_networks.php:483 #: /var/www/html/cacti/automation_networks.php:484 #: /var/www/html/cacti/automation_networks.php:485 #: /var/www/html/cacti/automation_networks.php:486 #: /var/www/html/cacti/data_sources.php:1071 #: /var/www/html/cacti/include/global_arrays.php:520 #: /var/www/html/cacti/include/global_arrays.php:521 #: /var/www/html/cacti/include/global_arrays.php:522 #: /var/www/html/cacti/include/global_arrays.php:523 #: /var/www/html/cacti/include/global_arrays.php:553 #: /var/www/html/cacti/include/global_arrays.php:554 #: /var/www/html/cacti/include/global_arrays.php:555 #: /var/www/html/cacti/include/global_arrays.php:556 #: /var/www/html/cacti/include/global_arrays.php:557 #: /var/www/html/cacti/include/global_arrays.php:558 #: /var/www/html/cacti/include/global_arrays.php:899 #: /var/www/html/cacti/include/global_arrays.php:900 #: /var/www/html/cacti/include/global_arrays.php:1221 #: /var/www/html/cacti/include/global_arrays.php:1225 #: /var/www/html/cacti/include/global_arrays.php:1233 #: /var/www/html/cacti/include/global_arrays.php:1234 #: /var/www/html/cacti/include/global_arrays.php:1256 #: /var/www/html/cacti/include/global_arrays.php:1257 #: /var/www/html/cacti/include/global_arrays.php:1258 #: /var/www/html/cacti/include/global_arrays.php:1259 #: /var/www/html/cacti/include/global_arrays.php:1260 #: /var/www/html/cacti/include/global_arrays.php:1271 #: /var/www/html/cacti/include/global_settings.php:1124 #: /var/www/html/cacti/include/global_settings.php:1125 #: /var/www/html/cacti/include/global_settings.php:1126 #: /var/www/html/cacti/include/global_settings.php:1127 #: /var/www/html/cacti/include/global_settings.php:1128 #: /var/www/html/cacti/include/global_settings.php:1857 #, php-format msgid "%d Minutes" msgstr "%d Minuten" #: /var/www/html/cacti/automation_networks.php:487 #: /var/www/html/cacti/include/global_arrays.php:568 #: /var/www/html/cacti/include/global_arrays.php:1125 #, php-format msgid "%d Hour" msgstr "%d Stunde" #: /var/www/html/cacti/automation_networks.php:488 #: /var/www/html/cacti/automation_networks.php:489 #: /var/www/html/cacti/automation_networks.php:490 #: /var/www/html/cacti/data_source_profiles.php:736 #: /var/www/html/cacti/include/global_arrays.php:525 #: /var/www/html/cacti/include/global_arrays.php:526 #: /var/www/html/cacti/include/global_arrays.php:527 #: /var/www/html/cacti/include/global_arrays.php:528 #: /var/www/html/cacti/include/global_arrays.php:529 #: /var/www/html/cacti/include/global_arrays.php:560 #: /var/www/html/cacti/include/global_arrays.php:561 #: /var/www/html/cacti/include/global_arrays.php:562 #: /var/www/html/cacti/include/global_arrays.php:563 #: /var/www/html/cacti/include/global_arrays.php:569 #: /var/www/html/cacti/include/global_arrays.php:570 #: /var/www/html/cacti/include/global_arrays.php:571 #: /var/www/html/cacti/include/global_arrays.php:572 #: /var/www/html/cacti/include/global_arrays.php:1126 #: /var/www/html/cacti/include/global_arrays.php:1127 #: /var/www/html/cacti/include/global_arrays.php:1128 #: /var/www/html/cacti/include/global_arrays.php:1129 #: /var/www/html/cacti/include/global_arrays.php:1173 #: /var/www/html/cacti/include/global_arrays.php:1174 #: /var/www/html/cacti/include/global_arrays.php:1175 #: /var/www/html/cacti/include/global_arrays.php:1176 #: /var/www/html/cacti/include/global_arrays.php:1177 #: /var/www/html/cacti/include/global_arrays.php:1194 #: /var/www/html/cacti/include/global_arrays.php:1195 #: /var/www/html/cacti/include/global_arrays.php:1196 #: /var/www/html/cacti/include/global_arrays.php:1197 #: /var/www/html/cacti/include/global_arrays.php:1198 #: /var/www/html/cacti/include/global_settings.php:1130 #: /var/www/html/cacti/include/global_settings.php:1131 #: /var/www/html/cacti/include/global_settings.php:1132 #: /var/www/html/cacti/include/global_settings.php:1133 #, php-format msgid "%d Hours" msgstr "%d Stunden" #: /var/www/html/cacti/automation_networks.php:497 msgid "Enable this Network Range Enabled." msgstr "" #: /var/www/html/cacti/automation_networks.php:502 msgid "Enable NetBIOS" msgstr "" #: /var/www/html/cacti/automation_networks.php:503 msgid "Use NetBIOS to attempt to result the hostname of up hosts." msgstr "" #: /var/www/html/cacti/automation_networks.php:509 msgid "Automatically Add to Cacti" msgstr "" #: /var/www/html/cacti/automation_networks.php:510 msgid "" "For any newly discovered Devices that are reachable using SNMP and who match " "a Device Rule, add them to Cacti." msgstr "" #: /var/www/html/cacti/automation_networks.php:515 msgid "Rerun Data Queries" msgstr "" #: /var/www/html/cacti/automation_networks.php:516 msgid "" "If a device, previously added to Cacti, is found, rerun its data queries." msgstr "" #: /var/www/html/cacti/automation_networks.php:521 msgid "Discovery Timing" msgstr "" #: /var/www/html/cacti/automation_networks.php:526 msgid "Starting Date/Time" msgstr "" #: /var/www/html/cacti/automation_networks.php:527 msgid "What time will this Network discover item start?" msgstr "" #: /var/www/html/cacti/automation_networks.php:535 msgid "Rerun Every" msgstr "" #: /var/www/html/cacti/automation_networks.php:536 msgid "Rerun discovery for this Network Range every X." msgstr "" #: /var/www/html/cacti/automation_networks.php:551 msgid "Days of Week" msgstr "" #: /var/www/html/cacti/automation_networks.php:552 #: /var/www/html/cacti/automation_networks.php:610 msgid "What Day(s) of the week will this Network Range be discovered." msgstr "" #: /var/www/html/cacti/automation_networks.php:554 #: /var/www/html/cacti/automation_networks.php:612 #: /var/www/html/cacti/include/global_arrays.php:1553 msgid "Sunday" msgstr "Sonntag" #: /var/www/html/cacti/automation_networks.php:555 #: /var/www/html/cacti/automation_networks.php:613 #: /var/www/html/cacti/include/global_arrays.php:1554 msgid "Monday" msgstr "Montag" #: /var/www/html/cacti/automation_networks.php:556 #: /var/www/html/cacti/automation_networks.php:614 #: /var/www/html/cacti/include/global_arrays.php:1555 msgid "Tuesday" msgstr "Dienstag" #: /var/www/html/cacti/automation_networks.php:557 #: /var/www/html/cacti/automation_networks.php:615 #: /var/www/html/cacti/include/global_arrays.php:1556 msgid "Wednesday" msgstr "Mittwoch" #: /var/www/html/cacti/automation_networks.php:558 #: /var/www/html/cacti/automation_networks.php:616 #: /var/www/html/cacti/include/global_arrays.php:1557 msgid "Thursday" msgstr "Donnerstag" #: /var/www/html/cacti/automation_networks.php:559 #: /var/www/html/cacti/automation_networks.php:617 #: /var/www/html/cacti/include/global_arrays.php:1558 msgid "Friday" msgstr "Freitag" #: /var/www/html/cacti/automation_networks.php:560 #: /var/www/html/cacti/automation_networks.php:618 #: /var/www/html/cacti/include/global_arrays.php:1559 msgid "Saturday" msgstr "Samstag" #: /var/www/html/cacti/automation_networks.php:567 msgid "Months of Year" msgstr "" #: /var/www/html/cacti/automation_networks.php:568 msgid "What Months(s) of the Year will this Network Range be discovered." msgstr "" #: /var/www/html/cacti/automation_networks.php:570 #: /var/www/html/cacti/include/global_arrays.php:1523 msgid "January" msgstr "" #: /var/www/html/cacti/automation_networks.php:571 #: /var/www/html/cacti/include/global_arrays.php:1524 msgid "February" msgstr "" #: /var/www/html/cacti/automation_networks.php:572 #: /var/www/html/cacti/include/global_arrays.php:1525 msgid "March" msgstr "" #: /var/www/html/cacti/automation_networks.php:573 #: /var/www/html/cacti/include/global_arrays.php:1526 msgid "April" msgstr "" #: /var/www/html/cacti/automation_networks.php:574 #: /var/www/html/cacti/include/global_arrays.php:1527 msgid "May" msgstr "" #: /var/www/html/cacti/automation_networks.php:575 #: /var/www/html/cacti/include/global_arrays.php:1528 msgid "June" msgstr "" #: /var/www/html/cacti/automation_networks.php:576 #: /var/www/html/cacti/include/global_arrays.php:1529 msgid "July" msgstr "" #: /var/www/html/cacti/automation_networks.php:577 #: /var/www/html/cacti/include/global_arrays.php:1530 msgid "August" msgstr "" #: /var/www/html/cacti/automation_networks.php:578 #: /var/www/html/cacti/include/global_arrays.php:1531 msgid "September" msgstr "" #: /var/www/html/cacti/automation_networks.php:579 #: /var/www/html/cacti/include/global_arrays.php:1532 msgid "October" msgstr "" #: /var/www/html/cacti/automation_networks.php:580 #: /var/www/html/cacti/include/global_arrays.php:1533 msgid "November" msgstr "" #: /var/www/html/cacti/automation_networks.php:581 #: /var/www/html/cacti/include/global_arrays.php:1534 msgid "December" msgstr "" #: /var/www/html/cacti/automation_networks.php:588 msgid "Days of Month" msgstr "" #: /var/www/html/cacti/automation_networks.php:589 msgid "What Day(s) of the Month will this Network Range be discovered." msgstr "" #: /var/www/html/cacti/automation_networks.php:590 #: /var/www/html/cacti/automation_networks.php:602 msgid "Last" msgstr "" #: /var/www/html/cacti/automation_networks.php:596 msgid "Week(s) of Month" msgstr "" #: /var/www/html/cacti/automation_networks.php:597 msgid "What Week(s) of the Month will this Network Range be discovered." msgstr "" #: /var/www/html/cacti/automation_networks.php:599 msgid "First" msgstr "" #: /var/www/html/cacti/automation_networks.php:600 msgid "Second" msgstr "Sekunde" #: /var/www/html/cacti/automation_networks.php:601 msgid "Third" msgstr "" #: /var/www/html/cacti/automation_networks.php:609 msgid "Day(s) of Week" msgstr "" #: /var/www/html/cacti/automation_networks.php:625 msgid "Reachability Settings" msgstr "" #: /var/www/html/cacti/automation_networks.php:630 #: /var/www/html/cacti/include/global_arrays.php:760 #: /var/www/html/cacti/include/global_form.php:1034 #: /var/www/html/cacti/include/global_form.php:1634 msgid "SNMP Options" msgstr "" #: /var/www/html/cacti/automation_networks.php:631 msgid "Select the SNMP Options to use for discovery of this Network Range." msgstr "" #: /var/www/html/cacti/automation_networks.php:637 #: /var/www/html/cacti/include/global_form.php:1159 msgid "Ping Method" msgstr "Ping Methode" #: /var/www/html/cacti/automation_networks.php:638 msgid "The type of ping packet to send." msgstr "" #: /var/www/html/cacti/automation_networks.php:646 #: /var/www/html/cacti/include/global_form.php:1169 #: /var/www/html/cacti/include/global_settings.php:585 msgid "Ping Port" msgstr "Ping Port" #: /var/www/html/cacti/automation_networks.php:648 #: /var/www/html/cacti/include/global_form.php:1171 msgid "TCP or UDP port to attempt connection." msgstr "" #: /var/www/html/cacti/automation_networks.php:654 #: /var/www/html/cacti/include/global_form.php:1177 #: /var/www/html/cacti/include/global_settings.php:593 msgid "Ping Timeout Value" msgstr "" #: /var/www/html/cacti/automation_networks.php:655 #: /var/www/html/cacti/include/global_form.php:1178 #: /var/www/html/cacti/include/global_settings.php:594 msgid "" "The timeout value to use for host ICMP and UDP pinging. This host SNMP " "timeout value applies for SNMP pings." msgstr "" #: /var/www/html/cacti/automation_networks.php:663 #: /var/www/html/cacti/include/global_form.php:1186 #: /var/www/html/cacti/include/global_settings.php:601 msgid "Ping Retry Count" msgstr "" #: /var/www/html/cacti/automation_networks.php:664 #: /var/www/html/cacti/include/global_form.php:1187 msgid "" "After an initial failure, the number of ping retries Cacti will attempt " "before failing." msgstr "" "Im Falle eines Zugriffsfehlers: Die Zahl der Ping Wiederholungen, bevor " "Cacti mit einem Fehler aufgibt." #: /var/www/html/cacti/automation_networks.php:704 msgid "Select the days(s) of the week" msgstr "" #: /var/www/html/cacti/automation_networks.php:714 msgid "Select the month(s) of the year" msgstr "" #: /var/www/html/cacti/automation_networks.php:724 msgid "Select the day(s) of the month" msgstr "" #: /var/www/html/cacti/automation_networks.php:734 msgid "Select the week(s) of the month" msgstr "" #: /var/www/html/cacti/automation_networks.php:744 msgid "Select the day(s) of the week" msgstr "" #: /var/www/html/cacti/automation_networks.php:817 #: /var/www/html/cacti/automation_networks.php:834 msgid "every X Days" msgstr "" #: /var/www/html/cacti/automation_networks.php:817 #: /var/www/html/cacti/automation_networks.php:834 msgid "every X Weeks" msgstr "" #: /var/www/html/cacti/automation_networks.php:818 msgid "every X Days." msgstr "" #: /var/www/html/cacti/automation_networks.php:818 #: /var/www/html/cacti/automation_networks.php:835 msgid "every X." msgstr "" #: /var/www/html/cacti/automation_networks.php:835 msgid "every X Weeks." msgstr "" #: /var/www/html/cacti/automation_networks.php:933 msgid "Network Filters" msgstr "" #: /var/www/html/cacti/automation_networks.php:943 #: /var/www/html/cacti/automation_networks.php:1067 #: /var/www/html/cacti/include/global_arrays.php:755 msgid "Networks" msgstr "" #: /var/www/html/cacti/automation_networks.php:960 msgid "Network Name" msgstr "" #: /var/www/html/cacti/automation_networks.php:962 msgid "Schedule" msgstr "" #: /var/www/html/cacti/automation_networks.php:963 msgid "Total IPs" msgstr "" #: /var/www/html/cacti/automation_networks.php:964 msgid "The Current Status of this Networks Discovery" msgstr "" #: /var/www/html/cacti/automation_networks.php:965 msgid "Pending/Running/Done" msgstr "" #: /var/www/html/cacti/automation_networks.php:965 msgid "Progress" msgstr "" #: /var/www/html/cacti/automation_networks.php:966 msgid "Up/SNMP Hosts" msgstr "" #: /var/www/html/cacti/automation_networks.php:967 msgid "Threads" msgstr "" #: /var/www/html/cacti/automation_networks.php:968 msgid "Last Runtime" msgstr "Letzter Durchlauf" #: /var/www/html/cacti/automation_networks.php:969 msgid "Next Start" msgstr "" #: /var/www/html/cacti/automation_networks.php:970 msgid "Last Started" msgstr "" #: /var/www/html/cacti/automation_networks.php:995 #: /var/www/html/cacti/pollers.php:37 /var/www/html/cacti/utilities.php:2003 msgid "Running" msgstr "" #: /var/www/html/cacti/automation_networks.php:1015 #: /var/www/html/cacti/pollers.php:38 /var/www/html/cacti/utilities.php:2002 msgid "Idle" msgstr "" #: /var/www/html/cacti/automation_networks.php:1036 msgid "No Networks Found" msgstr "" #: /var/www/html/cacti/automation_networks.php:1084 msgid "Clear Filtered" msgstr "" #: /var/www/html/cacti/automation_snmp.php:225 msgid "You must select at least one SNMP Option." msgstr "" #: /var/www/html/cacti/automation_snmp.php:233 msgid "Click 'Continue' to delete the following SNMP Option(s)." msgstr "" #: /var/www/html/cacti/automation_snmp.php:240 msgid "" "Click 'Continue' to duplicate the following SNMP Options. You can optionally " "change the title format for the new SNMP Options." msgstr "" #: /var/www/html/cacti/automation_snmp.php:242 msgid "Name Format" msgstr "" #: /var/www/html/cacti/automation_snmp.php:242 msgid "name" msgstr "" #: /var/www/html/cacti/automation_snmp.php:351 msgid "Click 'Continue' to delete the following SNMP Option Item." msgstr "" #: /var/www/html/cacti/automation_snmp.php:352 msgid "SNMP Option:" msgstr "" #: /var/www/html/cacti/automation_snmp.php:353 #, php-format msgid "SNMP Version: %s" msgstr "" #: /var/www/html/cacti/automation_snmp.php:354 #, php-format msgid "SNMP Community/Username: %s" msgstr "" #: /var/www/html/cacti/automation_snmp.php:360 msgid "Remove SNMP Item" msgstr "" #: /var/www/html/cacti/automation_snmp.php:420 #, php-format msgid "SNMP Options [edit: %s]" msgstr "" #: /var/www/html/cacti/automation_snmp.php:422 msgid "SNMP Options [new]" msgstr "" #: /var/www/html/cacti/automation_snmp.php:438 #: /var/www/html/cacti/include/global_form.php:1039 #: /var/www/html/cacti/include/global_form.php:1639 msgid "SNMP Version" msgstr "SNMP Version" #: /var/www/html/cacti/automation_snmp.php:439 msgid "Choose the SNMP version for this host." msgstr "" #: /var/www/html/cacti/automation_snmp.php:447 msgid "SNMP Community String" msgstr "" #: /var/www/html/cacti/automation_snmp.php:448 msgid "Fill in the SNMP read community for this device." msgstr "" #: /var/www/html/cacti/automation_snmp.php:456 #: /var/www/html/cacti/include/global_form.php:1119 #: /var/www/html/cacti/include/global_form.php:1709 msgid "SNMP Port" msgstr "SNMP Port" #: /var/www/html/cacti/automation_snmp.php:457 msgid "The UDP/TCP Port to poll the SNMP agent on." msgstr "" #: /var/www/html/cacti/automation_snmp.php:465 #: /var/www/html/cacti/include/global_form.php:1128 #: /var/www/html/cacti/include/global_form.php:1718 msgid "SNMP Timeout" msgstr "" #: /var/www/html/cacti/automation_snmp.php:466 #: /var/www/html/cacti/include/global_form.php:1129 #: /var/www/html/cacti/include/global_form.php:1719 msgid "" "The maximum number of milliseconds Cacti will wait for an SNMP response " "(does not work with php-snmp support)." msgstr "" #: /var/www/html/cacti/automation_snmp.php:474 msgid "SNMP Retries" msgstr "" #: /var/www/html/cacti/automation_snmp.php:475 msgid "" "The maximum number of attempts to reach a device via an SNMP readstring " "prior to giving up." msgstr "" #: /var/www/html/cacti/automation_snmp.php:483 msgid "Maximum OID's Per Get Request" msgstr "" #: /var/www/html/cacti/automation_snmp.php:484 #: /var/www/html/cacti/include/global_form.php:1138 msgid "" "Specified the number of OIDs that can be obtained in a single SNMP Get " "request." msgstr "" #: /var/www/html/cacti/automation_snmp.php:492 #: /var/www/html/cacti/include/global_form.php:1058 #: /var/www/html/cacti/include/global_form.php:1658 msgid "SNMP Username (v3)" msgstr "SNMP Benutzername (v3)" #: /var/www/html/cacti/automation_snmp.php:493 #: /var/www/html/cacti/include/global_form.php:1059 #: /var/www/html/cacti/include/global_form.php:1659 msgid "SNMP v3 username for this device." msgstr "SNMPv3 Benutzername für dieses Endgerät." #: /var/www/html/cacti/automation_snmp.php:501 #: /var/www/html/cacti/include/global_form.php:1067 msgid "SNMP Password (v3)" msgstr "SNMP Passwort (v3)" #: /var/www/html/cacti/automation_snmp.php:502 msgid "SNMP v3 password for this device." msgstr "SNMPv3 Passwort für dieses Endgerät." #: /var/www/html/cacti/automation_snmp.php:510 #: /var/www/html/cacti/include/global_form.php:1076 #: /var/www/html/cacti/include/global_form.php:1676 msgid "SNMP Auth Protocol (v3)" msgstr "SNMP Authentifizierungsprotokoll (v3)" #: /var/www/html/cacti/automation_snmp.php:511 #: /var/www/html/cacti/include/global_settings.php:523 msgid "Choose the SNMPv3 Authorization Protocol." msgstr "Wählen Sie das SNMPv3 Authentifizierungsprotokoll." #: /var/www/html/cacti/automation_snmp.php:518 #: /var/www/html/cacti/include/global_form.php:1084 msgid "SNMP Privacy Passphrase (v3)" msgstr "SNMP Privacy Passwort (v3)" #: /var/www/html/cacti/automation_snmp.php:519 #: /var/www/html/cacti/include/global_form.php:1685 #: /var/www/html/cacti/include/global_settings.php:530 msgid "Choose the SNMPv3 Privacy Passphrase." msgstr "Wählen Sie das SNMPv3 Privacy Passwort." #: /var/www/html/cacti/automation_snmp.php:527 #: /var/www/html/cacti/include/global_form.php:1093 #: /var/www/html/cacti/include/global_form.php:1693 msgid "SNMP Privacy Protocol (v3)" msgstr "SNMP Privacy Protokoll (v3)" #: /var/www/html/cacti/automation_snmp.php:528 #: /var/www/html/cacti/include/global_settings.php:537 msgid "Choose the SNMPv3 Privacy Protocol." msgstr "Wählen Sie das SNMPv3 Privacy Protokoll." #: /var/www/html/cacti/automation_snmp.php:535 msgid "SNMP Context" msgstr "SNMP Kontext" #: /var/www/html/cacti/automation_snmp.php:536 msgid "Enter the SNMP Context to use for this device." msgstr "Geben Sie den SNMP Kontext für dieses Endgerät ein." #: /var/www/html/cacti/automation_snmp.php:548 #: /var/www/html/cacti/include/global_form.php:893 #: /var/www/html/cacti/include/global_form.php:2077 #: /var/www/html/cacti/include/global_form.php:2119 #: /var/www/html/cacti/include/global_form.php:2270 #: /var/www/html/cacti/lib/api_automation.php:1238 #: /var/www/html/cacti/lib/api_automation.php:1300 #: /var/www/html/cacti/lib/api_automation.php:1363 #: /var/www/html/cacti/lib/html_reports.php:430 #: /var/www/html/cacti/lib/html_reports.php:1245 msgid "Sequence" msgstr "" #: /var/www/html/cacti/automation_snmp.php:549 #: /var/www/html/cacti/lib/html_reports.php:431 msgid "Sequence of Item." msgstr "" #: /var/www/html/cacti/automation_snmp.php:636 #, php-format msgid "SNMP Option Set [edit: %s]" msgstr "" #: /var/www/html/cacti/automation_snmp.php:638 #, fuzzy msgid "SNMP Option Set [new]" msgstr "FTP Optionen" #: /var/www/html/cacti/automation_snmp.php:650 msgid "Fill in the name of this SNMP Option Set." msgstr "" #: /var/www/html/cacti/automation_snmp.php:675 #: /var/www/html/cacti/automation_snmp.php:822 msgid "Automation SNMP Options" msgstr "" #: /var/www/html/cacti/automation_snmp.php:678 /var/www/html/cacti/cdef.php:585 #: /var/www/html/cacti/lib/api_automation.php:1237 #: /var/www/html/cacti/lib/api_automation.php:1299 #: /var/www/html/cacti/lib/api_automation.php:1362 #: /var/www/html/cacti/lib/html_reports.php:1244 #: /var/www/html/cacti/vdef.php:564 msgid "Item" msgstr "Element" #: /var/www/html/cacti/automation_snmp.php:679 #: /var/www/html/cacti/include/auth.php:159 #: /var/www/html/cacti/include/global_settings.php:493 #: /var/www/html/cacti/permission_denied.php:71 #: /var/www/html/cacti/plugins.php:390 msgid "Version" msgstr "Version" #: /var/www/html/cacti/automation_snmp.php:680 #: /var/www/html/cacti/include/global_settings.php:500 msgid "Community" msgstr "" #: /var/www/html/cacti/automation_snmp.php:681 #: /var/www/html/cacti/lib/functions.php:3851 msgid "Port" msgstr "" #: /var/www/html/cacti/automation_snmp.php:682 #: /var/www/html/cacti/include/global_settings.php:542 msgid "Timeout" msgstr "" #: /var/www/html/cacti/automation_snmp.php:683 #: /var/www/html/cacti/include/global_settings.php:558 msgid "Retries" msgstr "" #: /var/www/html/cacti/automation_snmp.php:684 msgid "Max OIDS" msgstr "" #: /var/www/html/cacti/automation_snmp.php:685 msgid "Auth Username" msgstr "" #: /var/www/html/cacti/automation_snmp.php:686 msgid "Auth Password" msgstr "" #: /var/www/html/cacti/automation_snmp.php:687 msgid "Auth Protocol" msgstr "" #: /var/www/html/cacti/automation_snmp.php:688 msgid "Priv Passphrase" msgstr "" #: /var/www/html/cacti/automation_snmp.php:689 msgid "Priv Protocol" msgstr "" #: /var/www/html/cacti/automation_snmp.php:690 msgid "Context" msgstr "" #: /var/www/html/cacti/automation_snmp.php:691 #: /var/www/html/cacti/data_queries.php:919 #: /var/www/html/cacti/utilities.php:1643 msgid "Action" msgstr "Aktion" #: /var/www/html/cacti/automation_snmp.php:704 msgid "none" msgstr "" #: /var/www/html/cacti/automation_snmp.php:719 #: /var/www/html/cacti/automation_templates.php:543 #: /var/www/html/cacti/cdef.php:608 /var/www/html/cacti/color_templates.php:110 #: /var/www/html/cacti/data_queries.php:623 #: /var/www/html/cacti/data_queries.php:721 #: /var/www/html/cacti/lib/api_automation.php:1264 #: /var/www/html/cacti/lib/api_automation.php:1327 #: /var/www/html/cacti/lib/api_automation.php:1391 #: /var/www/html/cacti/lib/html.php:975 #: /var/www/html/cacti/lib/html_reports.php:1319 #: /var/www/html/cacti/lib/html_reports.php:1321 #: /var/www/html/cacti/tree.php:1602 /var/www/html/cacti/tree.php:1609 #: /var/www/html/cacti/vdef.php:588 msgid "Move Down" msgstr "" #: /var/www/html/cacti/automation_snmp.php:725 #: /var/www/html/cacti/automation_templates.php:549 #: /var/www/html/cacti/cdef.php:614 /var/www/html/cacti/color_templates.php:116 #: /var/www/html/cacti/data_queries.php:628 #: /var/www/html/cacti/data_queries.php:726 #: /var/www/html/cacti/lib/api_automation.php:1270 #: /var/www/html/cacti/lib/api_automation.php:1333 #: /var/www/html/cacti/lib/api_automation.php:1397 #: /var/www/html/cacti/lib/html.php:980 #: /var/www/html/cacti/lib/html_reports.php:1321 #: /var/www/html/cacti/lib/html_reports.php:1323 #: /var/www/html/cacti/tree.php:1606 /var/www/html/cacti/tree.php:1610 #: /var/www/html/cacti/vdef.php:594 msgid "Move Up" msgstr "" #: /var/www/html/cacti/automation_snmp.php:739 msgid "No SNMP Items" msgstr "" #: /var/www/html/cacti/automation_snmp.php:774 msgid "Delete SNMP Option Item" msgstr "" #: /var/www/html/cacti/automation_snmp.php:837 msgid "SNMP Rules" msgstr "SNMP-Regeln" #: /var/www/html/cacti/automation_snmp.php:929 msgid "SNMP Option Sets" msgstr "" #: /var/www/html/cacti/automation_snmp.php:938 msgid "SNMP Option Set" msgstr "" #: /var/www/html/cacti/automation_snmp.php:939 msgid "Networks Using" msgstr "" #: /var/www/html/cacti/automation_snmp.php:940 msgid "SNMP Entries" msgstr "" #: /var/www/html/cacti/automation_snmp.php:941 msgid "V1 Entries" msgstr "" #: /var/www/html/cacti/automation_snmp.php:942 msgid "V2 Entries" msgstr "" #: /var/www/html/cacti/automation_snmp.php:943 msgid "V3 Entries" msgstr "" #: /var/www/html/cacti/automation_snmp.php:963 msgid "No SNMP Option Sets Found" msgstr "" #: /var/www/html/cacti/automation_templates.php:190 msgid "Click 'Continue' to delete the folling Automation Template(s)." msgstr "" #: /var/www/html/cacti/automation_templates.php:195 msgid "Delete Automation Template(s)" msgstr "" #: /var/www/html/cacti/automation_templates.php:198 msgid "You must select at least one Automation Template." msgstr "" #: /var/www/html/cacti/automation_templates.php:300 #: /var/www/html/cacti/include/global_arrays.php:1047 #: /var/www/html/cacti/include/global_form.php:1010 #: /var/www/html/cacti/include/global_form.php:1518 #: /var/www/html/cacti/lib/html_reports.php:356 msgid "Device Template" msgstr "Zielsystem Schablone" #: /var/www/html/cacti/automation_templates.php:301 msgid "Select a Device Template that Devices will be matched to." msgstr "" #: /var/www/html/cacti/automation_templates.php:308 msgid "Choose the Availability Method to use for Discovered Devices." msgstr "" #: /var/www/html/cacti/automation_templates.php:315 #: /var/www/html/cacti/automation_templates.php:512 msgid "System Description Match" msgstr "" #: /var/www/html/cacti/automation_templates.php:316 msgid "" "This is a unique string that will be matched to a devices sysDescr string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: /var/www/html/cacti/automation_templates.php:322 #: /var/www/html/cacti/automation_templates.php:513 msgid "System Name Match" msgstr "" #: /var/www/html/cacti/automation_templates.php:323 msgid "" "This is a unique string that will be matched to a devices sysName string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: /var/www/html/cacti/automation_templates.php:329 msgid "System OID Match" msgstr "" #: /var/www/html/cacti/automation_templates.php:330 msgid "" "This is a unique string that will be matched to a devices sysOid string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: /var/www/html/cacti/automation_templates.php:350 #, php-format msgid "Automation Templates [edit: %s]" msgstr "" #: /var/www/html/cacti/automation_templates.php:352 msgid "Automation Templates [new]" msgstr "" #: /var/www/html/cacti/automation_templates.php:403 msgid "Device Automation Templates" msgstr "" #: /var/www/html/cacti/automation_templates.php:510 #: /var/www/html/cacti/data_sources.php:1409 #: /var/www/html/cacti/graphs.php:1828 /var/www/html/cacti/user_admin.php:1376 #: /var/www/html/cacti/user_group_admin.php:1109 msgid "Template Name" msgstr "Template Name" #: /var/www/html/cacti/automation_templates.php:514 msgid "System ObjectId Match" msgstr "" #: /var/www/html/cacti/automation_templates.php:518 #: /var/www/html/cacti/data_queries.php:594 #: /var/www/html/cacti/data_queries.php:690 /var/www/html/cacti/links.php:381 #: /var/www/html/cacti/tree.php:1587 msgid "Order" msgstr "" #: /var/www/html/cacti/automation_templates.php:528 msgid "Unknown Template" msgstr "" #: /var/www/html/cacti/automation_templates.php:563 msgid "No Automation Device Templates Found" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:253 msgid "Click 'Continue' to delete the following Rule(s)." msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:260 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Rules." msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:379 msgid "Created Trees" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:471 #, php-format msgid "Are you sure you want to DELETE the Rule '%s'?" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:529 msgid "Eligible Objects" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:542 #, php-format msgid "Tree Rule Selection [edit: %s]" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:544 msgid "Tree Rules Selection [new]" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:595 msgid "Object Selection Criteria" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:601 msgid "Tree Creation Criteria" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:706 #: /var/www/html/cacti/automation_tree_rules.php:731 #: /var/www/html/cacti/automation_tree_rules.php:831 #: /var/www/html/cacti/include/global_arrays.php:759 #: /var/www/html/cacti/lib/functions.php:2621 msgid "Tree Rules" msgstr "Baum-Regeln" #: /var/www/html/cacti/automation_tree_rules.php:842 msgid "Hook into Tree" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:843 msgid "At Subtree" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:844 msgid "This Type" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:845 msgid "Using Grouping" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:854 msgid "ROOT" msgstr "" #: /var/www/html/cacti/automation_tree_rules.php:870 msgid "No Tree Rules Found" msgstr "" #: /var/www/html/cacti/cdef.php:277 msgid "Click 'Continue' to delete the following CDEF." msgid_plural "Click 'Continue' to delete all following CDEFs." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/cdef.php:282 msgid "Delete CDEF" msgid_plural "Delete CDEFs" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/cdef.php:286 msgid "" "Click 'Continue' to duplicate the following CDEF. You can optionally change " "the title format for the new CDEF." msgid_plural "" "Click 'Continue' to duplicate the following CDEFs. You can optionally change " "the title format for the new CDEFs." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/cdef.php:288 /var/www/html/cacti/color_templates.php:238 #: /var/www/html/cacti/data_source_profiles.php:286 #: /var/www/html/cacti/data_templates.php:364 #: /var/www/html/cacti/graph_templates.php:323 #: /var/www/html/cacti/host_templates.php:267 /var/www/html/cacti/vdef.php:276 msgid "Title Format:" msgstr "Titelzeile:" #: /var/www/html/cacti/cdef.php:293 msgid "Duplicate CDEF" msgid_plural "Duplicate CDEFs" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/cdef.php:296 msgid "You must select at least one CDEF." msgstr "Bitte wählen Sie mindestens eine CDEF." #: /var/www/html/cacti/cdef.php:338 msgid "Click 'Continue' to delete the following CDEF Item." msgstr "" #: /var/www/html/cacti/cdef.php:339 #, php-format msgid "CDEF Name: '%s'" msgstr "" #: /var/www/html/cacti/cdef.php:346 msgid "Remove CDEF Item" msgstr "" #: /var/www/html/cacti/cdef.php:425 #, fuzzy #| msgid "Preview" msgid "CDEF Preview" msgstr "Vorschau" #: /var/www/html/cacti/cdef.php:431 #, php-format msgid "CDEF Items [edit: %s]" msgstr "" #: /var/www/html/cacti/cdef.php:443 msgid "CDEF Item Type" msgstr "Typ des CDEF Elementes" #: /var/www/html/cacti/cdef.php:444 msgid "Choose what type of CDEF item this is." msgstr "Wählen Sie die Art des CDEF Elements." #: /var/www/html/cacti/cdef.php:465 msgid "CDEF Item Value" msgstr "Wert des CDEF Elements" #: /var/www/html/cacti/cdef.php:466 msgid "Enter a value for this CDEF item." msgstr "Geben Sie bitte einen Wert für dieses CDEF Element ein." #: /var/www/html/cacti/cdef.php:559 #, php-format msgid "CDEF [edit: %s]" msgstr "" #: /var/www/html/cacti/cdef.php:561 msgid "CDEF [new]" msgstr "" #: /var/www/html/cacti/cdef.php:582 /var/www/html/cacti/lib/functions.php:1997 msgid "CDEF Items" msgstr "CDEF Elemente" #: /var/www/html/cacti/cdef.php:586 /var/www/html/cacti/vdef.php:565 msgid "Item Value" msgstr "Wert des Elements" #: /var/www/html/cacti/cdef.php:599 /var/www/html/cacti/vdef.php:579 #, php-format msgid "Item #%d" msgstr "Element #%d" #: /var/www/html/cacti/cdef.php:658 msgid "Delete CDEF Item" msgstr "" #: /var/www/html/cacti/cdef.php:714 /var/www/html/cacti/cdef.php:729 #: /var/www/html/cacti/cdef.php:845 #: /var/www/html/cacti/include/global_arrays.php:764 #: /var/www/html/cacti/lib/functions.php:1979 msgid "CDEFs" msgstr "CDEFs" #: /var/www/html/cacti/cdef.php:854 msgid "CDEF Name" msgstr "" #: /var/www/html/cacti/cdef.php:854 #: /var/www/html/cacti/data_source_profiles.php:929 msgid "The name of this CDEF." msgstr "" #: /var/www/html/cacti/cdef.php:855 msgid "" "CDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: /var/www/html/cacti/cdef.php:856 msgid "The number of Graphs using this CDEF." msgstr "" #: /var/www/html/cacti/cdef.php:857 /var/www/html/cacti/color.php:704 #: /var/www/html/cacti/data_input.php:727 #: /var/www/html/cacti/data_queries.php:1162 #: /var/www/html/cacti/data_source_profiles.php:936 #: /var/www/html/cacti/gprint_presets.php:396 /var/www/html/cacti/vdef.php:850 msgid "Templates Using" msgstr "" #: /var/www/html/cacti/cdef.php:857 msgid "The number of Graphs Templates using this CDEF." msgstr "" #: /var/www/html/cacti/cdef.php:879 msgid "No CDEFs" msgstr "" #: /var/www/html/cacti/clog.php:33 /var/www/html/cacti/clog_user.php:32 msgid "FATAL: YOU DO NO HAVE ACCESS TO THIS AREA OF CACTI" msgstr "" #: /var/www/html/cacti/color.php:170 msgid "Unnamed Color" msgstr "" #: /var/www/html/cacti/color.php:187 msgid "Click 'Continue' to delete the following Color" msgid_plural "Click 'Continue' to delete the following Colors" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/color.php:192 msgid "Delete Color" msgid_plural "Delete Colors" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/color.php:195 msgid "You must select at least one Color." msgstr "" #: /var/www/html/cacti/color.php:351 msgid "Cacti has imported the following items:" msgstr "Cacti hat folgende Elemente importiert:" #: /var/www/html/cacti/color.php:365 /var/www/html/cacti/color.php:569 msgid "Import Colors" msgstr "" #: /var/www/html/cacti/color.php:368 msgid "Import Colors from Local File" msgstr "" #: /var/www/html/cacti/color.php:369 msgid "" "Please specify the location of the CSV file containing your Color " "information." msgstr "" #: /var/www/html/cacti/color.php:373 /var/www/html/cacti/lib/html_form.php:466 msgid "Select a File" msgstr "" #: /var/www/html/cacti/color.php:380 msgid "Overwrite Existing Data?" msgstr "" #: /var/www/html/cacti/color.php:381 msgid "" "Should the import process be allowed to overwrite existing data? Please " "note, this does not mean delete old rows, only update duplicate rows." msgstr "" #: /var/www/html/cacti/color.php:384 msgid "Allow Existing Rows to be Updated?" msgstr "" #: /var/www/html/cacti/color.php:389 msgid "Required File Format Notes" msgstr "" #: /var/www/html/cacti/color.php:392 msgid "The file must contain a header row with the following column headings." msgstr "" #: /var/www/html/cacti/color.php:394 msgid "name - The Color Name" msgstr "" #: /var/www/html/cacti/color.php:395 msgid "hex - The Hex Value" msgstr "" #: /var/www/html/cacti/color.php:416 #, php-format msgid "Colors [edit: %s]" msgstr "" #: /var/www/html/cacti/color.php:418 msgid "Colors [new]" msgstr "" #: /var/www/html/cacti/color.php:520 /var/www/html/cacti/color.php:535 #: /var/www/html/cacti/include/global_arrays.php:766 #: /var/www/html/cacti/lib/functions.php:2045 msgid "Colors" msgstr "Farben" #: /var/www/html/cacti/color.php:552 msgid "Named Colors" msgstr "" #: /var/www/html/cacti/color.php:569 /var/www/html/cacti/lib/html_form.php:1151 msgid "Import" msgstr "Daten importieren" #: /var/www/html/cacti/color.php:570 msgid "Export Colors" msgstr "" #: /var/www/html/cacti/color.php:698 /var/www/html/cacti/color_templates.php:74 msgid "Hex" msgstr "Hex" #: /var/www/html/cacti/color.php:698 msgid "The Hex Value for this Color." msgstr "" #: /var/www/html/cacti/color.php:699 msgid "Color Name" msgstr "" #: /var/www/html/cacti/color.php:699 msgid "The name of this Color definition." msgstr "" #: /var/www/html/cacti/color.php:700 msgid "Is this color a named color which are read only." msgstr "" #: /var/www/html/cacti/color.php:700 msgid "Named Color" msgstr "" #: /var/www/html/cacti/color.php:701 /var/www/html/cacti/color_templates.php:73 #: /var/www/html/cacti/include/global_arrays.php:752 #: /var/www/html/cacti/include/global_form.php:789 #: /var/www/html/cacti/include/global_form.php:2018 msgid "Color" msgstr "Farbe" #: /var/www/html/cacti/color.php:701 msgid "The Color as shown on the screen." msgstr "" #: /var/www/html/cacti/color.php:702 msgid "" "Colors in use cannot be Deleted. In use is defined as being referenced " "either by a Graph or a Graph Template." msgstr "" #: /var/www/html/cacti/color.php:703 msgid "The number of Graph using this Color." msgstr "" #: /var/www/html/cacti/color.php:704 msgid "The number of Graph Templates using this Color." msgstr "" #: /var/www/html/cacti/color.php:734 msgid "No Colors Found" msgstr "" #: /var/www/html/cacti/color_templates.php:72 msgid "Color Item" msgstr "Farbelement" #: /var/www/html/cacti/color_templates.php:93 #: /var/www/html/cacti/lib/api_aggregate.php:1370 #: /var/www/html/cacti/lib/api_aggregate.php:1373 #: /var/www/html/cacti/lib/api_aggregate.php:1378 #: /var/www/html/cacti/lib/html.php:912 #, php-format msgid "Item # %d" msgstr "Element # %d" #: /var/www/html/cacti/color_templates.php:132 #: /var/www/html/cacti/graph_templates_inputs.php:222 #: /var/www/html/cacti/lib/api_aggregate.php:1430 #: /var/www/html/cacti/lib/html.php:994 msgid "No Items" msgstr "Eine Einträge" #: /var/www/html/cacti/color_templates.php:227 msgid "Click 'Continue' to delete the following Color Template" msgid_plural "Click 'Continue' to delete following Color Templates" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/color_templates.php:232 msgid "Delete Color Template" msgid_plural "Delete Color Templates" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/color_templates.php:236 msgid "" "Click 'Continue' to duplicate the following Color Template. You can " "optionally change the title format for the new color template." msgid_plural "" "Click 'Continue' to duplicate following Color Templates. You can optionally " "change the title format for the new color templates." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/color_templates.php:242 msgid "Duplicate Color Template" msgid_plural "Duplicate Color Templates" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/color_templates.php:245 msgid "You must select at least one Color Template." msgstr "" #: /var/www/html/cacti/color_templates.php:278 msgid "Color Template Items [new]" msgstr "" #: /var/www/html/cacti/color_templates.php:289 #, php-format msgid "Color Template Items [edit: %s]" msgstr "" #: /var/www/html/cacti/color_templates.php:322 msgid "Delete Color Item" msgstr "Farbelement löschen" #: /var/www/html/cacti/color_templates.php:349 #, php-format msgid "Color Template [edit: %s]" msgstr "" #: /var/www/html/cacti/color_templates.php:351 msgid "Color Template [new]" msgstr "" #: /var/www/html/cacti/color_templates.php:432 #: /var/www/html/cacti/color_templates.php:445 #: /var/www/html/cacti/lib/functions.php:2519 msgid "Color Templates" msgstr "" #: /var/www/html/cacti/color_templates.php:547 msgid "" "Color Templates that are in use cannot be Deleted. In use is defined as " "being referenced by an Aggregate Template." msgstr "" #: /var/www/html/cacti/color_templates.php:572 msgid "No Color Templates Found" msgstr "Keine Farbvorlagen gefunden" #: /var/www/html/cacti/color_templates_items.php:273 msgid "Click 'Continue' to delete the following Color Template Color." msgstr "" #: /var/www/html/cacti/color_templates_items.php:274 msgid "Color Name:" msgstr "" #: /var/www/html/cacti/color_templates_items.php:275 msgid "Color Hex:" msgstr "" #: /var/www/html/cacti/color_templates_items.php:281 msgid "Remove Color Item" msgstr "Farbelement entfernen" #: /var/www/html/cacti/color_templates_items.php:339 #, php-format msgid "Color Template Items [edit Report Item: %s]" msgstr "" #: /var/www/html/cacti/color_templates_items.php:342 #, php-format msgid "Color Template Items [new Report Item: %s]" msgstr "" #: /var/www/html/cacti/data_input.php:212 msgid "Click 'Continue' to delete the following Data Input Method" msgid_plural "Click 'Continue' to delete the following Data Input Method" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_input.php:218 msgid "Delete Data Input Method" msgid_plural "Delete Data Input Methods" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_input.php:220 msgid "You must select at least one data input method." msgstr "" #: /var/www/html/cacti/data_input.php:259 msgid "Click 'Continue' to delete the following Data Input Field." msgstr "" #: /var/www/html/cacti/data_input.php:260 #, php-format msgid "Field Name: %s" msgstr "" #: /var/www/html/cacti/data_input.php:261 #, php-format msgid "Friendly Name: %s" msgstr "" #: /var/www/html/cacti/data_input.php:267 #: /var/www/html/cacti/host_templates.php:335 #: /var/www/html/cacti/host_templates.php:395 msgid "Remove Data Input Field" msgstr "" #: /var/www/html/cacti/data_input.php:362 #, php-format msgid "Output Fields [edit: %s]" msgstr "" #: /var/www/html/cacti/data_input.php:363 #: /var/www/html/cacti/include/global_form.php:464 msgid "Output Field" msgstr "" #: /var/www/html/cacti/data_input.php:365 #, php-format msgid "Input Fields [edit: %s]" msgstr "" #: /var/www/html/cacti/data_input.php:366 msgid "Input Field" msgstr "" #: /var/www/html/cacti/data_input.php:432 #, php-format msgid "Data Input Methods [edit: %s]" msgstr "" #: /var/www/html/cacti/data_input.php:434 msgid "Data Input Methods [new]" msgstr "" #: /var/www/html/cacti/data_input.php:444 #: /var/www/html/cacti/include/global_arrays.php:344 msgid "SNMP Get" msgstr "" #: /var/www/html/cacti/data_input.php:447 #: /var/www/html/cacti/include/global_arrays.php:345 msgid "SNMP Query" msgstr "" #: /var/www/html/cacti/data_input.php:450 #: /var/www/html/cacti/include/global_arrays.php:347 msgid "Script Query" msgstr "" #: /var/www/html/cacti/data_input.php:453 #: /var/www/html/cacti/include/global_arrays.php:349 msgid "Script Query - Script Server" msgstr "" #: /var/www/html/cacti/data_input.php:466 msgid "Input Fields" msgstr "Eingabefelder" #: /var/www/html/cacti/data_input.php:469 msgid "Field Order" msgstr "Feldanordnung" #: /var/www/html/cacti/data_input.php:470 #: /var/www/html/cacti/data_input.php:503 #: /var/www/html/cacti/include/global_form.php:279 msgid "Friendly Name" msgstr "Aussagekräftiger Name" #: /var/www/html/cacti/data_input.php:484 msgid "(Not In Use)" msgstr "(Nicht verwendet)" #: /var/www/html/cacti/data_input.php:496 msgid "No Input Fields" msgstr "Keine Eingabefelder" #: /var/www/html/cacti/data_input.php:500 msgid "Output Fields" msgstr "Ausgabefelder" #: /var/www/html/cacti/data_input.php:504 msgid "Update RRA" msgstr "Aktualisiere RRA" #: /var/www/html/cacti/data_input.php:535 msgid "No Output Fields" msgstr "Keine Ausgabefelder" #: /var/www/html/cacti/data_input.php:557 #: /var/www/html/cacti/host_templates.php:600 msgid "Delete Data Input Field" msgstr "" #: /var/www/html/cacti/data_input.php:611 #: /var/www/html/cacti/include/global_arrays.php:745 #: /var/www/html/cacti/include/global_arrays.php:915 #: /var/www/html/cacti/lib/functions.php:2183 msgid "Data Input Methods" msgstr "Programme zur Datenabfrage" #: /var/www/html/cacti/data_input.php:626 #: /var/www/html/cacti/data_input.php:715 msgid "Input Methods" msgstr "" #: /var/www/html/cacti/data_input.php:724 msgid "Data Input Name" msgstr "" #: /var/www/html/cacti/data_input.php:724 msgid "The name of this Data Input Method." msgstr "" #: /var/www/html/cacti/data_input.php:725 msgid "" "Data Inputs that are in use cannot be Deleted. In use is defined as being " "referenced either by a Data Source or a Data Template." msgstr "" #: /var/www/html/cacti/data_input.php:726 #: /var/www/html/cacti/data_source_profiles.php:935 #: /var/www/html/cacti/data_templates.php:912 msgid "Data Sources Using" msgstr "" #: /var/www/html/cacti/data_input.php:726 msgid "The number of Data Sources that use this Data Input Method." msgstr "" #: /var/www/html/cacti/data_input.php:727 msgid "The number of Data Templates that use this Data Input Method." msgstr "" #: /var/www/html/cacti/data_input.php:728 #: /var/www/html/cacti/data_queries.php:1163 #: /var/www/html/cacti/include/global_arrays.php:1039 #: /var/www/html/cacti/include/global_form.php:388 #: /var/www/html/cacti/include/global_form.php:1276 msgid "Data Input Method" msgstr "Programm zur Datenabfrage" #: /var/www/html/cacti/data_input.php:728 msgid "The method used to gather information for this Data Input Method." msgstr "" #: /var/www/html/cacti/data_input.php:751 msgid "No Data Input Methods Found" msgstr "" #: /var/www/html/cacti/data_queries.php:316 msgid "Click 'Continue' to delete the following Data Query." msgid_plural "Click 'Continue' to delete following Data Queries." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_queries.php:322 msgid "Delete Data Query" msgid_plural "Delete Data Query" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_queries.php:324 msgid "You must select at least one data query." msgstr "" #: /var/www/html/cacti/data_queries.php:419 msgid "Click 'Continue' to delete the following Data Query Graph Association." msgstr "" #: /var/www/html/cacti/data_queries.php:420 #, php-format msgid "Graph Name: %s" msgstr "" #: /var/www/html/cacti/data_queries.php:426 /var/www/html/cacti/vdef.php:333 msgid "Remove VDEF Item" msgstr "" #: /var/www/html/cacti/data_queries.php:478 #, php-format msgid "Associated Graph/Data Templates [edit: %s]" msgstr "" #: /var/www/html/cacti/data_queries.php:501 msgid "Associated Data Templates" msgstr "" #: /var/www/html/cacti/data_queries.php:519 #, fuzzy, php-format msgid "Data Template - %s" msgstr "Element der Datenschablone" #: /var/www/html/cacti/data_queries.php:549 #: /var/www/html/cacti/data_sources.php:881 #: /var/www/html/cacti/data_templates.php:516 #: /var/www/html/cacti/graphs_items.php:439 #: /var/www/html/cacti/include/global_arrays.php:750 #: /var/www/html/cacti/include/global_form.php:774 #: /var/www/html/cacti/lib/api_aggregate.php:1295 #: /var/www/html/cacti/lib/html.php:872 msgid "Data Source" msgstr "Datenquelle" #: /var/www/html/cacti/data_queries.php:584 msgid "Suggested Values - Graph Names" msgstr "" #: /var/www/html/cacti/data_queries.php:595 #: /var/www/html/cacti/data_queries.php:691 msgid "Equation" msgstr "" #: /var/www/html/cacti/data_queries.php:646 #: /var/www/html/cacti/data_queries.php:745 #, fuzzy #| msgid "No Sites Found" msgid "No Suggested Values Found" msgstr "Keine Standorte gefunden" #: /var/www/html/cacti/data_queries.php:655 #: /var/www/html/cacti/data_queries.php:754 #: /var/www/html/cacti/include/global_form.php:2053 #: /var/www/html/cacti/include/global_form.php:2095 #: /var/www/html/cacti/lib/api_automation.php:1364 #: /var/www/html/cacti/utilities.php:1453 msgid "Field Name" msgstr "" #: /var/www/html/cacti/data_queries.php:661 #: /var/www/html/cacti/data_queries.php:760 msgid "Suggested Value" msgstr "" #: /var/www/html/cacti/data_queries.php:667 #: /var/www/html/cacti/data_queries.php:766 /var/www/html/cacti/host.php:798 #: /var/www/html/cacti/host.php:915 /var/www/html/cacti/host_templates.php:515 #: /var/www/html/cacti/host_templates.php:569 #: /var/www/html/cacti/lib/html.php:37 #: /var/www/html/cacti/lib/html_filter.php:55 msgid "Add" msgstr "Hinzufügen" #: /var/www/html/cacti/data_queries.php:667 msgid "Add Graph Title Suggested Name" msgstr "" #: /var/www/html/cacti/data_queries.php:677 msgid "Suggested Values - Data Source Names" msgstr "" #: /var/www/html/cacti/data_queries.php:766 msgid "Add Data Source Name Suggested Name" msgstr "" #: /var/www/html/cacti/data_queries.php:879 #, php-format msgid "Data Queries [edit: %s]" msgstr "" #: /var/www/html/cacti/data_queries.php:881 msgid "Data Queries [new]" msgstr "" #: /var/www/html/cacti/data_queries.php:901 msgid "Successfully located XML file" msgstr "XML-Datei wurde gefunden" #: /var/www/html/cacti/data_queries.php:904 msgid "Could not locate XML file." msgstr "XML-Datei konnte nicht gefunden werden." #: /var/www/html/cacti/data_queries.php:912 /var/www/html/cacti/host.php:710 #: /var/www/html/cacti/host_templates.php:466 #: /var/www/html/cacti/lib/functions.php:2237 msgid "Associated Graph Templates" msgstr "Zugeordnete Graph Templates" #: /var/www/html/cacti/data_queries.php:916 #: /var/www/html/cacti/graph_templates.php:763 #: /var/www/html/cacti/graphs_new.php:637 /var/www/html/cacti/host.php:714 #: /var/www/html/cacti/lib/api_automation.php:571 msgid "Graph Template Name" msgstr "Name des Graph Templates" #: /var/www/html/cacti/data_queries.php:918 msgid "Mapping ID" msgstr "" #: /var/www/html/cacti/data_queries.php:959 msgid "Mapped Graph Templates with Graphs are read only" msgstr "" #: /var/www/html/cacti/data_queries.php:966 msgid "No Graph Templates Defined." msgstr "Keine Graph Templates definiert." #: /var/www/html/cacti/data_queries.php:990 msgid "Delete Associated Graph" msgstr "" #: /var/www/html/cacti/data_queries.php:1044 #: /var/www/html/cacti/data_queries.php:1059 #: /var/www/html/cacti/data_queries.php:1149 #: /var/www/html/cacti/include/global_arrays.php:744 #: /var/www/html/cacti/include/global_arrays.php:916 #: /var/www/html/cacti/lib/api_automation.php:1058 #: /var/www/html/cacti/lib/functions.php:2219 msgid "Data Queries" msgstr "Datenabfragen" #: /var/www/html/cacti/data_queries.php:1158 /var/www/html/cacti/host.php:812 #: /var/www/html/cacti/utilities.php:1453 msgid "Data Query Name" msgstr "Name von Daten Abfragen" #: /var/www/html/cacti/data_queries.php:1158 msgid "The name of this Data Query." msgstr "" #: /var/www/html/cacti/data_queries.php:1159 #: /var/www/html/cacti/graph_templates.php:764 msgid "" "The internal ID for this Graph Template. Useful when performing automation " "or debugging." msgstr "" #: /var/www/html/cacti/data_queries.php:1160 msgid "" "Data Queries that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: /var/www/html/cacti/data_queries.php:1161 msgid "The number of Graphs using this Data Query." msgstr "" #: /var/www/html/cacti/data_queries.php:1162 msgid "The number of Graphs Templates using this Data Query." msgstr "" #: /var/www/html/cacti/data_queries.php:1163 msgid "" "The Data Input Method used to collect data for Data Sources associated with " "this Data Query." msgstr "" #: /var/www/html/cacti/data_queries.php:1187 msgid "No Data Queries Found" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:275 msgid "Click 'Continue' to delete the following Data Source Profile" msgid_plural "Click 'Continue' to delete following Data Source Profiles" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_source_profiles.php:280 msgid "Delete Data Source Profile" msgid_plural "Delete Data Source Profiles" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_source_profiles.php:284 msgid "" "Click 'Continue' to duplicate the following Data Source Profile. You can " "optionally change the title format for the new Data Source Profile" msgid_plural "" "Click 'Continue' to duplicate following Data Source Profiles. You can " "optionally change the title format for the new Data Source Profiles." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_source_profiles.php:290 msgid "Duplicate Data Source Profile" msgid_plural "Duplicate Date Source Profiles" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_source_profiles.php:293 msgid "You must select at least one Data Source Profile." msgstr "" #: /var/www/html/cacti/data_source_profiles.php:335 msgid "Click 'Continue' to delete the following Data Source Profile RRA." msgstr "" #: /var/www/html/cacti/data_source_profiles.php:336 #, php-format msgid "Profile Name: %s" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:342 msgid "Remove Data Source Profile RRA" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:405 #: /var/www/html/cacti/data_source_profiles.php:424 msgid "Each Insert is New Row" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:443 msgid "(Some Elements Read Only)" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:443 #, php-format msgid "RRA [edit: %s %s]" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:522 #, php-format msgid "Data Source Profile [edit: %s]" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:524 msgid "Data Source Profile [new]" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:542 msgid "Data Source Profile RRAs (press save to update timespans)" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:544 msgid "Data Source Profile RRAs (Read Only)" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:549 #: /var/www/html/cacti/include/global_form.php:134 msgid "Data Retention" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:550 #: /var/www/html/cacti/include/global_settings.php:769 #: /var/www/html/cacti/lib/html_reports.php:396 msgid "Graph Timespan" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:551 msgid "Steps" msgstr "Schritte" #: /var/www/html/cacti/data_source_profiles.php:552 #: /var/www/html/cacti/graphs_new.php:576 #: /var/www/html/cacti/include/global_form.php:118 #: /var/www/html/cacti/lib/html.php:323 #: /var/www/html/cacti/lib/html_filter.php:73 #: /var/www/html/cacti/lib/rrd.php:2692 /var/www/html/cacti/utilities.php:479 #: /var/www/html/cacti/utilities.php:1367 msgid "Rows" msgstr "Zeilen" #: /var/www/html/cacti/data_source_profiles.php:605 msgid "Select Consolidation Function(s)" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:631 msgid "Delete Data Source Profile Item" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:678 #, php-format msgid "%s KBytes per Data Sources and %s Bytes for the Header" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:687 #, php-format msgid "%s KBytes per Data Source" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:701 #: /var/www/html/cacti/include/global_arrays.php:585 #: /var/www/html/cacti/include/global_arrays.php:1142 #: /var/www/html/cacti/include/global_settings.php:1063 #, php-format msgid "%d Years" msgstr "%d Jahre" #: /var/www/html/cacti/data_source_profiles.php:701 msgid "1 Year" msgstr "1 Jahr" #: /var/www/html/cacti/data_source_profiles.php:710 #: /var/www/html/cacti/include/global_arrays.php:579 #: /var/www/html/cacti/include/global_arrays.php:1136 #: /var/www/html/cacti/rrdcleaner.php:489 #, php-format msgid "%d Month" msgstr "%d Monat" #: /var/www/html/cacti/data_source_profiles.php:710 #: /var/www/html/cacti/include/global_arrays.php:580 #: /var/www/html/cacti/include/global_arrays.php:581 #: /var/www/html/cacti/include/global_arrays.php:582 #: /var/www/html/cacti/include/global_arrays.php:583 #: /var/www/html/cacti/include/global_arrays.php:1137 #: /var/www/html/cacti/include/global_arrays.php:1138 #: /var/www/html/cacti/include/global_arrays.php:1139 #: /var/www/html/cacti/include/global_arrays.php:1140 #: /var/www/html/cacti/rrdcleaner.php:490 #: /var/www/html/cacti/rrdcleaner.php:491 #: /var/www/html/cacti/rrdcleaner.php:492 #, php-format msgid "%d Months" msgstr "%d Monate" #: /var/www/html/cacti/data_source_profiles.php:719 #: /var/www/html/cacti/include/global_arrays.php:576 #: /var/www/html/cacti/include/global_arrays.php:1134 #: /var/www/html/cacti/rrdcleaner.php:485 #: /var/www/html/cacti/rrdcleaner.php:486 #, php-format msgid "%d Week" msgstr "%d Woche" #: /var/www/html/cacti/data_source_profiles.php:719 #: /var/www/html/cacti/include/global_arrays.php:577 #: /var/www/html/cacti/include/global_arrays.php:578 #: /var/www/html/cacti/include/global_arrays.php:1135 #: /var/www/html/cacti/rrdcleaner.php:487 #: /var/www/html/cacti/rrdcleaner.php:488 #, php-format msgid "%d Weeks" msgstr "%d Wochen" #: /var/www/html/cacti/data_source_profiles.php:728 #: /var/www/html/cacti/include/global_arrays.php:573 #: /var/www/html/cacti/include/global_arrays.php:1130 #, php-format msgid "%d Day" msgstr "%d Tag" #: /var/www/html/cacti/data_source_profiles.php:728 #: /var/www/html/cacti/include/global_arrays.php:574 #: /var/www/html/cacti/include/global_arrays.php:575 #: /var/www/html/cacti/include/global_arrays.php:1131 #: /var/www/html/cacti/include/global_arrays.php:1132 #: /var/www/html/cacti/include/global_arrays.php:1133 #: /var/www/html/cacti/include/global_settings.php:1058 #: /var/www/html/cacti/include/global_settings.php:1059 #: /var/www/html/cacti/include/global_settings.php:1060 #: /var/www/html/cacti/include/global_settings.php:1061 #: /var/www/html/cacti/include/global_settings.php:1072 #: /var/www/html/cacti/include/global_settings.php:1073 #: /var/www/html/cacti/include/global_settings.php:1074 #: /var/www/html/cacti/include/global_settings.php:1075 #, php-format msgid "%d Days" msgstr "%d Tage" #: /var/www/html/cacti/data_source_profiles.php:736 #: /var/www/html/cacti/include/global_arrays.php:524 #: /var/www/html/cacti/include/global_arrays.php:559 #: /var/www/html/cacti/include/global_arrays.php:1172 #: /var/www/html/cacti/include/global_arrays.php:1193 #: /var/www/html/cacti/include/global_arrays.php:1226 #: /var/www/html/cacti/include/global_arrays.php:1235 #: /var/www/html/cacti/include/global_arrays.php:1261 #: /var/www/html/cacti/include/global_settings.php:1129 msgid "1 Hour" msgstr "1 Stunde" #: /var/www/html/cacti/data_source_profiles.php:790 #: /var/www/html/cacti/include/global_arrays.php:923 msgid "Data Source Profiles" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:805 #: /var/www/html/cacti/data_source_profiles.php:920 msgid "Profiles" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:822 #: /var/www/html/cacti/data_templates.php:795 msgid "Has Data Sources" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:929 msgid "Data Source Profile Name" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:930 msgid "Is this the default Profile for all new Data Templates?" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:931 msgid "" "Profiles that are in use cannot be Deleted. In use is defined as being " "referenced by a Data Source or a Data Template." msgstr "" #: /var/www/html/cacti/data_source_profiles.php:932 msgid "Profiles that are in use by Data Sources become read only for now." msgstr "" #: /var/www/html/cacti/data_source_profiles.php:932 #: /var/www/html/cacti/include/global_form.php:194 msgid "Read Only" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:933 #: /var/www/html/cacti/data_sources.php:1406 #: /var/www/html/cacti/include/global_settings.php:891 msgid "Poller Interval" msgstr "Poller-Intervall" #: /var/www/html/cacti/data_source_profiles.php:933 msgid "The Polling Frequency for the Profile" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:934 #: /var/www/html/cacti/include/global_form.php:52 #: /var/www/html/cacti/include/global_form.php:456 msgid "Heartbeat" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:934 msgid "" "The Amount of Time, in seconds, without good data before Data is stored as " "Unknown" msgstr "" #: /var/www/html/cacti/data_source_profiles.php:935 msgid "The number of Data Sources using this Profile." msgstr "" #: /var/www/html/cacti/data_source_profiles.php:936 msgid "The number of Data Templates using this Profile." msgstr "" #: /var/www/html/cacti/data_source_profiles.php:968 msgid "No Data Source Profiles Found" msgstr "" #: /var/www/html/cacti/data_sources.php:36 #: /var/www/html/cacti/data_sources.php:478 /var/www/html/cacti/graphs.php:54 msgid "Change Device" msgstr "" #: /var/www/html/cacti/data_sources.php:37 /var/www/html/cacti/graphs.php:55 msgid "Reapply Suggested Names" msgstr "Namensregeln erneut anwenden" #: /var/www/html/cacti/data_sources.php:446 msgid "Click 'Continue' to delete the following Data Source" msgid_plural "Click 'Continue' to delete following Data Sources" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:450 msgid "The following graph is using these data sources:" msgid_plural "The following graphs are using these data sources:" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:459 msgid "Leave the Graph untouched." msgid_plural "Leave all Graphs untouched." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:460 msgid "" "Delete all Graph Items that reference this Data Source." msgid_plural "" "Delete all Graph Items that reference these Data Sources." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:461 msgid "Delete all Graphs that reference this Data Source." msgid_plural "" "Delete all Graphs that reference these Data Sources." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:468 msgid "Delete Data Source" msgid_plural "Delete Data Sources" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:472 msgid "Choose a new Device for this Data Source and click 'Continue'." msgid_plural "Choose a new Device for these Data Sources and click 'Continue'" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:474 msgid "New Device:" msgstr "Neues Gerät:" #: /var/www/html/cacti/data_sources.php:482 msgid "Click 'Continue' to enable the following Data Source." msgid_plural "Click 'Continue' to enable all following Data Sources." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:487 msgid "Enable Data Source" msgid_plural "Enable Data Sources" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:491 msgid "Click 'Continue' to disable the following Data Source." msgid_plural "Click 'Continue' to disable all following Data Sources." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:496 msgid "Disable Data Source" msgid_plural "Disable Data Sources" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:500 msgid "" "Click 'Continue' to re-apply the suggested name to the following Data Source." msgid_plural "" "Click 'Continue' to re-apply the suggested names to all following Data " "Sources." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:505 msgid "Reapply Suggested Naming to Data Source" msgid_plural "Reapply Suggested Naming to Data Sources" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/data_sources.php:514 msgid "You must select at least one data source." msgstr "" #: /var/www/html/cacti/data_sources.php:572 #: /var/www/html/cacti/data_templates.php:633 #, php-format msgid "Custom Data [data input: %s]" msgstr "" #: /var/www/html/cacti/data_sources.php:605 #, php-format msgid "(From Device: %s)" msgstr "(Vom Gerät: %s)" #: /var/www/html/cacti/data_sources.php:608 msgid "(From Data Template)" msgstr "(Aus Datenvorlage)" #: /var/www/html/cacti/data_sources.php:609 msgid "Nothing Entered" msgstr "Nichts eingegeben" #: /var/www/html/cacti/data_sources.php:624 #: /var/www/html/cacti/data_templates.php:686 msgid "No Input Fields for the Selected Data Input Source" msgstr "Keine Eingabefelder für die gewählte Dateneingabe Quelle" #: /var/www/html/cacti/data_sources.php:700 #, php-format msgid "Data Source %d does not exist." msgstr "" #: /var/www/html/cacti/data_sources.php:705 #, php-format msgid "Data Template Selection [edit: %s]" msgstr "" #: /var/www/html/cacti/data_sources.php:711 msgid "Data Template Selection [new]" msgstr "" #: /var/www/html/cacti/data_sources.php:744 msgid "Turn Off Data Source Debug Mode." msgstr "" #: /var/www/html/cacti/data_sources.php:744 msgid "Turn On Data Source Debug Mode." msgstr "" #: /var/www/html/cacti/data_sources.php:745 msgid "Turn Off Data Source Info Mode." msgstr "" #: /var/www/html/cacti/data_sources.php:745 msgid "Turn On Data Source Info Mode." msgstr "" #: /var/www/html/cacti/data_sources.php:748 msgid "Edit Data Template." msgstr "" #: /var/www/html/cacti/data_sources.php:751 /var/www/html/cacti/graphs.php:1333 msgid "Edit Device." msgstr "" #: /var/www/html/cacti/data_sources.php:814 msgid "Selected Data Template" msgstr "" #: /var/www/html/cacti/data_sources.php:815 #, php-format msgid "" "The name given to this data template. Please note that you may only change " "Graph Templates to a 100% compatible Graph Template, which means that it " "includes identical Data Sources." msgstr "" #: /var/www/html/cacti/data_sources.php:823 msgid "Choose the Device that this Data Source belongs to." msgstr "" #: /var/www/html/cacti/data_sources.php:869 msgid "Supplemental Data Template Data" msgstr "" #: /var/www/html/cacti/data_sources.php:871 msgid "Data Source Fields" msgstr "Felder für Datenquellen" #: /var/www/html/cacti/data_sources.php:872 msgid "Data Source Item Fields" msgstr "Eingabefeld der Datenquelle" #: /var/www/html/cacti/data_sources.php:873 msgid "Custom Data" msgstr "Zusätzliche Daten" #: /var/www/html/cacti/data_sources.php:957 #, php-format msgid "Data Source Item %s" msgstr "" #: /var/www/html/cacti/data_sources.php:960 #: /var/www/html/cacti/data_templates.php:586 msgid "New" msgstr "" #: /var/www/html/cacti/data_sources.php:1019 msgid "Data Source Debug" msgstr "Fehleranalyse für Datenquellen" #: /var/www/html/cacti/data_sources.php:1039 msgid "RRDtool Tune Info" msgstr "" #: /var/www/html/cacti/data_sources.php:1065 #: /var/www/html/cacti/data_templates.php:933 #: /var/www/html/cacti/include/global_form.php:400 msgid "External" msgstr "Extern" #: /var/www/html/cacti/data_sources.php:1067 #: /var/www/html/cacti/include/global_arrays.php:518 #: /var/www/html/cacti/include/global_arrays.php:549 #: /var/www/html/cacti/include/global_arrays.php:550 #: /var/www/html/cacti/include/global_arrays.php:551 #: /var/www/html/cacti/include/global_arrays.php:894 #: /var/www/html/cacti/include/global_arrays.php:895 #: /var/www/html/cacti/include/global_arrays.php:896 #: /var/www/html/cacti/include/global_arrays.php:897 #: /var/www/html/cacti/include/global_arrays.php:1215 #: /var/www/html/cacti/include/global_arrays.php:1216 #: /var/www/html/cacti/include/global_arrays.php:1217 #: /var/www/html/cacti/include/global_arrays.php:1218 #: /var/www/html/cacti/include/global_arrays.php:1219 #: /var/www/html/cacti/include/global_arrays.php:1252 #: /var/www/html/cacti/include/global_arrays.php:1253 #: /var/www/html/cacti/include/global_arrays.php:1265 #: /var/www/html/cacti/include/global_arrays.php:1266 #: /var/www/html/cacti/include/global_arrays.php:1267 #: /var/www/html/cacti/include/global_arrays.php:1268 #: /var/www/html/cacti/include/global_arrays.php:1269 #: /var/www/html/cacti/include/global_settings.php:1857 #, php-format msgid "%d Seconds" msgstr "%d Sekunden" #: /var/www/html/cacti/data_sources.php:1069 #: /var/www/html/cacti/include/global_arrays.php:519 #: /var/www/html/cacti/include/global_arrays.php:552 #: /var/www/html/cacti/include/global_arrays.php:898 #: /var/www/html/cacti/include/global_arrays.php:1220 #: /var/www/html/cacti/include/global_arrays.php:1254 #: /var/www/html/cacti/include/global_arrays.php:1270 #: /var/www/html/cacti/include/global_settings.php:1123 #: /var/www/html/cacti/include/global_settings.php:1857 msgid "1 Minute" msgstr "1 Minute" #: /var/www/html/cacti/data_sources.php:1195 #: /var/www/html/cacti/graphs_items.php:311 #, php-format msgid "Data Sources [%s]" msgstr "" #: /var/www/html/cacti/data_sources.php:1195 msgid "No Device" msgstr "" #: /var/www/html/cacti/data_sources.php:1234 #: /var/www/html/cacti/data_sources.php:1260 #: /var/www/html/cacti/data_sources.php:1276 #: /var/www/html/cacti/data_templates.php:766 #: /var/www/html/cacti/graph_view.php:786 #: /var/www/html/cacti/graphs_new.php:536 #: /var/www/html/cacti/lib/clog_webapi.php:426 #: /var/www/html/cacti/lib/html_graph.php:383 #: /var/www/html/cacti/lib/html_reports.php:321 #: /var/www/html/cacti/lib/html_tree.php:823 #: /var/www/html/cacti/plugins.php:298 /var/www/html/cacti/settings.php:207 #: /var/www/html/cacti/settings.php:226 /var/www/html/cacti/settings.php:252 #: /var/www/html/cacti/utilities.php:646 /var/www/html/cacti/utilities.php:1058 msgid "All" msgstr "Alle" #: /var/www/html/cacti/data_sources.php:1256 #: /var/www/html/cacti/data_templates.php:762 msgid "Profile" msgstr "" #: /var/www/html/cacti/data_sources.php:1272 #: /var/www/html/cacti/data_sources.php:1278 msgid "Orphaned" msgstr "" #: /var/www/html/cacti/data_sources.php:1282 #: /var/www/html/cacti/data_sources.php:1395 /var/www/html/cacti/host.php:1566 #: /var/www/html/cacti/include/global_arrays.php:739 #: /var/www/html/cacti/lib/api_automation.php:282 #: /var/www/html/cacti/lib/functions.php:2129 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/utilities.php:284 msgid "Data Sources" msgstr "Datenquellen" #: /var/www/html/cacti/data_sources.php:1404 #: /var/www/html/cacti/utilities.php:1740 msgid "Data Source Name" msgstr "Name der Datenquelle" #: /var/www/html/cacti/data_sources.php:1404 msgid "" "The name of this Data Source. Generally programtically generated from the " "Data Template definition." msgstr "" #: /var/www/html/cacti/data_sources.php:1405 msgid "" "The internal database ID for this Data Source. Useful when performing " "automation or debugging." msgstr "" #: /var/www/html/cacti/data_sources.php:1406 msgid "The frequency that data is collected for this Data Source." msgstr "" #: /var/www/html/cacti/data_sources.php:1407 msgid "If this Data Source is no long in use by Graphs, it can be Deleted." msgstr "" #: /var/www/html/cacti/data_sources.php:1408 #: /var/www/html/cacti/data_templates.php:934 #: /var/www/html/cacti/plugins.php:38 /var/www/html/cacti/plugins.php:299 msgid "Active" msgstr "Aktiv" #: /var/www/html/cacti/data_sources.php:1408 msgid "" "Whether or not data will be collected for this Data Source. Controlled at " "the Data Template level." msgstr "" #: /var/www/html/cacti/data_sources.php:1409 msgid "The Data Template that this Data Source was based upon." msgstr "" #: /var/www/html/cacti/data_sources.php:1456 msgid "No Data Sources Found" msgstr "" #: /var/www/html/cacti/data_templates.php:35 msgid "Change Profile" msgstr "" #: /var/www/html/cacti/data_templates.php:353 msgid "" "Click 'Continue' to delete the following Data Template(s). Any data sources " "attached to these templates will become individual Data Source(s) and all " "Templating benefits will be removed." msgstr "" #: /var/www/html/cacti/data_templates.php:358 #, fuzzy msgid "Delete Data Template(s)" msgstr "Ausgewählte Daten-Schablone" #: /var/www/html/cacti/data_templates.php:362 msgid "" "Click 'Continue' to duplicate the following Data Template(s). You can " "optionally change the title format for the new Data Template(s)." msgstr "" #: /var/www/html/cacti/data_templates.php:364 msgid "template_title" msgstr "" #: /var/www/html/cacti/data_templates.php:368 #, fuzzy msgid "Duplicate Data Template(s)" msgstr "Daten Schablonen aktualisieren" #: /var/www/html/cacti/data_templates.php:372 msgid "" "Click 'Continue' to change the default Data Source Profile for the following " "Data Template(s)." msgstr "" #: /var/www/html/cacti/data_templates.php:374 msgid "New Data Source Profile" msgstr "" #: /var/www/html/cacti/data_templates.php:380 msgid "" "NOTE: This change only will affect future Data Sources and does not alter " "existing Data Sources." msgstr "" #: /var/www/html/cacti/data_templates.php:384 msgid "Change Data Source Profile" msgstr "" #: /var/www/html/cacti/data_templates.php:387 msgid "You must select at least one data template." msgstr "" #: /var/www/html/cacti/data_templates.php:499 #, php-format msgid "Data Templates [edit: %s]" msgstr "" #: /var/www/html/cacti/data_templates.php:501 msgid "Data Templates [new]" msgstr "" #: /var/www/html/cacti/data_templates.php:527 msgid "This field is always templated." msgstr "" #: /var/www/html/cacti/data_templates.php:531 #: /var/www/html/cacti/data_templates.php:605 #: /var/www/html/cacti/data_templates.php:673 msgid "Use Per-Data Source Value (Ignore this Value)" msgstr "" #: /var/www/html/cacti/data_templates.php:586 #, php-format msgid "Data Source Item [%s]" msgstr "" #: /var/www/html/cacti/data_templates.php:678 msgid "Value will be derived from the device if this field is left empty." msgstr "" #: /var/www/html/cacti/data_templates.php:747 #: /var/www/html/cacti/data_templates.php:778 #: /var/www/html/cacti/data_templates.php:900 #: /var/www/html/cacti/include/global_arrays.php:927 #: /var/www/html/cacti/lib/functions.php:2111 msgid "Data Templates" msgstr "" #: /var/www/html/cacti/data_templates.php:909 msgid "Data Template Name" msgstr "" #: /var/www/html/cacti/data_templates.php:909 msgid "The name of this Data Template." msgstr "" #: /var/www/html/cacti/data_templates.php:910 msgid "" "The internal database ID for this Data Template. Useful when performing " "automation or debugging." msgstr "" #: /var/www/html/cacti/data_templates.php:911 msgid "" "Data Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Data Source." msgstr "" #: /var/www/html/cacti/data_templates.php:912 msgid "The number of Data Sources using this Data Template." msgstr "" #: /var/www/html/cacti/data_templates.php:913 msgid "Input Method" msgstr "" #: /var/www/html/cacti/data_templates.php:913 msgid "The method that is used to place Data into the Data Source RRDfile." msgstr "" #: /var/www/html/cacti/data_templates.php:914 msgid "Profile Name" msgstr "" #: /var/www/html/cacti/data_templates.php:914 msgid "The default Data Source Profile for this Data Template." msgstr "" #: /var/www/html/cacti/data_templates.php:915 msgid "" "Data Sources based on Inactive Data Templates will not be updated when the " "poller runs." msgstr "" #: /var/www/html/cacti/data_templates.php:939 msgid "No Data Templates Found" msgstr "" #: /var/www/html/cacti/gprint_presets.php:148 msgid "Click 'Continue' to delete the folling GPRINT Preset(s)." msgstr "" #: /var/www/html/cacti/gprint_presets.php:153 #, fuzzy msgid "Delete GPRINT Preset(s)" msgstr "Vordefinierte GPRINT" #: /var/www/html/cacti/gprint_presets.php:156 msgid "You must select at least one GPRINT Preset." msgstr "" #: /var/www/html/cacti/gprint_presets.php:185 #, php-format msgid "GPRINT Presets [edit: %s]" msgstr "" #: /var/www/html/cacti/gprint_presets.php:187 msgid "GPRINT Presets [new]" msgstr "" #: /var/www/html/cacti/gprint_presets.php:253 #: /var/www/html/cacti/lib/functions.php:1961 msgid "GPRINT Presets" msgstr "Vordefinierte GPRINT" #: /var/www/html/cacti/gprint_presets.php:268 #: /var/www/html/cacti/gprint_presets.php:383 #: /var/www/html/cacti/include/global_arrays.php:767 msgid "GPRINTs" msgstr "" #: /var/www/html/cacti/gprint_presets.php:392 msgid "GPRINT Preset Name" msgstr "" #: /var/www/html/cacti/gprint_presets.php:392 msgid "The name of this GPRINT Preset." msgstr "" #: /var/www/html/cacti/gprint_presets.php:393 #, fuzzy msgid "Format" msgstr "Format" #: /var/www/html/cacti/gprint_presets.php:393 msgid "The GPRINT format string." msgstr "" #: /var/www/html/cacti/gprint_presets.php:394 msgid "" "GPRINTs that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: /var/www/html/cacti/gprint_presets.php:395 msgid "The number of Graphs using this GPRINT." msgstr "" #: /var/www/html/cacti/gprint_presets.php:396 msgid "The number of Graphs Templates using this GPRINT." msgstr "" #: /var/www/html/cacti/gprint_presets.php:420 msgid "No GPRINT Presets" msgstr "" #: /var/www/html/cacti/graph.php:94 msgid "Viewing Graph" msgstr "Diagramm anzeigen" #: /var/www/html/cacti/graph.php:129 /var/www/html/cacti/lib/html.php:292 msgid "Graph Details, Zooming and Debugging Utilities" msgstr "" #: /var/www/html/cacti/graph.php:130 msgid "CSV Export" msgstr "CSV Export" #: /var/www/html/cacti/graph.php:131 msgid "Real-time" msgstr "Echtzeit" #: /var/www/html/cacti/graph.php:207 #: /var/www/html/cacti/include/global_session.php:98 msgid "Utility View" msgstr "Werkzeuge" #: /var/www/html/cacti/graph.php:305 msgid "Graph Utility View" msgstr "Diagramm Werkzeuge" #: /var/www/html/cacti/graph.php:318 msgid "Graph Source/Properties" msgstr "Quelle/Diagrammeigenschaften" #: /var/www/html/cacti/graph.php:322 msgid "Graph Data" msgstr "" #: /var/www/html/cacti/graph.php:335 /var/www/html/cacti/graph_realtime.php:266 #: /var/www/html/cacti/lib/clog_webapi.php:444 #: /var/www/html/cacti/lib/html_graph.php:307 #: /var/www/html/cacti/lib/html_tree.php:746 #: /var/www/html/cacti/lib/html_tree.php:765 #: /var/www/html/cacti/utilities.php:1076 #: /var/www/html/cacti/utilities.php:1955 msgid "Refresh" msgstr "Aktualisieren" #: /var/www/html/cacti/graph.php:481 msgid "RRDtool Graph Syntax" msgstr "RRDtool Graph Syntax" #: /var/www/html/cacti/graph_realtime.php:194 msgid "Real-time has been disabled by your administrator." msgstr "" #: /var/www/html/cacti/graph_realtime.php:201 msgid "" "The Image Cache Directory does not exist. Please first create it and set " "permissions and then attempt to open another Real-time graph." msgstr "" #: /var/www/html/cacti/graph_realtime.php:208 msgid "" "The Image Cache Directory is not writable. Please set permissions and then " "attempt to open another Real-time graph." msgstr "" #: /var/www/html/cacti/graph_realtime.php:223 msgid "Cacti Real-time Graphing" msgstr "" #: /var/www/html/cacti/graph_realtime.php:252 #: /var/www/html/cacti/lib/html_graph.php:314 #: /var/www/html/cacti/lib/html_tree.php:753 msgid "Window" msgstr "" #: /var/www/html/cacti/graph_realtime.php:282 #, php-format msgid "%d seconds left." msgstr "%d Sekunden übrig." #: /var/www/html/cacti/graph_realtime.php:310 msgid "seconds left." msgstr "" #: /var/www/html/cacti/graph_templates.php:35 msgid "Resize" msgstr "" #: /var/www/html/cacti/graph_templates.php:36 msgid "Sync Graphs" msgstr "" #: /var/www/html/cacti/graph_templates.php:312 msgid "" "Click 'Continue' to delete the following Graph Template(s). Any Graph(s) " "associated with the Template(s) will become individual Graph(s)." msgstr "" #: /var/www/html/cacti/graph_templates.php:317 #, fuzzy msgid "Delete Graph Template(s)" msgstr "Ausgewählte Diagramm Schablonen" #: /var/www/html/cacti/graph_templates.php:321 msgid "" "Click 'Continue' to duplicate the following Graph Template(s). You can " "optionally change the title format for the new Graph Template(s)." msgstr "" #: /var/www/html/cacti/graph_templates.php:327 msgid "Duplicate Graph Template(s)" msgstr "" #: /var/www/html/cacti/graph_templates.php:331 msgid "" "Click 'Continue' to resize the following Graph Template(s) and Graph(s) to " "the Height and Width below. The defaults below are maintained in Settings." msgstr "" #: /var/www/html/cacti/graph_templates.php:340 #: /var/www/html/cacti/lib/html_reports.php:117 msgid "Graph Height" msgstr "" #: /var/www/html/cacti/graph_templates.php:342 #: /var/www/html/cacti/lib/html_reports.php:109 msgid "Graph Width" msgstr "" #: /var/www/html/cacti/graph_templates.php:347 msgid "Resize Selected Graph Template(s)" msgstr "" #: /var/www/html/cacti/graph_templates.php:351 msgid "" "Click 'Continue' to Synchronize your Graphs with the following Graph " "Template(s). This function is important if you have Graphs that exist with " "multiple versions of a Graph Template and wish to make them all common in " "appearance." msgstr "" #: /var/www/html/cacti/graph_templates.php:356 msgid "Synchronize Graphs to Graph Template(s)" msgstr "" #: /var/www/html/cacti/graph_templates.php:359 msgid "ERROR: You must select at least one graph template." msgstr "" #: /var/www/html/cacti/graph_templates.php:413 #, php-format msgid "Graph Template Items [edit: %s]" msgstr "" #: /var/www/html/cacti/graph_templates.php:420 #: /var/www/html/cacti/lib/functions.php:2081 msgid "Graph Item Inputs" msgstr "Eingaben für Diagramm Elemente" #: /var/www/html/cacti/graph_templates.php:446 msgid "No Inputs" msgstr "Keine Eingaben" #: /var/www/html/cacti/graph_templates.php:491 #, php-format msgid "Template [edit: %s]" msgstr "" #: /var/www/html/cacti/graph_templates.php:493 msgid "Template [new]" msgstr "" #: /var/www/html/cacti/graph_templates.php:509 msgid "Graph Template Options" msgstr "" #: /var/www/html/cacti/graph_templates.php:524 msgid "Use Per-Graph Value (Ignore this Value)" msgstr "" #: /var/www/html/cacti/graph_templates.php:619 #: /var/www/html/cacti/graph_templates.php:634 #: /var/www/html/cacti/graph_templates.php:754 #: /var/www/html/cacti/graphs_new.php:632 #: /var/www/html/cacti/include/global_arrays.php:926 #: /var/www/html/cacti/lib/functions.php:2057 #: /var/www/html/cacti/user_admin.php:1368 #: /var/www/html/cacti/user_group_admin.php:1101 msgid "Graph Templates" msgstr "Graph-Templates" #: /var/www/html/cacti/graph_templates.php:763 msgid "The name of this Graph Template." msgstr "" #: /var/www/html/cacti/graph_templates.php:765 msgid "" "Graph Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Graph." msgstr "" #: /var/www/html/cacti/graph_templates.php:766 msgid "The number of Graphs using this Graph Template." msgstr "" #: /var/www/html/cacti/graph_templates.php:767 msgid "The default size of the resulting Graphs." msgstr "" #: /var/www/html/cacti/graph_templates.php:768 msgid "Image Format" msgstr "Bild Format" #: /var/www/html/cacti/graph_templates.php:768 msgid "The default image format for the resulting Graphs." msgstr "" #: /var/www/html/cacti/graph_templates.php:769 msgid "The vertical label for the resulting Graphs." msgstr "" #: /var/www/html/cacti/graph_templates.php:769 #: /var/www/html/cacti/graph_xport.php:121 #: /var/www/html/cacti/graph_xport.php:155 msgid "Vertical Label" msgstr "" #: /var/www/html/cacti/graph_templates.php:795 msgid "No Graph Templates Found" msgstr "" #: /var/www/html/cacti/graph_templates_inputs.php:145 #, php-format msgid "Graph Item Inputs [edit graph: %s]" msgstr "" #: /var/www/html/cacti/graph_templates_inputs.php:191 msgid "Associated Graph Items" msgstr "Zugeordnete Diagramm Elemente" #: /var/www/html/cacti/graph_templates_items.php:99 #: /var/www/html/cacti/graph_templates_items.php:125 #: /var/www/html/cacti/graphs_items.php:140 msgid "Cur:" msgstr "" #: /var/www/html/cacti/graph_templates_items.php:106 #: /var/www/html/cacti/graph_templates_items.php:132 #: /var/www/html/cacti/graphs_items.php:147 msgid "Avg:" msgstr "" #: /var/www/html/cacti/graph_templates_items.php:113 #: /var/www/html/cacti/graph_templates_items.php:146 #: /var/www/html/cacti/graphs_items.php:161 msgid "Max:" msgstr "" #: /var/www/html/cacti/graph_templates_items.php:139 #: /var/www/html/cacti/graphs_items.php:154 msgid "Min:" msgstr "" #: /var/www/html/cacti/graph_templates_items.php:391 #, php-format msgid "Graph Template Items [edit graph: %s]" msgstr "" #: /var/www/html/cacti/graph_templates_items.php:452 msgid "Field Not Templated" msgstr "" #: /var/www/html/cacti/graph_view.php:243 msgid "YOU DO NOT HAVE RIGHTS FOR TREE VIEW" msgstr "SIE HABEN KEINE RECHTE FÜR DIESE BAUM-ANSICHT" #: /var/www/html/cacti/graph_view.php:322 msgid "YOU DO NOT HAVE RIGHTS FOR PREVIEW VIEW" msgstr "SIE VERFÜGEN ÜBER KEINE VORANSICHT-RECHTE" #: /var/www/html/cacti/graph_view.php:328 msgid "Graph Preview Filters" msgstr "" #: /var/www/html/cacti/graph_view.php:328 msgid "[ Custom Graph List Applied - Filtering from List ]" msgstr "" #: /var/www/html/cacti/graph_view.php:424 msgid "YOU DO NOT HAVE RIGHTS FOR LIST VIEW" msgstr "SIE VERFÜGEN ÜBER KEINE LISTEN-ANSICHT-RECHTE" #: /var/www/html/cacti/graph_view.php:511 msgid "Graph List View Filters" msgstr "" #: /var/www/html/cacti/graph_view.php:511 msgid "[ Custom Graph List Applied - Filter FROM List ]" msgstr "" #: /var/www/html/cacti/graph_view.php:530 #: /var/www/html/cacti/graph_view.php:775 #: /var/www/html/cacti/graph_view.php:780 #: /var/www/html/cacti/lib/html_graph.php:163 #: /var/www/html/cacti/lib/html_graph.php:372 #: /var/www/html/cacti/lib/html_graph.php:377 #: /var/www/html/cacti/lib/html_tree.php:608 #: /var/www/html/cacti/lib/html_tree.php:812 #: /var/www/html/cacti/lib/html_tree.php:817 msgid "All Graphs & Templates" msgstr "" #: /var/www/html/cacti/graph_view.php:576 #: /var/www/html/cacti/graph_view.php:653 msgid "View" msgstr "Ansicht" #: /var/www/html/cacti/graph_view.php:576 #: /var/www/html/cacti/graph_view.php:653 #: /var/www/html/cacti/include/global_arrays.php:906 #: /var/www/html/cacti/lib/clog_webapi.php:282 msgid "View Graphs" msgstr "Graphen anschauen" #: /var/www/html/cacti/graph_view.php:618 msgid "Graph Size" msgstr "" #: /var/www/html/cacti/graph_view.php:632 #, fuzzy msgid "Aggregated Device" msgstr "Zielsysteme anlegen" #: /var/www/html/cacti/graph_view.php:635 #, fuzzy msgid "Non-Device" msgstr "Keine Zielsysteme" #: /var/www/html/cacti/graph_view.php:636 msgid "Not Applicable" msgstr "" #: /var/www/html/cacti/graph_view.php:727 #: /var/www/html/cacti/include/global_settings.php:1926 #: /var/www/html/cacti/lib/functions.php:1891 msgid "Preview Mode" msgstr "Vorschau Modus" #: /var/www/html/cacti/graph_view.php:777 #: /var/www/html/cacti/lib/html_graph.php:374 #: /var/www/html/cacti/lib/html_tree.php:814 #: /var/www/html/cacti/settings.php:243 msgid "Templates Selected" msgstr "" #: /var/www/html/cacti/graph_xport.php:120 #: /var/www/html/cacti/graph_xport.php:154 #: /var/www/html/cacti/include/global_form.php:1759 #: /var/www/html/cacti/include/global_form.php:2006 #: /var/www/html/cacti/links.php:378 msgid "Title" msgstr "Titel" #: /var/www/html/cacti/graph_xport.php:123 #: /var/www/html/cacti/graph_xport.php:156 msgid "Start Date" msgstr "" #: /var/www/html/cacti/graph_xport.php:124 #: /var/www/html/cacti/graph_xport.php:157 msgid "End Date" msgstr "" #: /var/www/html/cacti/graph_xport.php:125 #: /var/www/html/cacti/graph_xport.php:158 #: /var/www/html/cacti/include/global_form.php:405 msgid "Step" msgstr "Step" #: /var/www/html/cacti/graph_xport.php:126 #: /var/www/html/cacti/graph_xport.php:159 msgid "Total Rows" msgstr "" #: /var/www/html/cacti/graph_xport.php:127 #: /var/www/html/cacti/graph_xport.php:160 #: /var/www/html/cacti/lib/api_automation.php:570 msgid "Graph ID" msgstr "" #: /var/www/html/cacti/graph_xport.php:128 #: /var/www/html/cacti/graph_xport.php:161 msgid "Host ID" msgstr "" #: /var/www/html/cacti/graph_xport.php:132 #: /var/www/html/cacti/graph_xport.php:171 msgid "Nth Percentile" msgstr "" #: /var/www/html/cacti/graph_xport.php:138 #: /var/www/html/cacti/graph_xport.php:181 msgid "Summation" msgstr "" #: /var/www/html/cacti/graph_xport.php:144 #: /var/www/html/cacti/utilities.php:242 /var/www/html/cacti/utilities.php:773 msgid "Date" msgstr "Datum" #: /var/www/html/cacti/graph_xport.php:153 msgid "Download" msgstr "" #: /var/www/html/cacti/graph_xport.php:153 msgid "Summary Details" msgstr "" #: /var/www/html/cacti/graphs.php:49 /var/www/html/cacti/graphs.php:874 #: /var/www/html/cacti/lib/functions.php:1931 msgid "Change Graph Template" msgstr "Wechseln der Diagramm Schablone" #: /var/www/html/cacti/graphs.php:56 msgid "Create Aggregate Graph" msgstr "" #: /var/www/html/cacti/graphs.php:57 msgid "Create Aggregate from Template" msgstr "" #: /var/www/html/cacti/graphs.php:58 /var/www/html/cacti/graphs.php:1125 #: /var/www/html/cacti/host.php:43 msgid "Apply Automation Rules" msgstr "" #: /var/www/html/cacti/graphs.php:64 /var/www/html/cacti/graphs.php:896 msgid "Convert to Graph Template" msgstr "Umwandeln in Diagramm Schablone" #: /var/www/html/cacti/graphs.php:176 /var/www/html/cacti/graphs_new.php:245 #: /var/www/html/cacti/graphs_new.php:261 #, php-format msgid "Created graph: %s" msgstr "" #: /var/www/html/cacti/graphs.php:184 /var/www/html/cacti/graphs_new.php:253 #: /var/www/html/cacti/graphs_new.php:269 msgid "ERROR: no Data Source associated. Check Template" msgstr "" #: /var/www/html/cacti/graphs.php:835 msgid "" "Click 'Continue' to delete the following Graph(s). Note that if you choose " "to Delete Data Sources, only those Data Sources not in use elsewhere will " "also be Deleted." msgstr "" #: /var/www/html/cacti/graphs.php:839 msgid "The following Data Source(s) are in use by these Graph(s)." msgstr "" #: /var/www/html/cacti/graphs.php:848 msgid "" "Delete all Data Source(s) referenced by these Graph(s) that are not in use " "elsewhere." msgstr "" #: /var/www/html/cacti/graphs.php:850 #, fuzzy msgid "Leave the Data Source(s) untouched." msgstr "Datenquelle unverändert lassen." #: /var/www/html/cacti/graphs.php:862 msgid "" "Choose a Graph Template and click 'Continue' to change the Graph Template " "for the following Graph(s). Please note, that only compatible Graph " "Templates will be displayed. Compatible is identified by those having " "identical Data Sources." msgstr "" #: /var/www/html/cacti/graphs.php:864 msgid "New Graph Template" msgstr "" #: /var/www/html/cacti/graphs.php:878 #, fuzzy msgid "" "Click 'Continue' to duplicate the following Graph(s). You can optionally " "change the title format for the new Graph(s)." msgstr "" "Wenn Sie auf \"speichern\" klicken, werden die folgenden Graphen dupliziert. " "Optional können Sie die Überschrift der neuen Graphen ändern." #: /var/www/html/cacti/graphs.php:881 msgid " (1)" msgstr "(1)" #: /var/www/html/cacti/graphs.php:885 #, fuzzy msgid "Duplicate Graph(s)" msgstr "Diagramm(e) löschen:" #: /var/www/html/cacti/graphs.php:889 #, fuzzy msgid "" "Click 'Continue' to convert the following Graph(s) into Graph Template(s). " "You can optionally change the title format for the new Graph Template(s)." msgstr "" "Wenn Sie auf \"speichern\" klicken, werden die folgenden Graphen in Graph-" "Schablonen umgewandelt. Optional können Sie die Überschrift der neuen Graph-" "Schablonen ändern." #: /var/www/html/cacti/graphs.php:892 msgid " Template" msgstr " Schablone" #: /var/www/html/cacti/graphs.php:900 msgid "" "Click 'Continue' to place the following Graph(s) under the Tree Branch " "selected below." msgstr "" #: /var/www/html/cacti/graphs.php:902 msgid "Destination Branch" msgstr "" #: /var/www/html/cacti/graphs.php:915 msgid "Choose a new Device for these Graph(s) and click 'Continue'." msgstr "" #: /var/www/html/cacti/graphs.php:917 msgid "New Device" msgstr "Neues Zielsystem" #: /var/www/html/cacti/graphs.php:925 msgid "Change Graph(s) Associated Device" msgstr "" #: /var/www/html/cacti/graphs.php:929 msgid "" "Click 'Continue' to re-apply suggested naming to the following Graph(s)." msgstr "" #: /var/www/html/cacti/graphs.php:934 msgid "Reapply Suggested Naming to Graph(s)" msgstr "" #: /var/www/html/cacti/graphs.php:950 msgid "" "Click 'Continue' to create an Aggregate Graph from the selected Graph(s)." msgstr "" #: /var/www/html/cacti/graphs.php:959 msgid "The following data sources are in use by these graphs:" msgstr "" #: /var/www/html/cacti/graphs.php:992 msgid "Please confirm" msgstr "" #: /var/www/html/cacti/graphs.php:1060 msgid "Resize Selected Graph(s)" msgstr "" #: /var/www/html/cacti/graphs.php:1082 msgid "" "Select the Aggregate Template to use and press 'Continue' to create your " "Aggregate Graph. Otherwise press 'Cancel' to return." msgstr "" #: /var/www/html/cacti/graphs.php:1103 msgid "Create Aggregate" msgstr "" #: /var/www/html/cacti/graphs.php:1107 msgid "" "There are presently no Aggregate Templates defined for this Graph Template. " "Please either first create an Aggregate Template for the selected Graphs " "Graph Template and try again, or simply crease an un-templated Aggregate " "Graph." msgstr "" #: /var/www/html/cacti/graphs.php:1108 msgid "Press 'Return' to return and select different Graphs." msgstr "" #: /var/www/html/cacti/graphs.php:1120 msgid "Click 'Continue' to apply Automation Rules to the following Graphs." msgstr "" #: /var/www/html/cacti/graphs.php:1136 msgid "You must select at least one Graph." msgstr "Bitte wählen Sie mindestens ein Diagramm aus." #: /var/www/html/cacti/graphs.php:1284 #, fuzzy, php-format #| msgid "[edit: %s]" msgid "Graph [edit: %s]" msgstr "[ändern: %s]" #: /var/www/html/cacti/graphs.php:1290 #, fuzzy #| msgid " [new]" msgid "Graph [new]" msgstr "[neu]" #: /var/www/html/cacti/graphs.php:1315 msgid "Turn Off Graph Debug Mode." msgstr "" #: /var/www/html/cacti/graphs.php:1317 msgid "Turn On Graph Debug Mode." msgstr "" #: /var/www/html/cacti/graphs.php:1330 msgid "Edit Graph Template." msgstr "" #: /var/www/html/cacti/graphs.php:1336 msgid "Unlock Graph." msgstr "" #: /var/www/html/cacti/graphs.php:1338 msgid "Lock Graph." msgstr "" #: /var/www/html/cacti/graphs.php:1362 msgid "Selected Graph Template" msgstr "Ausgewählte Diagramm Schablonen" #: /var/www/html/cacti/graphs.php:1363 #, php-format msgid "" "Choose a Graph Template to apply to this Graph. Please note that you may " "only change Graph Templates to a 100% compatible Graph Template, which means " "that it includes identical Data Sources." msgstr "" #: /var/www/html/cacti/graphs.php:1371 msgid "Choose the Device that this Graph belongs to." msgstr "" #: /var/www/html/cacti/graphs.php:1411 msgid "Supplemental Graph Template Data" msgstr "Zusätzliche Daten für Diagramm Schablonen" #: /var/www/html/cacti/graphs.php:1413 msgid "Graph Fields" msgstr "Diagramm Felder" #: /var/www/html/cacti/graphs.php:1414 msgid "Graph Item Fields" msgstr "Graph Element Felder" #: /var/www/html/cacti/graphs.php:1683 #: /var/www/html/cacti/lib/functions.php:1919 msgid "Graph Management" msgstr "Diagramm Verwaltung" #: /var/www/html/cacti/graphs.php:1826 #: /var/www/html/cacti/include/global_form.php:1827 #: /var/www/html/cacti/lib/html_reports.php:386 #: /var/www/html/cacti/tree.php:703 msgid "Graph Name" msgstr "" #: /var/www/html/cacti/graphs.php:1826 msgid "" "The Title of this Graph. Generally programatically generated from the Graph " "Template definition or Suggested Naming rules. The max length of the Title " "is controlled under Settings->Visual." msgstr "" #: /var/www/html/cacti/graphs.php:1827 msgid "" "The internal database ID for this Graph. Useful when performing automation " "or debugging." msgstr "" #: /var/www/html/cacti/graphs.php:1828 msgid "The Graph Template that this Graph was based upon." msgstr "" #: /var/www/html/cacti/graphs.php:1829 msgid "The size of this Graph when not in Preview mode." msgstr "" #: /var/www/html/cacti/graphs_items.php:309 msgid "Data Sources [No Device]" msgstr "" #: /var/www/html/cacti/graphs_items.php:326 #: /var/www/html/cacti/include/global_arrays.php:1038 #: /var/www/html/cacti/include/global_form.php:1528 msgid "Data Template" msgstr "" #: /var/www/html/cacti/graphs_items.php:399 #, php-format msgid "Graph Items [graph: %s]" msgstr "" #: /var/www/html/cacti/graphs_items.php:440 msgid "Choose the Data Source to associate with this Graph Item." msgstr "" #: /var/www/html/cacti/graphs_new.php:79 msgid "Default Settings Saved" msgstr "" #: /var/www/html/cacti/graphs_new.php:298 #, php-format msgid "Create Graph from %s" msgstr "Diagramm aus »%s« erstellen" #: /var/www/html/cacti/graphs_new.php:319 #, php-format msgid "Created %s Graphs from %s" msgstr "" #: /var/www/html/cacti/graphs_new.php:321 #, php-format msgid "Created 1 Graph from %s" msgstr "" #: /var/www/html/cacti/graphs_new.php:362 #, php-format msgid "Graph [Template: %s]" msgstr "" #: /var/www/html/cacti/graphs_new.php:363 #, php-format msgid "Graph Items [Template: %s]" msgstr "" #: /var/www/html/cacti/graphs_new.php:368 #, php-format msgid "Data Source [Template: %s]" msgstr "" #: /var/www/html/cacti/graphs_new.php:378 #, php-format msgid "Custom Data [Template: %s]" msgstr "" #: /var/www/html/cacti/graphs_new.php:463 #, php-format msgid "New Graphs for [ %s ]" msgstr "" #: /var/www/html/cacti/graphs_new.php:466 msgid "New Graphs for [ All Devices ]" msgstr "" #: /var/www/html/cacti/graphs_new.php:471 msgid "New Graphs for None Host Type" msgstr "" #: /var/www/html/cacti/graphs_new.php:500 #: /var/www/html/cacti/include/global_session.php:96 msgid "Filter Settings Saved" msgstr "" #: /var/www/html/cacti/graphs_new.php:532 msgid "Graph Types" msgstr "" #: /var/www/html/cacti/graphs_new.php:537 msgid "Graph Template Based" msgstr "Name des Graph-Templates" #: /var/www/html/cacti/graphs_new.php:561 msgid "Save Filters" msgstr "" #: /var/www/html/cacti/graphs_new.php:594 msgid "Edit this Device" msgstr "" #: /var/www/html/cacti/graphs_new.php:595 msgid "Create New Device" msgstr "" #: /var/www/html/cacti/graphs_new.php:638 #: /var/www/html/cacti/graphs_new.php:931 /var/www/html/cacti/lib/html.php:761 #: /var/www/html/cacti/user_admin.php:1585 #: /var/www/html/cacti/user_group_admin.php:1316 msgid "Select All" msgstr "Alles auswählen" #: /var/www/html/cacti/graphs_new.php:638 #: /var/www/html/cacti/graphs_new.php:931 /var/www/html/cacti/lib/html.php:674 #: /var/www/html/cacti/lib/html.php:761 msgid "Select All Rows" msgstr "" #: /var/www/html/cacti/graphs_new.php:725 #: /var/www/html/cacti/include/global_arrays.php:731 #: /var/www/html/cacti/include/global_arrays.php:802 #: /var/www/html/cacti/lib/html_form.php:1136 #: /var/www/html/cacti/lib/html_form.php:1149 /var/www/html/cacti/tree.php:1051 msgid "Create" msgstr "Erzeugen" #: /var/www/html/cacti/graphs_new.php:727 msgid "(Select a graph type to create)" msgstr "(Wählen Sie einen Diagrammtyp aus)" #: /var/www/html/cacti/graphs_new.php:811 #, php-format msgid "Data Query [%s]" msgstr "" #: /var/www/html/cacti/graphs_new.php:927 msgid "From there you can get more information." msgstr "" #: /var/www/html/cacti/graphs_new.php:927 msgid "" "This Data Query returned 0 rows, perhaps there was a problem executing this " "Data Query." msgstr "" #: /var/www/html/cacti/graphs_new.php:927 msgid "You can run this Data Query in debug mode" msgstr "" #: /var/www/html/cacti/graphs_new.php:970 msgid "Search Returned no Rows." msgstr "Es wurde nichts gefunden." #: /var/www/html/cacti/graphs_new.php:975 msgid "Error in data query." msgstr "Fehler in Datenabfrage." #: /var/www/html/cacti/graphs_new.php:999 msgid "Select a Graph Type to Create" msgstr "" #: /var/www/html/cacti/graphs_new.php:1002 msgid "Make selection default" msgstr "" #: /var/www/html/cacti/graphs_new.php:1002 msgid "Set Default" msgstr "" #: /var/www/html/cacti/host.php:41 msgid "Change Device Settings" msgstr "" #: /var/www/html/cacti/host.php:42 msgid "Clear Statistics" msgstr "Statistiken löschen" #: /var/www/html/cacti/host.php:44 msgid "Sync to Device Template" msgstr "" #: /var/www/html/cacti/host.php:380 msgid "Click 'Continue' to enable the following Device(s)." msgstr "" #: /var/www/html/cacti/host.php:385 #, fuzzy msgid "Enable Device(s)" msgstr "Zielsystem deaktivieren" #: /var/www/html/cacti/host.php:389 msgid "Click 'Continue' to disable the following Device(s)." msgstr "" #: /var/www/html/cacti/host.php:394 #, fuzzy msgid "Disable Device(s)" msgstr "Zielsystem deaktivieren" #: /var/www/html/cacti/host.php:398 msgid "" "Click 'Continue' to change the Device options below for multiple Device(s). " "Please check the box next to the fields you want to update, and then fill in " "the new value." msgstr "" #: /var/www/html/cacti/host.php:421 msgid "Update this Field" msgstr "Dieses Feld aktualisieren" #: /var/www/html/cacti/host.php:436 msgid "Change Device(s) SNMP Options" msgstr "" #: /var/www/html/cacti/host.php:440 msgid "Click 'Continue' to clear the counters for the following Device(s)." msgstr "" #: /var/www/html/cacti/host.php:445 msgid "Clear Statistics on Device(s)" msgstr "" #: /var/www/html/cacti/host.php:449 msgid "" "Click 'Continue' to Synchronize the following Device(s) to their Device " "Template." msgstr "" #: /var/www/html/cacti/host.php:454 msgid "Synchronize Device(s)" msgstr "" #: /var/www/html/cacti/host.php:458 msgid "Click 'Continue' to delete the following Device(s)." msgstr "" #: /var/www/html/cacti/host.php:461 #, fuzzy msgid "" "Leave all Graph(s) and Data Source(s) untouched. Data Source(s) will be " "disabled however." msgstr "" "Alle Graphen und Datenquellen bleiben unverändert. Datenquellen werden aber " "deaktiviert." #: /var/www/html/cacti/host.php:462 msgid "Delete all associated Graph(s) and Data Source(s)." msgstr "" #: /var/www/html/cacti/host.php:468 #, fuzzy msgid "Delete Device(s)" msgstr "Zielsystem deaktivieren" #: /var/www/html/cacti/host.php:472 msgid "" "Click 'Continue' to place the following Device(s) under the branch selected " "below." msgstr "" #: /var/www/html/cacti/host.php:482 msgid "Place Device(s) on Tree" msgstr "" #: /var/www/html/cacti/host.php:486 msgid "Click 'Continue' to apply Automation Rules to the following Devices(s)." msgstr "" #: /var/www/html/cacti/host.php:491 msgid "Run Automation on Device(s)" msgstr "" #: /var/www/html/cacti/host.php:502 msgid "You must select at least one device." msgstr "" #: /var/www/html/cacti/host.php:628 msgid "Device [new]" msgstr "" #: /var/www/html/cacti/host.php:634 #, php-format msgid "Device [edit: %s]" msgstr "" #: /var/www/html/cacti/host.php:636 msgid "Disable Device Debug" msgstr "" #: /var/www/html/cacti/host.php:638 msgid "Enable Device Debug" msgstr "" #: /var/www/html/cacti/host.php:651 msgid "Create Graphs for this Device" msgstr "" #: /var/www/html/cacti/host.php:653 msgid "Data Source List" msgstr "" #: /var/www/html/cacti/host.php:654 msgid "Graph List" msgstr "" #: /var/www/html/cacti/host.php:660 msgid "Contacting Device" msgstr "" #: /var/www/html/cacti/host.php:692 msgid "Data Query Debug Information" msgstr "Informationen zur Fehlersuche bei Datenabfragen" #: /var/www/html/cacti/host.php:695 #: /var/www/html/cacti/templates_import.php:141 msgid "Hide" msgstr "" # unclear, comment required #: /var/www/html/cacti/host.php:773 /var/www/html/cacti/tree.php:1171 #: /var/www/html/cacti/tree.php:1245 /var/www/html/cacti/tree.php:1332 msgid "Edit" msgstr "Bearbeiten" #: /var/www/html/cacti/host.php:773 msgid "Is Being Graphed" msgstr "Wird graphisch dargestellt" #: /var/www/html/cacti/host.php:773 msgid "Not Being Graphed" msgstr "Wird nicht graphisch dargestellt" #: /var/www/html/cacti/host.php:776 msgid "Delete Graph Template Association" msgstr "Lösche Zuordnung zur Diagramm Schablone" #: /var/www/html/cacti/host.php:783 /var/www/html/cacti/host_templates.php:493 msgid "No associated graph templates." msgstr "Keine zugeordneten Diagramm Schablonen." #: /var/www/html/cacti/host.php:792 /var/www/html/cacti/host_templates.php:502 msgid "Add Graph Template" msgstr "" #: /var/www/html/cacti/host.php:798 msgid "Add Graph Template to Device" msgstr "" #: /var/www/html/cacti/host.php:808 /var/www/html/cacti/host_templates.php:525 msgid "Associated Data Queries" msgstr "Zugeordnete Datenabfragen" #: /var/www/html/cacti/host.php:813 /var/www/html/cacti/host.php:909 msgid "Re-Index Method" msgstr "Art der Re-Indizierung" #: /var/www/html/cacti/host.php:815 #: /var/www/html/cacti/lib/api_automation.php:1243 #: /var/www/html/cacti/lib/api_automation.php:1305 #: /var/www/html/cacti/lib/api_automation.php:1369 #: /var/www/html/cacti/lib/functions.php:1937 #: /var/www/html/cacti/lib/functions.php:2003 #: /var/www/html/cacti/lib/functions.php:2069 #: /var/www/html/cacti/lib/functions.php:2105 #: /var/www/html/cacti/lib/functions.php:2123 #: /var/www/html/cacti/lib/functions.php:2141 #: /var/www/html/cacti/lib/functions.php:2159 #: /var/www/html/cacti/lib/functions.php:2189 #: /var/www/html/cacti/lib/functions.php:2225 #: /var/www/html/cacti/lib/functions.php:2255 #: /var/www/html/cacti/lib/functions.php:2345 #: /var/www/html/cacti/lib/functions.php:2531 #: /var/www/html/cacti/lib/functions.php:2555 #: /var/www/html/cacti/lib/functions.php:2573 #: /var/www/html/cacti/lib/functions.php:2591 #: /var/www/html/cacti/lib/functions.php:2609 #: /var/www/html/cacti/lib/functions.php:2633 #: /var/www/html/cacti/lib/html_reports.php:1251 #: /var/www/html/cacti/links.php:376 /var/www/html/cacti/plugins.php:385 msgid "Actions" msgstr "Aktionen" #: /var/www/html/cacti/host.php:876 #, php-format msgid " [%d Items, %d Rows]" msgstr "" #: /var/www/html/cacti/host.php:876 msgid "Fail" msgstr "Fehlschlag" #: /var/www/html/cacti/host.php:876 /var/www/html/cacti/lib/functions.php:3865 #: /var/www/html/cacti/lib/functions.php:3870 msgid "Success" msgstr "Erfolgreich" #: /var/www/html/cacti/host.php:879 #, fuzzy msgid "Reload Query" msgstr "Lade Daten-Abfrage neu" #: /var/www/html/cacti/host.php:880 msgid "Verbose Query" msgstr "Detaillierte Abfrage" #: /var/www/html/cacti/host.php:881 #, fuzzy msgid "Remove Query" msgstr "Detaillierte Abfrage" #: /var/www/html/cacti/host.php:887 msgid "No Associated Data Queries." msgstr "" #: /var/www/html/cacti/host.php:903 /var/www/html/cacti/host_templates.php:559 msgid "Add Data Query" msgstr "Datenabfrage hinzufügen" #: /var/www/html/cacti/host.php:915 msgid "Add Data Query to Device" msgstr "" #: /var/www/html/cacti/host.php:1050 #: /var/www/html/cacti/include/global_arrays.php:488 msgid "Ping and SNMP Uptime" msgstr "" #: /var/www/html/cacti/host.php:1051 #: /var/www/html/cacti/include/global_arrays.php:490 msgid "SNMP Uptime" msgstr "" #: /var/www/html/cacti/host.php:1052 #: /var/www/html/cacti/include/global_arrays.php:493 msgid "Ping" msgstr "Ping" #: /var/www/html/cacti/host.php:1053 #: /var/www/html/cacti/include/global_arrays.php:489 msgid "Ping or SNMP Uptime" msgstr "" #: /var/www/html/cacti/host.php:1054 #: /var/www/html/cacti/include/global_arrays.php:491 msgid "SNMP Desc" msgstr "" #: /var/www/html/cacti/host.php:1055 msgid "SNMP GetNext" msgstr "SNMP GetNext" #: /var/www/html/cacti/host.php:1432 #: /var/www/html/cacti/include/global_settings.php:458 msgid "Site" msgstr "Standort" #: /var/www/html/cacti/host.php:1488 msgid "Export Devices" msgstr "" #: /var/www/html/cacti/host.php:1509 #: /var/www/html/cacti/lib/api_automation.php:172 #: /var/www/html/cacti/lib/api_automation.php:1050 msgid "Not Up" msgstr "Nicht aktiv" #: /var/www/html/cacti/host.php:1512 #: /var/www/html/cacti/lib/api_automation.php:175 #: /var/www/html/cacti/lib/api_automation.php:1053 #: /var/www/html/cacti/lib/html_utility.php:840 #: /var/www/html/cacti/pollers.php:41 msgid "Recovering" msgstr "Wiederherstellend" #: /var/www/html/cacti/host.php:1513 #: /var/www/html/cacti/lib/api_automation.php:176 #: /var/www/html/cacti/lib/api_automation.php:1054 #: /var/www/html/cacti/lib/html_utility.php:849 #: /var/www/html/cacti/plugins.php:168 /var/www/html/cacti/utilities.php:2062 msgid "Unknown" msgstr "Unbekannt" #: /var/www/html/cacti/host.php:1542 #: /var/www/html/cacti/lib/api_automation.php:565 #: /var/www/html/cacti/utilities.php:1741 msgid "Device Description" msgstr "" #: /var/www/html/cacti/host.php:1545 msgid "The name by which this Device will be referred to." msgstr "" #: /var/www/html/cacti/host.php:1548 #: /var/www/html/cacti/include/global_form.php:985 #: /var/www/html/cacti/include/global_form.php:1610 #: /var/www/html/cacti/lib/api_automation.php:277 #: /var/www/html/cacti/lib/api_automation.php:566 #: /var/www/html/cacti/lib/api_automation.php:840 #: /var/www/html/cacti/lib/api_automation.php:1169 #: /var/www/html/cacti/managers.php:219 /var/www/html/cacti/pollers.php:82 #: /var/www/html/cacti/pollers.php:614 /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_group_admin.php:966 msgid "Hostname" msgstr "Zielsystemname" #: /var/www/html/cacti/host.php:1551 msgid "" "Either an IP address, or hostname. If a hostname, it must be resolvable by " "either DNS, or from your hosts file." msgstr "" #: /var/www/html/cacti/host.php:1557 msgid "" "The internal database ID for this Device. Useful when performing automation " "or debugging." msgstr "" #: /var/www/html/cacti/host.php:1563 msgid "The total number of Graphs generated from this Device." msgstr "" #: /var/www/html/cacti/host.php:1569 msgid "The total number of Data Sources generated from this Device." msgstr "" #: /var/www/html/cacti/host.php:1575 msgid "" "The monitoring status of the Device based upon ping results. If this Device " "is a special type Device, by using the hostname \"localhost\", or due to the " "setting to not perform an Availability Check, it will always remain Up. " "When using cmd.php data collector, a Device with no Graphs, is not pinged by " "the data collector and will remain in an \"Unknown\" state." msgstr "" #: /var/www/html/cacti/host.php:1578 msgid "In State" msgstr "" #: /var/www/html/cacti/host.php:1581 msgid "The amount of time that this Device has been in its current state." msgstr "" #: /var/www/html/cacti/host.php:1587 msgid "The current amount of time that the host has been up." msgstr "" #: /var/www/html/cacti/host.php:1590 msgid "Poll Time" msgstr "Pollerzeit" #: /var/www/html/cacti/host.php:1593 msgid "The amount of time it takes to collect data from this Device." msgstr "" #: /var/www/html/cacti/host.php:1596 msgid "Current (ms)" msgstr "Aktuell (ms)" #: /var/www/html/cacti/host.php:1599 msgid "The current ping time in milliseconds to reach the Device." msgstr "" #: /var/www/html/cacti/host.php:1602 msgid "Average (ms)" msgstr "Mittel (ms)" #: /var/www/html/cacti/host.php:1605 msgid "" "The average ping time in milliseconds to reach the Device since the counters " "were cleared for this Device." msgstr "" #: /var/www/html/cacti/host.php:1608 msgid "Availability" msgstr "Verfügbarkeit" #: /var/www/html/cacti/host.php:1611 msgid "" "The availability percentage based upon ping results since the counters were " "cleared for this Device." msgstr "" #: /var/www/html/cacti/host_templates.php:32 msgid "Sync Devices" msgstr "" #: /var/www/html/cacti/host_templates.php:256 msgid "Click 'Continue' to delete the following Device Template(s)." msgstr "" #: /var/www/html/cacti/host_templates.php:261 #, fuzzy msgid "Delete Device Template(s)" msgstr "Zielsystem Schablonen aktualisieren" #: /var/www/html/cacti/host_templates.php:265 msgid "" "Click 'Continue' to duplicate the following Device Template(s). Optionally " "change the title for the new Device Template(s)." msgstr "" #: /var/www/html/cacti/host_templates.php:275 #, fuzzy msgid "Duplicate Device Template(s)" msgstr "Zielsystem Schablonen aktualisieren" #: /var/www/html/cacti/host_templates.php:279 msgid "" "Click 'Continue' to Synchronize Devices associated with the selected Device " "Template(s). Note that this action may take some time depending on the " "number of Devices mapped to the Device Template." msgstr "" #: /var/www/html/cacti/host_templates.php:286 msgid "Sync Devices to Device Template(s)" msgstr "" #: /var/www/html/cacti/host_templates.php:289 msgid "You must select at least one host template." msgstr "" #: /var/www/html/cacti/host_templates.php:328 msgid "" "Click 'Continue' to delete the following Graph Template will be " "disassociated from the Device Template." msgstr "" #: /var/www/html/cacti/host_templates.php:329 #, php-format msgid "Graph Template Name: %s" msgstr "" #: /var/www/html/cacti/host_templates.php:388 msgid "" "Click 'Continue' to delete the following Data Queries will be disassociated " "from the Device Template." msgstr "" #: /var/www/html/cacti/host_templates.php:389 #, php-format msgid "Data Query Name: %s" msgstr "" #: /var/www/html/cacti/host_templates.php:442 #, php-format msgid "Device Templates [edit: %s]" msgstr "" #: /var/www/html/cacti/host_templates.php:444 msgid "Device Templates [new]" msgstr "" #: /var/www/html/cacti/host_templates.php:461 msgid "Default Submit Button" msgstr "" #: /var/www/html/cacti/host_templates.php:515 msgid "Add Graph Template to Device Template" msgstr "" #: /var/www/html/cacti/host_templates.php:550 msgid "No associated data queries." msgstr "Keine zugeordneten Daten-Abfragen." #: /var/www/html/cacti/host_templates.php:569 msgid "Add Data Query to Device Template" msgstr "" #: /var/www/html/cacti/host_templates.php:691 #: /var/www/html/cacti/host_templates.php:706 #: /var/www/html/cacti/host_templates.php:807 #: /var/www/html/cacti/include/global_arrays.php:928 #: /var/www/html/cacti/lib/functions.php:2093 msgid "Device Templates" msgstr "Zielsystem Schablonen" #: /var/www/html/cacti/host_templates.php:723 msgid "Has Devices" msgstr "" #: /var/www/html/cacti/host_templates.php:816 #: /var/www/html/cacti/lib/api_automation.php:279 #: /var/www/html/cacti/lib/api_automation.php:567 #: /var/www/html/cacti/lib/api_automation.php:1170 msgid "Device Template Name" msgstr "" #: /var/www/html/cacti/host_templates.php:816 msgid "The name of this Device Template." msgstr "" #: /var/www/html/cacti/host_templates.php:817 msgid "" "The internal database ID for this Device Template. Useful when performing " "automation or debugging." msgstr "" #: /var/www/html/cacti/host_templates.php:818 msgid "" "Device Templates in use cannot be Deleted. In use is defined as being " "referenced by a Device." msgstr "" #: /var/www/html/cacti/host_templates.php:819 msgid "Devices Using" msgstr "" #: /var/www/html/cacti/host_templates.php:819 msgid "The number of Devices using this Device Template." msgstr "" #: /var/www/html/cacti/host_templates.php:842 msgid "No Device Templates Found" msgstr "" #: /var/www/html/cacti/include/auth.php:116 #: /var/www/html/cacti/include/auth.php:118 #: /var/www/html/cacti/permission_denied.php:30 #: /var/www/html/cacti/permission_denied.php:32 msgid "Login Again" msgstr "Neu Anmelden" #: /var/www/html/cacti/include/auth.php:126 #: /var/www/html/cacti/include/auth.php:151 #: /var/www/html/cacti/permission_denied.php:64 msgid "Permission Denied" msgstr "" #: /var/www/html/cacti/include/auth.php:153 #: /var/www/html/cacti/permission_denied.php:66 msgid "" "If you feel that this is an error. Please contact your Cacti Administrator." msgstr "" #: /var/www/html/cacti/include/auth.php:153 #: /var/www/html/cacti/permission_denied.php:66 msgid "You are not permitted to access this section of Cacti." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:107 msgid "Save Successful." msgstr "Erfolgreich gespeichert." #: /var/www/html/cacti/include/global_arrays.php:110 msgid "Save Failed." msgstr "Speichern war nicht erfolgreich." #: /var/www/html/cacti/include/global_arrays.php:113 msgid "Save Failed: Field Input Error (Check Red Fields)." msgstr "" "Speichern gescheitert: Fehler in einem Eingabefeld (Bitte prüfen Sie die rot " "markierten Felder)." #: /var/www/html/cacti/include/global_arrays.php:116 msgid "Passwords do not match, please retype." msgstr "Passworte stimmen nicht überein; bitte neue Eingabe" #: /var/www/html/cacti/include/global_arrays.php:119 msgid "You must select at least one field." msgstr "Sie müssen mindestens ein Feld selektieren." #: /var/www/html/cacti/include/global_arrays.php:122 msgid "" "You must have built in user authentication turned on to use this feature." msgstr "" "Sie müssen die integrierte Benutzerauthentifikation anschalten um dieses " "Feature nutzen zu können." #: /var/www/html/cacti/include/global_arrays.php:125 msgid "XML parse error." msgstr "XML Lese-Fehler." #: /var/www/html/cacti/include/global_arrays.php:128 msgid "Username already in use." msgstr "Benutzername ist bereits in Verwendung." #: /var/www/html/cacti/include/global_arrays.php:131 msgid "XML: Cacti version does not exist." msgstr "XML: Hash Version existiert nicht." #: /var/www/html/cacti/include/global_arrays.php:134 msgid "XML: Hash version does not exist." msgstr "XML: Hash Version existiert nicht." #: /var/www/html/cacti/include/global_arrays.php:137 msgid "XML: Generated with a newer version of Cacti." msgstr "XML: Wurde mit einer neueren Version von Cacti erstellt." #: /var/www/html/cacti/include/global_arrays.php:140 msgid "XML: Cannot locate type code." msgstr "XML: Kann den Code-Typen nicht finden." #: /var/www/html/cacti/include/global_arrays.php:143 msgid "Username already exists." msgstr "Benutzername ist schon vorhanden." #: /var/www/html/cacti/include/global_arrays.php:146 msgid "Username change not permitted for designated template or guest user." msgstr "" "Benutzernamenänderung ist für die designierte Schablone oder Gast-Benutzer " "nicht erlaubt." #: /var/www/html/cacti/include/global_arrays.php:149 msgid "User delete not permitted for designated template or guest user." msgstr "" "Benutzerlöschung ist für die designierte Schablone oder Gast-Benutzer nicht " "erlaubt." #: /var/www/html/cacti/include/global_arrays.php:152 msgid "User delete not permitted for designated graph export user." msgstr "" "Benutzerlöschung ist für den designierten Graph-Export-Benutzer nicht " "erlaubt." #: /var/www/html/cacti/include/global_arrays.php:155 msgid "" "Data Template Includes Deleted Data Source Profile. Please resave the Data " "Template with an existing Data Source Profile." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:158 msgid "" "Graph Template Includes Deleted GPrint Prefix. Please run Database Repair " "Script to Identify and/or Correct." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:161 msgid "" "Graph Template Includes Deleted CDEFs. Please run Database Repair Script to " "Identify and/or Correct." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:164 msgid "" "Graph Template Includes Deleted Data Input Method. Please run Database " "Repair Script to Identify." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:167 msgid "" "Data Template Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:170 msgid "" "Device Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:173 msgid "" "Data Query Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:176 msgid "" "Graph Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:179 msgid "" "Graph not found. Either it has been deleted or your database needs repair." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:182 msgid "SNMPv3 Auth Passphrases must be 8 characters or greater." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:185 msgid "" "Some Graphs not Updated. Unable to Change Device for Data Query based Graphs." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:188 msgid "Unable to Change Device for Data Query based Graphs." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:191 msgid "Log file specified is not a Cacti log or archive file." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:194 msgid "Log file specified was Cacti archive file and was removed." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:197 msgid "Cacti Log purged successfully" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:200 msgid "" "Error: If you force a password change, you must also allow the user to " "change their password." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:203 msgid "Error: You are not allowed to change your password." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:206 msgid "Error: LDAP/AD based password change not supported." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:209 msgid "Error: Unable to clear log, no write permissions" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:212 msgid "Error: Unable to clear log, file does not exist" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:215 msgid "Invalid Timestamp. Select timestamp in the future." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:218 msgid "Data Collector(s) Synchronized for Offline Operation" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:221 msgid "Data Collector(s) Not found when attempting Synchronization" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:224 msgid "Unable to establish MySQL connection with remote Data Collector." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:227 msgid "" "Data Collector Synchronization must be initiated from the main Cacti server." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:230 msgid "Report Saved" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:233 msgid "Report Save Failed" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:236 msgid "Report Item Saved" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:239 msgid "Report Item Save Failed" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:242 msgid "" "Poller Resource Cache Cleared. Main Data Collector will rebuild at the next " "poller start, and Remote Data Collectors will sync afterwards." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:334 #: /var/www/html/cacti/include/global_arrays.php:671 msgid "Function" msgstr "Funktion" #: /var/www/html/cacti/include/global_arrays.php:335 #: /var/www/html/cacti/include/global_arrays.php:673 msgid "Special Data Source" msgstr "Spezial Datenquelle" #: /var/www/html/cacti/include/global_arrays.php:336 #: /var/www/html/cacti/include/global_arrays.php:675 msgid "Custom String" msgstr "Spezifische Zeichenkette" #: /var/www/html/cacti/include/global_arrays.php:340 #: /var/www/html/cacti/include/global_arrays.php:712 msgid "Current Graph Item Data Source" msgstr "Aktuelle Graph-Element Datenquelle" #: /var/www/html/cacti/include/global_arrays.php:346 #: /var/www/html/cacti/include/global_arrays.php:353 msgid "Script/Command" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:348 #: /var/www/html/cacti/include/global_arrays.php:354 #: /var/www/html/cacti/utilities.php:1650 msgid "Script Server" msgstr "Script Server" #: /var/www/html/cacti/include/global_arrays.php:360 #, fuzzy msgid "Index Count" msgstr "Anzahl der Indices geändert" #: /var/www/html/cacti/include/global_arrays.php:361 #, fuzzy msgid "Verify All" msgstr "Alle Felder prüfen" #: /var/www/html/cacti/include/global_arrays.php:365 msgid "" "All Re-Indexing will be manual or managed through scripts or Device " "Automation." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:366 msgid "" "When the Devices SNMP uptime goes backward, a Re-Index will be performed." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:367 msgid "When the Data Query index count changes, a Re-Index will be performed." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:368 msgid "Every polling cycle, a Re-Index will be performed. Very expensive." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:372 msgid "SNMP Field Name (Dropdown)" msgstr "SNMP-Feld Name (Dropdown)" #: /var/www/html/cacti/include/global_arrays.php:373 msgid "SNMP Field Value (From User)" msgstr "SNMP-Feld Wert (Vom Benutzer)" #: /var/www/html/cacti/include/global_arrays.php:374 msgid "SNMP Output Type (Dropdown)" msgstr "SNMP-Feld Typ (Dropdown)" #: /var/www/html/cacti/include/global_arrays.php:393 #: /var/www/html/cacti/include/global_arrays.php:399 msgid "Normal" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:394 msgid "Light" msgstr "Dünn" #: /var/www/html/cacti/include/global_arrays.php:395 #: /var/www/html/cacti/include/global_arrays.php:400 msgid "Mono" msgstr "Mono" #: /var/www/html/cacti/include/global_arrays.php:404 msgid "North" msgstr "Norden" #: /var/www/html/cacti/include/global_arrays.php:405 msgid "South" msgstr "Süd" #: /var/www/html/cacti/include/global_arrays.php:406 msgid "West" msgstr "West" #: /var/www/html/cacti/include/global_arrays.php:407 msgid "East" msgstr "Osten" #: /var/www/html/cacti/include/global_arrays.php:412 msgid "Left" msgstr "Links" #: /var/www/html/cacti/include/global_arrays.php:413 msgid "Right" msgstr "Rechts" #: /var/www/html/cacti/include/global_arrays.php:414 msgid "Justified" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:415 msgid "Center" msgstr "Mitte" #: /var/www/html/cacti/include/global_arrays.php:419 msgid "Top -> Down" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:420 msgid "Bottom -> Up" msgstr "Unten -> Oben" #: /var/www/html/cacti/include/global_arrays.php:424 #: /var/www/html/cacti/tree.php:1155 msgid "Numeric" msgstr "Numerische Sortierung" #: /var/www/html/cacti/include/global_arrays.php:425 msgid "Timestamp" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:426 msgid "Duration" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:458 msgid "Not In Use" msgstr "Nicht verwendet" #: /var/www/html/cacti/include/global_arrays.php:459 #: /var/www/html/cacti/include/global_arrays.php:460 #: /var/www/html/cacti/include/global_arrays.php:461 #: /var/www/html/cacti/include/global_arrays.php:640 #: /var/www/html/cacti/include/global_arrays.php:641 #, php-format msgid "Version %d" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:465 msgid "MD5 (default)" msgstr "MD5 (Standard)" #: /var/www/html/cacti/include/global_arrays.php:466 msgid "SHA" msgstr "SHA" #: /var/www/html/cacti/include/global_arrays.php:470 msgid "[None]" msgstr "[Keine]" #: /var/www/html/cacti/include/global_arrays.php:471 msgid "DES (default)" msgstr "DES (Standard)" #: /var/www/html/cacti/include/global_arrays.php:472 msgid "AES" msgstr "AES" #: /var/www/html/cacti/include/global_arrays.php:481 msgid "Logfile Only" msgstr "Nur Log-Datei" #: /var/www/html/cacti/include/global_arrays.php:482 msgid "Logfile and Syslog/Eventlog" msgstr "Log-Datei und Syslog/Ereignis-Log" #: /var/www/html/cacti/include/global_arrays.php:483 msgid "Syslog/Eventlog Only" msgstr "Nur Syslog/Ereignis-Log" #: /var/www/html/cacti/include/global_arrays.php:492 msgid "SNMP getNext" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:497 msgid "ICMP Ping" msgstr "ICMP Ping" #: /var/www/html/cacti/include/global_arrays.php:498 msgid "TCP Ping" msgstr "TCP Ping" #: /var/www/html/cacti/include/global_arrays.php:499 msgid "UDP Ping" msgstr "UDP Ping" #: /var/www/html/cacti/include/global_arrays.php:503 msgid "NONE - Syslog Only if Selected" msgstr "NICHTS - Nur Syslog falls ausgewählt" #: /var/www/html/cacti/include/global_arrays.php:504 msgid "LOW - Statistics and Errors" msgstr "WENIG - Statistiken und Fehler" #: /var/www/html/cacti/include/global_arrays.php:505 msgid "MEDIUM - Statistics, Errors and Results" msgstr "MITTEL - Statistiken, Fehler und Ergebnisse" #: /var/www/html/cacti/include/global_arrays.php:506 msgid "HIGH - Statistics, Errors, Results and Major I/O Events" msgstr "HOCH - Statistiken, Fehler, Ergebnisse und bedeutende I/O Ereignisse" #: /var/www/html/cacti/include/global_arrays.php:507 msgid "DEBUG - Statistics, Errors, Results, I/O and Program Flow" msgstr "DEBUG - Statistiken, Fehler, Ergebnisse, I/O und Programm-Abläufe" #: /var/www/html/cacti/include/global_arrays.php:508 msgid "DEVEL - Developer DEBUG Level" msgstr "DEVEL - Debug-Modus für Entwickler" #: /var/www/html/cacti/include/global_arrays.php:517 msgid "Selected Poller Interval" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:534 #: /var/www/html/cacti/include/global_arrays.php:535 #: /var/www/html/cacti/include/global_arrays.php:536 #: /var/www/html/cacti/include/global_arrays.php:537 #: /var/www/html/cacti/include/global_arrays.php:589 #: /var/www/html/cacti/include/global_arrays.php:590 #: /var/www/html/cacti/include/global_arrays.php:591 #: /var/www/html/cacti/include/global_arrays.php:592 #, php-format msgid "Every %d Seconds" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:538 #: /var/www/html/cacti/include/global_arrays.php:593 #: /var/www/html/cacti/include/global_arrays.php:607 msgid "Every Minute" msgstr "Jede Minute" #: /var/www/html/cacti/include/global_arrays.php:539 #: /var/www/html/cacti/include/global_arrays.php:540 #: /var/www/html/cacti/include/global_arrays.php:541 #: /var/www/html/cacti/include/global_arrays.php:542 #: /var/www/html/cacti/include/global_arrays.php:594 #: /var/www/html/cacti/include/global_arrays.php:608 #, php-format msgid "Every %d Minutes" msgstr "Alle %d Minuten" #: /var/www/html/cacti/include/global_arrays.php:543 msgid "Every Hour" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:544 #: /var/www/html/cacti/include/global_arrays.php:545 #: /var/www/html/cacti/include/global_arrays.php:1499 #: /var/www/html/cacti/include/global_arrays.php:1500 #: /var/www/html/cacti/include/global_arrays.php:1501 #: /var/www/html/cacti/include/global_arrays.php:1502 #: /var/www/html/cacti/include/global_arrays.php:1503 #: /var/www/html/cacti/include/global_settings.php:1780 #: /var/www/html/cacti/include/global_settings.php:1781 #, php-format msgid "Every %d Hours" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:564 #: /var/www/html/cacti/include/global_settings.php:1134 msgid "1 Day" msgstr "1 Tag" #: /var/www/html/cacti/include/global_arrays.php:584 #: /var/www/html/cacti/include/global_arrays.php:1141 #: /var/www/html/cacti/include/global_settings.php:1062 #: /var/www/html/cacti/rrdcleaner.php:493 #, php-format msgid "%d Year" msgstr "%d Jahr" #: /var/www/html/cacti/include/global_arrays.php:598 msgid "1 Thread (default)" msgstr "1 Thread (Standard)" #: /var/www/html/cacti/include/global_arrays.php:623 msgid "Builtin Authentication" msgstr "Eingebaute Authentisierung" #: /var/www/html/cacti/include/global_arrays.php:624 msgid "Web Basic Authentication" msgstr "Einfache Webauthentifizierung" #: /var/www/html/cacti/include/global_arrays.php:628 msgid "LDAP Authentication" msgstr "LDAP Authentifizierung" #: /var/www/html/cacti/include/global_arrays.php:629 msgid "Multiple LDAP/AD Domains" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:634 msgid "Active Directory" msgstr "Das Active Directory" #: /var/www/html/cacti/include/global_arrays.php:646 #: /var/www/html/cacti/include/global_settings.php:1360 msgid "SSL" msgstr "SSL" #: /var/www/html/cacti/include/global_arrays.php:647 #: /var/www/html/cacti/include/global_settings.php:1360 msgid "TLS" msgstr "TLS" #: /var/www/html/cacti/include/global_arrays.php:651 msgid "No Searching" msgstr "Kein Suchen" #: /var/www/html/cacti/include/global_arrays.php:652 msgid "Anonymous Searching" msgstr "Anonyme Suche" #: /var/www/html/cacti/include/global_arrays.php:653 msgid "Specific Searching" msgstr "Spezifisches Suchen" #: /var/www/html/cacti/include/global_arrays.php:667 msgid "Enabled (strict mode)" msgstr "Angeschaltet (Strikter Modus)" #: /var/www/html/cacti/include/global_arrays.php:672 #: /var/www/html/cacti/include/global_form.php:2061 #: /var/www/html/cacti/include/global_form.php:2103 #: /var/www/html/cacti/lib/api_automation.php:1241 #: /var/www/html/cacti/lib/api_automation.php:1303 msgid "Operator" msgstr "Operator" #: /var/www/html/cacti/include/global_arrays.php:674 msgid "Another CDEF" msgstr "Weiterer CDEF" #: /var/www/html/cacti/include/global_arrays.php:693 msgid "Inherit Parent Sorting" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:694 msgid "Manual Ordering (No Sorting)" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:695 msgid "Alphabetic Ordering" msgstr "Alphabetische Sortierung" #: /var/www/html/cacti/include/global_arrays.php:696 msgid "Natural Ordering" msgstr "Natürliche Sortierung" #: /var/www/html/cacti/include/global_arrays.php:697 msgid "Numeric Ordering" msgstr "Numerische Sortierung" #: /var/www/html/cacti/include/global_arrays.php:701 #: /var/www/html/cacti/lib/rrd.php:2627 msgid "Header" msgstr "Header" #: /var/www/html/cacti/include/global_arrays.php:702 #: /var/www/html/cacti/include/global_arrays.php:749 #: /var/www/html/cacti/include/global_arrays.php:1324 #: /var/www/html/cacti/include/global_arrays.php:1488 #: /var/www/html/cacti/lib/html_tree.php:344 msgid "Graph" msgstr "Diagramm" #: /var/www/html/cacti/include/global_arrays.php:708 #: /var/www/html/cacti/tree.php:1321 msgid "Data Query Index" msgstr "Index der Datenabfrage" #: /var/www/html/cacti/include/global_arrays.php:713 msgid "Current Graph Item Polling Interval" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:714 msgid "All Data Sources (Do not Include Duplicates)" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:715 msgid "All Data Sources (Include Duplicates)" msgstr "Alle Datenquellen (inklusive Duplikate)" #: /var/www/html/cacti/include/global_arrays.php:716 msgid "All Similar Data Sources (Do not Include Duplicates)" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:717 #, fuzzy msgid "All Similar Data Sources (Do not Include Duplicates) Polling Interval" msgstr "Alle gleichartigen Datenquellen (Ohne Duplikate)" #: /var/www/html/cacti/include/global_arrays.php:718 msgid "All Similar Data Sources (Include Duplicates)" msgstr "Alle gleichartigen Datenquellen (Inklusive Duplikate)" #: /var/www/html/cacti/include/global_arrays.php:719 msgid "Current Data Source Item: Minimum Value" msgstr "Aktuelles Datenquelle-Element: Minimum Wert" #: /var/www/html/cacti/include/global_arrays.php:720 msgid "Current Data Source Item: Maximum Value" msgstr "Aktuelles Daten-Element: Maximalwert" #: /var/www/html/cacti/include/global_arrays.php:721 msgid "Graph: Lower Limit" msgstr "Graph: Unteres Limit" #: /var/www/html/cacti/include/global_arrays.php:722 msgid "Graph: Upper Limit" msgstr "Graph: Oberes Limit" #: /var/www/html/cacti/include/global_arrays.php:723 msgid "Count of All Data Sources (Do not Include Duplicates)" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:724 msgid "Count of All Data Sources (Include Duplicates)" msgstr "Anzahl aller Datenquellen (Inklusive Duplikate)" #: /var/www/html/cacti/include/global_arrays.php:725 msgid "Count of All Similar Data Sources (Do not Include Duplicates)" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:726 msgid "Count of All Similar Data Sources (Include Duplicates)" msgstr "Anzahl aller gleichartigen Datenquellen (Inklusive Duplikate)" #: /var/www/html/cacti/include/global_arrays.php:732 #: /var/www/html/cacti/lib/html_form_template.php:562 #: /var/www/html/cacti/lib/html_form_template.php:577 msgid "New Graphs" msgstr "Neue Diagramme" #: /var/www/html/cacti/include/global_arrays.php:734 #: /var/www/html/cacti/include/global_arrays.php:786 #: /var/www/html/cacti/include/global_arrays.php:803 msgid "Management" msgstr "Verwaltung" #: /var/www/html/cacti/include/global_arrays.php:736 #: /var/www/html/cacti/sites.php:389 /var/www/html/cacti/sites.php:404 #: /var/www/html/cacti/sites.php:484 msgid "Sites" msgstr "Standorte" #: /var/www/html/cacti/include/global_arrays.php:737 #: /var/www/html/cacti/include/global_arrays.php:920 #: /var/www/html/cacti/tree.php:1501 /var/www/html/cacti/tree.php:1516 #: /var/www/html/cacti/tree.php:1573 /var/www/html/cacti/user_admin.php:1505 #: /var/www/html/cacti/user_admin.php:2931 #: /var/www/html/cacti/user_admin.php:3016 #: /var/www/html/cacti/user_group_admin.php:1235 #: /var/www/html/cacti/user_group_admin.php:2454 msgid "Trees" msgstr "Diagramm-Bäume" #: /var/www/html/cacti/include/global_arrays.php:740 msgid "Aggregates" msgstr "Aggregate" #: /var/www/html/cacti/include/global_arrays.php:742 #: /var/www/html/cacti/include/global_arrays.php:789 #: /var/www/html/cacti/include/global_arrays.php:804 msgid "Data Collection" msgstr "Datensammlung" #: /var/www/html/cacti/include/global_arrays.php:743 #: /var/www/html/cacti/include/global_arrays.php:790 #: /var/www/html/cacti/pollers.php:508 msgid "Data Collectors" msgstr "Datenkollektoren" #: /var/www/html/cacti/include/global_arrays.php:751 msgid "Aggregate" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:754 #: /var/www/html/cacti/include/global_arrays.php:806 #: /var/www/html/cacti/include/global_settings.php:430 msgid "Automation" msgstr "Automatisierung" #: /var/www/html/cacti/include/global_arrays.php:756 msgid "Discovered Devices" msgstr "Erkannten Geräte" #: /var/www/html/cacti/include/global_arrays.php:757 msgid "Device Rules" msgstr "Geräteregeln" #: /var/www/html/cacti/include/global_arrays.php:762 #: /var/www/html/cacti/include/global_arrays.php:807 #: /var/www/html/cacti/lib/html_filter.php:178 #: /var/www/html/cacti/lib/html_graph.php:253 #: /var/www/html/cacti/lib/html_tree.php:692 msgid "Presets" msgstr "Voreinstellungen" #: /var/www/html/cacti/include/global_arrays.php:763 msgid "Data Profiles" msgstr "Datenprofile" #: /var/www/html/cacti/include/global_arrays.php:765 #: /var/www/html/cacti/lib/functions.php:2339 /var/www/html/cacti/vdef.php:651 #: /var/www/html/cacti/vdef.php:665 /var/www/html/cacti/vdef.php:838 msgid "VDEFs" msgstr "VDEFs" #: /var/www/html/cacti/include/global_arrays.php:769 #: /var/www/html/cacti/include/global_arrays.php:808 msgid "Import/Export" msgstr "Import/Export" #: /var/www/html/cacti/include/global_arrays.php:770 #: /var/www/html/cacti/lib/functions.php:2453 msgid "Import Templates" msgstr "Vorlage importieren" #: /var/www/html/cacti/include/global_arrays.php:771 #: /var/www/html/cacti/lib/functions.php:2441 #: /var/www/html/cacti/templates_export.php:152 msgid "Export Templates" msgstr "Vorlage exportieren" #: /var/www/html/cacti/include/global_arrays.php:773 #: /var/www/html/cacti/include/global_arrays.php:792 #: /var/www/html/cacti/include/global_arrays.php:809 #: /var/www/html/cacti/lib/plugins.php:772 msgid "Configuration" msgstr "Konfiguration" #: /var/www/html/cacti/include/global_arrays.php:774 #: /var/www/html/cacti/include/global_arrays.php:793 msgid "Settings" msgstr "Einstellungen" #: /var/www/html/cacti/include/global_arrays.php:775 #: /var/www/html/cacti/lib/functions.php:2387 #: /var/www/html/cacti/user_admin.php:2212 #: /var/www/html/cacti/user_admin.php:2266 #: /var/www/html/cacti/user_group_admin.php:667 #: /var/www/html/cacti/user_group_admin.php:2539 msgid "Users" msgstr "Benutzer" #: /var/www/html/cacti/include/global_arrays.php:776 #: /var/www/html/cacti/lib/functions.php:2417 msgid "User Groups" msgstr "Benutzergruppen" #: /var/www/html/cacti/include/global_arrays.php:777 #: /var/www/html/cacti/lib/functions.php:2405 #: /var/www/html/cacti/user_domains.php:612 #: /var/www/html/cacti/user_domains.php:703 msgid "User Domains" msgstr "Benutzerdomänen" #: /var/www/html/cacti/include/global_arrays.php:779 #: /var/www/html/cacti/include/global_arrays.php:795 #: /var/www/html/cacti/include/global_arrays.php:810 #: /var/www/html/cacti/lib/functions.php:2267 msgid "Utilities" msgstr "Werkzeuge" #: /var/www/html/cacti/include/global_arrays.php:780 #: /var/www/html/cacti/include/global_arrays.php:796 msgid "System Utilities" msgstr "Systemwerkzeuge" #: /var/www/html/cacti/include/global_arrays.php:781 #: /var/www/html/cacti/include/global_arrays.php:811 #: /var/www/html/cacti/include/global_arrays.php:825 #: /var/www/html/cacti/include/global_arrays.php:909 #: /var/www/html/cacti/links.php:90 /var/www/html/cacti/links.php:301 #: /var/www/html/cacti/links.php:369 /var/www/html/cacti/links.php:482 msgid "External Links" msgstr "Externe Links" #: /var/www/html/cacti/include/global_arrays.php:834 msgid "All Lines" msgstr "Alle Zeilen" #: /var/www/html/cacti/include/global_arrays.php:835 #: /var/www/html/cacti/include/global_arrays.php:836 #: /var/www/html/cacti/include/global_arrays.php:837 #: /var/www/html/cacti/include/global_arrays.php:838 #: /var/www/html/cacti/include/global_arrays.php:839 #: /var/www/html/cacti/include/global_arrays.php:840 #: /var/www/html/cacti/include/global_arrays.php:841 #: /var/www/html/cacti/include/global_arrays.php:842 #: /var/www/html/cacti/include/global_arrays.php:843 #: /var/www/html/cacti/include/global_arrays.php:844 #: /var/www/html/cacti/include/global_arrays.php:845 #: /var/www/html/cacti/include/global_arrays.php:846 #, php-format msgid "%d Lines" msgstr "%d Zeilen" #: /var/www/html/cacti/include/global_arrays.php:901 #: /var/www/html/cacti/lib/html_reports.php:1558 msgid "Never" msgstr "Niemals" #: /var/www/html/cacti/include/global_arrays.php:905 msgid "Console Access" msgstr "Konsolenzugriff" #: /var/www/html/cacti/include/global_arrays.php:907 msgid "Realtime Graphs" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:908 msgid "Update Profile" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:911 #: /var/www/html/cacti/user_admin.php:2191 msgid "User Management" msgstr "Benutzer Verwaltung" #: /var/www/html/cacti/include/global_arrays.php:912 msgid "Settings and Utilities" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:913 msgid "Automation Settings" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:918 msgid "Sites/Devices/Data Sources/Data Collectors" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:921 msgid "Remove Spikes from Graphs" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:924 msgid "Colors/GPrints/CDEFs/VDEFs" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:930 msgid "Export Data" msgstr "Daten exportieren" #: /var/www/html/cacti/include/global_arrays.php:931 msgid "Import Data" msgstr "Daten importieren" #: /var/www/html/cacti/include/global_arrays.php:933 #: /var/www/html/cacti/include/global_settings.php:705 msgid "Log Management" msgstr "Log Verwaltung" #: /var/www/html/cacti/include/global_arrays.php:934 msgid "Log Viewing" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:936 msgid "Reports Management" msgstr "Berichtsverwaltung" #: /var/www/html/cacti/include/global_arrays.php:937 msgid "Reports Creation" msgstr "Berichte erstellen" #: /var/www/html/cacti/include/global_arrays.php:1035 msgid "CDEF" msgstr "CDEF" #: /var/www/html/cacti/include/global_arrays.php:1036 msgid "CDEF Item" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1037 msgid "GPRINT Preset" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1040 msgid "Data Input Field" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1041 #: /var/www/html/cacti/include/global_form.php:397 #: /var/www/html/cacti/include/global_form.php:1585 msgid "Data Source Profile" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1042 msgid "Data Template Item" msgstr "Element der Datenschablone" #: /var/www/html/cacti/include/global_arrays.php:1044 msgid "Graph Template Item" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1045 msgid "Graph Template Input" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1048 msgid "VDEF" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1049 msgid "VDEF Item" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1093 msgid "Last Half Hour" msgstr "Letzte halbe Stunde" #: /var/www/html/cacti/include/global_arrays.php:1094 msgid "Last Hour" msgstr "Letzte Stunde" #: /var/www/html/cacti/include/global_arrays.php:1095 #: /var/www/html/cacti/include/global_arrays.php:1096 #: /var/www/html/cacti/include/global_arrays.php:1097 #: /var/www/html/cacti/include/global_arrays.php:1098 #, php-format msgid "Last %d Hours" msgstr "Letzte %d Stunden" #: /var/www/html/cacti/include/global_arrays.php:1099 msgid "Last Day" msgstr "Letzter Tag" #: /var/www/html/cacti/include/global_arrays.php:1100 #: /var/www/html/cacti/include/global_arrays.php:1101 #: /var/www/html/cacti/include/global_arrays.php:1102 #, php-format msgid "Last %d Days" msgstr "Letzte %d Tage" #: /var/www/html/cacti/include/global_arrays.php:1103 msgid "Last Week" msgstr "Letzte Woche" #: /var/www/html/cacti/include/global_arrays.php:1104 #, php-format msgid "Last %d Weeks" msgstr "Letzte %d Wochen" #: /var/www/html/cacti/include/global_arrays.php:1105 msgid "Last Month" msgstr "Letzter Monat" #: /var/www/html/cacti/include/global_arrays.php:1106 #: /var/www/html/cacti/include/global_arrays.php:1107 #: /var/www/html/cacti/include/global_arrays.php:1108 #: /var/www/html/cacti/include/global_arrays.php:1109 #, php-format msgid "Last %d Months" msgstr "Letzte %d Monate" #: /var/www/html/cacti/include/global_arrays.php:1110 msgid "Last Year" msgstr "Letztes Jahr" #: /var/www/html/cacti/include/global_arrays.php:1111 #, php-format msgid "Last %d Years" msgstr "Letzte %d Jahre" #: /var/www/html/cacti/include/global_arrays.php:1112 msgid "Day Shift" msgstr "Tag Verschiebung" #: /var/www/html/cacti/include/global_arrays.php:1113 msgid "This Day" msgstr "Dieser Tag" #: /var/www/html/cacti/include/global_arrays.php:1114 msgid "This Week" msgstr "Diese Woche" #: /var/www/html/cacti/include/global_arrays.php:1115 msgid "This Month" msgstr "Dieser Monat" #: /var/www/html/cacti/include/global_arrays.php:1116 msgid "This Year" msgstr "Dieses Jahr" #: /var/www/html/cacti/include/global_arrays.php:1117 msgid "Previous Day" msgstr "Vorheriger Tag" #: /var/www/html/cacti/include/global_arrays.php:1118 msgid "Previous Week" msgstr "Vorherige Woche" #: /var/www/html/cacti/include/global_arrays.php:1119 msgid "Previous Month" msgstr "Vorheriger Monat" #: /var/www/html/cacti/include/global_arrays.php:1120 msgid "Previous Year" msgstr "Vorheriges Jahr" #: /var/www/html/cacti/include/global_arrays.php:1124 #, php-format msgid "%d Min" msgstr "%d min" #: /var/www/html/cacti/include/global_arrays.php:1156 msgid "Month Number, Day, Year" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1157 msgid "Month Name, Day, Year" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1158 msgid "Day, Month Number, Year" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1159 msgid "Day, Month Name, Year" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1160 msgid "Year, Month Number, Day" msgstr "Jahr, Monatszahl, Tag" #: /var/www/html/cacti/include/global_arrays.php:1161 msgid "Year, Month Name, Day" msgstr "Jahr, Monat, Tag" #: /var/www/html/cacti/include/global_arrays.php:1171 msgid "After Boost" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1181 #: /var/www/html/cacti/include/global_arrays.php:1182 #: /var/www/html/cacti/include/global_arrays.php:1183 #: /var/www/html/cacti/include/global_arrays.php:1184 #: /var/www/html/cacti/include/global_arrays.php:1185 #: /var/www/html/cacti/include/global_arrays.php:1240 #: /var/www/html/cacti/include/global_arrays.php:1241 #: /var/www/html/cacti/include/global_arrays.php:1242 #: /var/www/html/cacti/include/global_arrays.php:1243 #: /var/www/html/cacti/include/global_arrays.php:1244 #, php-format msgid "%d MBytes" msgstr "%d MByte" #: /var/www/html/cacti/include/global_arrays.php:1186 #: /var/www/html/cacti/include/global_arrays.php:1245 msgid "1 GByte" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1187 #: /var/www/html/cacti/include/global_arrays.php:1246 #, fuzzy, php-format msgid "%s GBytes" msgstr "%s GBytes" #: /var/www/html/cacti/include/global_arrays.php:1188 #: /var/www/html/cacti/include/global_arrays.php:1189 #: /var/www/html/cacti/include/global_arrays.php:1247 #: /var/www/html/cacti/include/global_arrays.php:1248 #, php-format msgid "%d GBytes" msgstr "%d GByte" #: /var/www/html/cacti/include/global_arrays.php:1202 msgid "2,000 Data Source Items" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1203 msgid "5,000 Data Source Items" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1204 msgid "10,000 Data Source Items" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1205 msgid "15,000 Data Source Items" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1206 msgid "25,000 Data Source Items" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1207 msgid "50,000 Data Source Items (Default)" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1208 msgid "100,000 Data Source Items" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1209 msgid "200,000 Data Source Items" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1210 msgid "400,000 Data Source Items" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1227 msgid "2 Hours" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1228 msgid "4 Hours" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1229 msgid "6 Hours" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1236 #, fuzzy, php-format msgid "%s Hours" msgstr "%s Stunden" #: /var/www/html/cacti/include/global_arrays.php:1255 #, fuzzy, php-format msgid "%s Minutes" msgstr "%s Minuten" #: /var/www/html/cacti/include/global_arrays.php:1275 msgid "1 Megabyte" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1276 #: /var/www/html/cacti/include/global_arrays.php:1277 #: /var/www/html/cacti/include/global_arrays.php:1278 #: /var/www/html/cacti/include/global_arrays.php:1279 #: /var/www/html/cacti/include/global_arrays.php:1280 #: /var/www/html/cacti/include/global_arrays.php:1281 #, php-format msgid "%d Megabytes" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1285 #, fuzzy #| msgid "Send Report" msgid "Send Now" msgstr "Bericht senden" #: /var/www/html/cacti/include/global_arrays.php:1293 msgid "Take Ownership" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1297 msgid "Inline PNG Image" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1302 msgid "Inline JPEG Image" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1303 msgid "Inline GIF Image" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1306 msgid "Attached PNG Image" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1309 msgid "Attached JPEG Image" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1310 msgid "Attached GIF Image" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1314 msgid "Inline PNG Image, LN Style" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1316 msgid "Inline JPEG Image, LN Style" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1317 msgid "Inline GIF Image, LN Style" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1322 msgid "Text" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1323 #: /var/www/html/cacti/include/global_form.php:2181 msgid "Tree" msgstr "Baum" #: /var/www/html/cacti/include/global_arrays.php:1325 msgid "Horizontal Rule" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1329 msgid "left" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1330 msgid "center" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1331 msgid "right" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1335 msgid "Minute(s)" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1336 msgid "Hour(s)" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1337 msgid "Day(s)" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1338 msgid "Week(s)" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1339 msgid "Month(s), Day of Month" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1340 msgid "Month(s), Day of Week" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1341 msgid "Year(s)" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1345 msgid "Keep Graph Types" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1346 msgid "Keep Type and STACK" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1347 msgid "Convert to AREA/STACK Graph" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1348 msgid "Convert to LINE1 Graph" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1349 msgid "Convert to LINE2 Graph" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1350 msgid "Convert to LINE3 Graph" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1354 msgid "No Totals" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1355 msgid "Print all Legend Items" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1356 msgid "Print totaling Legend Items Only" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1360 msgid "Total Similar Data Sources" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1361 msgid "Total All Data Sources" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1365 msgid "No Reordering" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1366 msgid "Data Source, Graph" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1367 msgid "Graph, Data Source" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1374 msgid "contains" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1375 msgid "does not contain" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1376 msgid "begins with" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1377 msgid "does not begin with" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1378 msgid "ends with" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1379 msgid "does not end with" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1380 msgid "matches" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1381 msgid "does not match with" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1382 msgid "is less than" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1383 msgid "is less than or equal" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1384 msgid "is greater than" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1385 msgid "is greater than or equal" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1386 msgid "is unknown" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1387 msgid "is not unknown" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1388 msgid "is empty" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1389 msgid "is not empty" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1390 msgid "matches regular expression" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1391 msgid "does not match regular expression" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1493 msgid "Fixed String" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1498 msgid "Every 1 Hour" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1504 msgid "Every Day" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1505 msgid "Every Week" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1506 #: /var/www/html/cacti/include/global_arrays.php:1507 #, php-format msgid "Every %d Weeks" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1538 msgctxt "A short textual representation of a month, three letters" msgid "Jan" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1539 msgctxt "A short textual representation of a month, three letters" msgid "Feb" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1540 msgctxt "A short textual representation of a month, three letters" msgid "Mar" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1541 msgctxt "A short textual representation of a month, three letters" msgid "Apr" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1542 msgctxt "A short textual representation of a month, three letters" msgid "May" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1543 msgctxt "A short textual representation of a month, three letters" msgid "Jun" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1544 msgctxt "A short textual representation of a month, three letters" msgid "Jul" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1545 msgctxt "A short textual representation of a month, three letters" msgid "Aug" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1546 msgctxt "A short textual representation of a month, three letters" msgid "Sep" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1547 msgctxt "A short textual representation of a month, three letters" msgid "Oct" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1548 msgctxt "A short textual representation of a month, three letters" msgid "Nov" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1549 msgctxt "A short textual representation of a month, three letters" msgid "Dec" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1563 msgctxt "A textual representation of a day, three letters" msgid "Sun" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1564 msgctxt "A textual representation of a day, three letters" msgid "Mon" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1565 msgctxt "A textual representation of a day, three letters" msgid "Tue" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1566 msgctxt "A textual representation of a day, three letters" msgid "Wed" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1567 msgctxt "A textual representation of a day, three letters" msgid "Thu" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1568 msgctxt "A textual representation of a day, three letters" msgid "Fri" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1569 msgctxt "A textual representation of a day, three letters" msgid "Sat" msgstr "" #: /var/www/html/cacti/include/global_form.php:36 msgid "A useful name for this Data Storage and Polling Profile." msgstr "" #: /var/www/html/cacti/include/global_form.php:40 msgid "New Profile" msgstr "" #: /var/www/html/cacti/include/global_form.php:44 msgid "Polling Interval" msgstr "" #: /var/www/html/cacti/include/global_form.php:45 msgid "The frequency that data will be collected from the Data Source?" msgstr "" #: /var/www/html/cacti/include/global_form.php:53 msgid "" "How long can data be missing before RRDtool records unknown data. Increase " "this value if your Data Source is unstable and you wish to carry forward old " "data rather than show gaps in your graphs. This value is multiplied by the " "X-Files Factor to determine the actual amount of time." msgstr "" #: /var/www/html/cacti/include/global_form.php:60 msgid "X-Files Factor" msgstr "" #: /var/www/html/cacti/include/global_form.php:61 msgid "The amount of unknown data that can still be regarded as known." msgstr "" #: /var/www/html/cacti/include/global_form.php:69 msgid "Consolidation Functions" msgstr "Konsolidierungsfunktionen" #: /var/www/html/cacti/include/global_form.php:70 #: /var/www/html/cacti/include/global_form.php:102 msgid "How data is to be entered in RRAs." msgstr "" #: /var/www/html/cacti/include/global_form.php:77 msgid "Is this the default storage profile?" msgstr "" #: /var/www/html/cacti/include/global_form.php:83 msgid "RRDfile Size (in Bytes)" msgstr "" #: /var/www/html/cacti/include/global_form.php:84 msgid "" "Based upon the number of Rows in all RRAs and the number of Consolidation " "Functions selected, the size of this entire in the RRDfile." msgstr "" #: /var/www/html/cacti/include/global_form.php:106 msgid "New Profile RRA" msgstr "" #: /var/www/html/cacti/include/global_form.php:110 msgid "Aggregation Level" msgstr "" #: /var/www/html/cacti/include/global_form.php:111 msgid "" "The number of samples required prior to filling a row in the RRA " "specification. The first RRA should always have a value of 1." msgstr "" #: /var/www/html/cacti/include/global_form.php:119 msgid "How many generations data is kept in the RRA." msgstr "" #: /var/www/html/cacti/include/global_form.php:127 msgid "Default Timespan" msgstr "" #: /var/www/html/cacti/include/global_form.php:128 msgid "" "When viewing a Graph based upon the RRA in question, the default Timespan to " "show for that Graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:135 msgid "" "Based upon the Aggregation Level, the Rows, and the Polling Interval the " "amount of data that will be retained in the RRA" msgstr "" #: /var/www/html/cacti/include/global_form.php:140 msgid "RRA Size (in Bytes)" msgstr "" #: /var/www/html/cacti/include/global_form.php:141 msgid "" "Based upon the number of Rows and the number of Consolidation Functions " "selected, the size of this RRA in the RRDfile." msgstr "" #: /var/www/html/cacti/include/global_form.php:159 msgid "A useful name for this CDEF." msgstr "Ein hilfreicher Name für diese CDEF." #: /var/www/html/cacti/include/global_form.php:179 msgid "The name of this Color." msgstr "" #: /var/www/html/cacti/include/global_form.php:186 msgid "Hex Value" msgstr "Hex Wert" #: /var/www/html/cacti/include/global_form.php:187 msgid "The hex value for this color; valid range: 000000-FFFFFF." msgstr "" #: /var/www/html/cacti/include/global_form.php:195 msgid "Any named color should be read only." msgstr "" #: /var/www/html/cacti/include/global_form.php:220 #: /var/www/html/cacti/include/global_form.php:280 msgid "Enter a meaningful name for this data input method." msgstr "Geben Sie dieser Dateneingabe-Methode einen aussagekräftigen Namen." #: /var/www/html/cacti/include/global_form.php:227 msgid "Input Type" msgstr "Eingabetyp" #: /var/www/html/cacti/include/global_form.php:228 msgid "" "Choose the method you wish to use to collect data for this Data Input method." msgstr "" #: /var/www/html/cacti/include/global_form.php:234 msgid "Input String" msgstr "Eingabe Zeichenkette" #: /var/www/html/cacti/include/global_form.php:235 msgid "" "The data that is sent to the script, which includes the complete path to the " "script and input sources in <> brackets." msgstr "" #: /var/www/html/cacti/include/global_form.php:256 #: /var/www/html/cacti/include/global_form.php:267 #, php-format msgid "Field [%s]" msgstr "" #: /var/www/html/cacti/include/global_form.php:257 #, php-format msgid "Choose the associated field from the %s field." msgstr "" #: /var/www/html/cacti/include/global_form.php:268 #, php-format msgid "" "Enter a name for this %s field. Note: If using name value pairs in your " "script, for example: NAME:VALUE, it is important that the name match your " "output field name identically to the script output name or names." msgstr "" #: /var/www/html/cacti/include/global_form.php:287 msgid "Update RRDfile" msgstr "" #: /var/www/html/cacti/include/global_form.php:288 msgid "Whether data from this output field is to be entered into the RRDfile." msgstr "" #: /var/www/html/cacti/include/global_form.php:295 msgid "Regular Expression Match" msgstr "Regulärer Ausdruck Treffer" #: /var/www/html/cacti/include/global_form.php:296 msgid "" "If you want to require a certain regular expression to be matched against " "input data, enter it here (preg_match format)." msgstr "" #: /var/www/html/cacti/include/global_form.php:303 msgid "Allow Empty Input" msgstr "Leere Eingabe erlaubt" #: /var/www/html/cacti/include/global_form.php:304 msgid "Check here if you want to allow NULL input in this field from the user." msgstr "Anwählen, falls Sie eine NULL Eingabe zulassen wollen." #: /var/www/html/cacti/include/global_form.php:311 msgid "Special Type Code" msgstr "" #: /var/www/html/cacti/include/global_form.php:312 #, php-format msgid "" "If this field should be treated specially by host templates, indicate so " "here. Valid keywords for this field are %s" msgstr "" #: /var/www/html/cacti/include/global_form.php:344 msgid "The name given to this data template." msgstr "Der Name, dem dieses Daten-Template zugeordnet wurde." #: /var/www/html/cacti/include/global_form.php:375 msgid "" "Choose a name for this data source. It can include replacement variables " "such as |host_description| or |query_fieldName|. For a complete list of " "supported replacement tags, please see the Cacti documentation." msgstr "" #: /var/www/html/cacti/include/global_form.php:379 msgid "Data Source Path" msgstr "Dateipfad der Datenquelle" #: /var/www/html/cacti/include/global_form.php:384 msgid "The full path to the RRDfile." msgstr "" #: /var/www/html/cacti/include/global_form.php:393 msgid "The script/source used to gather data for this data source." msgstr "Das Skript/der Ursprung der Daten für die Datenquelle sammelt" #: /var/www/html/cacti/include/global_form.php:399 #: /var/www/html/cacti/include/global_form.php:1587 msgid "" "Select the Data Source Profile. The Data Source Profile controls polling " "interval, the data aggregation, and retention policy for the resulting Data " "Sources." msgstr "" #: /var/www/html/cacti/include/global_form.php:410 msgid "The amount of time in seconds between expected updates." msgstr "" #: /var/www/html/cacti/include/global_form.php:414 msgid "Data Source Active" msgstr "" #: /var/www/html/cacti/include/global_form.php:417 msgid "Whether Cacti should gather data for this data source or not." msgstr "" #: /var/www/html/cacti/include/global_form.php:425 msgid "Internal Data Source Name" msgstr "" #: /var/www/html/cacti/include/global_form.php:430 msgid "" "Choose unique name to represent this piece of data inside of the RRDfile." msgstr "" #: /var/www/html/cacti/include/global_form.php:433 msgid "Minimum Value (\"U\" for No Minimum)" msgstr "" #: /var/www/html/cacti/include/global_form.php:438 msgid "The minimum value of data that is allowed to be collected." msgstr "" #: /var/www/html/cacti/include/global_form.php:441 msgid "Maximum Value (\"U\" for No Maximum)" msgstr "" #: /var/www/html/cacti/include/global_form.php:446 msgid "The maximum value of data that is allowed to be collected." msgstr "" #: /var/www/html/cacti/include/global_form.php:449 msgid "Data Source Type" msgstr "Typ der Datenquelle" #: /var/www/html/cacti/include/global_form.php:453 msgid "How data is represented in the RRA." msgstr "" #: /var/www/html/cacti/include/global_form.php:461 msgid "" "The maximum amount of time that can pass before data is entered as " "'unknown'. (Usually 2x300=600)" msgstr "" #: /var/www/html/cacti/include/global_form.php:467 #: /var/www/html/cacti/lib/html_utility.php:231 msgid "Not Selected" msgstr "Nicht ausgewählt" #: /var/www/html/cacti/include/global_form.php:468 msgid "" "When data is gathered, the data for this field will be put into this data " "source." msgstr "" #: /var/www/html/cacti/include/global_form.php:477 msgid "" "Enter a name for this GPRINT preset, make sure it is something you recognize." msgstr "" #: /var/www/html/cacti/include/global_form.php:484 msgid "GPRINT Text" msgstr "" #: /var/www/html/cacti/include/global_form.php:485 msgid "Enter the custom GPRINT string here." msgstr "" #: /var/www/html/cacti/include/global_form.php:503 msgid "Common Options" msgstr "" #: /var/www/html/cacti/include/global_form.php:508 msgid "Title (--title)" msgstr "" #: /var/www/html/cacti/include/global_form.php:512 msgid "" "The name that is printed on the graph. It can include replacement variables " "such as |host_description| or |query_fieldName|. For a complete list of " "supported replacement tags, please see the Cacti documentation." msgstr "" #: /var/www/html/cacti/include/global_form.php:516 msgid "Vertical Label (--vertical-label)" msgstr "" #: /var/www/html/cacti/include/global_form.php:520 msgid "The label vertically printed to the left of the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:524 msgid "Image Format (--imgformat)" msgstr "" #: /var/www/html/cacti/include/global_form.php:528 msgid "" "The type of graph that is generated; PNG, GIF or SVG. The selection of " "graph image type is very RRDtool dependent." msgstr "" #: /var/www/html/cacti/include/global_form.php:531 msgid "Height (--height)" msgstr "" #: /var/www/html/cacti/include/global_form.php:535 msgid "" "The height (in pixels) of the graph area within the graph. This area does " "not include the legend, axis legends, or title." msgstr "" #: /var/www/html/cacti/include/global_form.php:539 msgid "Width (--width)" msgstr "" #: /var/www/html/cacti/include/global_form.php:543 msgid "" "The width (in pixels) of the graph area within the graph. This area does not " "include the legend, axis legends, or title." msgstr "" #: /var/www/html/cacti/include/global_form.php:547 msgid "Base Value (--base)" msgstr "" #: /var/www/html/cacti/include/global_form.php:551 msgid "Should be set to 1024 for memory and 1000 for traffic measurements." msgstr "" #: /var/www/html/cacti/include/global_form.php:555 msgid "Slope Mode (--slope-mode)" msgstr "" #: /var/www/html/cacti/include/global_form.php:558 msgid "" "Using Slope Mode evens out the shape of the graphs at the expense of some on " "screen resolution." msgstr "" #: /var/www/html/cacti/include/global_form.php:561 msgid "Scaling Options" msgstr "" #: /var/www/html/cacti/include/global_form.php:566 msgid "Auto Scale" msgstr "Automatische Skalierung" #: /var/www/html/cacti/include/global_form.php:569 msgid "" "Auto scale the y-axis instead of defining an upper and lower limit. Note: if " "this is check both the Upper and Lower limit will be ignored." msgstr "" #: /var/www/html/cacti/include/global_form.php:573 msgid "Auto Scale Options" msgstr "Optionen für automatische Skalierung" #: /var/www/html/cacti/include/global_form.php:576 msgid "" "Use
    --alt-autoscale to scale to the absolute minimum and maximum
    --" "alt-autoscale-max to scale to the maximum value, using a given lower limit " "
    --alt-autoscale-min to scale to the minimum value, using a given upper " "limit
    --alt-autoscale (with limits) to scale using both lower and upper " "limits (RRDtool default)
    " msgstr "" #: /var/www/html/cacti/include/global_form.php:580 msgid "Use --alt-autoscale (ignoring given limits)" msgstr "" #: /var/www/html/cacti/include/global_form.php:584 msgid "Use --alt-autoscale-max (accepting a lower limit)" msgstr "" #: /var/www/html/cacti/include/global_form.php:588 msgid "Use --alt-autoscale-min (accepting an upper limit)" msgstr "" #: /var/www/html/cacti/include/global_form.php:592 msgid "Use --alt-autoscale (accepting both limits, RRDtool default)" msgstr "" #: /var/www/html/cacti/include/global_form.php:597 msgid "Logarithmic Scaling (--logarithmic)" msgstr "" #: /var/www/html/cacti/include/global_form.php:601 msgid "Use Logarithmic y-axis scaling" msgstr "" #: /var/www/html/cacti/include/global_form.php:604 msgid "SI Units for Logarithmic Scaling (--units=si)" msgstr "" #: /var/www/html/cacti/include/global_form.php:607 msgid "" "Use SI Units for Logarithmic Scaling instead of using exponential notation." "
    Note: Linear graphs use SI notation by default." msgstr "" #: /var/www/html/cacti/include/global_form.php:610 msgid "Rigid Boundaries Mode (--rigid)" msgstr "" #: /var/www/html/cacti/include/global_form.php:613 msgid "" "Do not expand the lower and upper limit if the graph contains a value " "outside the valid range." msgstr "" "Erweitere untere und obere Grenze nicht, wenn das Diagramm Werte außerhalb " "des gültigen Bereiches enthält." #: /var/www/html/cacti/include/global_form.php:616 msgid "Upper Limit (--upper-limit)" msgstr "" #: /var/www/html/cacti/include/global_form.php:620 msgid "The maximum vertical value for the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:624 msgid "Lower Limit (--lower-limit)" msgstr "" #: /var/www/html/cacti/include/global_form.php:628 msgid "The minimum vertical value for the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:632 msgid "Grid Options" msgstr "" #: /var/www/html/cacti/include/global_form.php:637 msgid "Unit Grid Value (--unit/--y-grid)" msgstr "" #: /var/www/html/cacti/include/global_form.php:641 msgid "" "Sets the exponent value on the Y-axis for numbers. Note: This option is " "deprecated and replaced by the --y-grid option. In this option, Y-axis grid " "lines appear at each grid step interval. Labels are placed every label " "factor lines." msgstr "" #: /var/www/html/cacti/include/global_form.php:645 msgid "Unit Exponent Value (--units-exponent)" msgstr "" #: /var/www/html/cacti/include/global_form.php:649 msgid "" "What unit Cacti should use on the Y-axis. Use 3 to display everything in \"k" "\" or -6 to display everything in \"u\" (micro)." msgstr "" #: /var/www/html/cacti/include/global_form.php:653 msgid "Unit Length (--units-length <length>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:658 msgid "" "How many digits should RRDtool assume the y-axis labels to be? You may have " "to use this option to make enough space once you start fiddling with the y-" "axis labeling." msgstr "" #: /var/www/html/cacti/include/global_form.php:661 msgid "No Gridfit (--no-gridfit)" msgstr "" #: /var/www/html/cacti/include/global_form.php:664 msgid "" "In order to avoid anti-aliasing blurring effects RRDtool snaps points to " "device resolution pixels, this results in a crisper appearance. If this is " "not to your liking, you can use this switch to turn this behavior off." "
    Note: Gridfitting is turned off for PDF, EPS, SVG " "output by default." msgstr "" #: /var/www/html/cacti/include/global_form.php:667 msgid "Alternative Y Grid (--alt-y-grid)" msgstr "" #: /var/www/html/cacti/include/global_form.php:670 msgid "" "The algorithm ensures that you always have a grid, that there are enough but " "not too many grid lines, and that the grid is metric. This parameter will " "also ensure that you get enough decimals displayed even if your graph goes " "from 69.998 to 70.001.
    Note: This parameter may " "interfere with --alt-autoscale options." msgstr "" #: /var/www/html/cacti/include/global_form.php:673 msgid "Axis Options" msgstr "" #: /var/www/html/cacti/include/global_form.php:678 msgid "Right Axis (--right-axis <scale:shift>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:683 msgid "" "A second axis will be drawn to the right of the graph. It is tied to the " "left axis via the scale and shift parameters." msgstr "" #: /var/www/html/cacti/include/global_form.php:686 msgid "Right Axis Label (--right-axis-label <string>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:691 msgid "The label for the right axis." msgstr "" #: /var/www/html/cacti/include/global_form.php:694 msgid "Right Axis Format (--right-axis-format <format>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:699 #, php-format msgid "" "By default, the format of the axis labels gets determined automatically. If " "you want to do this yourself, use this option with the same %lf arguments " "you know from the PRINT and GPRINT commands." msgstr "" #: /var/www/html/cacti/include/global_form.php:702 msgid "Right Axis Formatter (--right-axis-formatter <formatname>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:707 msgid "" "When you setup the right axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where data is treated as numeric, " "\"timestamp\" where values are interpreted as UNIX timestamps (number of " "seconds since January 1970) and expressed using strftime format (default is " "\"%Y-%m-%d %H:%M:%S\"). See also --units-length and --right-axis-format. " "Finally \"duration\" where values are interpreted as duration in " "milliseconds. Formatting follows the rules of valstrfduration qualified " "PRINT/GPRINT." msgstr "" #: /var/www/html/cacti/include/global_form.php:710 msgid "Left Axis Formatter (--left-axis-formatter <formatname>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:715 msgid "" "When you setup the left axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where data is treated as numeric, " "\"timestamp\" where values are interpreted as UNIX timestamps (number of " "seconds since January 1970) and expressed using strftime format (default is " "\"%Y-%m-%d %H:%M:%S\"). See also --units-length. Finally \"duration\" " "where values are interpreted as duration in milliseconds. Formatting " "follows the rules of valstrfduration qualified PRINT/GPRINT." msgstr "" #: /var/www/html/cacti/include/global_form.php:718 msgid "Legend Options" msgstr "" #: /var/www/html/cacti/include/global_form.php:723 msgid "Auto Padding" msgstr "automatische Justage" #: /var/www/html/cacti/include/global_form.php:726 msgid "" "Pad text so that legend and graph data always line up. Note: this could " "cause graphs to take longer to render because of the larger overhead. Also " "Auto Padding may not be accurate on all types of graphs, consistent labeling " "usually helps." msgstr "" #: /var/www/html/cacti/include/global_form.php:729 msgid "Dynamic Labels (--dynamic-labels)" msgstr "" #: /var/www/html/cacti/include/global_form.php:732 msgid "Draw line markers as a line." msgstr "" #: /var/www/html/cacti/include/global_form.php:735 msgid "Force Rules Legend (--force-rules-legend)" msgstr "" #: /var/www/html/cacti/include/global_form.php:738 msgid "Force the generation of HRULE and VRULE legends." msgstr "" #: /var/www/html/cacti/include/global_form.php:741 msgid "Tab Width (--tabwidth <pixels>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:746 msgid "By default the tab-width is 40 pixels, use this option to change it." msgstr "" #: /var/www/html/cacti/include/global_form.php:749 msgid "Legend Position (--legend-position=<position>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:753 msgid "Place the legend at the given side of the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:756 msgid "Legend Direction (--legend-direction=<direction>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:760 msgid "Place the legend items in the given vertical order." msgstr "" #: /var/www/html/cacti/include/global_form.php:767 #: /var/www/html/cacti/lib/api_aggregate.php:1296 #: /var/www/html/cacti/lib/html.php:873 msgid "Graph Item Type" msgstr "Graph Element Typ" #: /var/www/html/cacti/include/global_form.php:771 msgid "How data for this item is represented visually on the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:786 msgid "The data source to use for this graph item." msgstr "" #: /var/www/html/cacti/include/global_form.php:793 msgid "The color to use for the legend." msgstr "Die Farbe, die für die Legende genutzt wird." #: /var/www/html/cacti/include/global_form.php:796 msgid "Opacity/Alpha Channel" msgstr "" #: /var/www/html/cacti/include/global_form.php:800 msgid "The opacity/alpha channel of the color." msgstr "" #: /var/www/html/cacti/include/global_form.php:803 #: /var/www/html/cacti/lib/rrd.php:2691 msgid "Consolidation Function" msgstr "Konsolidierungsfunktion" #: /var/www/html/cacti/include/global_form.php:807 msgid "How data for this item is represented statistically on the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:810 msgid "CDEF Function" msgstr "CDEF Funktion" #: /var/www/html/cacti/include/global_form.php:815 msgid "A CDEF (math) function to apply to this item on the graph or legend." msgstr "" #: /var/www/html/cacti/include/global_form.php:818 msgid "VDEF Function" msgstr "VDEF Funktion" #: /var/www/html/cacti/include/global_form.php:823 msgid "A VDEF (math) function to apply to this item on the graph legend." msgstr "" #: /var/www/html/cacti/include/global_form.php:826 msgid "Shift Data" msgstr "Nach links verschieben" #: /var/www/html/cacti/include/global_form.php:829 msgid "" "Offset your data on the time axis (x-axis) by the amount specified in the " "'value' field." msgstr "" #: /var/www/html/cacti/include/global_form.php:832 #: /var/www/html/cacti/lib/rrd.php:2661 /var/www/html/cacti/utilities.php:2392 msgid "Value" msgstr "Wert" #: /var/www/html/cacti/include/global_form.php:837 msgid "" "[HRULE|VRULE]: The value of the graph item.
    [TICK]: The fraction for " "the tick line.
    [SHIFT]: The time offset in seconds." msgstr "" #: /var/www/html/cacti/include/global_form.php:840 msgid "GPRINT Type" msgstr "GPRINT Typ" #: /var/www/html/cacti/include/global_form.php:844 msgid "" "If this graph item is a GPRINT, you can optionally choose another format " "here. You can define additional types under \"GPRINT Presets\"." msgstr "" #: /var/www/html/cacti/include/global_form.php:847 msgid "Text Alignment (TEXTALIGN)" msgstr "" #: /var/www/html/cacti/include/global_form.php:852 msgid "" "All subsequent legend line(s) will be aligned as given here. You may use " "this command multiple times in a single graph. This command does not " "produce tabular layout.
    Note: You may want to insert a " "<HR> on the preceding graph item.
    Note: A <" "HR> on this legend line will obsolete this setting!" msgstr "" #: /var/www/html/cacti/include/global_form.php:855 msgid "Text Format" msgstr "Text Format" #: /var/www/html/cacti/include/global_form.php:860 msgid "Text that will be displayed on the legend for this graph item." msgstr "" #: /var/www/html/cacti/include/global_form.php:863 msgid "Insert Hard Return" msgstr "Zeilenumbruch einfügen" #: /var/www/html/cacti/include/global_form.php:866 msgid "Forces the legend to the next line after this item." msgstr "" #: /var/www/html/cacti/include/global_form.php:869 msgid "Line Width (decimal)" msgstr "" #: /var/www/html/cacti/include/global_form.php:874 msgid "" "In case LINE was chosen, specify width of line here. You must include a " "decimal precision, for example 2.00" msgstr "" #: /var/www/html/cacti/include/global_form.php:877 msgid "Dashes (dashes[=on_s[,off_s[,on_s,off_s]...]])" msgstr "Striche (dashes[=on_s[,off_s[,on_s,off_s]...]])" #: /var/www/html/cacti/include/global_form.php:882 msgid "The dashes modifier enables dashed line style." msgstr "" #: /var/www/html/cacti/include/global_form.php:885 msgid "Dash Offset (dash-offset=offset)" msgstr "Strich-Abstand (dash-offset=Abstand)" #: /var/www/html/cacti/include/global_form.php:890 msgid "" "The dash-offset parameter specifies an offset into the pattern at which the " "stroke begins." msgstr "" #: /var/www/html/cacti/include/global_form.php:903 msgid "The name given to this graph template." msgstr "Der Name der Graph-Schablone." #: /var/www/html/cacti/include/global_form.php:910 #, fuzzy #| msgid "Multiple" msgid "Multiple Instances" msgstr "Vielfach" #: /var/www/html/cacti/include/global_form.php:911 msgid "" "Check this checkbox if there can be more than one Graph of this type per " "Device." msgstr "" #: /var/www/html/cacti/include/global_form.php:935 msgid "" "Enter a name for this graph item input, make sure it is something you " "recognize." msgstr "" #: /var/www/html/cacti/include/global_form.php:943 msgid "" "Enter a description for this graph item input to describe what this input is " "used for." msgstr "" #: /var/www/html/cacti/include/global_form.php:950 msgid "Field Type" msgstr "" #: /var/www/html/cacti/include/global_form.php:951 msgid "How data is to be represented on the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:974 msgid "General Device Options" msgstr "Allgemeine Zielsystem Optionen" #: /var/www/html/cacti/include/global_form.php:979 msgid "Give this host a meaningful description." msgstr "" #: /var/www/html/cacti/include/global_form.php:986 #: /var/www/html/cacti/include/global_form.php:1611 msgid "Fully qualified hostname or IP address for this device." msgstr "" #: /var/www/html/cacti/include/global_form.php:993 msgid "Poller Association" msgstr "" #: /var/www/html/cacti/include/global_form.php:1001 msgid "Device Site Association" msgstr "" #: /var/www/html/cacti/include/global_form.php:1002 msgid "What Site is this Device associated with." msgstr "" #: /var/www/html/cacti/include/global_form.php:1011 #, fuzzy msgid "" "Choose the Device Template to use to define the default Graph Templates and " "Data Queries associated with this Device." msgstr "Wählen Sie die Lokation für dieses Zeilsystem." #: /var/www/html/cacti/include/global_form.php:1018 msgid "Number of Collection Threads" msgstr "" #: /var/www/html/cacti/include/global_form.php:1019 msgid "" "The number of concurrent threads to use for polling this device. This " "applies to the Spine poller only." msgstr "" #: /var/www/html/cacti/include/global_form.php:1026 msgid "Disable Device" msgstr "Zielsystem deaktivieren" #: /var/www/html/cacti/include/global_form.php:1027 msgid "Check this box to disable all checks for this host." msgstr "" #: /var/www/html/cacti/include/global_form.php:1040 #: /var/www/html/cacti/include/global_form.php:1640 msgid "Choose the SNMP version for this device." msgstr "Wählen Sie die SNMP Version für dieses Zielsystem." #: /var/www/html/cacti/include/global_form.php:1048 #: /var/www/html/cacti/include/global_form.php:1648 msgid "SNMP Community" msgstr "SNMP Community" #: /var/www/html/cacti/include/global_form.php:1049 #: /var/www/html/cacti/include/global_form.php:1649 msgid "SNMP read community for this device." msgstr "SNMP Lese-Community für dieses Endgerät" #: /var/www/html/cacti/include/global_form.php:1068 msgid "SNMP v3 authentication pass phrase for this device." msgstr "" #: /var/www/html/cacti/include/global_form.php:1077 msgid "Choose the SNMPv3 authentication protocol." msgstr "" #: /var/www/html/cacti/include/global_form.php:1085 msgid "Choose the SNMPv3 privacy passphrase." msgstr "" #: /var/www/html/cacti/include/global_form.php:1094 msgid "Choose the SNMPv3 privacy protocol." msgstr "" #: /var/www/html/cacti/include/global_form.php:1101 msgid "SNMP Context (v3)" msgstr "" #: /var/www/html/cacti/include/global_form.php:1102 msgid "Enter the SNMP v3 context to use for this device." msgstr "" #: /var/www/html/cacti/include/global_form.php:1110 msgid "SNMP Engine ID (v3)" msgstr "" #: /var/www/html/cacti/include/global_form.php:1111 msgid "" "Enter the SNMP v3 Engine Id to use for this device. Leave this field empty " "to use the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "" #: /var/www/html/cacti/include/global_form.php:1120 msgid "Enter the UDP port number to use for SNMP (default is 161)." msgstr "" #: /var/www/html/cacti/include/global_form.php:1137 msgid "Maximum OIDs Per Get Request" msgstr "" #: /var/www/html/cacti/include/global_form.php:1146 msgid "Availability/Reachability Options" msgstr "Verfügbarkeits-/Erreichbarkeits-Optionen" #: /var/www/html/cacti/include/global_form.php:1150 #: /var/www/html/cacti/include/global_settings.php:571 msgid "Downed Device Detection" msgstr "Erkennung inaktiver Zielsysteme" #: /var/www/html/cacti/include/global_form.php:1151 #: /var/www/html/cacti/include/global_settings.php:572 msgid "" "The method Cacti will use to determine if a host is available for polling. " "
    NOTE: It is recommended that, at a minimum, SNMP always be selected." msgstr "" #: /var/www/html/cacti/include/global_form.php:1160 msgid "" "The type of ping packet to sent.
    NOTE: ICMP on Linux/UNIX requires " "root privileges." msgstr "" #: /var/www/html/cacti/include/global_form.php:1197 #: /var/www/html/cacti/include/global_form.php:1735 msgid "Additional Options" msgstr "Zusätzliche Einstellungen" #: /var/www/html/cacti/include/global_form.php:1201 #: /var/www/html/cacti/include/global_form.php:1740 #: /var/www/html/cacti/pollers.php:70 msgid "Notes" msgstr "" #: /var/www/html/cacti/include/global_form.php:1202 #: /var/www/html/cacti/include/global_form.php:1741 msgid "Enter notes to this host." msgstr "" #: /var/www/html/cacti/include/global_form.php:1209 #, fuzzy msgid "External ID" msgstr "Extern" #: /var/www/html/cacti/include/global_form.php:1210 msgid "External ID for linking Cacti data to external monitoring systems." msgstr "" #: /var/www/html/cacti/include/global_form.php:1232 msgid "A useful name for this host template." msgstr "" #: /var/www/html/cacti/include/global_form.php:1252 msgid "A name for this data query." msgstr "Der Name für diese Datenabfrage." #: /var/www/html/cacti/include/global_form.php:1260 msgid "A description for this data query." msgstr "" #: /var/www/html/cacti/include/global_form.php:1267 msgid "XML Path" msgstr "XML Pfad" #: /var/www/html/cacti/include/global_form.php:1268 msgid "" "The full path to the XML file containing definitions for this data query." msgstr "" #: /var/www/html/cacti/include/global_form.php:1277 msgid "" "Choose the input method for this Data Query. This input method defines how " "data is collected for each Device associated with the Data Query." msgstr "" #: /var/www/html/cacti/include/global_form.php:1296 msgid "" "Choose the Graph Template to use for this Data Query Graph Template item." msgstr "" #: /var/www/html/cacti/include/global_form.php:1322 msgid "A name for this associated graph." msgstr "Der Name für dieses zugeordnete Diagramm." #: /var/www/html/cacti/include/global_form.php:1350 msgid "A useful name for this graph tree." msgstr "Ein hilfreicher Name für diesen Diagrammbaum." #: /var/www/html/cacti/include/global_form.php:1357 #: /var/www/html/cacti/include/global_form.php:2238 #: /var/www/html/cacti/lib/api_automation.php:1365 #: /var/www/html/cacti/tree.php:1305 msgid "Sorting Type" msgstr "Art der Sortierung" #: /var/www/html/cacti/include/global_form.php:1358 #: /var/www/html/cacti/include/global_form.php:2239 msgid "Choose how items in this tree will be sorted." msgstr "Wählen Sie die Sortierfolge der Diagramm-Baum Elemente." #: /var/www/html/cacti/include/global_form.php:1364 msgid "Publish" msgstr "" #: /var/www/html/cacti/include/global_form.php:1365 msgid "Should this Tree be published for users to access?" msgstr "" #: /var/www/html/cacti/include/global_form.php:1400 msgid "An Email Address where the User can be reached." msgstr "" #: /var/www/html/cacti/include/global_form.php:1408 msgid "" "Enter the password for this user twice. Remember that passwords are case " "sensitive!" msgstr "" "Geben Sie das Kennwort für diesen Benutzer zur Bestätigung zweimal ein. " "Denken Sie daran, dass Passwörter Groß-/Kleinschreibung beachtet werden!" #: /var/www/html/cacti/include/global_form.php:1416 #: /var/www/html/cacti/user_group_admin.php:88 msgid "Determines if user is able to login." msgstr "Bestimmt, ob der Benutzer sich anmelden kann." #: /var/www/html/cacti/include/global_form.php:1422 #: /var/www/html/cacti/tree.php:1585 msgid "Locked" msgstr "" #: /var/www/html/cacti/include/global_form.php:1423 msgid "Determines if the user account is locked." msgstr "" #: /var/www/html/cacti/include/global_form.php:1428 msgid "Account Options" msgstr "Optionen für das Benutzerkonto" #: /var/www/html/cacti/include/global_form.php:1430 msgid "Set any user account specific options here." msgstr "" #: /var/www/html/cacti/include/global_form.php:1434 msgid "Must Change Password at Next Login" msgstr "" #: /var/www/html/cacti/include/global_form.php:1446 msgid "Maintain Custom Graph and User Settings" msgstr "" #: /var/www/html/cacti/include/global_form.php:1453 msgid "Graph Options" msgstr "Graph-Optionen" #: /var/www/html/cacti/include/global_form.php:1455 msgid "Set any graph specific options here." msgstr "" #: /var/www/html/cacti/include/global_form.php:1459 msgid "User Has Rights to Tree View" msgstr "Benutzer hat das Recht die Baum-Ansicht aufzurufen" #: /var/www/html/cacti/include/global_form.php:1465 msgid "User Has Rights to List View" msgstr "Benutzer hat das Recht die Listen-Ansicht aufzurufen" #: /var/www/html/cacti/include/global_form.php:1471 msgid "User Has Rights to Preview View" msgstr "Benutzer hat das Recht die Vorschau-Ansicht aufzurufen" #: /var/www/html/cacti/include/global_form.php:1478 #: /var/www/html/cacti/user_group_admin.php:130 msgid "Login Options" msgstr "Login Optionen" #: /var/www/html/cacti/include/global_form.php:1481 msgid "What to do when this user logs in." msgstr "Was passieren soll, wenn der Benutzer sich einloggt." #: /var/www/html/cacti/include/global_form.php:1486 msgid "Show the page that user pointed their browser to." msgstr "" #: /var/www/html/cacti/include/global_form.php:1490 msgid "Show the default console screen." msgstr "" #: /var/www/html/cacti/include/global_form.php:1494 msgid "Show the default graph screen." msgstr "" #: /var/www/html/cacti/include/global_form.php:1500 #: /var/www/html/cacti/utilities.php:772 msgid "Authentication Realm" msgstr "Berechtigungsbereich" #: /var/www/html/cacti/include/global_form.php:1501 msgid "" "Only used if you have LDAP or Web Basic Authentication enabled. Changing " "this to a non-enabled realm will effectively disable the user." msgstr "" #: /var/www/html/cacti/include/global_form.php:1556 msgid "Import Template from Local File" msgstr "Schablonenimport aus einer lokalen Datei" #: /var/www/html/cacti/include/global_form.php:1557 msgid "" "If the XML file containing template data is located on your local machine, " "select it here." msgstr "" "Wenn die XML Datei für diese Schablone auf Ihrem lokalen System vorhanden " "ist, wählen Sie es bitte hier aus." #: /var/www/html/cacti/include/global_form.php:1562 msgid "Import Template from Text" msgstr "Schablonenimport durch Texteingabe" #: /var/www/html/cacti/include/global_form.php:1563 msgid "" "If you have the XML file containing template data as text, you can paste it " "into this box to import it." msgstr "" "Wenn die XML Datei für diese Schablone als Text vorliegt, dann können Sie es " "in die Eingabebox einfügen." #: /var/www/html/cacti/include/global_form.php:1571 msgid "Preview Import Only" msgstr "" #: /var/www/html/cacti/include/global_form.php:1573 msgid "" "If checked, Cacti will not import the template, but rather compare the " "imported Template to the existing Template data. If you are acceptable of " "the change, you can them import." msgstr "" #: /var/www/html/cacti/include/global_form.php:1578 msgid "Remove Orphaned Graph Items" msgstr "" #: /var/www/html/cacti/include/global_form.php:1580 msgid "" "If checked, Cacti will delete any Graph Items from both the Graph Template " "and associated Graphs that are not included in the imported Graph Template." msgstr "" #: /var/www/html/cacti/include/global_form.php:1597 msgid "General SNMP Entity Options" msgstr "" #: /var/www/html/cacti/include/global_form.php:1603 msgid "Give this SNMP entity a meaningful description." msgstr "" #: /var/www/html/cacti/include/global_form.php:1618 msgid "Disable SNMP Notification Receiver" msgstr "" #: /var/www/html/cacti/include/global_form.php:1619 msgid "" "Check this box if you temporary do not want to send SNMP notifications to " "this host." msgstr "" #: /var/www/html/cacti/include/global_form.php:1626 msgid "Maximum Log Size" msgstr "Maximale Größe für das Log" #: /var/www/html/cacti/include/global_form.php:1627 msgid "" "Maximum number of day's notification log entries for this receiver need to " "be stored." msgstr "" #: /var/www/html/cacti/include/global_form.php:1667 msgid "SNMP Auth Password (v3)" msgstr "" #: /var/www/html/cacti/include/global_form.php:1668 msgid "SNMP v3 user password for this device." msgstr "" #: /var/www/html/cacti/include/global_form.php:1677 msgid "" "Choose the SNMPv3 Authorization Protocol.
    Note: SHA authentication " "support is only available if you have OpenSSL installed." msgstr "" #: /var/www/html/cacti/include/global_form.php:1684 msgid "SNMP Privacy Password (v3)" msgstr "" #: /var/www/html/cacti/include/global_form.php:1694 msgid "" "Choose the SNMPv3 Privacy Protocol.
    Note: DES/AES encryption support is " "only available if you have OpenSSL installed." msgstr "" #: /var/www/html/cacti/include/global_form.php:1700 msgid "SNMP Engine ID" msgstr "" #: /var/www/html/cacti/include/global_form.php:1701 msgid "" "Defines the unique SNMP Engine ID to identify this peer. Following format " "will be recommended:
    FlexibleLength+Enterprise(8000) + IANA-Cacti(5d75) + " "MAC-Following(03) + YOUR-MAC-ADDRESS(e.g.:D89D67287B00).
    Per default the " "locally administrated MAC 02-FF-FF-FF-FF-FF will be used." msgstr "" #: /var/www/html/cacti/include/global_form.php:1710 msgid "The UDP port to be used for SNMP traps. Typically, 162." msgstr "" #: /var/www/html/cacti/include/global_form.php:1726 msgid "SNMP Message Type" msgstr "" #: /var/www/html/cacti/include/global_form.php:1727 msgid "" "SNMP traps are always unacknowledged. To send out acknowledged SNMP " "notifications, formally called \"INFORMS\", SNMPv2 or above will be required." msgstr "" #: /var/www/html/cacti/include/global_form.php:1760 msgid "The new Title of the aggregated Graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:1767 #: /var/www/html/cacti/include/global_form.php:1846 #: /var/www/html/cacti/include/global_form.php:1944 msgid "Prefix" msgstr "" #: /var/www/html/cacti/include/global_form.php:1768 msgid "A Prefix for all GPRINT lines to distinguish e.g. different hosts." msgstr "" #: /var/www/html/cacti/include/global_form.php:1776 #: /var/www/html/cacti/include/global_form.php:1855 #: /var/www/html/cacti/include/global_form.php:1953 msgid "" "Use this Option to create e.g. STACKed graphs.
    AREA/STACK: 1st graph " "keeps AREA/STACK items, others convert to STACK
    LINE1: all items convert " "to LINE1 items
    LINE2: all items convert to LINE2 items
    LINE3: all " "items convert to LINE3 items" msgstr "" #: /var/www/html/cacti/include/global_form.php:1783 #: /var/www/html/cacti/include/global_form.php:1862 #: /var/www/html/cacti/include/global_form.php:1960 msgid "Totaling" msgstr "" #: /var/www/html/cacti/include/global_form.php:1784 #: /var/www/html/cacti/include/global_form.php:1863 #: /var/www/html/cacti/include/global_form.php:1961 msgid "" "Please check those Items that shall be totaled in the \"Total\" column, when " "selecting any totaling option here." msgstr "" #: /var/www/html/cacti/include/global_form.php:1791 #: /var/www/html/cacti/include/global_form.php:1871 #: /var/www/html/cacti/include/global_form.php:1969 msgid "Total Type" msgstr "" #: /var/www/html/cacti/include/global_form.php:1792 #: /var/www/html/cacti/include/global_form.php:1872 #: /var/www/html/cacti/include/global_form.php:1970 msgid "Which type of totaling shall be performed." msgstr "" #: /var/www/html/cacti/include/global_form.php:1799 #: /var/www/html/cacti/include/global_form.php:1880 #: /var/www/html/cacti/include/global_form.php:1978 msgid "Prefix for GPRINT Totals" msgstr "" #: /var/www/html/cacti/include/global_form.php:1800 #: /var/www/html/cacti/include/global_form.php:1881 #: /var/www/html/cacti/include/global_form.php:1979 msgid "A Prefix for all totaling GPRINT lines." msgstr "" #: /var/www/html/cacti/include/global_form.php:1807 #: /var/www/html/cacti/include/global_form.php:1888 #: /var/www/html/cacti/include/global_form.php:1986 msgid "Reorder Type" msgstr "" #: /var/www/html/cacti/include/global_form.php:1808 #: /var/www/html/cacti/include/global_form.php:1889 #: /var/www/html/cacti/include/global_form.php:1987 msgid "Reordering of Graphs." msgstr "" #: /var/www/html/cacti/include/global_form.php:1828 msgid "Please name this Aggregate Graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:1835 msgid "Propagation Enabled" msgstr "" #: /var/www/html/cacti/include/global_form.php:1836 msgid "Is this to carry the template?" msgstr "" #: /var/www/html/cacti/include/global_form.php:1842 msgid "Aggregate Graph Settings" msgstr "" #: /var/www/html/cacti/include/global_form.php:1847 #: /var/www/html/cacti/include/global_form.php:1945 msgid "" "A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may " "use both Host as well as Data Query replacement variables in this prefix." msgstr "" #: /var/www/html/cacti/include/global_form.php:1923 msgid "Aggregate Template Name" msgstr "" #: /var/www/html/cacti/include/global_form.php:1924 msgid "Please name this Aggregate Template." msgstr "" #: /var/www/html/cacti/include/global_form.php:1931 msgid "Source Graph Template" msgstr "" #: /var/www/html/cacti/include/global_form.php:1932 msgid "The Graph Template that this Aggregate Template is based upon." msgstr "" #: /var/www/html/cacti/include/global_form.php:1940 msgid "Aggregate Template Settings" msgstr "" #: /var/www/html/cacti/include/global_form.php:2010 msgid "The name of this Color Template." msgstr "Der Name dieser Farbvorlage" #: /var/www/html/cacti/include/global_form.php:2021 msgid "A nice Color" msgstr "" #: /var/www/html/cacti/include/global_form.php:2031 msgid "A useful name for this Template." msgstr "" #: /var/www/html/cacti/include/global_form.php:2045 #: /var/www/html/cacti/include/global_form.php:2087 #: /var/www/html/cacti/lib/api_automation.php:1239 #: /var/www/html/cacti/lib/api_automation.php:1301 msgid "Operation" msgstr "" #: /var/www/html/cacti/include/global_form.php:2046 #: /var/www/html/cacti/include/global_form.php:2088 msgid "Logical operation to combine rules." msgstr "" #: /var/www/html/cacti/include/global_form.php:2054 #: /var/www/html/cacti/include/global_form.php:2096 msgid "The Field Name that shall be used for this Rule Item." msgstr "" #: /var/www/html/cacti/include/global_form.php:2062 #: /var/www/html/cacti/include/global_form.php:2104 msgid "Operator." msgstr "" #: /var/www/html/cacti/include/global_form.php:2069 #: /var/www/html/cacti/include/global_form.php:2111 #: /var/www/html/cacti/include/global_form.php:2254 msgid "Matching Pattern" msgstr "" #: /var/www/html/cacti/include/global_form.php:2070 #: /var/www/html/cacti/include/global_form.php:2112 msgid "The Pattern to be matched against." msgstr "" #: /var/www/html/cacti/include/global_form.php:2078 #: /var/www/html/cacti/include/global_form.php:2120 #: /var/www/html/cacti/include/global_form.php:2271 msgid "Sequence." msgstr "" #: /var/www/html/cacti/include/global_form.php:2129 #: /var/www/html/cacti/include/global_form.php:2174 msgid "A useful name for this Rule." msgstr "" #: /var/www/html/cacti/include/global_form.php:2137 msgid "Choose a Data Query to apply to this rule." msgstr "" #: /var/www/html/cacti/include/global_form.php:2148 msgid "Choose any of the available Graph Types to apply to this rule." msgstr "" #: /var/www/html/cacti/include/global_form.php:2161 #: /var/www/html/cacti/include/global_form.php:2218 msgid "Enable Rule" msgstr "" #: /var/www/html/cacti/include/global_form.php:2162 #: /var/www/html/cacti/include/global_form.php:2219 msgid "Check this box to enable this rule." msgstr "" #: /var/www/html/cacti/include/global_form.php:2182 msgid "Choose a Tree for the new Tree Items." msgstr "" #: /var/www/html/cacti/include/global_form.php:2189 msgid "Leaf Item Type" msgstr "" #: /var/www/html/cacti/include/global_form.php:2190 msgid "The Item Type that shall be dynamically added to the tree." msgstr "" #: /var/www/html/cacti/include/global_form.php:2197 msgid "Graph Grouping Style" msgstr "Gruppierungsstil für Diagramme" #: /var/www/html/cacti/include/global_form.php:2198 msgid "" "Choose how graphs are grouped when drawn for this particular host on the " "tree." msgstr "" #: /var/www/html/cacti/include/global_form.php:2208 msgid "Optional: Sub-Tree Item" msgstr "" #: /var/www/html/cacti/include/global_form.php:2209 msgid "" "Choose a Sub-Tree Item to hook in.
    Make sure, that it is still there when " "this rule is executed!" msgstr "" #: /var/www/html/cacti/include/global_form.php:2229 msgid "Header Type" msgstr "" #: /var/www/html/cacti/include/global_form.php:2230 msgid "Choose an Object to build a new Sub-header." msgstr "" #: /var/www/html/cacti/include/global_form.php:2246 msgid "Propagate Changes" msgstr "Weitergabe der Änderungen" #: /var/www/html/cacti/include/global_form.php:2247 msgid "" "Propagate all options on this form (except for 'Title') to all child " "'Header' items." msgstr "" "Alle Optionen (ohne 'Titel') werden an alle untergeordnete 'Überschrift' " "Elemente weitergegeben." #: /var/www/html/cacti/include/global_form.php:2255 msgid "" "The String Pattern (Regular Expression) to match against.
    Enclosing '/' " "must NOT be provided!" msgstr "" #: /var/www/html/cacti/include/global_form.php:2262 msgid "Replacement Pattern" msgstr "" #: /var/www/html/cacti/include/global_form.php:2263 msgid "" "The Replacement String Pattern for use as a Tree Header.
    Refer to a Match " "by e.g. \\${1} for the first match!" msgstr "" #: /var/www/html/cacti/include/global_languages.php:590 msgid " T" msgstr "" #: /var/www/html/cacti/include/global_languages.php:592 msgid " G" msgstr "" #: /var/www/html/cacti/include/global_languages.php:594 msgid " M" msgstr "" #: /var/www/html/cacti/include/global_languages.php:596 msgid " K" msgstr "" #: /var/www/html/cacti/include/global_session.php:92 #: /var/www/html/cacti/lib/html_filter.php:66 #, fuzzy msgid "Enter a search term" msgstr "Geben Sie das Bundesland ein" #: /var/www/html/cacti/include/global_session.php:93 #, fuzzy msgid "Enter a regular expression" msgstr "Regulärer Ausdruck Treffer" #: /var/www/html/cacti/include/global_session.php:94 msgid "No file selected" msgstr "" #: /var/www/html/cacti/include/global_session.php:95 #: /var/www/html/cacti/lib/html.php:294 msgid "Time Graph View" msgstr "" #: /var/www/html/cacti/include/global_session.php:97 #: /var/www/html/cacti/include/global_session.php:109 msgid "SpikeKill Results" msgstr "" #: /var/www/html/cacti/include/global_session.php:99 msgid "Click to view just this Graph in Realtime" msgstr "" #: /var/www/html/cacti/include/global_session.php:100 msgid "Click again to take this Graph out of Realtime" msgstr "" #: /var/www/html/cacti/include/global_session.php:104 msgid "Cacti Home" msgstr "" #: /var/www/html/cacti/include/global_session.php:105 msgid "Cacti Project Page" msgstr "" #: /var/www/html/cacti/include/global_session.php:106 msgid "Cacti Community Forum" msgstr "" #: /var/www/html/cacti/include/global_session.php:107 msgid "Report a bug" msgstr "Einen Fehler melden" #: /var/www/html/cacti/include/global_session.php:110 msgid "Click to Show/Hide Filter" msgstr "" #: /var/www/html/cacti/include/global_session.php:111 msgid "Clear Current Filter" msgstr "" #: /var/www/html/cacti/include/global_settings.php:38 #: /var/www/html/cacti/include/global_settings.php:872 #: /var/www/html/cacti/include/global_settings.php:976 #: /var/www/html/cacti/include/global_settings.php:1592 #: /var/www/html/cacti/managers.php:39 /var/www/html/cacti/user_admin.php:1935 #: /var/www/html/cacti/user_group_admin.php:1664 msgid "General" msgstr "Allgemein" #: /var/www/html/cacti/include/global_settings.php:39 msgid "Paths" msgstr "Pfade" #: /var/www/html/cacti/include/global_settings.php:40 msgid "Device Defaults" msgstr "" #: /var/www/html/cacti/include/global_settings.php:41 #: /var/www/html/cacti/include/global_settings.php:466 msgid "Poller" msgstr "Poller" #: /var/www/html/cacti/include/global_settings.php:42 msgid "Data Storage" msgstr "" #: /var/www/html/cacti/include/global_settings.php:43 msgid "Visual" msgstr "" #: /var/www/html/cacti/include/global_settings.php:44 #: /var/www/html/cacti/lib/functions.php:3854 #: /var/www/html/cacti/lib/functions.php:3859 msgid "Authentication" msgstr "LDAP Authentifizierung" #: /var/www/html/cacti/include/global_settings.php:45 msgid "Data Source Statistics" msgstr "" #: /var/www/html/cacti/include/global_settings.php:46 msgid "Performance" msgstr "" #: /var/www/html/cacti/include/global_settings.php:47 msgid "Spikes" msgstr "" #: /var/www/html/cacti/include/global_settings.php:48 msgid "Mail/Reporting/DNS" msgstr "" #: /var/www/html/cacti/include/global_settings.php:52 msgid "Time Spanning/Shifting" msgstr "" #: /var/www/html/cacti/include/global_settings.php:53 msgid "Graph Thumbnail Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:54 msgid "Tree Settings" msgstr "Baum Einstellungen" #: /var/www/html/cacti/include/global_settings.php:55 msgid "Graph Fonts" msgstr "Schriftart für Diagramme" #: /var/www/html/cacti/include/global_settings.php:94 msgid "Required Tool Paths" msgstr "Erforderliche Tool-Pfad" #: /var/www/html/cacti/include/global_settings.php:99 msgid "snmpwalk Binary Path" msgstr "snmpwalk-Datei Pfad" #: /var/www/html/cacti/include/global_settings.php:100 msgid "The path to your snmpwalk binary." msgstr "Der Pfad zur ausführbaren snmpwalk-Datei" #: /var/www/html/cacti/include/global_settings.php:105 msgid "snmpget Binary Path" msgstr "" #: /var/www/html/cacti/include/global_settings.php:106 msgid "The path to your snmpget binary." msgstr "" #: /var/www/html/cacti/include/global_settings.php:111 msgid "snmpbulkwalk Binary Path" msgstr "" #: /var/www/html/cacti/include/global_settings.php:112 msgid "The path to your snmpbulkwalk binary." msgstr "" #: /var/www/html/cacti/include/global_settings.php:117 msgid "snmpgetnext Binary Path" msgstr "" #: /var/www/html/cacti/include/global_settings.php:118 msgid "The path to your snmpgetnext binary." msgstr "" #: /var/www/html/cacti/include/global_settings.php:123 msgid "snmptrap Binary Path" msgstr "" #: /var/www/html/cacti/include/global_settings.php:124 msgid "The path to your snmptrap binary." msgstr "" #: /var/www/html/cacti/include/global_settings.php:129 msgid "RRDtool Binary Path" msgstr "" #: /var/www/html/cacti/include/global_settings.php:130 msgid "The path to the rrdtool binary." msgstr "" #: /var/www/html/cacti/include/global_settings.php:135 msgid "PHP Binary Path" msgstr "" #: /var/www/html/cacti/include/global_settings.php:136 msgid "" "The path to your PHP binary file (may require a php recompile to get this " "file)." msgstr "" #: /var/www/html/cacti/include/global_settings.php:141 msgid "Logging" msgstr "Logging" #: /var/www/html/cacti/include/global_settings.php:146 msgid "Cacti Log Path" msgstr "" #: /var/www/html/cacti/include/global_settings.php:147 msgid "" "The path to your Cacti log file (if blank, defaults to /log/" "cacti.log)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:153 msgid "Rotate the Cacti Log" msgstr "" #: /var/www/html/cacti/include/global_settings.php:154 msgid "This option will rotate the Cacti Log periodically." msgstr "" #: /var/www/html/cacti/include/global_settings.php:159 msgid "Rotation Frequency" msgstr "" #: /var/www/html/cacti/include/global_settings.php:160 msgid "At what frequency would you like to rotate your logs?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:166 msgid "Log Retention" msgstr "" #: /var/www/html/cacti/include/global_settings.php:167 msgid "" "How many log files do you wish to retain? Use 0 to never remove any logs. " "(0-365)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:174 msgid "Alternate Poller Path" msgstr "Abweichender Poller Dateipfad" #: /var/www/html/cacti/include/global_settings.php:179 msgid "Spine Binary File Location" msgstr "" #: /var/www/html/cacti/include/global_settings.php:180 msgid "The path to Spine binary." msgstr "" #: /var/www/html/cacti/include/global_settings.php:185 msgid "Spine Config File Path" msgstr "" #: /var/www/html/cacti/include/global_settings.php:186 msgid "" "The path to Spine configuration file. By default, in the cwd of spine, or /" "etc if not specified." msgstr "" #: /var/www/html/cacti/include/global_settings.php:191 #: /var/www/html/cacti/lib/functions.php:2249 #: /var/www/html/cacti/rrdcleaner.php:296 msgid "RRD Cleaner" msgstr "" #: /var/www/html/cacti/include/global_settings.php:196 msgid "RRDfile Auto Clean" msgstr "" #: /var/www/html/cacti/include/global_settings.php:197 msgid "" "Automatically Delete, Archive, or Delete RRDfiles when removed from Cacti" msgstr "" #: /var/www/html/cacti/include/global_settings.php:202 msgid "RRDfile Auto Clean Method" msgstr "" #: /var/www/html/cacti/include/global_settings.php:203 msgid "The method used to Clean RRDfiles from Cacti after their deletion." msgstr "" #: /var/www/html/cacti/include/global_settings.php:209 msgid "Archive directory" msgstr "" #: /var/www/html/cacti/include/global_settings.php:210 msgid "" "This is the directory where RRDfiles are moved for " "Archive" msgstr "" #: /var/www/html/cacti/include/global_settings.php:218 msgid "Event Logging" msgstr "" #: /var/www/html/cacti/include/global_settings.php:223 msgid "Log Destination" msgstr "Ziel für Log" #: /var/www/html/cacti/include/global_settings.php:224 msgid "How will Cacti handle event logging." msgstr "" #: /var/www/html/cacti/include/global_settings.php:230 msgid "Web Events" msgstr "Web Ereignisse" #: /var/www/html/cacti/include/global_settings.php:231 msgid "What Cacti website messages should be placed in the log." msgstr "" #: /var/www/html/cacti/include/global_settings.php:236 msgid "SNMP Messages" msgstr "" #: /var/www/html/cacti/include/global_settings.php:240 msgid "Graph Syntax" msgstr "" #: /var/www/html/cacti/include/global_settings.php:244 msgid "Developer Mode" msgstr "" #: /var/www/html/cacti/include/global_settings.php:250 msgid "Log Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:255 msgid "Generic Log Level" msgstr "" #: /var/www/html/cacti/include/global_settings.php:256 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: /var/www/html/cacti/include/global_settings.php:262 msgid "Selective File Debug" msgstr "" #: /var/www/html/cacti/include/global_settings.php:263 msgid "" "Select which files you wish to place in Debug mode regardless of the Generic " "Log Level setting. Any files selected will be treated as they are in Debug " "mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:269 msgid "Selective Plugin Debug" msgstr "" #: /var/www/html/cacti/include/global_settings.php:270 msgid "" "Select which Plugins you wish to place in Debug mode regardless of the " "Generic Log Level setting. Any files used by this plugin will be treated as " "they are in Debug mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:276 msgid "Selective Device Debug" msgstr "" #: /var/www/html/cacti/include/global_settings.php:277 msgid "" "A comma delimited list of Device ID's that you wish to be in Debug mode " "during data collection. This Debug level is only in place during the Cacti " "polling process." msgstr "" #: /var/www/html/cacti/include/global_settings.php:284 msgid "Poller Syslog/Eventlog Selection" msgstr "" #: /var/www/html/cacti/include/global_settings.php:285 msgid "" "If you are using the Syslog/Eventlog, What Cacti poller messages should be " "placed in the Syslog/Eventlog." msgstr "" #: /var/www/html/cacti/include/global_settings.php:290 msgid "Statistics" msgstr "" #: /var/www/html/cacti/include/global_settings.php:294 #: /var/www/html/cacti/lib/clog_webapi.php:428 #: /var/www/html/cacti/utilities.php:1060 msgid "Warnings" msgstr "Warnungen" #: /var/www/html/cacti/include/global_settings.php:298 #: /var/www/html/cacti/lib/clog_webapi.php:429 #: /var/www/html/cacti/utilities.php:1061 msgid "Errors" msgstr "Fehler" #: /var/www/html/cacti/include/global_settings.php:304 msgid "Other Defaults" msgstr "" #: /var/www/html/cacti/include/global_settings.php:309 msgid "Has Graphs/Data Sources Checked" msgstr "" #: /var/www/html/cacti/include/global_settings.php:310 msgid "Should the Has Graphs and Has Data Sources be Checked by Default." msgstr "" #: /var/www/html/cacti/include/global_settings.php:315 msgid "Graph Template Image Format" msgstr "" #: /var/www/html/cacti/include/global_settings.php:316 msgid "The default Image Format to be used for all new Graph Templates." msgstr "" #: /var/www/html/cacti/include/global_settings.php:322 msgid "Graph Template Height" msgstr "" #: /var/www/html/cacti/include/global_settings.php:323 #: /var/www/html/cacti/include/global_settings.php:331 msgid "The default Graph Width to be used for all new Graph Templates." msgstr "" #: /var/www/html/cacti/include/global_settings.php:330 msgid "Graph Template Width" msgstr "" #: /var/www/html/cacti/include/global_settings.php:338 msgid "Language Support" msgstr "Sprachenunterstützung" #: /var/www/html/cacti/include/global_settings.php:339 msgid "" "Choose 'enabled' to allow the localization of Cacti. The strict mode " "requires that the requested language will also be supported by all plugins " "being installed at your system. If that's not the fact everything will be " "displayed in English." msgstr "" #: /var/www/html/cacti/include/global_settings.php:345 msgid "Language" msgstr "" #: /var/www/html/cacti/include/global_settings.php:346 msgid "Default language for this system." msgstr "Standardsprache für diese Installation." #: /var/www/html/cacti/include/global_settings.php:352 msgid "Auto Language Detection" msgstr "Automatische Sprachenerkennung" #: /var/www/html/cacti/include/global_settings.php:353 msgid "" "Allow to automatically determine the 'default' language of the user and " "provide it at login time if that language is supported by Cacti. If " "disabled, the default language will be in force until the user elects " "another language." msgstr "" #: /var/www/html/cacti/include/global_settings.php:359 #: /var/www/html/cacti/include/global_settings.php:1839 msgid "Date Display Format" msgstr "Anzeigeformat des Datums" #: /var/www/html/cacti/include/global_settings.php:360 #, fuzzy msgid "The System default date format to use in Cacti." msgstr "Das Datumsformat, welches für die Graphen genutzt werden soll" #: /var/www/html/cacti/include/global_settings.php:366 #: /var/www/html/cacti/include/global_settings.php:1846 #, fuzzy msgid "Date Separator" msgstr "Datums-Trennzeichen des Graphen" #: /var/www/html/cacti/include/global_settings.php:367 #, fuzzy msgid "The System default date separator to be used in Cacti." msgstr "Das Datums-Trennzeichen, welches für die Graphen genutzt werden soll" #: /var/www/html/cacti/include/global_settings.php:373 msgid "Other Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:378 #: /var/www/html/cacti/utilities.php:269 msgid "RRDtool Version" msgstr "" #: /var/www/html/cacti/include/global_settings.php:379 msgid "The version of RRDtool that you have installed." msgstr "" #: /var/www/html/cacti/include/global_settings.php:385 msgid "Graph Permission Method" msgstr "" #: /var/www/html/cacti/include/global_settings.php:386 msgid "" "There are two methods for determining a User's Graph Permissions. The first " "is 'Permissive'. Under the 'Permissive' setting, a User only needs access " "to either the Graph, Device or Graph Template to gain access to the Graphs " "that apply to them. Under 'Restrictive', the User must have access to the " "Graph, the Device, and the Graph Template to gain access to the Graph." msgstr "" #: /var/www/html/cacti/include/global_settings.php:389 msgid "Permissive" msgstr "" #: /var/www/html/cacti/include/global_settings.php:389 msgid "Restrictive" msgstr "" #: /var/www/html/cacti/include/global_settings.php:393 msgid "Graph/Data Source Creation Method" msgstr "" #: /var/www/html/cacti/include/global_settings.php:394 msgid "" "If set to Simple, Graphs and Data Sources can only be created from New " "Graphs. If Advanced, legacy Graph and Data Source creation is supported." msgstr "" #: /var/www/html/cacti/include/global_settings.php:396 msgid "Advanced" msgstr "" #: /var/www/html/cacti/include/global_settings.php:396 msgid "Simple" msgstr "" #: /var/www/html/cacti/include/global_settings.php:399 msgid "Show Form/Setting Help Inline" msgstr "" #: /var/www/html/cacti/include/global_settings.php:400 msgid "" "When checked, Form and Setting Help will be show inline. Otherwise it will " "be presented when hovering over the help button." msgstr "" #: /var/www/html/cacti/include/global_settings.php:405 msgid "Deletion Verification" msgstr "Löschungsbestätigung" #: /var/www/html/cacti/include/global_settings.php:406 msgid "Prompt user before item deletion." msgstr "" #: /var/www/html/cacti/include/global_settings.php:411 msgid "Hide Cacti Console" msgstr "" #: /var/www/html/cacti/include/global_settings.php:412 msgid "" "For use with Cacti's External Link Support. Using this setting, you can " "replace the Cacti Console with your own page." msgstr "" #: /var/www/html/cacti/include/global_settings.php:418 msgid "Enable Drag-N-Drop" msgstr "" #: /var/www/html/cacti/include/global_settings.php:419 msgid "" "Some of Cacti's interfaces support Drag-N-Drop. If checked this option will " "be enabled. Note: For visually impaired user, this option may be disabled." msgstr "" #: /var/www/html/cacti/include/global_settings.php:424 msgid "Force Connections over HTTPS" msgstr "" #: /var/www/html/cacti/include/global_settings.php:425 msgid "" "When checked, any attempts to access Cacti will be redirected to HTTPS to " "ensure high security." msgstr "" #: /var/www/html/cacti/include/global_settings.php:436 msgid "Enable Automatic Graph Creation" msgstr "" #: /var/www/html/cacti/include/global_settings.php:437 msgid "" "When disabled, Cacti Automation will not actively create any Graph.This is " "useful when adjusting Host settings so as to avoid creating new Graphs each " "time you save an object. Invoking Automation Rules manually will still be " "possible." msgstr "" #: /var/www/html/cacti/include/global_settings.php:444 msgid "Enable Automatic Tree Item Creation" msgstr "" #: /var/www/html/cacti/include/global_settings.php:445 msgid "" "When disabled, Cacti Automation will not actively create any Tree Item.This " "is useful when adjusting Host or Graph settings so as to avoid creating new " "Tree Entries each time you save an object. Invoking Rules manually will " "still be possible." msgstr "" #: /var/www/html/cacti/include/global_settings.php:453 #, fuzzy msgid "General Defaults" msgstr "Basis Einstellungen" #: /var/www/html/cacti/include/global_settings.php:459 msgid "The default Site for all new Devices." msgstr "" #: /var/www/html/cacti/include/global_settings.php:467 msgid "The default Poller for all new Devices." msgstr "" #: /var/www/html/cacti/include/global_settings.php:474 msgid "Device Threads" msgstr "" #: /var/www/html/cacti/include/global_settings.php:475 msgid "" "The default number of Device Threads. This is only applicable when using " "the spine Data Collector." msgstr "" #: /var/www/html/cacti/include/global_settings.php:481 msgid "Re-index Method for Data Queries" msgstr "" #: /var/www/html/cacti/include/global_settings.php:482 msgid "The default Re-index Method to use for all Data Queries." msgstr "" #: /var/www/html/cacti/include/global_settings.php:488 msgid "SNMP Defaults" msgstr "SNMP Standardwerte" #: /var/www/html/cacti/include/global_settings.php:494 msgid "Default SNMP version for all new hosts." msgstr "" #: /var/www/html/cacti/include/global_settings.php:501 msgid "Default SNMP read community for all new hosts." msgstr "" #: /var/www/html/cacti/include/global_settings.php:507 msgid "Username (v3)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:508 msgid "The SNMP v3 Username for polling hosts." msgstr "" #: /var/www/html/cacti/include/global_settings.php:514 msgid "Password (v3)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:515 msgid "The SNMP v3 Password for polling hosts." msgstr "" #: /var/www/html/cacti/include/global_settings.php:522 msgid "Auth Protocol (v3)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:529 msgid "Privacy Passphrase (v3)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:536 msgid "Privacy Protocol (v3)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:543 msgid "Default SNMP timeout in milli-seconds." msgstr "Standard SNMP Zeitfenster in Millisekunden." #: /var/www/html/cacti/include/global_settings.php:550 msgid "Port Number" msgstr "" #: /var/www/html/cacti/include/global_settings.php:551 msgid "Default UDP port to be used for SNMP Calls. Typically, 161." msgstr "" #: /var/www/html/cacti/include/global_settings.php:559 msgid "" "The number of times the SNMP poller will attempt to reach the host before " "failing." msgstr "" #: /var/www/html/cacti/include/global_settings.php:566 msgid "Availability/Reachability" msgstr "" #: /var/www/html/cacti/include/global_settings.php:578 msgid "Ping Type" msgstr "Ping Typ" #: /var/www/html/cacti/include/global_settings.php:579 msgid "" "The type of ping packet to send.
    NOTE: ICMP requires that the Cacti " "Service ID have root privileges in UNIX/Linux." msgstr "" #: /var/www/html/cacti/include/global_settings.php:586 msgid "" "When choosing either TCP or UDP Ping, which port should be checked for " "availability of the host prior to polling." msgstr "" #: /var/www/html/cacti/include/global_settings.php:602 msgid "The number of times Cacti will attempt to ping a host before failing." msgstr "" #: /var/www/html/cacti/include/global_settings.php:609 msgid "Up/Down Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:614 msgid "Failure Count" msgstr "Fehleranzahl" #: /var/www/html/cacti/include/global_settings.php:615 msgid "" "The number of polling intervals a host must be down before logging an error " "and reporting host as down." msgstr "" #: /var/www/html/cacti/include/global_settings.php:622 msgid "Recovery Count" msgstr "" #: /var/www/html/cacti/include/global_settings.php:623 msgid "" "The number of polling intervals a host must remain up before returning host " "to an up status and issuing a notice." msgstr "" #: /var/www/html/cacti/include/global_settings.php:632 msgid "Theme Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:637 #: /var/www/html/cacti/include/global_settings.php:800 #: /var/www/html/cacti/include/global_settings.php:1806 msgid "Theme" msgstr "" #: /var/www/html/cacti/include/global_settings.php:638 #: /var/www/html/cacti/include/global_settings.php:1807 #: /var/www/html/cacti/install/functions.php:440 msgid "Please select one of the available Themes to skin your Cacti with." msgstr "" #: /var/www/html/cacti/include/global_settings.php:644 msgid "Table Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:649 msgid "Rows Per Page" msgstr "Spalten per Seite" #: /var/www/html/cacti/include/global_settings.php:650 msgid "The default number of rows to display on for a table." msgstr "" #: /var/www/html/cacti/include/global_settings.php:656 msgid "Autocomplete Enabled" msgstr "" #: /var/www/html/cacti/include/global_settings.php:657 msgid "" "In very large systems, select lists can slow the user interface " "significantly. If this option is enabled, Cacti will use autocomplete " "callbacks to populate the select list systematically. Note: autocomplete is " "forcibly disabled on the Classic theme." msgstr "" #: /var/www/html/cacti/include/global_settings.php:665 msgid "Autocomplete Rows" msgstr "" #: /var/www/html/cacti/include/global_settings.php:666 msgid "" "The default number of rows to return from an autocomplete based select " "pattern match." msgstr "" #: /var/www/html/cacti/include/global_settings.php:672 msgid "Graph/Data Source/Data Query Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:677 msgid "Maximum Title Length" msgstr "Maximale Überschriftslänge" #: /var/www/html/cacti/include/global_settings.php:678 msgid "The maximum allowable Graph or Data Source titles." msgstr "" #: /var/www/html/cacti/include/global_settings.php:685 msgid "Data Source Field Length" msgstr "" #: /var/www/html/cacti/include/global_settings.php:686 msgid "The maximum Data Query field length." msgstr "" #: /var/www/html/cacti/include/global_settings.php:693 msgid "Graph Creation" msgstr "Graphen Erzeugung" #: /var/www/html/cacti/include/global_settings.php:698 msgid "Default Graph Type" msgstr "" #: /var/www/html/cacti/include/global_settings.php:699 msgid "When creating graphs, what Graph Type would you like pre-selected?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:702 msgid "All Types" msgstr "Alle Typen" #: /var/www/html/cacti/include/global_settings.php:702 msgid "By Template/Data Query" msgstr "" #: /var/www/html/cacti/include/global_settings.php:710 msgid "Default Log Tail Lines" msgstr "" #: /var/www/html/cacti/include/global_settings.php:711 msgid "Default number of lines of the Cacti log file to tail." msgstr "" #: /var/www/html/cacti/include/global_settings.php:717 msgid "Maximum number of rows per page" msgstr "" #: /var/www/html/cacti/include/global_settings.php:718 msgid "" "User defined number of lines for the CLOG to tail when selecting 'All lines'." msgstr "" #: /var/www/html/cacti/include/global_settings.php:725 msgid "Log Tail Refresh" msgstr "" #: /var/www/html/cacti/include/global_settings.php:726 msgid "How often do you want the Cacti log display to update." msgstr "" #: /var/www/html/cacti/include/global_settings.php:732 msgid "RRDtool Graph Watermark" msgstr "" #: /var/www/html/cacti/include/global_settings.php:737 msgid "Watermark Text" msgstr "" #: /var/www/html/cacti/include/global_settings.php:738 msgid "Text placed at the bottom center of every Graph." msgstr "" #: /var/www/html/cacti/include/global_settings.php:745 msgid "Log Viewer Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:750 msgid "Exclusion Regex" msgstr "" #: /var/www/html/cacti/include/global_settings.php:751 msgid "" "Any strings that match this regex will be excluded from the user display. " "For example, if you want to exclude all log lines that include the " "words 'Admin' or 'Login' you would type '(Admin || Login)'" msgstr "" #: /var/www/html/cacti/include/global_settings.php:758 msgid "Real-time Graphs" msgstr "" #: /var/www/html/cacti/include/global_settings.php:763 msgid "Enable Real-time Graphing" msgstr "" #: /var/www/html/cacti/include/global_settings.php:764 msgid "" "When an option is checked, users will be able to put Cacti into Real-time " "mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:770 msgid "This timespan you wish to see on the default graph." msgstr "" #: /var/www/html/cacti/include/global_settings.php:776 #: /var/www/html/cacti/utilities.php:1944 msgid "Refresh Interval" msgstr "" #: /var/www/html/cacti/include/global_settings.php:777 msgid "This is the time between graph updates." msgstr "" #: /var/www/html/cacti/include/global_settings.php:783 msgid "Cache Directory" msgstr "" #: /var/www/html/cacti/include/global_settings.php:784 msgid "" "This is the location, on the web server where the RRDfiles and PNG files " "will be cached. This cache will be managed by the poller. Make sure you " "have the correct read and write permissions on this folder" msgstr "" #: /var/www/html/cacti/include/global_settings.php:791 msgid "RRDtool Graph Font Control" msgstr "" #: /var/www/html/cacti/include/global_settings.php:796 msgid "Font Selection Method" msgstr "" #: /var/www/html/cacti/include/global_settings.php:797 msgid "How do you wish fonts to be handled by default?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:800 msgid "System" msgstr "System" #: /var/www/html/cacti/include/global_settings.php:803 msgid "Default Font" msgstr "" #: /var/www/html/cacti/include/global_settings.php:804 msgid "" "When not using Theme based font control, the Pangon font-config font name to " "use for all Graphs. Optionally, you may leave blank and control font " "settings on a per object basis." msgstr "" #: /var/www/html/cacti/include/global_settings.php:806 #: /var/www/html/cacti/include/global_settings.php:821 #: /var/www/html/cacti/include/global_settings.php:836 #: /var/www/html/cacti/include/global_settings.php:851 #: /var/www/html/cacti/include/global_settings.php:866 msgid "Enter Valid Font Config Value" msgstr "" #: /var/www/html/cacti/include/global_settings.php:810 #: /var/www/html/cacti/include/global_settings.php:1997 msgid "Title Font Size" msgstr "Überschrift Schriftgröße" #: /var/www/html/cacti/include/global_settings.php:811 #: /var/www/html/cacti/include/global_settings.php:1998 msgid "The size of the font used for Graph Titles" msgstr "Die Schriftgröße, die für die Diagrammüberschrift genutzt werden soll" #: /var/www/html/cacti/include/global_settings.php:818 msgid "Title Font Setting" msgstr "" #: /var/www/html/cacti/include/global_settings.php:819 msgid "" "The font to use for Graph Titles. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: /var/www/html/cacti/include/global_settings.php:825 #: /var/www/html/cacti/include/global_settings.php:2010 msgid "Legend Font Size" msgstr "Legenden Schriftgröße" #: /var/www/html/cacti/include/global_settings.php:826 #: /var/www/html/cacti/include/global_settings.php:2011 msgid "The size of the font used for Graph Legend items" msgstr "" "Die Schriftgröße, die für die Graph-Legenden-Elemente genutzt werden soll" #: /var/www/html/cacti/include/global_settings.php:833 msgid "Legend Font Setting" msgstr "" #: /var/www/html/cacti/include/global_settings.php:834 msgid "" "The font to use for Graph Legends. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: /var/www/html/cacti/include/global_settings.php:840 #: /var/www/html/cacti/include/global_settings.php:2023 msgid "Axis Font Size" msgstr "Font Größe für Achsenbeschriftung" #: /var/www/html/cacti/include/global_settings.php:841 #: /var/www/html/cacti/include/global_settings.php:2024 msgid "The size of the font used for Graph Axis" msgstr "Die Schriftgröße, die für die Graphen-Achse genutzt wird" #: /var/www/html/cacti/include/global_settings.php:848 msgid "Axis Font Setting" msgstr "" #: /var/www/html/cacti/include/global_settings.php:849 msgid "" "The font to use for Graph Axis items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: /var/www/html/cacti/include/global_settings.php:855 #: /var/www/html/cacti/include/global_settings.php:2036 msgid "Unit Font Size" msgstr "Einheiten Schriftgröße" #: /var/www/html/cacti/include/global_settings.php:856 #: /var/www/html/cacti/include/global_settings.php:2037 msgid "The size of the font used for Graph Units" msgstr "Die Schriftgröße, die für die Graphen-Einheiten genutzt wird" #: /var/www/html/cacti/include/global_settings.php:863 msgid "Unit Font Setting" msgstr "" #: /var/www/html/cacti/include/global_settings.php:864 msgid "" "The font to use for Graph Unit items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: /var/www/html/cacti/include/global_settings.php:877 msgid "Data Collection Enabled" msgstr "" #: /var/www/html/cacti/include/global_settings.php:878 msgid "If you wish to stop the polling process completely, uncheck this box." msgstr "" #: /var/www/html/cacti/include/global_settings.php:884 msgid "Poller Type" msgstr "Pollertyp" #: /var/www/html/cacti/include/global_settings.php:885 msgid "" "The poller type to use. This setting will take effect at next polling " "interval." msgstr "" #: /var/www/html/cacti/include/global_settings.php:892 msgid "" "The polling interval in use. This setting will effect how often RRDfiles " "are checked and updated.\n" "\t\t\tNOTE: If you change this value, you must re-populate the " "poller cache. Failure to do so, may result in lost data." msgstr "" #: /var/www/html/cacti/include/global_settings.php:899 msgid "Cron Interval" msgstr "Cron-Intervall" #: /var/www/html/cacti/include/global_settings.php:900 msgid "" "The cron interval in use. You need to set this setting to the interval that " "your cron or scheduled task is currently running." msgstr "" #: /var/www/html/cacti/include/global_settings.php:906 msgid "Maximum Concurrent Poller Processes" msgstr "Maximal gleichzeitig ausgeführte Poller-Prozesse" #: /var/www/html/cacti/include/global_settings.php:907 msgid "" "The number of concurrent processes to execute. Using a higher number when " "using cmd.php will improve performance. Performance improvements in spine " "are best resolved with the threads parameter" msgstr "" "Die Anzahl gleichzeitig ausgeführter Prozesse. Eine höhere Anzahl wird die " "Leistung bei Verwendung von cmd.php verbessern. Leistungs-Verbesserungen mit " "spine werden am besten mit dem »Threads«-Parameter erzielt." #: /var/www/html/cacti/include/global_settings.php:914 msgid "Balance Process Load" msgstr "Verteile Prozess-Last" #: /var/www/html/cacti/include/global_settings.php:915 msgid "" "If you choose this option, Cacti will attempt to balance the load of each " "poller process by equally distributing poller items per process." msgstr "" "Wenn Sie diese Option wählen, wird Cacti versuchen, die Last der Poller-" "Prozesse zu verteilen. Die Poller-Elemente werden gleichmäßig auf die " "Prozesse aufgeteilt." #: /var/www/html/cacti/include/global_settings.php:920 msgid "Disable increasing OID Check" msgstr "" #: /var/www/html/cacti/include/global_settings.php:921 msgid "Controls disabling check for increasing OID while walking OID tree." msgstr "" #: /var/www/html/cacti/include/global_settings.php:926 msgid "Spine Specific Execution Parameters" msgstr "Spine spezifischer Ausführungsparameter" #: /var/www/html/cacti/include/global_settings.php:931 msgid "Invalid Data Logging" msgstr "" #: /var/www/html/cacti/include/global_settings.php:932 msgid "" "How would you like Spine output errors logged? The options are: 'Detailed' " "which is similar to cmd.php logging; 'Summary' which provides the number of " "output errors per host; and 'None', which does not provide error counts." msgstr "" #: /var/www/html/cacti/include/global_settings.php:937 #: /var/www/html/cacti/utilities.php:204 msgid "Summary" msgstr "" #: /var/www/html/cacti/include/global_settings.php:938 msgid "Detailed" msgstr "" #: /var/www/html/cacti/include/global_settings.php:942 msgid "Maximum Threads per Process" msgstr "Maximale Anzahl der Threads pro Prozess" #: /var/www/html/cacti/include/global_settings.php:943 msgid "" "The maximum threads allowed per process. Using a higher number when using " "Spine will improve performance." msgstr "" #: /var/www/html/cacti/include/global_settings.php:950 msgid "Number of PHP Script Servers" msgstr "Anzahl der PHP-Skript-Server" #: /var/www/html/cacti/include/global_settings.php:951 msgid "" "The number of concurrent script server processes to run per Spine process. " "Settings between 1 and 10 are accepted. This parameter will help if you are " "running several threads and script server scripts." msgstr "" #: /var/www/html/cacti/include/global_settings.php:958 msgid "Script and Script Server Timeout Value" msgstr "Skript und Skript-Server Timeout-Werte" #: /var/www/html/cacti/include/global_settings.php:959 msgid "" "The maximum time that Cacti will wait on a script to complete. This timeout " "value is in seconds" msgstr "" #: /var/www/html/cacti/include/global_settings.php:966 msgid "The Maximum SNMP OIDs Per SNMP Get Request" msgstr "" #: /var/www/html/cacti/include/global_settings.php:967 msgid "" "The maximum number of SNMP get OIDs to issue per snmpbulkwalk request. " "Increasing this value speeds poller performance over slow links. The " "maximum value is 100 OIDs. Decreasing this value to 0 or 1 will disable " "snmpbulkwalk" msgstr "" #: /var/www/html/cacti/include/global_settings.php:981 msgid "Authentication Method" msgstr "Authentisierungsmethode" #: /var/www/html/cacti/include/global_settings.php:982 msgid "" "
    None - No authentication will be used, all users will " "have full access.

    Built-in Authentication - Cacti handles user " "authentication, which allows you to create users and give them rights to " "different areas within Cacti.

    Web Basic Authentication - " "Authentication is handled by the web server. Users can be added or created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used.

    LDAP Authentication - " "Allows for authentication against a LDAP server. Users will be created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used. If PHPs LDAP module is not enabled, " "LDAP Authentication will not appear as a selectable option." "

    Multiple LDAP/AD Domain Authentication - Allows " "administrators to support multiple disparate groups from different LDAP/AD " "directories to access Cacti resources. Just as LDAP Authentication, the PHP " "LDAP module is required to utilize this method.
    " msgstr "" #: /var/www/html/cacti/include/global_settings.php:988 msgid "Support Authentication Cookies" msgstr "" #: /var/www/html/cacti/include/global_settings.php:989 msgid "" "If a user authenticates and selects 'Keep me signed in', an authentication " "cookie will be created on the user's computer allowing that user to stay " "logged in. The authentication cookie expires after 90 days of non-use." msgstr "" #: /var/www/html/cacti/include/global_settings.php:994 msgid "Special Users" msgstr "Spezial User" #: /var/www/html/cacti/include/global_settings.php:999 msgid "Guest User" msgstr "Gast Benutzer" #: /var/www/html/cacti/include/global_settings.php:1000 msgid "The name of the guest user for viewing graphs; is 'No User' by default." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1002 #: /var/www/html/cacti/include/global_settings.php:1010 #: /var/www/html/cacti/user_domains.php:335 msgid "No User" msgstr "Kein Benutzer" #: /var/www/html/cacti/include/global_settings.php:1007 #: /var/www/html/cacti/user_domains.php:331 msgid "User Template" msgstr "Benutzer Template" #: /var/www/html/cacti/include/global_settings.php:1008 msgid "" "The name of the user that Cacti will use as a template for new Web Basic and " "LDAP users; is 'guest' by default." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1015 msgid "Local Account Complexity Requirements" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1020 msgid "Minimum Length" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1021 msgid "This is minimal length of allowed passwords." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1028 msgid "Require Mix Case" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1029 msgid "" "This will require new passwords to contains both lower and upper-case " "characters." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1034 msgid "Require Number" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1035 msgid "" "This will require new passwords to contain at least 1 numerical character." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1040 msgid "Require Special Character" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1041 msgid "" "This will require new passwords to contain at least 1 special character." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1046 msgid "Force Complexity Upon Old Passwords" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1047 msgid "" "This will require all old passwords to also meet the new complexity " "requirements upon login. If not met, it will force a password change." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1052 msgid "Expire Inactive Accounts" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1053 msgid "" "This is maximum number of days before inactive accounts are disabled. The " "Admin account is excluded from this policy." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1066 msgid "Expire Password" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1067 msgid "This is maximum number of days before a password is set to expire." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1078 msgid "Password History" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1079 msgid "Remember this number of old passwords and disallow re-using them." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1084 msgid "1 Change" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1085 #: /var/www/html/cacti/include/global_settings.php:1086 #: /var/www/html/cacti/include/global_settings.php:1087 #: /var/www/html/cacti/include/global_settings.php:1088 #: /var/www/html/cacti/include/global_settings.php:1089 #: /var/www/html/cacti/include/global_settings.php:1090 #: /var/www/html/cacti/include/global_settings.php:1091 #: /var/www/html/cacti/include/global_settings.php:1092 #: /var/www/html/cacti/include/global_settings.php:1093 #: /var/www/html/cacti/include/global_settings.php:1094 #: /var/www/html/cacti/include/global_settings.php:1095 #, php-format msgid "%d Changes" msgstr "%d Änderungen" #: /var/www/html/cacti/include/global_settings.php:1098 msgid "Account Locking" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1103 msgid "Lock Accounts" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1104 msgid "Lock an account after this many failed attempts in 1 hour." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1109 msgid "1 Attempt" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1110 #: /var/www/html/cacti/include/global_settings.php:1111 #: /var/www/html/cacti/include/global_settings.php:1112 #: /var/www/html/cacti/include/global_settings.php:1113 #: /var/www/html/cacti/include/global_settings.php:1114 #, php-format msgid "%d Attempts" msgstr "%d Versuche" #: /var/www/html/cacti/include/global_settings.php:1117 msgid "Auto Unlock" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1118 msgid "" "An account will automatically be unlocked after this many minutes. Even if " "the correct password is entered, the account will not unlock until this time " "limit has been met. Max of 1440 minutes (1 Day)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1137 msgid "LDAP General Settings" msgstr "LDAP allgemeine Einstellungen" #: /var/www/html/cacti/include/global_settings.php:1141 #: /var/www/html/cacti/user_domains.php:358 msgid "Server" msgstr "Server" #: /var/www/html/cacti/include/global_settings.php:1142 msgid "The DNS hostname or IP address of the server." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1147 #: /var/www/html/cacti/user_domains.php:366 msgid "Port Standard" msgstr "Standard Port" #: /var/www/html/cacti/include/global_settings.php:1148 msgid "TCP/UDP port for Non-SSL communications." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1155 #: /var/www/html/cacti/user_domains.php:375 msgid "Port SSL" msgstr "SSL Port" #: /var/www/html/cacti/include/global_settings.php:1156 #: /var/www/html/cacti/user_domains.php:376 msgid "TCP/UDP port for SSL communications." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1163 #: /var/www/html/cacti/user_domains.php:384 msgid "Protocol Version" msgstr "Protokoll Version" #: /var/www/html/cacti/include/global_settings.php:1164 #: /var/www/html/cacti/user_domains.php:385 msgid "Protocol Version that the server supports." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1170 #: /var/www/html/cacti/user_domains.php:391 msgid "Encryption" msgstr "Verschlüsselung" #: /var/www/html/cacti/include/global_settings.php:1171 #: /var/www/html/cacti/user_domains.php:392 msgid "" "Encryption that the server supports. TLS is only supported by Protocol " "Version 3." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1177 #: /var/www/html/cacti/user_domains.php:398 msgid "Referrals" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1178 #: /var/www/html/cacti/user_domains.php:399 msgid "" "Enable or Disable LDAP referrals. If disabled, it may increase the speed of " "searches." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1184 #: /var/www/html/cacti/user_domains.php:405 msgid "Mode" msgstr "Modus" #: /var/www/html/cacti/include/global_settings.php:1185 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the user's " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the user's Distinguished Name (DN)." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1191 #: /var/www/html/cacti/user_domains.php:412 msgid "Distinguished Name (DN)" msgstr "Distinguished Name (DN)" #: /var/www/html/cacti/include/global_settings.php:1192 #: /var/www/html/cacti/user_domains.php:413 msgid "" "Distinguished Name syntax, such as for windows: \"<username>" "@win2kdomain.local\" or for OpenLDAP: \"uid=<username>," "ou=people,dc=domain,dc=local\". \"<username>\" is replaced with " "the username that was supplied at the login prompt. This is only used when " "in \"No Searching\" mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1197 #: /var/www/html/cacti/user_domains.php:419 msgid "Require Group Membership" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1198 #: /var/www/html/cacti/user_domains.php:420 msgid "" "Require user to be member of group to authenticate. Group settings must be " "set for this to work, enabling without proper group settings will cause " "authentication failure." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1203 #: /var/www/html/cacti/user_domains.php:425 msgid "LDAP Group Settings" msgstr "LDAP Gruppen Einstellung" #: /var/www/html/cacti/include/global_settings.php:1207 #: /var/www/html/cacti/user_domains.php:429 msgid "Group Distinguished Name (DN)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1208 #: /var/www/html/cacti/user_domains.php:430 msgid "Distinguished Name of the group that user must have membership." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1213 #: /var/www/html/cacti/user_domains.php:436 msgid "Group Member Attribute" msgstr "Gruppenmitglied Attribut" #: /var/www/html/cacti/include/global_settings.php:1214 #: /var/www/html/cacti/user_domains.php:437 msgid "Name of the attribute that contains the usernames of the members." msgstr "Attributname, welcher die Benutzernamen der Mitglieder enthält." #: /var/www/html/cacti/include/global_settings.php:1219 #: /var/www/html/cacti/user_domains.php:443 msgid "Group Member Type" msgstr "Gruppenmitgliedtyp" #: /var/www/html/cacti/include/global_settings.php:1220 #: /var/www/html/cacti/user_domains.php:444 msgid "" "Defines if users use full Distinguished Name or just Username in the defined " "Group Member Attribute." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1223 msgid "Distinguished Name" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1226 #: /var/www/html/cacti/user_domains.php:450 msgid "LDAP Specific Search Settings" msgstr "LDAP-spezifische Sucheinstellungen" #: /var/www/html/cacti/include/global_settings.php:1230 #: /var/www/html/cacti/user_domains.php:454 msgid "Search Base" msgstr "Such-Basis" #: /var/www/html/cacti/include/global_settings.php:1231 msgid "" "Search base for searching the LDAP directory, such as 'dc=win2kdomain," "dc=local' or 'ou=people,dc=domain,dc=local'." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1236 #: /var/www/html/cacti/user_domains.php:461 msgid "Search Filter" msgstr "Suche-Filter" #: /var/www/html/cacti/include/global_settings.php:1237 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: '(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))' or for OpenLDAP: " "'(&(objectClass=account)(uid=<username>))'. '<username>' " "is replaced with the username that was supplied at the login prompt. " msgstr "" #: /var/www/html/cacti/include/global_settings.php:1242 #: /var/www/html/cacti/user_domains.php:468 msgid "Search Distinguished Name (DN)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1243 #: /var/www/html/cacti/user_domains.php:469 msgid "" "Distinguished Name for Specific Searching binding to the LDAP directory." msgstr "'Distinguished Name' für die Suchfunktion im LDAP Verzeichnis." #: /var/www/html/cacti/include/global_settings.php:1248 #: /var/www/html/cacti/user_domains.php:475 msgid "Search Password" msgstr "Suche Passwort" #: /var/www/html/cacti/include/global_settings.php:1249 #: /var/www/html/cacti/user_domains.php:476 msgid "Password for Specific Searching binding to the LDAP directory." msgstr "Passwort für spezifische LDAP-Such-Verbindungen." #: /var/www/html/cacti/include/global_settings.php:1256 msgid "URL Linking" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1261 msgid "Server Base URL" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1262 msgid "" "This is a the server location that will be used for links to the Cacti site." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1269 msgid "" "Emailing Options
    Send a Test Email
    " msgstr "" #: /var/www/html/cacti/include/global_settings.php:1273 msgid "Test Email" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1274 msgid "" "This is a Email account used for sending a test message to ensure everything " "is working properly." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1279 #, fuzzy msgid "Mail Services" msgstr "Keine Zielsysteme" #: /var/www/html/cacti/include/global_settings.php:1280 msgid "Which mail service to use in order to send mail" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1282 #: /var/www/html/cacti/include/global_settings.php:1283 msgid "PHP Mail() Function" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1283 #: /var/www/html/cacti/lib/functions.php:3842 msgid "SMTP" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1283 #: /var/www/html/cacti/lib/functions.php:3837 msgid "Sendmail" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1286 #, fuzzy msgid "Ping Mail Server" msgstr "Keine Zielsysteme" #: /var/www/html/cacti/include/global_settings.php:1287 msgid "Ping the Mail Server before sending test Email?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1293 #: /var/www/html/cacti/lib/html_reports.php:186 msgid "From Email Address" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1294 msgid "This is the Email address that the Email will appear from." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1299 #: /var/www/html/cacti/lib/html_reports.php:178 #, fuzzy msgid "From Name" msgstr "Rahmen" #: /var/www/html/cacti/include/global_settings.php:1300 msgid "This is the actual name that the Email will appear from." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1305 msgid "Word Wrap" msgstr "Zeilenumbruch" #: /var/www/html/cacti/include/global_settings.php:1306 msgid "" "This is how many characters will be allowed before a line in the Email is " "automatically word wrapped. (0 = Disabled)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1313 #, fuzzy msgid "Sendmail Options" msgstr "Optionen für automatische Skalierung" #: /var/www/html/cacti/include/global_settings.php:1318 #: /var/www/html/cacti/lib/functions.php:3837 msgid "Sendmail Path" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1319 msgid "" "This is the path to sendmail on your server. (Only used if Sendmail is " "selected as the Mail Service)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1325 #, fuzzy msgid "SMTP Options" msgstr "FTP Optionen" #: /var/www/html/cacti/include/global_settings.php:1330 #, fuzzy msgid "SMTP Hostname" msgstr "Zielsystemname" #: /var/www/html/cacti/include/global_settings.php:1331 msgid "" "This is the hostname/IP of the SMTP Server you will send the Email to. For " "failover, separate your hosts using a semi-colon." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1337 #, fuzzy msgid "SMTP Port" msgstr "SNMP Port" #: /var/www/html/cacti/include/global_settings.php:1338 msgid "The port on the SMTP Server to use." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1345 msgid "SMTP Username" msgstr "SNMP Benutzername (v3)" #: /var/www/html/cacti/include/global_settings.php:1346 msgid "" "The username to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1351 msgid "SMTP Password" msgstr "SMTP Passwort" #: /var/www/html/cacti/include/global_settings.php:1352 msgid "" "The password to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1357 msgid "SMTP Security" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1358 msgid "The encryption method to use for the Email." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1364 msgid "SMTP Timeout" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1365 msgid "Please enter the SMTP timeout in seconds." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1372 msgid "Reporting Presets" msgstr "Voreinstellungen für Berichte" #: /var/www/html/cacti/include/global_settings.php:1377 msgid "Default Graph Image Format" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1378 msgid "" "When creating a new report, what image type should be used for the inline " "graphs." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1384 msgid "Maximum E-Mail Size" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1385 msgid "The maximum size of the E-Mail message including all attachements." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1391 msgid "Poller Logging Level for Cacti Reporting" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1392 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1398 msgid "Enable Lotus Notes (R) tweak" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1399 msgid "Enable code tweak for specific handling of Lotus Notes Mail Clients." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1404 #, fuzzy msgid "DNS Options" msgstr "FTP Optionen" #: /var/www/html/cacti/include/global_settings.php:1409 #, fuzzy msgid "Primary DNS IP Address" msgstr "IP Adresse" #: /var/www/html/cacti/include/global_settings.php:1410 msgid "Enter the primary DNS IP Address to utilize for reverse lookups." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1416 msgid "Secondary DNS IP Address" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1417 msgid "Enter the secondary DNS IP Address to utilize for reverse lookups." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1423 #, fuzzy msgid "DNS Timeout" msgstr "Zeitfenster für Scripte" #: /var/www/html/cacti/include/global_settings.php:1424 msgid "" "Please enter the DNS timeout in milliseconds. Cacti uses a PHP based DNS " "resolver." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1433 msgid "Data Sources Statistics" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1438 msgid "Enable Data Source Statistics Collection" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1439 msgid "Should Data Source Statistics be collected for this Cacti system?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1444 msgid "Daily Update Frequency" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1445 msgid "How frequent should Daily Stats be updated?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1451 msgid "Hourly Average Window" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1452 msgid "" "The number of consecutive hours that represent the hourly average. Keep in " "mind that a setting too high can result in very large memory tables" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1458 msgid "Maintenance Time" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1459 msgid "" "What time of day should Weekly, Monthly, and Yearly Data be updated? Format " "is HH:MM [am/pm]" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1466 msgid "Memory Limit for Data Source Statistics Data Collector" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1467 msgid "" "The maximum amount of memory for the Cacti Poller and Data Source Statistics " "Poller" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1473 msgid "Debugging" msgstr "Prüfend" #: /var/www/html/cacti/include/global_settings.php:1478 msgid "Enable Single RRDtool Pipe" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1479 msgid "" "Using a single pipe will speed the RRDtool process by 10x. However, RRDtool " "crashes problems can occur. Disable this setting if you need to find a bad " "RRDfile." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1484 msgid "Enable Partial Reference Data Retrieve" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1485 msgid "" "If using a large system, it may be beneficial for you to only gather data as " "needed during Cacti poller passes. If you check this box, Data Source " "Statistics will gather data this way." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1492 msgid "On-demand RRD Update Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1497 msgid "Enable On-demand RRD Updating" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1498 msgid "" "Should Boost enable on demand RRD updating in Cacti? If you disable, this " "change will not take effect until after the next polling cycle." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1503 msgid "System Level RRD Updater" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1504 msgid "" "Before RRD On-demand Update Can be Cleared, a poller run must always pass" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1509 msgid "How Often Should Boost Update All RRDs" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1510 msgid "" "When you enable boost, your RRD files are only updated when they are " "requested by a user, or when this time period elapses." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1517 msgid "Maximum Records" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1518 msgid "" "If the boost output table exceeds this size, in records, an update will take " "place." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1525 msgid "Maximum Data Source Items Per Pass" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1526 msgid "" "To optimize performance, the boost RRD updater needs to know how many Data " "Source Items should be retrieved in one pass. Please be careful not to set " "too high as graphing performance during major updates can be compromised. " "If you encounter graphing or polling slowness during updates, lower this " "number. The default value is 50000." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1532 msgid "Maximum Argument Length" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1533 msgid "" "When boost sends update commands to RRDtool, it must not exceed the " "operating systems Maximum Argument Length. This varies by operating system " "and kernel level. For example: Windows 2000 <= 2048, FreeBSD <= 65535, " "Linux 2.6.22-- <= 131072, Linux 2.6.23++ unlimited" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1540 msgid "Memory Limit for Boost and Poller" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1541 msgid "The maximum amount of memory for the Cacti Poller and Boosts Poller" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1547 msgid "Maximum RRD Update Script Run Time" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1548 msgid "" "The maximum boot poller run time allowed prior to boost issuing warning " "messages relative to possible hardware/software issues preventing proper " "updates." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1554 msgid "Enable direct population of poller_output_boost table" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1555 msgid "" "Enables direct insert of records into poller output boost with results in a " "25% time reduction in each poll cycle." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1560 #: /var/www/html/cacti/utilities.php:2195 msgid "Image Caching" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1565 msgid "Enable Image Caching" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1566 msgid "Should image caching be enabled?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1571 msgid "Location for Image Files" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1572 msgid "" "Specify the location where Boost should place your image files. These files " "will be automatically purged by the poller when they expire." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1578 msgid "Process Interlocking" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1583 msgid "Boost Debug Log" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1584 msgid "" "If this field is non-blank, Boost will log RRDupdate output from the boost" "\tpoller process." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1598 msgid "" "Choose if RRDs will be stored locally or being handled by an external " "RRDtool proxy server." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1601 #: /var/www/html/cacti/include/global_settings.php:1609 msgid "RRDtool Proxy Server" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1604 msgid "Structured RRD Path (/host_id/local_data_id.rrd)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1605 msgid "Use a separate subfolder for each hosts RRD files." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1614 #: /var/www/html/cacti/include/global_settings.php:1646 msgid "Proxy Server" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1615 msgid "The DNS hostname or IP address of the RRDtool proxy server." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1620 #: /var/www/html/cacti/include/global_settings.php:1652 msgid "Proxy Port Number" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1621 msgid "TCP port for encrypted communication." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1628 #: /var/www/html/cacti/include/global_settings.php:1660 #: /var/www/html/cacti/utilities.php:259 msgid "RSA Fingerprint" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1629 msgid "" "The fingerprint of the current public RSA key the proxy is using. This is " "required to establish a trusted connection." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1636 msgid "RRDtool Proxy Server - Backup" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1641 msgid "Load Balancing" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1642 msgid "" "If both main and backup proxy are receivable this option allows to spread " "all requests against RRDtool." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1647 msgid "" "The DNS hostname or IP address of the RRDtool backup proxy server if proxy " "is running in MSR mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1653 msgid "TCP port for encrypted communication with the backup proxy." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1661 msgid "" "The fingerprint of the current public RSA key the backup proxy is using. " "This required to establish a trusted connection." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1670 msgid "Spike Kill Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1675 msgid "Removal Method" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1676 msgid "" "There are two removal methods. The first, Standard Deviation, will remove " "any sample that is X number of standard deviations away from the average of " "samples. The second method, Variance, will remove any sample that is X% " "more than the Variance average. The Variance method takes into account a " "certain number of 'outliers'. Those are exceptional samples, like the " "spike, that need to be excluded from the Variance Average calculation." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1679 msgid "Standard Deviation" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1679 msgid "Variance Based w/Outliers Removed" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1682 #: /var/www/html/cacti/lib/html.php:1749 msgid "Replacement Method" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1683 msgid "" "There are three replacement methods. The first method replaces the spike " "with the the average of the data source in question. The second method " "replaces the spike with a 'NaN'. The last replaces the spike with the last " "known good value found." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1686 #: /var/www/html/cacti/lib/html.php:1750 msgid "Average" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1686 #: /var/www/html/cacti/lib/html.php:1752 msgid "Last Known Good" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1686 msgid "NaN's" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1689 msgid "Number of Standard Deviations" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1690 msgid "" "Any value that is this many standard deviations above the average will be " "excluded. A good number will be dependent on the type of data to be " "operated on. We recommend a number no lower than 5 Standard Deviations." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1694 #: /var/www/html/cacti/include/global_settings.php:1695 #: /var/www/html/cacti/include/global_settings.php:1696 #: /var/www/html/cacti/include/global_settings.php:1697 #: /var/www/html/cacti/include/global_settings.php:1698 #: /var/www/html/cacti/include/global_settings.php:1699 #: /var/www/html/cacti/include/global_settings.php:1700 #: /var/www/html/cacti/include/global_settings.php:1701 #: /var/www/html/cacti/include/global_settings.php:1702 #: /var/www/html/cacti/include/global_settings.php:1703 #, php-format msgid "%d Standard Deviations" msgstr "%d Standardabweichungen" #: /var/www/html/cacti/include/global_settings.php:1707 #: /var/www/html/cacti/lib/html.php:1761 msgid "Variance Percentage" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1708 #, php-format msgid "" "This value represents the percentage above the adjusted sample average once " "outliers have been removed from the sample. For example, a Variance " "Percentage of 100% on an adjusted average of 50 would remove any sample " "above the quantity of 100 from the graph." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1727 msgid "Variance Number of Outliers" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1728 msgid "" "This value represents the number of high and low average samples will be " "removed from the sample set prior to calculating the Variance Average. If " "you choose an outlier value of 5, then both the top and bottom 5 averages " "are removed." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1732 #: /var/www/html/cacti/include/global_settings.php:1733 #: /var/www/html/cacti/include/global_settings.php:1734 #: /var/www/html/cacti/include/global_settings.php:1735 #: /var/www/html/cacti/include/global_settings.php:1736 #: /var/www/html/cacti/include/global_settings.php:1737 #: /var/www/html/cacti/include/global_settings.php:1738 #: /var/www/html/cacti/include/global_settings.php:1739 #, php-format msgid "%d High/Low Samples" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1743 msgid "Max Kills Per RRA" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1744 msgid "" "This value represents the maximum number of spikes to remove from a Graph " "RRA." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1748 #: /var/www/html/cacti/include/global_settings.php:1749 #: /var/www/html/cacti/include/global_settings.php:1750 #: /var/www/html/cacti/include/global_settings.php:1751 #: /var/www/html/cacti/include/global_settings.php:1752 #: /var/www/html/cacti/include/global_settings.php:1753 #: /var/www/html/cacti/include/global_settings.php:1754 #: /var/www/html/cacti/include/global_settings.php:1755 #, php-format msgid "%d Samples" msgstr "%d Proben" #: /var/www/html/cacti/include/global_settings.php:1759 msgid "RRDfile Backup Directory" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1760 msgid "" "If this directory is not empty, then your original RRDfiles will be backed\n" "\t\t\tup to this location." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1768 msgid "Batch Spike Kill Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1773 msgid "Removal Schedule" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1774 msgid "" "Do you wish to periodically remove spikes from your graphs? If so, select " "the frequency\n" "\t\t\tbelow." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1782 msgid "Once a Day" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1783 msgid "Every Other Day" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1787 msgid "Base Time" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1788 msgid "" "The Base Time for Spike removal to occur. For example, if you use '12:00am' " "and you choose once per day, the batch removal would begin at approximately " "midnight every day." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1795 msgid "Graph Templates to Spike Kill" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1797 msgid "" "When performing batch spike removal, only the templates selected below will " "be acted on." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1813 msgid "Default View Mode" msgstr "Standard Anzeigemodus" #: /var/www/html/cacti/include/global_settings.php:1814 msgid "" "Which Graph mode you want displayed by default when you first visit the " "Graphs page?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1820 msgid "User Language" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1821 msgid "Defines the preferred GUI language." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1827 msgid "Show Graph Title" msgstr "Zeige Graph Namen" #: /var/www/html/cacti/include/global_settings.php:1828 msgid "" "Display the graph title on the page so that it may be searched using the " "browser." msgstr "" "Zeige die Überschrift des Graphen auf der Seite an, so dass eine Suche " "innerhalb des Browsers möglich ist." #: /var/www/html/cacti/include/global_settings.php:1833 msgid "Hide Disabled" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1834 msgid "Hide Disabled Devices and Graphs from Disabled Devices." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1840 #, fuzzy msgid "The date format to use in Cacti." msgstr "Das Datumsformat, welches für die Graphen genutzt werden soll" #: /var/www/html/cacti/include/global_settings.php:1847 #, fuzzy msgid "The date separator to be used in Cacti." msgstr "Das Datums-Trennzeichen, welches für die Graphen genutzt werden soll" #: /var/www/html/cacti/include/global_settings.php:1853 msgid "Page Refresh" msgstr "Seiten-Aktualisierung" #: /var/www/html/cacti/include/global_settings.php:1854 msgid "The number of seconds between automatic page refreshes." msgstr "Anzahl der Sekunden zwischen der automatischen Seiten-Aktualisierung." #: /var/www/html/cacti/include/global_settings.php:1860 msgid "Preview Graphs Per Page" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1861 #: /var/www/html/cacti/include/global_settings.php:1976 msgid "The number of graphs to display on one page in preview mode." msgstr "" "Die Anzahl der Graphen, die auf einer Seite in der Voransicht-Anzeige " "dargestellt werden sollen." #: /var/www/html/cacti/include/global_settings.php:1869 msgid "Default Time Range" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1870 msgid "The default RRA to use in rare occasions." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1876 msgid "Default Graph View Timespan" msgstr "Standard Graph-Ansicht Zeitspanne" #: /var/www/html/cacti/include/global_settings.php:1877 msgid "The default timespan you wish to be displayed when you display graphs" msgstr "" "Die Standard-Zeitspanne, die bei der Diagramm-Ansicht angezeigt werden soll" #: /var/www/html/cacti/include/global_settings.php:1883 msgid "Default Graph View Timeshift" msgstr "Standard Graph-Ansicht Zeitverschiebung" #: /var/www/html/cacti/include/global_settings.php:1884 msgid "The default timeshift you wish to be displayed when you display graphs" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1890 msgid "Allow Graph to extend to Future" msgstr "Das Diagramm darf sich in die Zukunft erstrecken" #: /var/www/html/cacti/include/global_settings.php:1891 msgid "When displaying Graphs, allow Graph Dates to extend 'to future'" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1896 msgid "First Day of the Week" msgstr "Erster Tag der Woche" #: /var/www/html/cacti/include/global_settings.php:1897 msgid "The first Day of the Week for weekly Graph Displays" msgstr "Der erste Tag der Woche für die Wochen-Ansicht der Graphen" #: /var/www/html/cacti/include/global_settings.php:1903 msgid "Start of Daily Shift" msgstr "Start der Tagesverschiebung" #: /var/www/html/cacti/include/global_settings.php:1904 msgid "Start Time of the Daily Shift." msgstr "Startuhrzeit der Tagesverschiebung" #: /var/www/html/cacti/include/global_settings.php:1911 msgid "End of Daily Shift" msgstr "Ende der Tagesverschiebung" #: /var/www/html/cacti/include/global_settings.php:1912 msgid "End Time of the Daily Shift." msgstr "Endeuhrzeit der Tagesverschiebung" #: /var/www/html/cacti/include/global_settings.php:1921 msgid "Thumbnail Sections" msgstr "Thumbnail Bereich" #: /var/www/html/cacti/include/global_settings.php:1922 msgid "Which portions of Cacti display Thumbnails by default." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1936 msgid "Preview Thumbnail Columns" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1937 msgid "" "The number of columns to use when displaying Thumbnail graphs in Preview " "mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1940 #: /var/www/html/cacti/include/global_settings.php:1947 #: /var/www/html/cacti/lib/html_graph.php:229 #: /var/www/html/cacti/lib/html_graph.php:230 #: /var/www/html/cacti/lib/html_graph.php:231 #: /var/www/html/cacti/lib/html_graph.php:232 #: /var/www/html/cacti/lib/html_graph.php:233 #: /var/www/html/cacti/lib/html_tree.php:668 #: /var/www/html/cacti/lib/html_tree.php:669 #: /var/www/html/cacti/lib/html_tree.php:670 #: /var/www/html/cacti/lib/html_tree.php:671 #: /var/www/html/cacti/lib/html_tree.php:672 #, php-format msgid "%d Columns" msgstr "%d Spalten" #: /var/www/html/cacti/include/global_settings.php:1940 #: /var/www/html/cacti/include/global_settings.php:1947 msgid "1 Column" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1943 msgid "Tree View Thumbnail Columns" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1944 msgid "" "The number of columns to use when displaying Thumbnail graphs in Tree mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1950 msgid "Thumbnail Height" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1951 msgid "The height of Thumbnail graphs in pixels." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1958 msgid "Thumbnail Width" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1959 msgid "The width of Thumbnail graphs in pixels." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1968 msgid "Default Tree" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1969 msgid "The default graph tree to use when displaying graphs in tree mode." msgstr "Der Standard-Graph, der in der Baum-Ansicht angezeigt werden soll." #: /var/www/html/cacti/include/global_settings.php:1975 msgid "Graphs Per Page" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1982 msgid "Expand Devices" msgstr "Ausklappen der Zielsysteme" #: /var/www/html/cacti/include/global_settings.php:1983 msgid "" "Choose whether to expand the Graph Templates and Data Queries used by a " "Device on Tree." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1990 msgid "Use Custom Fonts" msgstr "Benutze eigene Schriftarten" #: /var/www/html/cacti/include/global_settings.php:1991 msgid "" "Choose whether to use your own custom fonts and font sizes or utilize the " "system defaults." msgstr "" "Wählen Sie, ob Sie lieber eigene Schriftarten und Schriftgrößen oder System-" "Standards verwenden möchten." #: /var/www/html/cacti/include/global_settings.php:2004 msgid "Title Font File" msgstr "Überschrift Schriftartdatei" #: /var/www/html/cacti/include/global_settings.php:2005 msgid "The font file to use for Graph Titles" msgstr "" "Die Schriftartdatei, die für die Diagrammüberschrift genutzt werden soll" #: /var/www/html/cacti/include/global_settings.php:2017 msgid "Legend Font File" msgstr "Legenden Schriftartdatei" #: /var/www/html/cacti/include/global_settings.php:2018 msgid "The font file to be used for Graph Legend items" msgstr "" "Die Schriftartdatei, die für die Graph-Legenden-Elemente genutzt werden soll" #: /var/www/html/cacti/include/global_settings.php:2030 msgid "Axis Font File" msgstr "Font Datei für Achsenbeschriftung" #: /var/www/html/cacti/include/global_settings.php:2031 msgid "The font file to be used for Graph Axis items" msgstr "Die Schriftartdatei, die für die Graphen-Achse genutzt wird" #: /var/www/html/cacti/include/global_settings.php:2043 msgid "Unit Font File" msgstr "Einheiten Schriftdatei" #: /var/www/html/cacti/include/global_settings.php:2044 msgid "The font file to be used for Graph Unit items" msgstr "Die Schriftartdatei, die für die Graphen-Einheiten genutzt wird" #: /var/www/html/cacti/index.php:64 #, php-format msgid "" "You are now logged into
    Cacti. You can follow " "these basic steps to get started." msgstr "" #: /var/www/html/cacti/index.php:67 #, php-format msgid "Create devices for network" msgstr "" #: /var/www/html/cacti/index.php:68 #, php-format msgid "Create graphs for your new devices" msgstr "" #: /var/www/html/cacti/index.php:69 #, php-format msgid "View your new graphs" msgstr "" #: /var/www/html/cacti/index.php:78 msgid "Offline" msgstr "" #: /var/www/html/cacti/index.php:78 msgid "Online" msgstr "" #: /var/www/html/cacti/index.php:78 msgid "Recovery" msgstr "" #: /var/www/html/cacti/index.php:78 msgid "Remote Data Collector Status:" msgstr "" #: /var/www/html/cacti/index.php:80 msgid "Number of Offline Records:" msgstr "" #: /var/www/html/cacti/index.php:85 msgid "" "NOTE: You are logged into a Remote Data Collector. When " "'online', you will be able to view and control much of the Main Cacti " "Web Site just as if you were logged into it. Also, it's important to note " "that Remote Data Collectors are required to use the Cacti's Performance " "Boosting Services 'On Demand Updating' feature, and we always " "recommend using Spine. When the Remote Data Collector is 'offline', " "the Remote Data Collectors Web Site will contain much less information. " "However, it will cache all updates until the Main Cacti Database and Web " "Server are reachable. Then it will dump it's Boost table output back to the " "Main Cacti Database for updating." msgstr "" #: /var/www/html/cacti/index.php:90 msgid "" "NOTE: None of the Core Cacti Plugins, to date, have been re-" "designed to work with Remote Data Collectors. Therefore, Plugins such as " "MacTrack, and HMIB, which require direct access to devices will not work " "with Remote Data Collectors at this time. However, plugins such as Thold " "will work so long as the Remote Data Collector is in 'online' mode." msgstr "" #: /var/www/html/cacti/install/index.php:51 #: /var/www/html/cacti/install/index.php:56 #: /var/www/html/cacti/install/index.php:61 #: /var/www/html/cacti/install/index.php:301 #: /var/www/html/cacti/lib/html_utility.php:846 msgid "Error" msgstr "Fehler" #: /var/www/html/cacti/install/index.php:53 #, php-format msgid "" "This installation is already up-to-date. Click here to " "use Cacti." msgstr "" #: /var/www/html/cacti/install/index.php:58 #, php-format msgid "" "You are attempting to install Cacti %s onto a 0.6.x database. To continue, " "you must create a new database, import \"cacti.sql\" into it, and update " "\"include/config.php\" to point to the new database." msgstr "" #: /var/www/html/cacti/install/index.php:63 #, php-format msgid "" "You have created a new database, but have not yet imported the 'cacti.sql' " "file. At the command line, execute the following to continue:

    mysql -u %s -p %s < cacti.sql

    This error may also be " "generated if the cacti database user does not have correct permissions on " "the Cacti database. Please ensure that the Cacti database user has the " "ability to SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, DROP, INDEX on the " "Cacti database." msgstr "" #: /var/www/html/cacti/install/index.php:65 #, php-format msgid "" "In Cacti %s, you must also import MySQL TimeZone information into MySQL and " "grant the Cacti user SELECT access to the mysql.time_zone_name table" msgstr "" #: /var/www/html/cacti/install/index.php:68 msgid "On Linux/UNIX, do the following:" msgstr "" #: /var/www/html/cacti/install/index.php:68 msgid "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" msgstr "" #: /var/www/html/cacti/install/index.php:70 msgid "" "On Windows, you must follow the instructions here Time zone description " "table. Once that is complete, you can issue the following command to " "grant the Cacti user access to the tables:" msgstr "" #: /var/www/html/cacti/install/index.php:72 #, php-format msgid "" "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" msgstr "" #: /var/www/html/cacti/install/index.php:303 #, php-format msgid "" "Invalid Cacti version %1$s, cannot upgrade to %2$s" msgstr "" "Ungültige Cacti Version %1$s. Es kann nicht auf " "%2$s aktualisiert werden." #: /var/www/html/cacti/install/index.php:423 msgid "Cacti Installation Wizard" msgstr "Cacti Installationsassistent" #: /var/www/html/cacti/install/index.php:431 msgid "License Agreement" msgstr "Lizenzvertrag" #: /var/www/html/cacti/install/index.php:433 msgid "" "Thanks for taking the time to download and install Cacti, the complete " "graphing solution for your network. Before you can start making cool graphs, " "there are a few pieces of data that Cacti needs to know." msgstr "" "Vielen Dank, dass Sie sich die Zeit genommen haben Cacti, die graphische " "Komplettlösung für Ihr Netzwerk, herunterzuladen und zu installieren. Bevor " "Sie beginnen können, coole Diagramme zu erzeugen, gibt es ein paar Daten, " "die Cacti von Ihnen wissen muss." #: /var/www/html/cacti/install/index.php:434 #, php-format msgid "" "Make sure you have read and followed the required steps needed to install " "Cacti before continuing. Install information can be found for Unix and Win32-based operating systems." msgstr "" "Stellen Sie sicher, dass Sie die erforderlichen Schritte um Cacti zu " "installieren gelesen und befolgt haben bevor Sie fortfahren. Informationen " "zur Installation finden Sie hier für Unix und Win32-basierte Betriebssysteme." #: /var/www/html/cacti/install/index.php:435 #, php-format msgid "" "Also, if this is an upgrade, be sure to reading the Upgrade information file." msgstr "" "Auch, wenn es sich um ein Upgrade handelt, achten Sie bitte darauf die Upgrade-Informationsdatei zu lesen." #: /var/www/html/cacti/install/index.php:436 msgid "" "Cacti is licensed under the GNU General Public License, you must agree to " "its provisions before continuing:" msgstr "" "Cacti ist lizenziert unter den Bedingungen der GNU General Public License, " "welcher Sie zustimmen müssen bevor Sie fortfahren:" #: /var/www/html/cacti/install/index.php:440 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" "Dieses Programm wird verteilt in der Hoffnung, dass es nützlich ist, aber " "OHNE JEDE GARANTIE; sogar ohne die implizite Garantie der MARKTGÄNGIGKEIT " "oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK. Weitere Details finden Sie in der " "GNU General Public License." #: /var/www/html/cacti/install/index.php:442 msgid "Accept GPL License Agreement" msgstr "GPL Lizenz Vereinbarung akzeptieren" #: /var/www/html/cacti/install/index.php:448 msgid "Pre-installation Checks" msgstr "Vor-Installations Prüfung" #: /var/www/html/cacti/install/index.php:449 msgid "MySQL TimeZone Support" msgstr "Unterstützung von MySQL Zeitzonen" #: /var/www/html/cacti/install/index.php:454 #: /var/www/html/cacti/install/index.php:458 #: /var/www/html/cacti/install/index.php:469 #: /var/www/html/cacti/install/index.php:631 #: /var/www/html/cacti/install/index.php:636 msgid "ERROR:" msgstr "FEHLER:" #: /var/www/html/cacti/install/index.php:454 msgid "" "Your MySQL TimeZone database is not populated. Please populate this " "database before proceeding." msgstr "" "Ihre MySQL Zeitzonen Datenbank wurde nicht aufgefüllt. Bitte füllen Sie " "diese Datenbank, bevor Sie fortfahren." #: /var/www/html/cacti/install/index.php:458 msgid "" "Your Cacti database login account does not have access to the MySQL TimeZone " "database. Please provide the Cacti database account \"select\" access to " "the \"time_zone_name\" table in the \"mysql\" database, and populate MySQL's " "TimeZone information before proceeding." msgstr "" "Ihr Cacti Datenbank Konto hat keinen Zugriff auf die MySQL Zeitzonen " "Datenbank. Bitte gewähren Sie diesem Konto das Privileg \"select\" auf die " "Tabelle \"time_zone_name\" innerhalb der \"mysql\" Datenbank und pflegen Sie " "MySQL's Zeitzonen Informationen ein bevor Sie fortfahren." #: /var/www/html/cacti/install/index.php:463 msgid "" "Your Cacti database account has access to the MySQL TimeZone database and " "that database is populated with global TimeZone information." msgstr "" "Ihr Cacti Datenbank Account hat Zugriff auf die MySQL Zeitzonen Datenbank, " "welche mit Information hinsichtlich globaler Zeitzonen gefüllt ist." #: /var/www/html/cacti/install/index.php:466 msgid "PHP Timezone Support" msgstr "" #: /var/www/html/cacti/install/index.php:469 msgid "" "Your Web Servers PHP Timezone settings have not been set. Please edit php." "ini and uncomment the 'date.timezone' setting and set it to the Web Servers " "Timezone per the PHP installation instructions prior to installing Cacti." msgstr "" #: /var/www/html/cacti/install/index.php:472 msgid "Your Web Servers PHP is properly setup with a Timezone." msgstr "" #: /var/www/html/cacti/install/index.php:475 msgid "Required PHP Module Support" msgstr "Unterstützung benötigter PHP Module" #: /var/www/html/cacti/install/index.php:477 msgid "" "Cacti requires several PHP Modules to be installed to work properly. If any " "of these are not installed, you will be unable to continue the installation " "until corrected. In addition, for optimal system performance Cacti should be " "run with certain MySQL system variables set. Please follow the MySQL " "recommendations at your discretion. Always seek the MySQL documentation if " "you have any questions." msgstr "" "Cacti erfordert mehrere PHP-Module, die installiert sein müssen, um " "ordnungsgemäß zu funktionieren. Falls diese noch nicht installiert sind, " "kann mit der Installation nicht fortgefahren werden. Darüber hinaus sollte " "für optimale Systemleistung Cacti mit bestimmten MySQL Systemvariablen " "ausgeführt werden. Bitte folgen Sie den Empfehlungen zu MySQL in Ihrem " "Ermessen. Konsoltieren Sie die Dokumentation von MySQL, wenn Sie " "irgendwelche Fragen haben." #: /var/www/html/cacti/install/index.php:479 msgid "" "The following PHP extensions are mandatory, and MUST be installed before " "continuing your Cacti install." msgstr "" "Die folgenden PHP-Erweiterungen sind obligatorisch und müssen installiert " "werden, bevor Sie mit der Installation fortfahren." #: /var/www/html/cacti/install/index.php:481 msgid "Required PHP Modules" msgstr "Erforderliche PHP Module" #: /var/www/html/cacti/install/index.php:482 #: /var/www/html/cacti/install/index.php:559 /var/www/html/cacti/plugins.php:41 #: /var/www/html/cacti/plugins.php:300 /var/www/html/cacti/utilities.php:426 msgid "Installed" msgstr "Installiert" #: /var/www/html/cacti/install/index.php:482 msgid "Required" msgstr "Erforderlich" #: /var/www/html/cacti/install/index.php:484 #: /var/www/html/cacti/utilities.php:398 msgid "PHP Version" msgstr "PHP-Version" #: /var/www/html/cacti/install/index.php:549 msgid "Optional PHP Module Support" msgstr "Optionale PHP Module" #: /var/www/html/cacti/install/index.php:551 msgid "" "The following PHP extensions are recommended, and should be installed before " "continuing your Cacti install." msgstr "" "Die folgenden PHP-Erweiterungen sind zu empfehlen und sollten installiert " "werden, bevor Sie mit der Installation von Cacti fortfahren." #: /var/www/html/cacti/install/index.php:558 msgid "Optional Modules" msgstr "Optionale Module" #: /var/www/html/cacti/install/index.php:559 msgid "Optional" msgstr "Optional" #: /var/www/html/cacti/install/index.php:569 msgid "" "These MySQL performance tuning settings will help your Cacti system perform " "better without issues for a longer time." msgstr "" "Nachfolgende Einstellungen zur Leistungsabstimmung von MySQL werden Ihrem " "Cacti System helfen, langfristig fehlerfrei und besser zu laufen." #: /var/www/html/cacti/install/index.php:571 msgid "Recommended MySQL System Variable Settings" msgstr "Empfohlene Einstellungen für MySQL Systemvariablen" #: /var/www/html/cacti/install/index.php:576 msgid "Installation Type" msgstr "Installationsart" #: /var/www/html/cacti/install/index.php:581 #, fuzzy, php-format #| msgid "" #| "Invalid Cacti version %1$s, cannot upgrade to " #| "%2$s" msgid "Upgrade from %s to %s" msgstr "" "Ungültige Cacti Version %1$s. Es kann nicht auf " "%2$s aktualisiert werden." #: /var/www/html/cacti/install/index.php:582 msgid "" "WARNING - If you are upgrading from a previous version please close all " "Cacti browser sessions and clear cache before continuing" msgstr "" #: /var/www/html/cacti/install/index.php:585 msgid "Please select the type of installation" msgstr "Bitte wählen Sie die Art der Installation aus" #: /var/www/html/cacti/install/index.php:587 msgid "Installation options:" msgstr "Installationsoptionen:" #: /var/www/html/cacti/install/index.php:590 #, fuzzy #| msgid "Choose this for the Primary Cacti Web Site." msgid "Choose this for the Primary site." msgstr "Wählen Sie diese Option für die primäre Cacti Website." #: /var/www/html/cacti/install/index.php:590 #: /var/www/html/cacti/install/index.php:596 msgid "New Primary Server" msgstr "Neuer Primär Server" #: /var/www/html/cacti/install/index.php:591 #: /var/www/html/cacti/install/index.php:597 msgid "New Remote Poller" msgstr "Neuer Remote Server" #: /var/www/html/cacti/install/index.php:591 msgid "" "Remote Pollers are used to access networks that are not readily accessible " "to the Primary site." msgstr "" #: /var/www/html/cacti/install/index.php:601 msgid "" "The following information has been determined from Cacti's configuration " "file. If it is not correct, please edit \"include/config.php\" before " "continuing." msgstr "" #: /var/www/html/cacti/install/index.php:605 msgid "Local Cacti database connection information" msgstr "" #: /var/www/html/cacti/install/index.php:607 #: /var/www/html/cacti/install/index.php:621 #, php-format msgid "Database: %s" msgstr "" #: /var/www/html/cacti/install/index.php:608 #: /var/www/html/cacti/install/index.php:622 #, php-format msgid "Database User: %s" msgstr "" #: /var/www/html/cacti/install/index.php:609 #: /var/www/html/cacti/install/index.php:623 #, php-format msgid "Database Hostname: %s" msgstr "" #: /var/www/html/cacti/install/index.php:610 #: /var/www/html/cacti/install/index.php:624 #, php-format msgid "Port: %s" msgstr "" #: /var/www/html/cacti/install/index.php:611 #: /var/www/html/cacti/install/index.php:625 #, php-format msgid "Server Operating System Type: %s" msgstr "" #: /var/www/html/cacti/install/index.php:619 #: /var/www/html/cacti/install/index.php:628 msgid "Remote Poller Cacti database connection information" msgstr "" #: /var/www/html/cacti/install/index.php:631 msgid "" "Your config.php file must be writable by the web server during install in " "order to configure the Remote poller. Once installation is complete, you " "must set this file to Read Only to prevent possible security issues." msgstr "" #: /var/www/html/cacti/install/index.php:636 msgid "" "Your Remote Cacti Poller information has not been included in your config." "php file. Please review the config.php.dist, and set the variables: " "$rdatabase_default, $rdatabase_username, etc. These variables must be " "set and point back to your Primary Cacti database server. Correct this and " "try again." msgstr "" #: /var/www/html/cacti/install/index.php:638 msgid "The variables that must be set include the following:" msgstr "" #: /var/www/html/cacti/install/index.php:649 msgid "You must also set the $poller_id variable in the config.php." msgstr "" #: /var/www/html/cacti/install/index.php:651 msgid "" "Once you have the variables set in the config.php file, you must also grant " "the $rdatabase_username access to the Cacti database. Follow the same " "procedure you would with any other Cacti install. You may then press the " "'Test Connection' button. If the test is successful you will be able to " "proceed and complete the install." msgstr "" #: /var/www/html/cacti/install/index.php:673 #: /var/www/html/cacti/install/index.php:689 #: /var/www/html/cacti/lib/html.php:342 msgid "Next" msgstr "Weiter" #: /var/www/html/cacti/install/index.php:698 msgid "Upgrade" msgstr "" #: /var/www/html/cacti/install/index.php:711 msgid "Remote Database: " msgstr "" #: /var/www/html/cacti/install/index.php:722 msgid "Critical Binary Locations and Versions" msgstr "" #: /var/www/html/cacti/install/index.php:724 msgid "Make sure all of these values are correct before continuing." msgstr "" #: /var/www/html/cacti/install/index.php:782 msgid "Directory Permission Checks" msgstr "" #: /var/www/html/cacti/install/index.php:784 msgid "" "Please ensure the directory permissions below are correct before " "proceeding. During the install, these directories need to be owned by the " "Web Server user. These permission changes are required to allow the " "Installer to install Device Template packages which include XML and script " "files that will be placed in these directories. If you choose not to " "install the packages, there is an 'install_package.php' cli script that can " "be used from the command line after the install is complete." msgstr "" #: /var/www/html/cacti/install/index.php:787 msgid "" "After the install is complete, you can make some of these directories read " "only to increase security." msgstr "" #: /var/www/html/cacti/install/index.php:789 msgid "" "These directories will be required to stay read writable after the install " "so that the Cacti remote synchronization process can update them as the Main " "Cacti Web Site changes" msgstr "" #: /var/www/html/cacti/install/index.php:820 msgid "Required Writable at Install Time Only" msgstr "" #: /var/www/html/cacti/install/index.php:823 #: /var/www/html/cacti/install/index.php:833 #: /var/www/html/cacti/install/index.php:843 #, php-format msgid "

    %s is Writable

    " msgstr "" #: /var/www/html/cacti/install/index.php:825 #: /var/www/html/cacti/install/index.php:835 #: /var/www/html/cacti/install/index.php:845 #, php-format msgid "

    %s is Not Writable

    " msgstr "" #: /var/www/html/cacti/install/index.php:830 #: /var/www/html/cacti/install/index.php:840 msgid "Required Writable after Install Complete" msgstr "" #: /var/www/html/cacti/install/index.php:853 #, php-format msgid "" "Make sure your webserver has read and write access to the entire folder " "structure.
    Example: chown -R apache.apache %s/resource/" msgstr "" #: /var/www/html/cacti/install/index.php:854 msgid "" "For SELINUX-users make sure that you have the correct permissions or set " "'setenforce 0' temporarily." msgstr "" #: /var/www/html/cacti/install/index.php:856 msgid "Check Permissions" msgstr "" #: /var/www/html/cacti/install/index.php:858 msgid "All folders are writable" msgstr "" #: /var/www/html/cacti/install/index.php:864 msgid "" "If you are installing packages, once the packages are installed, you should " "change the scripts directory back to read only as this presents some " "exposure to the web site." msgstr "" #: /var/www/html/cacti/install/index.php:864 #: /var/www/html/cacti/install/index.php:870 #: /var/www/html/cacti/install/index.php:903 msgid "NOTE:" msgstr "" #: /var/www/html/cacti/install/index.php:870 msgid "" "For remote pollers, it is critical that the paths that you will be updating " "frequently, including the plugins, scripts, and resources paths have read/" "write access as the data collector will have to update these paths from the " "main web server content." msgstr "" #: /var/www/html/cacti/install/index.php:877 msgid "Template Setup" msgstr "" #: /var/www/html/cacti/install/index.php:879 msgid "" "Please select the Device Templates that you wish to use after the Install. " "If you Operating System is Windows, you need to ensure that you select the " "'Windows Device' Template. If your Operating System is Linux/UNIX, make " "sure you select the 'Local Linux Machine' Device Template." msgstr "" #: /var/www/html/cacti/install/index.php:881 msgid "" "Device Templates allow you to monitor and graph a vast assortment of data " "within Cacti. After you select the desired Device Templates, press 'Finish' " "and the installation will complete. Please be patient on this step, as the " "importation of the Device Templates can take a few minutes." msgstr "" #: /var/www/html/cacti/install/index.php:887 #: /var/www/html/cacti/plugins.php:389 msgid "Author" msgstr "Autor" #: /var/www/html/cacti/install/index.php:887 msgid "Homepage" msgstr "" #: /var/www/html/cacti/install/index.php:905 msgid "" "Press 'Finish' to complete the installation process after selecting your " "Device Templates." msgstr "" #: /var/www/html/cacti/install/index.php:909 msgid "Upgrade Results" msgstr "" #: /var/www/html/cacti/install/index.php:916 msgid "[Fail]" msgstr "[Fehlgeschlagen]" #: /var/www/html/cacti/install/index.php:917 msgid "[Success]" msgstr "" #: /var/www/html/cacti/install/index.php:918 msgid "[Skipped]" msgstr "" #: /var/www/html/cacti/install/index.php:922 msgid "Database upgrade completed!" msgstr "" #: /var/www/html/cacti/install/index.php:926 msgid "Version: " msgstr "" #: /var/www/html/cacti/install/index.php:943 msgid "" "One or more of the SQL queries needed to upgraded your Cacti installation " "has failed. Please see below for more details. Your Cacti MySQL user must " "have SELECT, INSERT, UPDATE, DELETE, ALTER, CREATE, and DROP permissions. You should try executing the failed queries as \"root\" " "to ensure that you do not have a permissions problem." msgstr "" #: /var/www/html/cacti/install/index.php:943 #: /var/www/html/cacti/utilities.php:2061 #: /var/www/html/cacti/utilities.php:2062 #: /var/www/html/cacti/utilities.php:2065 #: /var/www/html/cacti/utilities.php:2066 msgid "WARNING:" msgstr "" #: /var/www/html/cacti/install/index.php:948 msgid "No database action needed." msgstr "" #: /var/www/html/cacti/install/index.php:953 msgid "Important Upgrade Notice" msgstr "" #: /var/www/html/cacti/install/index.php:954 msgid "" "Before you continue with the installation, you must update " "your /etc/crontab file to point to poller.php instead of " "cmd.php." msgstr "" "Bevor Sie mit der Installation fortfahren, müssen Sie die " "/etc/crontab Datei anpassen um poller.php statt cmd." "php zu nutzen." #: /var/www/html/cacti/install/index.php:955 msgid "" "See the sample crontab entry below with the change made in red. Your crontab " "line will look slightly different based upon your setup." msgstr "" #: /var/www/html/cacti/install/index.php:957 msgid "Once you have made this change, please click Finish to continue." msgstr "" #: /var/www/html/cacti/install/index.php:964 msgctxt "Dialog: previous" msgid "Previous" msgstr "Zurück" #: /var/www/html/cacti/install/index.php:965 msgctxt "Dialog: complete" msgid "Finish" msgstr "Fertigstellen" #: /var/www/html/cacti/install/index.php:965 msgctxt "Dialog: go to the next page" msgid "Next" msgstr "Weiter" #: /var/www/html/cacti/install/index.php:966 msgctxt "Dialog: test connection" msgid "Test Connection" msgstr "" #: /var/www/html/cacti/install/index.php:966 msgid "Test remote database connection" msgstr "" #: /var/www/html/cacti/install/index.php:990 #: /var/www/html/cacti/install/index.php:992 #: /var/www/html/cacti/install/index.php:994 msgid "Finish" msgstr "Abgeschlossen" #: /var/www/html/cacti/lib/aggregate.php:51 msgid "Display Graphs from this Aggregate" msgstr "" #: /var/www/html/cacti/lib/api_aggregate.php:1169 msgid "" "The Graphs chosen for the Aggregate Graph below represent Graphs from " "multiple Graph Templates. Aggregate does not support creating Aggregate " "Graphs from multiple Graph Templates." msgstr "" #: /var/www/html/cacti/lib/api_aggregate.php:1170 #: /var/www/html/cacti/lib/api_aggregate.php:1189 msgid "Press 'Return' to return and select different Graphs" msgstr "" #: /var/www/html/cacti/lib/api_aggregate.php:1188 msgid "" "The Graphs chosen for the Aggregate Graph do not use Graph Templates. " "Aggregate does not support creating Aggregate Graphs from non-templated " "graphs." msgstr "" #: /var/www/html/cacti/lib/api_aggregate.php:1290 #: /var/www/html/cacti/lib/functions.php:1943 msgid "Graph Items" msgstr "Diagramm Elemente" #: /var/www/html/cacti/lib/api_aggregate.php:1290 #: /var/www/html/cacti/lib/functions.php:2075 msgid "Graph Template Items" msgstr "Graph Templates Elemente" #: /var/www/html/cacti/lib/api_aggregate.php:1294 #: /var/www/html/cacti/lib/html.php:871 msgid "Graph Item" msgstr "Diagramm Element" #: /var/www/html/cacti/lib/api_aggregate.php:1297 #: /var/www/html/cacti/lib/html.php:874 msgid "CF Type" msgstr "CF Type" #: /var/www/html/cacti/lib/api_aggregate.php:1298 #: /var/www/html/cacti/lib/html.php:876 msgid "Item Color" msgstr "Farbe" #: /var/www/html/cacti/lib/api_aggregate.php:1299 msgid "Color Template" msgstr "Farbvorlage" #: /var/www/html/cacti/lib/api_aggregate.php:1300 msgid "Skip" msgstr "" #: /var/www/html/cacti/lib/api_aggregate.php:1367 msgid "Aggregate Items are not modifyable" msgstr "" #: /var/www/html/cacti/lib/api_aggregate.php:1378 msgid "Aggregate Items are not editable" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:132 msgid "Matching Devices" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:147 #: /var/www/html/cacti/lib/api_automation.php:1025 #: /var/www/html/cacti/lib/clog_webapi.php:422 #: /var/www/html/cacti/lib/html_reports.php:299 #: /var/www/html/cacti/lib/html_reports.php:1246 #: /var/www/html/cacti/lib/html_reports.php:1515 #: /var/www/html/cacti/lib/html_reports.php:1526 #: /var/www/html/cacti/lib/rrd.php:2656 /var/www/html/cacti/utilities.php:312 #: /var/www/html/cacti/utilities.php:1054 #: /var/www/html/cacti/utilities.php:2392 msgid "Type" msgstr "Typ" #: /var/www/html/cacti/lib/api_automation.php:306 msgid "No Matching Devices" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:415 #: /var/www/html/cacti/lib/api_automation.php:690 #: /var/www/html/cacti/lib/api_automation.php:830 msgid "Matching Objects" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:705 msgid "Objects" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:753 msgid "Not Found" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:784 msgid "" "A blue font color indicates that the rule will be applied to the objects in " "question. Other objects will not be subject to the rule." msgstr "" #: /var/www/html/cacti/lib/api_automation.php:784 #, php-format msgid "Matching Objects [ %s ]" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:841 msgid "Device Status" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:863 msgid "There are no Objects that match this rule." msgstr "" #: /var/www/html/cacti/lib/api_automation.php:907 msgid "Error in data query" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1011 msgid "Matching Items" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1173 msgid "Resulting Branch" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1212 msgid "No Items Found" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1240 #: /var/www/html/cacti/lib/api_automation.php:1302 msgid "Field" msgstr "Feld" #: /var/www/html/cacti/lib/api_automation.php:1242 #: /var/www/html/cacti/lib/api_automation.php:1304 msgid "Pattern" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1285 msgid "No Device Selection Criteria" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1347 msgid "No Graph Creation Criteria" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1366 msgid "Propagate Change" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1367 msgid "Search Pattern" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1368 msgid "Replace Pattern" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1412 msgid "No Tree Creation Criteria" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1871 #: /var/www/html/cacti/lib/api_automation.php:1921 msgid "Device Match Rule" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1886 msgid "Create Graph Rule" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1925 msgid "Graph Match Rule" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1950 msgid "Create Tree Rule (Device)" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1954 msgid "Create Tree Rule (Graph)" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1974 #, php-format msgid "Rule Item [edit rule item for %s: %s]" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1976 #, php-format msgid "Rule Item [new rule item for %s: %s]" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:2667 msgid "Added by Cacti Automation" msgstr "" #: /var/www/html/cacti/lib/api_device.php:401 msgid "Device is Disabled" msgstr "" #: /var/www/html/cacti/lib/api_device.php:402 msgid "Device Availability Check Bypassed" msgstr "" #: /var/www/html/cacti/lib/api_device.php:409 msgid "SNMP Information" msgstr "SNMP Information" #: /var/www/html/cacti/lib/api_device.php:413 msgid "SNMP not in use" msgstr "" #: /var/www/html/cacti/lib/api_device.php:421 #: /var/www/html/cacti/lib/api_device.php:425 #: /var/www/html/cacti/lib/api_device.php:437 msgid "SNMP error" msgstr "" #: /var/www/html/cacti/lib/api_device.php:444 msgid "System:" msgstr "" #: /var/www/html/cacti/lib/api_device.php:450 msgid "Uptime:" msgstr "Angeschaltet seit:" #: /var/www/html/cacti/lib/api_device.php:451 msgid "days" msgstr "" #: /var/www/html/cacti/lib/api_device.php:451 msgid "hours" msgstr "" #: /var/www/html/cacti/lib/api_device.php:451 msgid "minutes" msgstr "" #: /var/www/html/cacti/lib/api_device.php:452 msgid "Hostname:" msgstr "Gerätename:" #: /var/www/html/cacti/lib/api_device.php:453 msgid "Location:" msgstr "Umgebung:" #: /var/www/html/cacti/lib/api_device.php:454 msgid "Contact:" msgstr "Kontakt:" #: /var/www/html/cacti/lib/api_device.php:483 #: /var/www/html/cacti/lib/functions.php:3868 #: /var/www/html/cacti/lib/functions.php:3870 #: /var/www/html/cacti/lib/functions.php:3874 msgid "Ping Results" msgstr "Ping Ergebnisse" #: /var/www/html/cacti/lib/api_device.php:488 msgid "No Ping or SNMP Availability Check in Use" msgstr "" #: /var/www/html/cacti/lib/auth.php:312 msgid "Web Basic" msgstr "Einfache Webanmeldung" #: /var/www/html/cacti/lib/clog_webapi.php:158 msgid "" "Click 'Continue' to purge the Log File.


    Note: If logging is set " "to both Cacti and Syslog, the log information will remain in Syslog." msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:164 #: /var/www/html/cacti/utilities.php:1046 msgid "Purge Log" msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:188 #: /var/www/html/cacti/utilities.php:992 msgid "Log Filters" msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:205 msgid " - Admin Filter in Affect" msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:207 msgid " - No Admin Filter in Affect" msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:210 msgid " - Admin View" msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:214 #, php-format msgid "Log [Total Lines: %d %s - Additional Filter in Affect]" msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:216 #, php-format msgid "Log [Total Lines: %d %s - No Other Filter in Affect]" msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:226 #: /var/www/html/cacti/utilities.php:1130 #: /var/www/html/cacti/utilities.php:1447 #: /var/www/html/cacti/utilities.php:1654 #: /var/www/html/cacti/utilities.php:1733 #: /var/www/html/cacti/utilities.php:2386 #: /var/www/html/cacti/utilities.php:2595 msgid "Entries" msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:349 #: /var/www/html/cacti/utilities.php:1001 msgid "File" msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:395 #: /var/www/html/cacti/utilities.php:1031 msgid "Tail Lines" msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:427 #: /var/www/html/cacti/utilities.php:1059 msgid "Stats" msgstr "Statistik" #: /var/www/html/cacti/lib/clog_webapi.php:430 #: /var/www/html/cacti/utilities.php:1062 msgid "Debug" msgstr "Analyse" #: /var/www/html/cacti/lib/clog_webapi.php:431 #: /var/www/html/cacti/utilities.php:1063 msgid "SQL Calls" msgstr "SQL Aufrufe" #: /var/www/html/cacti/lib/clog_webapi.php:435 #: /var/www/html/cacti/utilities.php:1067 msgid "Display Order" msgstr "" #: /var/www/html/cacti/lib/clog_webapi.php:439 #: /var/www/html/cacti/utilities.php:1071 msgid "Newest First" msgstr "Neueste zuerst" #: /var/www/html/cacti/lib/clog_webapi.php:440 #: /var/www/html/cacti/utilities.php:1072 msgid "Oldest First" msgstr "Älteste zuerst" #: /var/www/html/cacti/lib/functions.php:673 #, php-format msgid "Error %s is not readable" msgstr "" #: /var/www/html/cacti/lib/functions.php:1829 #: /var/www/html/cacti/lib/functions.php:1834 msgid "Logged in as" msgstr "Angemeldet als" #: /var/www/html/cacti/lib/functions.php:1829 msgid "Login as Regular User" msgstr "" #: /var/www/html/cacti/lib/functions.php:1829 msgid "guest" msgstr "" #: /var/www/html/cacti/lib/functions.php:1836 msgid "Edit Profile" msgstr "Profil bearbeiten" #: /var/www/html/cacti/lib/functions.php:1838 msgid "Logout" msgstr "Abmelden" #: /var/www/html/cacti/lib/functions.php:1855 #: /var/www/html/cacti/lib/functions.php:1861 msgid "User Profile (Edit)" msgstr "" #: /var/www/html/cacti/lib/functions.php:1873 #: /var/www/html/cacti/lib/functions.php:1879 msgid "Tree Mode" msgstr "Baum Ansicht" #: /var/www/html/cacti/lib/functions.php:1885 msgid "List Mode" msgstr "Listen Ansicht" #: /var/www/html/cacti/lib/functions.php:1907 #: /var/www/html/cacti/lib/functions.php:1913 #: /var/www/html/cacti/lib/functions.php:2781 #: /var/www/html/cacti/lib/html.php:1315 /var/www/html/cacti/lib/html.php:1392 #: /var/www/html/cacti/links.php:343 /var/www/html/cacti/user_admin.php:1645 #: /var/www/html/cacti/user_group_admin.php:1396 msgid "Console" msgstr "Konsole" #: /var/www/html/cacti/lib/functions.php:1925 #: /var/www/html/cacti/lib/functions.php:1967 #: /var/www/html/cacti/lib/functions.php:1985 #: /var/www/html/cacti/lib/functions.php:2039 #: /var/www/html/cacti/lib/functions.php:2051 #: /var/www/html/cacti/lib/functions.php:2063 #: /var/www/html/cacti/lib/functions.php:2099 #: /var/www/html/cacti/lib/functions.php:2117 #: /var/www/html/cacti/lib/functions.php:2135 #: /var/www/html/cacti/lib/functions.php:2153 #: /var/www/html/cacti/lib/functions.php:2171 #: /var/www/html/cacti/lib/functions.php:2195 #: /var/www/html/cacti/lib/functions.php:2231 #: /var/www/html/cacti/lib/functions.php:2351 #: /var/www/html/cacti/lib/functions.php:2375 #: /var/www/html/cacti/lib/functions.php:2393 #: /var/www/html/cacti/lib/functions.php:2411 #: /var/www/html/cacti/lib/functions.php:2423 #: /var/www/html/cacti/lib/functions.php:2525 #: /var/www/html/cacti/lib/functions.php:2549 #: /var/www/html/cacti/lib/functions.php:2567 #: /var/www/html/cacti/lib/functions.php:2585 #: /var/www/html/cacti/lib/functions.php:2603 #: /var/www/html/cacti/lib/functions.php:2627 msgid "(Edit)" msgstr "(Verändern)" #: /var/www/html/cacti/lib/functions.php:1949 msgid "Create New Graphs" msgstr "Neue Diagramm anlegen" #: /var/www/html/cacti/lib/functions.php:1955 msgid "Create Graphs from Data Query" msgstr "Erstelle Graphen aus Daten-Abfrage" #: /var/www/html/cacti/lib/functions.php:1973 #: /var/www/html/cacti/lib/functions.php:1991 #: /var/www/html/cacti/lib/functions.php:2087 #: /var/www/html/cacti/lib/functions.php:2177 #: /var/www/html/cacti/lib/functions.php:2201 #: /var/www/html/cacti/lib/functions.php:2357 msgid "(Remove)" msgstr "(Entfernen)" #: /var/www/html/cacti/lib/functions.php:2009 #: /var/www/html/cacti/lib/functions.php:2015 #: /var/www/html/cacti/lib/functions.php:2021 #: /var/www/html/cacti/lib/functions.php:2027 #: /var/www/html/cacti/lib/functions.php:2291 msgid "View Cacti Log" msgstr "" #: /var/www/html/cacti/lib/functions.php:2033 msgid "Graph Trees" msgstr "Diagrammbäume" #: /var/www/html/cacti/lib/functions.php:2165 msgid "Round Robin Archives" msgstr "Round Robin Archive" #: /var/www/html/cacti/lib/functions.php:2207 msgid "Data Input Fields" msgstr "Daten Eingabe Felder" #: /var/www/html/cacti/lib/functions.php:2213 #: /var/www/html/cacti/lib/functions.php:2243 msgid "(Remove Item)" msgstr "(Entferne Element)" #: /var/www/html/cacti/lib/functions.php:2261 msgid "List unused Files" msgstr "" #: /var/www/html/cacti/lib/functions.php:2273 #: /var/www/html/cacti/lib/functions.php:2285 #: /var/www/html/cacti/utilities.php:1827 msgid "View Poller Cache" msgstr "Ansehen des Poller Speichers" #: /var/www/html/cacti/lib/functions.php:2279 #: /var/www/html/cacti/utilities.php:1831 msgid "View Data Query Cache" msgstr "" #: /var/www/html/cacti/lib/functions.php:2297 #: /var/www/html/cacti/utilities.php:1214 msgid "Clear Cacti Log" msgstr "" #: /var/www/html/cacti/lib/functions.php:2303 #: /var/www/html/cacti/utilities.php:1820 msgid "View User Log" msgstr "Ansehen des Benutzerlogs" #: /var/www/html/cacti/lib/functions.php:2309 msgid "Clear User Log" msgstr "" #: /var/www/html/cacti/lib/functions.php:2315 #: /var/www/html/cacti/utilities.php:1811 #: /var/www/html/cacti/utilities.php:1812 msgid "Technical Support" msgstr "Technischer Support" #: /var/www/html/cacti/lib/functions.php:2321 #: /var/www/html/cacti/utilities.php:1928 msgid "Boost Status" msgstr "" #: /var/www/html/cacti/lib/functions.php:2327 msgid "View SNMP Agent Cache" msgstr "" #: /var/www/html/cacti/lib/functions.php:2333 msgid "View SNMP Agent Notification Log" msgstr "" #: /var/www/html/cacti/lib/functions.php:2363 msgid "VDEF Items" msgstr "VDEF Elemente" #: /var/www/html/cacti/lib/functions.php:2369 msgid "View SNMP Notification Receivers" msgstr "" #: /var/www/html/cacti/lib/functions.php:2381 msgid "Cacti Settings" msgstr "Cacti Einstellungen" #: /var/www/html/cacti/lib/functions.php:2399 #: /var/www/html/cacti/lib/functions.php:2429 msgid "(Action)" msgstr "(Aktion)" #: /var/www/html/cacti/lib/functions.php:2447 msgid "Export Results" msgstr "Ergebnisse exportieren" #: /var/www/html/cacti/lib/functions.php:2459 #: /var/www/html/cacti/lib/functions.php:2489 #: /var/www/html/cacti/lib/html.php:1336 /var/www/html/cacti/lib/html.php:1338 #: /var/www/html/cacti/lib/html.php:1419 msgid "Reporting" msgstr "Berichte" #: /var/www/html/cacti/lib/functions.php:2465 #: /var/www/html/cacti/lib/functions.php:2495 msgid "Report Add" msgstr "Bericht hinzufügen" #: /var/www/html/cacti/lib/functions.php:2471 #: /var/www/html/cacti/lib/functions.php:2501 msgid "Report Delete" msgstr "Bericht löschen" #: /var/www/html/cacti/lib/functions.php:2477 #: /var/www/html/cacti/lib/functions.php:2507 msgid "Report Edit" msgstr "Bericht bearbeiten" #: /var/www/html/cacti/lib/functions.php:2483 #: /var/www/html/cacti/lib/functions.php:2513 msgid "Report Edit Item" msgstr "" #: /var/www/html/cacti/lib/functions.php:2537 msgid "Color Template Items" msgstr "Elemente von Farbvorlagen" #: /var/www/html/cacti/lib/functions.php:2579 msgid "Aggregate Items" msgstr "" #: /var/www/html/cacti/lib/functions.php:2615 msgid "Graph Rule Items" msgstr "" #: /var/www/html/cacti/lib/functions.php:2639 msgid "Tree Rule Items" msgstr "" #: /var/www/html/cacti/lib/functions.php:2738 msgid "Leaf" msgstr "Blatt" #: /var/www/html/cacti/lib/functions.php:2752 msgid "Non Query Based" msgstr "" #: /var/www/html/cacti/lib/functions.php:3491 msgid "" "Mailer Error: No TO address set!!
    If using the Test Mail " "link, please set the Alert e-mail setting." msgstr "" #: /var/www/html/cacti/lib/functions.php:3801 #, php-format msgid "Authentication failed: %s" msgstr "" #: /var/www/html/cacti/lib/functions.php:3805 #, php-format msgid "HELO failed: %s" msgstr "" #: /var/www/html/cacti/lib/functions.php:3808 #, php-format msgid "Connect failed: %s" msgstr "" #: /var/www/html/cacti/lib/functions.php:3811 msgid "SMTP error: " msgstr "" #: /var/www/html/cacti/lib/functions.php:3824 msgid "" "This is a test message generated from Cacti. This message was sent to test " "the configuration of your Mail Settings." msgstr "" #: /var/www/html/cacti/lib/functions.php:3825 msgid "Your email settings are currently set as follows" msgstr "Ihre e-Mail-Einstellungen sind derzeit wie folgt festgelegt" #: /var/www/html/cacti/lib/functions.php:3826 msgid "Method" msgstr "" #: /var/www/html/cacti/lib/functions.php:3828 msgid "Checking Configuration...
    " msgstr "" #: /var/www/html/cacti/lib/functions.php:3835 msgid "PHP's Mailer Class" msgstr "" #: /var/www/html/cacti/lib/functions.php:3841 msgid "Method: SMTP" msgstr "" #: /var/www/html/cacti/lib/functions.php:3856 msgid "Not Shown for Security Reasons" msgstr "" #: /var/www/html/cacti/lib/functions.php:3857 msgid "Security" msgstr "" #: /var/www/html/cacti/lib/functions.php:3865 msgid "Ping Results:" msgstr "" #: /var/www/html/cacti/lib/functions.php:3874 #, fuzzy #| msgid "Bad password" msgid "Bypassed" msgstr "Kennwort falsch" #: /var/www/html/cacti/lib/functions.php:3882 msgid "Creating Message Text..." msgstr "" #: /var/www/html/cacti/lib/functions.php:3885 msgid "Sending Message..." msgstr "" #: /var/www/html/cacti/lib/functions.php:3889 msgid "Cacti Test Message" msgstr "" #: /var/www/html/cacti/lib/functions.php:3891 msgid "Success!" msgstr "" #: /var/www/html/cacti/lib/functions.php:3894 msgid "Message Not Sent due to ping failure." msgstr "" #: /var/www/html/cacti/lib/html.php:233 msgid "Data Query:" msgstr "Datenabfrage:" #: /var/www/html/cacti/lib/html.php:293 msgid "CSV Export of Graph Data" msgstr "" #: /var/www/html/cacti/lib/html.php:296 msgid "Click to view just this Graph in Real-time" msgstr "" #: /var/www/html/cacti/lib/html.php:299 msgid "Kill Spikes in Graphs" msgstr "" #: /var/www/html/cacti/lib/html.php:336 msgid "Previous" msgstr "Voriges" #: /var/www/html/cacti/lib/html.php:339 #, php-format msgid "%d to %d of %s [ %s ]" msgstr "" #: /var/www/html/cacti/lib/html.php:348 #, php-format msgid "All %d %s" msgstr "" #: /var/www/html/cacti/lib/html.php:354 #, php-format msgid "No %s Found" msgstr "" #: /var/www/html/cacti/lib/html.php:875 msgid "Alpha %" msgstr "" #: /var/www/html/cacti/lib/html.php:916 msgid "No Task" msgstr "Keine Aufgabe" #: /var/www/html/cacti/lib/html.php:1160 msgid "Choose an action" msgstr "Eine Aktion wählen" #: /var/www/html/cacti/lib/html.php:1170 msgid "Execute Action" msgstr "" #: /var/www/html/cacti/lib/html.php:1345 /var/www/html/cacti/lib/html.php:1347 #: /var/www/html/cacti/lib/html.php:1430 /var/www/html/cacti/managers.php:41 #: /var/www/html/cacti/managers.php:221 msgid "Logs" msgstr "" #: /var/www/html/cacti/lib/html.php:1751 msgid "Nan's" msgstr "" #: /var/www/html/cacti/lib/html.php:1755 msgid "Standard Deviations" msgstr "" #: /var/www/html/cacti/lib/html.php:1757 #, php-format msgid "%s Standard Deviations" msgstr "%s Standardabweichungen" #: /var/www/html/cacti/lib/html.php:1767 msgid "Variance Outliers" msgstr "" #: /var/www/html/cacti/lib/html.php:1769 #, php-format msgid "%d Outliers" msgstr "%d Ausreißer" #: /var/www/html/cacti/lib/html.php:1773 msgid "Kills Per RRA" msgstr "" #: /var/www/html/cacti/lib/html.php:1775 #, php-format msgid "%d Spikes" msgstr "%d Spitzen" #: /var/www/html/cacti/lib/html.php:1782 msgid "Remove StdDev" msgstr "" #: /var/www/html/cacti/lib/html.php:1783 msgid "Remove Variance" msgstr "" #: /var/www/html/cacti/lib/html.php:1784 msgid "Gap Fill Range" msgstr "" #: /var/www/html/cacti/lib/html.php:1785 msgid "Float Range" msgstr "" #: /var/www/html/cacti/lib/html.php:1786 msgid "Dry Run StdDev" msgstr "" #: /var/www/html/cacti/lib/html.php:1787 msgid "Dry Run Variance" msgstr "" #: /var/www/html/cacti/lib/html.php:1788 msgid "Dry Run Gap Fill Range" msgstr "" #: /var/www/html/cacti/lib/html.php:1789 msgid "Dry Run Float Range" msgstr "" #: /var/www/html/cacti/lib/html_filter.php:82 msgid "Apply filter to table" msgstr "" #: /var/www/html/cacti/lib/html_filter.php:87 msgid "Reset filter to default values" msgstr "" #: /var/www/html/cacti/lib/html_form.php:512 msgid "File Found" msgstr "" #: /var/www/html/cacti/lib/html_form.php:514 msgid "Path is a Directory and not a File" msgstr "" #: /var/www/html/cacti/lib/html_form.php:518 msgid "File is Not Found" msgstr "" #: /var/www/html/cacti/lib/html_form.php:521 msgid "Enter a valid file path" msgstr "" #: /var/www/html/cacti/lib/html_form.php:557 msgid "Directory Found" msgstr "" #: /var/www/html/cacti/lib/html_form.php:559 msgid "Path is a File and not a Directory" msgstr "" #: /var/www/html/cacti/lib/html_form.php:563 msgid "Directory is Not found" msgstr "" #: /var/www/html/cacti/lib/html_form.php:566 msgid "Enter a valid directory path" msgstr "" #: /var/www/html/cacti/lib/html_form.php:1024 #, php-format msgid "Cacti Color (%s)" msgstr "" #: /var/www/html/cacti/lib/html_form.php:1081 msgid "NO FONT VERIFICATION POSSIBLE" msgstr "" #: /var/www/html/cacti/lib/html_form_template.php:562 #: /var/www/html/cacti/lib/html_form_template.php:577 #, fuzzy, php-format #| msgid "Data query data sources must be created through %sNew Graphs%s." msgid "Data Query Data Sources must be created through %s" msgstr "" "Datenquellen für Datenabfragen müssen angelegt werden über %sNeue Diagramme" "%s." #: /var/www/html/cacti/lib/html_graph.php:194 #: /var/www/html/cacti/lib/html_tree.php:639 msgid "" "Save the current Graphs, Columns, Thumbnail, Preset, and Timeshift " "preferences to your profile" msgstr "" #: /var/www/html/cacti/lib/html_graph.php:224 #: /var/www/html/cacti/lib/html_tree.php:663 msgid "Columns" msgstr "" #: /var/www/html/cacti/lib/html_graph.php:228 #: /var/www/html/cacti/lib/html_tree.php:667 #, php-format msgid "%d Column" msgstr "%d Spalte" #: /var/www/html/cacti/lib/html_graph.php:239 #: /var/www/html/cacti/lib/html_reports.php:125 #: /var/www/html/cacti/lib/html_tree.php:678 msgid "Thumbnails" msgstr "" #: /var/www/html/cacti/lib/html_graph.php:258 #: /var/www/html/cacti/lib/html_tree.php:697 msgid "Custom" msgstr "Eigenes" #: /var/www/html/cacti/lib/html_graph.php:271 #: /var/www/html/cacti/lib/html_reports.php:1513 #: /var/www/html/cacti/lib/html_reports.php:1524 #: /var/www/html/cacti/lib/html_tree.php:710 msgid "From" msgstr "Von" #: /var/www/html/cacti/lib/html_graph.php:276 #: /var/www/html/cacti/lib/html_tree.php:715 msgid "Start Date Selector" msgstr "Datumsanfang Auswahl" #: /var/www/html/cacti/lib/html_graph.php:280 #: /var/www/html/cacti/lib/html_reports.php:1514 #: /var/www/html/cacti/lib/html_reports.php:1525 #: /var/www/html/cacti/lib/html_tree.php:719 msgid "To" msgstr "An" #: /var/www/html/cacti/lib/html_graph.php:285 #: /var/www/html/cacti/lib/html_tree.php:724 msgid "End Date Selector" msgstr "Datumsende Auswahl" #: /var/www/html/cacti/lib/html_graph.php:290 #: /var/www/html/cacti/lib/html_tree.php:729 msgid "Shift Time Backward" msgstr "" #: /var/www/html/cacti/lib/html_graph.php:291 #: /var/www/html/cacti/lib/html_tree.php:730 msgid "Define Shifting Interval" msgstr "Verschiebungs-Intervall definieren" #: /var/www/html/cacti/lib/html_graph.php:302 #: /var/www/html/cacti/lib/html_tree.php:741 msgid "Shift Time Forward" msgstr "" #: /var/www/html/cacti/lib/html_graph.php:307 #: /var/www/html/cacti/lib/html_tree.php:746 msgid "Refresh selected time span" msgstr "" #: /var/www/html/cacti/lib/html_graph.php:308 #: /var/www/html/cacti/lib/html_tree.php:747 msgid "Return to the default time span" msgstr "" #: /var/www/html/cacti/lib/html_graph.php:326 msgid "Interval" msgstr "Intervall" #: /var/www/html/cacti/lib/html_graph.php:338 #: /var/www/html/cacti/lib/html_tree.php:777 msgid "Stop" msgstr "" #: /var/www/html/cacti/lib/html_graph.php:421 #: /var/www/html/cacti/lib/html_tree.php:861 #: /var/www/html/cacti/settings.php:216 /var/www/html/cacti/settings.php:235 #: /var/www/html/cacti/settings.php:284 msgid "Enter keyword" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:35 #: /var/www/html/cacti/lib/html_reports.php:1508 msgid "Report Name" msgstr "Name des Berichts" #: /var/www/html/cacti/lib/html_reports.php:37 msgid "New Report" msgstr "Neuer Bericht" #: /var/www/html/cacti/lib/html_reports.php:38 msgid "Give this Report a descriptive Name" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:43 msgid "Enable Report" msgstr "Bericht aktivieren" #: /var/www/html/cacti/lib/html_reports.php:46 msgid "Check this box to enable this Report." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:51 msgid "Output Formatting" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:56 msgid "Use Custom Format HTML" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:59 msgid "Check this box if you want to use custom html and CSS for the report." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:64 msgid "Format File to Use" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:67 msgid "" "Choose the custom html wrapper and CSS file to use. This file contains both " "html and CSS to wrap around your report.\n" "\t\tIf it contains more than simply CSS, you need to place a special " " tag inside of the file. This format tag will be replaced by the " "report content. These files are located in the 'formats' directory." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:73 msgid "Default Text Font Size" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:74 msgid "" "Defines the default font size for all text in the report including the " "Report Title." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:81 msgid "Default Object Alignment" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:82 msgid "Defines the default Alignment for Text and Graphs." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:89 msgid "Graph Linked" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:92 msgid "Should the Graphs be linked back to the Cacti site?" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:96 msgid "Graph Settings" msgstr "Diagramm Einstellungen" #: /var/www/html/cacti/lib/html_reports.php:101 msgid "Graph Columns" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:105 msgid "The number of Graph columns." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:113 msgid "The Graph width in pixels." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:121 msgid "The Graph height in pixels." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:128 msgid "Should the Graphs be rendered as Thumbnails?" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:132 msgid "Email Frequency" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:137 msgid "Next Timestamp for Sending Mail Report" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:138 msgid "" "Start time for [first|next] mail to take place. All future mailing times " "will be based upon this start time. A good example would be 2:00am. The time " "must be in the future. If a fractional time is used, say 2:00am, it is " "assumed to be in the future." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:146 msgid "Report Interval" msgstr "Berichtsintervall" #: /var/www/html/cacti/lib/html_reports.php:147 msgid "Defines a Report Frequency relative to the given Mailtime above." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:148 msgid "e.g. 'Week(s)' represents a weekly Reporting Interval." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:155 msgid "Interval Frequency" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:156 msgid "" "Based upon the Timespan of the Report Interval above, defines the Frequency " "within that Interval." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:157 msgid "" "e.g. If the Report Interval is 'Month(s)', then '2' indicates Every '2 " "Month(s) from the next Mailtime.' Lastly, if using the Month(s) Report " "Intervals, the 'Day of Week' and the 'Day of Month' are both calculated " "based upon the Mailtime you specify above." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:165 msgid "Email Sender/Receiver Details" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:170 msgid "Subject" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:172 msgid "Cacti Report" msgstr "Cacti-Bericht" #: /var/www/html/cacti/lib/html_reports.php:173 msgid "" "This value will be used as the default Email subject. The report name will " "be used if left blank." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:181 msgid "This Name will be used as the default E-mail Sender" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:189 msgid "This Address will be used as the E-mail Senders address" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:194 msgid "To Email Address(es)" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:200 msgid "Please separate multiple addresses by comma (,)" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:205 msgid "BCC Address(es)" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:211 msgid "Blind carbon copy. Please separate multiple addresses by comma (,)" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:216 msgid "Image attach type" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:219 msgid "Select one of the given Types for the Image Attachments" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:302 msgid "Item Type to be added." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:308 msgid "Graph Tree" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:312 msgid "Select a Tree to use." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:318 msgid "Graph Tree Branch" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:322 msgid "Select a Tree Branch to use." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:324 msgid "Branch:" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:330 #: /var/www/html/cacti/lib/html_tree.php:586 msgid "Device:" msgstr "Zielsystem:" #: /var/www/html/cacti/lib/html_reports.php:340 msgid "Cascade to Branches" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:343 msgid "Should all children branch Graphs be rendered?" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:347 msgid "Graph Name Regular Expression" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:350 msgid "" "A Perl compatible regular expression (REGEXP) used to select graphs to " "include from the tree." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:360 msgid "Select a Device Template to use." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:369 msgid "Select a Device to specify a Graph" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:379 msgid "Select a Graph Template for the host" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:389 msgid "The Graph to use for this report item." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:399 msgid "Graph End Time is always set to Cacti's schedule." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:400 msgid "Graph Start Time equals Graph End Time minus given timespan" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:405 #: /var/www/html/cacti/lib/html_reports.php:1249 msgid "Alignment" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:408 msgid "Alignment of the Item" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:413 msgid "Fixed Text" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:416 msgid "Enter descriptive Text" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:421 #: /var/www/html/cacti/lib/html_reports.php:1250 msgid "Font Size" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:425 msgid "Font Size of the Item" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:488 msgid "Date/Time moved to the same time Tomorrow" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:671 msgid "You must select at least one Report." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:679 msgid "Click 'Continue' to delete the following Report(s)." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:686 msgid "Click 'Continue' to take ownership of the following Report(s)." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:693 msgid "" "Click 'Continue' to duplicate the following Report(s). You may optionally " "change the title for the new Reports" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:695 msgid "Name Format:" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:705 msgid "Click 'Continue' to enable the following Report(s)." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:707 msgid "" "Please be certain that those Report(s) have successfully been tested first!" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:713 msgid "Click 'Continue' to disable the following Reports." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:720 msgid "Click 'Continue' to send the following Report(s) now." msgstr "" # decimal ? not string? #: /var/www/html/cacti/lib/html_reports.php:766 #, php-format msgid "Unable to send Report '%d'. Please set destination e-mail addresses" msgstr "" "Bericht '%d' konnte nicht versendet werden. Bitte geben Sie entsprechende " "Zieladressen an." #: /var/www/html/cacti/lib/html_reports.php:771 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail subject" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:776 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail From Name" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:781 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail from address" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:826 #, php-format msgid "Report Item [edit Report: %s]" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:828 #, php-format msgid "Report Item [new Report: %s]" msgstr "Berichtselement [neuer Bericht: %s]" #: /var/www/html/cacti/lib/html_reports.php:1094 #: /var/www/html/cacti/user_admin.php:1951 #, php-format msgid "[edit: %s]" msgstr "[ändern: %s]" #: /var/www/html/cacti/lib/html_reports.php:1095 msgid "Events" msgstr "Ereignisse" #: /var/www/html/cacti/lib/html_reports.php:1097 #: /var/www/html/cacti/lib/import.php:1802 #: /var/www/html/cacti/user_admin.php:1953 msgid "[new]" msgstr "[Neu]" #: /var/www/html/cacti/lib/html_reports.php:1129 msgid "Send Report" msgstr "Bericht senden" #: /var/www/html/cacti/lib/html_reports.php:1207 msgid "Scheduled Events" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:1218 msgid "Report Preview" msgstr "Berichtsvorschau" #: /var/www/html/cacti/lib/html_reports.php:1247 msgid "Item Details" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:1248 msgid "Timespan" msgstr "Zeitspanne" #: /var/www/html/cacti/lib/html_reports.php:1287 msgid "(All Branches)" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:1289 msgid "(Current Branch)" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:1332 msgid "No Report Items" msgstr "Keine Berichtselemente" #: /var/www/html/cacti/lib/html_reports.php:1406 msgid "Administrator Level" msgstr "Administrator Level" #: /var/www/html/cacti/lib/html_reports.php:1406 #, php-format msgid "Reports [%s]" msgstr "Berichte [%s]" #: /var/www/html/cacti/lib/html_reports.php:1406 msgid "User Level" msgstr "Benutzer Level" #: /var/www/html/cacti/lib/html_reports.php:1429 #: /var/www/html/cacti/lib/html_reports.php:1500 msgid "Reports" msgstr "Berichte" #: /var/www/html/cacti/lib/html_reports.php:1509 #: /var/www/html/cacti/tree.php:1586 msgid "Owner" msgstr "Inhaber" #: /var/www/html/cacti/lib/html_reports.php:1510 #: /var/www/html/cacti/lib/html_reports.php:1521 msgid "Frequency" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:1511 #: /var/www/html/cacti/lib/html_reports.php:1522 msgid "Last Run" msgstr "Letzte Ausführung" #: /var/www/html/cacti/lib/html_reports.php:1512 #: /var/www/html/cacti/lib/html_reports.php:1523 msgid "Next Run" msgstr "Nächste Ausführung" #: /var/www/html/cacti/lib/html_reports.php:1520 msgid "Report Title" msgstr "Berichtstitel" #: /var/www/html/cacti/lib/html_reports.php:1551 msgid "Report Disabled - No Owner" msgstr "Bericht deaktiviert - kein Besitzer" #: /var/www/html/cacti/lib/html_reports.php:1555 msgid "Every" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:1561 msgid "Multiple" msgstr "Vielfach" #: /var/www/html/cacti/lib/html_reports.php:1562 msgid "Invalid" msgstr "Ungültig" #: /var/www/html/cacti/lib/html_reports.php:1569 msgid "No Reports Found" msgstr "Keine Berichte gefunden" #: /var/www/html/cacti/lib/html_tree.php:573 #: /var/www/html/cacti/lib/html_tree.php:576 #: /var/www/html/cacti/lib/html_tree.php:579 msgid "Graph Template:" msgstr "Diagramm Schablone:" #: /var/www/html/cacti/lib/html_tree.php:584 #: /var/www/html/cacti/lib/reports.php:901 msgid "Tree:" msgstr "Baum:" #: /var/www/html/cacti/lib/html_tree.php:585 #: /var/www/html/cacti/lib/reports.php:906 msgid "Leaf:" msgstr "Blatt:" #: /var/www/html/cacti/lib/html_tree.php:589 msgid "Applied" msgstr "Übernommen" #: /var/www/html/cacti/lib/html_tree.php:589 msgid "Filter" msgstr "Filter" #: /var/www/html/cacti/lib/html_tree.php:589 msgid "Graph Filters" msgstr "" #: /var/www/html/cacti/lib/html_tree.php:636 msgid "Set/Refresh Filter" msgstr "" #: /var/www/html/cacti/lib/html_utility.php:229 msgid "Selected" msgstr "Ausgewählt" #: /var/www/html/cacti/lib/html_utility.php:431 #: /var/www/html/cacti/lib/html_utility.php:647 #, php-format msgid "The search term \"%s\" is not valid. Error is %s" msgstr "" #: /var/www/html/cacti/lib/html_utility.php:790 msgid "There was an internal error!" msgstr "" #: /var/www/html/cacti/lib/html_utility.php:791 msgid "Backtrack limit was exhausted!" msgstr "" #: /var/www/html/cacti/lib/html_utility.php:792 msgid "Recursion limit was exhausted!" msgstr "" #: /var/www/html/cacti/lib/html_utility.php:793 msgid "Bad UTF-8 error!" msgstr "" #: /var/www/html/cacti/lib/html_utility.php:794 msgid "Bad UTF-8 offset error!" msgstr "" #: /var/www/html/cacti/lib/html_validate.php:54 #, php-format msgid "" "Validation error for variable %s with a value of %s. See backtrace below " "for more details." msgstr "" #: /var/www/html/cacti/lib/import.php:229 msgid "written" msgstr "geschrieben" #: /var/www/html/cacti/lib/import.php:231 msgid "could not open" msgstr "" #: /var/www/html/cacti/lib/import.php:237 msgid "not exists" msgstr "" #: /var/www/html/cacti/lib/import.php:240 #: /var/www/html/cacti/lib/import.php:244 msgid "not writable" msgstr "" #: /var/www/html/cacti/lib/import.php:246 msgid "writable" msgstr "" #: /var/www/html/cacti/lib/import.php:1763 msgid "Import Preview Results" msgstr "" #: /var/www/html/cacti/lib/import.php:1763 msgid "Import Results" msgstr "Ergebnisse importieren" #: /var/www/html/cacti/lib/import.php:1767 msgid "Cacti would make the following changes if the Package was imported:" msgstr "" #: /var/www/html/cacti/lib/import.php:1769 msgid "Cacti has imported the following items for the Package:" msgstr "" #: /var/www/html/cacti/lib/import.php:1772 msgid "Package Files" msgstr "" #: /var/www/html/cacti/lib/import.php:1776 msgid "[preview] " msgstr "" #: /var/www/html/cacti/lib/import.php:1781 msgid "Cacti would make the following changes if the Template was imported:" msgstr "" #: /var/www/html/cacti/lib/import.php:1783 msgid "Cacti has imported the following items for the Template:" msgstr "" #: /var/www/html/cacti/lib/import.php:1792 #, fuzzy msgid "[success]" msgstr "[Erfolg]" #: /var/www/html/cacti/lib/import.php:1794 #, fuzzy msgid "[fail]" msgstr "[Fehler]" #: /var/www/html/cacti/lib/import.php:1796 msgid "[preview]" msgstr "" #: /var/www/html/cacti/lib/import.php:1800 msgid "[updated]" msgstr "[Aktualisiert]" #: /var/www/html/cacti/lib/import.php:1804 msgid "[unchanged]" msgstr "[Unverändert]" #: /var/www/html/cacti/lib/import.php:1840 msgid "Found Dependency:" msgstr "Abhängigkeit gefunden:" #: /var/www/html/cacti/lib/import.php:1842 msgid "Unmet Dependency:" msgstr "Ungelöste Abhängigkeit gefunden:" #: /var/www/html/cacti/lib/ldap.php:215 /var/www/html/cacti/lib/ldap.php:393 msgid "PHP LDAP not enabled" msgstr "" #: /var/www/html/cacti/lib/ldap.php:222 /var/www/html/cacti/lib/ldap.php:401 msgid "No username defined" msgstr "" #: /var/www/html/cacti/lib/ldap.php:249 msgid "Protocol Error, Unable to set version" msgstr "" #: /var/www/html/cacti/lib/ldap.php:260 /var/www/html/cacti/lib/ldap.php:465 msgid "Unable to set referrals option" msgstr "" #: /var/www/html/cacti/lib/ldap.php:272 /var/www/html/cacti/lib/ldap.php:478 msgid "Protocol Error, unable to start TLS communications" msgstr "" #: /var/www/html/cacti/lib/ldap.php:311 /var/www/html/cacti/lib/ldap.php:330 msgid "Authentication Success" msgstr "" #: /var/www/html/cacti/lib/ldap.php:314 msgid "Insufficient access" msgstr "" #: /var/www/html/cacti/lib/ldap.php:321 msgid "Group DN could not be found to compare" msgstr "" #: /var/www/html/cacti/lib/ldap.php:338 /var/www/html/cacti/lib/ldap.php:522 msgid "Protocol Error" msgstr "" #: /var/www/html/cacti/lib/ldap.php:342 msgid "Authentication Failure" msgstr "" #: /var/www/html/cacti/lib/ldap.php:346 /var/www/html/cacti/lib/ldap.php:532 msgid "Insufficient Access" msgstr "" #: /var/www/html/cacti/lib/ldap.php:350 /var/www/html/cacti/lib/ldap.php:537 msgid "Unable to Connect to Server" msgstr "" #: /var/www/html/cacti/lib/ldap.php:354 /var/www/html/cacti/lib/ldap.php:542 msgid "Connection Timeout" msgstr "" #: /var/www/html/cacti/lib/ldap.php:358 /var/www/html/cacti/lib/ldap.php:547 msgid "General Bind Error, LDAP result:" msgstr "" #: /var/www/html/cacti/lib/ldap.php:364 msgid "Unable to Create LDAP Object" msgstr "" #: /var/www/html/cacti/lib/ldap.php:417 /var/www/html/cacti/lib/ldap.php:496 msgid "User found" msgstr "" #: /var/www/html/cacti/lib/ldap.php:424 msgid "Specific DN and Password required" msgstr "" #: /var/www/html/cacti/lib/ldap.php:453 msgid "Protocol Error, unable to set version" msgstr "" #: /var/www/html/cacti/lib/ldap.php:502 msgid "More than one matching user found" msgstr "" #: /var/www/html/cacti/lib/ldap.php:507 /var/www/html/cacti/lib/ldap.php:513 msgid "Unable to find users DN" msgstr "" #: /var/www/html/cacti/lib/ldap.php:527 msgid "Invalid Credentials" msgstr "" #: /var/www/html/cacti/lib/ldap.php:554 msgid "Unable to create LDAP connection object" msgstr "" #: /var/www/html/cacti/lib/ping.php:130 msgid "ICMP Ping timed out" msgstr "" #: /var/www/html/cacti/lib/ping.php:202 /var/www/html/cacti/lib/ping.php:220 #, php-format msgid "ICMP Ping Success (%s ms)" msgstr "" #: /var/www/html/cacti/lib/ping.php:207 /var/www/html/cacti/lib/ping.php:225 msgid "ICMP ping Timed out" msgstr "" #: /var/www/html/cacti/lib/ping.php:232 /var/www/html/cacti/lib/ping.php:451 #: /var/www/html/cacti/lib/ping.php:580 msgid "Destination address not specified" msgstr "" #: /var/www/html/cacti/lib/ping.php:329 /var/www/html/cacti/lib/ping.php:466 msgid "default" msgstr "" #: /var/www/html/cacti/lib/ping.php:357 /var/www/html/cacti/lib/ping.php:366 #: /var/www/html/cacti/lib/ping.php:494 /var/www/html/cacti/lib/ping.php:503 msgid "Please upgrade to PHP 5.5.4+ for IPv6 support!" msgstr "" #: /var/www/html/cacti/lib/ping.php:389 #, php-format msgid "UDP ping error: %s" msgstr "" #: /var/www/html/cacti/lib/ping.php:429 #, php-format msgid "UDP Ping Success (%s ms)" msgstr "" #: /var/www/html/cacti/lib/ping.php:526 #, php-format msgid "TCP ping: socket_connect(), reason: %s" msgstr "" #: /var/www/html/cacti/lib/ping.php:544 #, php-format msgid "TCP ping: socket_select() failed, reason: %s" msgstr "" #: /var/www/html/cacti/lib/ping.php:559 #, php-format msgid "TCP Ping Success (%s ms)" msgstr "" #: /var/www/html/cacti/lib/ping.php:569 msgid "TCP ping timed out" msgstr "" #: /var/www/html/cacti/lib/ping.php:596 msgid "Ping not performed due to setting." msgstr "" #: /var/www/html/cacti/lib/plugins.php:488 #, php-format msgid "Plugin %s is required for %s, and it is not installed." msgstr "" #: /var/www/html/cacti/lib/plugins.php:495 msgid "Plugin cannot be installed." msgstr "" #: /var/www/html/cacti/lib/plugins.php:772 #: /var/www/html/cacti/lib/plugins.php:779 /var/www/html/cacti/plugins.php:279 msgid "Plugin Management" msgstr "Plugin Verwaltung" #: /var/www/html/cacti/lib/plugins.php:790 #: /var/www/html/cacti/lib/plugins.php:796 #, php-format msgid "Requires: Cacti >= %s" msgstr "" #: /var/www/html/cacti/lib/plugins.php:793 msgid "Legacy Plugin" msgstr "" #: /var/www/html/cacti/lib/reports.php:911 msgid "Host:" msgstr "Host:" #: /var/www/html/cacti/lib/reports.php:916 msgid "Graph:" msgstr "Diagramm:" #: /var/www/html/cacti/lib/reports.php:1018 msgid "(No Graph Template)" msgstr "(Keine Diagramm Vorlage)" #: /var/www/html/cacti/lib/reports.php:1437 msgid "Add to Report" msgstr "Zu Bericht hinzufügen" #: /var/www/html/cacti/lib/reports.php:1455 msgid "" "Choose the Report to associate these graphs with. The defaults for " "alignment will be used for each graph in the list below." msgstr "" #: /var/www/html/cacti/lib/reports.php:1457 msgid "Report:" msgstr "Bericht:" #: /var/www/html/cacti/lib/reports.php:1465 msgid "Graph Timespan:" msgstr "" #: /var/www/html/cacti/lib/reports.php:1468 msgid "Graph Alignment:" msgstr "" #: /var/www/html/cacti/lib/reports.php:1557 #, php-format msgid "Created Report Graph Item '%s'" msgstr "" #: /var/www/html/cacti/lib/reports.php:1559 #, php-format msgid "Failed Adding Report Graph Item '%s' Already Exists" msgstr "" #: /var/www/html/cacti/lib/reports.php:1562 #, php-format msgid "Skipped Report Graph Item '%s' Already Exists" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2417 #, php-format msgid "Required RRD step size is '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2455 #, php-format msgid "Type for Data Source '%s' should be '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2460 #, php-format msgid "Heartbeat for Data Source '%s' should be '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2468 #, php-format msgid "RRD minimum for Data Source '%s' should be '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2492 #, php-format msgid "RRD maximum for Data Source '%s' should be '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2502 #, php-format msgid "DS '%s' missing in RRDfile" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2511 #, php-format msgid "DS '%s' missing in Cacti definition" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2528 /var/www/html/cacti/lib/rrd.php:2529 #, php-format msgid "Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2543 /var/www/html/cacti/lib/rrd.php:2544 #, php-format msgid "File RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2575 #, php-format msgid "XFF for cacti RRA id '%s' should be '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2579 #, php-format msgid "Number of rows for Cacti RRA id '%s' should be '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2595 #, php-format msgid "RRA '%s' missing in RRDfile" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2604 #, php-format msgid "RRA '%s' missing in Cacti definition" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2623 msgid "RRD File Information" msgstr "RRD Datei Information" #: /var/www/html/cacti/lib/rrd.php:2655 msgid "Data Source Items" msgstr "Element der Datenquellen" #: /var/www/html/cacti/lib/rrd.php:2657 msgid "Minimal Heartbeat" msgstr "Kleinster Wert für 'Heartbeat'" #: /var/www/html/cacti/lib/rrd.php:2658 msgid "Min" msgstr "Minimum" #: /var/www/html/cacti/lib/rrd.php:2659 msgid "Max" msgstr "Maximum" #: /var/www/html/cacti/lib/rrd.php:2660 msgid "Last DS" msgstr "Letzte Datenquelle" #: /var/www/html/cacti/lib/rrd.php:2662 msgid "Unknown Sec" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2690 msgid "Round Robin Archive" msgstr "Round Robin Archive" #: /var/www/html/cacti/lib/rrd.php:2693 msgid "Cur Row" msgstr "Akt. Zeile" #: /var/www/html/cacti/lib/rrd.php:2694 msgid "PDP per Row" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2695 msgid "X Files Factor" msgstr "X Files Faktor" #: /var/www/html/cacti/lib/rrd.php:2696 msgid "CDP Prep Value (0)" msgstr "Wert des CDEF Elementes" #: /var/www/html/cacti/lib/rrd.php:2697 msgid "CDP Unknown Data points (0)" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2774 #, php-format msgid "rename %s to %s" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2824 msgid "Error while parsing the XML of rrdtool dump" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2856 /var/www/html/cacti/lib/rrd.php:2911 #: /var/www/html/cacti/lib/rrd.php:2967 #, php-format msgid "ERROR while writing XML file: %s" msgstr "FEHLER bei schreiben der XML Datei: %s" #: /var/www/html/cacti/lib/rrd.php:2867 /var/www/html/cacti/lib/rrd.php:2922 #, php-format msgid "ERROR: RRDfile %s not writeable" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2894 /var/www/html/cacti/lib/rrd.php:2950 msgid "Error while parsing the XML of RRDtool dump" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2978 #, php-format msgid "ERROR: RRD file %s not writeable" msgstr "" #: /var/www/html/cacti/lib/rrd.php:3183 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) removed from RRD file\n" msgstr "" #: /var/www/html/cacti/lib/rrd.php:3217 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) adding to RRD file\n" msgstr "" #: /var/www/html/cacti/lib/utility.php:686 msgid "" "MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions " "to choose. Make sure you run the very latest release though which fixes a " "long standing low level networking issue that was causing spine many issues " "with reliability." msgstr "" #: /var/www/html/cacti/lib/utility.php:698 #: /var/www/html/cacti/lib/utility.php:728 #, php-format msgid "" "It is recommended that you enable InnoDB in any %s version greater than 5.1." msgstr "" #: /var/www/html/cacti/lib/utility.php:711 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8_general_ci collation type as some characters take more than a " "single byte. If you are first just now installing Cacti, stop, make the " "changes and start over again. If your Cacti has been running and is in " "production, see the internet for instructions on converting your databases " "and tables if you plan on supporting other languages." msgstr "" #: /var/www/html/cacti/lib/utility.php:717 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8 character set as some characters take more than a single byte. If " "you are first just now installing Cacti, stop, make the changes and start " "over again. If your Cacti has been running and is in production, see the " "internet for instructions on converting your databases and tables if you " "plan on supporting other languages." msgstr "" #: /var/www/html/cacti/lib/utility.php:741 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8mb4_unicode_ci collation type as some characters take more than a " "single byte." msgstr "" #: /var/www/html/cacti/lib/utility.php:747 msgid "" "When using Cacti with languages other than English, it is important ot use " "the utf8mb4 character set as some characters take more than a single byte." msgstr "" #: /var/www/html/cacti/lib/utility.php:756 #, php-format msgid "" "Depending on the number of logins and use of spine data collector, %s will " "need many connections. The calculation for spine is: total_connections = " "total_processes * (total_threads + script_servers + 1), then you must leave " "headroom for user connections, which will change depending on the number of " "concurrent login accounts." msgstr "" #: /var/www/html/cacti/lib/utility.php:761 #, php-format msgid "" "If using the Cacti Performance Booster and choosing a memory storage engine, " "you have to be careful to flush your Performance Booster buffer before the " "system runs out of memory table space. This is done two ways, first " "reducing the size of your output column to just the right size. This column " "is in the tables poller_output, and poller_output_boost. The second thing " "you can do is allocate more memory to memory tables. We have arbitrarily " "chosen a recommended value of 10% of system memory, but if you are using SSD " "disk drives, or have a smaller system, you may ignore this recommendation or " "choose a different storage engine. You may see the expected consumption of " "the Performance Booster tables under Console -> System Utilities -> View " "Boost Status." msgstr "" #: /var/www/html/cacti/lib/utility.php:766 msgid "" "Keeping the table cache larger means less file open/close operations when " "using innodb_file_per_table." msgstr "" #: /var/www/html/cacti/lib/utility.php:771 msgid "" "With Remote polling capabilities, large amounts of data will be synced from " "the main server to the remote pollers. Therefore, keep this value at or " "above 16M." msgstr "" #: /var/www/html/cacti/lib/utility.php:776 msgid "" "When executing subqueries, having a larger temporary table size, keep those " "temporary tables in memory." msgstr "" #: /var/www/html/cacti/lib/utility.php:781 msgid "" "When performing joins, if they are below this size, they will be kept in " "memory and never written to a temporary file." msgstr "" #: /var/www/html/cacti/lib/utility.php:786 #, php-format msgid "" "When using InnoDB storage it is important to keep your table spaces " "separate. This makes managing the tables simpler for long time users of " "%s. If you are running with this currently off, you can migrate to the per " "file storage by enabling the feature, and then running an alter statement on " "all InnoDB tables." msgstr "" #: /var/www/html/cacti/lib/utility.php:791 #, php-format msgid "" "InnoDB will hold as much tables and indexes in system memory as is " "possible. Therefore, you should make the innodb_buffer_pool large enough to " "hold as much of the tables and index in memory. Checking the size of the /" "var/lib/mysql/cacti directory will help in determining this value. We are " "recommending 25% of your systems total memory, but your requirements will " "vary depending on your systems size." msgstr "" #: /var/www/html/cacti/lib/utility.php:796 #, php-format msgid "" "With modern SSD type storage, this operation actually degrades the disk more " "rapidly and adds a 50% overhead on all write operations." msgstr "" #: /var/www/html/cacti/lib/utility.php:801 msgid "" "This is where metadata is stored. If you had a lot of tables, it would be " "useful to increase this." msgstr "" #: /var/www/html/cacti/lib/utility.php:806 msgid "" "Rogue queries should not for the database to go offline to others. Kill " "these queries before they kill your system." msgstr "" #: /var/www/html/cacti/lib/utility.php:815 #, php-format msgid "" "Setting this value to 2 means that you will flush all transactions every " "second rather than at commit. This allows %s to perform writing less often." msgstr "" #: /var/www/html/cacti/lib/utility.php:820 msgid "" "With modern SSD type storage, having multiple io threads is advantageous for " "applications with high io characteristics." msgstr "" #: /var/www/html/cacti/lib/utility.php:828 #, php-format msgid "" "As of %s %s, the you can control how often %s flushes transactions to disk. " "The default is 1 second, but in high I/O systems setting to a value greater " "than 1 can allow disk I/O to be more sequential" msgstr "" #: /var/www/html/cacti/lib/utility.php:833 msgid "" "With modern SSD type storage, having multiple read io threads is " "advantageous for applications with high io characteristics." msgstr "" #: /var/www/html/cacti/lib/utility.php:838 msgid "" "With modern SSD type storage, having multiple write io threads is " "advantageous for applications with high io characteristics." msgstr "" #: /var/www/html/cacti/lib/utility.php:843 #, php-format msgid "" "%s will divide the innodb_buffer_pool into memory regions to improve " "performance. The max value is 64. When your innodb_buffer_pool is less " "than 1GB, you should use the pool size divided by 128MB. Continue to use " "this equation upto the max of 64." msgstr "" #: /var/www/html/cacti/lib/utility.php:848 #, php-format msgid "%s Tuning" msgstr "" #: /var/www/html/cacti/lib/utility.php:848 msgid "Documentation" msgstr "" #: /var/www/html/cacti/lib/utility.php:848 msgid "Note: Many changes below require a database restart" msgstr "" #: /var/www/html/cacti/lib/utility.php:855 msgid "Variable" msgstr "" #: /var/www/html/cacti/lib/utility.php:856 msgid "Current Value" msgstr "" #: /var/www/html/cacti/lib/utility.php:857 msgid "Recommended Value" msgstr "" #: /var/www/html/cacti/lib/utility.php:858 msgid "Comments" msgstr "" #: /var/www/html/cacti/lib/vdef.php:75 msgid "A useful name for this VDEF." msgstr "Ein hilfreicher Name für diese VDEF." #: /var/www/html/cacti/links.php:191 msgid "Click 'Continue' to Enable the following Page(s)." msgstr "" #: /var/www/html/cacti/links.php:196 msgid "Enable Page(s)" msgstr "" #: /var/www/html/cacti/links.php:200 msgid "Click 'Continue' to Disable the following Page(s)." msgstr "" #: /var/www/html/cacti/links.php:205 msgid "Disable Page(s)" msgstr "" #: /var/www/html/cacti/links.php:209 msgid "Click 'Continue' to Delete the following Page(s)." msgstr "" #: /var/www/html/cacti/links.php:214 msgid "Delete Page(s)" msgstr "" #: /var/www/html/cacti/links.php:217 msgid "You must select at least one page." msgstr "" #: /var/www/html/cacti/links.php:315 msgid "Links" msgstr "" #: /var/www/html/cacti/links.php:329 msgid "Apply Filter" msgstr "" #: /var/www/html/cacti/links.php:330 msgid "Reset filters" msgstr "" #: /var/www/html/cacti/links.php:344 /var/www/html/cacti/links.php:507 #: /var/www/html/cacti/user_admin.php:1646 #: /var/www/html/cacti/user_group_admin.php:1397 msgid "Top Tab" msgstr "" #: /var/www/html/cacti/links.php:345 /var/www/html/cacti/user_admin.php:1647 #: /var/www/html/cacti/user_group_admin.php:1398 msgid "Bottom Console" msgstr "" #: /var/www/html/cacti/links.php:346 /var/www/html/cacti/user_admin.php:1648 #: /var/www/html/cacti/user_group_admin.php:1399 msgid "Top Console" msgstr "" #: /var/www/html/cacti/links.php:377 msgid "Page" msgstr "" #: /var/www/html/cacti/links.php:379 /var/www/html/cacti/links.php:499 #: /var/www/html/cacti/links.php:504 msgid "Style" msgstr "" #: /var/www/html/cacti/links.php:391 msgid "Edit Page" msgstr "" #: /var/www/html/cacti/links.php:394 msgid "View Page" msgstr "" #: /var/www/html/cacti/links.php:418 msgid "Sort for Ordering" msgstr "" #: /var/www/html/cacti/links.php:427 msgid "No Pages Found" msgstr "" #: /var/www/html/cacti/links.php:508 msgid "Console Menu" msgstr "" #: /var/www/html/cacti/links.php:509 msgid "Bottom of Console Page" msgstr "" #: /var/www/html/cacti/links.php:510 msgid "Top of Console Page" msgstr "" #: /var/www/html/cacti/links.php:512 msgid "Where should this page appear?" msgstr "" #: /var/www/html/cacti/links.php:516 msgid "Console Menu Section" msgstr "" #: /var/www/html/cacti/links.php:519 msgid "" "Under which Console heading should this item appear? (All External Link " "menus will appear between Configuration and Utilities)" msgstr "" #: /var/www/html/cacti/links.php:523 msgid "New Console Section" msgstr "" #: /var/www/html/cacti/links.php:526 msgid "If you don't like any of the choices above, type a new title in here." msgstr "" #: /var/www/html/cacti/links.php:530 msgid "Tab/Menu Name" msgstr "" #: /var/www/html/cacti/links.php:533 msgid "The text that will appear in the tab or menu." msgstr "" #: /var/www/html/cacti/links.php:537 msgid "Content File/URL" msgstr "" #: /var/www/html/cacti/links.php:541 msgid "Web URL Below" msgstr "" #: /var/www/html/cacti/links.php:542 msgid "" "The file that contains the content for this page. This file needs to be in " "the Cacti 'include/content/' directory." msgstr "" #: /var/www/html/cacti/links.php:546 msgid "Web URL Location" msgstr "" #: /var/www/html/cacti/links.php:548 msgid "" "The valid URL to use for this external link. Must include the type, for " "example http://www.cacti.net. Note that many websites do not allow them to " "be embedded in an iframe from a foreign site, and therefore External Linking " "may not work." msgstr "" #: /var/www/html/cacti/links.php:566 #, php-format msgid "External Links [edit: %s]" msgstr "" #: /var/www/html/cacti/links.php:568 msgid "External Links [new]" msgstr "" #: /var/www/html/cacti/logout.php:74 /var/www/html/cacti/logout.php:128 msgid "Automatic Logout" msgstr "Automatische Abmeldung" #: /var/www/html/cacti/logout.php:76 /var/www/html/cacti/logout.php:130 msgid "You have been logged out of Cacti due to a session timeout." msgstr "Sie sind aufgrund von Inaktivität ausgeloggt worden." #: /var/www/html/cacti/logout.php:77 /var/www/html/cacti/logout.php:131 #, php-format msgid "Please close your browser or %sLogin Again%s" msgstr "" #: /var/www/html/cacti/managers.php:40 /var/www/html/cacti/managers.php:220 #: /var/www/html/cacti/managers.php:600 msgid "Notifications" msgstr "" #: /var/www/html/cacti/managers.php:141 /var/www/html/cacti/utilities.php:1872 msgid "SNMP Notification Receivers" msgstr "" #: /var/www/html/cacti/managers.php:156 /var/www/html/cacti/managers.php:225 #: /var/www/html/cacti/managers.php:529 /var/www/html/cacti/managers.php:829 msgid "Receivers" msgstr "" #: /var/www/html/cacti/managers.php:217 msgid "Id" msgstr "" #: /var/www/html/cacti/managers.php:251 msgid "No SNMP Notification Receivers" msgstr "" #: /var/www/html/cacti/managers.php:282 #, php-format msgid "SNMP Notification Receiver [edit: %s]" msgstr "" #: /var/www/html/cacti/managers.php:284 msgid "SNMP Notification Receiver [new]" msgstr "" #: /var/www/html/cacti/managers.php:508 /var/www/html/cacti/managers.php:593 #: /var/www/html/cacti/utilities.php:2318 #: /var/www/html/cacti/utilities.php:2392 msgid "MIB" msgstr "" #: /var/www/html/cacti/managers.php:592 /var/www/html/cacti/utilities.php:1453 #: /var/www/html/cacti/utilities.php:2392 msgid "OID" msgstr "" #: /var/www/html/cacti/managers.php:594 msgid "Kind" msgstr "" #: /var/www/html/cacti/managers.php:595 /var/www/html/cacti/utilities.php:2392 msgid "Max-Access" msgstr "" #: /var/www/html/cacti/managers.php:596 msgid "Monitored" msgstr "" #: /var/www/html/cacti/managers.php:632 msgid "No SNMP Notifications" msgstr "" #: /var/www/html/cacti/managers.php:761 /var/www/html/cacti/utilities.php:2569 msgid "Severity" msgstr "" #: /var/www/html/cacti/managers.php:777 /var/www/html/cacti/utilities.php:2613 msgid "Purge Notification Log" msgstr "" #: /var/www/html/cacti/managers.php:824 /var/www/html/cacti/utilities.php:2667 msgid "Time" msgstr "Zeit" #: /var/www/html/cacti/managers.php:825 /var/www/html/cacti/utilities.php:2667 msgid "Notification" msgstr "" #: /var/www/html/cacti/managers.php:826 /var/www/html/cacti/utilities.php:2667 msgid "Varbinds" msgstr "" #: /var/www/html/cacti/managers.php:843 msgid "Severity Level" msgstr "" #: /var/www/html/cacti/managers.php:860 /var/www/html/cacti/utilities.php:2689 msgid "No SNMP Notification Log Entries" msgstr "" #: /var/www/html/cacti/managers.php:1020 msgid "Click 'Continue' to delete the following Notification Receiver" msgid_plural "Click 'Continue' to delete following Notification Receiver" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/managers.php:1022 msgid "Click 'Continue' to enable the following Notification Receiver" msgid_plural "Click 'Continue' to enable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/managers.php:1024 msgid "Click 'Continue' to disable the following Notification Receiver" msgid_plural "Click 'Continue' to disable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/managers.php:1034 #, php-format msgid "%s Notification Receivers" msgstr "" #: /var/www/html/cacti/managers.php:1036 msgid "You must select at least one Notification Receiver." msgstr "" #: /var/www/html/cacti/managers.php:1081 msgid "" "Click 'Continue' to forward the following Notification Objects to this " "Notification Receiver." msgstr "" #: /var/www/html/cacti/managers.php:1082 msgid "" "Click 'Continue' to disable forwarding the following Notification Objects to " "this Notification Receiver." msgstr "" #: /var/www/html/cacti/managers.php:1091 msgid "Disable Notification Objects" msgstr "" #: /var/www/html/cacti/managers.php:1093 msgid "You must select at least one notification object." msgstr "" #: /var/www/html/cacti/plugins.php:28 #, fuzzy msgid "Install" msgstr "Installiert" #: /var/www/html/cacti/plugins.php:31 #, fuzzy msgid "Uninstall" msgstr "Deinstalliert" #: /var/www/html/cacti/plugins.php:36 msgid "Not Compatible" msgstr "" #: /var/www/html/cacti/plugins.php:37 /var/www/html/cacti/plugins.php:303 #: /var/www/html/cacti/utilities.php:428 msgid "Not Installed" msgstr "Nicht installiert" #: /var/www/html/cacti/plugins.php:39 msgid "Awaiting Configuration" msgstr "Warte auf Konfiguration" #: /var/www/html/cacti/plugins.php:40 msgid "Awaiting Upgrade" msgstr "Warte auf Upgrade" #: /var/www/html/cacti/plugins.php:169 msgid "Not Stated" msgstr "" #: /var/www/html/cacti/plugins.php:301 msgid "Active/Installed" msgstr "Aktiv/installiert" #: /var/www/html/cacti/plugins.php:302 msgid "Configuration Issues" msgstr "" #: /var/www/html/cacti/plugins.php:307 /var/www/html/cacti/plugins.php:376 msgid "Plugins" msgstr "Erweiterungen" #: /var/www/html/cacti/plugins.php:385 msgid "" "Actions available include 'Install', 'Activate', 'Disable', 'Enable', " "'Uninstall'." msgstr "" #: /var/www/html/cacti/plugins.php:386 msgid "Plugin Name" msgstr "" #: /var/www/html/cacti/plugins.php:386 msgid "" "The name for this Plugin. The name is controlled by the directory it " "resides in." msgstr "" #: /var/www/html/cacti/plugins.php:387 msgid "A description that the Plugins author has given to the Plugin." msgstr "" #: /var/www/html/cacti/plugins.php:387 msgid "Plugin Description" msgstr "" #: /var/www/html/cacti/plugins.php:388 msgid "The status of this Plugin." msgstr "" #: /var/www/html/cacti/plugins.php:389 msgid "The author of this Plugin." msgstr "" #: /var/www/html/cacti/plugins.php:390 msgid "The version of this Plugin." msgstr "" #: /var/www/html/cacti/plugins.php:391 #, fuzzy msgid "Load Order" msgstr "Feldanordnung" #: /var/www/html/cacti/plugins.php:391 msgid "" "The load order of the Plugin. You can change the load order by first " "sorting by it, then moving a Plugin either up or down." msgstr "" #: /var/www/html/cacti/plugins.php:419 msgid "No Plugins Found" msgstr "" #: /var/www/html/cacti/plugins.php:437 msgid "ERROR: Directory Missing" msgstr "" #: /var/www/html/cacti/plugins.php:443 #, php-format msgid "Not Compatible, %s" msgstr "" #: /var/www/html/cacti/plugins.php:454 msgid "Order Before Previous Plugin" msgstr "" #: /var/www/html/cacti/plugins.php:459 msgid "Order After Next Plugin" msgstr "" #: /var/www/html/cacti/plugins.php:483 msgid "Install Plugin" msgstr "" #: /var/www/html/cacti/plugins.php:487 /var/www/html/cacti/plugins.php:491 #: /var/www/html/cacti/plugins.php:494 msgid "Uninstall Plugin" msgstr "" #: /var/www/html/cacti/plugins.php:488 msgid "Disable Plugin" msgstr "" #: /var/www/html/cacti/plugins.php:495 msgid "Enable Plugin" msgstr "" #: /var/www/html/cacti/plugins.php:498 msgid "Plugin is not compatible" msgstr "" #: /var/www/html/cacti/pollers.php:32 msgid "Full Sync" msgstr "" #: /var/www/html/cacti/pollers.php:36 msgid "New/Idle" msgstr "" #: /var/www/html/cacti/pollers.php:39 msgid "Unknown/Down" msgstr "" #: /var/www/html/cacti/pollers.php:48 msgid "Data Collector Information" msgstr "" #: /var/www/html/cacti/pollers.php:53 msgid "The primary name for this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:56 msgid "New Data Collector" msgstr "" #: /var/www/html/cacti/pollers.php:61 msgid "Web Site Hostname" msgstr "" #: /var/www/html/cacti/pollers.php:62 msgid "" "The hostname for Data Collector. It may have to be a Fully Qualified Domain " "name for the remote Pollers to contact it for activities such as re-" "indexing, Real-time graphing, etc." msgstr "" #: /var/www/html/cacti/pollers.php:71 msgid "Notes for this Data Collectors Database." msgstr "" #: /var/www/html/cacti/pollers.php:78 msgid "Remote Database Connection" msgstr "" #: /var/www/html/cacti/pollers.php:83 msgid "The hostname for the remote database server." msgstr "" #: /var/www/html/cacti/pollers.php:91 msgid "Remote Database Name" msgstr "" #: /var/www/html/cacti/pollers.php:92 msgid "The name of the remote database." msgstr "" #: /var/www/html/cacti/pollers.php:100 msgid "Remote Database User" msgstr "" #: /var/www/html/cacti/pollers.php:101 msgid "The user name to use to connect to the remote database." msgstr "" #: /var/www/html/cacti/pollers.php:109 msgid "Remote Database Password" msgstr "" #: /var/www/html/cacti/pollers.php:110 msgid "The user password to use to connect to the remote database." msgstr "" #: /var/www/html/cacti/pollers.php:118 msgid "Remote Database Port" msgstr "" #: /var/www/html/cacti/pollers.php:119 msgid "The TCP port to use to connect to the remote database." msgstr "" #: /var/www/html/cacti/pollers.php:127 msgid "Remote Database SSL" msgstr "" #: /var/www/html/cacti/pollers.php:128 msgid "If the remote database uses SSL to connect, check the checkbox below." msgstr "" #: /var/www/html/cacti/pollers.php:283 msgid "" "Click 'Continue' to delete the following Data Collector. Note, all devices " "will be disassociated from this Data Collector and mapped back to the Main " "Cacti Data Collector." msgid_plural "" "Click 'Continue' to delete all following Data Collectors. Note, all devices " "will be disassociated from these Data Collectors and mapped back to the Main " "Cacti Data Collector." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/pollers.php:288 msgid "Delete Data Collector" msgid_plural "Delete Data Collectors" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/pollers.php:292 msgid "Click 'Continue' to disable the following Data Collector." msgid_plural "Click 'Continue' to disable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/pollers.php:297 msgid "Disable Data Collector" msgid_plural "Disable Data Collectors" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/pollers.php:301 msgid "Click 'Continue' to enable the following Data Collector." msgid_plural "Click 'Continue' to enable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/pollers.php:306 /var/www/html/cacti/pollers.php:315 msgid "Enable Data Collector" msgid_plural "Enable Data Collectors" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/pollers.php:310 msgid "" "Click 'Continue' to Synchronize the Remote Data Collector for Offline " "Operation." msgid_plural "" "Click 'Continue' to Synchronize the Remote Data Collectors for Offline " "Operation." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/pollers.php:318 /var/www/html/cacti/sites.php:294 msgid "You must select at least one Site." msgstr "Bitte wählen Sie mindestens einen Standort aus." #: /var/www/html/cacti/pollers.php:351 /var/www/html/cacti/sites.php:327 #, php-format msgid "Site [edit: %s]" msgstr "" #: /var/www/html/cacti/pollers.php:353 /var/www/html/cacti/sites.php:329 msgid "Site [new]" msgstr "" #: /var/www/html/cacti/pollers.php:379 msgid "" "Remote Data Collectors must be able to communicate to the Main Data " "Collector, and vice versa. Use this button to verify that the Main Data " "Collector can communicate to this Remote Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:387 #, fuzzy #| msgid "Data Collection" msgid "Test Connection" msgstr "Datensammlung" #: /var/www/html/cacti/pollers.php:387 #, fuzzy #| msgid "Data Collection" msgid "Test Database Connection" msgstr "Datensammlung" #: /var/www/html/cacti/pollers.php:523 msgid "Collectors" msgstr "" #: /var/www/html/cacti/pollers.php:612 msgid "Collector Name" msgstr "" #: /var/www/html/cacti/pollers.php:612 msgid "The Name of this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:613 msgid "The unique id associated with this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:614 msgid "The Hostname where the Data Collector is running." msgstr "" #: /var/www/html/cacti/pollers.php:615 msgid "The Status of this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:616 msgid "Polling Time" msgstr "" #: /var/www/html/cacti/pollers.php:616 msgid "The last data collection time for this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:617 msgid "The number of Devices associated with this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:618 msgid "SNMP Gets" msgstr "" #: /var/www/html/cacti/pollers.php:618 msgid "The number of SNMP gets associated with this Collector." msgstr "" #: /var/www/html/cacti/pollers.php:619 msgid "Scripts" msgstr "" #: /var/www/html/cacti/pollers.php:619 msgid "The number of script calls associated with this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:620 msgid "Servers" msgstr "" #: /var/www/html/cacti/pollers.php:620 msgid "The number of script server calls associated with this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:621 msgid "Last Finished" msgstr "" #: /var/www/html/cacti/pollers.php:621 msgid "The last time this Data Collector completed." msgstr "" #: /var/www/html/cacti/pollers.php:622 msgid "Last Update" msgstr "" #: /var/www/html/cacti/pollers.php:622 msgid "The last time this Data Collector checked in with the main Cacti site." msgstr "" #: /var/www/html/cacti/pollers.php:657 msgid "No Data Collectors Found" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:30 /var/www/html/cacti/tree.php:31 msgctxt "dropdown action" msgid "Delete" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:31 msgctxt "dropdown action" msgid "Archive" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:347 msgid "RRD File Name" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:348 msgid "DS Name" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:349 msgid "DS ID" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:350 msgid "Template ID" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:352 msgid "Last Modified" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:353 msgid "Size [KB]" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:364 #: /var/www/html/cacti/rrdcleaner.php:365 msgid "Deleted" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:373 msgid "No unused RRD Files" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:395 msgid "Total Size [MB]:" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:397 msgid "Last Scan:" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:481 msgid "Time Since Update" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:497 msgid "RRDfiles" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:513 #: /var/www/html/cacti/user_domains.php:643 #: /var/www/html/cacti/user_group_admin.php:1849 #: /var/www/html/cacti/user_group_admin.php:2202 #: /var/www/html/cacti/user_group_admin.php:2306 #: /var/www/html/cacti/user_group_admin.php:2391 #: /var/www/html/cacti/user_group_admin.php:2476 #: /var/www/html/cacti/user_group_admin.php:2561 msgctxt "filter: use" msgid "Go" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:514 #: /var/www/html/cacti/user_group_admin.php:1850 #: /var/www/html/cacti/user_group_admin.php:2203 #: /var/www/html/cacti/user_group_admin.php:2307 #: /var/www/html/cacti/user_group_admin.php:2392 #: /var/www/html/cacti/user_group_admin.php:2477 msgctxt "filter: reset" msgid "Clear" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:515 msgid "Rescan" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:520 msgid "Delete All" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:520 msgid "Delete All Unknown RRDfiles" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:521 msgid "Archive All" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:521 msgid "Archive All Unknown RRDfiles" msgstr "" #: /var/www/html/cacti/settings.php:148 #, php-format msgid "Cacti Settings (%s)" msgstr "" #: /var/www/html/cacti/settings.php:202 msgid "Select Plugin(s)" msgstr "" #: /var/www/html/cacti/settings.php:204 msgid "Plugins Selected" msgstr "" #: /var/www/html/cacti/settings.php:221 msgid "Select File(s)" msgstr "" #: /var/www/html/cacti/settings.php:223 msgid "Files Selected" msgstr "" #: /var/www/html/cacti/settings.php:241 msgid "Select Template(s)" msgstr "" #: /var/www/html/cacti/settings.php:246 msgid "All Templates Selected" msgstr "" #: /var/www/html/cacti/settings.php:299 msgid "Poller Interval must be less than Cron Interval" msgstr "" #: /var/www/html/cacti/settings.php:321 msgid "Test Email Results" msgstr "" #: /var/www/html/cacti/sites.php:35 msgid "Site Information" msgstr "Standort Informationen" #: /var/www/html/cacti/sites.php:41 msgid "The primary name for the Site." msgstr "Name der Lokation." # change orginal text. => Fill in the new name of this site or so #: /var/www/html/cacti/sites.php:44 msgid "New Site" msgstr "Neue Lokation" #: /var/www/html/cacti/sites.php:49 msgid "Address1" msgstr "Adresse 1" #: /var/www/html/cacti/sites.php:50 msgid "The primary address for the Site." msgstr "Die primäre Adresse der Lokation." #: /var/www/html/cacti/sites.php:52 msgid "Enter the Site Address" msgstr "Geben Sie die Adresse ein" #: /var/www/html/cacti/sites.php:58 msgid "Address2" msgstr "Adresse 2" #: /var/www/html/cacti/sites.php:59 msgid "Additional address information for the Site." msgstr "Zusätzliche Adressdetails für diese Lokation." #: /var/www/html/cacti/sites.php:61 msgid "Additional Site Address information" msgstr "Zusätzliche Adressinformationen" #: /var/www/html/cacti/sites.php:67 /var/www/html/cacti/sites.php:496 msgid "City" msgstr "Stadt" #: /var/www/html/cacti/sites.php:68 msgid "The city or locality for the Site." msgstr "Stadt/Ort der Lokation." #: /var/www/html/cacti/sites.php:70 msgid "Enter the City or Locality" msgstr "Geben Sie die Stadt oder Ortschaft ein" #: /var/www/html/cacti/sites.php:76 /var/www/html/cacti/sites.php:497 msgid "State" msgstr "Zustand" #: /var/www/html/cacti/sites.php:77 msgid "The state for the Site." msgstr "Bundesland der Lokation." #: /var/www/html/cacti/sites.php:79 msgid "Enter the state" msgstr "Geben Sie das Bundesland ein" #: /var/www/html/cacti/sites.php:85 msgid "Postal/Zip Code" msgstr "Postleitzahl" #: /var/www/html/cacti/sites.php:86 msgid "The postal or zip code for the Site." msgstr "Postleitzahl der Lokation." #: /var/www/html/cacti/sites.php:88 msgid "Enter the postal code" msgstr "Geben Sie hier die Postleitzahl ein." #: /var/www/html/cacti/sites.php:94 /var/www/html/cacti/sites.php:498 msgid "Country" msgstr "Land" #: /var/www/html/cacti/sites.php:95 msgid "The country for the Site." msgstr "Land der Lokation." #: /var/www/html/cacti/sites.php:97 msgid "Enter the country" msgstr "Geben Sie das Land ein" #: /var/www/html/cacti/sites.php:103 msgid "TimeZone" msgstr "Zeitzone" #: /var/www/html/cacti/sites.php:104 msgid "The TimeZone for the Site." msgstr "Die Zeitzone für diese Lokation." #: /var/www/html/cacti/sites.php:112 msgid "Latitude" msgstr "Längengrad" #: /var/www/html/cacti/sites.php:113 msgid "The Latitude for this Site." msgstr "Der Längengrad für diese Lokation." #: /var/www/html/cacti/sites.php:115 msgid "example 38.889488" msgstr "Beispiel: 38.889488" #: /var/www/html/cacti/sites.php:121 msgid "Longitude" msgstr "Längengrad" #: /var/www/html/cacti/sites.php:122 msgid "The Longitude for this Site." msgstr "Der Längengrad für diese Lokation." #: /var/www/html/cacti/sites.php:124 msgid "example -77.0374678" msgstr "Beispiel: -77.0374678" #: /var/www/html/cacti/sites.php:130 msgid "Site Notes" msgstr "Notizen" #: /var/www/html/cacti/sites.php:133 msgid "Additional area use for random notes related to this Site." msgstr "Bereich für zusätzliche Notizen zu dieser Lokation." #: /var/www/html/cacti/sites.php:136 msgid "Enter some useful information about the Site." msgstr "Geben Sie einige nützliche Informationen über die Lokation ein" #: /var/www/html/cacti/sites.php:141 msgid "Alternate Name" msgstr "Abweichender Name" #: /var/www/html/cacti/sites.php:142 msgid "Used for cases where a Site has an alternate named used to describe it" msgstr "" "Für Fälle, wo eine Lokation unter einem alternativem Namen geführt wird." #: /var/www/html/cacti/sites.php:144 msgid "If the Site is known by another name enter it here." msgstr "Hier alternativen Namen der Lokation eingeben." #: /var/www/html/cacti/sites.php:286 msgid "" "Click 'Continue' to delete the following Site. Note, all devices will be " "disassociated from this site." msgid_plural "" "Click 'Continue' to delete all following Sites. Note, all devices will be " "disassociated from this site." msgstr[0] "" "Klicken Sie auf \"Weiter\", um die folgende Lokation zu löschen. Beachten " "Sie, dass die Bindung zugewiesener Geräte aufgehoben wird." msgstr[1] "" "Klicken Sie auf \"Weiter\", um die folgenden Lokationen zu löschen. " "Beachten Sie, dass die Bindung zugewiesener Geräte aufgehoben wird." #: /var/www/html/cacti/sites.php:291 msgid "Delete Site" msgid_plural "Delete Sites" msgstr[0] "Lösche Lokation" msgstr[1] "Lösche Lokationen" #: /var/www/html/cacti/sites.php:493 msgid "Site Name" msgstr "Name des Standortes" #: /var/www/html/cacti/sites.php:493 msgid "The name of this Site." msgstr "Der Name des Standortes." #: /var/www/html/cacti/sites.php:494 msgid "The unique id associated with this Site." msgstr "Eindeutige Kennung der Lokation" #: /var/www/html/cacti/sites.php:495 msgid "The number of Devices associated with this Site." msgstr "Anzahl der dem Standort zugewiesenen Geräte." #: /var/www/html/cacti/sites.php:496 msgid "The City associated with this Site." msgstr "Stadt/Ort der Lokation." #: /var/www/html/cacti/sites.php:497 msgid "The State associated with this Site." msgstr "Bundesland der Lokation." #: /var/www/html/cacti/sites.php:498 msgid "The Country associated with this Site." msgstr "Land der Lokation." #: /var/www/html/cacti/sites.php:516 msgid "No Sites Found" msgstr "Keine Standorte gefunden" #: /var/www/html/cacti/spikekill.php:37 #, php-format msgid "FATAL: Spike Kill method '%s' is Invalid\n" msgstr "" #: /var/www/html/cacti/spikekill.php:82 msgid "FATAL: Spike Kill Not Allowed\n" msgstr "" #: /var/www/html/cacti/templates_export.php:68 msgid "WARNING: Export Errors Encountered. Refresh Browser Window for Details!" msgstr "" #: /var/www/html/cacti/templates_export.php:100 msgid "What would you like to export?" msgstr "Was würden Sie gerne exportieren?" #: /var/www/html/cacti/templates_export.php:101 msgid "Select the Template type that you wish to export from Cacti." msgstr "" #: /var/www/html/cacti/templates_export.php:113 msgid "Device Template to Export" msgstr "" #: /var/www/html/cacti/templates_export.php:114 msgid "Choose the Template to export to XML." msgstr "" #: /var/www/html/cacti/templates_export.php:121 msgid "Include Dependencies" msgstr "Abhängigkeiten einbeziehen" #: /var/www/html/cacti/templates_export.php:122 msgid "" "Some templates rely on other items in Cacti to function properly. It is " "highly recommended that you select this box or the resulting import may fail." msgstr "" "Manche Schablonen sind auf andere Cacti-Elemente angewiesen um korrekt zu " "funktionieren. Es wird dringend empfohlen, dass Sie diese Auswahlbox " "markieren. Ansonsten kann der resultierende Import-Vorgang fehlschlagen." #: /var/www/html/cacti/templates_export.php:128 msgid "Output Format" msgstr "Ausgabeformat" #: /var/www/html/cacti/templates_export.php:129 msgid "Choose the format to output the resulting XML file in." msgstr "Wählen Sie wie die resultierende XML Datei ausgegeben werden soll." #: /var/www/html/cacti/templates_export.php:136 msgid "Output to the Browser (within Cacti)" msgstr "Ausgabe im Browser (innerhalb Cacti)" #: /var/www/html/cacti/templates_export.php:140 msgid "Output to the Browser (raw XML)" msgstr "Ausgabe an den Browser (XML Rohdaten)" #: /var/www/html/cacti/templates_export.php:144 msgid "Save File Locally" msgstr "Speichern als lokale Datei" #: /var/www/html/cacti/templates_export.php:163 #, php-format msgid "Available Templates [%s]" msgstr "" #: /var/www/html/cacti/templates_import.php:115 msgid "Import Template" msgstr "" #: /var/www/html/cacti/tree.php:32 msgctxt "dropdown action" msgid "Publish" msgstr "" #: /var/www/html/cacti/tree.php:33 msgctxt "dropdown action" msgid "Un Publish" msgstr "" #: /var/www/html/cacti/tree.php:258 msgctxt "ordering of tree items" msgid "inherit" msgstr "" #: /var/www/html/cacti/tree.php:261 msgctxt "ordering of tree items" msgid "manual" msgstr "" #: /var/www/html/cacti/tree.php:264 msgctxt "ordering of tree items" msgid "alpha" msgstr "" #: /var/www/html/cacti/tree.php:267 msgctxt "ordering of tree items" msgid "natural" msgstr "" #: /var/www/html/cacti/tree.php:270 msgctxt "ordering of tree items" msgid "numeric" msgstr "" #: /var/www/html/cacti/tree.php:507 msgid "Click 'Continue' to delete the following Tree." msgid_plural "Click 'Continue' to delete following Trees." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:512 msgid "Delete Tree" msgid_plural "Delete Trees" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:516 msgid "Click 'Continue' to publish the following Tree." msgid_plural "Click 'Continue' to publish following Trees." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:521 msgid "Publish Tree" msgid_plural "Publish Trees" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:525 msgid "Click 'Continue' to un-publish the following Tree." msgid_plural "Click 'Continue' to un-publish following Trees." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:530 msgid "Un-publish Tree" msgid_plural "Un-publish Trees" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:533 #, fuzzy msgid "You must select at least one Tree." msgstr "Bitte wählen Sie mindestens einen Standort aus" #: /var/www/html/cacti/tree.php:576 #, php-format msgid "Trees [edit: %s]" msgstr "" #: /var/www/html/cacti/tree.php:588 msgid "Trees [new]" msgstr "" #: /var/www/html/cacti/tree.php:614 msgid "Edit Tree" msgstr "" #: /var/www/html/cacti/tree.php:614 msgid "" "To Edit this tree, you must first lock it by pressing the Edit Tree button." msgstr "" #: /var/www/html/cacti/tree.php:617 msgid "Add Root Branch" msgstr "" #: /var/www/html/cacti/tree.php:617 msgid "Finish Editing Tree" msgstr "" #: /var/www/html/cacti/tree.php:617 #, php-format msgid "This tree has been locked for Editing on %1$s by %2$s." msgstr "" #: /var/www/html/cacti/tree.php:623 msgid "To edit the tree, you must first unlock it and then lock it as yourself" msgstr "" #: /var/www/html/cacti/tree.php:639 msgid "Tree Items" msgstr "Bäume" #: /var/www/html/cacti/tree.php:647 msgid "Available Devices" msgstr "" #: /var/www/html/cacti/tree.php:682 msgid "Available Graphs" msgstr "" #: /var/www/html/cacti/tree.php:733 /var/www/html/cacti/tree.php:922 msgid "New Node" msgstr "" #: /var/www/html/cacti/tree.php:1065 #, fuzzy msgid "Rename" msgstr "Benutzername" #: /var/www/html/cacti/tree.php:1092 #, fuzzy msgid "Branch Sorting" msgstr "Diagramm Einstellungen" #: /var/www/html/cacti/tree.php:1099 msgid "Inherit" msgstr "" #: /var/www/html/cacti/tree.php:1127 msgid "Alphabetic" msgstr "Alphabetische Sortierung" #: /var/www/html/cacti/tree.php:1141 msgid "Natural" msgstr "Natürlich" #: /var/www/html/cacti/tree.php:1178 /var/www/html/cacti/tree.php:1252 #: /var/www/html/cacti/tree.php:1339 msgid "Cut" msgstr "Ausschneiden" #: /var/www/html/cacti/tree.php:1193 /var/www/html/cacti/tree.php:1267 #: /var/www/html/cacti/tree.php:1354 /var/www/html/cacti/user_admin.php:29 #: /var/www/html/cacti/user_group_admin.php:31 msgid "Copy" msgstr "Kopieren" #: /var/www/html/cacti/tree.php:1211 msgid "Paste" msgstr "Einfügen" #: /var/www/html/cacti/tree.php:1582 msgid "The name by which this Tree will be referred to as." msgstr "" #: /var/www/html/cacti/tree.php:1582 /var/www/html/cacti/user_admin.php:1513 #: /var/www/html/cacti/user_group_admin.php:1243 msgid "Tree Name" msgstr "" #: /var/www/html/cacti/tree.php:1583 msgid "" "The internal database ID for this Tree. Useful when performing automation " "or debugging." msgstr "" #: /var/www/html/cacti/tree.php:1584 msgid "Published" msgstr "" #: /var/www/html/cacti/tree.php:1584 msgid "Unpublished Trees cannot be viewed from the Graph tab" msgstr "" #: /var/www/html/cacti/tree.php:1585 msgid "A Tree must be locked in order to be edited." msgstr "" #: /var/www/html/cacti/tree.php:1586 msgid "The original author of this Tree." msgstr "" #: /var/www/html/cacti/tree.php:1587 msgid "" "To change the order of the trees, first sort by this column, press the up or " "down arrows once they appear." msgstr "" #: /var/www/html/cacti/tree.php:1588 msgid "Last Edited" msgstr "" #: /var/www/html/cacti/tree.php:1588 msgid "The date that this Tree was last edited." msgstr "" #: /var/www/html/cacti/tree.php:1589 msgid "Edited By" msgstr "" #: /var/www/html/cacti/tree.php:1589 msgid "The last user to have modified this Tree." msgstr "" #: /var/www/html/cacti/tree.php:1590 msgid "Branches" msgstr "" #: /var/www/html/cacti/tree.php:1590 msgid "The total number of Branches in this Tree." msgstr "" #: /var/www/html/cacti/tree.php:1591 msgid "The total number of individual Devices in this Tree." msgstr "" #: /var/www/html/cacti/tree.php:1592 msgid "The total number of individual Graphs in this Tree." msgstr "" #: /var/www/html/cacti/tree.php:1632 msgid "No Trees Found" msgstr "" #: /var/www/html/cacti/user_admin.php:32 msgid "Batch Copy" msgstr "Massenkopie" #: /var/www/html/cacti/user_admin.php:335 msgid "Click 'Continue' to delete the selected User(s)." msgstr "" #: /var/www/html/cacti/user_admin.php:340 msgid "Delete User(s)" msgstr "" #: /var/www/html/cacti/user_admin.php:350 msgid "Click 'Continue' to copy the selected User to a new User below." msgstr "" #: /var/www/html/cacti/user_admin.php:355 msgid "Template Username:" msgstr "Benutzername für die Schablone:" #: /var/www/html/cacti/user_admin.php:360 msgid "Username:" msgstr "Benutzername:" #: /var/www/html/cacti/user_admin.php:367 msgid "Full Name:" msgstr "" #: /var/www/html/cacti/user_admin.php:374 msgid "Realm:" msgstr "Bereich:" #: /var/www/html/cacti/user_admin.php:380 msgid "Copy User" msgstr "Benutzer kopieren" #: /var/www/html/cacti/user_admin.php:386 msgid "Click 'Continue' to enable the selected User(s)." msgstr "" #: /var/www/html/cacti/user_admin.php:391 #, fuzzy msgid "Enable User(s)" msgstr "Aktivieren" #: /var/www/html/cacti/user_admin.php:397 msgid "Click 'Continue' to disable the selected User(s)." msgstr "" #: /var/www/html/cacti/user_admin.php:402 #, fuzzy msgid "Disable User(s)" msgstr "Spezial User" #: /var/www/html/cacti/user_admin.php:410 msgid "" "Click 'Continue' to overwrite the User(s) settings with the selected " "template User settings and permissions. The original users Full Name, " "Password, Realm and Enable status will be retained, all other fields will be " "overwritten from Template User." msgstr "" #: /var/www/html/cacti/user_admin.php:413 msgid "Template User:" msgstr "Benutzer für Schablone:" #: /var/www/html/cacti/user_admin.php:419 msgid "User(s) to update:" msgstr "" #: /var/www/html/cacti/user_admin.php:424 msgid "Reset User(s) Settings" msgstr "" #: /var/www/html/cacti/user_admin.php:427 msgid "You must select at least one user." msgstr "" #: /var/www/html/cacti/user_admin.php:802 #: /var/www/html/cacti/user_group_admin.php:728 msgid "Allow" msgstr "Zulassen" #: /var/www/html/cacti/user_admin.php:803 #: /var/www/html/cacti/user_group_admin.php:729 msgid "Deny" msgstr "Verweigern" #: /var/www/html/cacti/user_admin.php:828 msgid "" "Note: System Graph Policy is 'Permissive' meaning the User must have " "access to at least one of Graph, Device, or Graph Template to gain access to " "the Graph" msgstr "" #: /var/www/html/cacti/user_admin.php:830 msgid "" "Note: System Graph Policy is 'Restrictive' meaning the User must have " "access to the Graph, Device, and Graph Template to gain access to the Graph" msgstr "" #: /var/www/html/cacti/user_admin.php:834 #: /var/www/html/cacti/user_group_admin.php:745 msgid "Default Graph Policy" msgstr "Standard Diagramm-Regelwerk" #: /var/www/html/cacti/user_admin.php:839 msgid "Default Graph Policy for this User" msgstr "Standard Regelwerk \"Diagramm\" für diesen Benutzer" #: /var/www/html/cacti/user_admin.php:844 #: /var/www/html/cacti/user_admin.php:1149 #: /var/www/html/cacti/user_admin.php:1310 #: /var/www/html/cacti/user_admin.php:1451 #: /var/www/html/cacti/user_group_admin.php:755 #: /var/www/html/cacti/user_group_admin.php:896 #: /var/www/html/cacti/user_group_admin.php:1044 #: /var/www/html/cacti/user_group_admin.php:1185 msgid "Update" msgstr "" #: /var/www/html/cacti/user_admin.php:996 #: /var/www/html/cacti/user_admin.php:1232 #: /var/www/html/cacti/user_admin.php:1376 #: /var/www/html/cacti/user_admin.php:1513 #: /var/www/html/cacti/user_group_admin.php:821 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:1109 #: /var/www/html/cacti/user_group_admin.php:1243 msgid "Effective Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:1010 #: /var/www/html/cacti/user_group_admin.php:847 msgid "No Matching Graphs Found" msgstr "Keine passenden Diagramme gefunden" #: /var/www/html/cacti/user_admin.php:1025 #: /var/www/html/cacti/user_admin.php:1031 #: /var/www/html/cacti/user_admin.php:1277 #: /var/www/html/cacti/user_admin.php:1283 #: /var/www/html/cacti/user_admin.php:1418 #: /var/www/html/cacti/user_admin.php:1424 #: /var/www/html/cacti/user_admin.php:1554 #: /var/www/html/cacti/user_admin.php:1560 #: /var/www/html/cacti/user_group_admin.php:862 #: /var/www/html/cacti/user_group_admin.php:868 #: /var/www/html/cacti/user_group_admin.php:1010 #: /var/www/html/cacti/user_group_admin.php:1016 #: /var/www/html/cacti/user_group_admin.php:1151 #: /var/www/html/cacti/user_group_admin.php:1157 #: /var/www/html/cacti/user_group_admin.php:1283 #: /var/www/html/cacti/user_group_admin.php:1289 msgid "Revoke Access" msgstr "Zugriff widerrufen" #: /var/www/html/cacti/user_admin.php:1026 #: /var/www/html/cacti/user_admin.php:1030 #: /var/www/html/cacti/user_admin.php:1278 #: /var/www/html/cacti/user_admin.php:1282 #: /var/www/html/cacti/user_admin.php:1419 #: /var/www/html/cacti/user_admin.php:1423 #: /var/www/html/cacti/user_admin.php:1555 #: /var/www/html/cacti/user_admin.php:1559 #: /var/www/html/cacti/user_group_admin.php:62 #: /var/www/html/cacti/user_group_admin.php:863 #: /var/www/html/cacti/user_group_admin.php:867 #: /var/www/html/cacti/user_group_admin.php:1011 #: /var/www/html/cacti/user_group_admin.php:1015 #: /var/www/html/cacti/user_group_admin.php:1152 #: /var/www/html/cacti/user_group_admin.php:1156 #: /var/www/html/cacti/user_group_admin.php:1284 #: /var/www/html/cacti/user_group_admin.php:1288 msgid "Grant Access" msgstr "" #: /var/www/html/cacti/user_admin.php:1083 #: /var/www/html/cacti/user_admin.php:2657 #: /var/www/html/cacti/user_group_admin.php:1833 #: /var/www/html/cacti/user_group_admin.php:1892 msgid "Groups" msgstr "" #: /var/www/html/cacti/user_admin.php:1091 #: /var/www/html/cacti/user_admin.php:1100 msgid "Member" msgstr "Mitglied" #: /var/www/html/cacti/user_admin.php:1091 msgid "Policies (Graph/Device/Template)" msgstr "Regelwerke (Diagramm/Gerät/Vorlage)" #: /var/www/html/cacti/user_admin.php:1100 #: /var/www/html/cacti/user_group_admin.php:688 msgid "Non Member" msgstr "" #: /var/www/html/cacti/user_admin.php:1102 #: /var/www/html/cacti/user_admin.php:2311 #: /var/www/html/cacti/user_admin.php:2312 #: /var/www/html/cacti/user_admin.php:2313 #: /var/www/html/cacti/user_group_admin.php:1924 #: /var/www/html/cacti/user_group_admin.php:1925 #: /var/www/html/cacti/user_group_admin.php:1926 msgid "ALLOW" msgstr "" #: /var/www/html/cacti/user_admin.php:1102 #: /var/www/html/cacti/user_admin.php:2311 #: /var/www/html/cacti/user_admin.php:2312 #: /var/www/html/cacti/user_admin.php:2313 #: /var/www/html/cacti/user_group_admin.php:1924 #: /var/www/html/cacti/user_group_admin.php:1925 #: /var/www/html/cacti/user_group_admin.php:1926 msgid "DENY" msgstr "" #: /var/www/html/cacti/user_admin.php:1108 msgid "No Matching User Groups Found" msgstr "Keine passenden Nutzergruppen gefunden" #: /var/www/html/cacti/user_admin.php:1122 msgid "Assign Membership" msgstr "Mitgliedschaft zuweisen" #: /var/www/html/cacti/user_admin.php:1123 msgid "Remove Membership" msgstr "Mitgliedschaft entfernen" #: /var/www/html/cacti/user_admin.php:1139 #: /var/www/html/cacti/user_group_admin.php:886 msgid "Default Device Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:1144 msgid "Default Device Policy for this User" msgstr "Standard Regelwerk \"Geräte\" für diesen Benutzer" #: /var/www/html/cacti/user_admin.php:1243 #: /var/www/html/cacti/user_admin.php:1251 #: /var/www/html/cacti/user_admin.php:1387 #: /var/www/html/cacti/user_admin.php:1395 #: /var/www/html/cacti/user_admin.php:1524 #: /var/www/html/cacti/user_admin.php:1532 #: /var/www/html/cacti/user_group_admin.php:832 #: /var/www/html/cacti/user_group_admin.php:840 #: /var/www/html/cacti/user_group_admin.php:977 #: /var/www/html/cacti/user_group_admin.php:985 #: /var/www/html/cacti/user_group_admin.php:1120 #: /var/www/html/cacti/user_group_admin.php:1128 #: /var/www/html/cacti/user_group_admin.php:1254 #: /var/www/html/cacti/user_group_admin.php:1262 msgid "Access Granted" msgstr "Zugriff gewährt" #: /var/www/html/cacti/user_admin.php:1245 #: /var/www/html/cacti/user_admin.php:1249 #: /var/www/html/cacti/user_admin.php:1389 #: /var/www/html/cacti/user_admin.php:1393 #: /var/www/html/cacti/user_admin.php:1526 #: /var/www/html/cacti/user_admin.php:1530 #: /var/www/html/cacti/user_group_admin.php:834 #: /var/www/html/cacti/user_group_admin.php:838 #: /var/www/html/cacti/user_group_admin.php:979 #: /var/www/html/cacti/user_group_admin.php:983 #: /var/www/html/cacti/user_group_admin.php:1122 #: /var/www/html/cacti/user_group_admin.php:1126 #: /var/www/html/cacti/user_group_admin.php:1256 #: /var/www/html/cacti/user_group_admin.php:1260 msgid "Access Restricted" msgstr "Zugriff verweigert" #: /var/www/html/cacti/user_admin.php:1262 #: /var/www/html/cacti/user_group_admin.php:996 msgid "No Matching Devices Found" msgstr "" #: /var/www/html/cacti/user_admin.php:1300 #: /var/www/html/cacti/user_group_admin.php:1034 msgid "Default Graph Template Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:1305 msgid "Default Graph Template Policy for this User" msgstr "Standard Regelwerk \"Diagramm Vorlage\" für diesen Benutzer" #: /var/www/html/cacti/user_admin.php:1376 #: /var/www/html/cacti/user_group_admin.php:1109 msgid "Total Graphs" msgstr "" #: /var/www/html/cacti/user_admin.php:1403 #: /var/www/html/cacti/user_group_admin.php:1136 msgid "No Matching Graph Templates Found" msgstr "" #: /var/www/html/cacti/user_admin.php:1441 #: /var/www/html/cacti/user_group_admin.php:1175 msgid "Default Tree Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:1446 msgid "Default Tree Policy for this User" msgstr "Standard Regelwerk \"Baum\" für diesen Benutzer" #: /var/www/html/cacti/user_admin.php:1539 #: /var/www/html/cacti/user_group_admin.php:1269 msgid "No Matching Trees Found" msgstr "" #: /var/www/html/cacti/user_admin.php:1584 #: /var/www/html/cacti/user_group_admin.php:1315 msgid "User Permissions" msgstr "" #: /var/www/html/cacti/user_admin.php:1651 #: /var/www/html/cacti/user_group_admin.php:1402 msgid "External Link Permissions" msgstr "" #: /var/www/html/cacti/user_admin.php:1708 #: /var/www/html/cacti/user_group_admin.php:1459 msgid "Plugin Permissions" msgstr "" #: /var/www/html/cacti/user_admin.php:1764 msgid "Legacy 1.x Plugins" msgstr "Ältere 1.x-Plugins" #: /var/www/html/cacti/user_admin.php:1821 #: /var/www/html/cacti/user_group_admin.php:1550 #, php-format msgid "User Settings %s" msgstr "" #: /var/www/html/cacti/user_admin.php:1936 #: /var/www/html/cacti/user_group_admin.php:1666 msgid "Permissions" msgstr "" #: /var/www/html/cacti/user_admin.php:1937 msgid "Group Membership" msgstr "Gruppenmitgliedschaft" #: /var/www/html/cacti/user_admin.php:1938 #: /var/www/html/cacti/user_group_admin.php:1667 msgid "Graph Perms" msgstr "" #: /var/www/html/cacti/user_admin.php:1939 #: /var/www/html/cacti/user_group_admin.php:1668 msgid "Device Perms" msgstr "" #: /var/www/html/cacti/user_admin.php:1940 #: /var/www/html/cacti/user_group_admin.php:1669 msgid "Template Perms" msgstr "" #: /var/www/html/cacti/user_admin.php:1941 #: /var/www/html/cacti/user_group_admin.php:1670 msgid "Tree Perms" msgstr "" #: /var/www/html/cacti/user_admin.php:1983 #, php-format msgid "User Management %s" msgstr "Benutzerverwaltung %s" #: /var/www/html/cacti/user_admin.php:2015 msgid "Password Too Short" msgstr "Passwort ist zu kurz" #: /var/www/html/cacti/user_admin.php:2020 msgid "Password Validation Passes" msgstr "" #: /var/www/html/cacti/user_admin.php:2034 msgid "Passwords do Not Match" msgstr "Passwörter stimmen nicht überein" #: /var/www/html/cacti/user_admin.php:2037 msgid "Passwords Match" msgstr "Passwörter stimmen überein" #: /var/www/html/cacti/user_admin.php:2279 #: /var/www/html/cacti/user_group_admin.php:1904 msgid "Graph Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:2280 #: /var/www/html/cacti/user_group_admin.php:1905 msgid "Device Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:2281 #: /var/www/html/cacti/user_group_admin.php:1906 msgid "Template Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:2282 msgid "Last Login" msgstr "Letzte Anmeldung" #: /var/www/html/cacti/user_admin.php:2303 #, fuzzy msgid "Unavailable" msgstr "Verfügbarkeit" #: /var/www/html/cacti/user_admin.php:2319 msgid "No Users Found" msgstr "" #: /var/www/html/cacti/user_admin.php:2535 #: /var/www/html/cacti/user_group_admin.php:2143 #, php-format msgid "Graph Permissions %s" msgstr "" #: /var/www/html/cacti/user_admin.php:2589 #: /var/www/html/cacti/user_admin.php:2674 msgid "Show All" msgstr "" #: /var/www/html/cacti/user_admin.php:2642 #, php-format msgid "Group Membership %s" msgstr "" #: /var/www/html/cacti/user_admin.php:2728 #: /var/www/html/cacti/user_group_admin.php:2251 #, php-format msgid "Devices Permission %s" msgstr "" #: /var/www/html/cacti/user_admin.php:2778 #: /var/www/html/cacti/user_admin.php:2863 #: /var/www/html/cacti/user_admin.php:2948 #: /var/www/html/cacti/user_group_admin.php:2197 #: /var/www/html/cacti/user_group_admin.php:2301 #: /var/www/html/cacti/user_group_admin.php:2386 #: /var/www/html/cacti/user_group_admin.php:2471 msgid "Show Exceptions" msgstr "" #: /var/www/html/cacti/user_admin.php:2831 #: /var/www/html/cacti/user_group_admin.php:2354 #, php-format msgid "Template Permission %s" msgstr "" #: /var/www/html/cacti/user_admin.php:2916 #: /var/www/html/cacti/user_admin.php:3001 #: /var/www/html/cacti/user_group_admin.php:2439 #, php-format msgid "Tree Permission %s" msgstr "" #: /var/www/html/cacti/user_admin.php:3033 msgid "Show Exceptions<" msgstr "" #: /var/www/html/cacti/user_domains.php:222 msgid "Click 'Continue' to delete the following User Domain." msgid_plural "Click 'Continue' to delete following User Domains." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/user_domains.php:227 msgid "Delete User Domain" msgid_plural "Delete User Domains" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/user_domains.php:231 msgid "Click 'Continue' to disable the following User Domain." msgid_plural "Click 'Continue' to disable following User Domains." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/user_domains.php:236 msgid "Disable User Domain" msgid_plural "Disable User Domains" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/user_domains.php:240 msgid "Click 'Continue' to enable the following User Domain." msgstr "" #: /var/www/html/cacti/user_domains.php:245 msgid "Enabled User Domain" msgid_plural "Enable User Domains" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/user_domains.php:249 msgid "" "Click 'Continue' to make the following the following User Domain the default " "one." msgstr "" #: /var/www/html/cacti/user_domains.php:254 msgid "Make Selected Domain Default" msgstr "" #: /var/www/html/cacti/user_domains.php:257 msgid "You must select at least one User Domain." msgstr "" #: /var/www/html/cacti/user_domains.php:308 #, php-format msgid "User Domain [edit: %s]" msgstr "" #: /var/www/html/cacti/user_domains.php:310 msgid "User Domain [new]" msgstr "" #: /var/www/html/cacti/user_domains.php:318 msgid "" "Enter a meaningful name for this domain. This will be the name that appears " "in the Login Realm during login." msgstr "" #: /var/www/html/cacti/user_domains.php:324 msgid "Domains Type" msgstr "" #: /var/www/html/cacti/user_domains.php:325 msgid "Choose what type of domain this is." msgstr "" #: /var/www/html/cacti/user_domains.php:332 msgid "" "The name of the user that Cacti will use as a template for new user accounts." msgstr "" #: /var/www/html/cacti/user_domains.php:342 msgid "" "If this checkbox is checked, users will be able to login using this domain." msgstr "" #: /var/www/html/cacti/user_domains.php:359 msgid "The dns hostname or ip address of the server." msgstr "" #: /var/www/html/cacti/user_domains.php:367 msgid "TCP/UDP port for Non SSL communications." msgstr "" #: /var/www/html/cacti/user_domains.php:406 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the users " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the users Distinguished Name (DN)." msgstr "" #: /var/www/html/cacti/user_domains.php:455 msgid "" "Search base for searching the LDAP directory, such as \"dc=win2kdomain," "dc=local\" or \"ou=people,dc=domain,dc=local\"." msgstr "" #: /var/www/html/cacti/user_domains.php:462 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: \"(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))\" or for OpenLDAP: " "\"(&(objectClass=account)(uid=<username>))\". \"<username>\" " "is replaced with the username that was supplied at the login prompt." msgstr "" #: /var/www/html/cacti/user_domains.php:501 msgid "Domain Properties" msgstr "" #: /var/www/html/cacti/user_domains.php:627 msgid "Domains" msgstr "" #: /var/www/html/cacti/user_domains.php:712 msgid "Domain Name" msgstr "" #: /var/www/html/cacti/user_domains.php:713 msgid "Domain Type" msgstr "" #: /var/www/html/cacti/user_domains.php:715 msgid "Effective User" msgstr "" #: /var/www/html/cacti/user_domains.php:728 msgid "None Selected" msgstr "" #: /var/www/html/cacti/user_domains.php:734 msgid "No User Domains Found" msgstr "" #: /var/www/html/cacti/user_group_admin.php:39 #: /var/www/html/cacti/user_group_admin.php:58 msgid "Defer to the Users Setting" msgstr "" #: /var/www/html/cacti/user_group_admin.php:43 msgid "Show the Page that the User pointed their browser to" msgstr "" #: /var/www/html/cacti/user_group_admin.php:47 msgid "Show the Console" msgstr "" #: /var/www/html/cacti/user_group_admin.php:51 msgid "Show the default Graph Screen" msgstr "" #: /var/www/html/cacti/user_group_admin.php:66 msgid "Restrict Access" msgstr "" #: /var/www/html/cacti/user_group_admin.php:73 #: /var/www/html/cacti/user_group_admin.php:1901 msgid "Group Name" msgstr "" #: /var/www/html/cacti/user_group_admin.php:74 msgid "The name of this Group." msgstr "" #: /var/www/html/cacti/user_group_admin.php:80 msgid "Group Description" msgstr "" #: /var/www/html/cacti/user_group_admin.php:81 msgid "" "A more descriptive name for this group, that can include spaces or special " "characters." msgstr "" #: /var/www/html/cacti/user_group_admin.php:93 msgid "General Group Options" msgstr "" #: /var/www/html/cacti/user_group_admin.php:95 msgid "Set any user account-specific options here." msgstr "" #: /var/www/html/cacti/user_group_admin.php:99 msgid "Allow Users of this Group to keep custom User Settings" msgstr "" #: /var/www/html/cacti/user_group_admin.php:106 msgid "Tree Rights" msgstr "" #: /var/www/html/cacti/user_group_admin.php:108 msgid "Should Users of this Group have access to the Tree?" msgstr "" #: /var/www/html/cacti/user_group_admin.php:114 msgid "Graph List Rights" msgstr "" #: /var/www/html/cacti/user_group_admin.php:116 msgid "Should Users of this Group have access to the Graph List?" msgstr "" #: /var/www/html/cacti/user_group_admin.php:122 msgid "Graph Preview Rights" msgstr "" #: /var/www/html/cacti/user_group_admin.php:124 msgid "Should Users of this Group have access to the Graph Preview?" msgstr "" #: /var/www/html/cacti/user_group_admin.php:133 msgid "What to do when a User from this User Group logs in." msgstr "" #: /var/www/html/cacti/user_group_admin.php:441 msgid "Click 'Continue' to delete the following User Group" msgid_plural "Click 'Continue' to delete following User Groups" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/user_group_admin.php:446 msgid "Delete User Group" msgid_plural "Delete User Groups" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/user_group_admin.php:454 #, fuzzy msgid "Click 'Continue' to Copy the following User Group to a new User Group." msgid_plural "" "Click 'Continue' to Copy following User Groups to new User Groups." msgstr[0] "" "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen deaktiviert." msgstr[1] "" "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen deaktiviert." #: /var/www/html/cacti/user_group_admin.php:460 msgid "Group Prefix:" msgstr "Gruppenpräfix:" #: /var/www/html/cacti/user_group_admin.php:461 #, fuzzy msgid "New Group" msgstr "Neue Diagramme" #: /var/www/html/cacti/user_group_admin.php:465 #, fuzzy msgid "Copy User Group" msgid_plural "Copy User Groups" msgstr[0] "Benutzergruppen" msgstr[1] "Benutzergruppen" #: /var/www/html/cacti/user_group_admin.php:471 msgid "Click 'Continue' to enable the following User Group." msgid_plural "Click 'Continue' to enable following User Groups." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/user_group_admin.php:476 msgid "Enable User Group" msgid_plural "Enable User Groups" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/user_group_admin.php:482 msgid "Click 'Continue' to disable the following User Group." msgid_plural "Click 'Continue' to disable following User Groups." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/user_group_admin.php:487 msgid "Disable User Group" msgid_plural "Disable User Groups" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/user_group_admin.php:490 msgid "You must select at least one Group." msgstr "Bitte wählen Sie mindestens eine Gruppe aus." #: /var/www/html/cacti/user_group_admin.php:675 msgid "Login Name" msgstr "Login Name" #: /var/www/html/cacti/user_group_admin.php:675 msgid "Membership" msgstr "Mitgliedschaft" #: /var/www/html/cacti/user_group_admin.php:686 msgid "Group Member" msgstr "Gruppenmitglied" #: /var/www/html/cacti/user_group_admin.php:696 msgid "No Matching Group Members Found" msgstr "" #: /var/www/html/cacti/user_group_admin.php:710 msgid "Add to Group" msgstr "Zu Gruppe hinzufügen" #: /var/www/html/cacti/user_group_admin.php:711 msgid "Remove from Group" msgstr "Aus Gruppe entfernen" #: /var/www/html/cacti/user_group_admin.php:750 #: /var/www/html/cacti/user_group_admin.php:891 msgid "Default Graph policy for this User Group" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1039 msgid "Default Graph Template policy for this User Group" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1180 msgid "Default Tree policy for this User Group" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1665 #: /var/www/html/cacti/user_group_admin.php:1902 msgid "Members" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1677 #, php-format msgid "User Group Management [edit: %s]" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1679 msgid "User Group Management [new]" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1812 msgid "User Group Management" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1932 msgid "No User Groups Found" msgstr "" #: /var/www/html/cacti/user_group_admin.php:2524 #, php-format msgid "User Membership %s" msgstr "" #: /var/www/html/cacti/user_group_admin.php:2556 msgid "Show Members" msgstr "" #: /var/www/html/cacti/user_group_admin.php:2562 msgctxt "filter reset" msgid "Clear" msgstr "" #: /var/www/html/cacti/utilities.php:175 msgid "" "NET-SNMP Not Installed or its paths are not set. Please install if you wish " "to monitor SNMP enabled devices." msgstr "" #: /var/www/html/cacti/utilities.php:181 msgid "Configuration Settings" msgstr "Konfigurations-Einstellungen" #: /var/www/html/cacti/utilities.php:181 #, php-format msgid "" "ERROR: Installed RRDtool version does not match configured version." "
    Please visit the %s and select the correct RRDtool Utility Version." msgstr "" #: /var/www/html/cacti/utilities.php:185 #, php-format msgid "" "ERROR: RRDtool 1.2.x+ does not support the GIF images format, but %d\" " "graph(s) and/or templates have GIF set as the image format." msgstr "" #: /var/www/html/cacti/utilities.php:205 msgid "Database" msgstr "Datenbank" #: /var/www/html/cacti/utilities.php:206 msgid "PHP Info" msgstr "PHP Informationen" #: /var/www/html/cacti/utilities.php:213 #, php-format msgid "Technical Support [%s]" msgstr "" #: /var/www/html/cacti/utilities.php:240 msgid "General Information" msgstr "Allgemeine Informationen" #: /var/www/html/cacti/utilities.php:249 msgid "Cacti Version" msgstr "Cacti Version" #: /var/www/html/cacti/utilities.php:254 msgid "Cacti OS" msgstr "Cacti Betriebssystem" #: /var/www/html/cacti/utilities.php:264 msgid "NET-SNMP Version" msgstr "" #: /var/www/html/cacti/utilities.php:292 /var/www/html/cacti/utilities.php:325 #, php-format msgid "Total: %s" msgstr "Gesamt: %s" #: /var/www/html/cacti/utilities.php:299 msgid "Poller Information" msgstr "Poller Informationen" #: /var/www/html/cacti/utilities.php:322 #, php-format msgid "Action[%s]" msgstr "" #: /var/www/html/cacti/utilities.php:327 msgid "No items to poll" msgstr "Keine Elemente zum Abfragen" #: /var/www/html/cacti/utilities.php:333 msgid "Concurrent Processes" msgstr "Gleichzeitige Prozesse" #: /var/www/html/cacti/utilities.php:338 msgid "Max Threads" msgstr "Maximale Threads" #: /var/www/html/cacti/utilities.php:343 msgid "PHP Servers" msgstr "PHP Server Anzahl" #: /var/www/html/cacti/utilities.php:348 msgid "Script Timeout" msgstr "Zeitfenster für Scripte" #: /var/www/html/cacti/utilities.php:353 msgid "Max OID" msgstr "Maximale OID Anzahl" #: /var/www/html/cacti/utilities.php:358 msgid "Last Run Statistics" msgstr "Statistik des letzten Durchlaufs" #: /var/www/html/cacti/utilities.php:366 msgid "System Memory" msgstr "" #: /var/www/html/cacti/utilities.php:395 msgid "PHP Information" msgstr "PHP Informationen" #: /var/www/html/cacti/utilities.php:402 msgid "" "PHP Version 5.5.0+ is recommended due to strong password hashing support." msgstr "" #: /var/www/html/cacti/utilities.php:407 msgid "PHP OS" msgstr "PHP BS" #: /var/www/html/cacti/utilities.php:412 msgid "PHP uname" msgstr "PHP uname" #: /var/www/html/cacti/utilities.php:423 msgid "PHP SNMP" msgstr "PHP SNMP" #: /var/www/html/cacti/utilities.php:458 msgid "You've set memory limit to 'unlimited'." msgstr "" #: /var/www/html/cacti/utilities.php:460 #, php-format msgid "" "It is highly suggested that you alter you php.ini memory_limit to %s or " "higher." msgstr "" #: /var/www/html/cacti/utilities.php:461 msgid "" "This suggested memory value is calculated based on the number of data source " "present and is only to be used as a suggestion, actual values may vary " "system to system based on requirements." msgstr "" #: /var/www/html/cacti/utilities.php:469 msgid "MySQL Table Information - Sizes in KBytes" msgstr "" #: /var/www/html/cacti/utilities.php:478 msgid "Engine" msgstr "Speicher Engine" #: /var/www/html/cacti/utilities.php:480 msgid "Avg Row Length" msgstr "" #: /var/www/html/cacti/utilities.php:481 msgid "Data Length" msgstr "Daten-Länge" #: /var/www/html/cacti/utilities.php:482 msgid "Index Length" msgstr "Index-Länge" #: /var/www/html/cacti/utilities.php:483 msgid "Collation" msgstr "Sortierfolge" #: /var/www/html/cacti/utilities.php:484 msgid "Comment" msgstr "" #: /var/www/html/cacti/utilities.php:502 msgid "Unable to retrieve table status" msgstr "Tabellen-Status kann nicht ermittelt werden" #: /var/www/html/cacti/utilities.php:508 msgid "PHP Module Information" msgstr "PHP Modul Informationen" #: /var/www/html/cacti/utilities.php:633 msgid "User Login History" msgstr "Historie der Benutzeranmeldungen" #: /var/www/html/cacti/utilities.php:642 /var/www/html/cacti/utilities.php:770 msgid "User" msgstr "Benutzer" #: /var/www/html/cacti/utilities.php:647 msgid "Deleted/Invalid" msgstr "Gelöscht/ungültig" #: /var/www/html/cacti/utilities.php:660 /var/www/html/cacti/utilities.php:774 msgid "Result" msgstr "Ergebnis" #: /var/www/html/cacti/utilities.php:665 msgid "Success - Pswd" msgstr "" #: /var/www/html/cacti/utilities.php:666 msgid "Success - Token" msgstr "" #: /var/www/html/cacti/utilities.php:667 msgid "Failed" msgstr "Fehlerhaft" #: /var/www/html/cacti/utilities.php:671 msgid "Attempts" msgstr "" # Button? #: /var/www/html/cacti/utilities.php:687 /var/www/html/cacti/utilities.php:1044 #: /var/www/html/cacti/utilities.php:1383 #: /var/www/html/cacti/utilities.php:1628 #: /var/www/html/cacti/utilities.php:2349 #: /var/www/html/cacti/utilities.php:2611 /var/www/html/cacti/vdef.php:687 #, fuzzy msgctxt "Button: use filter settings" msgid "Go" msgstr "Los" # Button? #: /var/www/html/cacti/utilities.php:688 /var/www/html/cacti/utilities.php:1045 #: /var/www/html/cacti/utilities.php:1384 #: /var/www/html/cacti/utilities.php:1629 #: /var/www/html/cacti/utilities.php:2350 #: /var/www/html/cacti/utilities.php:2612 /var/www/html/cacti/vdef.php:688 #, fuzzy msgctxt "Button: reset filter settings" msgid "Clear" msgstr "Löschen" #: /var/www/html/cacti/utilities.php:689 /var/www/html/cacti/utilities.php:1046 #: /var/www/html/cacti/utilities.php:2613 #, fuzzy msgctxt "Button: delete all table entries" msgid "Purge" msgstr "Löschen" #: /var/www/html/cacti/utilities.php:689 msgid "Purge User Log" msgstr "" #: /var/www/html/cacti/utilities.php:763 msgid "User Logins" msgstr "" #: /var/www/html/cacti/utilities.php:775 msgid "IP Address" msgstr "IP Adresse" #: /var/www/html/cacti/utilities.php:791 msgid "(User Removed)" msgstr "(Benutzer entfernt)" #: /var/www/html/cacti/utilities.php:1118 #, php-format msgid "Log [Total Lines: %d - Non-Matching Items Hidden]" msgstr "" #: /var/www/html/cacti/utilities.php:1120 #, php-format msgid "Log [Total Lines: %d - All Items Shown]" msgstr "" #: /var/www/html/cacti/utilities.php:1219 #, php-format msgid "%s - WEBUI: Cacti Log Cleared from Web Management Interface." msgstr "" #: /var/www/html/cacti/utilities.php:1221 msgid "Cacti Log Cleared" msgstr "" #: /var/www/html/cacti/utilities.php:1223 msgid "Error: Unable to clear log, no write permissions." msgstr "" #: /var/www/html/cacti/utilities.php:1226 msgid "Error: Unable to clear log, file does not exist." msgstr "" #: /var/www/html/cacti/utilities.php:1318 msgid "Data Query Cache Items" msgstr "" #: /var/www/html/cacti/utilities.php:1334 msgid "Query Name" msgstr "Name der Abfrage" #: /var/www/html/cacti/utilities.php:1453 msgid "Field Value" msgstr "" #: /var/www/html/cacti/utilities.php:1453 msgid "Index" msgstr "" #: /var/www/html/cacti/utilities.php:1588 msgid "Poller Cache Items" msgstr "Poller Speicherelemente" #: /var/www/html/cacti/utilities.php:1649 msgid "Script" msgstr "Script" #: /var/www/html/cacti/utilities.php:1769 #: /var/www/html/cacti/utilities.php:1774 msgid "SNMP Version:" msgstr "SNMP Version:" #: /var/www/html/cacti/utilities.php:1770 msgid "Community:" msgstr "Community:" #: /var/www/html/cacti/utilities.php:1771 #: /var/www/html/cacti/utilities.php:1775 msgid "OID:" msgstr "OID:" #: /var/www/html/cacti/utilities.php:1775 msgid "User:" msgstr "Benutzer:" #: /var/www/html/cacti/utilities.php:1778 msgid "Script:" msgstr "Script:" #: /var/www/html/cacti/utilities.php:1780 msgid "Script Server:" msgstr "Script Server:" #: /var/www/html/cacti/utilities.php:1793 msgid "RRD:" msgstr "" #: /var/www/html/cacti/utilities.php:1814 msgid "" "Cacti technical support page. Used by developers and technical support " "persons to assist with issues in Cacti. Includes checks for common " "configuration issues." msgstr "" "Cacti's technische Supportseite. Wird benutzt von Entwicklern und " "technischem Support Personal um bei Problemen in Cacti zu helfen. Enthält " "Prüfungen für verbreitete Konfigurationseinstellungen." #: /var/www/html/cacti/utilities.php:1816 msgid "Log Administration" msgstr "Log Verwaltung" #: /var/www/html/cacti/utilities.php:1818 msgid "" "The Cacti Log stores statistic, error and other message depending on system " "settings. This information can be used to identify problems with the poller " "and application." msgstr "" #: /var/www/html/cacti/utilities.php:1822 msgid "" "Allows Administrators to browse the user log. Administrators can filter and " "export the log as well." msgstr "" "Erlaubt das Ansehen des Benutzerlogs. Verwalter können Filter definieren und " "das Log exportieren." #: /var/www/html/cacti/utilities.php:1826 msgid "Poller Cache Administration" msgstr "Verwaltung des Poller Speichers" #: /var/www/html/cacti/utilities.php:1829 msgid "" "This is the data that is being passed to the poller each time it runs. This " "data is then in turn executed/interpreted and the results are fed into the " "RRDfiles for graphing or the database for display." msgstr "" #: /var/www/html/cacti/utilities.php:1833 msgid "" "The Data Query Cache stores information gathered from Data Query input " "types. The values from these fields can be used in the text area of Graphs " "for Legends, Vertical Labels, and GPRINTS as well as in CDEF's." msgstr "" #: /var/www/html/cacti/utilities.php:1835 msgid "Rebuild Poller Cache" msgstr "Neugenerieren des Poller Speichers" #: /var/www/html/cacti/utilities.php:1837 msgid "" "The Poller Cache will be re-generated if you select this option. Use this " "option only in the event of a database crash if you are experiencing issues " "after the crash and have already run the database repair tools. " "Alternatively, if you are having problems with a specific Device, simply re-" "save that Device to rebuild its Poller Cache. There is also a command line " "interface equivalent to this command that is recommended for large systems. " "NOTE: On large systems, this command may take " "several minutes to hours to complete and therefore should not be run from " "the Cacti UI. You can simply run 'php -q cli/rebuild_poller_cache.php --" "help' at the command line for more information." msgstr "" #: /var/www/html/cacti/utilities.php:1839 msgid "Rebuild Resource Cache" msgstr "" #: /var/www/html/cacti/utilities.php:1841 msgid "" "When operating multiple Data Collectors in Cacti, Cacti will attempt to " "maintain state for key files on all Data Collectors. This includes all " "core, non-install related website and plugin files. When you force a " "Resource Cache rebild, Cacti will clear the local Resource Cache, and then " "rebuild it at the next scheduled poller start. This will trigger all Remote " "Data Collectors to recheck their website and plugin files for consistency." msgstr "" #: /var/www/html/cacti/utilities.php:1845 msgid "Boost Utilities" msgstr "" #: /var/www/html/cacti/utilities.php:1846 msgid "View Boost Status" msgstr "" #: /var/www/html/cacti/utilities.php:1848 msgid "" "This menu pick allows you to view various boost settings and statistics " "associated with the current running Boost configuration." msgstr "" #: /var/www/html/cacti/utilities.php:1852 msgid "RRD Utilities" msgstr "" #: /var/www/html/cacti/utilities.php:1853 msgid "RRDfile Cleaner" msgstr "" #: /var/www/html/cacti/utilities.php:1855 msgid "" "When you delete Data Sources from Cacti, the corresponding RRDfiles are not " "removed automatically. Use this utility to facilitate the removal of these " "old files." msgstr "" #: /var/www/html/cacti/utilities.php:1859 msgid "SNMPAgent Utilities" msgstr "" #: /var/www/html/cacti/utilities.php:1860 msgid "View SNMPAgent Cache" msgstr "" #: /var/www/html/cacti/utilities.php:1862 msgid "This shows all objects being handled by the SNMPAgent." msgstr "" #: /var/www/html/cacti/utilities.php:1864 msgid "Rebuild SNMPAgent Cache" msgstr "" #: /var/www/html/cacti/utilities.php:1866 msgid "" "The SNMP cache will be cleared and re-generated if you select this option. " "Note that it takes another poller run to restore the SNMP cache completely." msgstr "" #: /var/www/html/cacti/utilities.php:1868 msgid "View SNMPAgent Notification Log" msgstr "" #: /var/www/html/cacti/utilities.php:1870 msgid "" "This menu pick allows you to view the latest events SNMPAgent has handled in " "relation to the registered notification receivers." msgstr "" #: /var/www/html/cacti/utilities.php:1874 msgid "Allows Administrators to maintain SNMP notification receivers." msgstr "" "Ermöglicht Administratoren, Empfänger von SNMP Mitteilungen zu verwalten." #: /var/www/html/cacti/utilities.php:1880 msgid "Cacti System Utilities" msgstr "Systemwerkzeuge" #: /var/www/html/cacti/utilities.php:2004 msgid "Overrun Warning" msgstr "Überlauf-Warnung" #: /var/www/html/cacti/utilities.php:2005 msgid "Timed Out" msgstr "Zeitlimit überschritten" #: /var/www/html/cacti/utilities.php:2006 msgid "Other" msgstr "Sonstige" #: /var/www/html/cacti/utilities.php:2008 msgid "Never Run" msgstr "Noch nicht gelaufen" #: /var/www/html/cacti/utilities.php:2061 msgid "Cannot open directory" msgstr "Verzeichnis kann nicht geöffnet werden" #: /var/www/html/cacti/utilities.php:2065 msgid "Directory Does NOT Exist!!" msgstr "Das Verzeichnis existiert nicht!!" #: /var/www/html/cacti/utilities.php:2072 msgid "Current Boost Status" msgstr "Aktueller Boost Status" #: /var/www/html/cacti/utilities.php:2075 msgid "Boost On-demand Updating:" msgstr "Boost Aktualisierung nach Bedarf:" #: /var/www/html/cacti/utilities.php:2078 msgid "Total Data Sources:" msgstr "Gesamtzahl Datenquellen:" #: /var/www/html/cacti/utilities.php:2082 msgid "Pending Boost Records:" msgstr "Ausstehende Boost Datensätze:" #: /var/www/html/cacti/utilities.php:2085 msgid "Archived Boost Records:" msgstr "Archivierte Boost Datensätze:" #: /var/www/html/cacti/utilities.php:2088 msgid "Total Boost Records:" msgstr "Gesamtzahl Boost Datensätze:" #: /var/www/html/cacti/utilities.php:2092 msgid "Boost Storage Statistics" msgstr "Boost Speicherstatistik" #: /var/www/html/cacti/utilities.php:2096 msgid "Database Engine:" msgstr "Datenbank-Engine:" #: /var/www/html/cacti/utilities.php:2100 msgid "Current Boost Table(s) Size:" msgstr "Aktuelle Boost-Tabellengröße:" #: /var/www/html/cacti/utilities.php:2104 msgid "Avg Bytes/Record:" msgstr "Durchschnittliche Bytes pro Datensatz:" #: /var/www/html/cacti/utilities.php:2132 #, php-format msgid "%d Bytes" msgstr "%d Byte" #: /var/www/html/cacti/utilities.php:2132 msgid "Max Record Length:" msgstr "Max. Datensatzlänge:" #: /var/www/html/cacti/utilities.php:2138 #: /var/www/html/cacti/utilities.php:2139 msgid "Unlimited" msgstr "Unbegrenzt" #: /var/www/html/cacti/utilities.php:2144 msgid "Max Allowed Boost Table Size:" msgstr "Maximal zulässige Boost Tabellengröße:" #: /var/www/html/cacti/utilities.php:2148 msgid "Estimated Maximum Records:" msgstr "Geschätzte maximale Anzahl Datensätze:" #: /var/www/html/cacti/utilities.php:2151 msgid "Runtime Statistics" msgstr "Laufzeit-Statistiken" #: /var/www/html/cacti/utilities.php:2154 msgid "Last Start Time:" msgstr "Letzte Startzeit:" #: /var/www/html/cacti/utilities.php:2157 msgid "Last Run Duration:" msgstr "Dauer der letzten Ausführung:" #: /var/www/html/cacti/utilities.php:2160 #, fuzzy, php-format msgid "%d minutes" msgstr "%d Minuten" #: /var/www/html/cacti/utilities.php:2160 #, php-format msgid "%d seconds" msgstr "%d Sekunden" #: /var/www/html/cacti/utilities.php:2161 #, fuzzy, php-format msgid "%0.2f percent of update frequency)" msgstr "%0.2f Prozent der Update-Frequenz" #: /var/www/html/cacti/utilities.php:2168 msgid "RRD Updates:" msgstr "Anzahl aktualisierter RRDs:" #: /var/www/html/cacti/utilities.php:2171 #: /var/www/html/cacti/utilities.php:2177 msgid "MBytes" msgstr "MByte" #: /var/www/html/cacti/utilities.php:2171 msgid "Peak Poller Memory:" msgstr "Höchste gemessene Speicherbelegung:" #: /var/www/html/cacti/utilities.php:2174 msgid "Detailed Runtime Timers:" msgstr "Detaillierte Laufzeitwerte:" #: /var/www/html/cacti/utilities.php:2177 msgid "Max Poller Memory Allowed:" msgstr "Maximal zulässige Speicherbelegung:" #: /var/www/html/cacti/utilities.php:2180 msgid "Run Time Configuration" msgstr "Laufzeit-Konfiguration" #: /var/www/html/cacti/utilities.php:2183 msgid "Update Frequency:" msgstr "Aktualisierungsturnus:" #: /var/www/html/cacti/utilities.php:2186 msgid "Next Start Time:" msgstr "Nächste Startzeit:" #: /var/www/html/cacti/utilities.php:2189 msgid "Maximum Records:" msgstr "Maximal zulässige Anzahl Datensätze:" #: /var/www/html/cacti/utilities.php:2189 msgid "Records" msgstr "Datensätze" #: /var/www/html/cacti/utilities.php:2192 msgid "Maximum Allowed Runtime:" msgstr "Maximal zulässige Laufzeit:" #: /var/www/html/cacti/utilities.php:2198 msgid "Image Caching Status:" msgstr "Status:" #: /var/www/html/cacti/utilities.php:2201 msgid "Cache Directory:" msgstr "Cache Verzeichnis:" #: /var/www/html/cacti/utilities.php:2204 msgid "Cached Files:" msgstr "Gesamtzahl gepufferter Dateien:" #: /var/www/html/cacti/utilities.php:2207 msgid "Cached Files Size:" msgstr "Cache Größe:" #: /var/www/html/cacti/utilities.php:2303 msgid "SNMPAgent Cache" msgstr "" #: /var/www/html/cacti/utilities.php:2333 msgid "OIDs" msgstr "" #: /var/www/html/cacti/utilities.php:2412 msgid "Column Data" msgstr "" #: /var/www/html/cacti/utilities.php:2412 msgid "Scalar" msgstr "" #: /var/www/html/cacti/utilities.php:2554 msgid "SNMPAgent Notification Log" msgstr "" #: /var/www/html/cacti/utilities.php:2582 #: /var/www/html/cacti/utilities.php:2667 msgid "Receiver" msgstr "" #: /var/www/html/cacti/utilities.php:2659 msgid "Log Entries" msgstr "" #: /var/www/html/cacti/utilities.php:2674 #, php-format msgid "Severity Level: %s" msgstr "" #: /var/www/html/cacti/vdef.php:265 msgid "Click 'Continue' to delete the following VDEF." msgid_plural "Click 'Continue' to delete following VDEFs." msgstr[0] "" msgstr[1] "" # Pural required! #: /var/www/html/cacti/vdef.php:270 msgid "Delete VDEF" msgid_plural "Delete VDEFs" msgstr[0] "VDEF löschen" msgstr[1] "VDEFS löschen" #: /var/www/html/cacti/vdef.php:274 msgid "" "Click 'Continue' to duplicate the following VDEF. You can optionally change " "the title format for the new VDEF." msgid_plural "" "Click 'Continue' to duplicate following VDEFs. You can optionally change the " "title format for the new VDEFs." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/vdef.php:280 #, fuzzy msgid "Duplicate VDEF" msgid_plural "Duplicate VDEFs" msgstr[0] "Duplizieren" msgstr[1] "Duplizieren" #: /var/www/html/cacti/vdef.php:283 msgid "You must select at least one VDEF." msgstr "Bitte wählen Sie mindestens eine VDEF." #: /var/www/html/cacti/vdef.php:325 msgid "Click 'Continue' to delete the following VDEF's." msgstr "" #: /var/www/html/cacti/vdef.php:385 #, fuzzy #| msgid "Preview" msgid "VDEF Preview" msgstr "Vorschau" #: /var/www/html/cacti/vdef.php:390 #, php-format msgid "VDEF Items [edit: %s]" msgstr "" #: /var/www/html/cacti/vdef.php:392 msgid "VDEF Items [new]" msgstr "" #: /var/www/html/cacti/vdef.php:408 msgid "Choose what type of VDEF item this is." msgstr "Wählen Sie die Art dieses VDEF Elementes." #: /var/www/html/cacti/vdef.php:408 msgid "VDEF Item Type" msgstr "Typ des VDEF Elementes" #: /var/www/html/cacti/vdef.php:430 msgid "Enter a value for this VDEF item." msgstr "Geben Sie bitte einen Wert für dieses VDEF Element ein." #: /var/www/html/cacti/vdef.php:430 msgid "VDEF Item Value" msgstr "Wert des VDEF Elementes" #: /var/www/html/cacti/vdef.php:535 #, php-format msgid "VDEFs [edit: %s]" msgstr "" #: /var/www/html/cacti/vdef.php:537 msgid "VDEFs [new]" msgstr "" #: /var/www/html/cacti/vdef.php:600 /var/www/html/cacti/vdef.php:639 msgid "Delete VDEF Item" msgstr "" #: /var/www/html/cacti/vdef.php:847 msgid "The name of this VDEF." msgstr "" #: /var/www/html/cacti/vdef.php:847 msgid "VDEF Name" msgstr "" #: /var/www/html/cacti/vdef.php:848 msgid "" "VDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: /var/www/html/cacti/vdef.php:849 msgid "The number of Graphs using this VDEF." msgstr "" #: /var/www/html/cacti/vdef.php:850 msgid "The number of Graphs Templates using this VDEF." msgstr "" #: /var/www/html/cacti/vdef.php:873 msgid "No VDEFs" msgstr "" #, fuzzy #~ msgid "" #~ "Auto scale the y-axis instead of defining an upper and lower limit. Note: " #~ "if this is check both the\n" #~ "\t\t\tUpper and Lower limit will be ignored." #~ msgstr "" #~ "Automatische Skalierung der y-Achse statt Definition einer oberen und " #~ "unteren Grenze." #, fuzzy #~ msgid "" #~ "A second axis will be drawn to the right of the graph. It is tied to the " #~ "left axis via the \n" #~ "\t\t\tscale and shift parameters." #~ msgstr "" #~ "Eine zweite Achse wird auf der rechten Seite gezeichnet. Sie ist mit der " #~ "linken Achse verknüpft über die Skalierungs- und Verschiebungs-Parameter" #, fuzzy #~ msgid "" #~ "By default, the format of the axis labels gets determined " #~ "automatically. \n" #~ "\t\t\tIf you want to do this yourself, use this option with the same %lf " #~ "arguments you know from the PRINT and GPRINT commands." #~ msgstr "" #~ "Standardmäßig werden die Achsenbeschriftungen automatisch festgelegt. " #~ "Wollen Sie dies selbst tun, benutzen Sie bitte die gleiche %lf Argumente " #~ "wie bei den PRINT und GPRINT Kommandos." #, fuzzy #~ msgid "Discovery Rules" #~ msgstr "Geräteregeln" #, fuzzy #~ msgid "Deleted rra(s) from rrd file: %s" #~ msgstr "Hinzugefügte Datenquellen für die rrd Datei: %s" #~ msgid "Choose the exact item to export to XML." #~ msgstr "" #~ "Wählen sie das exakte Element, welches in XML exportiert werden soll." #, fuzzy #~ msgid "Tecnical Support" #~ msgstr "Technischer Support" #~ msgid "" #~ "Note that when upgrading, you only will receive the Upgrade selection." #~ msgstr "" #~ "Beachten Sie, dass bei einer Aktualisierung Sie nur jene zur Auswahl " #~ "erhalten." #~ msgid "You have three Cacti installation options to choose from:" #~ msgstr "Es stehen drei Optionen zur Auswahl:" #~ msgid "[Not Ran]" #~ msgstr "[Nicht gelaufen]" #~ msgid "Select the graph items that you want to accept user input for." #~ msgstr "Wählen Sie Diagramm Elemente, für die Sie Eingaben machen wollen." #~ msgid "LINE LIMIT OF 1000 LINES REACHED!!" #~ msgstr "Zeilengrenze von 1000 Zeilen erreicht!" #~ msgid "Uptime Goes Backwards" #~ msgstr "System-Neustart" #~ msgid "Index Count Changed" #~ msgstr "Anzahl der Indices geändert" #~ msgid "Graph Export" #~ msgstr "Graph Export" #~ msgid "OK: FILE FOUND" #~ msgstr "OK: Datei gefunden" #~ msgid "ERROR: IS DIR" #~ msgstr "FEHLER: Dies ist ein Verzeichnis" #~ msgid "ERROR: FILE NOT FOUND" #~ msgstr "FEHLER: Datei nicht gefunden" #~ msgid "Not Defined" #~ msgstr "Undefiniert" #~ msgid "Start" #~ msgstr "Start" #~ msgid "End" #~ msgstr "Ende" #~ msgid "Hosts" #~ msgstr "Zielsysteme" #~ msgid "Warning" #~ msgstr "Warnung" #~ msgid "Emergency" #~ msgstr "Notfall" #~ msgid "Critical" #~ msgstr "Kritisch" #~ msgid "Alert" #~ msgstr "Alarm" #~ msgid "Info" #~ msgstr "Info" #~ msgid "Informational" #~ msgstr "Information" #~ msgid "Message" #~ msgstr "Meldung" #~ msgid "Month" #~ msgstr "1 Monat" #~ msgid "Off" #~ msgstr "Aus" #, fuzzy #~ msgid "Emailing Options" #~ msgstr "Login Optionen" #~ msgid "Device Type" #~ msgstr "Zielsystemtyp" #~ msgid "Show Device Details" #~ msgstr "Zeige Details des Zielsystemes" #~ msgid "Are you sure you want to delete the following site(s)?" #~ msgstr "Sind Sie sicher, die folgenden Standorte zu löschen?" #~ msgid "You must select at least one site." #~ msgstr "Bitte wählen Sie mindestens einen Standort aus" #~ msgid "Change SNMP Options" #~ msgstr "SNMP Optionen ändern" #~ msgid "Are you sure you want to delete the following devices?" #~ msgstr "Sind Sie sicher, dass folgende Zielsysteme gelöscht werden sollen?" #~ msgid "Address" #~ msgstr "Adresse" #~ msgid "Host" #~ msgstr "Zielsystem" #~ msgid "Command" #~ msgstr "Befehl" #~ msgid "Help" #~ msgstr "Hilfe" #~ msgid "Export Method" #~ msgstr "Export Methode" #~ msgid "Choose which export method to use." #~ msgstr "Wählen Sie die Export-Methode." #~ msgid "Daily at specified time" #~ msgstr "Täglich zur festgelegten Zeit" #~ msgid "" #~ "Check this if you want to delete any existing files in the FTP remote " #~ "directory. This option is in use only when using the PHP built-in ftp " #~ "functions." #~ msgstr "" #~ "Auswählen, um alle vorhandenen Dateien im entfernten FTP Verzeichnis zu " #~ "löschen. Die Option wird nur benutzt, wenn die eingebaute PHP FTP " #~ "Funktionen genutzt werden." #~ msgid "Use passive mode" #~ msgstr "Benutze passiven Modus" #~ msgid "Check this if you want to connect in passive mode to the FTP server." #~ msgstr "" #~ "Anwählen, wenn sie im passive mode mit dem FTP Server verbinden wollen." #~ msgid "Status:" #~ msgstr "Status:" #~ msgid "%d Graphs" #~ msgstr "%d Diagramme" #~ msgid "" #~ "Cacti is designed to be a complete graphing solution based on the " #~ "RRDTool's framework. Its goal is to make a network administrator's job " #~ "easier by taking care of all the necessary details necessary to create " #~ "meaningful graphs." #~ msgstr "" #~ "Cacti wurde konstruiert als vollständige Diagramm-Lösung, basierend auf " #~ "RRDTool. Das Ziel ist es, die Arbeit des Netzwerk-Verwalters zu " #~ "vereinfachen, indem Cacti alle erforderlichen Details zur Erzeugung " #~ "verständlicher Diagramme berücksichtigt." # unclear #, fuzzy #~ msgid "Please see the" #~ msgstr "Bitte sehen Sie die" #~ msgid "official Cacti website" #~ msgstr "offizielle Cacti Webseite" #~ msgid "for information, support, and updates." #~ msgstr "für Informationen, Support und Updates." #~ msgid "Current Cacti Developers" #~ msgstr "Aktuelle Cacti Entwickler" #~ msgid "Cacti Variables" #~ msgstr "Cacti Variablen" #~ msgid "Operating System:" #~ msgstr "Betriebssystem:" #~ msgid "PHP SNMP Support:" #~ msgstr "PHP SNMP Unterstützung" #~ msgid "Your passwords do not match, please retype:" #~ msgstr "" #~ "Ihre Kennwörter stimmen nicht überein, bitte wiederholen Sie Ihre Eingabe:" #~ msgid "*** Forced Password Change ***" #~ msgstr "*** Erzwinge Kennwortwechsel ***" #~ msgid "Please enter a new password for cacti:" #~ msgstr "Bitte geben Sie ein neues Kennwort für Cacti ein:" #~ msgid "Password:" #~ msgstr "Kennwort:" #~ msgid "Confirm:" #~ msgstr "Bestätigen:" #~ msgid "LDAP Search Error: " #~ msgstr "Fehler bei LDAP Suche:" #~ msgid "LDAP Error: " #~ msgstr "LDAP Fehler:" # why a hypen at the end? #, fuzzy #~ msgid "Template user '" #~ msgstr "Template Benutzer '" # should not be splitted into two string #, fuzzy #~ msgid "' does not exist." #~ msgstr "' existiert nicht." #, fuzzy #~ msgid "Guest user \"" #~ msgstr "Gastbenutzer \"" #, fuzzy #~ msgid "\" does not exist." #~ msgstr "\" existiert nicht." #~ msgid "Please enter your Cacti user name and password below:" #~ msgstr "Bitte Benutzernamen und Kennwort eingeben:" #~ msgid "User Name:" #~ msgstr "Benutzername:" #~ msgid "" #~ "You did not select a valid action. Please select 'Return' to return to " #~ "the previous menu." #~ msgstr "" #~ "Sie müssen eine Aktion wählen. Bitte drücken Sie \"Zurück\", um ins " #~ "vorhergehende Menü zurück zu kehren." #~ msgid "When you click 'Continue', the selected CDEFs will be deleted." #~ msgstr "Klicken Sie auf 'Weiter' um die ausgewählten CDEFs zu löschen." #~ msgid "" #~ "When you click 'Continue', the following CDEFs will be duplicated. You " #~ "can optionally change the title format for the new CDEFs." #~ msgstr "" #~ "Klicken Sie auf 'Weiter', um die folgenden CDEFs zu duplizieren. Optional " #~ "können Sie die Titelzeile verändern." # Plural required #, fuzzy #~ msgid "Duplicate CDEF(s)" #~ msgstr "Duplizieren" #~ msgid "Are you sure you want to delete the CDEF" #~ msgstr "Wollen die diese CDEF wirklich löschen" # überarbeiten #, fuzzy #~ msgid "[edit: " #~ msgstr "[ändern:" #~ msgid "CDEF's" #~ msgstr "CDEF's" #~ msgid "Search:" #~ msgstr "Suche:" #~ msgid "Rows:" #~ msgstr "Zeilen:" #~ msgid "CDEF Title" #~ msgstr "CDEF Titel" #, fuzzy #~ msgid "Import Cacti Colors" #~ msgstr "Aktuelle Cacti Entwickler" #~ msgid "Merge (default)" #~ msgstr "Mischen (Standard)" #~ msgid "Reorder" #~ msgstr "Umsortieren" #, fuzzy #~ msgid "File Format Notes" #~ msgstr "Titelzeile:" #~ msgid "Red:" #~ msgstr "Rot:" #~ msgid "Ascending" #~ msgstr "Ansteigend" #~ msgid "Descending" #~ msgstr "Absteigend" #~ msgid "Green:" #~ msgstr "Grün:" #~ msgid "Blue:" #~ msgstr "BLau:" #~ msgid "Columns:" #~ msgstr "Spalten:" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the selected Data Input Method(s) will be " #~ "deleted" #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "Delete Data Input Method(s)" #~ msgstr "Programme zur Datenabfrage" #~ msgid "Are you sure you want to delete the field" #~ msgstr "Wollen die dieses Feld wirklich löschen" #~ msgid "" #~ "This script appears to have no input values, therefore there is nothing " #~ "to add." #~ msgstr "" #~ "Das Skript scheint keine Eingabe-Werte zu haben. Deswegen gibt es nicht " #~ "zum Hinzufügen." #~ msgid "Fields" #~ msgstr "Felder" #~ msgid " (Not In Use)" #~ msgstr " (Nicht verwendet)" #, fuzzy #~ msgid "" #~ "When you click \"Continue\", the following Data Queries will be deleted." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "Delete Data Querie(s)" #~ msgstr "Datenabfragen" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Data Queries will be duplicated. " #~ "You can optionally change the title format for the new Data Query." #~ msgstr "" #~ "Wenn Sie \"Sichern\" wählen, dann werden die folgende Daten Templates " #~ "dupliziert. Optional können sie den Titel ändern." #, fuzzy #~ msgid "Duplicate Data Queries" #~ msgstr "Zugeordnete Datenabfragen" #~ msgid "" #~ "You must first select a Data Query. Please select 'Return' to return to " #~ "the previous menu." #~ msgstr "" #~ "Sie müssen erst eine Datenabfrage auswählen. Bitte klicken Sie \"Zurück" #~ "\", um in das vorhergegangene Menü zurück zu kehren." #~ msgid "Are you sure you want to delete the Data Query Graph" #~ msgstr "Wollen die dieses Datenabfrage-Diagramm wirklich löschen" #~ msgid "Associated Graph/Data Source Templates" #~ msgstr "Zugeordnete Graph/Daten Schablonen" #~ msgid "Associated Data Source Templates" #~ msgstr "Zugeordnete Daten Schablonen" #~ msgid "Use this Field" #~ msgstr "Dieses Feld benutzen" #~ msgid "Suggested Values: Data Source Templates" #~ msgstr "Vorgeschlagene Werte: Daten Schablonen" #~ msgid "Data Source Template" #~ msgstr "Schablone für Datenquellen" #~ msgid "Suggested Values: Graph Templates" #~ msgstr "Vorschlagswerte: Graph Templates" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Data Source(s) will be deleted." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "The following Graph(s) are using these Data Source(s):" #~ msgstr "Die folgenden Graphen benutzen diese Datenquellen:" #, fuzzy #~ msgid "Leave the Graph(s) untouched." #~ msgstr "Graphen unverändert lassen." #, fuzzy #~ msgid "" #~ "Delete all Graph Item(s) that reference these Data " #~ "Source(s)." #~ msgstr "" #~ "Lösche alle Diagramm Elemente die auf diese Datenquelle " #~ "verweisen." #, fuzzy #~ msgid "" #~ "Delete all Graph(s) that reference these Data Source(s)." #~ msgstr "" #~ "Lösche alle Diagramme die auf diese Datenquelle " #~ "verweisen." #, fuzzy #~ msgid "Delete Data Source(s)" #~ msgstr "Gelöschte Datquelle: %d" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Data Source(s) will be re-" #~ "associated with the choosen Graph Template. Be aware that all warnings " #~ "will be suppressed during the conversion, so Graph data loss is possible." #~ msgstr "" #~ "Wählen Sie ein Graph-Template und klicken sie auf \"speichern\" um das " #~ "Graph-Template des folgenden Graphen zu sichern. Achtung: alle Warnungen " #~ "werden während des Umwandlungsprozesses unterdrückt. Es besteht die " #~ "Möglichkeit, dass Graph-Daten verloren gehen können." #~ msgid "New Data Source Template:" #~ msgstr "Neue Daten Schablone" #, fuzzy #~ msgid "Change Data Source(s) Graph Template" #~ msgstr "Ändere Daten Schablone" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Data Source(s) will be re-" #~ "associated with the Device below." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "Change Data Source(s) Device" #~ msgstr "Ändere Daten Schablone" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Data Source(s) will be " #~ "duplicated. You can optionally change the title format for the new Data " #~ "Source(s)." #~ msgstr "" #~ "Wenn Sie \"Sichern\" wählen, dann werden die folgende Daten Templates " #~ "dupliziert. Optional können sie den Titel ändern." #, fuzzy #~ msgid "Duplicate Data Source(s)" #~ msgstr "Datenquellen aktualisieren" #, fuzzy #~ msgid "" #~ "When you click 'Continue' the following Data Source(s) will be converted " #~ "into Data Template(s). You can optionally change the title format for " #~ "the new Data Template(s)." #~ msgstr "" #~ "Wenn Sie auf \"speichern\" klicken, werden die folgenden Graphen in Graph-" #~ "Schablonen umgewandelt. Optional können Sie die Überschrift der neuen " #~ "Graph-Schablonen ändern." #, fuzzy #~ msgid "Convert Data Soruce(s) to Data Template(s)" #~ msgstr "In Daten-Schablone umwandeln" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Data Source(s) will be enabled." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "Enable Data Source(s)" #~ msgstr "Datenquellen aktualisieren" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Data Source(s) will be disabled." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen deaktiviert." #, fuzzy #~ msgid "Disable Data Source(s)" #~ msgstr "Spezial Datenquelle" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Data Source(s) will will have " #~ "their suggested naming conventions recalculated." #~ msgstr "" #~ "Wenn Sie auf \"ja\" klicken, werden die vorgeschlagenen " #~ "Namenskonventionen der folgende Datenquellen neu errechnet." #~ msgid "" #~ "You must first select a Data Source. Please select 'Return' to return to " #~ "the previous menu." #~ msgstr "" #~ "Sie müssen erst eine Datenquelle auswählen. Bitte klicken Sie \"Zurück\" " #~ "um in das vorhergegangene Menü zurück zu kehren." #~ msgid "[data input:" #~ msgstr "[data input:" #~ msgid "From Host:" #~ msgstr "Von Gerät:" #~ msgid "From Data Source Template" #~ msgstr "Von Daten Schablone" #, fuzzy #~ msgid "Template is locked" #~ msgstr "Überschrift des Templates" #, fuzzy #~ msgid "Template is unlocked" #~ msgstr "Überschrift des Templates" #~ msgid "Data Source Template Selection" #~ msgstr "Daten-Schablone Auswahl" #, fuzzy #~ msgid "Data Source Options" #~ msgstr "Element der Datenquellen" #~ msgid "Supplemental Data Source Template Data" #~ msgstr "Ergänzende Daten für Daten Schablonen" #~ msgid "Seconds" #~ msgstr "Sekunden" #~ msgid "Minutes" #~ msgstr "Minuten" #~ msgid "[device:" #~ msgstr "[Zielsystem:" #~ msgid "No Host" #~ msgstr "Kein Zielsystem" #~ msgid "Template:" #~ msgstr "Schablone:" #~ msgid "Method:" #~ msgstr "Methode:" #~ msgid "Data Source Item" #~ msgstr "Element der Datenquellen" #, fuzzy #~ msgid "Data Source Template " #~ msgstr "Schablone für Datenquellen" #, fuzzy #~ msgid "Data Source Id: " #~ msgstr "Datenquelle: %d" #, fuzzy #~ msgid "Data Source Name: '" #~ msgstr "Name der Datenquelle" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Data Template(s) will be " #~ "deleted. Any Data Source(s) attached to these Data Template(s) will " #~ "become individual Data Source(s)." #~ msgstr "" #~ "Sind Sie sicher, dass die folgenden Daten-Templates gelöscht werden " #~ "sollen? Alle vorhandenen Datenquellen, die diesen Vorlagen zugeordnet " #~ "sind werden zu \"individuellen Datenquellen\"." #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Data Template(s) will be " #~ "duplicated. You can optionally change the title format for the new Data " #~ "Template(s)." #~ msgstr "" #~ "Wenn Sie \"Sichern\" wählen, dann werden die folgende Daten Templates " #~ "dupliziert. Optional können sie den Titel ändern." #~ msgid "" #~ "You must first select a Data Source Template. Please select 'Return' to " #~ "return to the previous menu." #~ msgstr "" #~ "Sie müssen zunächst eine Daten Schablone wählen. Durch \"Zurück\" " #~ "gelangen Sie zum vorigen Menu." #~ msgid "Data Source Templates" #~ msgstr "Schablone für Datenquellen" #~ msgid "Confirm" #~ msgstr "Bestätigen:" #~ msgid "Are you sure you want to add the following Graph Template:" #~ msgstr "" #~ "Sind Sie sicher, dass folgende Diagramm Schablone hinzugefügt werden " #~ "sollen?" #~ msgid "" #~ "All devices currently attached to the current Device Template will be " #~ "updated." #~ msgstr "" #~ "Alle der Zielsystem Schablone zugeordneten Zielsysteme werden " #~ "aktualisiert." #~ msgid "Are you sure you want to add the following Data Query:" #~ msgstr "" #~ "Sind Sie sicher, dass folgende Datenabfrage hinzugefügt werden soll:" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Device Template(s) will be " #~ "deleted. All devices currently attached this these Device Template(s) " #~ "will lose their template assocation." #~ msgstr "" #~ "Sind Sie sicher, das die folgenden Zielsystem Schablonen gelöscht werden " #~ "sollen? Alle aktuell zugeordneten Zielsysteme verlieren dadurch die " #~ "Schablonenzuordnung." #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Device Template(s) will be " #~ "duplicated. You can optionally change the title format for the new Device " #~ "Template(s)." #~ msgstr "" #~ "Wenn Sie \"Sichern\" wählen, dann werden die folgende Zielsystem " #~ "Schablonen dupliziert. Optional können sie den Titel ändern." #~ msgid "" #~ "You must first select a Device Template. Please select 'Return' to " #~ "return to the previous menu." #~ msgstr "" #~ "Bitte wählen Sie zuerst eine Zielsystem Schablone aus. Wählen Sie " #~ "'Zurück' um zum vorigen Menu zurückzukehren." #~ msgid "Ping and SNMP" #~ msgstr "Ping und SNMP" #~ msgid "Disabled due to SNMP settings" #~ msgstr "Deaktiviert aufgrund der SNMP Einstellungen" #, fuzzy #~ msgid "Remove" #~ msgstr "(Entfernen)" #, fuzzy #~ msgid "Add Template" #~ msgstr "Füge eine Diagramm Schablone hinzu" #, fuzzy #~ msgid "Update Re-Index Methods" #~ msgstr "Aktualisierte die Re-Indizierung" #~ msgid "Availbility/SNMP Settings" #~ msgstr "Verfügbarkeits-Optionen ändern" #~ msgid "Template controls Availability and SNMP" #~ msgstr "Schablone legt Verfügbarkeits- und SNMP Optionen fest" #~ msgid ", User can override" #~ msgstr ", Benutzer kann überschreiben" #~ msgid ", Template propagation is forced" #~ msgstr ", Vererbung der Schablone wird erzwungen" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following GPRINT Preset(s) will be delete." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #~ msgid "You must select at least one GPRINT preset." #~ msgstr "Mindestens ein vordefiniertes \"GPRINT\" muss ausgewählt werden." #~ msgid "ACCESS DENIED" #~ msgstr "Zugriff verweigert" #~ msgid "Zoom Graph" #~ msgstr "Diagramm vergrößern" #~ msgid "Zooming Graph" #~ msgstr "Diagramm Zoom" #~ msgid "Properties" #~ msgstr "Eigenschaften" #~ msgid "Viewing Graph Properties" #~ msgstr "Ansehen der Diagramm Eigenschaften" #~ msgid "Current:" #~ msgstr "Aktuell:" #~ msgid "Average:" #~ msgstr "Mittel:" #~ msgid "Maximum:" #~ msgstr "Maximal:" #~ msgid "[device: " #~ msgstr "[Zielsystem:" #~ msgid "Data Source Template:" #~ msgstr "Schablone für Datenquelle:" #~ msgid "YOU DO NOT HAVE RIGHTS TO CHANGE GRAPH SETTINGS" #~ msgstr "Sie sind nicht berechtigt, Diagramm Einstellungen zu ändern" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Graph Template(s) will be " #~ "deleted. Any Graph(s) attached to these Graph Template(s) will become " #~ "individual Graph(s)." #~ msgstr "" #~ "Sind Sie sicher, dass folgende Graph Templates gelöscht werden sollen? " #~ "Alle zugeordneten Graphen werden zu eigenständigen Graphen." #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Graph Template(s) will be " #~ "duplicated. You can optionally change the title format for the new Graph " #~ "Template(s)." #~ msgstr "" #~ "Wenn Sie \"speichern\" klicken, werden folgende Graph-Templates " #~ "dupliziert. Optional können Sie die Überschrift des neuen Graph-Templates " #~ "ändern." #, fuzzy #~ msgid "Duplidate Graph Template(s)" #~ msgstr "Graph Templates aktualisieren" #~ msgid "" #~ "You must first select a Graph Template. Please select 'Return' to return " #~ "to the previous menu." #~ msgstr "" #~ "Sie müssen erst ein Graph-Template auswählen. Bitte klicken Sie \"Zurück" #~ "\", um in das vorhergegangene Menü zurück zu kehren." #~ msgid "Graph Template Labels" #~ msgstr "Bezeichnungen für Diagramm Schablone" #~ msgid "Graph Template Right Axis Settings" #~ msgstr "Einstellungen der rechte Achse der Diagramm Schablonen" #~ msgid "Graph Template Size" #~ msgstr "Größe der Diagramm Schablone" #~ msgid "Graph Template Limits" #~ msgstr "Grenzwerte für Diagramm Schablone" #~ msgid "Graph Template Grid" #~ msgstr "Gitter für Diagramm Schablone" #~ msgid "Graph Template Color" #~ msgstr "Farben für Diagramm Schablone" #~ msgid "Graph Template Legend" #~ msgstr "Legende für Diagramm Schablone" #~ msgid "Graph Template Misc" #~ msgstr "Verschiedenes der Diagramm Schablone" #~ msgid "Graph Template Cacti Specifics" #~ msgstr "Cacti Spezifika für Diagramm Schablone" #~ msgid "[edit graph: " #~ msgstr "[Diagramm ändern:" #~ msgid "graph_export.csv" #~ msgstr "graph_export.csv" #~ msgid "Create devices for your network" #~ msgstr "Erzeuge Zielsysteme für Ihr Netzwerk" #~ msgid "Create graphs for your new devices" #~ msgstr "" #~ "Erzeugen neuer Diagramme für Ihre neuen " #~ "Zielsysteme" #~ msgid "View your new graphs" #~ msgstr "Anschauen neuer Diagramme" #~ msgid "To end your Cacti session please close your web browser." #~ msgstr "" #~ "Bitte schließen Sie den Web Browser um Ihre Cacti Sitzung zu beenden." #~ msgid "Return to Cacti" #~ msgstr "Zurück zu Cacti" #, fuzzy #~ msgid "Plugin Management (Cacti Version:" #~ msgstr "Plugin Verwaltung" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Poller(s) will be deleted. All " #~ "devices currently attached this these Poller(s) will be reassigned to the " #~ "default poller." #~ msgstr "" #~ "Wollen Sie die folgenden Poller löschen? Alle Zielsysteme, die diesen " #~ "Pollern derzeit zugeordnet sind werden dem Standard-Poller zugeordnet." #, fuzzy #~ msgid "Delete Poller(s)" #~ msgstr "Diagramm(e) löschen:" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Poller(s) will be disabled. All " #~ "Devices currently attached to these Poller(s) will no longer have their " #~ "Graphs updated." #~ msgstr "" #~ "Wollen Sie die folgenden Poller deaktivieren? Alle Zielsysteme, die " #~ "diesen Pollern derzeit zugeordnet sind werden dem Standard-Poller " #~ "zugeordnet." #, fuzzy #~ msgid "Disable Poller(s)" #~ msgstr "Poller ändern" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Poller(s) will be enabled. All " #~ "Devices currently attached to these Poller(s) will resume updating their " #~ "Graphs." #~ msgstr "" #~ "Wollen Sie die folgenden Poller deaktivieren? Alle Zielsysteme, die " #~ "diesen Pollern derzeit zugeordnet sind werden dem Standard-Poller " #~ "zugeordnet." #, fuzzy #~ msgid "Enable Poller(s)" #~ msgstr "Poller ändern" #~ msgid "" #~ "You must first select a Poller. Please select 'Return' to return to the " #~ "previous menu." #~ msgstr "" #~ "Wählen Sie bitte zunächst einen Poller aus. Klicken Sie 'Zurück', um zum " #~ "vorgen Menu zurückzukehren." #, fuzzy #~ msgid "SNMP Items" #~ msgstr "Eine Einträge" #, fuzzy #~ msgid "Script Items" #~ msgstr "Diagramm Elemente" #, fuzzy #~ msgid "Server Items" #~ msgstr "Bäume" #~ msgid "Last Updated" #~ msgstr "Letzes Update" #~ msgid "This script is only meant to run at the command line." #~ msgstr "Dieses Skript darf nur von der Kommandozeile aus gestartet werden." #, fuzzy #~ msgid "When you click 'Continue', the following RRA(s) will be deleted." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "Delete RRA(s)" #~ msgstr "Standard RRA" #~ msgid "You must select at least one RRA." #~ msgstr "Sie müssen mindestens eine RRA auswählen." #~ msgid "WARNING: Function does not exist\n" #~ msgstr "Warnung: Funktion existiert nicht\n" #~ msgid "ERROR: Input Expected, Script Server Terminating\n" #~ msgstr "FEHLER: Eingabe erwartet, Skript-Server wird terminiert\n" #, fuzzy #~ msgid "When you click 'Continue', the following Site(s) will be deleted." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "Delete Site(s)" #~ msgstr "Dieses Element löschen" #~ msgid "Some sites not removed as they contain devices!" #~ msgstr "" #~ "Einieg Standorte wurden nicht gelöscht, weil Sie noch Zielsysteme " #~ "enthalten" #~ msgid "Are you sure you want to delete the site" #~ msgstr "Sind Sie sicher, dass dieser Standort gelöscht werden soll?" #~ msgid "" #~ "You can not delete this site while there are devices associated with it." #~ msgstr "" #~ "Sie können diesen Standort nicht löschen solange Zielsysteme mit diesem " #~ "verknüpft sind." #~ msgid "Site Filters" #~ msgstr "Standort-Filter:" #~ msgid "Site:" #~ msgstr "Standort:" #~ msgid "Device Template:" #~ msgstr "Zielsystem Schablone:" #~ msgid "Export Template" #~ msgstr "Schablonenexport" #~ msgid "to Export" #~ msgstr "zum Exportieren" #~ msgid "[update]" #~ msgstr "[Aktualisiert]" #~ msgid "Parent Item" #~ msgstr "übergeordnetes Element" #~ msgid "Choose the parent for this header/graph." #~ msgstr "" #~ "Wählen Sie das übergeordnete Element für diese/s Überschrift/Diagramm" #~ msgid "Tree Item Type" #~ msgstr "Typ des Baumelementes" #~ msgid "Choose what type of tree item this is." #~ msgstr "Wählen Sie die Art dieses Baumelementes" #~ msgid "Tree Item Value" #~ msgstr "Wert für das Baumelement" #~ msgid "If this item is a header, enter a title here." #~ msgstr "" #~ "Wenn es sich um eine Überschrift handelt, dann geben Sie bitte den Titel " #~ "hie rein." #~ msgid "Choose how children of this branch will be sorted." #~ msgstr "" #~ "Wählen Sie die Art, nach der die untergeordneten Baumelemente sortiert " #~ "werden sollen." #~ msgid "Choose a graph from this list to add it to the tree." #~ msgstr "Wählen Sie ein Diagramm aus der Liste um es dem Baum hinzuzufügen." #~ msgid "Choose a round robin archive to control how this graph is displayed." #~ msgstr "" #~ "Wählen Sie das 'round robin archiv' um die Diagrammanzeige festzulegen." #~ msgid "Choose a device here to add it to the tree." #~ msgstr "Wählen Sie ein Zielsystem um es dem Diagramm-Baum hinzuzufügen." #~ msgid "" #~ "Choose how graphs are grouped when drawn for this particular device on " #~ "the tree." #~ msgstr "" #~ "Wählen Sie bitte die Art der Gruppierung von Diagrammen für dieses " #~ "spezifische Zielsystem in diesem Diagramm-Baum." #~ msgid "Are you sure you want to delete the graph item" #~ msgstr "Sind Sie sicher, das Diagramm Element zu löschen" #~ msgid "Are you sure you want to delete the header item" #~ msgstr "Sind Sie sicher, die Überschrift zu löschen" #~ msgid "Are you sure you want to delete the device item" #~ msgstr "Sind Sie sicher, diesen Geräte-Eintrag zu löschen?" #, fuzzy #~ msgid "When you click 'Continue', the following Tree(s) will be deleted." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "Delete Tree(s)" #~ msgstr "Diagramm(e) löschen:" #~ msgid "Are you sure you want to delete the tree" #~ msgstr "Sind Sie sicher, diesen Baum zu löschen" #, fuzzy #~ msgid "'. Please select 'Return' to return to the previous menu." #~ msgstr "" #~ "Sie müssen erst einen Graphen auswählen. Bitte auf \"Zurück\" klicken um " #~ "ins vorherige Menü zu gelangen." #, fuzzy #~ msgid "When you click 'Continue', the following User(s) will be deleted." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #~ msgid "New Username:" #~ msgstr "neuer Benutzername:" #~ msgid "New Full Name:" #~ msgstr "Neuer vollständiger Name:" #~ msgid "New Realm:" #~ msgstr "Neuer Bereich:" #, fuzzy #~ msgid "When you click 'Continue', the following User(s) will be enabled." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following User(s) will have their " #~ "settings reinitialized with the selected User. The original user Full " #~ "Name, Password, Realm and Enable status will be retained, all other " #~ "fields will be overwritten from template User." #~ msgstr "" #~ "Sind Sie sicher, dass die ausgewählten Benutzer überschrieben werden " #~ "sollen mit den gewählten Schablonen Einstellungen und Berechtigungen? " #~ "Ursprüngliche Namen, Kennworte, Bereiche und Aktivierungsstatus bleiben " #~ "erhalten. Alle anderen Felder werden durch die Benutzer-Schablone " #~ "überschrieben." #~ msgid "Users to update:" #~ msgstr "zu aktualisierende Benutzer:" #, fuzzy #~ msgid "Re-Template User(s)" #~ msgstr "Benutzer für Schablone:" #~ msgid "Graph Permissions (By Graph)" #~ msgstr "Diagramm Berechtigungen (pro Diagramm)" #~ msgid "Default Policy" #~ msgstr "Standard Grafik-Regelwerk" #~ msgid " - " #~ msgstr " - " #~ msgid "No Access" #~ msgstr "Kein Zugriff" #~ msgid "Accessible" #~ msgstr "- nutzbar" #~ msgid "No Graphs" #~ msgstr "Keine Diagramme" #~ msgid "Graph Permissions (By Device)" #~ msgstr "Diagramm Berechtigungen (pro Zielsystem)" #~ msgid "The default allow/deny graph policy for this user" #~ msgstr "Die standardmäßige Berechtigungsregel für diesen Benutzer" #~ msgid "Graph Permissions (By Graph Template)" #~ msgstr "Diagramm Berechtigungen (pro Diagramm Schablone)" #~ msgid "No Graph Templates" #~ msgstr "Keine Graph-Templates" #~ msgid "Tree Permissions" #~ msgstr "Baum Berechtigungen" #~ msgid "No Trees" #~ msgstr "keine Bäume" #~ msgid "Realm Permissions" #~ msgstr "Bereichsberechtigungen" #~ msgid "General Settings are common settings for all users." #~ msgstr "Allgemeine Einstellungen gelten für alle Benutzer." #~ msgid "" #~ "Realm permissions control which sections of Cacti this user will have " #~ "access to." #~ msgstr "" #~ "Bereichsberechtigungen steuern diejenigen Teilbereiche in Cacti, zu denen " #~ "Benutzer Zugang haben." #~ msgid "Graph Permissions" #~ msgstr "Diagramm Berechtigungen" #~ msgid "" #~ "Graph policies will be evaluated in the order shown until a match is " #~ "found." #~ msgstr "" #~ "Diagramm Berechtigungsregeln werden in der gezeigten Reihenfolge geprüft " #~ "bis ein Treffer gefunden wird." #~ msgid "Graph settings control how graphs are displayed for this user." #~ msgstr "Diagramm Einstellungen steuern die Art der Anzeige für Benutzer." #~ msgid "Module Name:" #~ msgstr "Name des Moduls:" #~ msgid "DB Info" #~ msgstr "Datenbank Informationen" #~ msgid "DB Processes" #~ msgstr "Datenbank Prozesse" #~ msgid "Languages" #~ msgstr "Sprachen" #~ msgid "ERROR: Installed RRDTool version does not match configured version." #~ msgstr "" #~ "FEHLER: Installierte RRDTool Version entspricht nicht der konfigurierten " #~ "version.
    " #~ msgid "Please visit the" #~ msgstr "Bitte gehen Sie zu" #~ msgid "and select the correct RRDTool Utility Version." #~ msgstr "und wählen die korrekte RRDTool Version." #~ msgid "" #~ "ERROR: RRDTool 1.2.x does not support the GIF images format, but %s " #~ "graph(s) and/or templates have GIF set as the image format." #~ msgstr "" #~ "FEHLER: RRDTool 1.2.x unterstützt das GIF Bildformat nicht, aber %s " #~ "Diagramm(e) oder Schablonen haben GIF als Bildformat definiert" #~ msgid "General Technical Support Information" #~ msgstr "Allgemeine Informationen für technische Unterstützung" #, fuzzy #~ msgid "System Date" #~ msgstr "System" #, fuzzy #~ msgid "User Date" #~ msgstr "Benutzername" #~ msgid "RRDTool Version" #~ msgstr "RRDTool Version" #, fuzzy #~ msgid "" #~ "It is highly suggested that you either alter you php.ini memory_limit to " #~ "%s or higher, or set a value for $config['memory_limit'] in include/" #~ "config.php.
    This suggested memory value is calculated based on the " #~ "number of data source present and is only to be used as a suggestion, " #~ "actual values may vary system to system based on requirements." #~ msgstr "" #~ "Es wird dringend empfohlen, das PHP Speicherlimit auf %s oder höher zu " #~ "setzen. Der Vorschlagswert wird berechnet auf Basis der vorliegenden " #~ "Datenquellen und ist lediglich ein Vorschlag. Korrekte Werte können von " #~ "System zu System variieren." #~ msgid "Row Format" #~ msgstr "Zeilenformat" #~ msgid "Average Length" #~ msgstr "durchschnittliche Länge" #~ msgid "Auto Increment" #~ msgstr "automatisches Hochzählen" #~ msgid "MySQL Table Information" #~ msgstr "MySQL tabelleninformationen" #~ msgid "MySQL Process Information" #~ msgstr "MySQL Prozessinformationen" #~ msgid "Unable to retrieve process status" #~ msgstr "Prozessstatus kann nicht ermittelt werden" #~ msgid "English" #~ msgstr "Englisch" #~ msgid "Language Information" #~ msgstr "Sprachinformationen" #~ msgid "Current Language" #~ msgstr "Aktuelle Sprache" #~ msgid "Language Mode" #~ msgstr "Sprachen" #~ msgid "Default Language" #~ msgstr "Standard-Sprache" #~ msgid "Supported Languages" #~ msgstr "Unterstützte Sprachen" #~ msgid "no languages supported." #~ msgstr "keine Sprachen unterstützt." #~ msgid "Loaded Language Files" #~ msgstr "Geladene Sprachdateien" #~ msgid "No Language Files Loaded." #~ msgstr "Keine Sprachdateien geladen." #~ msgid "Log File Filters" #~ msgstr "Filter für Log Datei" #~ msgid "Tail Lines:" #~ msgstr "Letzte Zeilen:" #~ msgid "Message Type:" #~ msgstr "Meldungstyp:" #~ msgid "Refresh:" #~ msgstr "Auffrischen" #~ msgid "Display Order:" #~ msgstr "Sortierung der Anzeige:" #~ msgid "Log File" #~ msgstr "Log Datei" #~ msgid "Total Lines:" #~ msgstr "Gesamtzahl Zeilen:" #~ msgid "Non-Matching Items Hidden" #~ msgstr "Unpassende Elemente verborgen" #~ msgid "All Items Shown" #~ msgstr "Alle Elemente angezeigt" #~ msgid "Clear Cacti Log File" #~ msgstr "Leere Cacti Logdatei" #~ msgid "Cacti Log File Cleared" #~ msgstr "Cacti Logdatei geleert" #~ msgid "Error: Unable to clear log, " #~ msgstr "Fehler: Kann Logdatei nicht löschen, Datei existiert nicht" #~ msgid "no write permissions." #~ msgstr "Fehler: Kann Logdatei nicht löschen, keine Schreibberechtigung." #~ msgid "file does not exist." #~ msgstr "datei existiert nicht." #~ msgid "SNMP Cache Items" #~ msgstr "SNMP Speicherelemente" #~ msgid "Query Name:" #~ msgstr "Name der Abfrage:" #~ msgid "SNMP Query:" #~ msgstr "SNMP Abfrage:" #~ msgid "Index:" #~ msgstr "Index:" #~ msgid "Field Name:" #~ msgstr "Feldname:" #~ msgid "Field Value:" #~ msgstr "Feldwert:" #~ msgid "No SNMP Records" #~ msgstr "Keine SNMP Daten erhalten" #~ msgid "View Cacti Log File" #~ msgstr "Anschauen der Cacti Logdatei" #~ msgid "" #~ "The Cacti Log File stores statistic, error and other message depending on " #~ "system settings. This information can be used to identify problems with " #~ "the poller and application." #~ msgstr "" #~ "Die Cacti Logdatei speicher statische, fehler und weitere Meldungen, " #~ "abhängig von den Systemeinstellungen. Diese Informationen können genutzt " #~ "werden um Probleme mit dem Poller und der Web-Anwendung zu erkennen." #~ msgid "" #~ "This is the data that is being passed to the poller each time it runs. " #~ "This data is then in turn executed/interpreted and the results are fed " #~ "into the rrd files for graphing or the database for display." #~ msgstr "" #~ "Diese Daten (Befehle) werden bei jedem Lauf an den Poller übergeben. Sie " #~ "werden ausgeführt und interpretiert; die Ergebnisse werden in RRD Dateien " #~ "gespeichert um später angezeigt zu werden" #~ msgid "View SNMP Cache" #~ msgstr "Ansehen des SNMP Speichers" #~ msgid "" #~ "The SNMP cache stores information gathered from SNMP queries. It is used " #~ "by cacti to determine the OID to use when gathering information from an " #~ "SNMP-enabled device." #~ msgstr "" #~ "Der SNMP Speicher enthält alle quasi-statischen Informationen, die von " #~ "SNMP Abfragen ermittelt werden. Er wird benutzt, um die OID zu ermitteln " #~ "wenn Informationen von SNMP-fähigen Zielsystemen ermittelt wird." #~ msgid "" #~ "The poller cache will be cleared and re-generated if you select this " #~ "option. Sometimes device/data source data can get out of sync with the " #~ "cache in which case it makes sense to clear the cache and start over." #~ msgstr "" #~ "Der Poller Speicher wird gelöscht und neu aufgebaut. Es macht Sinn, diese " #~ "Option zu wählen falls der Speicher nicht mehr synchronisiert ist. Dies " #~ "geschieht z.B. bei Veränderungen an \"Kommando-Scripts\"." #, fuzzy #~ msgid "When you click 'Continue', the following VDEF(s) will be deleted." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following VDEF(s) will be duplicated. You " #~ "can optionally change the title format for the new VDEF(s)." #~ msgstr "" #~ "Wenn Sie 'Sichern' wählen, werden die folgenden VDEFs dupliziert. " #~ "Optional können Sie die Titelzeile verändern." #~ msgid "VDEF's" #~ msgstr "VDEF's" #~ msgid "VDEF Title" #~ msgstr "Titel der VDEF" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following X-Axis Preset(s) will be deleted." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "Delete X-Axis Preset(s)" #~ msgstr "X-Achsen Voreinstellungen" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following X-Axis Preset(s) will be " #~ "duplicated. You can optionally change the title format for the new X-Axis " #~ "Preset(s)." #~ msgstr "" #~ "Wenn Sie auf \"speichern\" klicken, werden die folgenden X-Achsen " #~ "Einstellungen dupliziert. Optional können Sie die Überschrift ändern." #, fuzzy #~ msgid "Duplicate X-Axis Preset(s)" #~ msgstr "X-Achsen Voreinstellungen" #~ msgid "X-Axis Items" #~ msgstr "X-Achsen Einträge" #~ msgid "X-Axis Presets" #~ msgstr "X-Achsen Voreinstellungen" #~ msgid "Label Format" #~ msgstr "Label Format" #~ msgid "ERROR: Invalid Argument: (%s)" #~ msgstr "FEHLER: Ungültiges Argument: (%s)" #~ msgid "ERROR: You must supply a valid data-query-id for all devices!" #~ msgstr "" #~ "FEHLER: Sie müssen eine gültige Datenabfrage-ID für alle Endgeräte " #~ "eingeben!" #~ msgid "ERROR: You must supply a valid reindex-method for all devices!" #~ msgstr "" #~ "FEHLER: sie müssen eine gültige Art der Re-Indizierung für alle Endgeräte " #~ "angeben!" #~ msgid "ERROR: Unknown Data Query Id (%s)" #~ msgstr "FEHLER: Unbekannte Datenabfrage-ID (%s)" #~ msgid "" #~ "ERROR: Data Query is already associated for device: (%s: %s) data query " #~ "(%s: %s) using reindex method of (%s: %s)" #~ msgstr "" #~ "FEHLER: Datenabfrage ist bereits zugewiesen für Zielsystem: (%s: %s) " #~ "Datenabfrage (%s: %s) mit Reindizieroption (%s: %s)" #~ msgid "" #~ "ERROR: Failed to add this data query for device (%s: %s) data query (%s: " #~ "%s) reindex method (%s: %s)" #~ msgstr "" #~ "FEHLER: Datenabfrage konnte nicht hinzugefügt werden für Zielsystem: (%s: " #~ "%s) Datenabfrage (%s: %s) mit Reindizieroption (%s: %s)" #~ msgid "Copyright 2004-2011 - The Cacti Group" #~ msgstr "Copyright 2004-2011 - The Cacti Group" #~ msgid "" #~ "A simple command line utility to add a data query to an existing device " #~ "in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen-Programm um eine Datenabfrage zu einem " #~ "bestehenden Endgerät in Cacti hinzuzufügen" #~ msgid "usage: " #~ msgstr "Benutzung:" #~ msgid "Required:" #~ msgstr "Erforderlich:" #~ msgid "the numerical ID of the data_query to be added" #~ msgstr "die numerische Id der hinzuzufügenden Datenabfrage" #~ msgid "no reindexing" #~ msgstr "keine Reindexierung" #~ msgid "Uptime goes Backwards" #~ msgstr "System-Neustart" #~ msgid "Verify all Fields" #~ msgstr "Alle Felder prüfen" #~ msgid "Re-Index Value Changed" #~ msgstr "Anzahl der Indices geändert" #~ msgid "" #~ "At least one device related parameter is required. The given data query " #~ "will be added to all matching devices." #~ msgstr "" #~ "Mindestens ein Zielsystem-bezogener Parameter ist erforderlich. Die " #~ "angegebene Datenabfrage wird allen passenden Zielsystemen zugeordnet." #~ msgid "Optional:" #~ msgstr "Optional:" #~ msgid "the numerical ID of the device" #~ msgstr "die numerische ID des Endgeräts" #~ msgid "the numerical ID of the site" #~ msgstr "die numerische ID der Lokation" #~ msgid "the numerical ID of the poller" #~ msgstr "die numerische ID des Pollers" #~ msgid "denotes the device template to be used" #~ msgstr "bezeichnet die zu benutzende Zielsystem Schablone" #~ msgid "" #~ "General information about this device. Must be enclosed using double " #~ "quotes." #~ msgstr "" #~ "Allgemeine Informationen über dieses Endgerät. Muss mit Anführungszeichen " #~ "eingtragen werden." #~ msgid "device availability check" #~ msgstr "Verfügbarkeits-Prüfung" #~ msgid "if ping selected" #~ msgstr "wenn Ping selektiert wurde" #~ msgid "ping timeout" #~ msgstr "Ping Zeitfenster" #~ msgid "snmp version" #~ msgstr "SNMP Version" #~ msgid "snmp port" #~ msgstr "SNMP Port" #~ msgid "snmp timeout" #~ msgstr "SNMP Zeitfenster" #~ msgid "snmp username for snmpv3" #~ msgstr "SNMP Benutzername für SNMPv3" #~ msgid "snmp password for snmpv3" #~ msgstr "SNMP Passwort für SNMPv3" #~ msgid "snmp authentication protocol for snmpv3" #~ msgstr "SNMP Authentifizierungsprotokoll für SNMPv3" #~ msgid "snmp privacy passphrase for snmpv3" #~ msgstr "SNMP Verschlüsselungskennwort für SNMPv3" #~ msgid "snmp privacy protocol for snmpv3" #~ msgstr "SNMP Verschlüsselungsprotokoll für SNMPv3" #~ msgid "snmp context for snmpv3" #~ msgstr "SNMP Kontext für SNMPv3" #~ msgid "Debug Mode, no updates made, but printing the SQL for updates" #~ msgstr "" #~ "Debug Modus, keine Aktualisierungen durchgeführt, aber Aktualisierungs-" #~ "SQL angelistet" #~ msgid "" #~ " adds data query id 1 to the device id 1 using reindex method of 'index'" #~ msgstr "" #~ " für die Datenabfrage mit der Id 1 dem Zielsystem 1 hinzu und benutzt " #~ "die Indiziermethode 'Index'" #~ msgid "" #~ " adds data query id 5 using reindex method of 'uptime' to all devices " #~ "related to device template id 3" #~ msgstr "" #~ " fügt die Datenabfrage mit der Id 5 allen Zielsystemen hinzu, die zur " #~ "Zielsystem Schablone 3 gehören und benutzt die Indiziermethode 'uptime'" #~ msgid "A simple command line utility to list data queries in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Datenabfragen in Cacti anzulisten" #~ msgid "the numerical ID of the data_query to be listed" #~ msgstr "die numerische Id der anzulistenden Datenabfrage" #~ msgid " lists all available data queries" #~ msgstr " Liste alle verfügbaren Endgeräte-Templates auf" #~ msgid " lists all data queries associated with device id 5" #~ msgstr " listet alle Datenabfragen die zum Zielsystem 5 gehören" #~ msgid "" #~ " lists all data queries associated with the devices associated with " #~ "device template id 8" #~ msgstr "" #~ " listed alle Datenabfragen die zu Zielsystemen gehören die verknüpft " #~ "sind mit der Zielsystem Schablone 8" #~ msgid " same as above, but only listing data query id 1" #~ msgstr " wie oben, aber listet nur Datenabfrage 1" #~ msgid "ERROR: No matching Data Query found\n" #~ msgstr "FEHLER: Unbekannte Datenabfrage-ID\n" #~ msgid "Try php -q data_query_list.php" #~ msgstr "Versuche php -q data_query_list.php" #~ msgid "Data Query (%s) removed from Device (%s: %s)" #~ msgstr "Datenabfrage (%s) von Zielsystem gelöscht (%s: %s)" #~ msgid "" #~ "A simple command line utility to remove data queries from devices in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Datenabfragen aus Cacti zu " #~ "entfernen" #~ msgid " removes data query id 3 from device id 5" #~ msgstr " entfernt die Datenabfrage 3 vom Zielsystem 5" #~ msgid "" #~ " same as above, but performed for all devices associated with device " #~ "template id 8" #~ msgstr "" #~ " wie oben, aber für alle Zielsysteme die zur Zielsystem Schablone 8 " #~ "gehören" #~ msgid "ERROR: No Update Parameters found\n" #~ msgstr "FEHLER: es wurden keine Parameter angegeben\n" #~ msgid "Data Query (%s: %s) reindex method (%s: %s) updated for %s Device(s)" #~ msgstr "" #~ "Datenabfrage (%s: %s) Reindizierungsmethode (%s: %s) aktaulisiert für %s " #~ "Zielsystem(e)" #~ msgid "" #~ "Data Query (%s: %s) reindex method (%s: %s) rerun for Device (%s: %s)" #~ msgstr "" #~ "Datenabfrage (%s: %s) Reindizierungsmethode (%s: %s) wiederholt für " #~ "Zielsystem (%s: %s)" #~ msgid "" #~ "ERROR: Failed to update Data Query (%s: %s) reindex method (%s: %s) for " #~ "%s Device(s)" #~ msgstr "" #~ "FEHLER: Datenabfrage (%s: %s) Reindizieroption (%s: %s) für %s " #~ "Zielsystem(e) konnte nicht aktualisiert werden" #~ msgid "A simple command line utility to update data queries in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Datenabfragen in Cacti zu ändern" #~ msgid "" #~ " changes reindex method of data query id 3 on device id 5 to 'index'" #~ msgstr "" #~ " ändert die Indiziermethode der Datenabfrage 3 für das Zielsystem 5 auf " #~ "'Index'" #~ msgid "" #~ " same as above, but updating for old reindex method of 'uptime' only, " #~ "working on all devices associated with template id of 8" #~ msgstr "" #~ " wie oben, aktualisiert jedoch nur für Indiziermethode 'uptime' und " #~ "Zielsysteme, die der Schablone 8 zugeordnet sind" #~ msgid "DRY RUN >>>" #~ msgstr "Probelauf >>>" #~ msgid "" #~ "ERROR: Invalid Argument: (%s)\n" #~ "\n" #~ msgstr "" #~ "FEHLER: Ungültiges Argument: [%s]\n" #~ "\n" #~ msgid "ERROR: You must supply a valid --snmp-field" #~ msgstr "FEHLER: Sie müssen ein gültiges --snmp-field eingeben" #~ msgid "Try php -q graph_list.php --list-snmp-fields" #~ msgstr "Versuchen Sie bitte php -q graph_list.php --list-snmp-fields" #~ msgid "ERROR: You must supply a valid --snmp-value" #~ msgstr "FEHLER: Sie müssen einen gültigen --snmp-value eingeben" #~ msgid "Try php -q graph_list.php --list-snmp-values" #~ msgstr "Bitte versuchen Sie php -q graph_list.php --list-snmp-values" #~ msgid "" #~ "Removing all Data Sources for Device=%1s, SNMP Field=%2s, SNMP Value=%3d\n" #~ msgstr "" #~ "Entferne alle Datenquellen für Zielsystem=%1s, SNMP Feld=%2s, SNMP Wert=" #~ "%3d\n" #~ msgid "" #~ "Removed %4d Data Sources for Device=%1s, SNMP Field=%2s, SNMP Value=%3d\n" #~ msgstr "" #~ "%4d Datenquellen entfernt für Zielsystem=%1s, SNMP Feld=%2s, SNMP Wert=" #~ "%3d\n" #~ msgid "ERROR: Unknown Data Source ID (%d)\n" #~ msgstr "FEHLER: Unbekannte Datenquellen ID (%d)\n" #~ msgid "Delete Graph(s): " #~ msgstr "Diagramm(e) löschen:" #~ msgid "Graph: %d" #~ msgstr "Diagramm: %d" #~ msgid "Data Source: %d" #~ msgstr "Datenquelle: %d" #~ msgid "Delete Data Source: %d" #~ msgstr "Gelöschte Datquelle: %d" #~ msgid " - ERROR: Failed to remove this data source" #~ msgstr "- FEHLER: Datenquelle konnte nicht entfernt werden" #~ msgid " - SUCCESS: Removed data-source-id: (%d)\n" #~ msgstr "- ERFOLG: Entfernte Datenquelle: (%d)\n" #~ msgid "A simple command line utility to remove a data source from Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Datenquellen aus Cacti zu " #~ "entfernen" #~ msgid "Required is either of:" #~ msgstr "Erforderlich ist eines von:" #~ msgid "the numerical id of the graph" #~ msgstr "die numerische Id des Diagrammes" #~ msgid "When using a device-id, the following is required (ds graphs only!):" #~ msgstr "" #~ "Wenn eine device-id verwendet wird, dann muss folgendes angegeben werden " #~ "(nur für ds Diagramme!):" #~ msgid "snmp-field to be checked" #~ msgstr "zu prüfendes SNMP-Feld" #~ msgid "snmp-value to be checked" #~ msgstr "zu prüfender SNMP-Wert" #~ msgid "produce list output only, do NOT remove anything" #~ msgstr "nur anlisten, nicht löschen" #~ msgid "" #~ "e.g. php -q %s --device-id=[ID] --snmp-field=ifOperStatus --snmp-" #~ "value=DOWN\n" #~ msgstr "" #~ "z.B. php -q %s --device-id=[ID] --snmp-field=ifOperStatus --snmp-" #~ "value=DOWN\n" #~ msgid "" #~ "to remove all data sources and graphs for interfaces with ifOperStatus = " #~ "DOWN" #~ msgstr "" #~ "um alle Datenquellen und Diagramme für solche schnittstellen zu " #~ "entfernen, die ifOperStatus = DOWN haben" #, fuzzy #~ msgid "ERROR: Invalid data template id given: %s\n" #~ msgstr "FEHLER: Ungültige Id der Zielsystem Schablone (%d)" #, fuzzy #~ msgid "ERROR: Invalid rra id given: %s\n" #~ msgstr "FEHLER: Ungültige Realm Id (%s)" #, fuzzy #~ msgid "ERROR: Invalid rra definition given: %s\n" #~ msgstr "" #~ "FEHLER: Ungültiger Parameter: %s\n" #~ "\n" #, fuzzy #~ msgid "Data Template Associate RRA Script 1.0" #~ msgstr "Lösche Zuordnung zur Diagramm Schablone" #, fuzzy #~ msgid "" #~ "A simple command line utility to associate RRA definitions to a data " #~ "template in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Zielsystem Schablonen in Cacti " #~ "anzulisten" #, fuzzy #~ msgid "usage:" #~ msgstr "Benutzung:" #, fuzzy #~ msgid "the data template id" #~ msgstr "Element der Datenschablone" #~ msgid "ERROR: You must supply a description for all devices!" #~ msgstr "" #~ "FEHLER: Sie müssen eine gültige Beschreibung für alle Zielsysteme angeben!" #~ msgid "" #~ "ERROR: You must supply a valid [hostname|IP address] for all devices!" #~ msgstr "" #~ "FEHLER: Sie müssen eine gültige [hostname|IP Adresse] für alle " #~ "Zielsysteme angeben!" #~ msgid "ERROR: You must supply a valid device template id for all devices!" #~ msgstr "" #~ "FEHLER: Sie müssen eine gültige Id der Zielsystem Schablone für alle " #~ "Zielsysteme wählen!" #~ msgid "ERROR: Unknown template id (%d)\n" #~ msgstr "Fehler: Unbekannte Template ID (%d)\n" #~ msgid "ERROR: Failed to add this device" #~ msgstr "FEHLER: Zielsystem konnte nicht hinzugefügt werden" #~ msgid "Success - new device-id: (%d)" #~ msgstr "Erfolg: neue Geräte-Id: (%d)" #~ msgid "A simple command line utility to add a device in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um ein neues Zielsystem in Cacti " #~ "hinzuzufügen" #~ msgid "Debug Mode, no updates made" #~ msgstr "Debug Modus, keine Aktualisierungen durchgeführt" #~ msgid "" #~ " creates a new device using ip 'example.company.com' with a description " #~ "of 'foobar' and device template id of 1" #~ msgstr "" #~ " erzeugt ein neues Zielsystem mit der IP 'example.company.com' und der " #~ "Beschreibung 'foobar' mit der Zielsystem Schablone 1" #~ msgid "" #~ " same as above but overriding SNMP comunity with the value of 'secret'" #~ msgstr "" #~ " wie oben, jedoch wird die SNMP Community mit dem Wert 'secret' " #~ "überschrieben" #~ msgid " same as above using site id of 1 and poller id of 3" #~ msgstr " wie oben, benutzt die Lokation 1 und die Poller Id 3" #~ msgid "Removing device and all resources for device id " #~ msgstr "Lösche Endgerät und alle Ressourcen für device id" #~ msgid "Removing device but keeping resources for device id " #~ msgstr "Lösche Endgerät aber behalte Ressourcen für device id" #~ msgid ". ERROR: Failed to remove this device" #~ msgstr "- FEHLER: Datenquelle konnte nicht entfernt werden" #~ msgid ". Success - removed device id: " #~ msgstr ".Erfolg: neue Geräte-ID:" #~ msgid "A simple command line utility to remove a device from Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Zielsysteme aus Cacti zu " #~ "entfernen" #~ msgid "" #~ "At least one device related parameter is required. All matching devices " #~ "will be deleted" #~ msgstr "" #~ "Mindestens ein Zielsystem-bezogener Parameter ist erforderlich. Alle " #~ "passenden Zielsysteme werden gelöscht" #~ msgid "A simple command line utility to list device(s) in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Zielsysteme in Cacti anzulisten" #~ msgid "" #~ "All Parameters are optional. Any parameters given must match. A non-empty " #~ "selection is required." #~ msgstr "" #~ "Alle Parameter sind optional. Alle angegebenen Parameter müssen zutreffen" #~ msgid " lists all devices related to a device template id of 1" #~ msgstr " Liste alle verfügbaren Endgeräte auf für Endgeräte-Template Id 1" #~ msgid " lists all devices using SNMP port of 161 and timeout of 500" #~ msgstr "" #~ " listet alle Zielsysteme die den SNMP Port 161 und das Zeitfenster 500 " #~ "benutzen" #~ msgid "ERROR: Invalid Argument: (" #~ msgstr "FEHLER: Ungültiges Argument: (" #~ msgid "A simple command line utility to list device templates in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Zielsystem Schablonen in Cacti " #~ "anzulisten" #~ msgid "NOTE: Updating Data Query ID " #~ msgstr "HINWEIS: Datenabfrage Id aktualisieren" #~ msgid "The Device Template to Refresh" #~ msgstr "Zu aktualisierende Zielgeräte Schablone" #~ msgid "Display verbose output during execution" #~ msgstr "Zeige jeglichen Output während der Ausführung an" #~ msgid "Display this help message" #~ msgstr "Zeige diese Hilfe-Meldung an" #~ msgid "List Options:" #~ msgstr "Listen Optionen:" #~ msgid "Lists all available Device Templates" #~ msgstr "Liste alle verfügbaren Endgeräte-Templates auf" #~ msgid "ERROR: Update of device template id not permitted\n" #~ msgstr "FEHLER: Änderung der Zielsystem Schablonen Id ist nicht zulässig\n" #~ msgid "Devices successfully updated: %s" #~ msgstr "Zielsysteme erforlgreich aktualisiert: %s" #~ msgid "ERROR: Device update failed due to SQL error" #~ msgstr "" #~ "FEHLER: Aktualisierung des Zielsystemes fehlgeschlagen aufgrund eines SQL " #~ "Fehlers" #~ msgid "A simple command line utility to change existing devices in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Zielsysteme in Cacti zu verändern" #~ msgid "" #~ "All new values must be seperated by a delimiter (defaults to ':') from " #~ ". Multiple parameters are allowed" #~ msgstr "" #~ "Alle neuen Werte müssen durch Trennzeichen (standard: ':') von " #~ "getrennt werden. Mehrfache Parameter sind zulässig" #~ msgid " changes the description of device 0 to foobar" #~ msgstr " ändert die Beschreibung des Zielsystemes 0 auf 'foobar'" #~ msgid "" #~ " changes the SNMP community string for all (matching) devices from " #~ "'public' to 'secret' using a custom delimiter of '#'" #~ msgstr "" #~ " ändert die SNMP Community Zeichenkette für alle (zugehörigen) " #~ "Zielsysteme von 'public' auf 'secret' mit dem Begrenzer '#'" #~ msgid "" #~ " changes both SNMP version and timeout for all devices related to the " #~ "device template id of 7" #~ msgstr "" #~ " ändert sowohl die SNMP Version als auch das Zeitfenster für alle " #~ "Zielsysteme die zur Zielsystem Schablone 7 gehören" #~ msgid "ERROR: No graph-template-id given" #~ msgstr "FEHLER: es wurde keine Id der Diagramm Schablone angegeben" #~ msgid "ERROR: This Graph template id does not exist (%s)" #~ msgstr "FEHLER: Diese Diagramm Schablone existiert nicht (%s)" #~ msgid "Try php -q graph_list.php --list-graph-templates" #~ msgstr "Versuchen Sie bitte php -q graph_list.php --list-graph-templates" #~ msgid "ERROR: Graph Types must be either 'cg' or 'ds'" #~ msgstr "FEHLER: Graph-Typ muss entweder 'cg' oder 'ds' sein" #~ msgid "" #~ "NOTE: Not Adding Graph - this graph already exists - device-id: (%d) - " #~ "graph-id: (%s) - data-source-id: (%d)" #~ msgstr "" #~ "HINWEIS: Graph nicht hinzugefügt - dieser Graph existiert bereists - " #~ "device-id: (%d) - graph-id: (%s) - data-source-id: (%d)" #~ msgid "" #~ "Graph Added - device-id: (%d) - graph-id: (%d) - data-source-ids: (%d)" #~ msgstr "" #~ "Graph hinzugefügt - device-id: (%d) - graph-id: (%d) - data-source-ids: " #~ "(%d)" #~ msgid "" #~ "NOTE: Not Adding Graph - this graph already exists - graph-id: (%d) - " #~ "data-source-id: (%d)" #~ msgstr "" #~ "HINWEIS: Graph nicht hinzugefügt - dieser Graph existiert bereits - graph-" #~ "id: (%d) - data-source-id: (%d)" #~ msgid "Graph Added - graph-id: (%d) - data-source-ids: (%d)" #~ msgstr "Graph hinzugefügt - graph-id: (%d) - data-source-ids: (%d)" #~ msgid "ERROR: Could not find snmp-field %s (%d) for device-id %d (%s)" #~ msgstr "" #~ "FEHLER: konnte das SNMP Feld %s (%d) für die Endgeräte-ID %d (%s) nicht " #~ "finden" #~ msgid "Try php -q graph_list.php --device-id=%s --list-snmp-fields" #~ msgstr "" #~ "Versuchen Sie bitte php -q graph_list.php --device-id=%s --list-snmp-" #~ "fields" #~ msgid "A simple command line utility to add graphs in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um neue Diagramme in Cacti " #~ "hinzuzufügen" #~ msgid "For cg graphs:" #~ msgstr "Für 'cg' Diagramme:" #~ msgid "" #~ "If your data template allows for custom input data, you may specify that " #~ "here." #~ msgstr "" #~ "Wenn das Daten-Template eigene Eingabefelder unterstützt, kann dies hier " #~ "spezifiziert werden." #~ msgid "" #~ "The data template id is optional and applies where two input fields have " #~ "the same name." #~ msgstr "" #~ "Die Daten-Template-ID ist optional und wird nur dort angewandt, wo zwei " #~ "Eingabefelder den gleichen Namen besitzen." #~ msgid "" #~ "If you set this flag, then new cg graphs will be created, even though " #~ "they may already exist" #~ msgstr "" #~ "Wenn Sie diese Markierung setzen, dann werden werden neu cg-Graphen " #~ "erstellt, auch wenn sie bereits existieren" #~ msgid "For ds graphs:" #~ msgstr "Für 'ds' Diagramme:" #~ msgid "Defaults to what ever is in the graph template/data-source template." #~ msgstr "Stellt sich auf den Standand der Graph- und Datenquellen-Templates." #~ msgid "'cg' graphs are for things like CPU temp/fan speed, while " #~ msgstr "" #~ "'cg' Diagramme sind z.B. für CPU Temperatur oder Lüftergeschwindigkeit, " #~ "während" #~ msgid "'ds' graphs are for data-source based graphs (interface stats etc.)" #~ msgstr "" #~ "'ds' Diagramme die Datenabfragen-basierte Diagramme sind (Schnittstellen " #~ "Statistiken usw.)" #~ msgid "ERROR: Unknown Graph ID (%d)" #~ msgstr "FEHLER: Unbekannte Diagramm Id (%d)" #~ msgid "Try --list-graphs" #~ msgstr "Versuche --list-graphs" #~ msgid "A simple command line utility to remove a graph from Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Diagramme aus Cacti zu entfernen" #~ msgid "the numerical ID of the graph" #~ msgstr "die numerische Id des Diagrammes" #~ msgid "the numerical ID of the graph template" #~ msgstr "die numerische Id der Diagramm Schablone" #~ msgid " removes all graphs from device id 1" #~ msgstr " entfernt alle Diagramme vom Zielsystem 1" #~ msgid "" #~ " removes all graphs related to graph template id 11 and associated data " #~ "sources from device id 1" #~ msgstr "" #~ " entfernt alle Diagramme und zugehörige Datenquellen die zur Diagramm " #~ "Schablone 11 und Zielsystem 1 gehören" #~ msgid " same as above, but for all devices" #~ msgstr " wie oben, jedoch für alle Zielsysteme" #~ msgid "ERROR: Invalid device-template-id (%d) given" #~ msgstr "FEHLER: Ungültige Id der Zielsystem Schablone (%d)" #~ msgid "Try -php -q device_template_list.php" #~ msgstr "Versuche -php -q device_template_list.php" #~ msgid "" #~ "ERROR: You must supply a valid --graph-template-id before you can list " #~ "its input fields" #~ msgstr "" #~ "FEHLER: Sie müssen eine gültige --graph-template-id angeben um die " #~ "Eingabefelder anzulisten" #~ msgid "Try --list-graph-templates" #~ msgstr "Keine zugeordneten Diagramm Templates." #~ msgid "" #~ "ERROR: You must supply a valid --snmp-query-id before you can list its " #~ "query types" #~ msgstr "" #~ "FEHLER: Sie müssen eine gültige --snmp-query-id angeben um die " #~ "Abfragetypen anzulisten" #~ msgid "" #~ "ERROR: You must supply a valid --device-id before you can list its SNMP " #~ "fields" #~ msgstr "" #~ "FEHLER: sie müssen eine gültige --device-id für alle Zielsysteme angeben " #~ "um die SNMP Felder anzulisten" #~ msgid "" #~ "ERROR: You must supply a valid --snmp-field (found: %s) before you can " #~ "list its SNMP Values" #~ msgstr "" #~ "FEHLER: Sie müssen ein gültiges --snmp-field eingeben (gefunden: %s) um " #~ "die SNMP Werte anzulisten" #~ msgid "Try --list-snmp-fields" #~ msgstr "Versuche --list-snmp-fields" #~ msgid "" #~ "ERROR: You must supply a valid --snmp-field or --snmp-query-id before you " #~ "can list its SNMP Values" #~ msgstr "" #~ "FEHLER: Sie müssen eine gültiges --snmp-field --snmp-query-id abgeben um " #~ "die SNMP Werte anzulisten" #~ msgid "Try --list-snmp-queries or --list-snmp-fields" #~ msgstr "Versuchen Sie bitte --list-snmp-queries oder --list-snmp-fields" #~ msgid "" #~ "ERROR: You must supply a valid --device-id before you can list its SNMP " #~ "values" #~ msgstr "" #~ "FEHLER: sie müssen eine gültige --device-id für alle Zielsysteme angeben " #~ "um die SNMP Werte anzulisten" #~ msgid "List graph" #~ msgstr "Liste Diagramm" #~ msgid "A simple command line utility to list graphs in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Diagramme in Cacti anzulisten" #~ msgid "ERROR: You must supply a valid device-id to run this script!" #~ msgstr "" #~ "FEHLER: Sie müssen eine gültige Endgeräte-ID eingeben, um dieses Programm " #~ "auszuführen!" #~ msgid "ERROR: You must supply a numeric graph-template-id for all devices!" #~ msgstr "" #~ "FEHLER: Sie müssen eine numerische Datenquellen ID angeben für alle " #~ "Zielsysteme!" #~ msgid "ERROR: You must supply a valid device-id for all devices!" #~ msgstr "" #~ "FEHLER: sie müssen eine gültige Endgeräte-ID für alle Endgeräte angeben!" #~ msgid "ERROR: Unknown Device ID (%d)\n" #~ msgstr "FEHLER: Unbekannte Zielsystem Id (%d)\n" #~ msgid "ERROR: Unknown Graph Template ID (%d)\n" #~ msgstr "FEHLER: Unbekannte Diagramm Schablonen ID (%d)\n" #~ msgid "" #~ "ERROR: Failed to add this graph template for device: (%1d: %2s) - graph-" #~ "template: (%3d: %4s)\n" #~ msgstr "" #~ "FEHLER: Diagrammschablone konnte nicht hinzugefügt werden für Zielsystem: " #~ "(%1d: %2s) - Diagrammschablone: (%3d: %4s)\n" #~ msgid "" #~ "A simple command line utility to associate a graph template with a device " #~ "in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um einem Zielsystem eine neue " #~ "Diagramm Schablone in Cacti hinzuzufügen" #~ msgid "the numerical ID of the graph template to be added" #~ msgstr "die numerische Id der hinzuzufügenden Diagramm Schablone" #~ msgid "ERROR: No graph title given" #~ msgstr "FEHLER: es wurde keine Diagrammtitel angegeben" #~ msgid "ERROR: No valid graph template given" #~ msgstr "FEHLER: Keine gültige Diagramm Schablone angegeben" #~ msgid "Try php -q graph_template_list.php" #~ msgstr "Versuchen Sie bitte -php -q graph_template_list.php" #~ msgid "Updated graph-id: (%d)" #~ msgstr "Aktualisierte Diagramme: (%d)" #~ msgid "A simple command line utility to update a graph from Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um ein Diagramm in Cacti zu ändern" #~ msgid "the new title for that graph" #~ msgstr "neuer Titel für das Diagramm" #~ msgid " updates graph id 55 a new title" #~ msgstr " aktualisiert Diagramm 55 mit einem neuen Titel" #~ msgid "" #~ " updates all graphs related to graph template id 11 with a new title" #~ msgstr "" #~ " aktualisiert alle Diagramme der Diagramm Schablone 11 mit einem neuen " #~ "Titel" #~ msgid " same as above for device id 1" #~ msgstr " wie oben für Zielsystem 1" #~ msgid " [success]" #~ msgstr "[Erfolg]" #~ msgid " [fail]" #~ msgstr "[Fehler]" #~ msgid " [update]" #~ msgstr "[Aktualisiert]" #~ msgid "Found Dependency: " #~ msgstr "Abhängigkeit gefunden:" #~ msgid "Unmet Dependency: " #~ msgstr "Ungelöste Abhängigkeit gefunden:" #~ msgid "ERROR: no filename specified" #~ msgstr "FEHLER: kein Dateiname wurde spezifiziert" #~ msgid "ERROR: no parameters given" #~ msgstr "FEHLER: es wurden keine Parameter angegeben" #~ msgid "A simple command line utility to import a Template into Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um eine Schablone zu Cacti " #~ "hinzuzufügen" #~ msgid "the name of the XML file to import" #~ msgstr "der Name der zu importierenden XML-Datei" #, fuzzy #~ msgid "also import custom RRA definitions from the template\n" #~ msgstr "Benutze spezifische RRA einstellungen aus diesem Template" #~ msgid "ERROR: --item-id missing. Please specify." #~ msgstr "FEHLER: --item-id fehlt. Bitte angeben." #~ msgid "" #~ "ERROR: Failed to create permission for user (%s) item type (%s: %s) item " #~ "id (%s)" #~ msgstr "" #~ "FEHLER: Berechtigung für Benutzer (%s) Typ (%s: %s) Elementkennung (%s) " #~ "konnte nicht angelegt werden" #~ msgid "A simple command line utility to add permissions in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Berechtigungen in Cacti " #~ "hinzuzufügen" #~ msgid "" #~ "ERROR: Failed to delete permission for user (%s) item type (%s: %s) item " #~ "id (%s)" #~ msgstr "" #~ "FEHLER: Berechtigung für Benutzer (%s) Typ (%s: %s) Elementkennung (%s) " #~ "konnte nicht gelöscht werden" #~ msgid "A simple command line utility to delete permissions in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Berechtigungen aus Cacti zu " #~ "löschen" #~ msgid "A simple command line utility to list permissions in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Berechtigungen in Cacti " #~ "anzulisten" #~ msgid "ERROR: You must supply input parameters" #~ msgstr "FEHLER: Sie müssen Eingabe Parameter angeben" #~ msgid "" #~ "ERROR: Invalid Parameter %s\n" #~ "\n" #~ msgstr "" #~ "FEHLER: Ungültiger Parameter: %s\n" #~ "\n" #~ msgid "" #~ "WARNING: Do not interrupt this script. Interrupting during rename can " #~ "cause issues" #~ msgstr "" #~ "ACHTUNG: Dieses Skript nicht unterbrechen! Eine Unterbrechung während des " #~ "Neubenennens kann Probleme verursachen" #~ msgid "A data template name or data source title to search for" #~ msgstr "" #~ "Ein Name für eine Daten Schablone oder der Titel einer Datenquelle für " #~ "die Suche" #~ msgid "A graph template name or graph title to search for" #~ msgstr "" #~ "Ein Name für eine Diagramm Schablone oder der Titel eines Diagramms für " #~ "die Suche" #~ msgid "ERROR: Invalid Parameter " #~ msgstr "FEHLER: Ungültiger Parameter" #~ msgid "ERROR: You must supply a valid device-id to run this script!\n" #~ msgstr "" #~ "FEHLER: Sie müssen eine gültige Endgeräte-ID eingeben, um dieses Programm " #~ "auszuführen!\n" #~ msgid "" #~ "WARNING: Do not interrupt this script. Rebuilding the Poller Cache can " #~ "take quite some time" #~ msgstr "" #~ "ACHTUNG: Dieses Skript nicht unterbrechen! Den Poller-Cache neu anzulegen " #~ "kann einige Zeit benötigen." #, fuzzy #~ msgid "ERROR: Invalid Parameter %s" #~ msgstr "" #~ "FEHLER: Ungültiger Parameter: %s\n" #~ "\n" #~ msgid "Repairing All Cacti Database Tables" #~ msgstr "Repariere alle Cacti-Datebank-Tabellen" #~ msgid "Repairing Table -> '%s'" #~ msgstr "Repariere Tabelle -> '%s'" #~ msgid " Failed" #~ msgstr " Fehlerhaft" #~ msgid " Successful" #~ msgstr "Erfolgreich gespeichert." #~ msgid "Force rebuilding the indexes from the database creation syntax" #~ msgstr "" #~ "Erzwinge das Neuanlegen der Indexe auf Basis der Datebank-Erstellungs-" #~ "Syntax" #~ msgid "ERROR: You must supply a valid rrd file name." #~ msgstr "FEHLER: Sie müssen einen rrd Dateinamen angeben." #~ msgid "Found:" #~ msgstr "Gefunden:" #~ msgid "ERROR: No valid rrd file name found." #~ msgstr "FEHLER: Keinen gültigen rrd Dateinamen gefunden." #~ msgid "ERROR: You must supply a valid data source name." #~ msgstr "" #~ "FEHLER: Sie müssen einen gültigen Namen für die Datenquelle eingeben." #~ msgid "ERROR: You must supply a valid data source type." #~ msgstr "" #~ "FEHLER: Sie müssen einen gültigen Type für die Datenquelle eingeben." #~ msgid "ERROR: You must supply a valid heartbeat." #~ msgstr "FEHLER: Sie müssen einen gültigen 'heartbeat' Wert eingeben." #~ msgid "ERROR: You must supply a valid [minimum|maximum] value." #~ msgstr "FEHLER: Sie müssen gültige [Minimum|Maximum] Werte eingeben." #~ msgid "" #~ "A simple command line utility to add a new datasource to an existing RRD " #~ "file" #~ msgstr "" #~ "Ein einfaches Kommandozeilen-Programm um eine neue Datenquelle zu einer " #~ "bestehenden RRD Datei hinzuzufügen" #~ msgid "specifies the datasource to be added." #~ msgstr "spezifiziert die hinzuzufügende Datenquelle." #~ msgid "All related rrd files will be modified" #~ msgstr "Alle zugehörigen RRD Dateien werden verändert" #~ msgid "Delimiter to separate the --ds parameters" #~ msgstr "Trenner für die --ds Parameter" #~ msgid "Defaults to '%s'" #~ msgstr "Voreinstellung ist '%s'" #, fuzzy #~ msgid "ERROR: You must supply a valid consolidation function." #~ msgstr "" #~ "FEHLER: Sie müssen einen gültigen Namen für die Datenquelle eingeben." #, fuzzy #~ msgid "Found: %s\n" #~ msgstr "Gefunden:" #, fuzzy #~ msgid "ERROR: You must supply a valid row number." #~ msgstr "FEHLER: Sie müssen einen rrd Dateinamen angeben." #, fuzzy #~ msgid "ERROR: You must supply a valid pdp_per_row number." #~ msgstr "FEHLER: Sie müssen einen rrd Dateinamen angeben." #, fuzzy #~ msgid "ERROR: You must supply a valid xff number." #~ msgstr "FEHLER: Sie müssen einen rrd Dateinamen angeben." #, fuzzy #~ msgid "A simple command line utility to copy an rra in an existing RRD file" #~ msgstr "" #~ "Ein einfaches Kommandozeilen-Programm um eine neue Datenquelle zu einer " #~ "bestehenden RRD Datei hinzuzufügen" #, fuzzy #~ msgid "specifies the rra to be deleted." #~ msgstr "spezifiziert die hinzuzufügende Datenquelle." #, fuzzy #~ msgid "Delimiter to separate the --rra parameters" #~ msgstr "Trenner für die --ds Parameter" #, fuzzy #~ msgid "deletes both RRAs from all rrd files related to data-template-id 1" #~ msgstr " Liste alle verfügbaren Endgeräte auf für Endgeräte-Template Id 1" #, fuzzy #~ msgid "" #~ "A simple command line utility to delete an rra from an existing RRD file" #~ msgstr "" #~ "Ein einfaches Kommandozeilen-Programm um eine neue Datenquelle zu einer " #~ "bestehenden RRD Datei hinzuzufügen" #~ msgid "" #~ "FATAL: You Must Explicitally Instruct This Script to Proceed with the '--" #~ "proceed' Option" #~ msgstr "" #~ "FATAL: Sie müssen diesem Skript explizit angeben fort zu fahren mittels " #~ "der '--proceed' Option" #~ msgid "FATAL: The Poller is Currently Running" #~ msgstr "FATAL: Der Poller läuft gerade" #~ msgid "NOTE: New Directory '%s' Created for RRD Files\n" #~ msgstr "HINWEIS: Neues Verzeichnis '%s' für RRD_Dateien erstellt\n" #~ msgid "NOTE: New Directory '%s' Permissions Set\n" #~ msgstr "HINWEIS: Berechtigungen für neues Verzeichnis '%s' gesetzt\n" #~ msgid "FATAL: Could not Set Permissions for Directory '%s'\n" #~ msgstr "" #~ "FATAL: Konnte keine Berechtigungen für das Verzeichnis '%s' setzen\n" #~ msgid "NOTE: File '%s' is Already Structured, Ignoring\n" #~ msgstr "HINWEIS: Datei '%s' ist bereits strukturiert, wird ignoriert\n" #~ msgid "" #~ "A simple command line utility that converts a Cacti system from using" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Datenquellen aus Cacti zu " #~ "entfernen" #~ msgid "The utility follows the process below:" #~ msgstr "Das Werkzeug folgt unten stehendem Prozess:" #~ msgid " 1) Disables the Cacti Poller" #~ msgstr "1) Deaktiviere den Cacti Poller" #~ msgid " 2) Checks for a Running Poller." #~ msgstr " 2) Es überprüft, ob der Poller läuft." #~ msgid "If it Finds a Running Poller, it will:" #~ msgstr "Wenn es einen laufenden Poller-Prozess findet, wird das Werkzeug:" #~ msgid " 1) Re-enable the Cacti Poller" #~ msgstr " 1) Aktiviere den Cacti Poller" #~ msgid " 2) Exit" #~ msgstr " 2) enden" #~ msgid "Else, it will:" #~ msgstr "Andernfalls wird es:" #~ msgid " 1) Enable Structured Paths in the Console (Settings->Paths)" #~ msgstr "" #~ "1) Aktiviere den strukturierten Dateipfad in der Konsole (Einstellungen -" #~ "> Dateipfade)" #~ msgid "Then, for Each File, it will:" #~ msgstr "Jetzt, für jede Datei, wird es:" #~ msgid " 1) Create the Structured Path, if Necessary" #~ msgstr "1) Erzeuge den strukturierten Dateipfad, wenn erforderlich" #~ msgid " 2) Copy the File to the Strucured Path Using the New Name" #~ msgstr "" #~ " 2) Die Datei in den strukturierten Pfad kopieren und dabei den neuen " #~ "Namen nutzen" #~ msgid " 3) Alter the two Database Tables Required" #~ msgstr " 3) Die beiden benötigten Datenbankeinträge ändern" #~ msgid " 4) Remove the Old File" #~ msgstr " 4) Die alte Datei löschen" #~ msgid "Once all Files are Complete, it will" #~ msgstr "Wenn das Werkzeug mit allen Dateien fertig ist, wird es" #~ msgid "If the utility encounters a problem along the way, it will:" #~ msgstr "Wenn das Werkzeug auf ein Problem trifft, wird es:" #~ msgid "Failed to create Tree" #~ msgstr "Anlegen des Diagramm Baumes fehlgeschlagen" #~ msgid "ERROR: You must supply a header title with --name" #~ msgstr "FEHLER: Sie müssen einen Titel eingeben mit --name" #~ msgid "ERROR: You must supply a valid graph id with --graph-id" #~ msgstr "FEHLER: Sie müssen ein gültiges --snmp-feld eingeben" #~ msgid "ERROR: You must supply a valid device id with --device-id" #~ msgstr "" #~ "FEHLER: sie müssen eine gültige Endgeräte-ID für alle Endgeräte angeben!" #~ msgid "ERROR: Unknown node type: (%s)" #~ msgstr "FEHLER: Unbekannter Knoten Typ (%s)" #~ msgid "Added Node (Type: %s) node-id: (%d)" #~ msgstr "Element hinzugefügt (Typ: %s), Element-ID: (%d)" #~ msgid "ERROR: Unknown type: (%s)" #~ msgstr "FEHLER: Unbekannter Typ: (%s)" #~ msgid "ERROR: Missing type: (%s)" #~ msgstr "FEHLER: Fehlende Typangabe (%s)" #~ msgid "" #~ "A simple command line utility to create a tree or add tree items in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um ein neue Einträge zum Diagramm-" #~ "Baum in Cacti hinzuzufügen" #~ msgid "Tree options:" #~ msgstr "Einstellungen für Diagramm-Bäume:" #~ msgid "name of the Tree" #~ msgstr "Name des Baums" #~ msgid "Sort Method" #~ msgstr "Sortiermethode" #~ msgid "Node options:" #~ msgstr "Optionen für Knoten:" #~ msgid "Id of Tree" #~ msgstr "Id des Diagramm-Baumes" #~ msgid "Parent Node Id" #~ msgstr "übergeordnetes Element" #~ msgid "Header node options:" #~ msgstr "Überschrifts-Knoten Optionen:" #~ msgid "Header Node Name" #~ msgstr "Header Element Name" #~ msgid "Sort Children Type:" #~ msgstr "Art der Sortierung" #~ msgid "Device node options:" #~ msgstr "Optionen für Zielsystem-Elemente" #~ msgid "Device Node Id" #~ msgstr "Zielsystem Id" #~ msgid "Device Group Style:" #~ msgstr "Arte der Gruppierung für Diagramme" #~ msgid "Graph node options:" #~ msgstr "Diagramm Knoten Einstellungen:" #~ msgid "Graph Id" #~ msgstr "Diagramm Id" #~ msgid "RRA Id" #~ msgstr "RRA ID" #~ msgid "A simple command line utility to delete objects from a tree in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Diagramm-Baum Einträge aus Cacti " #~ "zu löschen" #~ msgid "Id of Tree|Node" #~ msgstr "Id des Baumes|Knotens" #~ msgid "ERROR: You must supply a tree_id before you can list its nodes" #~ msgstr "" #~ "FEHLER: sie müssen eine gültige tree_id angeben um die Knoten anzulisten" #~ msgid "Try --list-trees" #~ msgstr "Versuche --list-trees" #~ msgid "A simple command line utility to list trees in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Diagramm-Bäume in Cacti " #~ "anzulisten" #~ msgid "Success - Tree updated (%s)" #~ msgstr "Erfolg: aktualiserter Diagramm-Baum (%s)" #~ msgid "Success - Tree item updated (%s)" #~ msgstr "Erfolg: aktualisiertes Diagramm-Baum Element (%s)" #~ msgid "A simple command line utility to update objects of a tree in Cacti" #~ msgstr "" #~ "Ein einfaches Kommandozeilen Programm um Objekte in einem Diagramm-Baum " #~ "in Cacti zu ändern" #~ msgid "Your Cacti is already up to date." #~ msgstr "Cacti ist auf dem aktuellsten Software-Stand." #~ msgid "Upgrading to %s \n" #~ msgstr "Upgrade zu %s \n" #~ msgid " DB Error: %s\n" #~ msgstr " Datenbank Fehler: %s\n" #~ msgid "Cacti User Copy Utility" #~ msgstr "Cacti Werkzeug zum Kopieren von Benutzern" #~ msgid "Template User: %s\n" #~ msgstr "Template Benutzer: %s\n" #~ msgid "New User: %s" #~ msgstr "neuer Benutzer: %s" #~ msgid "Copying User..." #~ msgstr "Kopiere Benutzer..." #~ msgid "User copied..." #~ msgstr "Benutzer kopiert" #~ msgid "Access Denied" #~ msgstr "Zugriff verweigert" #~ msgid "" #~ "You are not permitted to access this section of Cacti. If you feel that " #~ "you need access to this particular section, please contact the Cacti " #~ "administrator." #~ msgstr "" #~ "Es ist Ihnen nicht erlaubt, diesen Bereich von Cacti zu nutzen. Sollten " #~ "Sie Zugriff zu diesem speziellen Bereich benötigen, so wenden Sie sich " #~ "bitte an Ihren Cacti Administrator" #~ msgid "UCD-SNMP 4.x" #~ msgstr "UCD-SNMP 4.x" #~ msgid "NET-SNMP 5.x" #~ msgstr "NET-SNMP 5.x" #~ msgid "GPRINT" #~ msgstr "GPRINT" #~ msgid "RRAs" #~ msgstr "RRAs" #~ msgid "Logout User" #~ msgstr "Benutzer Abmelden" #~ msgid "%d Rows" #~ msgstr "%d Zeilen" #~ msgid "Update Data Sources" #~ msgstr "Datenquellen aktualisieren" #~ msgid "Update System Trees" #~ msgstr "Graph-Bäume aktualisieren" #~ msgid "Update User Tees" #~ msgstr "Graph-Bäume aktualisieren" #~ msgid "Update Graphs" #~ msgstr "Graphen aktualisieren" #~ msgid "Data Input" #~ msgstr "Daten Input" #~ msgid "Update Device Templates" #~ msgstr "Zielsystem Schablonen aktualisieren" #~ msgid "Update Graph Templates" #~ msgstr "Graph Templates aktualisieren" #~ msgid "Update Data Source Templates" #~ msgstr "Daten Schablonen aktualisieren" #~ msgid "Update CDEF's and VDEF's" #~ msgstr "CDEF's und VDEF's aktualisieren" #~ msgid "Update Round Robin Archives" #~ msgstr "Round Robin Archives aktualisieren" #~ msgid "User Administration" #~ msgstr "Benutzadministration" #~ msgid "Global Settings" #~ msgstr "Globale Einstellungen" #~ msgid "__January_" #~ msgstr "Januar" #~ msgid "__February_" #~ msgstr "Februar" #~ msgid "__March_" #~ msgstr "März" #~ msgid "__April_" #~ msgstr "April" #~ msgid "__May_" #~ msgstr "Mai" #~ msgid "__June_" #~ msgstr "Juni" #~ msgid "__July_" #~ msgstr "Juli" #~ msgid "__August_" #~ msgstr "August" #~ msgid "__September_" #~ msgstr "September" #~ msgid "__October_" #~ msgstr "Oktober" #~ msgid "__November_" #~ msgstr "November" #~ msgid "__December_" #~ msgstr "Dezember" #~ msgid "_Jan_" #~ msgstr "Jan" #~ msgid "_Feb_" #~ msgstr "Feb" #~ msgid "_Mar_" #~ msgstr "Mär" #~ msgid "_Apr_" #~ msgstr "Apr" #~ msgid "_May_" #~ msgstr "Mai" #~ msgid "_Jun_" #~ msgstr "Jun" #~ msgid "_Jul_" #~ msgstr "Jul" #~ msgid "_Aug_" #~ msgstr "Aug" #~ msgid "_Sep_" #~ msgstr "Sep" #~ msgid "_Oct_" #~ msgstr "Okt" #~ msgid "_Nov_" #~ msgstr "Nov" #~ msgid "_Dec_" #~ msgstr "Dez" #~ msgid "Sun" #~ msgstr "So" #~ msgid "Mon" #~ msgstr "Mo" #~ msgid "Tue" #~ msgstr "Di" #~ msgid "Wed" #~ msgstr "Mi" #~ msgid "Thu" #~ msgstr "Do" #~ msgid "Fri" #~ msgstr "Fr" #~ msgid "Sat" #~ msgstr "Sa" #~ msgid "Albanian" #~ msgstr "Albanisch" #~ msgid "Arabic" #~ msgstr "Arabisch" #~ msgid "Armenian" #~ msgstr "Armenisch" #~ msgid "Belarusian" #~ msgstr "Weißrußland" #~ msgid "Bulgarian" #~ msgstr "Bulgarisch" #~ msgid "Chinese" #~ msgstr "Chinesisch" #~ msgid "Chinese (China)" #~ msgstr "Chinesisch (China)" #~ msgid "Chinese (Hong Kong)" #~ msgstr "Chinesisch (Hong Kong)" #~ msgid "Chinese (Singapore)" #~ msgstr "Chinesisch (Singapore)" #~ msgid "Chinese (Taiwan)" #~ msgstr "Chinesisch (Taiwan)" #~ msgid "Croatian" #~ msgstr "Kroatisch" #~ msgid "Czech" #~ msgstr "Tschechisch" #~ msgid "Danish" #~ msgstr "Dänisch" #~ msgid "Dutch" #~ msgstr "Holländisch" #~ msgid "Estonian" #~ msgstr "Estländisch" #~ msgid "Finnish" #~ msgstr "Finnisch" #~ msgid "French" #~ msgstr "Französisch" #~ msgid "German" #~ msgstr "Deutsch" #~ msgid "Greek" #~ msgstr "Griechisch" #~ msgid "Hebrew" #~ msgstr "Hebräisch" #~ msgid "Hindi" #~ msgstr "Hindi" #~ msgid "Hungarian" #~ msgstr "Ungarisch" #~ msgid "Icelandic" #~ msgstr "Isländisch" #~ msgid "Indonesian" #~ msgstr "Indonesisch" #~ msgid "Irish" #~ msgstr "Irisch" #~ msgid "Italian" #~ msgstr "Italienisch" #~ msgid "Japanese" #~ msgstr "Japanisch" #~ msgid "Korean" #~ msgstr "Koreanisch" #~ msgid "Lativan" #~ msgstr "Lativan" #~ msgid "Lithuanian" #~ msgstr "Litauisch" #~ msgid "Macedonian" #~ msgstr "Mazedonisch" #~ msgid "Malay" #~ msgstr "Malaysisch" #~ msgid "Maltese" #~ msgstr "Maltesisch" #~ msgid "Norwegian" #~ msgstr "Norwegisch" #~ msgid "Polish" #~ msgstr "Polnisch" #~ msgid "Portuguese" #~ msgstr "Portugisich" #~ msgid "Portuguese (Brazil)" #~ msgstr "Portugisich (Brasilien)" #~ msgid "Romanian" #~ msgstr "Romänisch" #~ msgid "Russian" #~ msgstr "Russisch" #~ msgid "Serbian" #~ msgstr "Serbisch" #~ msgid "Slovak" #~ msgstr "Slowakisch" #~ msgid "Slovenian" #~ msgstr "Slowenisch" #~ msgid "Spanish" #~ msgstr "Spanisch" #~ msgid "Swedish" #~ msgstr "Schwedisch" #~ msgid "Thai" #~ msgstr "Thailändisch" #~ msgid "Turkish" #~ msgstr "Türkisch" #~ msgid "Vietnamese" #~ msgstr "Vvietnamesisch" #~ msgid "Default (m/d/Y I:M:S p)" #~ msgstr "Standard (m/d/Y I:M:S p)" #~ msgid "24 Hour (m/d/Y H:M:S)" #~ msgstr "24 Std. (m/d/Y H:M:S)" #~ msgid "24 Hour Alt (Y-m-d H:M:S)" #~ msgstr "24 Std. Alternative (Y-m-d H:M:S)" #~ msgid "24 Hour Alt2 (Y/m/d H:M:S)" #~ msgstr "24 Std. Alternative2 (Y/m/d H:M:S)" #~ msgid "_" #~ msgstr "_" #~ msgid "__" #~ msgstr "__" #~ msgid "Tree View Mode" #~ msgstr "Baum-Ansicht Modus" #~ msgid "List View Mode" #~ msgstr "List-Ansicht Modus" #~ msgid "Graph Color Tags" #~ msgstr "Farbkennzeichnung für Diagramme" #, fuzzy #~ msgid "RRDTool Default Font" #~ msgstr "RRDTool Version" #, fuzzy #~ msgid "Perl Binary Path" #~ msgstr "snmpwalk-Datei Pfad" #, fuzzy #~ msgid "The path to your Perl binary file." #~ msgstr "Der Pfad zur ausführbaren snmpwalk-Datei" #, fuzzy #~ msgid "Shell Binary Path" #~ msgstr "snmpwalk-Datei Pfad" #, fuzzy #~ msgid "The path to your Shell binary file." #~ msgstr "Der Pfad zur ausführbaren snmpwalk-Datei" #~ msgid "Cacti Log File Path" #~ msgstr "Pfadangabe für Cacti Logdatei" #~ msgid "general" #~ msgstr "allgemein" #~ msgid "poller" #~ msgstr "poller" #~ msgid "Poller Statistics" #~ msgstr "Poller Statistiken" #~ msgid "Poller Warnings" #~ msgstr "Poller Warnungen" #~ msgid "Poller Errors" #~ msgstr "Poller Fehler" #~ msgid "Date/Time setting for logs" #~ msgstr "Datum/Zeit Einstellungen für Logs" #~ msgid "The date/time setting for logs" #~ msgstr "Das Datumsformat, welches für die Logs genutzt werden soll" #~ msgid "" #~ "Choose \"enabled\" to allow the localization of Cacti. The strict mode " #~ "requires that the requested language will also be supported by all " #~ "plugins being installed at your system. If that's not the fact everything " #~ "will be displayed in English." #~ msgstr "" #~ "Wählen Sie \"aktiviert\" um die Ländereinstellungen zu benutzen. Der " #~ "strikte Modus erfordert das die ausgewählte Sprache auch von allen " #~ "installierten Plugins unterstützt wird. Sollte das nicht der Fall sein, " #~ "so wird Englisch benutzt." #~ msgid "" #~ "Allow to automatically determine the \"default\" language of the user and " #~ "provide it at login time if that language is supported by Cacti. If " #~ "disabled, the default language will be in force until the user elects " #~ "another language. " #~ msgstr "" #~ "Stelle die 'standard' Sprache des Benutzers automatisch fest und benutzte " #~ "diese bei der Anmeldung, sofern durch Cacti unterstützt. Falls " #~ "deaktiviert wird die Standardsprache verwendet bis der Benutzer eine " #~ "andere wählt." #~ msgid "Time Zone Support" #~ msgstr "Unterstützung für Zeitzonen" #~ msgid "" #~ "Choose \"enabled\" to setup another time zone. If the time zone can not " #~ "be modified system time zone will be used automatically." #~ msgstr "" #~ "Wählen Sie \"aktiviert\" um eine andere Zeitzone einzustellen. Wenn die " #~ "Zeitzone nicht verändert wird, so wird die Zeitzone des Systems benutzt." #~ msgid "Default Time Zone" #~ msgstr "Standard Zeitzone" #~ msgid "Default time zone for this system." #~ msgstr "Standard Zeitzone für diese Installation." #~ msgid "Default SNMP version for all new devices." #~ msgstr "Standard SNMP Version für neue Zielsysteme." #~ msgid "Default SNMP read community for all new devices." #~ msgstr "Standard SNMP Lese Community für alle neuen Zielsysteme." #~ msgid "SNMP Port Number" #~ msgstr "SNMP Portnummer" #~ msgid "Default UDP port to be used for SNMP Calls. Typically 161." #~ msgstr "Standard UPD Port für SNMP Abfragen. Typischerweise 161." #~ msgid "disabled" #~ msgstr "deaktiviert" #~ msgid "Disabled (no exporting)" #~ msgstr "Deaktiviert (kein Export)" #~ msgid "Classic (local path)" #~ msgstr "Klassisch (lokales Verzeichnis)" #~ msgid "" #~ "Choose which presentation would you want for the html generated pages. If " #~ "you choose classical presentation, the graphs will be in a only-one-html " #~ "page. If you choose tree presentation, the graph tree architecture will " #~ "be kept in the static html pages" #~ msgstr "" #~ "Wählen Sie die Darstellung für die HTML Seiten. Wählen Sie die klassische " #~ "Darstellung, so wird eine einzige HTML Seite erzeugt. Wählen Sie " #~ "Baumdarstellung, dann wird die Diagramm Baumstruktur für die statischen " #~ "HTML Seiten benutzt." #~ msgid "Classical Presentation" #~ msgstr "Klassische Darstellung" #~ msgid "Effective User Name" #~ msgstr "Tatsächlicher Benutzername" #~ msgid "Choose when to export graphs." #~ msgstr "Wann sollen Diagramme exportiert werden." #~ msgid "Classic (export every x times)" #~ msgstr "Klassische (exportiere alle x Male)" #~ msgid "FTP Options" #~ msgstr "FTP Optionen" #~ msgid "FTP Host" #~ msgstr "FTP Endgerät" #~ msgid "Denotes the device to upload your graphs by ftp." #~ msgstr "Benennt das Zielsystem für das Hochladen der Diagramme per ftp." #~ msgid "FTP Port" #~ msgstr "FTP Port" #~ msgid "" #~ "Communication port with the ftp server (leave empty for defaults). " #~ "Default: 21." #~ msgstr "" #~ "Port für den FTP Server (für Standardwerte bitte leer lassen). " #~ "Standardwert: 21." #~ msgid "FTP User" #~ msgstr "FTP Benutzer" #~ msgid "" #~ "Account to logon on the remote server (leave empty for defaults). " #~ "Default: Anonymous." #~ msgstr "" #~ "Benutzerkonto für die Anmeldung am entfernten Server (Für Standardwerte " #~ "leer lassen). Standardwert: Anonymous." #~ msgid "FTP Password" #~ msgstr "FTP Passwort" #~ msgid "Maximum Field Length" #~ msgstr "Maximale Feldlänge" #~ msgid "Default Dropdown Selector" #~ msgstr "Standard Auswahlliste" #~ msgid "Data Query Graph Rows" #~ msgstr "Diagrammzeilen für Datenabfrage" #~ msgid "Default Log File Tail Lines" #~ msgstr "Standard Anzahl der angezeigten Log-Datei Zeilen" #~ msgid "" #~ "How many lines of the Cacti log file to you want to tail, by default." #~ msgstr "" #~ "Wieviel Zeilen der Cacti-Log-Datei möchten Sie standardmäßig angezeigt " #~ "bekommen?" #~ msgid "Log File Tail Refresh" #~ msgstr "Log-Datei Aktualisierung" #~ msgid "How many often do you want the Cacti log display to update." #~ msgstr "Wie oft soll die Cacti-Log-Anzeige aktualisiert werden?" #, fuzzy #~ msgid "Error Management" #~ msgstr "Log Verwaltung" #~ msgid "Default RRDtool 1.2.x++ Fonts" #~ msgstr "Standard RRDtool 1.2 Schriftarten" #, fuzzy #~ msgid "The font to use for Graph Titles" #~ msgstr "" #~ "Die Schriftartdatei, die für die Graphenüberschrift genutzt werden soll" #~ msgid "Watermark Font Size" #~ msgstr "Schriftgrösse für Wasserzeichen" #~ msgid "The size of the font used for Graph Watermarks" #~ msgstr "" #~ "Die Schriftgrösse, die für die Graphen-Wasserzeichen genutzt werden soll" #~ msgid "Watermark Font File" #~ msgstr "Schriftart für Wasserzeichen" #~ msgid "The font file to be used for Graph Watermarks" #~ msgstr "Die Schriftartdatei, die für die Graphen-Wasserzeichen genutzt wird" #~ msgid "Default RRDtool Colortags" #~ msgstr "Standard RRDtool Schriftarten" #~ msgid "" #~ "Colortags are available for Global/Custom/Template settings. Select the " #~ "sequence to decide the priority of each" #~ msgstr "" #~ "Farbauszeichnung sind verfügbar auf globaler/Benutzer-spezifischer/" #~ "Schablonen-Ebene. Wählen Sie die richtige Reihenfolge" #~ msgid "Background (--color BACK)" #~ msgstr "Hintergrund (--color BACK)" #~ msgid "Color tag of the background (rrggbb[aa])." #~ msgstr "Farbauszeichnung für Hintergrund (rrggbb[aa])" #~ msgid "Canvas (--color CANVAS)" #~ msgstr "Canvas (--color CANVAS)" #~ msgid "Color tag of the background of the actual graph (rrggbb[aa])." #~ msgstr "" #~ "Farbauszeichnung für den Hintergrund des aktuellen Diagrammes " #~ "(rrggbb[aa])." #~ msgid "Color tag of the left and top border (rrggbb[aa])." #~ msgstr "Farbauszeichnung für linken und oberen Rand (rrggbb[aa])." #~ msgid "Color tag of the right and bottom border (rrggbb[aa])." #~ msgstr "Farbauszeichnung für rechten und unteren Rand (rrggbb[aa])." #~ msgid "Color tag of the grid (rrggbb[aa])." #~ msgstr "Farbauszeichnung für das Gitter (rrggbb[aa])" #~ msgid "Color tag of the major grid (rrggbb[aa])." #~ msgstr "Farbauszeichnung für das Haupt-Gitter (rrggbb[aa])" #~ msgid "Color tag of the font (rrggbb[aa])." #~ msgstr "Farbauszeichnung für Schriftarten (rrggbb[aa])" #~ msgid "Axis (--color AXIS)" #~ msgstr "Achse (--color AXIS)" #~ msgid "Color tag of the axis (rrggbb[aa])." #~ msgstr "Farbauszeichnung für Achsen (rrggbb[aa])" #~ msgid "Color tag of the frame (rrggbb[aa])." #~ msgstr "Farbauszeichnung für Rahmen (rrggbb[aa])" #~ msgid "Arrow (--color ARROW)" #~ msgstr "Pfeil (--color ARROW)" #~ msgid "Color tag of the arrow (rrggbb[aa])." #~ msgstr "Farbauszeichnung für Pfeile (rrggbb[aa])" #~ msgid "Graph Legend Item#1" #~ msgstr "Diagramm Legende#1" #~ msgid "Type of value you want to see in the legend." #~ msgstr "Wertetype, den Sie in der Legende sehen wollen." #~ msgid "A VDEF (math) function to apply to this item on the legend." #~ msgstr "" #~ "Eine CDEF (mathematische) Funktion, die auf dieses Diagramm-Element " #~ "angewendet wird" #~ msgid "Graph Legend Item#2" #~ msgstr "Diagramm Legende#2" #~ msgid "Graph Legend Item#3" #~ msgstr "Diagramm Legende#3" #~ msgid "Graph Legend Item#4" #~ msgstr "Diagramm Legende#4" #~ msgid "If you wish to stop the polling process, uncheck this box." #~ msgstr "" #~ "Wenn Sie den Poller-Prozess stoppen möchten, entfernen Sie den Haken." #~ msgid "" #~ "The poller type to use. This setting will take effect at next polling " #~ "interval." #~ msgstr "" #~ "Der zu benutzende Pollertyp. Diese Einstellung wird beim nächsten Polling-" #~ "Interval aktiv." #~ msgid "Device Availability Settings" #~ msgstr "Verfügbarkeits-Optionen" #~ msgid "Device Up/Down Settings" #~ msgstr "Einstellungen für 'System aktiv/inaktiv'" #~ msgid "Builtin\tAuthentication" #~ msgstr "Eingebaute Authentisierung" #~ msgid "" #~ "Cacti handles user authentication, which allows you to create users and " #~ "give them rights to different areas\twithin Cacti." #~ msgstr "" #~ "Cacti steuert die Benutzeranmeldung. Dies ermöglicht das Anlegen neuer " #~ "Benutzerkonten um Berechtigungen für unterschiedliche Bereiche in Cacti " #~ "festzulegen." #~ msgid "" #~ "Authentication is handled by the web server. Users can be added or " #~ "created automatically on first login if the Template User is defined, " #~ "otherwise the defined guest permissions will be used." #~ msgstr "" #~ "Authentisierung wird vom Web Server durchgeführt. Benutzerkonten werden " #~ "bei der ersten Anmeldung automatisch angelegt, falls eine Benutzer " #~ "Schablone definiert ist, ansonsten werden die festgelegten Gäste-" #~ "Berechtigungen benutzt." #~ msgid "" #~ "Allows for authentication against a LDAP server. Users will be created " #~ "automatically on first login if the Template User is defined, otherwise " #~ "the defined guest permissions will be used. If PHP's LDAP module is not " #~ "enabled, LDAP Authentication will not appear as a selectable option." #~ msgstr "" #~ "Erlaubt die Authentifizierung gegen einen LDAP Server. Benutzerkonten " #~ "werden bei der ersten Anmeldung automatisch angelegt, falls eine Benutzer " #~ "Schablone definiert ist, ansonsten werden die festgelegten Gäste-" #~ "Berechtigungen benutzt. Wenn PHP's LDAP Module nicht aktiviert ist, dann " #~ "wird die LDAP Authentifizierung nicht auswählbar sein." #~ msgid "" #~ "Distinguished Name syntax, such as
    for windows:
    \"<" #~ "username>@win2kdomain.local\" or

    for OpenLDAP:
    " #~ "\"uid=<username>,ou=people,dc=domain,dc=local\".

    " #~ "\"<username>\" is replaced with the username that was supplied at " #~ "the login prompt. This is only used when in \"No Searching\" mode." #~ msgstr "" #~ "'Distinguished Name' Syntax, z.B.
    für Windows:
    \"<" #~ "username>@win2kdomain.local\" oder

    für OpenLDAP:
    " #~ "\"uid=<username>,ou=people,dc=domain,dc=local\".

    " #~ "\"<username>\" wird ersetzt durch den Benutzernamen der Anmeldung. " #~ "Dies wird nur im \"Nicht Suchen\" Modus benutzt.
    " #~ msgid "Distingished Name of the group that user must have membership." #~ msgstr "" #~ "'Distinguished Name' der Gruppe, in welcher der Benutzer als Teilnehmer " #~ "eingetragen ist." #~ msgid "" #~ "Defines if users use full Distingished Name or just Username in the " #~ "defined Group Member Attribute." #~ msgstr "" #~ "Legt fest, ob Benutzer den vollen 'Distinguished Name' oder der normalen " #~ "Benutzername im Attribut der Gruppenmitgliedschaft verwenden." #~ msgid "Distingished Name" #~ msgstr "Distinguierter Name" #~ msgid "Search Distingished Name (DN)" #~ msgstr "Suche distinguierten Namen (DN)" #~ msgid "Cacti System Log" #~ msgstr "Cacti System Log" #~ msgid "Syslog Server" #~ msgstr "Syslog Server" #~ msgid "Cacti System Log Size and Control" #~ msgstr "Cacti System Log-Größe und Steuerung" #~ msgid "" #~ "All events older than the specified number of days will be discarded if " #~ "the maximum number of recrods in the Cacti System Log is reached." #~ msgstr "" #~ "Alle Ereignisse, die älter als die angegebene ANzahl von Tagen sind " #~ "werden verworfen wenn die maximale Zahl der Einträge im Cacti System Log " #~ "erreicht wurden." #~ msgid "System Log Settings" #~ msgstr "Einstellungen für System Log" #~ msgid "Syslog Server Settings" #~ msgstr "Einstellungen für Syslog Server" #~ msgid "Log Email Level" #~ msgstr "Log EMail Stufe" #~ msgid "Email Group" #~ msgstr "EMail Gruppe" #~ msgid "Default RRA" #~ msgstr "Standard RRA" #~ msgid "Display Graph View Timespan Selector" #~ msgstr "Zeige Graph-Ansicht Zeitabschnitt-Auswähler" #~ msgid "Choose if you want the time span selection box to be displayed." #~ msgstr "Auswählen, um die Auswahlbox für Zeiträume anzuzeigen." #~ msgid "Which sections of Cacti thumbnail graphs should be used for." #~ msgstr "" #~ "Angabe über die Bereiche, in denen Cacti Thumbnail-Graphen anzeigen soll." #~ msgid "Tree View (Single Pane)" #~ msgstr "Baum-Ansicht (1-Fenster)" #~ msgid "Tree View (Dual Pane)" #~ msgstr "Baum-Ansicht (2-Fenster)" #~ msgid "Default Graph Tree" #~ msgstr "Standard Graph Baum" #~ msgid "Graphs Per-Page" #~ msgstr "Graphen per Seite" #~ msgid "Dual Pane Tree Width" #~ msgstr "2-Fenster-Ansicht Baum Breite" #~ msgid "" #~ "When choosing dual pane Tree View, what width should the tree occupy in " #~ "pixels." #~ msgstr "" #~ "Wenn Sie die 2-Fenster-Ansicht des Baumes wählen: welche Breite soll der " #~ "Baum erhalten (in Pixeln)?" #~ msgid "" #~ "Choose whether to expand the graph templates used for a device on the " #~ "dual pane tree." #~ msgstr "" #~ "Wählen Sie, ob die Graph-Schablonen eines Gerätes in der 2-Fenster-" #~ "Ansicht des Baumes aufgeklappt sein sollen." #~ msgid "The number of graphs to display on one page in list view mode." #~ msgstr "" #~ "Die Anzahl der Graphen, die im Listen-Ansicht Modus auf einer Seite " #~ "angezeigt werden." #~ msgid "Africa" #~ msgstr "Afrika" #~ msgid "America" #~ msgstr "Amerika" #~ msgid "Antarctica" #~ msgstr "Antarktis" #~ msgid "Arctic" #~ msgstr "Arktis" #~ msgid "Asia" #~ msgstr "Aien" #~ msgid "Atlantic" #~ msgstr "Atlantik" #~ msgid "Australia" #~ msgstr "Australien" #~ msgid "Europe" #~ msgstr "Europa" #~ msgid "Indian" #~ msgstr "Indisch" #~ msgid "Pacific" #~ msgstr "Pazifik" #, fuzzy #~ msgid "Others" #~ msgstr "Athen" #~ msgid "Abidja" #~ msgstr "Abidjan" #~ msgid "Accra" #~ msgstr "Accra" #~ msgid "Addis Ababa" #~ msgstr "Addis Abbeba" #~ msgid "Algiers" #~ msgstr "Algier" #~ msgid "Asmara" #~ msgstr "Asmara" #~ msgid "Bamako" #~ msgstr "Bamako" #~ msgid "Bangui" #~ msgstr "Bangui" #~ msgid "Banju" #~ msgstr "Banju" #~ msgid "Bissau" #~ msgstr "Bissau" #~ msgid "Blantyre" #~ msgstr "Blantyre" #~ msgid "Brazzaville" #~ msgstr "Brazzaville" #~ msgid "Bujumbura" #~ msgstr "Bujumbura" #~ msgid "Cairo" #~ msgstr "Kairo" #~ msgid "Casablanca" #~ msgstr "Casablanca" #~ msgid "Conakry" #~ msgstr "Conakry" #~ msgid "Dakar" #~ msgstr "Dakar" #~ msgid "Dar es Salaam" #~ msgstr "Dar es Salaam" #~ msgid "Djibouti" #~ msgstr "Djibuti" #~ msgid "Douala" #~ msgstr "Douala" #~ msgid "El Aaiun" #~ msgstr "El Aaiun" #~ msgid "Freetown" #~ msgstr "Freetown" #~ msgid "Gaborone" #~ msgstr "Gaborone" #~ msgid "Harare" #~ msgstr "Harare" #~ msgid "Johannesburg" #~ msgstr "Johannesburg" #~ msgid "Kampala" #~ msgstr "Kampala" #~ msgid "Khartoum" #~ msgstr "Khartum" #~ msgid "Kigali" #~ msgstr "Kigali" #~ msgid "Kinshasa" #~ msgstr "Kinshasa" #~ msgid "Lagos" #~ msgstr "Lagos" #~ msgid "Libreville" #~ msgstr "Libreville" #~ msgid "Lome" #~ msgstr "Lome" #~ msgid "Luanda" #~ msgstr "Luanda" #~ msgid "Lubumbashi" #~ msgstr "Lubumbashi" #~ msgid "Lusaka" #~ msgstr "Lusaka" #~ msgid "Malabo" #~ msgstr "Malabo" #~ msgid "Maputo" #~ msgstr "Maputo" #~ msgid "Maseru" #~ msgstr "Maseru" #~ msgid "Mbabane" #~ msgstr "Mbabane" #~ msgid "Mogadishu" #~ msgstr "Mogadishu" #~ msgid "Monrovia" #~ msgstr "Monrovia" #~ msgid "Nairobi" #~ msgstr "Nairobi" #~ msgid "Ndjamena" #~ msgstr "Ndjamena" #~ msgid "Niamey" #~ msgstr "Niamey" #~ msgid "Nouakchott" #~ msgstr "Nouakchott" #~ msgid "Ouagadougou" #~ msgstr "Ouagadougou" #~ msgid "Porto-Novo" #~ msgstr "Porto-Novo" #~ msgid "Sao Tome" #~ msgstr "Sao Tome" #~ msgid "Tripoli" #~ msgstr "Tripoli" #~ msgid "Tunis" #~ msgstr "Tunis" #~ msgid "Windhoek" #~ msgstr "Windhoek" #~ msgid "Adak" #~ msgstr "Adak" #~ msgid "Anchorage" #~ msgstr "Anchorage" #~ msgid "Anguilla" #~ msgstr "Anguilla" #~ msgid "Antigua" #~ msgstr "Antigua" #~ msgid "Araguaina" #~ msgstr "Araguaina" #~ msgid "Argentina" #~ msgstr "Argentinien" #~ msgid "Buenos Aires" #~ msgstr "Buenos Aires" #~ msgid "Catamarca" #~ msgstr "Catamarca" #~ msgid "Cordoba" #~ msgstr "Cordoba" #~ msgid "Jujuy" #~ msgstr "Jujuy" #~ msgid "La Rioja" #~ msgstr "La Rioja" #~ msgid "Mendoza" #~ msgstr "Mendoza" #~ msgid "Rio Gallegos" #~ msgstr "Rio Gallegos" #~ msgid "Salta" #~ msgstr "Salta" #~ msgid "San Juan" #~ msgstr "San Juan" #~ msgid "San Luis" #~ msgstr "San Luis" #~ msgid "Tucuman" #~ msgstr "Tucuman" #~ msgid "Ushuaia" #~ msgstr "Ushuaia" #~ msgid "Aruba" #~ msgstr "Aruba" #~ msgid "Asuncion" #~ msgstr "Asuncion" #~ msgid "Atikokan" #~ msgstr "Atikokan" #~ msgid "Bahia" #~ msgstr "Bahia" #~ msgid "Barbados" #~ msgstr "Barbados" #~ msgid "Belem" #~ msgstr "Belem" #~ msgid "Belize" #~ msgstr "Belize" #~ msgid "Blanc-Sablon" #~ msgstr "Blanc-Sablon" #~ msgid "Boa Vista" #~ msgstr "Boa Vista" #~ msgid "Bogota" #~ msgstr "Bogota" #~ msgid "Boise" #~ msgstr "Boise" #~ msgid "Cambridge Bay" #~ msgstr "Cambridge Bay" #~ msgid "Campo Grande" #~ msgstr "Campo Grande" #~ msgid "Cancun" #~ msgstr "Cancun" #~ msgid "Caracas" #~ msgstr "Caracas" #~ msgid "Cayenne" #~ msgstr "Cayenne" #~ msgid "Cayman" #~ msgstr "Cayman Inseln" #~ msgid "Chicago" #~ msgstr "Chicago" #~ msgid "Chihuahua" #~ msgstr "Chihuahua" #~ msgid "Costa Rica" #~ msgstr "Costa Rica" #~ msgid "Cuiaba" #~ msgstr "Cuiaba" #~ msgid "Curacao" #~ msgstr "Curacao" #~ msgid "Danmarkshavn" #~ msgstr "Danmarkshavn" #~ msgid "Dawson" #~ msgstr "Dawson" #~ msgid "Dawson Creek" #~ msgstr "Dawson Creek" #~ msgid "Denver" #~ msgstr "Denver" #~ msgid "Detroit" #~ msgstr "Detroit" #~ msgid "Dominica" #~ msgstr "Dominica" #~ msgid "Edmonton" #~ msgstr "Edmonton" #~ msgid "Eirunepe" #~ msgstr "Eirunepe" #~ msgid "El Salvador" #~ msgstr "El Salvador" #~ msgid "Fortaleza" #~ msgstr "Fortaleza" #~ msgid "Glace Bay" #~ msgstr "Glace Bay" #~ msgid "Godthab" #~ msgstr "Godthab" #~ msgid "Goose Bay" #~ msgstr "Goose Bay" #~ msgid "Grand Turk" #~ msgstr "Grand Turk" #~ msgid "Grenada" #~ msgstr "Grenada" #~ msgid "Guadeloupe" #~ msgstr "Guadeloupe" #~ msgid "Guatemala" #~ msgstr "Guatemala" #~ msgid "Guayaquil" #~ msgstr "Guayaquil" #~ msgid "Guyana" #~ msgstr "Guyana" #~ msgid "Halifax" #~ msgstr "Halifax" #~ msgid "Havana" #~ msgstr "Havana" #~ msgid "Hermosillo" #~ msgstr "Hermosillo" #~ msgid "Indiana" #~ msgstr "Indiana" #~ msgid "Indianapolis" #~ msgstr "Indianapolis" #~ msgid "Knox" #~ msgstr "Knox" #~ msgid "Marengo" #~ msgstr "Marengo" #~ msgid "Petersburg" #~ msgstr "Petersburg" #~ msgid "Tell_City" #~ msgstr "Tell_City" #~ msgid "Vevay" #~ msgstr "Vevay" #~ msgid "Vincennes" #~ msgstr "Vincennes" #~ msgid "Winamac" #~ msgstr "Winamac" #~ msgid "Inuvik" #~ msgstr "Inuvik" #~ msgid "Iqaluit" #~ msgstr "Iqaluit" #~ msgid "Jamaica" #~ msgstr "Jamaica" #~ msgid "Juneau" #~ msgstr "Juneau" #~ msgid "Kentucky" #~ msgstr "Kentucky" #~ msgid "Louisville" #~ msgstr "Louisville" #~ msgid "Monticello" #~ msgstr "Monticello" #~ msgid "La Paz" #~ msgstr "La Paz" #~ msgid "Lima" #~ msgstr "Lima" #~ msgid "Los Angeles" #~ msgstr "Los Angeles" #~ msgid "Maceio" #~ msgstr "Maceio" #~ msgid "Managua" #~ msgstr "Managua" #~ msgid "Manaus" #~ msgstr "Manaus" #~ msgid "Marigot" #~ msgstr "Marigot" #~ msgid "Martinique" #~ msgstr "Martinique" #~ msgid "Mazatlan" #~ msgstr "Mazatlan" #~ msgid "Menominee" #~ msgstr "Menominee" #~ msgid "Merida" #~ msgstr "Merida" #~ msgid "Mexico City" #~ msgstr "Mexico City" #~ msgid "Miquelo" #~ msgstr "Miquelo" #~ msgid "Moncton" #~ msgstr "Moncton" #~ msgid "Monterrey" #~ msgstr "Monterrey" #~ msgid "Montevideo" #~ msgstr "Montevideo" #~ msgid "Montreal" #~ msgstr "Montreal" #~ msgid "Montserrat" #~ msgstr "Montserrat" #~ msgid "Nassau" #~ msgstr "Nassau" #~ msgid "New York" #~ msgstr "New York" #~ msgid "Nipigon" #~ msgstr "Nipigon" #~ msgid "Nome" #~ msgstr "Nome" #~ msgid "Noronha" #~ msgstr "Noronha" #~ msgid "North Dakota" #~ msgstr "North Dakota" #~ msgid "New Salem" #~ msgstr "New Salem" #~ msgid "Panama" #~ msgstr "Panama" #~ msgid "Pangnirtung" #~ msgstr "Pangnirtung" #~ msgid "Paramaribo" #~ msgstr "Paramaribo" #~ msgid "Phoenix" #~ msgstr "Phoenix" #~ msgid "Port-au-Prince" #~ msgstr "Port-au-Prince" #~ msgid "Port of Spain" #~ msgstr "Port of Spain" #~ msgid "Porto Velho" #~ msgstr "Porto Velho" #~ msgid "Puerto Rico" #~ msgstr "Puerto Rico" #~ msgid "Rainy River" #~ msgstr "Rainy River" #~ msgid "Rankin Inlet" #~ msgstr "Rankin Inlet" #~ msgid "Recife" #~ msgstr "Recife" #~ msgid "Regina" #~ msgstr "Regina" #~ msgid "Resolute" #~ msgstr "Resolute" #~ msgid "Rio Branco" #~ msgstr "Rio Branco" #~ msgid "Santarem" #~ msgstr "Santarem" #~ msgid "Santiago" #~ msgstr "Santiago" #~ msgid "Santo Domingo" #~ msgstr "Santo Domingo" #~ msgid "Sao Paulo" #~ msgstr "Sao Paulo" #~ msgid "Scoresbysund" #~ msgstr "Scoresbysund" #~ msgid "Shiprock" #~ msgstr "Shiprock" #~ msgid "St Barthelemy" #~ msgstr "St Barthelemy" #~ msgid "St Johns" #~ msgstr "St Johns" #~ msgid "St Kitts" #~ msgstr "St Kitts" #~ msgid "St Lucia" #~ msgstr "St Lucia" #~ msgid "St Thomas" #~ msgstr "St Thomas" #~ msgid "St Vincent" #~ msgstr "St Vincent" #~ msgid "Swift Current" #~ msgstr "Aktuell:" #~ msgid "Tegucigalpa" #~ msgstr "Tegucigalpa" #~ msgid "Thule" #~ msgstr "Thule" #~ msgid "Thunder Bay" #~ msgstr "Thunder Bay" #~ msgid "Tijuana" #~ msgstr "Tijuana" #~ msgid "Toronto" #~ msgstr "Toronto" #~ msgid "Tortola" #~ msgstr "Tortola" #~ msgid "Vancouver" #~ msgstr "Vancouver" #~ msgid "Whitehorse" #~ msgstr "Whitehorse" #~ msgid "Winnipeg" #~ msgstr "Winnipeg" #~ msgid "Yakutat" #~ msgstr "Yakutat" #~ msgid "Yellowknife" #~ msgstr "Yellowknife" #~ msgid "Casey" #~ msgstr "Casey" #~ msgid "Davis" #~ msgstr "Davis" #~ msgid "DumontDUrville" #~ msgstr "DumontDUrville" #~ msgid "Mawson" #~ msgstr "Mawson" #~ msgid "McMurdo" #~ msgstr "McMurdo" #~ msgid "Palme" #~ msgstr "Palme" #~ msgid "Rothera" #~ msgstr "Rothera" #~ msgid "South Pole" #~ msgstr "Südpol" #~ msgid "Syowa" #~ msgstr "Syowa" #~ msgid "Vostok" #~ msgstr "Wostok" #~ msgid "Longyearbyen" #~ msgstr "Longyearbyen" #~ msgid "Aden" #~ msgstr "Aden" #~ msgid "Almaty" #~ msgstr "Almaty" #~ msgid "Amman" #~ msgstr "Amman" #~ msgid "Anadyr" #~ msgstr "Anadyr" #~ msgid "Aqtau" #~ msgstr "Aqtau" #~ msgid "Aqtobe" #~ msgstr "Aqtobe" #~ msgid "Ashgabat" #~ msgstr "Ashgabat" #~ msgid "Baghdad" #~ msgstr "Bagdad" #~ msgid "Bahrain" #~ msgstr "Bahrein" #~ msgid "Baku" #~ msgstr "Baku" #~ msgid "Bangkok" #~ msgstr "Bangkok" #~ msgid "Beirut" #~ msgstr "Beirut" #~ msgid "Bishkek" #~ msgstr "Bishkek" #~ msgid "Brunei" #~ msgstr "Brunei" #~ msgid "Choibalsan" #~ msgstr "Choibalsan" #~ msgid "Chongqing" #~ msgstr "Chongking" #~ msgid "Colombo" #~ msgstr "Colombo" #~ msgid "Damascus" #~ msgstr "Damaskus" #~ msgid "Dhaka" #~ msgstr "Dhaka" #~ msgid "Dili" #~ msgstr "Dili" #~ msgid "Dubai" #~ msgstr "Dubai" #~ msgid "Dushanbe" #~ msgstr "Duschanbe" #~ msgid "Gaza" #~ msgstr "Gaza" #~ msgid "Harbin" #~ msgstr "harbin" #~ msgid "Ho Chi Minh" #~ msgstr "Ho Chi Minh" #~ msgid "Hong Kong" #~ msgstr "Chinesisch (Hong Kong)" #~ msgid "Hovd" #~ msgstr "Hovd" #~ msgid "Irkutsk" #~ msgstr "Irkutsk" #~ msgid "Jakarta" #~ msgstr "Jakarta" #~ msgid "Jayapura" #~ msgstr "Jayapura" #~ msgid "Jerusalem" #~ msgstr "Jerusalem" #~ msgid "Kabul" #~ msgstr "Kabul" #~ msgid "Kamchatka" #~ msgstr "Kamtschatka" #~ msgid "Karachi" #~ msgstr "Karachi" #~ msgid "Kashgar" #~ msgstr "Kashgar" #~ msgid "Katmandu" #~ msgstr "Katmandu" #~ msgid "Kolkata" #~ msgstr "Kolkata" #~ msgid "Krasnoyarsk" #~ msgstr "Krasnojarsk" #~ msgid "Kuala Lumpur" #~ msgstr "Kuala Lumpur" #~ msgid "Kuching" #~ msgstr "Kuching" #~ msgid "Kuwait" #~ msgstr "Kuwait" #~ msgid "Macau" #~ msgstr "Macau" #~ msgid "Magadan" #~ msgstr "Magadan" #~ msgid "Makassar" #~ msgstr "Makassar" #~ msgid "Manila" #~ msgstr "Manila" #~ msgid "Muscat" #~ msgstr "Muscat" #~ msgid "Nicosia" #~ msgstr "Nicosia" #~ msgid "Novosibirsk" #~ msgstr "Novosibirsk" #~ msgid "Omsk" #~ msgstr "Omsk" #~ msgid "Oral" #~ msgstr "Oral" #~ msgid "Phnom Penh" #~ msgstr "Phnom Penh" #~ msgid "Pontianak" #~ msgstr "Pontianak" #~ msgid "Pyongyang" #~ msgstr "Pyöngyang" #~ msgid "Qatar" #~ msgstr "Quatar" #~ msgid "Qyzylorda" #~ msgstr "Qyzylorda" #~ msgid "Rangoon" #~ msgstr "Rangun" #~ msgid "Riyadh" #~ msgstr "Riyad" #~ msgid "Sakhalin" #~ msgstr "Sachalin" #~ msgid "Samarkand" #~ msgstr "Samarkand" #~ msgid "Seoul" #~ msgstr "Seoul" #~ msgid "Shanghai" #~ msgstr "Shanghai" #~ msgid "Singapore" #~ msgstr "Chinesisch (Singapore)" #~ msgid "Taipei" #~ msgstr "Taipei" #~ msgid "Tashkent" #~ msgstr "Tashkent" #~ msgid "Tbilisi" #~ msgstr "Tbilisi" #~ msgid "Tehran" #~ msgstr "Teheran" #~ msgid "Thimphu" #~ msgstr "Thimphu" #~ msgid "Tokyo" #~ msgstr "Tokyo" #~ msgid "Ulaanbaatar" #~ msgstr "Ulaanbaatar" #~ msgid "Urumqi" #~ msgstr "Urumqi" #~ msgid "Vientiane" #~ msgstr "Vientiane" #~ msgid "Vladivostok" #~ msgstr "Vladivostok" #~ msgid "Yakutsk" #~ msgstr "Yakutsk" #~ msgid "Yekaterinburg" #~ msgstr "Yekaterinburg" #~ msgid "Yerevan" #~ msgstr "Eriwan" #~ msgid "Azores" #~ msgstr "Azoren" #~ msgid "Bermuda" #~ msgstr "Bermuda" #~ msgid "Canary" #~ msgstr "Kanarische Inseln" #~ msgid "Cape Verde" #~ msgstr "Capverden" #~ msgid "Faroe" #~ msgstr "Faroe" #~ msgid "Madeira" #~ msgstr "Madeira" #~ msgid "Reykjavik" #~ msgstr "Reykjavik" #~ msgid "South Georgia" #~ msgstr "South Georgia" #~ msgid "St Helena" #~ msgstr "St Helena" #~ msgid "Stanley" #~ msgstr "Stanley" #~ msgid "Adelaide" #~ msgstr "Adelaide" #~ msgid "Brisbane" #~ msgstr "Bisbane" #~ msgid "Broken Hill" #~ msgstr "Broken Hill" #~ msgid "Currie" #~ msgstr "Currie" #~ msgid "Darwin" #~ msgstr "Darwin" #~ msgid "Eucla" #~ msgstr "Eucla" #~ msgid "Hobart" #~ msgstr "Hobart" #~ msgid "Lindeman" #~ msgstr "Lindeman" #~ msgid "Lord Howe" #~ msgstr "Lord Howe" #~ msgid "Melbourne" #~ msgstr "Melbourne" #~ msgid "Perth" #~ msgstr "Perth" #~ msgid "Sydney" #~ msgstr "Sydney" #~ msgid "Amsterdam" #~ msgstr "Amsterdam" #~ msgid "Andorra" #~ msgstr "Andorra" #~ msgid "Athens" #~ msgstr "Athen" #~ msgid "Belgrade" #~ msgstr "Belgrad" #~ msgid "Berlin" #~ msgstr "Berlin" #~ msgid "Bratislava" #~ msgstr "Bratislava" #~ msgid "Brussels" #~ msgstr "Brüssel" #~ msgid "Bucharest" #~ msgstr "Bukarest" #~ msgid "Budapest" #~ msgstr "Budapest" #~ msgid "Chisinau" #~ msgstr "Chisinau" #~ msgid "Copenhagen" #~ msgstr "Kopenhagen" #~ msgid "Dublin" #~ msgstr "Dublin" #~ msgid "Gibraltar" #~ msgstr "Gibraltar" #~ msgid "Guernsey" #~ msgstr "Guernsey" #~ msgid "Helsinki" #~ msgstr "Helsinki" #~ msgid "Isle of Man" #~ msgstr "Isle of Man" #~ msgid "Istanbul" #~ msgstr "Istanbul" #~ msgid "Jersey" #~ msgstr "Jersey" #~ msgid "Kaliningrad" #~ msgstr "Kaliningrad" #~ msgid "Kiev" #~ msgstr "Kiew" #~ msgid "Lisbon" #~ msgstr "Lissabon" #~ msgid "Ljubljana" #~ msgstr "Ljubljana" #~ msgid "London" #~ msgstr "London" #~ msgid "Luxembourg" #~ msgstr "Luxembourg" #~ msgid "Madrid" #~ msgstr "Madrid" #~ msgid "Malta" #~ msgstr "Malta" #~ msgid "Mariehamn" #~ msgstr "Mariehamn" #~ msgid "Minsk" #~ msgstr "Minsk" #~ msgid "Monaco" #~ msgstr "Monaco" #~ msgid "Moscow" #~ msgstr "Moskau" #~ msgid "Oslo" #~ msgstr "Oslo" #~ msgid "Paris" #~ msgstr "Paris" #~ msgid "Podgorica" #~ msgstr "Podgorica" #~ msgid "Prague" #~ msgstr "Prag" #~ msgid "Riga" #~ msgstr "Riga" #~ msgid "Rome" #~ msgstr "Rom" #~ msgid "Samara" #~ msgstr "Samara" #~ msgid "San Marino" #~ msgstr "San Marino" #~ msgid "Sarajevo" #~ msgstr "Sarajevo" #~ msgid "Simferopol" #~ msgstr "Simferopol" #~ msgid "Skopje" #~ msgstr "Skopje" #~ msgid "Sofia" #~ msgstr "Sofia" #~ msgid "Stockholm" #~ msgstr "Stockholm" #~ msgid "Tallinn" #~ msgstr "Tallinn" #~ msgid "Tirane" #~ msgstr "Tirane" #~ msgid "Uzhgorod" #~ msgstr "Uzhgorod" #~ msgid "Vaduz" #~ msgstr "Vaduz" #~ msgid "Vatican" #~ msgstr "Vatikan" #~ msgid "Vienna" #~ msgstr "Wien" #~ msgid "Vilnius" #~ msgstr "Vilnius" #~ msgid "Volgograd" #~ msgstr "Volgograd" #~ msgid "Warsaw" #~ msgstr "Warschau" #~ msgid "Zagreb" #~ msgstr "Zagreb" #~ msgid "Zaporozhye" #~ msgstr "Zaporozhye" #~ msgid "Zurich" #~ msgstr "Zürich" #~ msgid "Antananarivo" #~ msgstr "Antananarivo" #~ msgid "Chagos" #~ msgstr "Changos" #~ msgid "Christmas" #~ msgstr "Weihnachten" #~ msgid "Cocos" #~ msgstr "Cocos" #~ msgid "Comoro" #~ msgstr "Komoren" #~ msgid "Kerguelen" #~ msgstr "Kerguelen" #~ msgid "Mahe" #~ msgstr "Mahe" #~ msgid "Maldives" #~ msgstr "Malediven" #~ msgid "Mauritius" #~ msgstr "Mauritius" #~ msgid "Mayotte" #~ msgstr "Mayotte" #~ msgid "Reunion" #~ msgstr "Reunion" #~ msgid "Apia" #~ msgstr "Apia" #~ msgid "Auckland" #~ msgstr "Auckland" #~ msgid "Chatham" #~ msgstr "Chatham" #~ msgid "Efate" #~ msgstr "Efate" #~ msgid "Enderbury" #~ msgstr "Enderbury" #~ msgid "Fakaofo" #~ msgstr "Fakaofo" #~ msgid "Fiji" #~ msgstr "Fiji" #~ msgid "Funafuti" #~ msgstr "Funafuti" #~ msgid "Galapagos" #~ msgstr "Galapagos" #~ msgid "Gambier" #~ msgstr "Gambier" #~ msgid "Guadalcanal" #~ msgstr "Guadalcanal" #~ msgid "Guam" #~ msgstr "Guam" #~ msgid "Honolulu" #~ msgstr "Honolulu" #~ msgid "Johnston" #~ msgstr "Johnston" #~ msgid "Kiritimati" #~ msgstr "Kiritimati" #~ msgid "Kosrae" #~ msgstr "Kosrae" #~ msgid "Kwajalein" #~ msgstr "Kwajalein" #~ msgid "Majuro" #~ msgstr "Majuro" #~ msgid "Marquesas" #~ msgstr "Marquesas" #~ msgid "Midway" #~ msgstr "Midway" #~ msgid "Nauru" #~ msgstr "Nauru" #~ msgid "Niue" #~ msgstr "Niue" #~ msgid "Norfolk" #~ msgstr "Norfolk" #~ msgid "Noumea" #~ msgstr "Noumea" #~ msgid "Pago Pago" #~ msgstr "Pago Pago" #~ msgid "Palau" #~ msgstr "Palau" #~ msgid "Pitcairn" #~ msgstr "Pitcairn" #~ msgid "Ponape" #~ msgstr "Ponape" #~ msgid "Port Moresby" #~ msgstr "Port Moresby" #~ msgid "Rarotonga" #~ msgstr "Rarotonga" #~ msgid "Saipan" #~ msgstr "Saipan" #~ msgid "Tahiti" #~ msgstr "Tahiti" #~ msgid "Tarawa" #~ msgstr "Tarawa" #~ msgid "Tongatapu" #~ msgstr "Tongatapu" #~ msgid "Truk" #~ msgstr "Truk" #~ msgid "Wake" #~ msgstr "Wake" #~ msgid "Wallis" #~ msgstr "Wallis" #~ msgid "Time zones" #~ msgstr "Zeitzonen" #~ msgid "loading" #~ msgstr "lade" #~ msgid "List" #~ msgstr "Liste" #~ msgid "Hide/Unhide Menu" #~ msgstr "Menü ein-/ausblenden" #~ msgid "graph" #~ msgstr "Diagramm" #~ msgid "tree" #~ msgstr "Baum" #~ msgid "device" #~ msgstr "Zielsystem" #~ msgid "graph_template" #~ msgstr "Diagramm Schablone" #, fuzzy #~ msgid "User invalid" #~ msgstr "Benutzername" #, fuzzy #~ msgid "Login successful" #~ msgstr "Erfolgreich gespeichert." #~ msgid "Password change successful" #~ msgstr "Passwort erfolgreich gewechselt" #~ msgid "Version 2" #~ msgstr "Version 2" #~ msgid "Version 3" #~ msgstr "Version 3" #~ msgid "User Must Change Password at Next Login" #~ msgstr "Benutzer muss Kennwort bei der nächsten Anmeldung ändern." #~ msgid "Allow this User to Keep Custom Graph Settings" #~ msgstr "Diesem Benutzer eigenständige Diagramm-Einstellungen zulassen" #~ msgid "Choose the associated field from the |arg1:| field." #~ msgstr "Wählen Sie das zugeordnete Feld aus den |arg1:| Feldern." #~ msgid "Update RRD File" #~ msgstr "RRD Datei aktualisieren" #~ msgid "Index Value Changed" #~ msgstr "Anzahl der Indices geändert" #~ msgid "alpha" #~ msgstr "alpha" #~ msgid "natural" #~ msgstr "Natürlich" #~ msgid "Additional details relative this template." #~ msgstr "Weitere Details zu dieser Schablone." #~ msgid "A useful icon to use to associate with this Device Template." #~ msgstr "Ein hilfreiches Sinnbild für dieses Endgerät-Template" #~ msgid "Change Data Source Template" #~ msgstr "Ändere Daten Schablone" #~ msgid "Convert to Data Source Template" #~ msgstr "In Daten-Schablone umwandeln" #~ msgid "Change Host" #~ msgstr "Ändere Zielsystem" #~ msgid "Choose a name for this data source." #~ msgstr "Wählen Sie einen Namen für die Datenquelle" #~ msgid "The full path to the RRD file." #~ msgstr "Der ganze Pfad zur RRD-Datei." #~ msgid "Associated RRA's" #~ msgstr "Zugeordnete RRA's" #~ msgid "Data Source Template Active" #~ msgstr "Datenschablone aktiv" #~ msgid "" #~ "Choose unique name to represent this piece of data inside of the rrd file." #~ msgstr "" #~ "Wählen Sie einen eindeutigen Namen um diese Daten in der RRD Datei zu " #~ "speichern." #~ msgid "Available for RRDTool 1.2.x and above" #~ msgstr "Verfügbar für RRDTool 1.2.x und höher" #~ msgid "(Usually 2x300=600)" #~ msgstr "(Normalerweise 2x300=600)" #~ msgid "Selected Data Source Template" #~ msgstr "Ausgewählte Daten-Schablone" #~ msgid "Choose the device that this graph belongs to." #~ msgstr "" #~ "Wählen Sie das Zielsystem, welches dieser Graph zugeordnet werden soll." #~ msgid "Change Availability Options" #~ msgstr "Verfügbarkeits-Optionen ändern" #~ msgid "Change Poller" #~ msgstr "Poller ändern" #~ msgid "Change Site" #~ msgstr "Ändere Standort" #~ msgid "%s Threads" #~ msgstr "%s Threads" #~ msgid "Version 1" #~ msgstr "Version 1" #~ msgid "Ping or SNMP" #~ msgstr "Ping oder SNMP" #~ msgid "Give this device a meaningful description." #~ msgstr "Geben Sie diesem Zielsystem eine verständliche Beschreibung." #~ msgid "Choose which poller will be the polling of this device." #~ msgstr "Wählen Sie den für dieses Zielsystem zuständigen Poller." #~ msgid "Enter notes to this device." #~ msgstr "Geben Sie bitte einen Wert für Notizen zu diesem Zielsystem ein." #~ msgid "Check this box to disable all checks for this device." #~ msgstr "Selektieren Sie dieses Kästchen um alle Prüfungen zu deaktivieren." #~ msgid "Enable Template Propagation" #~ msgstr "Aktiviere Schablonen Vererbung" #~ msgid "" #~ "Check this box to maintain Availability and SNMP settings at the Device " #~ "Template." #~ msgstr "" #~ "Wählen Sie diese Option um Verfügbarkeits- und SNMP-Einstellungen auf " #~ "Ebene der Zielgeräte Schablone zu steuern." #~ msgid "General Device Template Options" #~ msgstr "Allgemeine Optionen für Zielsystem Schablonen" #~ msgid "A useful name for this device template." #~ msgstr "Ein hilfreicher Name für dieses Endgerät-Template" #~ msgid "Template Based Availability and SNMP" #~ msgstr "Schablonen-basierte Verfügbarkeits und SNMP Option" #~ msgid "" #~ "Check this box to have the Device Template control the defaults for " #~ "Availability and SNMP Settings." #~ msgstr "" #~ "Auswählen, wenn die Zielgeräte Schablone die Standardwerte für " #~ "Verfügbarkeit und SNMP steuern soll." #~ msgid "Allow Override" #~ msgstr "Erlaube Überschreiben" #~ msgid "" #~ "Check this box to have the allow the user to override the Device Template " #~ "Availability and SNMP Settings." #~ msgstr "" #~ "Auswählen, wenn die Zielgeräte Schablone die Standardwerte für " #~ "Verfügbarkeit und SNMP steuern soll." #~ msgid "Resize Graphs" #~ msgstr "Diagramm Größe ändern" #~ msgid "Enable Graph Export" #~ msgstr "Diagramm Export aktivieren" #~ msgid "Disable Graph Export" #~ msgstr "Diagramm Export deaktivieren" #~ msgid "Custom Legend" #~ msgstr "Angepasste Legende" #~ msgid "Accept global colortags only, if any" #~ msgstr "Benutzer nur globale Farbangaben, falls definiert" #~ msgid "Accept user colortags only, if any" #~ msgstr "Benutze nur Benutzer-definierte Farbangaben, falls definiert" #~ msgid "Accept graph template colortags only, if any" #~ msgstr "Benutze nur Farbangaben der Diagramm Schablone, wenn definiert" #~ msgid "Accept user colortags, template next, global last" #~ msgstr "" #~ "Benutze Farbangaben auf Benutzerebene, dann der Diagramm Schablone, " #~ "globale zuletzt" #~ msgid "Accept template colortags, user next, global last" #~ msgstr "" #~ "Benutze Farbangaben der Diagramm Schablone, dann auf Benutzerebene, " #~ "globale zuletzt" #~ msgid "30 Min" #~ msgstr "30 Minuten" #~ msgid "1 Week" #~ msgstr "1 Woche" #~ msgid "1 Month" #~ msgstr "1 Monat" #~ msgid "string" #~ msgstr "Zeichenkette" #~ msgid "Right Axis" #~ msgstr "Rechte Achse" #~ msgid "Right Axis Label" #~ msgstr "Label für rechte Achse" #~ msgid "Right Axis Format" #~ msgstr "Format für rechte Achse" #~ msgid "Height" #~ msgstr "Höhe" #~ msgid "pixels" #~ msgstr "Punkte" #~ msgid "Only Graph" #~ msgstr "Nur Diagramm" #~ msgid "Full Size Mode" #~ msgstr "Vollbild Modus" #~ msgid "--alt-autoscale to scale to the absolute minimum and maximum" #~ msgstr "" #~ "--alt-autoscale für Skalierung zwischen Absolutwerten für Minimum und " #~ "Maximum" #~ msgid "" #~ "--alt-autoscale-max to scale to the maximum value, using a given lower " #~ "limit" #~ msgstr "--alt-autoscale-max benutzt untere Grenze" #~ msgid "" #~ "--alt-autoscale-min to scale to the minimum value, using a given upper " #~ "limit" #~ msgstr "--alt-autoscale-min benutzt obere Grenze" #~ msgid "" #~ "--alt-autoscale (with limits) to scale using both lower and upper limits " #~ "(rrdtool default)" #~ msgstr "--alt-autoscale (mit Grenzen, rrdtool Standard)" #~ msgid "(ignoring given limits)" #~ msgstr "(ignoriert die angegebenen Grenzen)" #~ msgid "(accepting a lower limit)" #~ msgstr "(benutzt eine untere Grenze)" #~ msgid "(accepting an upper limit, requires rrdtool 1.2.x)" #~ msgstr "(benutzt eine untere Grenze, benötigt mindestens rrdtool 1.2.x)" #~ msgid "(accepting both limits, rrdtool default)" #~ msgstr "(benutzt beide Grenzen, rrdtool Standard)" #~ msgid "Upper Limit" #~ msgstr "Graph: Oberes Limit" #~ msgid "Lower Limit" #~ msgstr "Graph: Unteres Limit" #~ msgid "The minimum vertical value for the rrd graph." #~ msgstr "Der vertikale Minimal-Wert des RRD-Graphen" #~ msgid "Alternative Y Grid" #~ msgstr "alternatives Y Gitter" #~ msgid "Unit Exponent Value" #~ msgstr "Wert des Exponenten der Masseinheit" #~ msgid "Unit Length" #~ msgstr "Länge der Masseinheit" #~ msgid "Background" #~ msgstr "Hintergrund" #~ msgid "Color tag of the background." #~ msgstr "Farbauszeichnung für den Hintergrund." #~ msgid "Canvas" #~ msgstr "Kanvas" #~ msgid "Color tag of the background of the actual graph." #~ msgstr "Farbauszeichnung für den Hintergrund des aktuellen Diagrammes." #~ msgid "ShadeA" #~ msgstr "ShadeA" #~ msgid "Color tag of the left and top border." #~ msgstr "Farbauszeichnung für linken und oberen Rand." #~ msgid "ShadeB" #~ msgstr "ShadeB" #~ msgid "Color tag of the right and bottom border." #~ msgstr "Farbauszeichnung für rechten und unteren Rand." #~ msgid "Grid" #~ msgstr "Gitter" #~ msgid "Color tag of the grid." #~ msgstr "Farbauszeichnung für das Gitter." #~ msgid "Color tag of the major grid." #~ msgstr "Farbauszeichnung für das Haupt-Gitter." #~ msgid "Font" #~ msgstr "Schrifttyp" #~ msgid "Color tag of the font." #~ msgstr "Farbauszeichnung für Schriftarten." #~ msgid "Axis" #~ msgstr "Achse" #~ msgid "Color tag of the axis." #~ msgstr "Farbauszeichnung für Achsen." #~ msgid "Frame" #~ msgstr "Rahmen" #~ msgid "Color tag of the frame." #~ msgstr "Farbauszeichnung für Rahmen." #~ msgid "Arrow" #~ msgstr "Pfeil" #~ msgid "Color tag of the arrow." #~ msgstr "Farbauszeichnung für Pfeile." #~ msgid "Legend Position" #~ msgstr "Position der Legende" #~ msgid "position" #~ msgstr "Position" #~ msgid "direction" #~ msgstr "Richtung" #~ msgid "Grid Dash" #~ msgstr "Punktierung des Gitters" #~ msgid "on:off" #~ msgstr "ein:aus" #~ msgid "By default the grid is drawn in a 1 on, 1 off pattern." #~ msgstr "Standardmäßig wird das Gitter mit eine 1:1 Muster gebildet." #~ msgid "Border" #~ msgstr "Rahmen" #~ msgid "Font Render Mode" #~ msgstr "Render Modus dieses Schrifttypes" #~ msgid "mode" #~ msgstr "Modus" #~ msgid "Graph Render Mode" #~ msgstr "Render Modus für Diagramme" #~ msgid "Pango Markup" #~ msgstr "Pango Auszeichnung" #~ msgid "Slope Mode" #~ msgstr "Glättungs-Modus" #~ msgid "Interlaced" #~ msgstr "Intervall" #~ msgid "Base Value" #~ msgstr "Basiswert" #~ msgid "Watermark" #~ msgstr "Wasserzeichen" #~ msgid "" #~ "Adds the given string as a watermark, horizontally centered, at the " #~ "bottom of the graph." #~ msgstr "" #~ "Fügt die Zeichenkette als Wasserzeichen an der Unterseite des Diagramms " #~ "hinzu, horizontal zentriert" #~ msgid "Allow Graph Export" #~ msgstr "Diagramm Export zulassen" #~ msgid "" #~ "Choose whether this graph will be included in the static html/png export " #~ "if you use cacti's export feature." #~ msgstr "" #~ "Wählen Sie, ob dieses Diagramm im statischen HTML/PNG Export integriert " #~ "werden soll, wenn Sie Cacti's Export-Funktion nutzen." #~ msgid "Note: " #~ msgstr "Mitteilung:" #~ msgid "A CDEF (math) function to apply to this item on the graph." #~ msgstr "" #~ "Eine CDEF (mathematische) Funktion, die auf dieses Diagramm-Element " #~ "angewendet wird" #~ msgid "All subsequent legend line(s) will be aligned as given here." #~ msgstr "" #~ "Alle folgenden Legendezeilen werden so ausgerichtet, wie hier definiert." #~ msgid "A <HR> on this legend line will obsolete this setting!" #~ msgstr "" #~ "Ein <HR> auf dieser Legendenzeile macht diese Einstellung " #~ "überflüssig!" #~ msgid "Node" #~ msgstr "Knoten" #~ msgid "Overwrite events as needed" #~ msgstr "Überschreibe Ereignisse nach Bedarf" #~ msgid "Overwrite events older than the maximum days" #~ msgstr "Überschreibe Ereignisse, die älter als die maximale Tagesanzahl ist" #~ msgid "Stop logging if maximum log size is exceeded" #~ msgstr "" #~ "Nicht mehr loggen falls die maximale Log-Datei Größe überschritten wurde" #~ msgid "None (Not Recommended)" #~ msgstr "Keine (nicht ratsam)" #~ msgid "Developer Debug" #~ msgstr "Entwickler Debug" #~ msgid "Notice " #~ msgstr "Mitteilung" #~ msgid "General Poller Options" #~ msgstr "Allgemeine Poller Optionen" #~ msgid "Give this poller a meaningful description." #~ msgstr "Geben Sie diesem Poller eine verständliche Beschreibung." #~ msgid "Fully qualified hostname of the poller device." #~ msgstr "Voll-qualifizierter Name des Poller-Systems." #~ msgid "Check this box if you wish for this poller to be disabled." #~ msgstr "" #~ "Selektieren Sie dieses Kästchen, wenn der Poller deaktiviert werden soll." #~ msgid "All Data Sources (Don't Include Duplicates)" #~ msgstr "Alle datenquellen (Ohne Duplikate)" #~ msgid "Count of All Data Sources (Don't Include Duplicates)" #~ msgstr "Anzahl aller Datenquellen (Keine Duplikate)" #~ msgid "Count of All Similar Data Sources (Don't Include Duplicates)" #~ msgstr "Anzahl aller gleichartigen Datenquellen (Keine Duplikate)" #~ msgid "Graph: Shift End Time" #~ msgstr "Zeitstempel-Ende des Graphen" #~ msgid "Minute" #~ msgstr "Minute" #~ msgid "Hour" #~ msgstr "1 Stunde" #~ msgid "Day" #~ msgstr "1 Tag" #~ msgid "Week" #~ msgstr "1 Woche" #~ msgid "Year" #~ msgstr "1 Jahr" #~ msgid "A useful name for this X-Axis Preset." #~ msgstr "Ein hilfreicher Name für diesen A-Achsen Einstellung." #~ msgid "Item Name" #~ msgstr "Element Name" #~ msgid "A format string for the label." #~ msgstr "Eine Formatangabe für das Label." #~ msgid "The primary name for the site." #~ msgstr "Name der Lokation." #~ msgid "Additional address information for the site." #~ msgstr "Zusätzliche Adressdetails für diese Lokation." #~ msgid "The city or locality for the site." #~ msgstr "Stadt/Ort der Lokation." #~ msgid "The state for the site." #~ msgstr "Bundesland der Lokation." #~ msgid "The postal or zip code for the site." #~ msgstr "Postleitzahl der Lokation." #~ msgid "The country for the site." #~ msgstr "Land der Lokation." #~ msgid "Additional area use for random notes related to this site." #~ msgstr "Bereich für zusätzliche Notizen zu dieser Lokation." #~ msgid "Import RRA Settings" #~ msgstr "Importieren von RRA Einstellungen" #~ msgid "" #~ "Choose whether to allow Cacti to import custom RRA settings from imported " #~ "templates or whether to use the defaults for this installation." #~ msgstr "" #~ "Wählen Sie bitte, ob Cacti RRA Einstellungen beim Importieren " #~ "überschreiben darf oder die lokalen Standardeinstellungen berücksichtigt " #~ "werden sollen." #~ msgid "Use custom RRA settings from the template" #~ msgstr "Benutze spezifische RRA einstellungen aus dieser Schablone" #, fuzzy #~ msgid "" #~ "Cacti is licensed under the GNU General Public License v2, you must agree " #~ "to its provisions before continuing:" #~ msgstr "" #~ "Cacti ist unter der GNU General Public License lizensiert. Sie müssen " #~ "zustimmen, bevor Sie fortsetzen können:" #~ msgid "New Install" #~ msgstr "Neue Installation" #, fuzzy #~ msgid "Complete" #~ msgstr "Kommentar" #~ msgid "Upgrade results:" #~ msgstr "Ergebnisse der Hochrüstung" #~ msgid "Finish Install" #~ msgstr "Installation abgeschlossen" #, fuzzy #~ msgid "Installation" #~ msgstr "Installationsanleitung für Cacti" #~ msgid "Turn" #~ msgstr "Umdrehen" #~ msgid "Debug Mode" #~ msgstr "Graph Debug Modus" #~ msgid "Edit Template" #~ msgstr "Ändern Schablone" #~ msgid "Edit Host" #~ msgstr "Gerät bearbeiten" #~ msgid "RRD Info Mode" #~ msgstr "RRD Datei Informations Modus" #~ msgid "Edit Data Source Template" #~ msgstr "Ändern Daten Schablone" #, fuzzy #~ msgid "Data Source Management" #~ msgstr "Name der Datenquelle" #, fuzzy #~ msgid "Graph List View" #~ msgstr "Listen Ansicht" #~ msgid "Abidjan" #~ msgstr "Abidjan" #~ msgid "Banjul" #~ msgstr "Banjul" #~ msgid "Tell City" #~ msgstr "Tell City" #~ msgid "Miquelon" #~ msgstr "Miquelon" #~ msgid "Palmer" #~ msgstr "Palmer" #~ msgid "Local Graph Id" #~ msgstr "Lokale Diagramm Id" #~ msgid "Host Id" #~ msgstr "Id des Zielsystemes" #~ msgid "Graph Template Id" #~ msgstr "Id der Diagramm Schablone" #~ msgid "Query Id" #~ msgstr "Index der Datenabfrage" #~ msgid "Sort Field" #~ msgstr "Sortierfeld" #~ msgid "#" #~ msgstr "#" #~ msgid "Reindex Method" #~ msgstr "Art der Re-Indizierung" #~ msgid "Known SNMP Query Types: (id, name)" #~ msgstr "Bekannte SNMP-Abfrage Typen: (id, name)" #~ msgid "Valid Device Templates: (id, name)" #~ msgstr "Gültige Endgeräte-Templates: (id, name)" #~ msgid "Known communities are: (community)" #~ msgstr "Bekannte Communities sind: (community)" #~ msgid "ERROR: Invalid --snmp-field-spec (found: %s) given" #~ msgstr "FEHLER: Invalide --snmp-field-spec (gefunden: %s) angegeben" #~ msgid "ERROR: No cached SNMP values found for this SNMP Query" #~ msgstr "FEHLER: Keine gecacheten SNMP-Werte gefunden für diese SNMP-Abfrage" #~ msgid "ERROR: No SNMP field names found for this SNMP Query" #~ msgstr "FEHLER: Keine SNMP Feldnamen für diese SNMP-Abfrage gefunden" #~ msgid "" #~ "This data query returned 0 rows, perhaps there was a problem executing " #~ "this data query." #~ msgstr "" #~ "Die Datenabfrage gab 0 Zeilen zurück. Es gab vielleicht ein Problem " #~ "während der Ausführung dieser Datenabfrage." #~ msgid "Known values for device-id" #~ msgstr "Bekannte Werte für Zielsystem-ID" #~ msgid "Known SNMP Queries:(id, name)" #~ msgstr "Bekannte SNMP Abfragen: (ID, Name)" #~ msgid "Known Input Fields: (name, default, description)" #~ msgstr "Bekannte Eingabefelder: (name, default, description)" #~ msgid "Known Graph Templates: (id, name)" #~ msgstr "Bekannte Graph-Schablonen: (id, name)" #~ msgid "Known Hosts: (id, hostname, template, description)" #~ msgstr "Bekannte Geräte: (id, hostname, template, description)" #~ msgid "ERROR: Invalid realm id (%s)" #~ msgstr "FEHLER: Ungültige Realm Id (%s)" #~ msgid "ERROR: Invalid user id (%s)" #~ msgstr "FEHLER: Ungültiges Benutzer Id (%s)" #~ msgid "ERROR: Invalid item type (%s)" #~ msgstr "FEHLER: Ungültiger Elementtyp (%s)" #~ msgid "ERROR: Invalid item id (%s)" #~ msgstr "FEHLER: Ungültiges Id des Elementes (%s)" #~ msgid "Known Trees: (id, sort method, name)" #~ msgstr "Bekannte Bäume: (id, Sortiermethode, name)" #~ msgid "Known Tree Nodes: (type, id, parentid, text)" #~ msgstr "Bekannte Baum Elemente: (type, id, übergeordnet, text)" #~ msgid "Known RRAs: (id, steps, rows, timespan, name)" #~ msgstr "Bekannte RRAs: (id, steps, rows, timespan, name)" #~ msgid "ERROR: Id must be integer (%s)" #~ msgstr "FEHLER: Id muss ganzzahlig sein (%s)" #~ msgid "ERROR: This device id does not exist (%s)" #~ msgstr "FEHLER: Zielsystem existiert nicht (%s)" #~ msgid "ERROR: This site id does not exist (%s)" #~ msgstr "FEHLER: Diese Lokation existiert nicht (%s)" #~ msgid "ERROR: Poller Id must be integer (%s)" #~ msgstr "FEHLER: Id des Pollers muss ganzzahlig sein (%s)" #~ msgid "ERROR: This poller id does not exist (%s)" #~ msgstr "FEHLER: Diese Poller Id existiert nicht (%s)" #~ msgid "ERROR: Device Template Id must be integer (%s)" #~ msgstr "FEHLER: Kennung für Zielsystemschablone muss ganzzahlig sein (%s)" #~ msgid "ERROR: This Device template id does not exist (%s)" #~ msgstr "FEHLER: Diese Zielsystem Schablone existiert nicht (%s)" #~ msgid "ERROR: Invalid SNMP Version: (%s)" #~ msgstr "Fehler: Ungültige SNMP Version: (%s)" #~ msgid "ERROR: Invalid SNMP Authentication Protocol: (%s)" #~ msgstr "FEHLER: Falsches SNMP Authentisierungs-Protokoll: (%s)" #~ msgid "ERROR: Invalid SNMP Privacy Protocol: (%s)" #~ msgstr "FEHLER: Falsches SNMP Privacy-Protokoll: (%s)" #~ msgid "ERROR: Invalid SNMP Port: (%s)" #~ msgstr "FEHLER: Falscher SNMP-Port: (%s)" #~ msgid "ERROR: Invalid SNMP Timeout: (%s). Valid values are from 1 to 20000" #~ msgstr "" #~ "FEHLER: Falsches SNMP-Zeitfenster: (%s). Mögliche Werte sind 1 bis 20000" #~ msgid "ERROR: Invalid Availability Parameter: (%s)" #~ msgstr "FEHLER: Falscher Verfügbarkeitsparameter: (%s)" #~ msgid "ERROR: Invalid Ping Method: (%s)" #~ msgstr "FEHLER: Falsche PING-Methode: (%s)" #~ msgid "ERROR: Invalid Ping Port: (%s)" #~ msgstr "FEHLER: Falscher PING-Port: (%s)" #~ msgid "ERROR: Invalid Ping Timeout: (%s)" #~ msgstr "FEHLER: Falsches PING-Zeitfenster: (%s)" #~ msgid "ERROR: Invalid Ping Retries: (%s)" #~ msgstr "FEHLER: Falsche Angabe von PING-Versuchen: (%s)" #~ msgid "ERROR: Invalid Max OIDs: (%s)" #~ msgstr "FEHLER: Falsche Angabe der maximalen OIDs: (%s)" #~ msgid "ERROR: Invalid Device Threads: (%s)" #~ msgstr "FEHLER: Ungültige Anzahl der Threads für Zielsysteme: (%s)" #~ msgid "ERROR: Invalid disabled flag (%s)" #~ msgstr "FEHLER: Ungültiges Kennzeichen für Parameter \"disable\" (%s)" #~ msgid "ERROR: This SNMP query id does not exist (%s)" #~ msgstr "FEHLER: SNMP Abfrage existiert nicht (%s)" #~ msgid "ERROR: You must supply a valid reindex method for all devices!" #~ msgstr "" #~ "FEHLER: Sie müssen eine gültige Art der Re-Indizierung für alle Endgeräte " #~ "wählen!" #~ msgid "ERROR: For graph type of 'ds' you must supply more options" #~ msgstr "" #~ "FEHLER: Für den Diagramm-Typen 'ds' müssen mehr Optionen angegeben werden" #~ msgid "ERROR: Device id must be integer (%s)" #~ msgstr "FEHLER: Kennung des Zielsystemes muss ganzzahlig sein (%s)" #~ msgid "ERROR: This Host id does not exist (%s)" #~ msgstr "Fejler: Dieses Zielsystem existiert nicht (%s)" #~ msgid "ERROR: Graph template id must be integer (%s)" #~ msgstr "FEHLER: Diagramm Schablonen Id muss ganzzahlig sein (%s)" #~ msgid "ERROR: SNMP query type id must be integer (%s)" #~ msgstr "FEHLER: SNMP Abfragetyp muss ganzzahlig sein (%s)" #~ msgid "" #~ "ERROR: This SNMP field name does not exist (%s) for SNMP query %s, device " #~ "id %s" #~ msgstr "" #~ "FEHLER: Keine SNMP Feldnamen (%s) für diese SNMP-Abfrage (%s) gefunden, " #~ "Zielsystem (%s)" #~ msgid "ERROR: Unknown input-field (%s)" #~ msgstr "FEHLER: Unbekanntes Eingabe-Feld (%s)" #~ msgid "Try php -q graph_list.php --list-input-fields" #~ msgstr "Versuchen Sie bitte php -q graph_list.php --list-input-fields" #~ msgid "ERROR: User id must be integer (%s)" #~ msgstr "FEHLER: Die Benutzerkennung muss ganzzahlig sein (%s)" #~ msgid "ERROR: This user id does not exist (%s)" #~ msgstr "FEHLER: Diese Benutzerkennung existiert nicht (%s)" #~ msgid "ERROR: Invalid Item Type: (%s)" #~ msgstr "FEHLER: Ungültiger Element-Typ: (%s)" #~ msgid "ERROR: Item id must be integer (%s)" #~ msgstr "FEHLER: Element Id muss ganzzahlig sein (%s)" #~ msgid "ERROR: Invalid Graph item id (%s)" #~ msgstr "FEHLER: Ungültige Id für Diagramm Element (%s)" #~ msgid "ERROR: Invalid Tree item id (%s)" #~ msgstr "FEHLER: Ungültige Id des Baum-Elementes: (%s)" #~ msgid "ERROR: Invalid device item id (%s)" #~ msgstr "FEHLER: Ungültige Id des Zielsystem-Elementes (%s)" #~ msgid "ERROR: Invalid Graph Template item id (%s)" #~ msgstr "FEHLER: Ungültige Id für Diagramm Schablone (%s)" #~ msgid "ERROR: Tree id must be integer (%s)" #~ msgstr "FEHLER: Id des Diagramm-Baumes muss ganzzahlig sein (%s)" #~ msgid "ERROR: This tree id does not exist (%s)" #~ msgstr "FEHLER: Dieser Diagramm-Baum existiert nicht (%s)" #~ msgid "ERROR: Invalid Sort Type: (%s)" #~ msgstr "FEHLER: Ungültiger Sortiertyp: (%s)" #~ msgid "ERROR: Tree item id must be integer (%s)" #~ msgstr "FEHLER: Id des Diagramm-Baum-Elementes muss ganzzahlig sein (%s)" #~ msgid "ERROR: This tree item id does not exist (%s)" #~ msgstr "FEHLER: Dieser Eintrag im Diagramm-Baum existiert nicht (%s)" #~ msgid "ERROR: Graph id must be integer (%s)" #~ msgstr "FEHLER: Diagramm Id muss ganzzahlig sein (%s)" #~ msgid "ERROR: This graph id does not exist (%s)" #~ msgstr "FEHLER: Diagramm existiert nicht (%s)" #~ msgid "ERROR: RRA id must be integer (%s)" #~ msgstr "FEHLER: Id des RRA muss ganzzahlig sein (%s)" #~ msgid "ERROR: This rra id does not exist (%s)" #~ msgstr "FEHLER: Dieses RRA existiert nicht (%s)" #~ msgid "ERROR: Parent node must be integer (%s)" #~ msgstr "FEHLER: Id des übergeordneten Knoten muss ganzzahlig sein (%s)" #~ msgid "ERROR: This parent node does not exist (%s)" #~ msgstr "FEHLER: Dieser übergeornete Knoten existiert nicht (%s)" #~ msgid "Running data query" #~ msgstr "Datenabfrage hinzufügen:" #~ msgid "Found type" #~ msgstr "Gefundener Typ" #~ msgid "Unknown type" #~ msgstr "Unbekannter Typ" #~ msgid "Error parsing XML file into an array." #~ msgstr "Fehler beim Einlesen der XML-Datei in ein Array" #~ msgid "XML file parsed ok." #~ msgstr "XML Datei eingelesen" #, fuzzy #~ msgid "Executing script for num of indexes" #~ msgstr "Skript für Index-Liste ausgeführt" #~ msgid "Executing script for list of indexes" #~ msgstr "Skript für Index-Liste ausgeführt" #, fuzzy #~ msgid "Found index: %s" #~ msgstr "Abhängigkeit gefunden:" #~ msgid "Executing script query" #~ msgstr "Skript Abfrage ausführen" #~ msgid "Invalid device_id:" #~ msgstr "Ungültige Zielsystem-ID:" #, fuzzy #~ msgid "Executing SNMP get for num of indexes @ '%s' Index Count: %s" #~ msgstr "Führe SNMP-Walk auf der Liste der Indexe aus @ '%s'" #, fuzzy #~ msgid "Executing SNMP walk for list of indexes @ '%s' Index Count: %s" #~ msgstr "Führe SNMP-Walk auf der Liste der Indexe aus @ '%s'" #~ msgid "No SNMP data returned" #~ msgstr "Keine SNMP Daten erhalten" #~ msgid "Located input field '%s' [get]" #~ msgstr "Eingabefeld entdeckt '%s' [get]" #~ msgid "Executing SNMP get for data" #~ msgstr "Führe SNMP-Get aus für die Daten" #~ msgid "Located input field '%s' [walk]" #~ msgstr "Eingabefeld entdeckt '%s' [walk]" #~ msgid "Executing SNMP walk for data @ '%s'" #~ msgstr "Führe SNMP-Walk aus für die Daten @ '%s'" #~ msgid "Unknown Index" #~ msgstr "Unbekannter Index" #~ msgid "Cannot parse translation map (rewrite_value)" #~ msgstr "Kann die Übersetzungstabelle nicht durchsuchen (rewrite_value)" #, fuzzy #~ msgid "When you click 'Continue', the following Device(s) will be enabled." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "When you click 'Continue', the following Device(s) will be disabled." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen deaktiviert." #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Device(s) will have their SNMP " #~ "settings changed. Make sure you check the box next to the fields you " #~ "want to update, and fill in the new values before continuing." #~ msgstr "" #~ "Um Verfügbarkeitsparameter der folgenden Geräte zu ändern, wählen Sie die " #~ "Check-Box neben den Feldern. Tragen Sie die neuen Werte ein und clicken " #~ "Sie auf \"Ja\"." #, fuzzy #~ msgid "Change Device(s) SNMP options" #~ msgstr "SNMP Optionen ändern" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Device(s) Availability options " #~ "will be changed. Make sure you check the box next to the fields you want " #~ "to update, and fill in the new values before continuing." #~ msgstr "" #~ "Um Verfügbarkeitsparameter der folgenden Geräte zu ändern, wählen Sie die " #~ "Check-Box neben den Feldern. Tragen Sie die neuen Werte ein und clicken " #~ "Sie auf \"Ja\"." #, fuzzy #~ msgid "Change Device(s) Availability options" #~ msgstr "Verfügbarkeits-Optionen ändern" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Device(s) statistics will be " #~ "reset." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "Clear Device(s) Statistics" #~ msgstr "Statistiken löschen" #, fuzzy #~ msgid "When you click 'Continue', the following Device(s) will be deleted." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "" #~ "Delete all associated Graph(s) and Data " #~ "Source(s)." #~ msgstr "" #~ "Lösche alle verknüpfte Graphen und Datenquellen." #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Device(s) will be re-associated " #~ "with the Poller below." #~ msgstr "" #~ "Wenn Sie \"speichern\" drücken wird das Gerät dem unten ausgewählten " #~ "Zweig hinzugefügt. " #, fuzzy #~ msgid "Please select the new Poller for the selected Device(s)." #~ msgstr "Bitte wählen Sie den neuen Poller für die ausgewählten Geräte." #, fuzzy #~ msgid "Change Device(s) Poller" #~ msgstr "Poller ändern" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Device(s) will be re-associated " #~ "with the Site below." #~ msgstr "" #~ "Wenn Sie \"speichern\" drücken wird das Gerät dem unten ausgewählten " #~ "Zweig hinzugefügt. " #, fuzzy #~ msgid "Please select the new Site for the selected Device(s)." #~ msgstr "Bitte wählen Sie die neue Umgebung für die markierten Geräte." #, fuzzy #~ msgid "Change Device(s) Site" #~ msgstr "Ändere Standort" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Device(s) will be placed under " #~ "the Tree Branch selected below." #~ msgstr "" #~ "Wenn Sie \"speichern\" drücken wird das Gerät dem unten ausgewählten " #~ "Zweig hinzugefügt. " #, fuzzy #~ msgid "Place Device(s) on a Tree" #~ msgstr "In einem Baum platzieren" #~ msgid "" #~ "You must first select a Device. Please select 'Return' to return to the " #~ "previous menu." #~ msgstr "" #~ "Sie müssen erst ein Gerät wählen. Bitte drücken Sie \"Zurück\", um ins " #~ "vorhergehende Menü zurück zu kehren." #, fuzzy #~ msgid "Device Options" #~ msgstr "Allgemeine Zielsystem Optionen" #~ msgid "No Availability Check In Use" #~ msgstr "Kein Verfügbarkeitscheck in Benutzung" #~ msgid "No Associated Graph Templates." #~ msgstr "Keine zugeordneten Diagramm Schablonen" #~ msgid "Add Graph Template:" #~ msgstr "Hinzufügen einer Diagramm Schablone" #~ msgid "Row" #~ msgstr "Zeilen" #~ msgid "Reload" #~ msgstr "Neu laden" #~ msgid "Delete Data Query Association" #~ msgstr "Lösche Daten-Abfrage Verknüpfung" #~ msgid "Add Data Query:" #~ msgstr "Füge Daten Abfrage hinzu:" #~ msgid "Re-Index Method:" #~ msgstr "Art der Re-Indizierung:" #~ msgid "Type:" #~ msgstr "Typ:" #~ msgid "Poller:" #~ msgstr "Poller:" #, fuzzy #~ msgid "Time in State" #~ msgstr "Zeitzonen" #~ msgid "Error:" #~ msgstr "Fehler:" #, fuzzy #~ msgid "D" #~ msgstr "ID" #, fuzzy #~ msgid "deprecated" #~ msgstr "Ausgewählt" #~ msgid "Data Template Items" #~ msgstr "Elemente der Datenschablone" #~ msgid "Zoom" #~ msgstr "Vergrössern" #~ msgid "Graph Tree Items" #~ msgstr "Graph-Baum Element" #~ msgid "Edit (Graph Permissions)" #~ msgstr "Bearbeiten (Graph Berechtigungen)" #~ msgid "Edit (Graph Settings)" #~ msgstr "Bearbeiten (Graph Einstellungen)" #~ msgid "Edit (Realm Permissions)" #~ msgstr "Bearbeiten (Bereichsberechtigungen)" #~ msgid "Clear Poller Cache" #~ msgstr "Poller-Cache leeren" #~ msgid "Clear User Log File" #~ msgstr "Benutzer-Log löschen" #~ msgid "View User Log File" #~ msgstr "Benutzer-Log anschauen" #, fuzzy #~ msgid "When you click 'Continue', the following Graph(s) will be deleted." #~ msgstr "" #~ "Wenn Sie auf \"Ja\" klicken werden die folgenden Datenquellen aktiviert." #, fuzzy #~ msgid "The following Data Source(s) are in use by these Graph(s):" #~ msgstr "Die folgenden Datenquellen werden durch folgende Graphen genutzt:" #, fuzzy #~ msgid "" #~ "Delete all Data Source(s) referenced by these Graph(s)." #~ msgstr "" #~ "Lösche alle Datenquellen auf die diese Graphen verweisen." #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Graph(s) will be re-associated " #~ "with the Graph Template below. Be aware that all warnings will be " #~ "suppressed during the conversion, so graph data loss is possible." #~ msgstr "" #~ "Wählen Sie ein Graph-Template und klicken sie auf \"speichern\" um das " #~ "Graph-Template des folgenden Graphen zu sichern. Achtung: alle Warnungen " #~ "werden während des Umwandlungsprozesses unterdrückt. Es besteht die " #~ "Möglichkeit, dass Graph-Daten verloren gehen können." #~ msgid "New Graph Template:" #~ msgstr "Neue Diagramm Schablone" #, fuzzy #~ msgid "Change Graph(s) Graph Template" #~ msgstr "Wechseln der Diagramm Schablone" #, fuzzy #~ msgid "Convert Graph(s) to Graph Template(s)" #~ msgstr "Umwandeln in Diagramm Schablone" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Graph(s) will be placed under " #~ "the Tree Branch selected below." #~ msgstr "" #~ "Wenn Sie auf \"speichern\" klicken, werden die folgenden Graphen dem " #~ "unten ausgewählten Zweig hinzugefügt." #, fuzzy #~ msgid "Place Graph(s) on a Tree" #~ msgstr "In einem Baum platzieren" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Graph(s) will be re-associated " #~ "with the Device selected below." #~ msgstr "" #~ "Wenn Sie auf \"speichern\" klicken, werden die folgenden Graphen dem " #~ "unten ausgewählten Zweig hinzugefügt." #, fuzzy #~ msgid "Change Graph(s) Device" #~ msgstr "Wechseln der Diagramm Schablone" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Graph(s) will have their " #~ "suggested naming conventions recalculated and applied to the Graph(s)." #~ msgstr "" #~ "Wenn Sie auf \"speichern\" klicken, werden die Namens-Konventionen der " #~ "folgenden Graphen neu berechnet und angewendet." #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Graph(s) will be resized per " #~ "your specifications." #~ msgstr "" #~ "Wenn Sie auf \"speichern\" klicken, werden die folgenden Graphen den " #~ "Angaben gemäß vergrößert/verkleinert." #~ msgid "Graph Height:" #~ msgstr "Graph Höhe:" #~ msgid "Graph Width:" #~ msgstr "Graph Breite:" #, fuzzy #~ msgid "Resize Graph(s)" #~ msgstr "Diagramm Größe ändern" #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Graph(s) will be enabled for " #~ "Graph Export." #~ msgstr "" #~ "Wenn Sie auf \"speichern\" klicken, wird der Export des folgenden Graphen " #~ "aktiviert." #, fuzzy #~ msgid "" #~ "When you click 'Continue', the following Graph(s) will be disabled for " #~ "Graph Export." #~ msgstr "" #~ "Wenn Sie auf \"speichern\" klicken, wird der Export des folgenden Graphen " #~ "deaktiviert." #~ msgid "" #~ "You must first select a Graph. Please select 'Return' to return to the " #~ "previous menu." #~ msgstr "" #~ "Sie müssen erst einen Graphen auswählen. Bitte auf \"Zurück\" klicken um " #~ "ins vorherige Menü zu gelangen." #~ msgid "" #~ "The template you have selected requires some changes to be made to the " #~ "structure of your graph. Below is a preview of your graph along with " #~ "changes that need to be completed as shown in the left-hand column." #~ msgstr "" #~ "Die ausgewählte Schablone benötigt einige Änderungen innerhalb der Graph-" #~ "Strukturen. Unten anstehend befindet sich eine Vorab-Ansicht des Graphen " #~ "inklusive der benötigten Änderungen (aufgeführt in der linken Spalte)." #~ msgid "" #~ "When you click save, the items marked with a '+' will be " #~ "added (Recommended)." #~ msgstr "" #~ "Wenn Sie auf \"speichern\" klicken, werden die mit '-' " #~ "markierten Elemente hinzugefügt (Empfohlen)." #~ msgid "" #~ "When you click save, the items marked with a '-' will be " #~ "removed (Recommended)." #~ msgstr "" #~ "Wenn Sie auf \"speichern\" klicken, werden die mit '-' " #~ "markierten Elemente entfernt (Empfohlen)." #~ msgid "" #~ "When you click save, the graph items will remain untouched (could cause " #~ "inconsistencies)." #~ msgstr "" #~ "Wenn Sie auf \"speichern\" clicken bleibt das Graph Element unverändert " #~ "(dies könnte zu Inkonsistenzen führen)." #~ msgid "Graph Template Selection" #~ msgstr "Diagramm Schablonen Auswahl" #~ msgid "" #~ "Choose a graph template to apply to this graph. Please note that graph " #~ "data may be lost if you change the graph template after one is already " #~ "applied." #~ msgstr "" #~ "Wählen Sie ein Graph-Schablone, die auf diesem Graphen angewendet werden " #~ "soll. Achtung: Graphdaten können verloren gehen, wenn Sie eine alte Graph-" #~ "Schablone durch eine Neue ersetzen." #~ msgid "Right Axis Settings" #~ msgstr "Einstellungen für rechte Achse" #~ msgid "Create:" #~ msgstr "Anlegen:" #~ msgid "" #~ "This data query returned 0 rows, perhaps there was a problem executing " #~ "this data query. You can %s run this data query in debug mode %s to get " #~ "more information." #~ msgstr "" #~ "Die Datenabfrage gab 0 Zeilen zurück. Es gab vielleicht ein Problem " #~ "während der Ausführung dieser Datenabfrage. Sie können dieAbfrage im %s " #~ "Debug Modus %s ausführen, um mehr Informationen zu erhalten." #~ msgid "Select a graph type:" #~ msgstr "Auswahl eines Graph-Typen:" #~ msgid "Removing graph and all resources for graph id " #~ msgstr "Entferne Graphen und alle Resourcen der Graph-ID" #~ msgid "Removing graph but keeping resources for graph id " #~ msgstr "Entferne Graphen aber behalte alle Resourcen der Graph-ID" #~ msgid ". ERROR: Failed to remove this graph" #~ msgstr "- FEHLER: Datenquelle konnte nicht entfernt werden" #~ msgid ". Success - removed graph-id: (%d)" #~ msgstr ". Erfolg - gelöschte graph-id: (%d)" #, fuzzy #~ msgid "Export Date: %s" #~ msgstr "Daten exportieren" #, fuzzy #~ msgid "Total Graphs: %s" #~ msgstr "Lokale Diagramm Id" #, fuzzy #~ msgid "Graphs Last Updated on:" #~ msgstr "Letzes Update" #~ msgid "Showing All Graphs" #~ msgstr "Diagramm anzeigen" #~ msgid "Showing Graphs" #~ msgstr "Diagramm anzeigen" #~ msgid "to" #~ msgstr "an" #~ msgid "of" #~ msgstr "für" #~ msgid "Presets:" #~ msgstr "Vorhergegeben" #~ msgid "From:" #~ msgstr "Von:" #~ msgid "Graph Begin Timestamp" #~ msgstr "Zeitstempel-Anfang des Graphen" #~ msgid "To:" #~ msgstr "Nach:" #~ msgid "Graph End Timestamp" #~ msgstr "Zeitstempel-Ende des Graphen" #~ msgid "Shift Left" #~ msgstr "Nach links verschieben" #~ msgid "Shift Right" #~ msgstr "Nach rechts verschieben" #~ msgid "Trees:" #~ msgstr "Diagramm-Bäume:" #~ msgid "Graphs/Page:" #~ msgstr "Diagramme/Seite:" #~ msgid "Thumbnails:" #~ msgstr "Kleinansicht:" #~ msgid "Reload Associated Query" #~ msgstr "Verknüpfte Abfrage neu laden" #~ msgid "Page Top" #~ msgstr "Seitenanfang" #, fuzzy #~ msgid "No Rows Found" #~ msgstr "Keine Einträge gefunden" #~ msgid "Showing Rows" #~ msgstr "Spalten anzeigen" #~ msgid "Data Source Item Type" #~ msgstr "Typ der Datenquelle" #~ msgid "Minimum" #~ msgstr "Minimum" #~ msgid "Maximum" #~ msgstr "Maximum" #~ msgid "Delete this Item" #~ msgstr "Dieses Element löschen" #~ msgid "OK: DIR FOUND" #~ msgstr "OK: Verzeichnis gefunden" #~ msgid "ERROR: IS FILE" #~ msgstr "FEHLER: dies ist eine Datei" #~ msgid "ERROR: DIR NOT FOUND" #~ msgstr "FEHLER: Verzeichnis nicht gefunden" #~ msgid "Select a Graph Hierarchy" #~ msgstr "Wählen Sie eine Graph-Hierarchie aus" #~ msgid "Validation error." #~ msgstr "Überprüfungsfehler" #~ msgid "PNG Output OK" #~ msgstr "PNG Ausgabe OK" #~ msgid "DS '%s' missing in rrd file" #~ msgstr "DS '%s' fehlt in RRD Datei" #~ msgid "DS '%s' missing in cacti definition" #~ msgstr "DS '%s' fehlt in der Cacti Definition" #~ msgid "Cacti RRA '%s' has same cf/steps (%s, %s) as '%s'" #~ msgstr "Cacti RRA '%s' hat die gleichen cf/steps (%s, %s) wie '%s'" #~ msgid "Unkown Sec" #~ msgstr "Unbekannte Sec" #~ msgid "CDP Unknown Datapoints (0)" #~ msgstr "CDP unbekannte Datenpunkte (0)" #~ msgid "Added datasource(s) to rrd file: %s" #~ msgstr "Hinzugefügte Datenquellen für die rrd Datei: %s" #~ msgid "Y-m-d H:i:s" #~ msgstr "d.m.Y H:i:s" #~ msgid "Place on a Tree" #~ msgstr "In einem Baum platzieren" #~ msgid "Field '%s':" #~ msgstr "Feld '%s':" #~ msgid "" #~ msgstr "" #~ msgid "" #~ msgstr "" #~ msgid "" #~ msgstr "Datenquelle Name" #, fuzzy #~ msgid "" #~ msgstr "Name von Daten Abfragen" #~ msgid "" #~ msgstr "CDEF Name" #~ msgid "" #~ msgstr "" #~ msgid "" #~ msgstr "" #~ msgid "Action:" #~ msgstr "Aktion:" #, fuzzy #~ msgid "RRD Path" #~ msgstr "Pfade" #~ msgid "No Records Found" #~ msgstr "Keine Einträge gefunden" #~ msgid "Result:" #~ msgstr "Ergebnis:" #, fuzzy #~ msgid "Password Change" #~ msgstr "*** Erzwinge Kennwortwechsel ***" #, fuzzy #~ msgid "Purge All" #~ msgstr "Löschen" #, fuzzy #~ msgid "Authentication Type" #~ msgstr "LDAP Authentifizierung" #, fuzzy #~ msgid "From %s To %s" #~ msgstr "Von Gerät:" #~ msgid " " #~ msgstr " " #~ msgid "" #~ "Also, if this is an upgrade, be sure to reading the Upgrade information file." #~ msgstr "" #~ "Ist dies eine Hochrüstung, so lesen Sie bitte die Hochrüstungsinformationen." #~ msgid "Are you sure you want to delete the device" #~ msgstr "Sind Sie sicher, dass dieses Zielsystem gelöscht werden soll?" #~ msgid "Are you sure you want to delete the following CDEFs?" #~ msgstr "Sind Sie sicher, dass folgende CDEFs gelöscht werden sollen?" #~ msgid "Are you sure you want to delete the following GPRINT presets?" #~ msgstr "" #~ "Sind Sie sicher, dass folgende GPRINT Voreinstellungen gelöscht werden " #~ "sollen?" #~ msgid "Are you sure you want to delete the following RRAs?" #~ msgstr "Sind Sie sicher, dass folgende RRAs gelöscht werden sollen?" #~ msgid "Are you sure you want to delete the following VDEFs?" #~ msgstr "Sind Sie sicher, dass folgende VDEFs gelöscht werden sollen?" #~ msgid "Are you sure you want to delete the following X-Axis Presets?" #~ msgstr "" #~ "Sind Sie sicher, dass folgende X-Achsen Voreinstellungen gelöscht werden " #~ "sollen?" #~ msgid "Are you sure you want to delete the following data input methods?" #~ msgstr "" #~ "Sind Sie sicher, dass folgendes Datenabfrage-Programm gelöscht werden " #~ "sollen?" #~ msgid "Are you sure you want to delete the following data queries?" #~ msgstr "Sind Sie sicher, dass folgende Datenabfrage gelöscht werden sollen?" #~ msgid "Are you sure you want to delete the following data sources?" #~ msgstr "Sind Sie sicher, dass folgende Datenquellen gelöscht werden sollen?" #~ msgid "Are you sure you want to delete the following graphs?" #~ msgstr "Sind Sie sicher, dass folgende Diagramme gelöscht werden sollen?" #~ msgid "Are you sure you want to delete the following users?" #~ msgstr "Sind Sie sicher, die folgenden Benutzer löschen zu wollen?" #~ msgid "Are you sure you want to delete the input item" #~ msgstr "Möchte Sie wirklich dieses Eingabe-Element löschen" #~ msgid "Are you sure you want to disable the following users?" #~ msgstr "Sind Sie sicher, dass folgende Benutzer deaktiviert werden sollen?" #~ msgid "Are you sure you want to enable the following users?" #~ msgstr "Sind Sie sicher, dass folgende Benutzer aktiviert werden sollen?" #~ msgid "" #~ "Choose a data template and click save to change the data template for the " #~ "following data souces. Be aware that all warnings will be suppressed " #~ "during the conversion, so graph data loss is possible." #~ msgstr "" #~ "Wählen Sie ein Daten-Template und klicken sie \"speichern\" um das Daten-" #~ "Template der folgenden Datenquellen zu speichern. Achtung: alle Warnungen " #~ "werden während der Umwandlung unterdrückt; es besteht die Gefahr, dass " #~ "Graph-Daten verloren gehen können." #~ msgid "Choose a new device for these data sources." #~ msgstr "Wählen Sie ein neues Zielsystem für diese Datenquellen." #~ msgid "Choose a new device for these graphs:" #~ msgstr "Wählen Sie ein neues Zielsystem für diese Graphen:" #~ msgid "Choose what type of data input method this is." #~ msgstr "Wählen Sie den Typ der Dateneingabe-Methode." #~ msgid "" #~ "Choose what type of device, device template this is. The device template " #~ "will govern what kinds of data should be gathered from this type of " #~ "device." #~ msgstr "" #~ "Wählen Sie den Typ des Zielsystemes, der Zielsystem Schablone. Die " #~ "Zielsystem Schablone wird festlegen, welchen Daten für diesen Typ von " #~ "Zielsystemen gesammelt werden soll." #~ msgid "Color Actions" #~ msgstr "Farb-Aktionen" #~ msgid "Database Hostname:" #~ msgstr "Rechnername für die Datenbank:" #~ msgid "Database User:" #~ msgstr "Benutzerkennung für die Datenbank:" #~ msgid "Database:" #~ msgstr "Datenbank:" #~ msgid "Down since %s with error: '%s'" #~ msgstr "Inaktiv seit %s, Fehler: '%s'" #~ msgid "Event Count" #~ msgstr "Ereignis Anzahl" #~ msgid "FATAL: Database or Table does not exist" #~ msgstr "FEHLER: Datenbank oder Tabelle existiert nicht" #~ msgid "Item Filter" #~ msgstr "Element Filter" #~ msgid "NOT FOUND" #~ msgstr "NICHT GEFUNDEN" #~ msgid "New Host:" #~ msgstr "Neues Gerät:" #~ msgid "No CDEF's" #~ msgstr "Keine CDEF's" #~ msgid "No Data Input Methods" #~ msgstr "Keine Dateneingabe Methode" #~ msgid "No Data Queries" #~ msgstr "Keine Datenabfragen" #~ msgid "No Data Source Templates" #~ msgstr "Keine Daten Schablonen" #~ msgid "No Data Sources" #~ msgstr "Keine Datenquellen" #~ msgid "No Device Templates" #~ msgstr "Keine Zielsystem Schablonen" #~ msgid "No Graphs Trees" #~ msgstr "Keine Diagrammbäume" #~ msgid "No Hosts" #~ msgstr "Keine Zielsysteme" #~ msgid "No Pollers Defined" #~ msgstr "Kein Poller definiert" #~ msgid "No RRAs" #~ msgstr "Keine RRAs" #~ msgid "No Sites" #~ msgstr "Keine Standorte" #~ msgid "No Users" #~ msgstr "Keine Benutzer" #~ msgid "No VDEF's" #~ msgstr "Keine VDEF's" #~ msgid "Plugin" #~ msgstr "Erweiterungen" #~ msgid "" #~ "Select the new poller below for the devices(s) below and select 'yes' to " #~ "continue, or 'no' to return." #~ msgstr "" #~ "Wählen Sie den neuen Poller für die ausgewählten Geräte und wählen Sie " #~ "\"ja\" um fort zu fahren oder \"nein\" zum abbrechen." #~ msgid "" #~ "Select the new site for the devices(s) below and select 'yes' to " #~ "continue, or 'no' to return." #~ msgstr "" #~ "Wählen Sie die neue Umgebung für unten stehende Geräte aus und wählen Sie " #~ "\"ja\" um fort zu fahren oder \"nein\" zum abbrechen." #~ msgid "Server Operating System Type:" #~ msgstr "Betriebssystemtyp:" #~ msgid "The IP Address of this poller for status checking." #~ msgstr "IP Adresse dieses Pollers für Status-Prüfungen." #~ msgid "There are no installed Plugins" #~ msgstr "Keine installierten Plugins gefunden" #~ msgid "" #~ "To change SNMP parameters for the following devices, check the box next " #~ "to the fields you want to update, fill in the new value, and click \"yes" #~ "\"." #~ msgstr "" #~ "Um SNMP-Parameter der folgenden Geräte zu ändern, wählen Sie die Check-" #~ "Box neben den Feldern. Tragen Sie die neuen Werte ein und clicken Sie auf " #~ "\"Ja\"." #~ msgid "" #~ "To clear the counters for the following devices, press the \"yes\" button " #~ "below." #~ msgstr "" #~ "Um die Zählerstände der folgenden Geräte zurück zu setzen, clicken Sie " #~ "auf unten stehendes \"Ja\"." #~ msgid "To disable the following devices, press the \"yes\" button below." #~ msgstr "" #~ "Um die folgenden Geräte zu deaktivieren, clicken Sie auf unten stehendes " #~ "\"Ja\"." #~ msgid "To enable the following devices, press the \"yes\" button below." #~ msgstr "" #~ "Um die folgenden Geräte zu aktivieren, clicken Sie auf unten stehendes " #~ "\"Ja\"." #~ msgid "Use defaults for this installation (Recommended)" #~ msgstr "Benutze Voreinstellungen für diese Installation (empfohlen)." #~ msgid "User Removed" #~ msgstr "Benutzer entfernt" #~ msgid "Would you like to copy this user?" #~ msgstr "Möchten Sie diesen benutzer kopieren?" #~ msgid "" #~ "*/5 * * * * cactiuser php /var/www/html/cacti/poller.php > /dev/null 2>&1" #~ msgstr "" #~ "*/5 * * * * cactiuser php /var/www/html/cacti/poller.php > /dev/null 2>&1" #~ msgid "Adding Data Query: " #~ msgstr "Datenabfrage hinzufügen:" #~ msgid "Adding Graph Template: " #~ msgstr "Hinzufügen einer Diagramm Schablone" #~ msgid "Check" #~ msgstr "Prüfe" #~ msgid "" #~ "Choose whether to use your own custom colortags or utilize the system " #~ "defaults." #~ msgstr "" #~ "Wählen Sie, ob sie lieber eigene Schriftarten und Schriftgrössen oder " #~ "System-Standards verwenden möchten." #~ msgid "Create graphs" #~ msgstr "Diagramme anlegen" #~ msgid "Directory:" #~ msgstr "Verzeichnis" #~ msgid "ERROR: FONT NOT FOUND" #~ msgstr "FEHLER: Schriftart nicht gefunden" #~ msgid "Edit this Host" #~ msgstr "Gerät bearbeiten" #~ msgid "Home Page:" #~ msgstr "Home Page:" #~ msgid "New Host" #~ msgstr "Neues Gerät" #~ msgid "Plugin Warnings" #~ msgstr "Plugin Warnungen" #~ msgid "Use Custom Colortags" #~ msgstr "Benutze eigene Farbgebung" #~ msgid "Version:" #~ msgstr "Version:" #~ msgid "your new graphs" #~ msgstr "Ihre neuen Diagramme" cacti-1.1.38/locales/po/french_france.po0000664000175000017500000152533613264740213017457 0ustar tromantromanmsgid "" msgstr "" "Project-Id-Version: Cacti\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-05-20 13:00+0200\n" "PO-Revision-Date: 2017-05-20 13:00+0200\n" "Last-Translator: Patrick Rademaker\n" "Language-Team: fr \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 2.0.2\n" #: ../about.php:29 ../lib/functions.php:2424 msgid "About Cacti" msgstr "A propos de Cacti" #: ../about.php:35 ../index.php:73 ../logout.php:77 #, fuzzy, php-format msgid "Version %s" msgstr "Version" #: ../about.php:42 msgid "" "Cacti is designed to be a complete graphing solution based on the RRDtool's " "framework. Its goal is to make a network administrator's job easier by " "taking care of all the necessary details necessary to create meaningful " "graphs." msgstr "" #: ../about.php:44 #, php-format msgid "" "Please see the official %sCacti website%s for information, support, and " "updates." msgstr "" #: ../about.php:46 msgid "Cacti Developers" msgstr "" #: ../about.php:58 msgid "Thanks" msgstr "" #: ../about.php:61 #, php-format msgid "" "A very special thanks to %sTobi Oetiker%s, the creator of %sRRDtool%s and " "the very popular %sMRTG%s." msgstr "" #: ../about.php:64 #, fuzzy msgid "The users of Cacti" msgstr "Retour à Cacti" #: ../about.php:65 msgid "" "Especially anyone who has taken the time to create an issue report, or " "otherwise help fix a Cacti related problems. Also to anyone who has " "contributed to supporting Cacti." msgstr "" #: ../about.php:70 msgid "License" msgstr "Licence" #: ../about.php:72 msgid "Cacti is licensed under the GNU GPL:" msgstr "Cacti est distribué sous licence GNU GPL :" #: ../about.php:74 msgid "" "This program is free software; you can redistribute it and/or modify it " "under the terms of the GNU General Public License as published by the Free " "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" #: ../about.php:76 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" #: ../aggregate_graphs.php:40 ../aggregate_templates.php:29 #: ../automation_graph_rules.php:32 ../automation_networks.php:31 #: ../automation_snmp.php:29 ../automation_snmp.php:727 #: ../automation_templates.php:29 ../automation_tree_rules.php:32 #: ../cdef.php:29 ../cdef.php:619 ../color.php:28 ../color_templates.php:28 #: ../color_templates.php:122 ../data_input.php:29 ../data_input.php:490 #: ../data_input.php:528 ../data_queries.php:30 ../data_queries.php:638 #: ../data_queries.php:736 ../data_queries.php:950 #: ../data_source_profiles.php:29 ../data_source_profiles.php:513 #: ../data_sources.php:35 ../data_sources.php:942 ../data_templates.php:33 #: ../data_templates.php:571 ../gprint_presets.php:28 ../graph_templates.php:33 #: ../graph_templates.php:440 ../graphs.php:44 ../host.php:38 #: ../host_templates.php:30 ../host_templates.php:485 ../host_templates.php:542 #: ../include/global_arrays.php:1234 ../lib/api_automation.php:1246 #: ../lib/api_automation.php:1309 ../lib/api_automation.php:1373 #: ../lib/html.php:970 ../lib/html_form.php:1096 ../lib/html_reports.php:1291 #: ../links.php:28 ../managers.php:28 ../pollers.php:29 ../sites.php:28 #: ../tree.php:1051 ../tree.php:1204 ../tree.php:1264 ../user_admin.php:28 #: ../user_domains.php:29 ../user_group_admin.php:30 ../vdef.php:29 msgid "Delete" msgstr "Supprimer" #: ../aggregate_graphs.php:41 msgid "Migrate Aggregate to use a Template" msgstr "" #: ../aggregate_graphs.php:42 msgid "Create New Aggregate from Aggregates" msgstr "" #: ../aggregate_graphs.php:46 #, fuzzy msgid "Associate with Aggregate" msgstr "Modèles de graphique associés" #: ../aggregate_graphs.php:47 msgid "Disassociate with Aggregate" msgstr "" #: ../aggregate_graphs.php:80 ../graphs.php:128 #, fuzzy, php-format msgid "Place on a Tree (%s)" msgstr "Placer sur un arbre" #: ../aggregate_graphs.php:318 #, fuzzy msgid "Click 'Continue' to delete the following Aggregate Graph(s)." msgstr "Êtes-vous sur de vouloir supprimer le graphique suivant ?" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 ../automation_devices.php:199 #: ../automation_graph_rules.php:284 ../automation_networks.php:358 #: ../automation_snmp.php:253 ../automation_snmp.php:356 #: ../automation_templates.php:195 ../automation_tree_rules.php:286 #: ../cdef.php:282 ../cdef.php:292 ../cdef.php:344 ../color.php:192 #: ../color_templates.php:232 ../color_templates.php:242 #: ../color_templates_items.php:280 ../data_input.php:218 ../data_input.php:266 #: ../data_queries.php:322 ../data_queries.php:425 #: ../data_source_profiles.php:266 ../data_source_profiles.php:276 #: ../data_source_profiles.php:324 ../data_sources.php:468 #: ../data_sources.php:478 ../data_sources.php:487 ../data_sources.php:496 #: ../data_sources.php:505 ../data_sources.php:511 ../data_templates.php:358 #: ../data_templates.php:368 ../data_templates.php:384 #: ../gprint_presets.php:153 ../graph_templates.php:317 #: ../graph_templates.php:327 ../graph_templates.php:347 #: ../graph_templates.php:356 ../graphs.php:818 ../graphs.php:845 #: ../graphs.php:856 ../graphs.php:867 ../graphs.php:882 ../graphs.php:905 #: ../graphs.php:1029 ../graphs.php:1072 ../graphs.php:1094 ../graphs.php:1102 #: ../graphs.php:1535 ../host.php:381 ../host.php:390 ../host.php:432 #: ../host.php:441 ../host.php:450 ../host.php:464 ../host.php:478 #: ../host.php:487 ../host.php:495 ../host_templates.php:261 #: ../host_templates.php:275 ../host_templates.php:286 #: ../host_templates.php:334 ../host_templates.php:394 #: ../lib/clog_webapi.php:129 ../lib/html_form.php:1095 #: ../lib/html_form.php:1107 ../lib/html_form.php:1118 #: ../lib/html_utility.php:198 ../links.php:196 ../links.php:205 #: ../links.php:214 ../managers.php:1012 ../managers.php:1069 #: ../pollers.php:288 ../pollers.php:297 ../pollers.php:306 ../pollers.php:315 #: ../sites.php:280 ../tree.php:490 ../tree.php:499 ../tree.php:508 #: ../user_admin.php:350 ../user_admin.php:390 ../user_admin.php:401 #: ../user_admin.php:412 ../user_admin.php:434 ../user_domains.php:227 #: ../user_domains.php:236 ../user_domains.php:245 ../user_domains.php:254 #: ../user_group_admin.php:446 ../user_group_admin.php:465 #: ../user_group_admin.php:476 ../user_group_admin.php:487 ../vdef.php:270 #: ../vdef.php:280 ../vdef.php:332 msgid "Cancel" msgstr "Abandonner" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 ../automation_devices.php:199 #: ../automation_graph_rules.php:284 ../automation_networks.php:350 #: ../automation_snmp.php:228 ../automation_snmp.php:357 #: ../automation_templates.php:195 ../automation_tree_rules.php:286 #: ../cdef.php:282 ../cdef.php:292 ../cdef.php:345 ../color.php:192 #: ../color_templates.php:232 ../color_templates.php:242 #: ../color_templates_items.php:281 ../data_input.php:218 ../data_input.php:267 #: ../data_queries.php:322 ../data_queries.php:426 #: ../data_source_profiles.php:266 ../data_source_profiles.php:276 #: ../data_source_profiles.php:325 ../data_sources.php:468 #: ../data_sources.php:478 ../data_sources.php:487 ../data_sources.php:496 #: ../data_sources.php:505 ../data_sources.php:511 ../data_templates.php:358 #: ../data_templates.php:368 ../data_templates.php:384 #: ../gprint_presets.php:153 ../graph_templates.php:317 #: ../graph_templates.php:327 ../graph_templates.php:347 #: ../graph_templates.php:356 ../graphs.php:818 ../graphs.php:845 #: ../graphs.php:856 ../graphs.php:867 ../graphs.php:882 ../graphs.php:905 #: ../graphs.php:1029 ../graphs.php:1072 ../graphs.php:1094 ../graphs.php:1102 #: ../host.php:381 ../host.php:390 ../host.php:432 ../host.php:441 #: ../host.php:450 ../host.php:464 ../host.php:478 ../host.php:487 #: ../host.php:495 ../host_templates.php:261 ../host_templates.php:275 #: ../host_templates.php:286 ../host_templates.php:335 #: ../host_templates.php:395 ../lib/clog_webapi.php:130 #: ../lib/html_reports.php:643 ../lib/html_utility.php:198 ../links.php:196 #: ../links.php:205 ../links.php:214 ../managers.php:1012 ../managers.php:1069 #: ../pollers.php:288 ../pollers.php:297 ../pollers.php:306 ../pollers.php:315 #: ../sites.php:280 ../tree.php:490 ../tree.php:499 ../tree.php:508 #: ../user_admin.php:350 ../user_admin.php:390 ../user_admin.php:401 #: ../user_admin.php:412 ../user_admin.php:434 ../user_domains.php:227 #: ../user_domains.php:236 ../user_domains.php:245 ../user_domains.php:254 #: ../user_group_admin.php:446 ../user_group_admin.php:465 #: ../user_group_admin.php:476 ../user_group_admin.php:487 ../vdef.php:270 #: ../vdef.php:280 ../vdef.php:333 msgid "Continue" msgstr "" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../graphs.php:818 #, fuzzy msgid "Delete Graph(s)" msgstr "Mettre à jour les graphiques" #: ../aggregate_graphs.php:349 msgid "" "The selected Aggregate Graphs represent elements from more than one Graph " "Template." msgstr "" #: ../aggregate_graphs.php:350 msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, they must only be using one Graph Template. Please press " "'Return' and then select only Aggregate Graph that utilize the same Graph " "Template." msgstr "" #: ../aggregate_graphs.php:355 ../aggregate_graphs.php:395 #: ../aggregate_graphs.php:442 ../aggregate_templates.php:316 #: ../auth_changepassword.php:308 ../automation_devices.php:203 #: ../automation_graph_rules.php:282 ../automation_networks.php:359 #: ../automation_snmp.php:253 ../automation_templates.php:199 #: ../automation_tree_rules.php:284 ../cdef.php:296 ../color.php:196 #: ../color_templates.php:246 ../data_input.php:221 ../data_queries.php:325 #: ../data_source_profiles.php:280 ../data_sources.php:515 #: ../data_templates.php:388 ../gprint_presets.php:157 #: ../graph_templates.php:360 ../graphs.php:1031 ../graphs.php:1081 #: ../graphs.php:1084 ../graphs.php:1107 ../host.php:499 #: ../host_templates.php:290 ../include/auth.php:115 ../lib/html_form.php:1116 #: ../lib/html_utility.php:196 ../links.php:218 ../managers.php:1072 #: ../permission_denied.php:30 ../permission_denied.php:32 ../pollers.php:319 #: ../sites.php:284 ../tree.php:512 ../user_admin.php:439 #: ../user_domains.php:258 ../user_group_admin.php:491 ../vdef.php:284 msgid "Return" msgstr "" #: ../aggregate_graphs.php:368 msgid "" "Click 'Continue' and the following Aggregate Graph(s) will be migrated to " "use the Aggregate Template that you choose below." msgstr "" #: ../aggregate_graphs.php:374 #, fuzzy msgid "Aggregate Template:" msgstr "Modèle de graphique :" #: ../aggregate_graphs.php:388 msgid "" "There are currently no Aggregate Templates defined for the selected Legacy " "Aggregates." msgstr "" #: ../aggregate_graphs.php:389 #, php-format msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, first create an Aggregate Template for the Graph Template '%s'." msgstr "" #: ../aggregate_graphs.php:390 msgid "Please press 'Return' to continue." msgstr "" #: ../aggregate_graphs.php:401 msgid "" "Click 'Continue' to combine the following Aggregate Graph(s) into a single " "Aggregate Graph." msgstr "" #: ../aggregate_graphs.php:406 #, fuzzy msgid "Aggregate Name:" msgstr "Nom du modèle" #: ../aggregate_graphs.php:407 msgid "New Aggregate" msgstr "" #: ../aggregate_graphs.php:413 msgid "" "Click 'Continue' to associate the following Graph(s) with the Aggregate " "Graph." msgstr "" #: ../aggregate_graphs.php:418 #, fuzzy msgid "Associate Graph(s)" msgstr "Eléments graphiques associés" #: ../aggregate_graphs.php:422 msgid "" "Click 'Continue' to disassociate the following Graph(s) from the Aggregate." msgstr "" #: ../aggregate_graphs.php:427 #, fuzzy msgid "Dis-Associate Graph(s)" msgstr "Eléments graphiques associés" #: ../aggregate_graphs.php:431 msgid "" "Click 'Continue' to place the following Aggregate Graph(s) under the Tree " "Branch." msgstr "" #: ../aggregate_graphs.php:433 ../host.php:470 msgid "Destination Branch:" msgstr "Branche de destintation :" #: ../aggregate_graphs.php:438 ../graphs.php:882 #, fuzzy msgid "Place Graph(s) on Tree" msgstr "Placer sur un arbre" #: ../aggregate_graphs.php:441 #, fuzzy msgid "You must select at least one graph." msgstr "Vous devez sélectionner au moins un champ." #: ../aggregate_graphs.php:476 ../graphs.php:1140 #, fuzzy msgid "Graph Items [new]" msgstr "Elements graphiques" #: ../aggregate_graphs.php:492 ../graphs.php:1160 #, fuzzy, php-format msgid "Graph Items [edit: %s]" msgstr "Elements graphiques" #: ../aggregate_graphs.php:560 ../aggregate_graphs.php:563 #: ../lib/html_reports.php:1060 ../lib/html_reports.php:1065 #: ../lib/html_reports.php:1104 ../utilities.php:1699 msgid "Details" msgstr "" #: ../aggregate_graphs.php:560 ../lib/html_reports.php:1060 #: ../lib/html_reports.php:1151 ../utilities.php:306 #, fuzzy msgid "Items" msgstr "Élément" #: ../aggregate_graphs.php:560 ../aggregate_graphs.php:563 ../lib/html.php:1559 #: ../lib/html_reports.php:1060 #, fuzzy msgid "Preview" msgstr "Mode de prévisualisation" #: ../aggregate_graphs.php:607 msgid "Turn Off Graph Debug Mode" msgstr "" #: ../aggregate_graphs.php:609 msgid "Turn On Graph Debug Mode" msgstr "" #: ../aggregate_graphs.php:615 ../aggregate_graphs.php:880 msgid "Show Item Details" msgstr "" #: ../aggregate_graphs.php:621 #, php-format msgid "Aggregate Preview [%s]" msgstr "" #: ../aggregate_graphs.php:633 ../graph.php:431 ../graphs.php:1398 #, fuzzy msgid "RRDTool Command:" msgstr "Retour de RRDTool :" #: ../aggregate_graphs.php:635 ../graph.php:434 ../graphs.php:1400 msgid "RRDTool Says:" msgstr "Retour de RRDTool :" #: ../aggregate_graphs.php:660 #, fuzzy, php-format msgid "Aggregate Graph %s" msgstr "Créer de nouveaux graphiques" #: ../aggregate_graphs.php:798 ../lib/api_aggregate.php:1221 msgid "Total" msgstr "" #: ../aggregate_graphs.php:802 #, fuzzy msgid "All Items" msgstr "Élément" #: ../aggregate_graphs.php:825 ../graphs.php:1414 ../lib/api_aggregate.php:1367 #, fuzzy msgid "Graph Configuration" msgstr "Options des graphiques" #: ../aggregate_graphs.php:875 ../automation_graph_rules.php:513 #: ../automation_graph_rules.php:528 ../automation_graph_rules.php:544 #: ../automation_tree_rules.php:379 ../automation_tree_rules.php:529 msgid "Show" msgstr "" #: ../aggregate_graphs.php:877 msgid "Hide Item Details" msgstr "" #: ../aggregate_graphs.php:998 #, fuzzy msgid "Matching Graphs" msgstr "Voir le graphique" #: ../aggregate_graphs.php:1007 ../aggregate_graphs.php:1326 #: ../aggregate_templates.php:538 ../automation_devices.php:448 #: ../automation_graph_rules.php:701 ../automation_networks.php:1061 #: ../automation_networks.php:1082 ../automation_snmp.php:828 #: ../automation_templates.php:412 ../automation_tree_rules.php:715 #: ../cdef.php:722 ../color.php:529 ../color_templates.php:439 #: ../data_input.php:619 ../data_queries.php:1048 #: ../data_source_profiles.php:719 ../data_sources.php:1251 #: ../data_templates.php:754 ../gprint_presets.php:262 #: ../graph_templates.php:628 ../graph_view.php:517 ../graph_view.php:818 #: ../graphs.php:1687 ../graphs_new.php:548 ../host.php:1375 #: ../host_templates.php:700 ../lib/api_automation.php:133 #: ../lib/api_automation.php:460 ../lib/api_automation.php:683 #: ../lib/api_automation.php:988 ../lib/clog_webapi.php:380 #: ../lib/html_filter.php:63 ../lib/html_graph.php:206 #: ../lib/html_graph.php:432 ../lib/html_reports.php:1378 #: ../lib/html_tree.php:121 ../lib/html_tree.php:605 ../lib/html_tree.php:879 #: ../links.php:309 ../managers.php:150 ../managers.php:533 ../managers.php:724 #: ../plugins.php:276 ../pollers.php:517 ../rrdcleaner.php:475 #: ../settings.php:204 ../settings.php:221 ../settings.php:267 ../sites.php:387 #: ../tree.php:633 ../tree.php:668 ../tree.php:1485 ../user_admin.php:2193 #: ../user_admin.php:2531 ../user_admin.php:2640 ../user_admin.php:2728 #: ../user_admin.php:2833 ../user_admin.php:2920 ../user_admin.php:3007 #: ../user_domains.php:621 ../user_group_admin.php:1806 #: ../user_group_admin.php:2133 ../user_group_admin.php:2243 #: ../user_group_admin.php:2348 ../user_group_admin.php:2435 #: ../user_group_admin.php:2522 ../utilities.php:689 ../utilities.php:1045 #: ../utilities.php:1282 ../utilities.php:1594 ../utilities.php:2257 #: ../utilities.php:2510 ../vdef.php:659 #, fuzzy msgid "Search" msgstr "Rechercher :" #: ../aggregate_graphs.php:1013 ../aggregate_graphs.php:1111 #: ../aggregate_graphs.php:1354 ../color_templates.php:549 #: ../graph_view.php:395 ../graph_view.php:556 ../graphs.php:1693 #: ../host.php:1501 ../include/global_arrays.php:686 #: ../include/global_arrays.php:865 ../lib/api_automation.php:274 #: ../lib/functions.php:1856 ../lib/html.php:1308 ../lib/html.php:1310 #: ../lib/html.php:1383 ../lib/html_graph.php:212 ../lib/html_tree.php:658 #: ../lib/html_tree.php:1076 ../tree.php:1568 ../user_admin.php:998 #: ../user_admin.php:1242 ../user_admin.php:2559 ../user_group_admin.php:813 #: ../user_group_admin.php:966 ../user_group_admin.php:2161 #: ../utilities.php:268 msgid "Graphs" msgstr "Graphiques" #: ../aggregate_graphs.php:1017 ../aggregate_graphs.php:1358 #: ../aggregate_templates.php:554 ../automation_devices.php:533 #: ../automation_graph_rules.php:743 ../automation_networks.php:1071 #: ../automation_snmp.php:838 ../automation_templates.php:422 #: ../automation_tree_rules.php:735 ../cdef.php:732 ../color.php:539 #: ../color_templates.php:453 ../data_input.php:629 ../data_queries.php:1058 #: ../data_source_profiles.php:729 ../data_source_profiles.php:848 #: ../data_sources.php:1287 ../data_templates.php:780 ../gprint_presets.php:272 #: ../graph_templates.php:638 ../graph_view.php:560 ../graphs.php:1697 #: ../graphs_new.php:530 ../host.php:1400 ../host_templates.php:710 #: ../include/global_form.php:79 ../lib/api_automation.php:176 #: ../lib/api_automation.php:470 ../lib/api_automation.php:693 #: ../lib/api_automation.php:1031 ../lib/html_reports.php:1398 ../links.php:319 #: ../managers.php:160 ../managers.php:543 ../plugins.php:299 #: ../pollers.php:527 ../rrdcleaner.php:501 ../sites.php:397 ../tree.php:1495 #: ../user_admin.php:2203 ../user_admin.php:2563 ../user_admin.php:2650 #: ../user_admin.php:2756 ../user_admin.php:2843 ../user_admin.php:2930 #: ../user_admin.php:3017 ../user_domains.php:32 ../user_domains.php:631 #: ../user_domains.php:716 ../user_group_admin.php:1816 #: ../user_group_admin.php:2165 ../user_group_admin.php:2271 #: ../user_group_admin.php:2358 ../user_group_admin.php:2445 #: ../user_group_admin.php:2532 ../utilities.php:665 ../utilities.php:1326 #: ../utilities.php:1615 ../utilities.php:2282 ../utilities.php:2546 #: ../vdef.php:669 msgid "Default" msgstr "Défaut" #: ../aggregate_graphs.php:1031 msgid "Part of Aggregate" msgstr "" #: ../aggregate_graphs.php:1034 ../aggregate_graphs.php:1369 #: ../aggregate_templates.php:574 ../automation_devices.php:468 #: ../automation_graph_rules.php:754 ../automation_networks.php:1082 #: ../automation_snmp.php:849 ../automation_templates.php:433 #: ../automation_tree_rules.php:746 ../cdef.php:749 ../color.php:562 #: ../color_templates.php:472 ../data_input.php:640 ../data_queries.php:1069 #: ../data_source_profiles.php:746 ../data_sources.php:1241 #: ../data_templates.php:797 ../gprint_presets.php:289 #: ../graph_templates.php:655 ../graph_view.php:571 ../graphs.php:1677 #: ../graphs_new.php:554 ../host.php:1365 ../host_templates.php:727 #: ../lib/api_automation.php:187 ../lib/api_automation.php:452 #: ../lib/api_automation.php:704 ../lib/api_automation.php:1042 #: ../lib/clog_webapi.php:340 ../lib/html.php:1154 ../lib/html_filter.php:81 #: ../lib/html_graph.php:190 ../lib/html_reports.php:1408 #: ../lib/html_tree.php:642 ../links.php:328 ../managers.php:171 #: ../managers.php:554 ../managers.php:743 ../plugins.php:310 #: ../pollers.php:538 ../sites.php:408 ../tree.php:1506 ../user_admin.php:2214 #: ../user_admin.php:2580 ../user_admin.php:2667 ../user_admin.php:2773 #: ../user_admin.php:2860 ../user_admin.php:2947 ../user_admin.php:3034 msgid "Go" msgstr "Go" #: ../aggregate_graphs.php:1034 ../aggregate_graphs.php:1369 #: ../automation_devices.php:468 ../automation_snmp.php:849 #: ../automation_templates.php:433 ../cdef.php:749 ../color.php:562 #: ../data_input.php:640 ../data_queries.php:1069 #: ../data_source_profiles.php:746 ../data_sources.php:1241 #: ../data_templates.php:797 ../gprint_presets.php:289 #: ../graph_templates.php:655 ../graph_view.php:571 ../graphs.php:1677 #: ../graphs_new.php:554 ../host.php:1365 ../host_templates.php:727 #: ../lib/html_graph.php:190 ../managers.php:171 ../managers.php:554 #: ../managers.php:743 ../plugins.php:310 ../pollers.php:538 ../sites.php:408 #: ../tree.php:1506 ../user_admin.php:2214 ../user_admin.php:2580 #: ../user_admin.php:2667 ../user_admin.php:2773 ../user_admin.php:2860 #: ../user_admin.php:2947 ../user_admin.php:3034 ../user_domains.php:642 #: ../user_group_admin.php:1827 ../user_group_admin.php:2182 #: ../user_group_admin.php:2288 ../user_group_admin.php:2375 #: ../user_group_admin.php:2462 ../user_group_admin.php:2549 #: ../utilities.php:676 ../utilities.php:1009 ../utilities.php:1337 #: ../utilities.php:1584 ../utilities.php:2293 ../utilities.php:2557 #, fuzzy msgid "Set/Refresh Filters" msgstr "Filtre de recherche" #: ../aggregate_graphs.php:1037 ../aggregate_graphs.php:1372 #: ../aggregate_templates.php:577 ../automation_devices.php:471 #: ../automation_graph_rules.php:757 ../automation_networks.php:1085 #: ../automation_snmp.php:852 ../automation_templates.php:436 #: ../automation_tree_rules.php:749 ../cdef.php:752 ../color.php:565 #: ../color_templates.php:475 ../data_input.php:643 ../data_queries.php:1072 #: ../data_source_profiles.php:749 ../data_sources.php:1244 #: ../data_templates.php:800 ../gprint_presets.php:292 #: ../graph_templates.php:658 ../graph_view.php:574 ../graphs.php:1680 #: ../graphs_new.php:555 ../host.php:1368 ../host_templates.php:730 #: ../lib/api_automation.php:190 ../lib/api_automation.php:455 #: ../lib/api_automation.php:707 ../lib/api_automation.php:1045 #: ../lib/clog_webapi.php:343 ../lib/html_filter.php:86 #: ../lib/html_graph.php:193 ../lib/html_graph.php:322 #: ../lib/html_reports.php:1411 ../lib/html_tree.php:645 #: ../lib/html_tree.php:768 ../links.php:331 ../managers.php:174 #: ../managers.php:557 ../managers.php:746 ../plugins.php:313 #: ../pollers.php:541 ../sites.php:411 ../tree.php:1509 ../user_admin.php:2217 #: ../user_admin.php:2583 ../user_admin.php:2670 ../user_admin.php:2776 #: ../user_admin.php:2863 ../user_admin.php:2950 ../user_admin.php:3037 #: ../user_domains.php:645 msgid "Clear" msgstr "Effacer" #: ../aggregate_graphs.php:1037 ../aggregate_graphs.php:1372 #: ../automation_snmp.php:852 ../automation_templates.php:436 ../cdef.php:752 #: ../color.php:565 ../data_input.php:643 ../data_queries.php:1072 #: ../data_source_profiles.php:749 ../data_sources.php:1244 #: ../data_templates.php:800 ../gprint_presets.php:292 #: ../graph_templates.php:658 ../graph_view.php:574 ../graphs.php:1680 #: ../graphs_new.php:555 ../host.php:1368 ../host_templates.php:730 #: ../lib/html_graph.php:193 ../lib/html_tree.php:645 ../managers.php:174 #: ../managers.php:557 ../managers.php:746 ../plugins.php:313 #: ../pollers.php:541 ../sites.php:411 ../tree.php:1509 ../user_admin.php:2217 #: ../user_admin.php:2583 ../user_admin.php:2670 ../user_admin.php:2776 #: ../user_admin.php:2863 ../user_admin.php:2950 ../user_admin.php:3037 #: ../user_domains.php:645 ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 ../user_group_admin.php:2465 #: ../user_group_admin.php:2552 ../utilities.php:679 ../utilities.php:1012 #: ../utilities.php:1340 ../utilities.php:1587 ../utilities.php:2296 #: ../utilities.php:2558 #, fuzzy msgid "Clear Filters" msgstr "Filtre de recherche" #: ../aggregate_graphs.php:1116 ../aggregate_graphs.php:1435 #: ../graph_view.php:619 ../graphs.php:1058 ../lib/api_automation.php:561 #: ../user_admin.php:1006 ../user_group_admin.php:821 msgid "Graph Title" msgstr "Titre du graphique" #: ../aggregate_graphs.php:1117 ../aggregate_graphs.php:1436 #: ../automation_graph_rules.php:856 ../automation_tree_rules.php:843 #: ../data_queries.php:1153 ../data_sources.php:1406 ../data_templates.php:910 #: ../graph_templates.php:762 ../graphs.php:1788 ../host.php:1500 #: ../host_templates.php:815 ../lib/api_automation.php:273 ../pollers.php:612 #: ../sites.php:482 ../tree.php:1559 ../user_admin.php:1006 #: ../user_admin.php:1101 ../user_admin.php:1242 ../user_admin.php:1384 #: ../user_admin.php:1521 ../user_group_admin.php:675 #: ../user_group_admin.php:821 ../user_group_admin.php:966 #: ../user_group_admin.php:1109 ../user_group_admin.php:1243 msgid "ID" msgstr "" #: ../aggregate_graphs.php:1118 msgid "Included in Aggregate" msgstr "" #: ../aggregate_graphs.php:1119 ../aggregate_graphs.php:1438 #: ../graph_templates.php:765 ../graphs.php:1790 msgid "Size" msgstr "Taille" #: ../aggregate_graphs.php:1129 ../cdef.php:869 ../color.php:722 #: ../color.php:724 ../color_templates.php:566 ../data_input.php:741 #: ../data_queries.php:1173 ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 ../data_sources.php:1450 #: ../data_sources.php:1451 ../data_templates.php:930 ../gprint_presets.php:411 #: ../graph_templates.php:783 ../host_templates.php:834 #: ../include/global_settings.php:398 ../include/global_settings.php:1254 #: ../install/index.php:527 ../install/index.php:548 ../tree.php:1593 #: ../tree.php:1594 ../user_admin.php:2285 ../user_domains.php:731 #: ../user_group_admin.php:1897 ../vdef.php:864 msgid "No" msgstr "Non" #: ../aggregate_graphs.php:1129 ../cdef.php:869 ../color.php:722 #: ../color.php:724 ../color_templates.php:566 ../data_input.php:741 #: ../data_queries.php:1173 ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 ../data_sources.php:1450 #: ../data_sources.php:1451 ../data_templates.php:930 ../gprint_presets.php:411 #: ../graph_templates.php:783 ../host_templates.php:834 #: ../include/global_settings.php:398 ../include/global_settings.php:1254 #: ../install/index.php:526 ../install/index.php:527 ../install/index.php:547 #: ../install/index.php:548 ../tree.php:1593 ../tree.php:1594 #: ../user_admin.php:2283 ../user_domains.php:729 ../user_domains.php:731 #: ../user_group_admin.php:1895 ../vdef.php:864 msgid "Yes" msgstr "Oui" #: ../aggregate_graphs.php:1135 ../graphs.php:1810 #: ../lib/api_automation.php:588 msgid "No Graphs Found" msgstr "Pas de graphique trouvé" #: ../aggregate_graphs.php:1317 ../aggregate_graphs.php:1426 #: ../lib/functions.php:2550 #, fuzzy msgid "Aggregate Graphs" msgstr "Créer de nouveaux graphiques" #: ../aggregate_graphs.php:1332 ../data_sources.php:1206 ../graph_view.php:524 #: ../graphs.php:1653 ../host.php:1347 ../lib/api_automation.php:434 #: ../lib/html_graph.php:159 ../lib/html_tree.php:611 ../rrdcleaner.php:351 #: ../user_admin.php:2537 ../user_admin.php:2734 ../user_group_admin.php:2139 #: ../user_group_admin.php:2249 ../utilities.php:1555 #, fuzzy msgid "Template" msgstr "Nom du modèle" #: ../aggregate_graphs.php:1336 ../automation_devices.php:458 #: ../automation_devices.php:488 ../automation_devices.php:503 #: ../automation_devices.php:518 ../automation_graph_rules.php:711 #: ../automation_graph_rules.php:733 ../data_sources.php:1210 #: ../graphs.php:1657 ../graphs_items.php:308 ../graphs_items.php:329 #: ../host.php:1316 ../host.php:1334 ../host.php:1351 ../host.php:1385 #: ../lib/api_automation.php:143 ../lib/api_automation.php:161 #: ../lib/api_automation.php:421 ../lib/api_automation.php:438 #: ../lib/api_automation.php:998 ../lib/api_automation.php:1016 #: ../lib/html.php:1633 ../lib/html_reports.php:1388 ../managers.php:522 #: ../managers.php:734 ../user_admin.php:2541 ../user_admin.php:2738 #: ../user_group_admin.php:2143 ../user_group_admin.php:2253 #: ../utilities.php:654 ../utilities.php:1293 ../utilities.php:1559 #: ../utilities.php:1604 ../utilities.php:2267 ../utilities.php:2520 #: ../utilities.php:2533 msgid "Any" msgstr "N'importe quel" #: ../aggregate_graphs.php:1337 ../aggregate_graphs.php:1450 #: ../automation_graph_rules.php:866 ../automation_graph_rules.php:867 #: ../automation_networks.php:421 ../automation_networks.php:633 #: ../automation_tree_rules.php:855 ../data_sources.php:824 #: ../data_sources.php:1211 ../data_sources.php:1436 ../data_templates.php:932 #: ../graph_view.php:782 ../graphs.php:1326 ../graphs.php:1658 #: ../graphs_items.php:309 ../graphs_items.php:330 ../host.php:1013 #: ../host.php:1317 ../host.php:1352 ../include/global_arrays.php:330 #: ../include/global_arrays.php:383 ../include/global_arrays.php:459 #: ../include/global_arrays.php:571 ../include/global_arrays.php:594 #: ../include/global_arrays.php:1318 ../include/global_form.php:389 #: ../include/global_form.php:712 ../include/global_form.php:721 #: ../include/global_form.php:732 ../include/global_form.php:775 #: ../include/global_form.php:782 ../include/global_form.php:808 #: ../include/global_form.php:837 ../include/global_form.php:845 #: ../include/global_form.php:1032 ../include/global_form.php:1041 #: ../include/global_form.php:2097 ../include/global_form.php:2139 #: ../include/global_settings.php:445 ../include/global_settings.php:453 #: ../include/global_settings.php:900 ../include/global_settings.php:1324 #: ../lib/api_automation.php:144 ../lib/api_automation.php:422 #: ../lib/api_automation.php:439 ../lib/api_automation.php:576 #: ../lib/api_automation.php:999 ../lib/html.php:1634 ../lib/html_form.php:315 #: ../lib/html_graph.php:396 ../lib/html_reports.php:280 #: ../lib/html_reports.php:328 ../lib/html_reports.php:340 #: ../lib/html_reports.php:349 ../lib/html_reports.php:359 #: ../lib/html_tree.php:843 ../settings.php:197 ../settings.php:214 #: ../settings.php:237 ../user_admin.php:2542 ../user_admin.php:2739 #: ../user_group_admin.php:2144 ../user_group_admin.php:2254 #: ../utilities.php:1560 msgid "None" msgstr "Aucun" #: ../aggregate_graphs.php:1435 #, fuzzy msgid "The title for the Aggregate Graphs" msgstr "Le format de date à utiliser pour les graphiques" #: ../aggregate_graphs.php:1436 msgid "The internal database identifier for this object" msgstr "" #: ../aggregate_graphs.php:1437 ../graphs.php:1062 #, fuzzy msgid "Aggregate Template" msgstr "Modèle de graphique" #: ../aggregate_graphs.php:1437 msgid "The Aggregate Template that this Aggregate Graphs is based upon" msgstr "" #: ../aggregate_graphs.php:1456 #, fuzzy msgid "No Aggregate Graphs Found" msgstr "Pas de graphique trouvé" #: ../aggregate_items.php:346 msgid "Override Values for Graph Item" msgstr "" #: ../aggregate_items.php:357 ../lib/api_aggregate.php:1392 msgid "Override this Value" msgstr "" #: ../aggregate_templates.php:307 msgid "Click 'Continue' to Delete the following Aggregate Graph Template(s)." msgstr "" #: ../aggregate_templates.php:312 #, fuzzy msgid "Delete Color Template(s)" msgstr "Modèle de graphique sélectionné" #: ../aggregate_templates.php:315 #, fuzzy msgid "You must select at least one Aggregate Graph Template." msgstr "Vous devez sélectionner au moins un champ." #: ../aggregate_templates.php:351 #, php-format msgid "Aggregate Template [edit: %s]" msgstr "" #: ../aggregate_templates.php:353 #, fuzzy msgid "Aggregate Template [new]" msgstr "Nom du modèle de graphique" #: ../aggregate_templates.php:531 ../aggregate_templates.php:631 #: ../lib/functions.php:2532 #, fuzzy msgid "Aggregate Templates" msgstr "Modèles de graphique" #: ../aggregate_templates.php:544 ../automation_templates.php:418 #: ../automation_templates.php:503 ../color_templates.php:550 #: ../include/global_arrays.php:695 ../include/global_arrays.php:753 #: ../install/index.php:898 ../user_admin.php:2839 ../user_group_admin.php:2354 #, fuzzy msgid "Templates" msgstr "Modèles de graphique" #: ../aggregate_templates.php:571 ../cdef.php:746 ../color.php:559 #: ../color_templates.php:469 ../data_sources.php:1278 #: ../gprint_presets.php:286 ../graph_templates.php:652 ../vdef.php:683 #, fuzzy msgid "Has Graphs" msgstr "Graphiques" #: ../aggregate_templates.php:640 ../color_templates.php:547 msgid "Template Title" msgstr "Titre du modèle" #: ../aggregate_templates.php:641 msgid "" "Aggregate Templates that are in use can not be Deleted. In use is defined " "as being referenced by an Aggregate." msgstr "" #: ../aggregate_templates.php:641 ../cdef.php:852 ../color.php:699 #: ../color_templates.php:548 ../data_input.php:723 ../data_queries.php:1154 #: ../data_source_profiles.php:849 ../data_sources.php:1408 #: ../data_templates.php:911 ../gprint_presets.php:392 #: ../graph_templates.php:763 ../host_templates.php:816 ../vdef.php:846 #, fuzzy msgid "Deletable" msgstr "Supprimer" #: ../aggregate_templates.php:642 ../cdef.php:853 ../color.php:700 #: ../data_queries.php:912 ../data_queries.php:1155 ../gprint_presets.php:393 #: ../graph_templates.php:764 ../vdef.php:847 #, fuzzy msgid "Graphs Using" msgstr "Paramètres du graphique" #: ../aggregate_templates.php:643 ../graph_view.php:619 #: ../include/global_arrays.php:655 ../include/global_arrays.php:989 #: ../include/global_form.php:1323 ../include/global_form.php:1551 #: ../lib/html_reports.php:345 ../tree.php:1286 msgid "Graph Template" msgstr "Modèle de graphique" #: ../aggregate_templates.php:665 #, fuzzy msgid "No Aggregate Templates Found" msgstr "Pas de modèle de graphique" #: ../auth_changepassword.php:93 msgid "You cannot use a previously entered password!" msgstr "" #: ../auth_changepassword.php:110 ../auth_changepassword.php:120 msgid "Your current password is not correct. Please try again." msgstr "" #: ../auth_changepassword.php:115 ../auth_changepassword.php:125 msgid "" "Your new password cannot be the same as the old password. Please try again." msgstr "" #: ../auth_changepassword.php:131 #, fuzzy msgid "Your new passwords do not match, please retype." msgstr "Vos mot de passe ne concordent pas, veuillez resaisir :" #: ../auth_changepassword.php:224 msgid "Forced password change" msgstr "" #: ../auth_changepassword.php:228 msgid "Password requirements include:" msgstr "" #: ../auth_changepassword.php:232 #, php-format msgid "Must be at least %d characters in length" msgstr "" #: ../auth_changepassword.php:236 msgid "Must include mixed case" msgstr "" #: ../auth_changepassword.php:240 msgid "Must include at least 1 number" msgstr "" #: ../auth_changepassword.php:244 msgid "Must include at least 1 special character" msgstr "" #: ../auth_changepassword.php:248 #, php-format msgid "Cannot be reused for %d password changes" msgstr "" #: ../auth_changepassword.php:258 ../auth_changepassword.php:284 #: ../include/global_form.php:1468 ../lib/functions.php:1826 #, fuzzy msgid "Change Password" msgstr "Changer l'agent de collecte" #: ../auth_changepassword.php:290 #, fuzzy msgid "Please enter your current password and your new
    Cacti password." msgstr "Veuillez saisir un nouveau mot passe :" #: ../auth_changepassword.php:295 #, fuzzy msgid "Current password" msgstr "Actuel (ms)" #: ../auth_changepassword.php:299 #, fuzzy msgid "New password" msgstr "Mot de passe" #: ../auth_changepassword.php:303 msgid "Confirm new password" msgstr "" #: ../auth_changepassword.php:307 ../lib/html_form.php:1113 #: ../lib/html_form.php:1122 ../lib/html_graph.php:197 ../lib/html_tree.php:649 msgid "Save" msgstr "Sauvegarder" #: ../auth_changepassword.php:316 ../auth_login.php:649 #, php-format msgid "Version %1$s | %2$s" msgstr "" #: ../auth_login.php:50 msgid "" "Web Basic Authentication configured, but no username was passed from the web " "server. Please make sure you have authentication enabled on the web server." msgstr "" #: ../auth_login.php:97 #, php-format msgid "" "%s authenticated by Web Server, but both Template and Guest Users are not " "defined in Cacti." msgstr "" #: ../auth_login.php:116 ../auth_login.php:405 #, php-format msgid "LDAP Search Error: %s" msgstr "" #: ../auth_login.php:142 ../auth_login.php:445 #, php-format msgid "LDAP Error: %s" msgstr "" #: ../auth_login.php:219 ../auth_login.php:437 #, php-format msgid "Template user %s does not exist." msgstr "" #: ../auth_login.php:234 #, php-format msgid "Guest user %s does not exist." msgstr "" #: ../auth_login.php:269 msgid "Access Denied, user account disabled." msgstr "Accès refusé, compte d'utilisateur désactivé." #: ../auth_login.php:355 msgid "Access Denied, please contact you Cacti Administrator." msgstr "Accès refusé, veuillez contacter votre administrateur Cacti." #: ../auth_login.php:519 #, fuzzy msgid "Login to Cacti" msgstr "Retour à Cacti" #: ../auth_login.php:552 #, fuzzy msgid "User Login" msgstr "Dernière connection" #: ../auth_login.php:564 #, fuzzy msgid "Enter your Username and Password below" msgstr "" "Veuillez saisir votre nom d'utilisateur et votre mot de passe Cacti ci-" "dessous :" #: ../auth_login.php:570 ../auth_login.php:573 #: ../include/global_settings.php:1187 ../lib/functions.php:3801 msgid "Username" msgstr "Nom d'utilisateur" #: ../auth_login.php:578 ../include/global_form.php:1435 #: ../lib/functions.php:3802 msgid "Password" msgstr "Mot de passe" #: ../auth_login.php:590 ../include/global_settings.php:1574 #: ../lib/auth.php:287 ../lib/auth.php:299 ../lib/auth.php:310 msgid "Local" msgstr "" #: ../auth_login.php:594 ../include/global_arrays.php:582 ../lib/auth.php:311 msgid "LDAP" msgstr "LDAP" #: ../auth_login.php:605 ../user_admin.php:2266 ../user_group_admin.php:675 msgid "Realm" msgstr "" #: ../auth_login.php:621 msgid "Keep me signed in" msgstr "" #: ../auth_login.php:627 msgid "Login" msgstr "S'authentifier" #: ../auth_login.php:640 msgid "Invalid User Name/Password Please Retype" msgstr "" #: ../auth_login.php:643 msgid "User Account Disabled" msgstr "Compte désactivé" #: ../auth_profile.php:150 #, fuzzy msgid "User Account Details" msgstr "Compte désactivé" #: ../auth_profile.php:161 ../include/global_arrays.php:565 #: ../include/global_settings.php:1910 ../lib/html.php:1519 #: ../lib/html.php:1541 msgid "Tree View" msgstr "Vue en arbre" #: ../auth_profile.php:165 ../include/global_arrays.php:566 #: ../lib/html.php:1526 ../lib/html.php:1550 msgid "List View" msgstr "Vue en liste" #: ../auth_profile.php:169 ../include/global_arrays.php:567 #: ../lib/html.php:1533 msgid "Preview View" msgstr "Vue de prévisualisation" #: ../auth_profile.php:182 ../include/global_form.php:1411 #: ../user_admin.php:2263 msgid "User Name" msgstr "Nom d'utilisateur" #: ../auth_profile.php:183 ../include/global_form.php:1412 #, fuzzy msgid "The login name for this user." msgstr "Nom de cette requète." #: ../auth_profile.php:190 ../include/global_form.php:1419 #: ../user_admin.php:2264 ../user_group_admin.php:675 ../utilities.php:764 msgid "Full Name" msgstr "Nom complet" #: ../auth_profile.php:191 ../include/global_form.php:1420 msgid "" "A more descriptive name for this user, that can include spaces or special " "characters." msgstr "" #: ../auth_profile.php:198 ../include/global_form.php:1427 msgid "Email Address" msgstr "" #: ../auth_profile.php:199 msgid "An Email Address you be reached at." msgstr "" #: ../auth_profile.php:206 ../auth_profile.php:208 msgid "Clear Private Data" msgstr "" #: ../auth_profile.php:207 msgid "Clear Private Data including Column sizing." msgstr "" #: ../auth_profile.php:217 ../auth_profile.php:219 #, fuzzy msgid "Logout Everywhere" msgstr "Déconnection utilisateur" #: ../auth_profile.php:218 msgid "Clear all your Login Session Tokens." msgstr "" #: ../auth_profile.php:239 ../user_admin.php:1928 ../user_group_admin.php:1649 #, fuzzy msgid "User Settings" msgstr "Paramètres" #: ../auth_profile.php:296 #, fuzzy msgid "Private Data Cleared" msgstr "Interrogations avancées associées" #: ../auth_profile.php:296 msgid "Your Private Data has been cleared." msgstr "" #: ../auth_profile.php:316 msgid "All your login sessions have been cleared." msgstr "" #: ../auth_profile.php:316 msgid "User Sessions Cleared" msgstr "" #: ../automation_devices.php:31 #, fuzzy msgid "Add Device" msgstr "Équipement" #: ../automation_devices.php:39 ../automation_devices.php:271 #: ../automation_devices.php:389 ../automation_devices.php:399 #: ../automation_devices.php:622 ../automation_devices.php:623 ../host.php:1390 #: ../lib/api_automation.php:166 ../lib/api_automation.php:1021 #: ../lib/html_utility.php:811 msgid "Down" msgstr "" #: ../automation_devices.php:40 ../automation_devices.php:271 #: ../automation_devices.php:391 ../automation_devices.php:401 #: ../automation_devices.php:622 ../automation_devices.php:623 ../host.php:1389 #: ../lib/api_automation.php:165 ../lib/api_automation.php:1020 #: ../lib/html_utility.php:817 msgid "Up" msgstr "" #: ../automation_devices.php:90 msgid "Added manually through device automation interface." msgstr "" #: ../automation_devices.php:106 #, fuzzy msgid "Added to Cacti" msgstr "Retour à Cacti" #: ../automation_devices.php:106 ../automation_devices.php:108 #: ../data_sources.php:822 ../graph_view.php:619 ../graphs.php:1331 #: ../graphs_items.php:304 ../include/global_arrays.php:651 #: ../include/global_arrays.php:696 ../include/global_arrays.php:1434 #: ../lib/api_automation.php:417 ../lib/functions.php:3796 ../lib/html.php:1629 #: ../lib/html.php:1659 ../lib/html_reports.php:335 ../lib/html_tree.php:349 #: ../lib/html_tree.php:377 ../utilities.php:1409 msgid "Device" msgstr "Équipement" #: ../automation_devices.php:108 #, fuzzy msgid "Not Added to Cacti" msgstr "Retour à Cacti" #: ../automation_devices.php:177 msgid "Click 'Continue' to add the following Discovered device(s)." msgstr "" #: ../automation_devices.php:183 ../pollers.php:602 msgid "Pollers" msgstr "Agents collecteurs" #: ../automation_devices.php:187 #, fuzzy msgid "Select Template" msgstr "Modèle de graphique sélectionné" #: ../automation_devices.php:193 ../automation_templates.php:307 #: ../automation_templates.php:513 #, fuzzy msgid "Availability Method" msgstr "Disponibilité" #: ../automation_devices.php:199 #, fuzzy msgid "Add Device(s)" msgstr "Équipements" #: ../automation_devices.php:202 #, fuzzy msgid "You must select at least one Device." msgstr "Vous devez sélectionner au moins un champ." #: ../automation_devices.php:239 ../automation_devices.php:529 ../host.php:1303 #: ../host.php:1396 ../host.php:1489 ../include/global_arrays.php:683 #: ../include/global_arrays.php:735 ../lib/api_automation.php:172 #: ../lib/api_automation.php:466 ../lib/functions.php:2136 ../pollers.php:616 #: ../sites.php:483 ../tree.php:1567 ../user_admin.php:1234 #: ../user_admin.php:2752 ../user_group_admin.php:958 #: ../user_group_admin.php:2267 ../utilities.php:263 msgid "Devices" msgstr "Équipements" #: ../automation_devices.php:248 #, fuzzy msgid "Device Name" msgstr "Équipement" #: ../automation_devices.php:249 msgid "IP" msgstr "" #: ../automation_devices.php:250 #, fuzzy msgid "SNMP Name" msgstr "Délai maximum pour le SNMP" #: ../automation_devices.php:251 ../include/global_settings.php:1570 #, fuzzy msgid "Location" msgstr "Actions" #: ../automation_devices.php:252 msgid "Contact" msgstr "" #: ../automation_devices.php:253 ../include/global_form.php:970 #: ../include/global_form.php:1006 ../include/global_form.php:1287 #: ../include/global_form.php:1630 ../install/index.php:899 #: ../lib/api_automation.php:269 ../lib/api_automation.php:1137 #: ../managers.php:222 ../tree.php:647 ../user_admin.php:1101 #: ../user_admin.php:1242 ../user_group_admin.php:966 #: ../user_group_admin.php:1883 msgid "Description" msgstr "Description" #: ../automation_devices.php:254 ../automation_devices.php:499 msgid "OS" msgstr "" #: ../automation_devices.php:255 ../host.php:1505 #: ../include/global_arrays.php:331 msgid "Uptime" msgstr "" #: ../automation_devices.php:256 ../automation_devices.php:514 #: ../utilities.php:1605 msgid "SNMP" msgstr "SNMP" #: ../automation_devices.php:257 ../automation_devices.php:484 #: ../automation_graph_rules.php:729 ../automation_networks.php:964 #: ../automation_tree_rules.php:721 ../data_sources.php:1231 #: ../data_templates.php:915 ../host.php:686 ../host.php:778 ../host.php:1381 #: ../host.php:1503 ../lib/api_automation.php:157 ../lib/api_automation.php:271 #: ../lib/api_automation.php:560 ../lib/api_automation.php:1012 #: ../lib/api_automation.php:1140 ../lib/html_reports.php:1384 #: ../managers.php:224 ../plugins.php:282 ../plugins.php:377 ../pollers.php:614 #: ../user_admin.php:1242 ../user_group_admin.php:966 msgid "Status" msgstr "État" #: ../automation_devices.php:258 #, fuzzy msgid "Last Check" msgstr "La semaine dernière" #: ../automation_devices.php:285 ../automation_devices.php:614 #, fuzzy msgid "Not Detected" msgstr "Non sélectionné" #: ../automation_devices.php:303 ../host.php:1547 #, fuzzy msgid "No Devices Found" msgstr "Pas de graphique trouvé" #: ../automation_devices.php:439 #, fuzzy msgid "Discovery Filters" msgstr "Filtre de recherche" #: ../automation_devices.php:454 msgid "Network" msgstr "" #: ../automation_devices.php:471 msgid "Reset fields to defaults" msgstr "" #: ../automation_devices.php:474 ../color.php:571 ../lib/html_form.php:1128 #, fuzzy msgid "Export" msgstr "Export de graphique" #: ../automation_devices.php:474 #, fuzzy msgid "Export to a file" msgstr "Méthode d'exportation" #: ../automation_devices.php:477 ../lib/clog_webapi.php:120 #: ../lib/clog_webapi.php:346 ../managers.php:749 msgid "Purge" msgstr "" #: ../automation_devices.php:477 msgid "Purge Discovered Devices" msgstr "" #: ../automation_graph_rules.php:29 ../automation_snmp.php:30 #: ../automation_tree_rules.php:29 ../cdef.php:30 ../color_templates.php:29 #: ../data_templates.php:34 ../graph_templates.php:34 ../graphs.php:63 #: ../host_templates.php:31 ../include/global_arrays.php:1231 ../vdef.php:30 msgid "Duplicate" msgstr "Dupliquer" #: ../automation_graph_rules.php:30 ../automation_networks.php:33 #: ../automation_tree_rules.php:30 ../data_sources.php:38 ../host.php:39 #: ../include/global_arrays.php:1232 ../include/global_settings.php:1145 #: ../links.php:29 ../managers.php:29 ../managers.php:35 ../plugins.php:29 #: ../pollers.php:31 ../user_admin.php:30 ../user_domains.php:31 #: ../user_domains.php:402 ../user_group_admin.php:32 msgid "Enable" msgstr "Activer" #: ../automation_graph_rules.php:31 ../automation_networks.php:32 #: ../automation_tree_rules.php:31 ../data_sources.php:39 ../host.php:40 #: ../include/global_arrays.php:1233 ../links.php:30 ../managers.php:30 #: ../managers.php:34 ../plugins.php:30 ../pollers.php:30 ../user_admin.php:31 #: ../user_domains.php:30 ../user_group_admin.php:33 msgid "Disable" msgstr "Désactiver" #: ../automation_graph_rules.php:251 #, fuzzy msgid "Press 'Continue' to delete the following Graph Rules." msgstr "Êtes-vous sur de vouloir supprimer le graphique suivant ?" #: ../automation_graph_rules.php:258 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Graph Rules." msgstr "" #: ../automation_graph_rules.php:260 ../automation_tree_rules.php:262 #: ../graphs.php:851 ../graphs.php:862 #, fuzzy msgid "Title Format" msgstr "Format du titre :" #: ../automation_graph_rules.php:260 ../automation_tree_rules.php:262 msgid "rule_name" msgstr "" #: ../automation_graph_rules.php:266 ../automation_tree_rules.php:268 msgid "Click 'Continue' to enable the following Rule(s)." msgstr "" #: ../automation_graph_rules.php:268 ../automation_tree_rules.php:270 msgid "Make sure, that those rules have successfully been tested!" msgstr "" #: ../automation_graph_rules.php:274 ../automation_tree_rules.php:276 msgid "Click 'Continue' to disable the following Rule(s)." msgstr "" #: ../automation_graph_rules.php:281 ../automation_tree_rules.php:283 #, fuzzy msgid "You must select at least one Rule." msgstr "Vous devez sélectionner au moins un champ." #: ../automation_graph_rules.php:284 ../automation_tree_rules.php:286 msgid "Apply requested action" msgstr "" #: ../automation_graph_rules.php:414 ../automation_tree_rules.php:471 msgid "Are You Sure?" msgstr "Êtes vous sùr ?" #: ../automation_graph_rules.php:414 #, fuzzy, php-format msgid "Are you sure you want to delete the Rule '%s'?" msgstr "Êtes vous sùr de vouloir suprimer ce champ" #: ../automation_graph_rules.php:497 #, php-format msgid "Rule Selection [edit: %s]" msgstr "" #: ../automation_graph_rules.php:503 msgid "Rule Selection [new]" msgstr "" #: ../automation_graph_rules.php:513 ../automation_graph_rules.php:528 #: ../automation_graph_rules.php:544 ../automation_tree_rules.php:379 #: ../automation_tree_rules.php:529 msgid "Don't Show" msgstr "" #: ../automation_graph_rules.php:513 msgid "Rule Details." msgstr "" #: ../automation_graph_rules.php:528 msgid "Matching Devices." msgstr "" #: ../automation_graph_rules.php:544 msgid "Matching Objects." msgstr "" #: ../automation_graph_rules.php:580 msgid "Device Selection Criteria" msgstr "" #: ../automation_graph_rules.php:586 msgid "Graph Creation Criteria" msgstr "" #: ../automation_graph_rules.php:692 ../automation_graph_rules.php:739 #: ../automation_graph_rules.php:846 ../include/global_arrays.php:706 #: ../include/global_form.php:1571 ../lib/functions.php:2586 #, fuzzy msgid "Graph Rules" msgstr "Elements graphiques" #: ../automation_graph_rules.php:707 ../automation_graph_rules.php:857 #: ../include/global_arrays.php:992 ../include/global_form.php:1561 #: ../include/global_form.php:2176 msgid "Data Query" msgstr "Interrogation avancée" #: ../automation_graph_rules.php:734 ../automation_graph_rules.php:859 #: ../automation_networks.php:496 ../automation_tree_rules.php:848 #: ../automation_tree_rules.php:866 ../data_sources.php:1236 ../host.php:1386 #: ../include/global_arrays.php:614 ../include/global_form.php:1443 #: ../include/global_settings.php:339 ../lib/api_automation.php:162 #: ../lib/api_automation.php:1017 ../lib/html_reports.php:1389 #: ../lib/html_reports.php:1482 ../lib/html_reports.php:1493 #: ../lib/html_reports.php:1529 ../links.php:381 ../managers.php:249 #: ../managers.php:628 ../user_admin.php:1101 ../user_admin.php:1113 #: ../user_admin.php:2265 ../user_domains.php:341 ../user_domains.php:718 #: ../user_group_admin.php:87 ../user_group_admin.php:675 #: ../user_group_admin.php:690 ../user_group_admin.php:1887 #: ../utilities.php:2142 msgid "Enabled" msgstr "Activé" #: ../automation_graph_rules.php:735 ../automation_networks.php:979 #: ../automation_tree_rules.php:866 ../data_sources.php:1237 #: ../data_templates.php:934 ../host.php:1387 ../include/global_arrays.php:613 #: ../include/global_arrays.php:1159 ../include/global_arrays.php:1442 #: ../include/global_settings.php:339 ../include/global_settings.php:1021 #: ../include/global_settings.php:1035 ../include/global_settings.php:1047 #: ../include/global_settings.php:1072 ../include/global_settings.php:1086 #: ../include/global_settings.php:1145 ../include/global_settings.php:1764 #: ../lib/api_automation.php:163 ../lib/api_automation.php:1018 #: ../lib/html_reports.php:1390 ../lib/html_reports.php:1529 #: ../lib/html_utility.php:807 ../managers.php:249 ../managers.php:628 #: ../pollers.php:40 ../user_admin.php:1113 ../user_domains.php:402 #: ../user_group_admin.php:690 ../utilities.php:2142 msgid "Disabled" msgstr "Désactivé" #: ../automation_graph_rules.php:855 ../automation_tree_rules.php:842 #, fuzzy msgid "Rule Name" msgstr "Nom complet" #: ../automation_graph_rules.php:855 #, fuzzy msgid "The name of this rule." msgstr "Le nom donné à ce modèle de graphique." #: ../automation_graph_rules.php:856 msgid "" "The internal database ID for this rule. Useful in performing debugging and " "automation." msgstr "" #: ../automation_graph_rules.php:858 ../include/global_form.php:1803 #: ../include/global_form.php:1886 ../include/global_form.php:1988 #: ../include/global_form.php:2187 #, fuzzy msgid "Graph Type" msgstr "Type de l'élément graphique" #: ../automation_graph_rules.php:881 #, fuzzy msgid "No Graph Rules Found" msgstr "Pas de graphique trouvé" #: ../automation_networks.php:34 msgid "Discover Now" msgstr "" #: ../automation_networks.php:35 msgid "Cancel Discovery" msgstr "" #: ../automation_networks.php:185 #, php-format msgid "ERROR: You must specificy the day of the week. Disabling Network %s!." msgstr "" #: ../automation_networks.php:191 #, php-format msgid "" "ERROR: You must specificy both the Months and Days of Month. Disabling " "Network %s!." msgstr "" #: ../automation_networks.php:197 #, php-format msgid "" "ERROR: You must specificy the Months, Weeks of Months, and Days of Week. " "Disabling Network %s!." msgstr "" #: ../automation_networks.php:215 #, php-format msgid "ERROR: Network '%s' is Invalid." msgstr "" #: ../automation_networks.php:312 msgid "Click 'Continue' to delete the following Network(s)." msgstr "" #: ../automation_networks.php:319 msgid "Click 'Continue' to enable the following Network(s)." msgstr "" #: ../automation_networks.php:326 msgid "Click 'Continue' to disable the following Network(s)." msgstr "" #: ../automation_networks.php:333 msgid "Click 'Continue' to discover the following Network(s)." msgstr "" #: ../automation_networks.php:340 msgid "Click 'Continue' to cancel on going Network Discovery(s)." msgstr "" #: ../automation_networks.php:347 #, fuzzy msgid "You must select at least one Network." msgstr "Vous devez sélectionner au moins un champ." #: ../automation_networks.php:378 ../automation_networks.php:952 #: ../tree.php:1087 msgid "Manual" msgstr "" #: ../automation_networks.php:379 ../automation_networks.php:953 #: ../include/global_arrays.php:500 msgid "Daily" msgstr "" #: ../automation_networks.php:380 ../automation_networks.php:954 #, fuzzy msgid "Weekly" msgstr "Une semaine" #: ../automation_networks.php:381 ../automation_networks.php:955 #, fuzzy msgid "Monthly" msgstr "Un moi" #: ../automation_networks.php:382 ../automation_networks.php:956 msgid "Monthly on Day" msgstr "" #: ../automation_networks.php:386 #, php-format msgid "Network Discovery Range [edit: %s]" msgstr "" #: ../automation_networks.php:388 msgid "Network Discovery Range [new]" msgstr "" #: ../automation_networks.php:395 ../include/global_form.php:1855 #: ../include/global_form.php:1955 ../include/global_settings.php:51 #: ../lib/html_reports.php:30 #, fuzzy msgid "General Settings" msgstr "Paramètres du graphique" #: ../automation_networks.php:400 ../automation_snmp.php:645 #: ../data_input.php:468 ../data_input.php:502 ../data_queries.php:594 #: ../data_queries.php:690 ../data_queries.php:910 #: ../data_source_profiles.php:486 ../graph_templates.php:423 #: ../include/global_form.php:35 ../include/global_form.php:104 #: ../include/global_form.php:154 ../include/global_form.php:174 #: ../include/global_form.php:215 ../include/global_form.php:339 #: ../include/global_form.php:366 ../include/global_form.php:473 #: ../include/global_form.php:930 ../include/global_form.php:962 #: ../include/global_form.php:1259 ../include/global_form.php:1279 #: ../include/global_form.php:1349 ../include/global_form.php:1377 #: ../include/global_form.php:2070 ../include/global_form.php:2168 #: ../include/global_form.php:2215 ../install/index.php:466 #: ../install/index.php:543 ../install/index.php:899 ../lib/vdef.php:74 #: ../managers.php:607 ../pollers.php:52 ../sites.php:40 ../user_admin.php:1101 #: ../user_domains.php:317 ../utilities.php:466 ../utilities.php:2338 msgid "Name" msgstr "Nom" #: ../automation_networks.php:401 msgid "Give this Network a meaningful name." msgstr "" #: ../automation_networks.php:404 msgid "New Network Discovery Range" msgstr "" #: ../automation_networks.php:408 ../automation_networks.php:961 #: ../host.php:1330 #, fuzzy msgid "Data Collector" msgstr "Sélecteur de date de fin" #: ../automation_networks.php:409 ../include/global_form.php:1022 msgid "" "Choose the Cacti Data Collector/Poller to be used to gather data from this " "Device." msgstr "" #: ../automation_networks.php:416 #, fuzzy msgid "Associated Site" msgstr "RRA associés" #: ../automation_networks.php:417 msgid "" "Choose the Cacti Site that you wish to associate discovered Devices with." msgstr "" #: ../automation_networks.php:425 msgid "Subnet Range" msgstr "" #: ../automation_networks.php:426 msgid "" "Enter valid Network Ranges separated by commas. You may use an IP address, " "a Network range such as 192.168.1.0/24 or 192.168.1.0/255.255.255.0, or " "using wildcards such as 192.168.*.*" msgstr "" #: ../automation_networks.php:435 msgid "Total IP Addresses" msgstr "" #: ../automation_networks.php:436 msgid "Total addressable IP Addresses in this Network Range." msgstr "" #: ../automation_networks.php:441 msgid "Alternate DNS Servers" msgstr "" #: ../automation_networks.php:442 msgid "" "A space delimited list of alternate DNS Servers to use for DNS resolution. " "If blank, the poller OS will be used to resolve DNS names." msgstr "" #: ../automation_networks.php:445 msgid "Enter IPs or FQDNs of DNS Servers" msgstr "" #: ../automation_networks.php:449 msgid "Schedule Type" msgstr "" #: ../automation_networks.php:450 msgid "Define the collection frequency." msgstr "" #: ../automation_networks.php:457 msgid "Discovery Threads" msgstr "" #: ../automation_networks.php:458 msgid "Define the number of threads to use for discovering this Network Range." msgstr "" #: ../automation_networks.php:461 #, php-format msgid "%d Thread" msgstr "" #: ../automation_networks.php:462 ../automation_networks.php:463 #: ../automation_networks.php:464 ../automation_networks.php:465 #: ../automation_networks.php:466 ../automation_networks.php:467 #: ../automation_networks.php:468 ../automation_networks.php:469 #: ../automation_networks.php:470 ../automation_networks.php:471 #: ../automation_networks.php:472 ../include/global_arrays.php:548 #: ../include/global_arrays.php:549 ../include/global_arrays.php:550 #: ../include/global_arrays.php:551 ../include/global_arrays.php:552 #, php-format msgid "%d Threads" msgstr "" #: ../automation_networks.php:478 #, fuzzy msgid "Run Limit" msgstr "Limite inférieure" #: ../automation_networks.php:479 msgid "After the selected Run Limit, the discovery process will be terminated." msgstr "" #: ../automation_networks.php:482 #, php-format msgid "%d Minute" msgstr "" #: ../automation_networks.php:483 ../automation_networks.php:484 #: ../automation_networks.php:485 ../automation_networks.php:486 #: ../data_sources.php:1071 ../include/global_arrays.php:490 #: ../include/global_arrays.php:491 ../include/global_arrays.php:492 #: ../include/global_arrays.php:493 ../include/global_arrays.php:523 #: ../include/global_arrays.php:524 ../include/global_arrays.php:525 #: ../include/global_arrays.php:526 ../include/global_arrays.php:527 #: ../include/global_arrays.php:528 ../include/global_arrays.php:846 #: ../include/global_arrays.php:847 ../include/global_arrays.php:1166 #: ../include/global_arrays.php:1170 ../include/global_arrays.php:1178 #: ../include/global_arrays.php:1179 ../include/global_arrays.php:1201 #: ../include/global_arrays.php:1202 ../include/global_arrays.php:1203 #: ../include/global_arrays.php:1204 ../include/global_arrays.php:1205 #: ../include/global_arrays.php:1216 ../include/global_settings.php:1088 #: ../include/global_settings.php:1089 ../include/global_settings.php:1090 #: ../include/global_settings.php:1091 ../include/global_settings.php:1092 #: ../include/global_settings.php:1837 #, php-format msgid "%d Minutes" msgstr "" #: ../automation_networks.php:487 ../include/global_arrays.php:1071 #, fuzzy, php-format msgid "%d Hour" msgstr "La dernière heure" #: ../automation_networks.php:488 ../automation_networks.php:489 #: ../automation_networks.php:490 ../data_source_profiles.php:656 #: ../include/global_arrays.php:495 ../include/global_arrays.php:496 #: ../include/global_arrays.php:497 ../include/global_arrays.php:498 #: ../include/global_arrays.php:499 ../include/global_arrays.php:530 #: ../include/global_arrays.php:531 ../include/global_arrays.php:532 #: ../include/global_arrays.php:533 ../include/global_arrays.php:1072 #: ../include/global_arrays.php:1073 ../include/global_arrays.php:1074 #: ../include/global_arrays.php:1075 ../include/global_arrays.php:1118 #: ../include/global_arrays.php:1119 ../include/global_arrays.php:1120 #: ../include/global_arrays.php:1121 ../include/global_arrays.php:1122 #: ../include/global_arrays.php:1139 ../include/global_arrays.php:1140 #: ../include/global_arrays.php:1141 ../include/global_arrays.php:1142 #: ../include/global_arrays.php:1143 ../include/global_settings.php:1094 #: ../include/global_settings.php:1095 ../include/global_settings.php:1096 #: ../include/global_settings.php:1097 #, php-format msgid "%d Hours" msgstr "" #: ../automation_networks.php:497 msgid "Enable this Network Range Enabled." msgstr "" #: ../automation_networks.php:502 #, fuzzy msgid "Enable NetBIOS" msgstr "Activer" #: ../automation_networks.php:503 msgid "Use NetBIOS to attempt to result the hostname of up hosts." msgstr "" #: ../automation_networks.php:509 msgid "Automatically Add to Cacti" msgstr "" #: ../automation_networks.php:510 msgid "" "For any newly discovered Devices that are reachable using SNMP and who match " "a Device Rule, add them to Cacti." msgstr "" #: ../automation_networks.php:515 #, fuzzy msgid "Rerun Data Queries" msgstr "Interrogations avancées" #: ../automation_networks.php:516 msgid "" "If a device, previously added to Cacti, is found, rerun its data queries." msgstr "" #: ../automation_networks.php:521 msgid "Discovery Timing" msgstr "" #: ../automation_networks.php:526 #, fuzzy msgid "Starting Date/Time" msgstr "Type de tri" #: ../automation_networks.php:527 msgid "What time will this Network discover item start?" msgstr "" #: ../automation_networks.php:535 msgid "Rerun Every" msgstr "" #: ../automation_networks.php:536 msgid "Rerun discovery for this Network Range every X." msgstr "" #: ../automation_networks.php:551 #, fuzzy msgid "Days of Week" msgstr "La semaine dernière" #: ../automation_networks.php:552 ../automation_networks.php:610 msgid "What Day(s) of the week will this Network Range be discovered." msgstr "" #: ../automation_networks.php:554 ../automation_networks.php:612 #: ../include/global_arrays.php:1492 msgid "Sunday" msgstr "" #: ../automation_networks.php:555 ../automation_networks.php:613 #: ../include/global_arrays.php:1493 msgid "Monday" msgstr "" #: ../automation_networks.php:556 ../automation_networks.php:614 #: ../include/global_arrays.php:1494 msgid "Tuesday" msgstr "" #: ../automation_networks.php:557 ../automation_networks.php:615 #: ../include/global_arrays.php:1495 msgid "Wednesday" msgstr "" #: ../automation_networks.php:558 ../automation_networks.php:616 #: ../include/global_arrays.php:1496 msgid "Thursday" msgstr "" #: ../automation_networks.php:559 ../automation_networks.php:617 #: ../include/global_arrays.php:1497 msgid "Friday" msgstr "" #: ../automation_networks.php:560 ../automation_networks.php:618 #: ../include/global_arrays.php:1498 msgid "Saturday" msgstr "" #: ../automation_networks.php:567 msgid "Months of Year" msgstr "" #: ../automation_networks.php:568 msgid "What Months(s) of the Year will this Network Range be discovered." msgstr "" #: ../automation_networks.php:570 ../include/global_arrays.php:1462 msgid "January" msgstr "" #: ../automation_networks.php:571 ../include/global_arrays.php:1463 msgid "February" msgstr "" #: ../automation_networks.php:572 ../include/global_arrays.php:1464 #, fuzzy msgid "March" msgstr "Rechercher :" #: ../automation_networks.php:573 ../include/global_arrays.php:1465 msgid "April" msgstr "" #: ../automation_networks.php:574 ../include/global_arrays.php:1466 msgid "May" msgstr "" #: ../automation_networks.php:575 ../include/global_arrays.php:1467 msgid "June" msgstr "" #: ../automation_networks.php:576 ../include/global_arrays.php:1468 msgid "July" msgstr "" #: ../automation_networks.php:577 ../include/global_arrays.php:1469 msgid "August" msgstr "" #: ../automation_networks.php:578 ../include/global_arrays.php:1470 msgid "September" msgstr "" #: ../automation_networks.php:579 ../include/global_arrays.php:1471 msgid "October" msgstr "" #: ../automation_networks.php:580 ../include/global_arrays.php:1472 msgid "November" msgstr "" #: ../automation_networks.php:581 ../include/global_arrays.php:1473 msgid "December" msgstr "" #: ../automation_networks.php:588 #, fuzzy msgid "Days of Month" msgstr "Le moi dernier" #: ../automation_networks.php:589 msgid "What Day(s) of the Month will this Network Range be discovered." msgstr "" #: ../automation_networks.php:590 ../automation_networks.php:602 #, fuzzy msgid "Last" msgstr "Hier" #: ../automation_networks.php:596 msgid "Week(s) of Month" msgstr "" #: ../automation_networks.php:597 msgid "What Week(s) of the Month will this Network Range be discovered." msgstr "" #: ../automation_networks.php:599 msgid "First" msgstr "" #: ../automation_networks.php:600 msgid "Second" msgstr "" #: ../automation_networks.php:601 msgid "Third" msgstr "" #: ../automation_networks.php:609 #, fuzzy msgid "Day(s) of Week" msgstr "La semaine dernière" #: ../automation_networks.php:625 #, fuzzy msgid "Reachability Settings" msgstr "Paramètres de Cacti" #: ../automation_networks.php:630 ../include/global_arrays.php:708 #: ../include/global_form.php:1062 ../include/global_form.php:1662 #, fuzzy msgid "SNMP Options" msgstr "Options FTP" #: ../automation_networks.php:631 msgid "Select the SNMP Options to use for discovery of this Network Range." msgstr "" #: ../automation_networks.php:637 ../include/global_form.php:1187 #, fuzzy msgid "Ping Method" msgstr "Méthode :" #: ../automation_networks.php:638 msgid "The type of ping packet to send." msgstr "" #: ../automation_networks.php:646 ../include/global_form.php:1197 #: ../include/global_settings.php:561 #, fuzzy msgid "Ping Port" msgstr "Port FTP" #: ../automation_networks.php:648 ../include/global_form.php:1199 msgid "TCP or UDP port to attempt connection." msgstr "" #: ../automation_networks.php:654 ../include/global_form.php:1205 #: ../include/global_settings.php:569 msgid "Ping Timeout Value" msgstr "Délai maxi" #: ../automation_networks.php:655 ../include/global_form.php:1206 #: ../include/global_settings.php:570 msgid "" "The timeout value to use for host ICMP and UDP pinging. This host SNMP " "timeout value applies for SNMP pings." msgstr "" #: ../automation_networks.php:663 ../include/global_form.php:1214 #: ../include/global_settings.php:577 msgid "Ping Retry Count" msgstr "" #: ../automation_networks.php:664 ../include/global_form.php:1215 msgid "" "After an initial failure, the number of ping retries Cacti will attempt " "before failing." msgstr "" #: ../automation_networks.php:704 msgid "Select the days(s) of the week" msgstr "" #: ../automation_networks.php:714 msgid "Select the month(s) of the year" msgstr "" #: ../automation_networks.php:724 msgid "Select the day(s) of the month" msgstr "" #: ../automation_networks.php:734 msgid "Select the week(s) of the month" msgstr "" #: ../automation_networks.php:744 msgid "Select the day(s) of the week" msgstr "" #: ../automation_networks.php:817 ../automation_networks.php:834 msgid "every X Days" msgstr "" #: ../automation_networks.php:817 ../automation_networks.php:834 msgid "every X Weeks" msgstr "" #: ../automation_networks.php:818 msgid "every X Days." msgstr "" #: ../automation_networks.php:818 ../automation_networks.php:835 #, fuzzy msgid "every X." msgstr "Jamais" #: ../automation_networks.php:835 msgid "every X Weeks." msgstr "" #: ../automation_networks.php:933 #, fuzzy msgid "Network Filters" msgstr "Filtre de recherche" #: ../automation_networks.php:943 ../automation_networks.php:1067 #: ../include/global_arrays.php:703 msgid "Networks" msgstr "" #: ../automation_networks.php:960 #, fuzzy msgid "Network Name" msgstr "Nom d'utilisateur" #: ../automation_networks.php:962 msgid "Schedule" msgstr "" #: ../automation_networks.php:963 msgid "Total IPs" msgstr "" #: ../automation_networks.php:964 msgid "The Current Status of this Networks Discovery" msgstr "" #: ../automation_networks.php:965 msgid "Pending/Running/Done" msgstr "" #: ../automation_networks.php:965 msgid "Progress" msgstr "" #: ../automation_networks.php:966 #, fuzzy msgid "Up/SNMP Hosts" msgstr "Pas de machines" #: ../automation_networks.php:967 msgid "Threads" msgstr "" #: ../automation_networks.php:968 #, fuzzy msgid "Last Runtime" msgstr "Le moi dernier" #: ../automation_networks.php:969 msgid "Next Start" msgstr "" #: ../automation_networks.php:970 #, fuzzy msgid "Last Started" msgstr "L'année dernière" #: ../automation_networks.php:995 ../pollers.php:37 ../utilities.php:1952 msgid "Running" msgstr "" #: ../automation_networks.php:1015 ../pollers.php:38 ../utilities.php:1951 msgid "Idle" msgstr "" #: ../automation_networks.php:1030 ../automation_snmp.php:705 #: ../automation_snmp.php:706 ../automation_snmp.php:707 #: ../automation_snmp.php:708 ../automation_snmp.php:709 #: ../automation_snmp.php:710 ../lib/html.php:937 ../user_admin.php:2278 #: ../utilities.php:406 ../utilities.php:792 ../utilities.php:2015 #: ../utilities.php:2115 ../utilities.php:2118 ../utilities.php:2121 #: ../utilities.php:2127 ../utilities.php:2358 msgid "N/A" msgstr "" #: ../automation_networks.php:1036 #, fuzzy msgid "No Networks Found" msgstr "Pas de graphique trouvé" #: ../automation_networks.php:1085 #, fuzzy msgid "Clear Filtered" msgstr "Filtre de recherche" #: ../automation_snmp.php:225 #, fuzzy msgid "You must select at least one SNMP Option." msgstr "Vous devez sélectionner au moins un champ." #: ../automation_snmp.php:233 msgid "Click 'Continue' to delete the following SNMP Option(s)." msgstr "" #: ../automation_snmp.php:240 msgid "" "Click 'Continue' to duplicate the following SNMP Options. You can optionally " "change the title format for the new SNMP Options." msgstr "" #: ../automation_snmp.php:242 #, fuzzy msgid "Name Format" msgstr "Format du titre :" #: ../automation_snmp.php:242 #, fuzzy msgid "name" msgstr "Nom de machine" #: ../automation_snmp.php:348 msgid "Click 'Continue' to delete the following SNMP Option Item." msgstr "" #: ../automation_snmp.php:349 #, fuzzy msgid "SNMP Option:" msgstr "Modifier les options SNMP" #: ../automation_snmp.php:350 #, fuzzy, php-format msgid "SNMP Version: %s" msgstr "Version de SNMP" #: ../automation_snmp.php:351 #, php-format msgid "SNMP Community/Username: %s" msgstr "" #: ../automation_snmp.php:357 msgid "Remove SNMP Item" msgstr "" #: ../automation_snmp.php:416 #, php-format msgid "SNMP Options [edit: %s]" msgstr "" #: ../automation_snmp.php:418 #, fuzzy msgid "SNMP Options [new]" msgstr "Modifier les options SNMP" #: ../automation_snmp.php:434 ../include/global_form.php:1067 #: ../include/global_form.php:1667 msgid "SNMP Version" msgstr "Version de SNMP" #: ../automation_snmp.php:435 #, fuzzy msgid "Choose the SNMP version for this host." msgstr "Choisisser le parent pour cet entête / graphique" #: ../automation_snmp.php:443 #, fuzzy msgid "SNMP Community String" msgstr "Comunnauté SNMP" #: ../automation_snmp.php:444 msgid "Fill in the SNMP read community for this device." msgstr "" #: ../automation_snmp.php:452 ../include/global_form.php:1147 #: ../include/global_form.php:1737 msgid "SNMP Port" msgstr "Port SNMP" #: ../automation_snmp.php:453 msgid "The UDP/TCP Port to poll the SNMP agent on." msgstr "" #: ../automation_snmp.php:461 ../include/global_form.php:1156 #: ../include/global_form.php:1746 msgid "SNMP Timeout" msgstr "Délai maximum pour le SNMP" #: ../automation_snmp.php:462 ../include/global_form.php:1157 #: ../include/global_form.php:1747 msgid "" "The maximum number of milliseconds Cacti will wait for an SNMP response " "(does not work with php-snmp support)." msgstr "" "Le temps maximum (en ms) que Cacti attendra sur une réponse SNMP (ne " "fonctionne pas avec le support php-snmp)." #: ../automation_snmp.php:470 #, fuzzy msgid "SNMP Retries" msgstr "Version de SNMP" #: ../automation_snmp.php:471 msgid "" "The maximum number of attempts to reach a device via an SNMP readstring " "prior to giving up." msgstr "" #: ../automation_snmp.php:479 msgid "Maximum OID's Per Get Request" msgstr "" #: ../automation_snmp.php:480 ../include/global_form.php:1166 msgid "" "Specified the number of OIDs that can be obtained in a single SNMP Get " "request." msgstr "" #: ../automation_snmp.php:488 ../include/global_form.php:1086 #: ../include/global_form.php:1686 #, fuzzy msgid "SNMP Username (v3)" msgstr "Nom d'utilisateur" #: ../automation_snmp.php:489 ../include/global_form.php:1087 #: ../include/global_form.php:1687 #, fuzzy msgid "SNMP v3 username for this device." msgstr "Un nom pratique pour cet arbre de graphique." #: ../automation_snmp.php:497 ../include/global_form.php:1095 #, fuzzy msgid "SNMP Password (v3)" msgstr "Mot de passe FTP" #: ../automation_snmp.php:498 msgid "SNMP v3 password for this device." msgstr "" #: ../automation_snmp.php:506 ../include/global_form.php:1104 #: ../include/global_form.php:1704 msgid "SNMP Auth Protocol (v3)" msgstr "" #: ../automation_snmp.php:507 ../include/global_settings.php:499 msgid "Choose the SNMPv3 Authorization Protocol." msgstr "" #: ../automation_snmp.php:514 ../include/global_form.php:1112 msgid "SNMP Privacy Passphrase (v3)" msgstr "" #: ../automation_snmp.php:515 ../include/global_form.php:1713 #: ../include/global_settings.php:506 msgid "Choose the SNMPv3 Privacy Passphrase." msgstr "" #: ../automation_snmp.php:523 ../include/global_form.php:1121 #: ../include/global_form.php:1721 msgid "SNMP Privacy Protocol (v3)" msgstr "" #: ../automation_snmp.php:524 ../include/global_settings.php:513 msgid "Choose the SNMPv3 Privacy Protocol." msgstr "" #: ../automation_snmp.php:531 #, fuzzy msgid "SNMP Context" msgstr "Comunnauté SNMP" #: ../automation_snmp.php:532 #, fuzzy msgid "Enter the SNMP Context to use for this device." msgstr "" "Saisissez le numéro de port UDP à utiliser le SNMP (par défaut le 161)." #: ../automation_snmp.php:544 ../include/global_form.php:921 #: ../include/global_form.php:2117 ../include/global_form.php:2159 #: ../include/global_form.php:2313 ../lib/api_automation.php:1207 #: ../lib/api_automation.php:1269 ../lib/api_automation.php:1332 #: ../lib/html_reports.php:399 ../lib/html_reports.php:1210 msgid "Sequence" msgstr "" #: ../automation_snmp.php:545 ../lib/html_reports.php:400 msgid "Sequence of Item." msgstr "" #: ../automation_snmp.php:632 #, fuzzy, php-format msgid "SNMP Option Set [edit: %s]" msgstr "Modifier les options SNMP" #: ../automation_snmp.php:634 #, fuzzy msgid "SNMP Option Set [new]" msgstr "Modifier les options SNMP" #: ../automation_snmp.php:646 msgid "Fill in the name of this SNMP Option Set." msgstr "" #: ../automation_snmp.php:671 ../automation_snmp.php:820 #, fuzzy msgid "Automation SNMP Options" msgstr "Modifier les options SNMP" #: ../automation_snmp.php:674 ../cdef.php:584 ../lib/api_automation.php:1206 #: ../lib/api_automation.php:1268 ../lib/api_automation.php:1331 #: ../lib/html_reports.php:1209 ../vdef.php:564 msgid "Item" msgstr "Élément" #: ../automation_snmp.php:675 ../include/auth.php:154 #: ../include/global_settings.php:469 ../permission_denied.php:67 #: ../plugins.php:379 msgid "Version" msgstr "Version" #: ../automation_snmp.php:676 ../include/global_settings.php:476 #, fuzzy msgid "Community" msgstr "Comunnauté SNMP" #: ../automation_snmp.php:677 ../lib/functions.php:3797 #, fuzzy msgid "Port" msgstr "Port FTP" #: ../automation_snmp.php:678 ../include/global_settings.php:518 #, fuzzy msgid "Timeout" msgstr "Délai maximum pour le SNMP" #: ../automation_snmp.php:679 ../include/global_settings.php:534 msgid "Retries" msgstr "" #: ../automation_snmp.php:680 msgid "Max OIDS" msgstr "" #: ../automation_snmp.php:681 #, fuzzy msgid "Auth Username" msgstr "Nom d'utilisateur" #: ../automation_snmp.php:682 #, fuzzy msgid "Auth Password" msgstr "Mot de passe" #: ../automation_snmp.php:683 msgid "Auth Protocol" msgstr "" #: ../automation_snmp.php:684 msgid "Priv Passphrase" msgstr "" #: ../automation_snmp.php:685 msgid "Priv Protocol" msgstr "" #: ../automation_snmp.php:686 msgid "Context" msgstr "" #: ../automation_snmp.php:687 ../data_queries.php:914 ../utilities.php:1600 #, fuzzy msgid "Action" msgstr "Actions" #: ../automation_snmp.php:700 msgid "none" msgstr "" #: ../automation_snmp.php:715 ../automation_templates.php:545 ../cdef.php:607 #: ../color_templates.php:110 ../data_queries.php:624 ../data_queries.php:722 #: ../lib/api_automation.php:1233 ../lib/api_automation.php:1296 #: ../lib/api_automation.php:1360 ../lib/html.php:959 #: ../lib/html_reports.php:1284 ../lib/html_reports.php:1286 ../tree.php:1578 #: ../tree.php:1582 ../tree.php:1585 ../tree.php:1586 ../vdef.php:588 msgid "Move Down" msgstr "" #: ../automation_snmp.php:721 ../automation_templates.php:551 ../cdef.php:613 #: ../color_templates.php:116 ../data_queries.php:629 ../data_queries.php:727 #: ../lib/api_automation.php:1239 ../lib/api_automation.php:1302 #: ../lib/api_automation.php:1366 ../lib/html.php:964 #: ../lib/html_reports.php:1286 ../lib/html_reports.php:1288 ../vdef.php:594 msgid "Move Up" msgstr "" #: ../automation_snmp.php:735 #, fuzzy msgid "No SNMP Items" msgstr "Aucuns éléments" #: ../automation_snmp.php:770 #, fuzzy msgid "Delete SNMP Option Item" msgstr "Modifier les options SNMP" #: ../automation_snmp.php:834 #, fuzzy msgid "SNMP Rules" msgstr "Version de SNMP" #: ../automation_snmp.php:923 #, fuzzy msgid "SNMP Option Sets" msgstr "Modifier les options SNMP" #: ../automation_snmp.php:932 #, fuzzy msgid "SNMP Option Set" msgstr "Modifier les options SNMP" #: ../automation_snmp.php:933 msgid "Networks Using" msgstr "" #: ../automation_snmp.php:934 msgid "SNMP Entries" msgstr "" #: ../automation_snmp.php:935 msgid "V1 Entries" msgstr "" #: ../automation_snmp.php:936 msgid "V2 Entries" msgstr "" #: ../automation_snmp.php:937 msgid "V3 Entries" msgstr "" #: ../automation_snmp.php:957 msgid "No SNMP Option Sets Found" msgstr "" #: ../automation_templates.php:190 msgid "Click 'Continue' to delete the folling Automation Template(s)." msgstr "" #: ../automation_templates.php:195 #, fuzzy msgid "Delete Automation Template(s)" msgstr "Modèle de graphique sélectionné" #: ../automation_templates.php:198 #, fuzzy msgid "You must select at least one Automation Template." msgstr "Vous devez sélectionner au moins un champ." #: ../automation_templates.php:300 ../include/global_arrays.php:993 #: ../include/global_form.php:1038 ../include/global_form.php:1546 #: ../lib/html_reports.php:325 #, fuzzy msgid "Device Template" msgstr "Modèle d'utilisateur" #: ../automation_templates.php:301 msgid "Select a Device Template that Devices will be matched to." msgstr "" #: ../automation_templates.php:308 msgid "Choose the Availability Method to use for Discovered Devices." msgstr "" #: ../automation_templates.php:315 ../automation_templates.php:514 #, fuzzy msgid "System Description Match" msgstr "Description" #: ../automation_templates.php:316 msgid "" "This is a unique string that will be matched to a devices sysDescr string to " "pair it to this Discovery Template. Any Perl regular expression can be used " "in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:322 ../automation_templates.php:515 msgid "System Name Match" msgstr "" #: ../automation_templates.php:323 msgid "" "This is a unique string that will be matched to a devices sysName string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:329 msgid "System OID Match" msgstr "" #: ../automation_templates.php:330 msgid "" "This is a unique string that will be matched to a devices sysOid string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:350 #, php-format msgid "Automation Templates [edit: %s]" msgstr "" #: ../automation_templates.php:352 msgid "Automation Templates [new]" msgstr "" #: ../automation_templates.php:403 msgid "Device Automation Templates" msgstr "" #: ../automation_templates.php:512 ../data_sources.php:1410 ../graphs.php:1789 #: ../user_admin.php:1384 ../user_group_admin.php:1109 msgid "Template Name" msgstr "Nom du modèle" #: ../automation_templates.php:516 msgid "System ObjectId Match" msgstr "" #: ../automation_templates.php:520 ../data_queries.php:595 #: ../data_queries.php:691 ../links.php:382 ../tree.php:1563 msgid "Order" msgstr "" #: ../automation_templates.php:530 #, fuzzy msgid "Unknown Template" msgstr "Modèle d'utilisateur" #: ../automation_templates.php:565 msgid "No Automation Device Templates Found" msgstr "" #: ../automation_tree_rules.php:253 #, fuzzy msgid "Click 'Continue' to delete the following Rule(s)." msgstr "Etes vous de vouloir supprimer les équipements suivants ?" #: ../automation_tree_rules.php:260 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Rules." msgstr "" #: ../automation_tree_rules.php:379 #, fuzzy msgid "Created Trees" msgstr "Arbres des graphiques" #: ../automation_tree_rules.php:471 #, fuzzy, php-format msgid "Are you sure you want to DELETE the Rule '%s'?" msgstr "Êtes vous sùr de vouloir suprimer ce champ" #: ../automation_tree_rules.php:529 msgid "Eligible Objects" msgstr "" #: ../automation_tree_rules.php:542 #, php-format msgid "Tree Rule Selection [edit: %s]" msgstr "" #: ../automation_tree_rules.php:544 msgid "Tree Rules Selection [new]" msgstr "" #: ../automation_tree_rules.php:706 ../automation_tree_rules.php:731 #: ../automation_tree_rules.php:833 ../include/global_arrays.php:707 #: ../include/global_form.php:1576 ../lib/functions.php:2610 #, fuzzy msgid "Tree Rules" msgstr "Mode arbre" #: ../automation_tree_rules.php:844 msgid "Hook into Tree" msgstr "" #: ../automation_tree_rules.php:845 msgid "At Subtree" msgstr "" #: ../automation_tree_rules.php:846 #, fuzzy msgid "This Type" msgstr "Type de ping" #: ../automation_tree_rules.php:847 msgid "Using Grouping" msgstr "" #: ../automation_tree_rules.php:856 msgid "ROOT" msgstr "" #: ../automation_tree_rules.php:872 #, fuzzy msgid "No Tree Rules Found" msgstr "Pas de graphique trouvé" #: ../cdef.php:277 msgid "Click 'Continue' to delete the following CDEF." msgid_plural "Click 'Continue' to delete all following CDEFs." msgstr[0] "" msgstr[1] "" #: ../cdef.php:282 #, fuzzy msgid "Delete CDEF" msgid_plural "Delete CDEFs" msgstr[0] "Supprimer" msgstr[1] "Supprimer" #: ../cdef.php:286 msgid "" "Click 'Continue' to duplicate the following CDEF. You can optionally change " "the title format for the new CDEF." msgid_plural "" "Click 'Continue' to duplicate the following CDEFs. You can optionally change " "the title format for the new CDEFs." msgstr[0] "" msgstr[1] "" #: ../cdef.php:292 #, fuzzy msgid "Duplicate CDEF" msgid_plural "Duplicate CDEFs" msgstr[0] "Dupliquer" msgstr[1] "Dupliquer" #: ../cdef.php:295 #, fuzzy msgid "You must select at least one CDEF." msgstr "Vous devez sélectionner au moins un champ." #: ../cdef.php:337 msgid "Click 'Continue' to delete the following CDEF Item." msgstr "" #: ../cdef.php:338 #, php-format msgid "CDEF Name: '%s'" msgstr "" #: ../cdef.php:345 #, fuzzy msgid "Remove CDEF Item" msgstr "Éléments CDEF" #: ../cdef.php:424 #, fuzzy msgid "CDEF Preview" msgstr "Mode de prévisualisation" #: ../cdef.php:430 #, fuzzy, php-format msgid "CDEF Items [edit: %s]" msgstr "Éléments CDEF" #: ../cdef.php:442 #, fuzzy msgid "CDEF Item Type" msgstr "Éléments CDEF" #: ../cdef.php:443 #, fuzzy msgid "Choose what type of CDEF item this is." msgstr "Choisissez le type d'élément a placer sur l'arbre" #: ../cdef.php:464 #, fuzzy msgid "CDEF Item Value" msgstr "Valeur de l'élement d'arbre" #: ../cdef.php:465 #, fuzzy msgid "Enter a value for this CDEF item." msgstr "Un nom pratique de ce CDEF." #: ../cdef.php:558 #, php-format msgid "CDEF [edit: %s]" msgstr "" #: ../cdef.php:560 #, fuzzy msgid "CDEF [new]" msgstr "[nouveau]" #: ../cdef.php:581 ../lib/functions.php:1986 msgid "CDEF Items" msgstr "Éléments CDEF" #: ../cdef.php:585 ../vdef.php:565 #, fuzzy msgid "Item Value" msgstr "Valeur de l'élement d'arbre" #: ../cdef.php:598 ../vdef.php:579 #, fuzzy, php-format msgid "Item #%d" msgstr "Élément" #: ../cdef.php:657 #, fuzzy msgid "Delete CDEF Item" msgstr "Éléments CDEF" #: ../cdef.php:713 ../cdef.php:728 ../cdef.php:842 #: ../include/global_arrays.php:712 ../lib/functions.php:1968 #, fuzzy msgid "CDEFs" msgstr "CDEF" #: ../cdef.php:851 #, fuzzy msgid "CDEF Name" msgstr "Nom complet" #: ../cdef.php:851 ../data_source_profiles.php:847 #, fuzzy msgid "The name of this CDEF." msgstr "Un nom pratique de ce CDEF." #: ../cdef.php:852 msgid "" "CDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: ../cdef.php:853 msgid "The number of Graphs using this CDEF." msgstr "" #: ../cdef.php:854 ../color.php:701 ../data_input.php:725 #: ../data_queries.php:1156 ../data_source_profiles.php:854 #: ../gprint_presets.php:394 ../vdef.php:848 #, fuzzy msgid "Templates Using" msgstr "Titre du modèle" #: ../cdef.php:854 msgid "The number of Graphs Templates using this CDEF." msgstr "" #: ../cdef.php:876 #, fuzzy msgid "No CDEFs" msgstr "CDEF" #: ../clog.php:33 ../clog_user.php:32 msgid "FATAL: YOU DO NO HAVE ACCESS TO THIS AREA OF CACTI" msgstr "" #: ../color.php:170 msgid "Unnamed Color" msgstr "" #: ../color.php:187 #, fuzzy msgid "Click 'Continue' to delete the following Color" msgid_plural "Click 'Continue' to delete the following Colors" msgstr[0] "Êtes-vous sur de vouloir supprimer le graphique suivant ?" msgstr[1] "Êtes-vous sur de vouloir supprimer le graphique suivant ?" #: ../color.php:192 #, fuzzy msgid "Delete Color" msgid_plural "Delete Colors" msgstr[0] "Supprimer" msgstr[1] "Supprimer" #: ../color.php:195 #, fuzzy msgid "You must select at least one Color." msgstr "Vous devez sélectionner au moins un champ." #: ../color.php:351 msgid "Cacti has imported the following items:" msgstr "Cacti a importé les éléments suivants :" #: ../color.php:365 ../color.php:568 #, fuzzy msgid "Import Colors" msgstr "Résultat de l'importation" #: ../color.php:368 #, fuzzy msgid "Import Colors from Local File" msgstr "Importer un modèle à partir d'un fichier local" #: ../color.php:369 msgid "" "Please specify the location of the CSV file containing your Color " "information." msgstr "" #: ../color.php:373 ../lib/html_form.php:463 #, fuzzy msgid "Select a File" msgstr "Sélectionner tout" #: ../color.php:380 msgid "Overwrite Existing Data?" msgstr "" #: ../color.php:381 msgid "" "Should the import process be allowed to overwrite existing data? Please " "note, this does not mean delete old rows, only update duplicate rows." msgstr "" #: ../color.php:384 msgid "Allow Existing Rows to be Updated?" msgstr "" #: ../color.php:389 msgid "Required File Format Notes" msgstr "" #: ../color.php:392 msgid "The file must contain a header row with the following column headings." msgstr "" #: ../color.php:394 msgid "name - The Color Name" msgstr "" #: ../color.php:395 msgid "hex - The Hex Value" msgstr "" #: ../color.php:416 #, php-format msgid "Colors [edit: %s]" msgstr "" #: ../color.php:418 #, fuzzy msgid "Colors [new]" msgstr "Couleurs" #: ../color.php:520 ../color.php:535 ../include/global_arrays.php:714 #: ../lib/functions.php:2034 msgid "Colors" msgstr "Couleurs" #: ../color.php:553 #, fuzzy msgid "Named Colors" msgstr "Couleurs" #: ../color.php:568 ../lib/html_form.php:1126 #, fuzzy msgid "Import" msgstr "Importer les données" #: ../color.php:571 #, fuzzy msgid "Export Colors" msgstr "Résultat de l'exportation" #: ../color.php:695 ../color_templates.php:74 msgid "Hex" msgstr "" #: ../color.php:695 #, fuzzy msgid "The Hex Value for this Color." msgstr "La valeur héxadécimale de cette couleur; plage valide : 000000-FFFFFF." #: ../color.php:696 #, fuzzy msgid "Color Name" msgstr "Couleur" #: ../color.php:696 msgid "The name of this Color definition." msgstr "" #: ../color.php:697 msgid "Is this color a named color which are read only." msgstr "" #: ../color.php:697 #, fuzzy msgid "Named Color" msgstr "Couleur" #: ../color.php:698 ../color_templates.php:73 ../include/global_arrays.php:700 #: ../include/global_form.php:812 ../include/global_form.php:2058 msgid "Color" msgstr "Couleur" #: ../color.php:698 msgid "The Color as shown on the screen." msgstr "" #: ../color.php:699 msgid "" "Colors in use cannot be Deleted. In use is defined as being referenced " "either by a Graph or a Graph Template." msgstr "" #: ../color.php:700 msgid "The number of Graph using this Color." msgstr "" #: ../color.php:701 msgid "The number of Graph Templates using this Color." msgstr "" #: ../color.php:731 #, fuzzy msgid "No Colors Found" msgstr "Pas de graphique trouvé" #: ../color_templates.php:72 #, fuzzy msgid "Color Item" msgstr "Couleur" #: ../color_templates.php:93 ../lib/api_aggregate.php:1290 #: ../lib/api_aggregate.php:1293 ../lib/api_aggregate.php:1297 #: ../lib/html.php:896 #, fuzzy, php-format msgid "Item # %d" msgstr "Élément" #: ../color_templates.php:132 ../graph_templates_inputs.php:222 #: ../lib/api_aggregate.php:1349 ../lib/html.php:978 msgid "No Items" msgstr "Aucuns éléments" #: ../color_templates.php:227 msgid "Click 'Continue' to delete the following Color Template" msgid_plural "Click 'Continue' to delete following Color Templates" msgstr[0] "" msgstr[1] "" #: ../color_templates.php:232 #, fuzzy msgid "Delete Color Template" msgid_plural "Delete Color Templates" msgstr[0] "Modèle de graphique sélectionné" msgstr[1] "Modèle de graphique sélectionné" #: ../color_templates.php:236 msgid "" "Click 'Continue' to duplicate the following Color Template. You can " "optionally change the title format for the new color template." msgid_plural "" "Click 'Continue' to duplicate following Color Templates. You can optionally " "change the title format for the new color templates." msgstr[0] "" msgstr[1] "" #: ../color_templates.php:238 ../data_source_profiles.php:272 #: ../data_templates.php:364 ../graph_templates.php:323 #: ../host_templates.php:267 ../vdef.php:276 msgid "Title Format:" msgstr "Format du titre :" #: ../color_templates.php:242 #, fuzzy msgid "Duplicate Color Template" msgid_plural "Duplicate Color Templates" msgstr[0] "Mettre à jour les modèles de graphique" msgstr[1] "Mettre à jour les modèles de graphique" #: ../color_templates.php:245 #, fuzzy msgid "You must select at least one Color Template." msgstr "Vous devez sélectionner au moins un champ." #: ../color_templates.php:278 #, fuzzy msgid "Color Template Items [new]" msgstr "Elements de modèle de graphique" #: ../color_templates.php:289 #, fuzzy, php-format msgid "Color Template Items [edit: %s]" msgstr "Elements de modèle de graphique" #: ../color_templates.php:322 #, fuzzy msgid "Delete Color Item" msgstr "Élement de source de donnée" #: ../color_templates.php:349 #, php-format msgid "Color Template [edit: %s]" msgstr "" #: ../color_templates.php:351 #, fuzzy msgid "Color Template [new]" msgstr "Exporter le modèle" #: ../color_templates.php:432 ../color_templates.php:445 #: ../lib/functions.php:2508 #, fuzzy msgid "Color Templates" msgstr "Exporter les modèles" #: ../color_templates.php:548 msgid "" "Color Templates that are in use cannot be Deleted. In use is defined as " "being referenced by an Aggregate Template." msgstr "" #: ../color_templates.php:573 #, fuzzy msgid "No Color Templates Found" msgstr "Pas de modèle de graphique" #: ../color_templates_items.php:273 msgid "Click 'Continue' to delete the following Color Template Color." msgstr "" #: ../color_templates_items.php:274 #, fuzzy msgid "Color Name:" msgstr "Nom d'utilisateur" #: ../color_templates_items.php:275 #, fuzzy msgid "Color Hex:" msgstr "Couleur" #: ../color_templates_items.php:281 msgid "Remove Color Item" msgstr "" #: ../color_templates_items.php:339 #, php-format msgid "Color Template Items [edit Report Item: %s]" msgstr "" #: ../color_templates_items.php:342 #, php-format msgid "Color Template Items [new Report Item: %s]" msgstr "" #: ../data_input.php:212 msgid "Click 'Continue' to delete the following Data Input Method" msgid_plural "Click 'Continue' to delete the following Data Input Method" msgstr[0] "" msgstr[1] "" #: ../data_input.php:218 #, fuzzy msgid "Delete Data Input Method" msgid_plural "Delete Data Input Methods" msgstr[0] "Métode d'entrée" msgstr[1] "Métode d'entrée" #: ../data_input.php:220 #, fuzzy msgid "You must select at least one data input method." msgstr "Vous devez sélectionner au moins un champ." #: ../data_input.php:259 msgid "Click 'Continue' to delete the following Data Input Field." msgstr "" #: ../data_input.php:260 #, fuzzy, php-format msgid "Field Name: %s" msgstr "Nom du champ" #: ../data_input.php:261 #, fuzzy, php-format msgid "Friendly Name: %s" msgstr "Nom pratique" #: ../data_input.php:267 ../host_templates.php:335 ../host_templates.php:395 #, fuzzy msgid "Remove Data Input Field" msgstr "Pas de méthode d'entrée de donnée" #: ../data_input.php:362 #, fuzzy, php-format msgid "Output Fields [edit: %s]" msgstr "Champs de sortie" #: ../data_input.php:363 ../include/global_form.php:461 #, fuzzy msgid "Output Field" msgstr "Champs de sortie" #: ../data_input.php:365 #, fuzzy, php-format msgid "Input Fields [edit: %s]" msgstr "Champ d'entrée" #: ../data_input.php:366 #, fuzzy msgid "Input Field" msgstr "Champ d'entrée" #: ../data_input.php:432 #, fuzzy, php-format msgid "Data Input Methods [edit: %s]" msgstr "Métodes d'entrée de donnée" #: ../data_input.php:434 #, fuzzy msgid "Data Input Methods [new]" msgstr "Métodes d'entrée de donnée" #: ../data_input.php:444 ../include/global_arrays.php:316 #, fuzzy msgid "SNMP Get" msgstr "Port SNMP" #: ../data_input.php:447 ../include/global_arrays.php:317 #, fuzzy msgid "SNMP Query" msgstr "Version de SNMP" #: ../data_input.php:450 ../include/global_arrays.php:319 #, fuzzy msgid "Script Query" msgstr "Script" #: ../data_input.php:453 ../include/global_arrays.php:321 msgid "Script Query - Script Server" msgstr "" #: ../data_input.php:466 msgid "Input Fields" msgstr "Champ d'entrée" #: ../data_input.php:469 ../data_input.php:503 #, fuzzy msgid "Field Order" msgstr "Nom du champ" #: ../data_input.php:470 ../data_input.php:504 ../include/global_form.php:275 msgid "Friendly Name" msgstr "Nom pratique" #: ../data_input.php:484 ../data_input.php:519 #, fuzzy msgid "(Not In Use)" msgstr "Pas d'utilisateur" #: ../data_input.php:496 #, fuzzy msgid "No Input Fields" msgstr "Champ d'entrée" #: ../data_input.php:500 msgid "Output Fields" msgstr "Champs de sortie" #: ../data_input.php:505 #, fuzzy msgid "Update RRA" msgstr "Mettre à jour le fichier RRD" #: ../data_input.php:534 msgid "No Output Fields" msgstr "Aucun champ de sortie" #: ../data_input.php:556 ../host_templates.php:600 #, fuzzy msgid "Delete Data Input Field" msgstr "Métode d'entrée" #: ../data_input.php:610 ../include/global_arrays.php:693 #: ../include/global_arrays.php:861 ../lib/functions.php:2172 msgid "Data Input Methods" msgstr "Métodes d'entrée de donnée" #: ../data_input.php:625 ../data_input.php:713 #, fuzzy msgid "Input Methods" msgstr "Métodes d'entrée de donnée" #: ../data_input.php:722 #, fuzzy msgid "Data Input Name" msgstr "Entrée de donnée" #: ../data_input.php:722 #, fuzzy msgid "The name of this Data Input Method." msgstr "Pas de méthode d'entrée de donnée" #: ../data_input.php:723 msgid "" "Data Inputs that are in use cannot be Deleted. In use is defined as being " "referenced either by a Data Source or a Data Template." msgstr "" #: ../data_input.php:724 ../data_source_profiles.php:853 #: ../data_templates.php:912 #, fuzzy msgid "Data Sources Using" msgstr "Sources de donnée" #: ../data_input.php:724 msgid "The number of Data Sources that use this Data Input Method." msgstr "" #: ../data_input.php:725 msgid "The number of Data Templates that use this Data Input Method." msgstr "" #: ../data_input.php:726 ../data_queries.php:1157 #: ../include/global_arrays.php:985 ../include/global_form.php:385 #: ../include/global_form.php:1304 msgid "Data Input Method" msgstr "Métode d'entrée" #: ../data_input.php:726 #, fuzzy msgid "The method used to gather information for this Data Input Method." msgstr "" "Script/source utilisé pour collecter les données de cette source de donnée." #: ../data_input.php:749 #, fuzzy msgid "No Data Input Methods Found" msgstr "Pas de méthode d'entrée de donnée" #: ../data_queries.php:316 #, fuzzy msgid "Click 'Continue' to delete the following Data Query." msgid_plural "Click 'Continue' to delete following Data Queries." msgstr[0] "" "Etes vous sur de vouloir supprimer des sources de données suivantes ?" msgstr[1] "" "Etes vous sur de vouloir supprimer des sources de données suivantes ?" #: ../data_queries.php:322 #, fuzzy msgid "Delete Data Query" msgid_plural "Delete Data Query" msgstr[0] "Interrogation avancée" msgstr[1] "Interrogation avancée" #: ../data_queries.php:324 #, fuzzy msgid "You must select at least one data query." msgstr "Vous devez sélectionner au moins un champ." #: ../data_queries.php:419 msgid "Click 'Continue' to delete the following Data Query Graph Association." msgstr "" #: ../data_queries.php:420 #, fuzzy, php-format msgid "Graph Name: %s" msgstr "Elements graphiques" #: ../data_queries.php:426 ../vdef.php:333 #, fuzzy msgid "Remove VDEF Item" msgstr "Éléments CDEF" #: ../data_queries.php:479 #, fuzzy, php-format msgid "Associated Graph/Data Templates [edit: %s]" msgstr "Modèles de graphique associés" #: ../data_queries.php:502 #, fuzzy msgid "Associated Data Templates" msgstr "Modèles de graphique associés" #: ../data_queries.php:520 #, fuzzy, php-format msgid "Data Template - %s" msgstr "Modèles de graphique" #: ../data_queries.php:550 ../data_sources.php:881 ../data_templates.php:516 #: ../include/global_arrays.php:698 ../include/global_form.php:797 #: ../lib/api_aggregate.php:1215 ../lib/html.php:856 msgid "Data Source" msgstr "Source de donnée" #: ../data_queries.php:585 msgid "Suggested Values - Graph Names" msgstr "" #: ../data_queries.php:596 ../data_queries.php:692 #, fuzzy msgid "Equation" msgstr "Fonction" #: ../data_queries.php:647 ../data_queries.php:746 #, fuzzy msgid "No Suggested Values Found" msgstr "Valeur de l'élement d'arbre" #: ../data_queries.php:656 ../data_queries.php:755 #: ../include/global_form.php:2093 ../include/global_form.php:2135 #: ../lib/api_automation.php:1333 ../utilities.php:1409 #, fuzzy msgid "Field Name" msgstr "Nom du champ" #: ../data_queries.php:662 ../data_queries.php:761 #, fuzzy msgid "Suggested Value" msgstr "Valeur de l'élement d'arbre" #: ../data_queries.php:668 ../data_queries.php:767 ../host.php:762 #: ../host.php:879 ../host_templates.php:515 ../host_templates.php:569 #: ../lib/html.php:37 ../lib/html_filter.php:55 msgid "Add" msgstr "Ajouter" #: ../data_queries.php:668 #, fuzzy msgid "Add Graph Title Suggested Name" msgstr "Nom du modèle de graphique" #: ../data_queries.php:678 #, fuzzy msgid "Suggested Values - Data Source Names" msgstr "Nom interne de la source de donnée" #: ../data_queries.php:767 msgid "Add Data Source Name Suggested Name" msgstr "" #: ../data_queries.php:874 #, fuzzy, php-format msgid "Data Queries [edit: %s]" msgstr "Interrogations avancées" #: ../data_queries.php:876 #, fuzzy msgid "Data Queries [new]" msgstr "Interrogations avancées" #: ../data_queries.php:896 msgid "Successfully located XML file" msgstr "Localisation du fichier XML réussie" #: ../data_queries.php:899 msgid "Could not locate XML file." msgstr "Impossible de trouver le fichier XML." #: ../data_queries.php:907 ../host.php:681 ../host_templates.php:466 #: ../lib/functions.php:2226 msgid "Associated Graph Templates" msgstr "Modèles de graphique associés" #: ../data_queries.php:911 ../graph_templates.php:761 ../graphs_new.php:597 #: ../host.php:685 ../lib/api_automation.php:563 msgid "Graph Template Name" msgstr "Nom du modèle de graphique" #: ../data_queries.php:913 msgid "Mapping ID" msgstr "" #: ../data_queries.php:954 msgid "Mapped Graph Templates with Graphs are read only" msgstr "" #: ../data_queries.php:961 #, fuzzy msgid "No Graph Templates Defined." msgstr "Pas de modèle de graphique" #: ../data_queries.php:985 #, fuzzy msgid "Delete Associated Graph" msgstr "Eléments graphiques associés" #: ../data_queries.php:1039 ../data_queries.php:1054 ../data_queries.php:1143 #: ../include/global_arrays.php:692 ../include/global_arrays.php:862 #: ../lib/api_automation.php:1027 ../lib/functions.php:2208 msgid "Data Queries" msgstr "Interrogations avancées" #: ../data_queries.php:1152 ../host.php:776 ../utilities.php:1409 msgid "Data Query Name" msgstr "Nom de l'interrogation avancée" #: ../data_queries.php:1152 #, fuzzy msgid "The name of this Data Query." msgstr "Nom de cette requète." #: ../data_queries.php:1153 ../graph_templates.php:762 msgid "" "The internal ID for this Graph Template. Useful when performing automation " "or debugging." msgstr "" #: ../data_queries.php:1154 msgid "" "Data Queries that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: ../data_queries.php:1155 #, fuzzy msgid "The number of Graphs using this Data Query." msgstr "Nom de cette requète." #: ../data_queries.php:1156 msgid "The number of Graphs Templates using this Data Query." msgstr "" #: ../data_queries.php:1157 msgid "" "The Data Input Method used to collect data for Data Sources associated with " "this Data Query." msgstr "" #: ../data_queries.php:1181 #, fuzzy msgid "No Data Queries Found" msgstr "Interrogations avancées" #: ../data_source_profiles.php:261 #, fuzzy msgid "Click 'Continue' to delete the following Data Source Profile" msgid_plural "Click 'Continue' to delete following Data Source Profiles" msgstr[0] "" "Etes vous sur de vouloir supprimer des sources de données suivantes ?" msgstr[1] "" "Etes vous sur de vouloir supprimer des sources de données suivantes ?" #: ../data_source_profiles.php:266 #, fuzzy msgid "Delete Data Source Profile" msgid_plural "Delete Data Source Profiles" msgstr[0] "Champs de la source de donnée" msgstr[1] "Champs de la source de donnée" #: ../data_source_profiles.php:270 msgid "" "Click 'Continue' to duplicate the following Data Source Profile. You can " "optionally change the title format for the new Data Source Profile" msgid_plural "" "Click 'Continue' to duplicate following Data Source Profiles. You can " "optionally change the title format for the new Data Source Profiles." msgstr[0] "" msgstr[1] "" #: ../data_source_profiles.php:276 #, fuzzy msgid "Duplicate Data Source Profile" msgid_plural "Duplicate Date Source Profiles" msgstr[0] "Mettre à jour les sources de donnée" msgstr[1] "Mettre à jour les sources de donnée" #: ../data_source_profiles.php:279 #, fuzzy msgid "You must select at least one Data Source Profile." msgstr "Vous devez sélectionner au moins un champ." #: ../data_source_profiles.php:318 #, fuzzy msgid "Click 'Continue' to delete the following Data Source Profile RRA." msgstr "Etes vous sur de vouloir supprimer des sources de données suivantes ?" #: ../data_source_profiles.php:319 #, php-format msgid "Profile Name: %s" msgstr "" #: ../data_source_profiles.php:325 msgid "Remove Data Source Profile RRA" msgstr "" #: ../data_source_profiles.php:374 ../data_source_profiles.php:384 msgid "Each Insert is New Row" msgstr "" #: ../data_source_profiles.php:393 #, php-format msgid "RRA [edit: %s]" msgstr "" #: ../data_source_profiles.php:460 #, fuzzy, php-format msgid "Data Source Profile [edit: %s]" msgstr "Champs de la source de donnée" #: ../data_source_profiles.php:462 #, fuzzy msgid "Data Source Profile [new]" msgstr "Champs de la source de donnée" #: ../data_source_profiles.php:480 msgid "Data Source Profile RRAs (press save to update timespans)" msgstr "" #: ../data_source_profiles.php:482 msgid "Data Source Profile RRAs (Read Only)" msgstr "" #: ../data_source_profiles.php:487 msgid "Effective Timespan" msgstr "" #: ../data_source_profiles.php:488 msgid "Steps" msgstr "Pas" #: ../data_source_profiles.php:489 ../graphs_new.php:526 #: ../include/global_form.php:121 ../lib/html.php:323 ../lib/html_filter.php:73 #: ../lib/rrd.php:2689 ../pollers.php:523 ../utilities.php:468 #: ../utilities.php:1322 msgid "Rows" msgstr "Lignes" #: ../data_source_profiles.php:535 #, fuzzy msgid "Select Consolidation Function(s)" msgstr "Fonctions de consolidation" #: ../data_source_profiles.php:561 #, fuzzy msgid "Delete Data Source Profile Item" msgstr "Élement de source de donnée" #: ../data_source_profiles.php:621 ../include/global_arrays.php:1088 #: ../include/global_settings.php:1027 #, fuzzy, php-format msgid "%d Years" msgstr "Une année" #: ../data_source_profiles.php:621 msgid "1 Year" msgstr "Une année" #: ../data_source_profiles.php:630 ../include/global_arrays.php:1082 #: ../rrdcleaner.php:489 #, fuzzy, php-format msgid "%d Month" msgstr "Un moi" #: ../data_source_profiles.php:630 ../include/global_arrays.php:1083 #: ../include/global_arrays.php:1084 ../include/global_arrays.php:1085 #: ../include/global_arrays.php:1086 ../rrdcleaner.php:490 #: ../rrdcleaner.php:491 ../rrdcleaner.php:492 #, fuzzy, php-format msgid "%d Months" msgstr "Un moi" #: ../data_source_profiles.php:639 ../include/global_arrays.php:1080 #: ../rrdcleaner.php:485 ../rrdcleaner.php:486 #, fuzzy, php-format msgid "%d Week" msgstr "Une semaine" #: ../data_source_profiles.php:639 ../include/global_arrays.php:1081 #: ../rrdcleaner.php:487 ../rrdcleaner.php:488 #, fuzzy, php-format msgid "%d Weeks" msgstr "Une semaine" #: ../data_source_profiles.php:648 ../include/global_arrays.php:1076 #, fuzzy, php-format msgid "%d Day" msgstr "Un jour" #: ../data_source_profiles.php:648 ../include/global_arrays.php:1077 #: ../include/global_arrays.php:1078 ../include/global_arrays.php:1079 #: ../include/global_settings.php:1022 ../include/global_settings.php:1023 #: ../include/global_settings.php:1024 ../include/global_settings.php:1025 #: ../include/global_settings.php:1036 ../include/global_settings.php:1037 #: ../include/global_settings.php:1038 ../include/global_settings.php:1039 #, fuzzy, php-format msgid "%d Days" msgstr "Un jour" #: ../data_source_profiles.php:656 ../include/global_arrays.php:494 #: ../include/global_arrays.php:529 ../include/global_arrays.php:1117 #: ../include/global_arrays.php:1138 ../include/global_arrays.php:1171 #: ../include/global_arrays.php:1180 ../include/global_arrays.php:1206 #: ../include/global_settings.php:1093 #, fuzzy msgid "1 Hour" msgstr "La dernière heure" #: ../data_source_profiles.php:710 ../include/global_arrays.php:869 #, fuzzy msgid "Data Source Profiles" msgstr "Champs de la source de donnée" #: ../data_source_profiles.php:725 ../data_source_profiles.php:838 msgid "Profiles" msgstr "" #: ../data_source_profiles.php:743 ../data_templates.php:794 #, fuzzy msgid "Has Data Sources" msgstr "Sources de donnée" #: ../data_source_profiles.php:847 #, fuzzy msgid "Data Source Profile Name" msgstr "Chemin de la source de donnée" #: ../data_source_profiles.php:848 msgid "Is this the default Profile for all new Data Templates?" msgstr "" #: ../data_source_profiles.php:849 msgid "" "Profiles that are in use cannot be Deleted. In use is defined as being " "referenced by a Data Source or a Data Template." msgstr "" #: ../data_source_profiles.php:850 msgid "Profiles that are in use by Data Sources become read only for now." msgstr "" #: ../data_source_profiles.php:850 ../include/global_form.php:190 msgid "Read Only" msgstr "" #: ../data_source_profiles.php:851 ../data_sources.php:1407 #: ../include/global_settings.php:855 #, fuzzy msgid "Poller Interval" msgstr "Type de l'agent de collecte" #: ../data_source_profiles.php:851 msgid "The Polling Frequency for the Profile" msgstr "" #: ../data_source_profiles.php:852 ../include/global_form.php:52 #: ../include/global_form.php:453 msgid "Heartbeat" msgstr "" #: ../data_source_profiles.php:852 msgid "" "The Amount of Time, in seconds, without good data before Data is stored as " "Unknown" msgstr "" #: ../data_source_profiles.php:853 msgid "The number of Data Sources using this Profile." msgstr "" #: ../data_source_profiles.php:854 msgid "The number of Data Templates using this Profile." msgstr "" #: ../data_source_profiles.php:886 #, fuzzy msgid "No Data Source Profiles" msgstr "Aucune sources de donnée" #: ../data_sources.php:36 ../data_sources.php:478 ../graphs.php:54 #, fuzzy msgid "Change Device" msgstr "Équipement" #: ../data_sources.php:37 ../graphs.php:55 msgid "Reapply Suggested Names" msgstr "" #: ../data_sources.php:446 #, fuzzy msgid "Click 'Continue' to delete the following Data Source" msgid_plural "Click 'Continue' to delete following Data Sources" msgstr[0] "" "Etes vous sur de vouloir supprimer des sources de données suivantes ?" msgstr[1] "" "Etes vous sur de vouloir supprimer des sources de données suivantes ?" #: ../data_sources.php:450 #, fuzzy msgid "The following graph is using these data sources:" msgid_plural "The following graphs are using these data sources:" msgstr[0] "Les sources de donnée suivantes sont utilisées ces graphiques :" msgstr[1] "Les sources de donnée suivantes sont utilisées ces graphiques :" #: ../data_sources.php:459 #, fuzzy msgid "Leave the Graph untouched." msgid_plural "Leave all Graphs untouched." msgstr[0] "Ne pas modifier les graphiques." msgstr[1] "Ne pas modifier les graphiques." #: ../data_sources.php:460 msgid "" "Delete all Graph Items that reference this Data Source." msgid_plural "" "Delete all Graph Items that reference these Data Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:461 msgid "Delete all Graphs that reference this Data Source." msgid_plural "" "Delete all Graphs that reference these Data Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:468 #, fuzzy msgid "Delete Data Source" msgid_plural "Delete Data Sources" msgstr[0] "Source de donnée" msgstr[1] "Source de donnée" #: ../data_sources.php:472 #, fuzzy msgid "Choose a new Device for this Data Source and click 'Continue'." msgid_plural "Choose a new Device for these Data Sources and click 'Continue'" msgstr[0] "Choisissez un nom pour cette source de donnée." msgstr[1] "Choisissez un nom pour cette source de donnée." #: ../data_sources.php:474 #, fuzzy msgid "New Device:" msgstr "Machine :" #: ../data_sources.php:482 #, fuzzy msgid "Click 'Continue' to enable the following Data Source." msgid_plural "Click 'Continue' to enable all following Data Sources." msgstr[0] "" "Etes vous sur de vouloir supprimer des sources de données suivantes ?" msgstr[1] "" "Etes vous sur de vouloir supprimer des sources de données suivantes ?" #: ../data_sources.php:487 #, fuzzy msgid "Enable Data Source" msgid_plural "Enable Data Sources" msgstr[0] "Source de donnée" msgstr[1] "Source de donnée" #: ../data_sources.php:491 #, fuzzy msgid "Click 'Continue' to disable the following Data Source." msgid_plural "Click 'Continue' to disable all following Data Sources." msgstr[0] "" "Etes vous sur de vouloir supprimer des sources de données suivantes ?" msgstr[1] "" "Etes vous sur de vouloir supprimer des sources de données suivantes ?" #: ../data_sources.php:496 #, fuzzy msgid "Disable Data Source" msgstr "Source de donnée spéciale" #: ../data_sources.php:500 msgid "" "Click 'Continue' to re-apply the suggested name to the following Data Source." msgid_plural "" "Click 'Continue' to re-apply the suggested names to all following Data " "Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:505 msgid "Reapply Suggested Naming to Data Source" msgstr "" #: ../data_sources.php:514 #, fuzzy msgid "You must select at least one data source." msgstr "Vous devez sélectionner au moins un champ." #: ../data_sources.php:572 ../data_templates.php:631 #, php-format msgid "Custom Data [data input: %s]" msgstr "" #: ../data_sources.php:605 #, php-format msgid "(From Device: %s)" msgstr "" #: ../data_sources.php:608 #, fuzzy msgid "(From Data Template)" msgstr "Modèle de graphique" #: ../data_sources.php:609 #, fuzzy msgid "Nothing Entered" msgstr "Non graphé" #: ../data_sources.php:624 ../data_templates.php:684 msgid "No Input Fields for the Selected Data Input Source" msgstr "" #: ../data_sources.php:700 #, fuzzy, php-format msgid "Data Source %d does not exist." msgstr "Élement de source de donnée" #: ../data_sources.php:705 #, php-format msgid "Data Template Selection [edit: %s]" msgstr "" #: ../data_sources.php:711 msgid "Data Template Selection [new]" msgstr "" #: ../data_sources.php:744 msgid "Turn Off Data Source Debug Mode." msgstr "" #: ../data_sources.php:744 msgid "Turn On Data Source Debug Mode." msgstr "" #: ../data_sources.php:745 msgid "Turn Off Data Source Info Mode." msgstr "" #: ../data_sources.php:745 #, fuzzy msgid "Turn On Data Source Info Mode." msgstr "Élement de source de donnée" #: ../data_sources.php:748 #, fuzzy msgid "Edit Data Template." msgstr "Exporter le modèle" #: ../data_sources.php:751 ../graphs.php:1294 #, fuzzy msgid "Edit Device." msgstr "Équipement" #: ../data_sources.php:814 #, fuzzy msgid "Selected Data Template" msgstr "Modèle de graphique sélectionné" #: ../data_sources.php:815 #, php-format msgid "" "The name given to this data template. Please note that you may only change " "Graph Templates to a 100% compatible Graph Template, which means that it " "includes identical Data Sources." msgstr "" #: ../data_sources.php:823 #, fuzzy msgid "Choose the Device that this Data Source belongs to." msgstr "Choisissez un nom pour cette source de donnée." #: ../data_sources.php:869 msgid "Supplemental Data Template Data" msgstr "" #: ../data_sources.php:871 msgid "Data Source Fields" msgstr "Champs de la source de donnée" #: ../data_sources.php:872 #, fuzzy msgid "Data Source Item Fields" msgstr "Champs de la source de donnée" #: ../data_sources.php:873 #, fuzzy msgid "Custom Data" msgstr "Personnalisé" #: ../data_sources.php:957 #, fuzzy, php-format msgid "Data Source Item %s" msgstr "Élement de source de donnée" #: ../data_sources.php:960 msgid "New" msgstr "" #: ../data_sources.php:1019 #, fuzzy msgid "Data Source Debug" msgstr "Élement de source de donnée" #: ../data_sources.php:1039 msgid "RRDtool Tune Info" msgstr "" #: ../data_sources.php:1065 msgid "External" msgstr "" #: ../data_sources.php:1067 ../include/global_arrays.php:519 #: ../include/global_arrays.php:520 ../include/global_arrays.php:521 #: ../include/global_arrays.php:841 ../include/global_arrays.php:842 #: ../include/global_arrays.php:843 ../include/global_arrays.php:844 #: ../include/global_arrays.php:1160 ../include/global_arrays.php:1161 #: ../include/global_arrays.php:1162 ../include/global_arrays.php:1163 #: ../include/global_arrays.php:1164 ../include/global_arrays.php:1197 #: ../include/global_arrays.php:1198 ../include/global_arrays.php:1210 #: ../include/global_arrays.php:1211 ../include/global_arrays.php:1212 #: ../include/global_arrays.php:1213 ../include/global_arrays.php:1214 #: ../include/global_settings.php:1837 #, php-format msgid "%d Seconds" msgstr "" #: ../data_sources.php:1069 ../include/global_arrays.php:522 #: ../include/global_arrays.php:845 ../include/global_arrays.php:1165 #: ../include/global_arrays.php:1199 ../include/global_arrays.php:1215 #: ../include/global_settings.php:1087 ../include/global_settings.php:1837 msgid "1 Minute" msgstr "" #: ../data_sources.php:1196 ../graphs_items.php:292 #, fuzzy, php-format msgid "Data Sources [%s]" msgstr "Sources de donnée" #: ../data_sources.php:1196 #, fuzzy msgid "No Device" msgstr "Équipement" #: ../data_sources.php:1235 ../data_sources.php:1261 ../data_sources.php:1277 #: ../data_templates.php:764 ../graph_view.php:781 ../graphs_new.php:504 #: ../lib/clog_webapi.php:331 ../lib/html_graph.php:395 #: ../lib/html_reports.php:290 ../lib/html_tree.php:842 ../plugins.php:286 #: ../settings.php:196 ../settings.php:213 ../settings.php:236 #: ../utilities.php:636 ../utilities.php:1000 msgid "All" msgstr "" #: ../data_sources.php:1257 ../data_templates.php:760 msgid "Profile" msgstr "" #: ../data_sources.php:1273 ../data_sources.php:1279 msgid "Orphaned" msgstr "" #: ../data_sources.php:1283 ../data_sources.php:1396 ../host.php:1502 #: ../include/global_arrays.php:687 ../lib/api_automation.php:275 #: ../lib/functions.php:2118 ../user_admin.php:1242 ../user_group_admin.php:966 #: ../utilities.php:273 msgid "Data Sources" msgstr "Sources de donnée" #: ../data_sources.php:1405 ../utilities.php:1698 #, fuzzy msgid "Data Source Name" msgstr "Source de donnée" #: ../data_sources.php:1405 msgid "" "The name of this Data Source. Generally programtically generated from the " "Data Template definition." msgstr "" #: ../data_sources.php:1406 msgid "" "The internal database ID for this Data Source. Useful when performing " "automation or debugging." msgstr "" #: ../data_sources.php:1407 #, fuzzy msgid "The frequency that data is collected for this Data Source." msgstr "" "Script/source utilisé pour collecter les données de cette source de donnée." #: ../data_sources.php:1408 msgid "If this Data Source is no long in use by Graphs, it can be Deleted." msgstr "" #: ../data_sources.php:1409 ../data_templates.php:934 ../plugins.php:38 #: ../plugins.php:287 msgid "Active" msgstr "Actif" #: ../data_sources.php:1409 msgid "" "Whether or not data will be collected for this Data Source. Controlled at " "the Data Template level." msgstr "" #: ../data_sources.php:1410 msgid "The Data Template that this Data Source was based upon." msgstr "" #: ../data_sources.php:1457 #, fuzzy msgid "No Data Sources Found" msgstr "Aucune sources de donnée" #: ../data_templates.php:35 #, fuzzy msgid "Change Profile" msgstr "Changer l'agent de collecte" #: ../data_templates.php:353 msgid "" "Click 'Continue' to delete the following Data Template(s). Any data sources " "attached to these templates will become individual Data Source(s) and all " "Templating benefits will be removed." msgstr "" #: ../data_templates.php:358 #, fuzzy msgid "Delete Data Template(s)" msgstr "Modèle de graphique sélectionné" #: ../data_templates.php:362 msgid "" "Click 'Continue' to duplicate the following Data Template(s). You can " "optionally change the title format for the new Data Template(s)." msgstr "" #: ../data_templates.php:364 #, fuzzy msgid "template_title" msgstr "Titre du modèle" #: ../data_templates.php:368 #, fuzzy msgid "Duplicate Data Template(s)" msgstr "Mettre à jour les modèles de graphique" #: ../data_templates.php:372 msgid "" "Click 'Continue' to change the default Data Source Profile for the following " "Data Template(s)." msgstr "" #: ../data_templates.php:374 #, fuzzy msgid "New Data Source Profile" msgstr "Aucune sources de donnée" #: ../data_templates.php:380 msgid "" "NOTE: This change only will affect future Data Sources and does not alter " "existing Data Sources." msgstr "" #: ../data_templates.php:384 #, fuzzy msgid "Change Data Source Profile" msgstr "Champs de la source de donnée" #: ../data_templates.php:387 #, fuzzy msgid "You must select at least one data template." msgstr "Vous devez sélectionner au moins un champ." #: ../data_templates.php:499 #, php-format msgid "Data Templates [edit: %s]" msgstr "" #: ../data_templates.php:501 #, fuzzy msgid "Data Templates [new]" msgstr "Modèles de graphique" #: ../data_templates.php:527 #, fuzzy msgid "This field is always templated." msgstr "Le nom de ce modèle de donnée." #: ../data_templates.php:531 ../data_templates.php:603 #: ../data_templates.php:671 msgid "Use Per-Data Source Value (Ignore this Value)" msgstr "" #: ../data_templates.php:584 #, fuzzy, php-format msgid "Data Source Item [%s]" msgstr "Élement de source de donnée" #: ../data_templates.php:676 msgid "Value will be derived from the device if this field is left empty." msgstr "" #: ../data_templates.php:745 ../data_templates.php:776 #: ../data_templates.php:900 ../include/global_arrays.php:873 #: ../lib/functions.php:2100 #, fuzzy msgid "Data Templates" msgstr "Modèles de graphique" #: ../data_templates.php:909 #, fuzzy msgid "Data Template Name" msgstr "Nom du modèle" #: ../data_templates.php:909 #, fuzzy msgid "The name of this Data Template." msgstr "Le nom de ce modèle de donnée." #: ../data_templates.php:910 msgid "" "The internal database ID for this Data Template. Useful when performing " "automation or debugging." msgstr "" #: ../data_templates.php:911 msgid "" "Data Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Data Source." msgstr "" #: ../data_templates.php:912 #, fuzzy msgid "The number of Data Sources using this Data Template." msgstr "Le nom de ce modèle de donnée." #: ../data_templates.php:913 #, fuzzy msgid "Input Method" msgstr "Métode d'entrée" #: ../data_templates.php:913 msgid "The method that is used to place Data into the Data Source RRDfile." msgstr "" #: ../data_templates.php:914 #, fuzzy msgid "Profile Name" msgstr "Nom pratique" #: ../data_templates.php:914 #, fuzzy msgid "The default Data Source Profile for this Data Template." msgstr "Le nom de ce modèle de donnée." #: ../data_templates.php:915 msgid "" "Data Sources based on Inactive Data Templates will not be updated when the " "poller runs." msgstr "" #: ../data_templates.php:939 #, fuzzy msgid "No Data Templates Found" msgstr "Pas de modèle de graphique" #: ../gprint_presets.php:148 msgid "Click 'Continue' to delete the folling GPRINT Preset(s)." msgstr "" #: ../gprint_presets.php:153 msgid "Delete GPRINT Preset(s)" msgstr "" #: ../gprint_presets.php:156 #, fuzzy msgid "You must select at least one GPRINT Preset." msgstr "Vous devez sélectionner au moins un champ." #: ../gprint_presets.php:185 #, php-format msgid "GPRINT Presets [edit: %s]" msgstr "" #: ../gprint_presets.php:187 msgid "GPRINT Presets [new]" msgstr "" #: ../gprint_presets.php:253 ../lib/functions.php:1950 #, fuzzy msgid "GPRINT Presets" msgstr "Texte GPRINT" #: ../gprint_presets.php:268 ../gprint_presets.php:381 #: ../include/global_arrays.php:715 #, fuzzy msgid "GPRINTs" msgstr "Texte GPRINT" #: ../gprint_presets.php:390 #, fuzzy msgid "GPRINT Preset Name" msgstr "Texte GPRINT" #: ../gprint_presets.php:390 msgid "The name of this GPRINT Preset." msgstr "" #: ../gprint_presets.php:391 #, fuzzy msgid "Format" msgstr "Format du titre :" #: ../gprint_presets.php:391 msgid "The GPRINT format string." msgstr "" #: ../gprint_presets.php:392 msgid "" "GPRINTs that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: ../gprint_presets.php:393 msgid "The number of Graphs using this GPRINT." msgstr "" #: ../gprint_presets.php:394 msgid "The number of Graphs Templates using this GPRINT." msgstr "" #: ../gprint_presets.php:418 #, fuzzy msgid "No GPRINT Presets" msgstr "Texte GPRINT" #: ../graph.php:94 msgid "Viewing Graph" msgstr "Voir le graphique" #: ../graph.php:124 ../lib/html.php:292 msgid "Graph Details, Zooming and Debugging Utilities" msgstr "" #: ../graph.php:125 #, fuzzy msgid "CSV Export" msgstr "Export de graphique" #: ../graph.php:126 msgid "Real-time" msgstr "" #: ../graph.php:179 #, fuzzy msgid "Utility View" msgstr "Utilitaires" #: ../graph.php:277 #, fuzzy msgid "Graph Utility View" msgstr "Titre du graphique" #: ../graph.php:290 #, fuzzy msgid "Graph Source/Properties" msgstr "Voir les propriétés du graphique" #: ../graph.php:294 #, fuzzy msgid "Graph Data" msgstr "Séparateur de date" #: ../graph.php:307 ../graph_realtime.php:267 ../lib/clog_webapi.php:351 #: ../lib/html_graph.php:319 ../lib/html_tree.php:765 ../lib/html_tree.php:785 #: ../utilities.php:1020 ../utilities.php:1904 #, fuzzy msgid "Refresh" msgstr "Raffraichissement de la page" #: ../graph.php:429 msgid "RRDtool Graph Syntax" msgstr "" #: ../graph_realtime.php:195 msgid "Real-time has been disabled by your administrator." msgstr "" #: ../graph_realtime.php:202 msgid "" "The Image Cache Directory does not exist. Please first create it and set " "permissions and then attempt to open another Real-time graph." msgstr "" #: ../graph_realtime.php:209 msgid "" "The Image Cache Directory is not writable. Please set permissions and then " "attempt to open another Real-time graph." msgstr "" #: ../graph_realtime.php:224 msgid "Cacti Real-time Graphing" msgstr "" #: ../graph_realtime.php:253 ../lib/html_graph.php:327 ../lib/html_tree.php:773 msgid "Window" msgstr "" #: ../graph_realtime.php:283 #, php-format msgid "%d seconds left." msgstr "" #: ../graph_realtime.php:311 msgid "seconds left." msgstr "" #: ../graph_templates.php:35 msgid "Resize" msgstr "" #: ../graph_templates.php:36 #, fuzzy msgid "Sync Graphs" msgstr "Graphiques" #: ../graph_templates.php:312 msgid "" "Click 'Continue' to delete the following Graph Template(s). Any Graph(s) " "associated with the Template(s) will become individual Graph(s)." msgstr "" #: ../graph_templates.php:317 #, fuzzy msgid "Delete Graph Template(s)" msgstr "Modèle de graphique sélectionné" #: ../graph_templates.php:321 msgid "" "Click 'Continue' to duplicate the following Graph Template(s). You can " "optionally change the title format for the new Graph Template(s)." msgstr "" #: ../graph_templates.php:327 #, fuzzy msgid "Duplicate Graph Template(s)" msgstr "Mettre à jour les modèles de graphique" #: ../graph_templates.php:331 msgid "" "Click 'Continue' to resize the following Graph Template(s) and Graph(s) to " "the Height and Width below. The defaults below are maintained in Settings." msgstr "" #: ../graph_templates.php:340 ../lib/html_reports.php:117 #, fuzzy msgid "Graph Height" msgstr "Titre du graphique" #: ../graph_templates.php:342 ../lib/html_reports.php:109 #, fuzzy msgid "Graph Width" msgstr "Titre du graphique" #: ../graph_templates.php:347 #, fuzzy msgid "Resize Selected Graph Template(s)" msgstr "Modèle de graphique sélectionné" #: ../graph_templates.php:351 msgid "" "Click 'Continue' to Synchronize your Graphs the following Graph Template(s). " "This function is important if you have Graphs that exist with multiple " "versions of a Graph Template and wish to make them all common in appearance." msgstr "" #: ../graph_templates.php:356 #, fuzzy msgid "Synchronize Graphs to Graph Template(s)" msgstr "Convertir en modèle de graphique" #: ../graph_templates.php:359 #, fuzzy msgid "ERROR: You must select at least one graph template." msgstr "Vous devez sélectionner au moins un champ." #: ../graph_templates.php:413 #, fuzzy, php-format msgid "Graph Template Items [edit: %s]" msgstr "Elements de modèle de graphique" #: ../graph_templates.php:420 ../lib/functions.php:2070 msgid "Graph Item Inputs" msgstr "Entrées de l'élément graphique" #: ../graph_templates.php:446 msgid "No Inputs" msgstr "Pas d'entrées" #: ../graph_templates.php:491 #, fuzzy, php-format msgid "Template [edit: %s]" msgstr "Titre du modèle" #: ../graph_templates.php:493 #, fuzzy msgid "Template [new]" msgstr "Nom du modèle" #: ../graph_templates.php:509 #, fuzzy msgid "Graph Template Options" msgstr "Modèles de graphique" #: ../graph_templates.php:524 msgid "Use Per-Graph Value (Ignore this Value)" msgstr "" #: ../graph_templates.php:619 ../graph_templates.php:634 #: ../graph_templates.php:752 ../graphs_new.php:592 #: ../include/global_arrays.php:872 ../lib/functions.php:2046 #: ../user_admin.php:1376 ../user_group_admin.php:1101 msgid "Graph Templates" msgstr "Modèles de graphique" #: ../graph_templates.php:761 #, fuzzy msgid "The name of this Graph Template." msgstr "Le nom donné à ce modèle de graphique." #: ../graph_templates.php:763 msgid "" "Graph Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Graph." msgstr "" #: ../graph_templates.php:764 #, fuzzy msgid "The number of Graphs using this Graph Template." msgstr "Le nom donné à ce modèle de graphique." #: ../graph_templates.php:765 #, fuzzy msgid "The default size of the resulting Graphs." msgstr "Le nom imprimé sur le graphique." #: ../graph_templates.php:766 #, fuzzy msgid "Image Format" msgstr "Format du titre :" #: ../graph_templates.php:766 #, fuzzy msgid "The default image format for the resulting Graphs." msgstr "Le format de date à utiliser pour les graphiques" #: ../graph_templates.php:767 msgid "The vertical label for the resulting Graphs." msgstr "" #: ../graph_templates.php:767 msgid "Vertical Label" msgstr "Label vertical" #: ../graph_templates.php:793 #, fuzzy msgid "No Graph Templates Found" msgstr "Pas de modèle de graphique" #: ../graph_templates_inputs.php:145 #, fuzzy, php-format msgid "Graph Item Inputs [edit graph: %s]" msgstr "Entrées de l'élément graphique" #: ../graph_templates_inputs.php:191 msgid "Associated Graph Items" msgstr "Eléments graphiques associés" #: ../graph_templates_items.php:99 ../graph_templates_items.php:125 #: ../graphs_items.php:118 msgid "Cur:" msgstr "" #: ../graph_templates_items.php:106 ../graph_templates_items.php:132 #: ../graphs_items.php:125 msgid "Avg:" msgstr "" #: ../graph_templates_items.php:113 ../graph_templates_items.php:146 #: ../graphs_items.php:139 msgid "Max:" msgstr "" #: ../graph_templates_items.php:139 ../graphs_items.php:132 msgid "Min:" msgstr "" #: ../graph_templates_items.php:391 #, fuzzy, php-format msgid "Graph Template Items [edit graph: %s]" msgstr "Elements de modèle de graphique" #: ../graph_view.php:242 msgid "YOU DO NOT HAVE RIGHTS FOR TREE VIEW" msgstr "VOUS N'AVEZ PAS LES DROITS POUR CONSULTER L'ARBRE DES VUES" #: ../graph_view.php:320 msgid "YOU DO NOT HAVE RIGHTS FOR PREVIEW VIEW" msgstr "VOUS N'AVEZ PAS LES DROITS POUR CONSULTER LA PRÉVISUALISATION" #: ../graph_view.php:326 #, fuzzy msgid "Graph Preview Filters" msgstr "Arbres des graphiques" #: ../graph_view.php:326 msgid "[ Custom Graph List Applied - Filtering from List ]" msgstr "" #: ../graph_view.php:422 msgid "YOU DO NOT HAVE RIGHTS FOR LIST VIEW" msgstr "VOUS N'AVEZ PAS LES DROITS POUR CONSULTER LA LISTE" #: ../graph_view.php:509 msgid "Graph List View Filters" msgstr "" #: ../graph_view.php:509 msgid "[ Custom Graph List Applied - Filter FROM List ]" msgstr "" #: ../graph_view.php:528 ../graph_view.php:770 ../graph_view.php:775 #: ../lib/html_graph.php:163 ../lib/html_graph.php:384 #: ../lib/html_graph.php:389 ../lib/html_tree.php:615 ../lib/html_tree.php:831 #: ../lib/html_tree.php:836 #, fuzzy msgid "All Graphs & Templates" msgstr "Modèles de graphique" #: ../graph_view.php:577 ../graph_view.php:654 #, fuzzy msgid "View" msgstr "Vue en liste" #: ../graph_view.php:577 ../graph_view.php:654 ../include/global_arrays.php:853 #: ../lib/clog_webapi.php:249 msgid "View Graphs" msgstr "Voir les graphiques" #: ../graph_view.php:619 #, fuzzy msgid "Graph Size" msgstr "Titre du graphique" #: ../graph_view.php:633 #, fuzzy msgid "Aggregated Device" msgstr "Créer de nouveaux graphiques" #: ../graph_view.php:636 #, fuzzy msgid "Non-Device" msgstr "Équipement" #: ../graph_view.php:637 msgid "Not Applicable" msgstr "" #: ../graph_view.php:772 ../lib/html_graph.php:386 ../lib/html_tree.php:833 #: ../settings.php:227 #, fuzzy msgid "Templates Selected" msgstr "Titre du modèle" #: ../graphs.php:49 ../graphs.php:845 ../lib/functions.php:1920 msgid "Change Graph Template" msgstr "Modifier le modèle de graphique" #: ../graphs.php:56 #, fuzzy msgid "Create Aggregate Graph" msgstr "Créer de nouveaux graphiques" #: ../graphs.php:57 #, fuzzy msgid "Create Aggregate from Template" msgstr "Créer un graphique à partir d'une interrogation avancée" #: ../graphs.php:58 ../graphs.php:1094 ../host.php:43 msgid "Apply Automation Rules" msgstr "" #: ../graphs.php:64 ../graphs.php:867 #, fuzzy msgid "Convert to Graph Template" msgstr "Modifier le modèle de graphique" #: ../graphs.php:176 ../graphs_new.php:228 ../graphs_new.php:244 #, fuzzy, php-format msgid "Created graph: %s" msgstr "Créer de nouveaux graphiques" #: ../graphs.php:184 ../graphs_new.php:236 ../graphs_new.php:252 msgid "ERROR: no Data Source associated. Check Template" msgstr "" #: ../graphs.php:795 msgid "" "Click 'Continue' to delete the following Graph(s). Note that if you choose " "to Delete Data Sources, only those Data Sources not in use elsewhere will " "also be Deleted." msgstr "" #: ../graphs.php:799 #, fuzzy msgid "The following Data Source(s) are in use by these Graph(s)." msgstr "Les sources de donnée suivantes sont utilisées ces graphiques :" #: ../graphs.php:808 msgid "" "Delete all Data Source(s) referenced by these Graph(s) that are not in use " "elsewhere." msgstr "" #: ../graphs.php:810 #, fuzzy msgid "Leave the Data Source(s) untouched." msgstr "Ne pas toucher aux sources de donnée." #: ../graphs.php:822 msgid "" "Choose a Graph Template and click 'Continue' to change the Graph Template " "for the following Graph(s). Please note, that only compatible Graph " "Templates will be displayed. Compatible is identified by those having " "identical Data Sources." msgstr "" #: ../graphs.php:824 #, fuzzy msgid "New Graph Template" msgstr "Nouveau modèle de graphique :" #: ../graphs.php:849 #, fuzzy msgid "" "Click 'Continue' to duplicate the following Graph(s). You can optionally " "change the title format for the new Graph(s)." msgstr "Êtes-vous sur de vouloir supprimer le graphique suivant ?" #: ../graphs.php:852 msgid " (1)" msgstr "" #: ../graphs.php:856 #, fuzzy msgid "Duplicate Graph(s)" msgstr "Mettre à jour les modèles de graphique" #: ../graphs.php:860 msgid "" "Click 'Continue' to convert the following Graph(s) into Graph Template(s). " "You can optionally change the title format for the new Graph Template(s)." msgstr "" #: ../graphs.php:863 #, fuzzy msgid " Template" msgstr "Modèle de graphique" #: ../graphs.php:871 msgid "" "Click 'Continue' to place the following Graph(s) under the Tree Branch " "selected below." msgstr "" #: ../graphs.php:873 #, fuzzy msgid "Destination Branch" msgstr "Branche de destintation :" #: ../graphs.php:886 msgid "Choose a new Device for these Graph(s) and click 'Continue'." msgstr "" #: ../graphs.php:888 #, fuzzy msgid "New Device" msgstr "Équipement" #: ../graphs.php:900 msgid "" "Click 'Continue' to re-apply suggested naming to the following Graph(s)." msgstr "" #: ../graphs.php:905 msgid "Reapply Suggested Naming to Graph(s)" msgstr "" #: ../graphs.php:921 msgid "" "Click 'Continue' to create an Aggregate Graph from the selected Graph(s)." msgstr "" #: ../graphs.php:928 msgid "The following data sources are in use by these graphs:" msgstr "Les sources de donnée suivantes sont utilisées ces graphiques :" #: ../graphs.php:961 msgid "Please confirm" msgstr "" #: ../graphs.php:1029 msgid "Resize Selected Graph(s)" msgstr "" #: ../graphs.php:1051 msgid "" "Select the Aggregate Template to use and press 'Continue' to create your " "Aggregate Graph. Otherwise press 'Cancel' to return." msgstr "" #: ../graphs.php:1072 msgid "Create Aggregate" msgstr "" #: ../graphs.php:1076 msgid "" "There are presently no Aggregate Templates defined for this Graph Template. " "Please either first create an Aggregate Template for the selected Graphs " "Graph Template and try again, or simply crease an un-templated Aggregate " "Graph." msgstr "" #: ../graphs.php:1077 msgid "Press 'Return' to return and select different Graphs." msgstr "" #: ../graphs.php:1089 msgid "Click 'Continue' to apply Automation Rules to the following Graphs." msgstr "" #: ../graphs.php:1105 #, fuzzy msgid "You must select at least one Graph." msgstr "Vous devez sélectionner au moins un champ." #: ../graphs.php:1245 #, fuzzy, php-format msgid "Graph [edit: %s]" msgstr "Elements graphiques" #: ../graphs.php:1251 #, fuzzy msgid "Graph [new]" msgstr "Elements graphiques" #: ../graphs.php:1276 msgid "Turn Off Graph Debug Mode." msgstr "" #: ../graphs.php:1278 msgid "Turn On Graph Debug Mode." msgstr "" #: ../graphs.php:1291 #, fuzzy msgid "Edit Graph Template." msgstr "Modèle de graphique" #: ../graphs.php:1297 #, fuzzy msgid "Unlock Graph." msgstr "Pas de graphiques" #: ../graphs.php:1299 #, fuzzy msgid "Lock Graph." msgstr "Pas de graphiques" #: ../graphs.php:1323 msgid "Selected Graph Template" msgstr "Modèle de graphique sélectionné" #: ../graphs.php:1324 #, php-format msgid "" "Choose a Graph Template to apply to this Graph. Please note that you may " "only change Graph Templates to a 100% compatible Graph Template, which means " "that it includes identical Data Sources." msgstr "" #: ../graphs.php:1332 msgid "Choose the Device that this Graph belongs to." msgstr "" #: ../graphs.php:1371 #, fuzzy msgid "Supplemental Graph Template Data" msgstr "Modèle de graphique sélectionné" #: ../graphs.php:1373 msgid "Graph Fields" msgstr "Champs du graphique" #: ../graphs.php:1374 #, fuzzy msgid "Graph Item Fields" msgstr "Champs du graphique" #: ../graphs.php:1643 ../lib/functions.php:1908 msgid "Graph Management" msgstr "Gestion du graphique" #: ../graphs.php:1787 ../include/global_form.php:1859 #: ../lib/html_reports.php:355 ../tree.php:681 #, fuzzy msgid "Graph Name" msgstr "Gestion du graphique" #: ../graphs.php:1787 msgid "" "The Title of this Graph. Generally programatically generated from the Graph " "Template definition or Suggested Naming rules. The max length of the Title " "is controlled under Settings->Visual." msgstr "" #: ../graphs.php:1788 msgid "" "The internal database ID for this Graph. Useful when performing automation " "or debugging." msgstr "" #: ../graphs.php:1789 msgid "The Graph Template that this Graph was based upon." msgstr "" #: ../graphs.php:1790 #, fuzzy msgid "The size of this Graph when not in Preview mode." msgstr "Le nombre de graphiques à afficher sur une page en prévisualisation." #: ../graphs_items.php:290 #, fuzzy msgid "Data Sources [No Device]" msgstr "Sources de donnée" #: ../graphs_items.php:325 ../include/global_arrays.php:984 #: ../include/global_form.php:1556 #, fuzzy msgid "Data Template" msgstr "Modèle de graphique" #: ../graphs_items.php:377 #, fuzzy, php-format msgid "Graph Items [graph: %s]" msgstr "Entrées de l'élément graphique" #: ../graphs_new.php:75 #, fuzzy msgid "Default Settings Saved" msgstr "Paramètres de Cacti" #: ../graphs_new.php:281 #, fuzzy, php-format msgid "Create Graph from %s" msgstr "Créer de nouveaux graphiques" #: ../graphs_new.php:302 #, fuzzy, php-format msgid "Created %s Graphs from %s" msgstr "Créer un graphique à partir d'une interrogation avancée" #: ../graphs_new.php:304 #, fuzzy, php-format msgid "Created 1 Graph from %s" msgstr "Créer de nouveaux graphiques" #: ../graphs_new.php:345 #, fuzzy, php-format msgid "Graph [Template: %s]" msgstr "Modèle de graphique :" #: ../graphs_new.php:346 #, fuzzy, php-format msgid "Graph Items [Template: %s]" msgstr "Modèle de graphique :" #: ../graphs_new.php:351 #, fuzzy, php-format msgid "Data Source [Template: %s]" msgstr "Type de source de donnée" #: ../graphs_new.php:361 #, php-format msgid "Custom Data [Template: %s]" msgstr "" #: ../graphs_new.php:446 #, fuzzy, php-format msgid "New Graphs for [ %s ]" msgstr "Nouveaux grahiques" #: ../graphs_new.php:449 msgid "New Graphs for [ All Devices ]" msgstr "" #: ../graphs_new.php:454 msgid "New Graphs for None Host Type" msgstr "" #: ../graphs_new.php:500 #, fuzzy msgid "Graph Types" msgstr "Arbres des graphiques" #: ../graphs_new.php:505 #, fuzzy msgid "Graph Template Based" msgstr "Nom du modèle de graphique" #: ../graphs_new.php:541 #, fuzzy msgid "Edit this Device" msgstr "Mettre à jour ce champ" #: ../graphs_new.php:542 #, fuzzy msgid "Create New Device" msgstr "Créer de nouveaux graphiques" #: ../graphs_new.php:598 ../graphs_new.php:880 ../user_admin.php:1593 #: ../user_group_admin.php:1316 msgid "Select All" msgstr "Sélectionner tout" #: ../graphs_new.php:674 ../include/global_arrays.php:679 #: ../include/global_arrays.php:750 ../lib/html_form.php:1111 #: ../lib/html_form.php:1124 ../tree.php:1025 msgid "Create" msgstr "Créer" #: ../graphs_new.php:676 #, fuzzy msgid "(Select a graph type to create)" msgstr "Sélectionnez un type de graphique :" #: ../graphs_new.php:760 #, fuzzy, php-format msgid "Data Query [%s]" msgstr "Interrogation avancée" #: ../graphs_new.php:876 msgid "From there you can get more information." msgstr "" #: ../graphs_new.php:876 msgid "" "This Data Query returned 0 rows, perhaps there was a problem executing this " "Data Query." msgstr "" #: ../graphs_new.php:876 msgid "You can run this Data Query in debug mode" msgstr "" #: ../graphs_new.php:919 msgid "Search Returned no Rows." msgstr "" #: ../graphs_new.php:924 #, fuzzy msgid "Error in data query." msgstr "Nom de cette requète." #: ../graphs_new.php:948 #, fuzzy msgid "Select a Graph Type to Create" msgstr "Sélectionnez un type de graphique :" #: ../graphs_new.php:951 msgid "Make selection default" msgstr "" #: ../graphs_new.php:951 #, fuzzy msgid "Set Default" msgstr "Défaut" #: ../host.php:41 #, fuzzy msgid "Change Device Settings" msgstr "Paramètres de Cacti" #: ../host.php:42 msgid "Clear Statistics" msgstr "Initialiser les statistiques" #: ../host.php:44 msgid "Sync to Device Template" msgstr "" #: ../host.php:376 #, fuzzy msgid "Click 'Continue' to enable the following Device(s)." msgstr "Etes vous de vouloir supprimer les équipements suivants ?" #: ../host.php:381 #, fuzzy msgid "Enable Device(s)" msgstr "Équipements" #: ../host.php:385 #, fuzzy msgid "Click 'Continue' to disable the following Device(s)." msgstr "Etes vous de vouloir supprimer les équipements suivants ?" #: ../host.php:390 msgid "Disable Device(s)" msgstr "" #: ../host.php:394 msgid "" "Click 'Continue' to change the Device options below for multiple Device(s). " "Please check the box next to the fields you want to update, and then fill in " "the new value." msgstr "" #: ../host.php:417 msgid "Update this Field" msgstr "Mettre à jour ce champ" #: ../host.php:432 #, fuzzy msgid "Change Device(s) SNMP Options" msgstr "Modifier les options SNMP" #: ../host.php:436 #, fuzzy msgid "Click 'Continue' to clear the counters for the following Device(s)." msgstr "" "Pour initialiser les compteurs des équipements suivants, cliquez sur le " "bouton \"oui\" ci-dessous." #: ../host.php:441 #, fuzzy msgid "Clear Statistics on Device(s)" msgstr "Initialiser les statistiques" #: ../host.php:445 msgid "" "Click 'Continue' to Synchronize the following Device(s) to their Device " "Template." msgstr "" #: ../host.php:450 msgid "Synchronize Device(s)" msgstr "" #: ../host.php:454 #, fuzzy msgid "Click 'Continue' to delete the following Device(s)." msgstr "Etes vous de vouloir supprimer les équipements suivants ?" #: ../host.php:457 #, fuzzy msgid "" "Leave all Graph(s) and Data Source(s) untouched. Data Source(s) will be " "disabled however." msgstr "" "Ne pas toucher aux graphiques et sources de donnée. Les sources de donnée " "seront néamoins désactivées." #: ../host.php:458 msgid "Delete all associated Graph(s) and Data Source(s)." msgstr "" #: ../host.php:464 #, fuzzy msgid "Delete Device(s)" msgstr "Équipements" #: ../host.php:468 msgid "" "Click 'Continue' to place the following Device(s) under the branch selected " "below." msgstr "" #: ../host.php:478 #, fuzzy msgid "Place Device(s) on Tree" msgstr "Placer sur un arbre" #: ../host.php:482 msgid "Click 'Continue' to apply Automation Rules to the following Devices(s)." msgstr "" #: ../host.php:487 msgid "Run Automation on Device(s)" msgstr "" #: ../host.php:498 #, fuzzy msgid "You must select at least one device." msgstr "Vous devez sélectionner au moins un champ." #: ../host.php:598 #, fuzzy msgid "Device [new]" msgstr "Équipement" #: ../host.php:604 #, php-format msgid "Device [edit: %s]" msgstr "" #: ../host.php:606 msgid "Disable Device Debug" msgstr "" #: ../host.php:608 msgid "Enable Device Debug" msgstr "" #: ../host.php:622 #, fuzzy msgid "Create Graphs for this Device" msgstr "Créer un graphique à partir d'une interrogation avancée" #: ../host.php:624 #, fuzzy msgid "Data Source List" msgstr "Sources de donnée" #: ../host.php:625 #, fuzzy msgid "Graph List" msgstr "Titre du graphique" #: ../host.php:631 msgid "Contacting Device" msgstr "" #: ../host.php:663 msgid "Data Query Debug Information" msgstr "" #: ../host.php:666 ../templates_import.php:141 msgid "Hide" msgstr "" #: ../host.php:737 ../tree.php:1145 ../tree.php:1219 ../tree.php:1306 msgid "Edit" msgstr "Editer" #: ../host.php:737 #, fuzzy msgid "Is Being Graphed" msgstr "Non graphé" #: ../host.php:737 msgid "Not Being Graphed" msgstr "Non graphé" #: ../host.php:740 msgid "Delete Graph Template Association" msgstr "Supprimer l'association de modèled de graphique" #: ../host.php:747 ../host_templates.php:493 msgid "No associated graph templates." msgstr "Pas de modèles de graphique associés" #: ../host.php:756 ../host_templates.php:502 #, fuzzy msgid "Add Graph Template" msgstr "Ajouter un modèle de graphique :" #: ../host.php:762 #, fuzzy msgid "Add Graph Template to Device" msgstr "Ajouter un modèle de graphique :" #: ../host.php:772 ../host_templates.php:525 msgid "Associated Data Queries" msgstr "Interrogations avancées associées" #: ../host.php:777 ../host.php:873 msgid "Re-Index Method" msgstr "Méthode de réindexation" #: ../host.php:779 ../lib/api_automation.php:1212 #: ../lib/api_automation.php:1274 ../lib/api_automation.php:1338 #: ../lib/functions.php:1926 ../lib/functions.php:1992 #: ../lib/functions.php:2058 ../lib/functions.php:2094 #: ../lib/functions.php:2112 ../lib/functions.php:2130 #: ../lib/functions.php:2148 ../lib/functions.php:2178 #: ../lib/functions.php:2214 ../lib/functions.php:2244 #: ../lib/functions.php:2334 ../lib/functions.php:2520 #: ../lib/functions.php:2544 ../lib/functions.php:2562 #: ../lib/functions.php:2580 ../lib/functions.php:2598 #: ../lib/functions.php:2622 ../lib/html_reports.php:1216 ../links.php:377 #: ../plugins.php:374 msgid "Actions" msgstr "Actions" #: ../host.php:840 msgid "Fail" msgstr "Echoué" #: ../host.php:840 ../lib/functions.php:3811 ../lib/functions.php:3816 msgid "Success" msgstr "Succès" #: ../host.php:843 #, fuzzy msgid "Reload Query" msgstr "Recharger les interrogations avancées associées" #: ../host.php:844 msgid "Verbose Query" msgstr "Requète verbeuse" #: ../host.php:845 #, fuzzy msgid "Remove Query" msgstr "Requète verbeuse" #: ../host.php:851 #, fuzzy msgid "No Associated Data Queries." msgstr "Interrogations avancées associées" #: ../host.php:867 ../host_templates.php:559 #, fuzzy msgid "Add Data Query" msgstr "Interrogation avancée" #: ../host.php:879 #, fuzzy msgid "Add Data Query to Device" msgstr "Nom de l'interrogation avancée" #: ../host.php:1014 ../include/global_arrays.php:460 msgid "Ping and SNMP Uptime" msgstr "" #: ../host.php:1015 ../include/global_arrays.php:462 #, fuzzy msgid "SNMP Uptime" msgstr "Délai maximum pour le SNMP" #: ../host.php:1016 ../include/global_arrays.php:465 #, fuzzy msgid "Ping" msgstr "Type de ping" #: ../host.php:1017 ../include/global_arrays.php:461 msgid "Ping or SNMP Uptime" msgstr "" #: ../host.php:1018 ../include/global_arrays.php:463 #, fuzzy msgid "SNMP Desc" msgstr "Version de SNMP" #: ../host.php:1019 msgid "SNMP GetNext" msgstr "" #: ../host.php:1312 ../include/global_settings.php:441 msgid "Site" msgstr "" #: ../host.php:1388 ../lib/api_automation.php:164 #: ../lib/api_automation.php:1019 msgid "Not Up" msgstr "" #: ../host.php:1391 ../lib/api_automation.php:167 #: ../lib/api_automation.php:1022 ../lib/html_utility.php:814 ../pollers.php:41 msgid "Recovering" msgstr "" #: ../host.php:1392 ../lib/api_automation.php:168 #: ../lib/api_automation.php:1023 ../lib/html_utility.php:823 #: ../plugins.php:166 ../utilities.php:2011 msgid "Unknown" msgstr "Inconnu" #: ../host.php:1498 ../lib/api_automation.php:557 #, fuzzy msgid "Device Description" msgstr "Description" #: ../host.php:1498 msgid "The name by which this Device will be referred to." msgstr "" #: ../host.php:1499 msgid "" "Either an IP address, or hostname. If a hostname, it must be resolvable by " "either DNS, or from your hosts file." msgstr "" #: ../host.php:1499 ../include/global_form.php:1013 #: ../include/global_form.php:1638 ../lib/api_automation.php:270 #: ../lib/api_automation.php:558 ../lib/api_automation.php:809 #: ../lib/api_automation.php:1138 ../managers.php:225 ../pollers.php:82 #: ../pollers.php:613 ../user_admin.php:1242 ../user_group_admin.php:966 msgid "Hostname" msgstr "Nom de machine" #: ../host.php:1500 msgid "" "The internal database ID for this Device. Useful when performing automation " "or debugging." msgstr "" #: ../host.php:1501 msgid "The total number of Graphs generated from this Device." msgstr "" #: ../host.php:1502 msgid "The total number of Data Sources generated from this Device." msgstr "" #: ../host.php:1503 msgid "" "The monitoring status of the Device based upon ping results. If this Device " "is a special type Device, by using the hostname \"localhost\", or due to the " "setting to not perform an Availability Check, it will always remain Up. " "When using cmd.php data collector, a Device with no Graphs, is not pinged by " "the data collector and will remain in an \"Unknown\" state." msgstr "" #: ../host.php:1504 msgid "In State" msgstr "" #: ../host.php:1504 msgid "The amount of time that this Device has been in its current state." msgstr "" #: ../host.php:1505 msgid "The current amount of time that the host has been up." msgstr "" #: ../host.php:1506 #, fuzzy msgid "Poll Time" msgstr "Type de l'agent de collecte" #: ../host.php:1506 msgid "The amount of time it takes to collect data from this Device." msgstr "" #: ../host.php:1507 msgid "Current (ms)" msgstr "Actuel (ms)" #: ../host.php:1507 msgid "The current ping time in milliseconds to reach the Device." msgstr "" #: ../host.php:1508 msgid "Average (ms)" msgstr "Moyen (ms)" #: ../host.php:1508 msgid "" "The average ping time in milliseconds to reach the Device since the counters " "were cleared for this Device." msgstr "" #: ../host.php:1509 msgid "Availability" msgstr "Disponibilité" #: ../host.php:1509 msgid "" "The availability percentage based upon ping results since the counters were " "cleared for this Device." msgstr "" #: ../host_templates.php:32 #, fuzzy msgid "Sync Devices" msgstr "Équipements" #: ../host_templates.php:256 #, fuzzy msgid "Click 'Continue' to delete the following Device Template(s)." msgstr "Etes vous de vouloir supprimer les équipements suivants ?" #: ../host_templates.php:261 #, fuzzy msgid "Delete Device Template(s)" msgstr "Modèle de graphique sélectionné" #: ../host_templates.php:265 msgid "" "Click 'Continue' to duplicate the following Device Template(s). Optionally " "change the title for the new Device Template(s)." msgstr "" #: ../host_templates.php:275 #, fuzzy msgid "Duplicate Device Template(s)" msgstr "Mettre à jour les modèles de graphique" #: ../host_templates.php:279 msgid "" "Click 'Continue' to Synchronize Devices associated with the selected Device " "Template(s). Note that this action may take some time depending on the " "number of Devices mapped to the Device Template." msgstr "" #: ../host_templates.php:286 msgid "Sync Devices to Device Template(s)" msgstr "" #: ../host_templates.php:289 #, fuzzy msgid "You must select at least one host template." msgstr "Vous devez sélectionner au moins un champ." #: ../host_templates.php:328 msgid "" "Click 'Continue' to delete the following Graph Template will be " "disassociated from the Device Template." msgstr "" #: ../host_templates.php:329 #, fuzzy, php-format msgid "Graph Template Name: %s" msgstr "Nom du modèle de graphique" #: ../host_templates.php:388 msgid "" "Click 'Continue' to delete the following Data Queries will be disassociated " "from the Device Template." msgstr "" #: ../host_templates.php:389 #, fuzzy, php-format msgid "Data Query Name: %s" msgstr "Nom de l'interrogation avancée" #: ../host_templates.php:442 #, php-format msgid "Device Templates [edit: %s]" msgstr "" #: ../host_templates.php:444 msgid "Device Templates [new]" msgstr "" #: ../host_templates.php:461 msgid "Default Submit Button" msgstr "" #: ../host_templates.php:515 #, fuzzy msgid "Add Graph Template to Device Template" msgstr "Ajouter un modèle de graphique :" #: ../host_templates.php:550 msgid "No associated data queries." msgstr "Aucune interrogation avancée associée." #: ../host_templates.php:569 msgid "Add Data Query to Device Template" msgstr "" #: ../host_templates.php:691 ../host_templates.php:706 #: ../host_templates.php:805 ../include/global_arrays.php:874 #: ../lib/functions.php:2082 #, fuzzy msgid "Device Templates" msgstr "Modèle d'utilisateur" #: ../host_templates.php:724 #, fuzzy msgid "Has Devices" msgstr "Équipements" #: ../host_templates.php:814 ../lib/api_automation.php:272 #: ../lib/api_automation.php:559 ../lib/api_automation.php:1139 #, fuzzy msgid "Device Template Name" msgstr "Nom du modèle" #: ../host_templates.php:814 #, fuzzy msgid "The name of this Device Template." msgstr "Le nom de ce modèle de donnée." #: ../host_templates.php:815 msgid "" "The internal database ID for this Device Template. Useful when performing " "automation or debugging." msgstr "" #: ../host_templates.php:816 msgid "" "Device Templates in use cannot be Deleted. In use is defined as being " "referenced by a Device." msgstr "" #: ../host_templates.php:817 #, fuzzy msgid "Devices Using" msgstr "Équipements" #: ../host_templates.php:817 #, fuzzy msgid "The number of Devices using this Device Template." msgstr "Le nom de ce modèle de donnée." #: ../host_templates.php:840 #, fuzzy msgid "No Device Templates Found" msgstr "Pas de modèle de graphique" #: ../include/auth.php:115 ../include/auth.php:117 ../permission_denied.php:30 #: ../permission_denied.php:32 #, fuzzy msgid "Login Again" msgstr "Options d'authentification" #: ../include/auth.php:125 ../include/auth.php:146 ../permission_denied.php:60 #, fuzzy msgid "Permission Denied" msgstr "Accès refusé" #: ../include/auth.php:148 ../permission_denied.php:62 #, fuzzy msgid "" "If you feel that this is an error. Please contact your Cacti Administrator." msgstr "Accès refusé, veuillez contacter votre administrateur Cacti." #: ../include/auth.php:148 ../permission_denied.php:62 msgid "You are not permitted to access this section of Cacti." msgstr "" #: ../include/global_arrays.php:88 msgid "Save Successful." msgstr "Sauvegarde réussie." #: ../include/global_arrays.php:91 msgid "Save Failed." msgstr "Sauvegarde échouée." #: ../include/global_arrays.php:94 msgid "Save Failed: Field Input Error (Check Red Fields)." msgstr "" #: ../include/global_arrays.php:97 msgid "Passwords do not match, please retype." msgstr "Les mots de passe ne correspondent pas, veuillez resaisir." #: ../include/global_arrays.php:100 msgid "You must select at least one field." msgstr "Vous devez sélectionner au moins un champ." #: ../include/global_arrays.php:103 msgid "" "You must have built in user authentication turned on to use this feature." msgstr "" #: ../include/global_arrays.php:106 msgid "XML parse error." msgstr "Erreur de traitement XML." #: ../include/global_arrays.php:109 msgid "Username already in use." msgstr "Nom d'utilisateur déjà utilisé." #: ../include/global_arrays.php:112 msgid "XML: Cacti version does not exist." msgstr "" #: ../include/global_arrays.php:115 msgid "XML: Hash version does not exist." msgstr "" #: ../include/global_arrays.php:118 msgid "XML: Generated with a newer version of Cacti." msgstr "" #: ../include/global_arrays.php:121 msgid "XML: Cannot locate type code." msgstr "" #: ../include/global_arrays.php:124 #, fuzzy msgid "Username already exists." msgstr "Nom d'utilisateur déjà utilisé." #: ../include/global_arrays.php:127 msgid "Username change not permitted for designated template or guest user." msgstr "" #: ../include/global_arrays.php:130 msgid "User delete not permitted for designated template or guest user." msgstr "" #: ../include/global_arrays.php:133 msgid "User delete not permitted for designated graph export user." msgstr "" #: ../include/global_arrays.php:136 msgid "" "Data Template Includes Deleted Data Source Profile. Please resave the Data " "Template with an existing Data Source Profile." msgstr "" #: ../include/global_arrays.php:139 msgid "" "Graph Template Includes Deleted GPrint Prefix. Please run Database Repair " "Script to Identify and/or Correct." msgstr "" #: ../include/global_arrays.php:142 msgid "" "Graph Template Includes Deleted CDEFs. Please run Database Repair Script to " "Identify and/or Correct." msgstr "" #: ../include/global_arrays.php:145 msgid "" "Graph Template Includes Deleted Data Input Method. Please run Database " "Repair Script to Identify." msgstr "" #: ../include/global_arrays.php:148 msgid "" "Data Template Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: ../include/global_arrays.php:151 msgid "" "Device Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: ../include/global_arrays.php:154 msgid "" "Data Query Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: ../include/global_arrays.php:157 msgid "" "Graph Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: ../include/global_arrays.php:160 msgid "" "Graph not found. Either it has been deleted or your database needs repair." msgstr "" #: ../include/global_arrays.php:163 msgid "SNMPv3 Auth Passphrases must be 8 characters or greater." msgstr "" #: ../include/global_arrays.php:166 msgid "" "Some Graphs not Updated. Unable to Change Device for Data Query based Graphs." msgstr "" #: ../include/global_arrays.php:169 msgid "Unable to Change Device for Data Query based Graphs." msgstr "" #: ../include/global_arrays.php:172 msgid "Cacti Log purged successfully" msgstr "" #: ../include/global_arrays.php:175 msgid "" "Error: If you force a password change, you must also allow the user to " "change their password." msgstr "" #: ../include/global_arrays.php:178 msgid "Error: You are not allowed to change your password." msgstr "" #: ../include/global_arrays.php:181 msgid "Error: LDAP/AD based password change not supported." msgstr "" #: ../include/global_arrays.php:184 msgid "Error: Unable to clear log, no write permissions" msgstr "" #: ../include/global_arrays.php:187 msgid "Error: Unable to clear log, file does not exist" msgstr "" #: ../include/global_arrays.php:190 msgid "Invalid Timestamp. Select timestamp in the future." msgstr "" #: ../include/global_arrays.php:193 msgid "Data Collector(s) Synchronized for Offline Operation" msgstr "" #: ../include/global_arrays.php:196 msgid "Data Collector(s) Not found when attempting Synchronization" msgstr "" #: ../include/global_arrays.php:199 msgid "Unable to establish MySQL connection with remote Data Collector." msgstr "" #: ../include/global_arrays.php:202 msgid "" "Data Collector Synchronization must be initiated from the main Cacti server." msgstr "" #: ../include/global_arrays.php:205 msgid "Report Saved" msgstr "" #: ../include/global_arrays.php:208 #, fuzzy msgid "Report Save Failed" msgstr "Sauvegarde échouée." #: ../include/global_arrays.php:211 msgid "Report Item Saved" msgstr "" #: ../include/global_arrays.php:214 #, fuzzy msgid "Report Item Save Failed" msgstr "Sauvegarde échouée." #: ../include/global_arrays.php:306 ../include/global_arrays.php:619 msgid "Function" msgstr "Fonction" #: ../include/global_arrays.php:307 ../include/global_arrays.php:621 msgid "Special Data Source" msgstr "Source de donnée spéciale" #: ../include/global_arrays.php:308 ../include/global_arrays.php:623 #, fuzzy msgid "Custom String" msgstr "Chaine d'entrée" #: ../include/global_arrays.php:318 ../include/global_arrays.php:325 #, fuzzy msgid "Script/Command" msgstr "Script" #: ../include/global_arrays.php:320 ../include/global_arrays.php:326 #: ../utilities.php:1607 #, fuzzy msgid "Script Server" msgstr "Script" #: ../include/global_arrays.php:332 #, fuzzy msgid "Index Count" msgstr "Méthode de réindexation" #: ../include/global_arrays.php:333 #, fuzzy msgid "Verify All" msgstr "Vérifier tous les champs" #: ../include/global_arrays.php:337 msgid "" "All Re-Indexing will be manual or managed through scripts or Device " "Automation." msgstr "" #: ../include/global_arrays.php:338 msgid "" "When the Devices SNMP uptime goes backward, a Re-Index will be performed." msgstr "" #: ../include/global_arrays.php:339 msgid "When the Data Query index count changes, a Re-Index will be performed." msgstr "" #: ../include/global_arrays.php:340 msgid "Every polling cycle, a Re-Index will be performed. Very expensive." msgstr "" #: ../include/global_arrays.php:344 msgid "SNMP Field Name (Dropdown)" msgstr "" #: ../include/global_arrays.php:345 msgid "SNMP Field Value (From User)" msgstr "" #: ../include/global_arrays.php:346 msgid "SNMP Output Type (Dropdown)" msgstr "" #: ../include/global_arrays.php:365 ../include/global_arrays.php:371 msgid "Normal" msgstr "" #: ../include/global_arrays.php:366 msgid "Light" msgstr "" #: ../include/global_arrays.php:367 ../include/global_arrays.php:372 msgid "Mono" msgstr "" #: ../include/global_arrays.php:376 msgid "North" msgstr "" #: ../include/global_arrays.php:377 msgid "South" msgstr "" #: ../include/global_arrays.php:378 msgid "West" msgstr "" #: ../include/global_arrays.php:379 msgid "East" msgstr "" #: ../include/global_arrays.php:384 msgid "Left" msgstr "" #: ../include/global_arrays.php:385 msgid "Right" msgstr "" #: ../include/global_arrays.php:386 msgid "Justified" msgstr "" #: ../include/global_arrays.php:387 msgid "Center" msgstr "" #: ../include/global_arrays.php:391 msgid "Top -> Down" msgstr "" #: ../include/global_arrays.php:392 msgid "Bottom -> Up" msgstr "" #: ../include/global_arrays.php:396 ../tree.php:1129 #, fuzzy msgid "Numeric" msgstr "Tri numérique" #: ../include/global_arrays.php:397 msgid "Timestamp" msgstr "" #: ../include/global_arrays.php:398 #, fuzzy msgid "Duration" msgstr "Description" #: ../include/global_arrays.php:430 #, fuzzy msgid "Not In Use" msgstr "Pas d'utilisateur" #: ../include/global_arrays.php:431 ../include/global_arrays.php:432 #: ../include/global_arrays.php:433 ../include/global_arrays.php:589 #: ../include/global_arrays.php:590 #, fuzzy, php-format msgid "Version %d" msgstr "Version" #: ../include/global_arrays.php:437 msgid "MD5 (default)" msgstr "MD5 (défaut)" #: ../include/global_arrays.php:438 msgid "SHA" msgstr "SHA" #: ../include/global_arrays.php:442 #, fuzzy msgid "[None]" msgstr "Aucun" #: ../include/global_arrays.php:443 #, fuzzy msgid "DES (default)" msgstr "MD5 (défaut)" #: ../include/global_arrays.php:444 msgid "AES" msgstr "" #: ../include/global_arrays.php:453 msgid "Logfile Only" msgstr "" #: ../include/global_arrays.php:454 msgid "Logfile and Syslog/Eventlog" msgstr "" #: ../include/global_arrays.php:455 msgid "Syslog/Eventlog Only" msgstr "" #: ../include/global_arrays.php:464 msgid "SNMP getNext" msgstr "" #: ../include/global_arrays.php:469 msgid "ICMP Ping" msgstr "" #: ../include/global_arrays.php:470 msgid "TCP Ping" msgstr "" #: ../include/global_arrays.php:471 msgid "UDP Ping" msgstr "" #: ../include/global_arrays.php:475 msgid "NONE - Syslog Only if Selected" msgstr "" #: ../include/global_arrays.php:476 msgid "LOW - Statistics and Errors" msgstr "" #: ../include/global_arrays.php:477 msgid "MEDIUM - Statistics, Errors and Results" msgstr "" #: ../include/global_arrays.php:478 msgid "HIGH - Statistics, Errors, Results and Major I/O Events" msgstr "" #: ../include/global_arrays.php:479 msgid "DEBUG - Statistics, Errors, Results, I/O and Program Flow" msgstr "" #: ../include/global_arrays.php:480 msgid "DEVEL - Developer DEBUG Level" msgstr "" #: ../include/global_arrays.php:489 msgid "Selected Poller Interval" msgstr "" #: ../include/global_arrays.php:504 ../include/global_arrays.php:505 #: ../include/global_arrays.php:506 ../include/global_arrays.php:507 #: ../include/global_arrays.php:538 ../include/global_arrays.php:539 #: ../include/global_arrays.php:540 ../include/global_arrays.php:541 #, php-format msgid "Every %d Seconds" msgstr "" #: ../include/global_arrays.php:508 ../include/global_arrays.php:542 #: ../include/global_arrays.php:556 msgid "Every Minute" msgstr "" #: ../include/global_arrays.php:509 ../include/global_arrays.php:510 #: ../include/global_arrays.php:511 ../include/global_arrays.php:512 #: ../include/global_arrays.php:543 ../include/global_arrays.php:557 #, php-format msgid "Every %d Minutes" msgstr "" #: ../include/global_arrays.php:513 msgid "Every Hour" msgstr "" #: ../include/global_arrays.php:514 ../include/global_arrays.php:515 #: ../include/global_arrays.php:1444 ../include/global_arrays.php:1445 #: ../include/global_arrays.php:1446 ../include/global_arrays.php:1447 #: ../include/global_arrays.php:1448 ../include/global_settings.php:1765 #: ../include/global_settings.php:1766 #, php-format msgid "Every %d Hours" msgstr "" #: ../include/global_arrays.php:534 ../include/global_settings.php:1098 msgid "1 Day" msgstr "Un jour" #: ../include/global_arrays.php:547 #, fuzzy msgid "1 Thread (default)" msgstr "MD5 (défaut)" #: ../include/global_arrays.php:572 msgid "Builtin Authentication" msgstr "Méthode d'authentification intégrée" #: ../include/global_arrays.php:573 msgid "Web Basic Authentication" msgstr "Méthode d'authentification Web Basic" #: ../include/global_arrays.php:577 msgid "LDAP Authentication" msgstr "Méthode d'authentification par LDAP" #: ../include/global_arrays.php:578 msgid "Multiple LDAP/AD Domains" msgstr "" #: ../include/global_arrays.php:583 msgid "Active Directory" msgstr "" #: ../include/global_arrays.php:595 ../include/global_settings.php:1324 msgid "SSL" msgstr "" #: ../include/global_arrays.php:596 ../include/global_settings.php:1324 msgid "TLS" msgstr "" #: ../include/global_arrays.php:600 msgid "No Searching" msgstr "Pas de recherche" #: ../include/global_arrays.php:601 msgid "Anonymous Searching" msgstr "Recherche anonyme" #: ../include/global_arrays.php:602 msgid "Specific Searching" msgstr "Recherche spécifique" #: ../include/global_arrays.php:615 msgid "Enabled (strict mode)" msgstr "" #: ../include/global_arrays.php:620 ../include/global_form.php:2101 #: ../include/global_form.php:2143 ../lib/api_automation.php:1210 #: ../lib/api_automation.php:1272 msgid "Operator" msgstr "Opérateur" #: ../include/global_arrays.php:622 msgid "Another CDEF" msgstr "Autre CDEF" #: ../include/global_arrays.php:641 msgid "Inherit Parent Sorting" msgstr "" #: ../include/global_arrays.php:642 msgid "Manual Ordering (No Sorting)" msgstr "Tri manuel (pas automatique)" #: ../include/global_arrays.php:643 msgid "Alphabetic Ordering" msgstr "Tri alphabétique" #: ../include/global_arrays.php:644 #, fuzzy msgid "Natural Ordering" msgstr "Tri numérique" #: ../include/global_arrays.php:645 msgid "Numeric Ordering" msgstr "Tri numérique" #: ../include/global_arrays.php:649 ../lib/rrd.php:2624 msgid "Header" msgstr "" #: ../include/global_arrays.php:650 ../include/global_arrays.php:697 #: ../include/global_arrays.php:1269 ../include/global_arrays.php:1433 #: ../lib/html_tree.php:351 msgid "Graph" msgstr "Graphique" #: ../include/global_arrays.php:656 ../tree.php:1295 #, fuzzy msgid "Data Query Index" msgstr "Nom de l'interrogation avancée" #: ../include/global_arrays.php:660 #, fuzzy msgid "Current Graph Item Data Source" msgstr "Créer un graphique à partir d'une interrogation avancée" #: ../include/global_arrays.php:661 msgid "Current Graph Item Polling Interval" msgstr "" #: ../include/global_arrays.php:662 #, fuzzy msgid "All Data Sources (Do not Include Duplicates)" msgstr "Toutes les sources de donnée (Ne pas inclure les doublons)" #: ../include/global_arrays.php:663 msgid "All Data Sources (Include Duplicates)" msgstr "Toutes les sources de donnée (Inclure les doublons)" #: ../include/global_arrays.php:664 #, fuzzy msgid "All Similar Data Sources (Do not Include Duplicates)" msgstr "Toutes les sources de donnée similaires (Ne pas inclure les doublons)" #: ../include/global_arrays.php:665 #, fuzzy msgid "All Similar Data Sources (Do not Include Duplicates) Polling Interval" msgstr "Toutes les sources de donnée similaires (Ne pas inclure les doublons)" #: ../include/global_arrays.php:666 #, fuzzy msgid "All Similar Data Sources (Include Duplicates)" msgstr "Toutes les sources de donnée similaires (Ne pas inclure les doublons)" #: ../include/global_arrays.php:667 msgid "Current Data Source Item: Minimum Value" msgstr "Élément courant de source de donnée : Valeur minimum" #: ../include/global_arrays.php:668 msgid "Current Data Source Item: Maximum Value" msgstr "Élément courant de source de donnée : Valeur maximum" #: ../include/global_arrays.php:669 msgid "Graph: Lower Limit" msgstr "Graphique : Limite basse" #: ../include/global_arrays.php:670 msgid "Graph: Upper Limit" msgstr "Graphique : Limite haute" #: ../include/global_arrays.php:671 #, fuzzy msgid "Count of All Data Sources (Do not Include Duplicates)" msgstr "Toutes les sources de donnée (Ne pas inclure les doublons)" #: ../include/global_arrays.php:672 #, fuzzy msgid "Count of All Data Sources (Include Duplicates)" msgstr "Toutes les sources de donnée (Inclure les doublons)" #: ../include/global_arrays.php:673 #, fuzzy msgid "Count of All Similar Data Sources (Do not Include Duplicates)" msgstr "Toutes les sources de donnée similaires (Ne pas inclure les doublons)" #: ../include/global_arrays.php:674 #, fuzzy msgid "Count of All Similar Data Sources (Include Duplicates)" msgstr "Toutes les sources de donnée similaires (Ne pas inclure les doublons)" #: ../include/global_arrays.php:680 ../lib/html_form_template.php:562 #: ../lib/html_form_template.php:577 msgid "New Graphs" msgstr "Nouveaux grahiques" #: ../include/global_arrays.php:682 ../include/global_arrays.php:734 #: ../include/global_arrays.php:751 #, fuzzy msgid "Management" msgstr "Gestion utilisateurs" #: ../include/global_arrays.php:684 ../sites.php:378 ../sites.php:393 #: ../sites.php:472 msgid "Sites" msgstr "" #: ../include/global_arrays.php:685 ../include/global_arrays.php:866 #: ../tree.php:1476 ../tree.php:1491 ../tree.php:1549 ../user_admin.php:1513 #: ../user_admin.php:2926 ../user_admin.php:3013 ../user_group_admin.php:1235 #: ../user_group_admin.php:2441 #, fuzzy msgid "Trees" msgstr "Pas d'arbres" #: ../include/global_arrays.php:688 msgid "Aggregates" msgstr "" #: ../include/global_arrays.php:690 ../include/global_arrays.php:737 #: ../include/global_arrays.php:752 msgid "Data Collection" msgstr "" #: ../include/global_arrays.php:691 ../include/global_arrays.php:738 #: ../pollers.php:508 #, fuzzy msgid "Data Collectors" msgstr "Sélecteur de date de fin" #: ../include/global_arrays.php:699 msgid "Aggregate" msgstr "" #: ../include/global_arrays.php:702 ../include/global_arrays.php:754 #: ../include/global_settings.php:413 #, fuzzy msgid "Automation" msgstr "Remplissage automatique" #: ../include/global_arrays.php:704 msgid "Discovered Devices" msgstr "" #: ../include/global_arrays.php:705 #, fuzzy msgid "Device Rules" msgstr "Équipements" #: ../include/global_arrays.php:710 ../include/global_arrays.php:755 #: ../lib/html_filter.php:178 ../lib/html_graph.php:255 #: ../lib/html_tree.php:701 #, fuzzy msgid "Presets" msgstr "Présélections :" #: ../include/global_arrays.php:711 #, fuzzy msgid "Data Profiles" msgstr "Interrogations avancées" #: ../include/global_arrays.php:713 ../lib/functions.php:2328 ../vdef.php:651 #: ../vdef.php:665 ../vdef.php:836 msgid "VDEFs" msgstr "" #: ../include/global_arrays.php:717 ../include/global_arrays.php:756 msgid "Import/Export" msgstr "Importer/Exporter" #: ../include/global_arrays.php:718 ../lib/functions.php:2442 #: ../templates_import.php:115 msgid "Import Templates" msgstr "Importer des modèles" #: ../include/global_arrays.php:719 ../lib/functions.php:2430 #: ../templates_export.php:94 msgid "Export Templates" msgstr "Exporter les modèles" #: ../include/global_arrays.php:721 ../include/global_arrays.php:740 #: ../include/global_arrays.php:757 ../lib/plugins.php:763 msgid "Configuration" msgstr "" #: ../include/global_arrays.php:722 ../include/global_arrays.php:741 msgid "Settings" msgstr "Paramètres" #: ../include/global_arrays.php:723 ../lib/functions.php:2376 #: ../user_admin.php:2199 ../user_admin.php:2254 ../user_group_admin.php:667 #: ../user_group_admin.php:2528 #, fuzzy msgid "Users" msgstr "Pas d'utilisateur" #: ../include/global_arrays.php:724 ../lib/functions.php:2406 msgid "User Groups" msgstr "" #: ../include/global_arrays.php:725 ../lib/functions.php:2394 #: ../user_domains.php:612 ../user_domains.php:705 msgid "User Domains" msgstr "" #: ../include/global_arrays.php:727 ../include/global_arrays.php:743 #: ../include/global_arrays.php:758 ../lib/functions.php:2256 msgid "Utilities" msgstr "Utilitaires" #: ../include/global_arrays.php:728 ../include/global_arrays.php:744 msgid "System Utilities" msgstr "Utilitaires systèmes" #: ../include/global_arrays.php:729 ../include/global_arrays.php:772 #: ../include/global_arrays.php:855 ../links.php:90 ../links.php:301 #: ../links.php:370 ../links.php:483 msgid "External Links" msgstr "" #: ../include/global_arrays.php:781 msgid "All Lines" msgstr "" #: ../include/global_arrays.php:782 ../include/global_arrays.php:783 #: ../include/global_arrays.php:784 ../include/global_arrays.php:785 #: ../include/global_arrays.php:786 ../include/global_arrays.php:787 #: ../include/global_arrays.php:788 ../include/global_arrays.php:789 #: ../include/global_arrays.php:790 ../include/global_arrays.php:791 #: ../include/global_arrays.php:792 ../include/global_arrays.php:793 #, php-format msgid "%d Lines" msgstr "" #: ../include/global_arrays.php:848 msgid "Never" msgstr "Jamais" #: ../include/global_arrays.php:852 msgid "Console Access" msgstr "Accès console" #: ../include/global_arrays.php:854 #, fuzzy msgid "Update Profile" msgstr "Mettre à jour le fichier RRD" #: ../include/global_arrays.php:857 ../user_admin.php:2178 msgid "User Management" msgstr "Gestion utilisateurs" #: ../include/global_arrays.php:858 #, fuzzy msgid "Settings and Utilities" msgstr "Utilitaires systèmes" #: ../include/global_arrays.php:859 #, fuzzy msgid "Automation Settings" msgstr "Paramètres de Cacti" #: ../include/global_arrays.php:864 msgid "Sites/Devices/Data Sources/Data Collectors" msgstr "" #: ../include/global_arrays.php:867 msgid "Remove Spikes from Graphs" msgstr "" #: ../include/global_arrays.php:870 msgid "Colors/GPrints/CDEFs/VDEFs" msgstr "" #: ../include/global_arrays.php:876 #, fuzzy msgid "Export Data" msgstr "Importer les données" #: ../include/global_arrays.php:877 msgid "Import Data" msgstr "Importer les données" #: ../include/global_arrays.php:879 ../include/global_settings.php:665 #, fuzzy msgid "Log Management" msgstr "Gestion utilisateurs" #: ../include/global_arrays.php:880 #, fuzzy msgid "Log Viewing" msgstr "Vue en liste" #: ../include/global_arrays.php:882 #, fuzzy msgid "Reports Management" msgstr "Gestion utilisateurs" #: ../include/global_arrays.php:883 msgid "Reports Creation" msgstr "" #: ../include/global_arrays.php:981 msgid "CDEF" msgstr "CDEF" #: ../include/global_arrays.php:982 #, fuzzy msgid "CDEF Item" msgstr "Éléments CDEF" #: ../include/global_arrays.php:983 #, fuzzy msgid "GPRINT Preset" msgstr "Texte GPRINT" #: ../include/global_arrays.php:986 #, fuzzy msgid "Data Input Field" msgstr "Métode d'entrée" #: ../include/global_arrays.php:987 ../include/global_form.php:394 #: ../include/global_form.php:1613 #, fuzzy msgid "Data Source Profile" msgstr "Champs de la source de donnée" #: ../include/global_arrays.php:988 #, fuzzy msgid "Data Template Item" msgstr "Elements de modèle de graphique" #: ../include/global_arrays.php:990 #, fuzzy msgid "Graph Template Item" msgstr "Elements de modèle de graphique" #: ../include/global_arrays.php:991 #, fuzzy msgid "Graph Template Input" msgstr "Elements de modèle de graphique" #: ../include/global_arrays.php:994 msgid "VDEF" msgstr "" #: ../include/global_arrays.php:995 #, fuzzy msgid "VDEF Item" msgstr "Éléments CDEF" #: ../include/global_arrays.php:1039 msgid "Last Half Hour" msgstr "Dernière demi-heure" #: ../include/global_arrays.php:1040 msgid "Last Hour" msgstr "La dernière heure" #: ../include/global_arrays.php:1041 ../include/global_arrays.php:1042 #: ../include/global_arrays.php:1043 ../include/global_arrays.php:1044 #, fuzzy, php-format msgid "Last %d Hours" msgstr "La dernière heure" #: ../include/global_arrays.php:1045 msgid "Last Day" msgstr "Hier" #: ../include/global_arrays.php:1046 ../include/global_arrays.php:1047 #: ../include/global_arrays.php:1048 #, fuzzy, php-format msgid "Last %d Days" msgstr "Hier" #: ../include/global_arrays.php:1049 msgid "Last Week" msgstr "La semaine dernière" #: ../include/global_arrays.php:1050 #, fuzzy, php-format msgid "Last %d Weeks" msgstr "La semaine dernière" #: ../include/global_arrays.php:1051 msgid "Last Month" msgstr "Le moi dernier" #: ../include/global_arrays.php:1052 ../include/global_arrays.php:1053 #: ../include/global_arrays.php:1054 ../include/global_arrays.php:1055 #, fuzzy, php-format msgid "Last %d Months" msgstr "Le moi dernier" #: ../include/global_arrays.php:1056 msgid "Last Year" msgstr "L'année dernière" #: ../include/global_arrays.php:1057 #, fuzzy, php-format msgid "Last %d Years" msgstr "L'année dernière" #: ../include/global_arrays.php:1058 msgid "Day Shift" msgstr "" #: ../include/global_arrays.php:1059 #, fuzzy msgid "This Day" msgstr "Hier" #: ../include/global_arrays.php:1060 #, fuzzy msgid "This Week" msgstr "Une semaine" #: ../include/global_arrays.php:1061 #, fuzzy msgid "This Month" msgstr "Un moi" #: ../include/global_arrays.php:1062 #, fuzzy msgid "This Year" msgstr "Une année" #: ../include/global_arrays.php:1063 #, fuzzy msgid "Previous Day" msgstr "Précédent" #: ../include/global_arrays.php:1064 #, fuzzy msgid "Previous Week" msgstr "Précédent" #: ../include/global_arrays.php:1065 #, fuzzy msgid "Previous Month" msgstr "Précédent" #: ../include/global_arrays.php:1066 #, fuzzy msgid "Previous Year" msgstr "Précédent" #: ../include/global_arrays.php:1070 #, php-format msgid "%d Min" msgstr "" #: ../include/global_arrays.php:1087 ../include/global_settings.php:1026 #: ../rrdcleaner.php:493 #, fuzzy, php-format msgid "%d Year" msgstr "Une année" #: ../include/global_arrays.php:1102 msgid "Month Number, Day, Year" msgstr "" #: ../include/global_arrays.php:1103 msgid "Month Name, Day, Year" msgstr "" #: ../include/global_arrays.php:1104 msgid "Day, Month Number, Year" msgstr "" #: ../include/global_arrays.php:1105 msgid "Day, Month Name, Year" msgstr "" #: ../include/global_arrays.php:1106 msgid "Year, Month Number, Day" msgstr "" #: ../include/global_arrays.php:1107 msgid "Year, Month Name, Day" msgstr "" #: ../include/global_arrays.php:1116 msgid "After Boost" msgstr "" #: ../include/global_arrays.php:1126 ../include/global_arrays.php:1127 #: ../include/global_arrays.php:1128 ../include/global_arrays.php:1129 #: ../include/global_arrays.php:1130 ../include/global_arrays.php:1185 #: ../include/global_arrays.php:1186 ../include/global_arrays.php:1187 #: ../include/global_arrays.php:1188 ../include/global_arrays.php:1189 #, php-format msgid "%d MBytes" msgstr "" #: ../include/global_arrays.php:1131 ../include/global_arrays.php:1190 msgid "1 GByte" msgstr "" #: ../include/global_arrays.php:1132 ../include/global_arrays.php:1191 #, php-format msgid "%s GBytes" msgstr "" #: ../include/global_arrays.php:1133 ../include/global_arrays.php:1134 #: ../include/global_arrays.php:1192 ../include/global_arrays.php:1193 #, php-format msgid "%d GBytes" msgstr "" #: ../include/global_arrays.php:1147 #, fuzzy msgid "2,000 Data Source Items" msgstr "Élement de source de donnée" #: ../include/global_arrays.php:1148 #, fuzzy msgid "5,000 Data Source Items" msgstr "Élement de source de donnée" #: ../include/global_arrays.php:1149 #, fuzzy msgid "10,000 Data Source Items" msgstr "Élement de source de donnée" #: ../include/global_arrays.php:1150 #, fuzzy msgid "15,000 Data Source Items" msgstr "Élement de source de donnée" #: ../include/global_arrays.php:1151 #, fuzzy msgid "25,000 Data Source Items" msgstr "Élement de source de donnée" #: ../include/global_arrays.php:1152 #, fuzzy msgid "50,000 Data Source Items (Default)" msgstr "Élement de source de donnée" #: ../include/global_arrays.php:1153 #, fuzzy msgid "100,000 Data Source Items" msgstr "Élement de source de donnée" #: ../include/global_arrays.php:1154 #, fuzzy msgid "200,000 Data Source Items" msgstr "Élement de source de donnée" #: ../include/global_arrays.php:1155 #, fuzzy msgid "400,000 Data Source Items" msgstr "Élement de source de donnée" #: ../include/global_arrays.php:1172 #, fuzzy msgid "2 Hours" msgstr "La dernière heure" #: ../include/global_arrays.php:1173 #, fuzzy msgid "4 Hours" msgstr "La dernière heure" #: ../include/global_arrays.php:1174 #, fuzzy msgid "6 Hours" msgstr "La dernière heure" #: ../include/global_arrays.php:1181 #, fuzzy, php-format msgid "%s Hours" msgstr "La dernière heure" #: ../include/global_arrays.php:1200 #, php-format msgid "%s Minutes" msgstr "" #: ../include/global_arrays.php:1220 msgid "1 Megabyte" msgstr "" #: ../include/global_arrays.php:1221 ../include/global_arrays.php:1222 #: ../include/global_arrays.php:1223 ../include/global_arrays.php:1224 #: ../include/global_arrays.php:1225 ../include/global_arrays.php:1226 #, php-format msgid "%d Megabytes" msgstr "" #: ../include/global_arrays.php:1230 msgid "Send Now" msgstr "" #: ../include/global_arrays.php:1238 msgid "Take Ownership" msgstr "" #: ../include/global_arrays.php:1242 msgid "Inline PNG Image" msgstr "" #: ../include/global_arrays.php:1247 msgid "Inline JPEG Image" msgstr "" #: ../include/global_arrays.php:1248 msgid "Inline GIF Image" msgstr "" #: ../include/global_arrays.php:1251 msgid "Attached PNG Image" msgstr "" #: ../include/global_arrays.php:1254 msgid "Attached JPEG Image" msgstr "" #: ../include/global_arrays.php:1255 msgid "Attached GIF Image" msgstr "" #: ../include/global_arrays.php:1259 msgid "Inline PNG Image, LN Style" msgstr "" #: ../include/global_arrays.php:1261 msgid "Inline JPEG Image, LN Style" msgstr "" #: ../include/global_arrays.php:1262 msgid "Inline GIF Image, LN Style" msgstr "" #: ../include/global_arrays.php:1267 msgid "Text" msgstr "" #: ../include/global_arrays.php:1268 ../include/global_form.php:2223 #, fuzzy msgid "Tree" msgstr "Pas d'arbres" #: ../include/global_arrays.php:1270 msgid "Horizontal Rule" msgstr "" #: ../include/global_arrays.php:1274 msgid "left" msgstr "" #: ../include/global_arrays.php:1275 msgid "center" msgstr "" #: ../include/global_arrays.php:1276 msgid "right" msgstr "" #: ../include/global_arrays.php:1280 msgid "Minute(s)" msgstr "" #: ../include/global_arrays.php:1281 msgid "Hour(s)" msgstr "" #: ../include/global_arrays.php:1282 msgid "Day(s)" msgstr "" #: ../include/global_arrays.php:1283 #, fuzzy msgid "Week(s)" msgstr "Une semaine" #: ../include/global_arrays.php:1284 msgid "Month(s), Day of Month" msgstr "" #: ../include/global_arrays.php:1285 msgid "Month(s), Day of Week" msgstr "" #: ../include/global_arrays.php:1286 #, fuzzy msgid "Year(s)" msgstr "Une année" #: ../include/global_arrays.php:1290 #, fuzzy msgid "Keep Graph Types" msgstr "Arbres des graphiques" #: ../include/global_arrays.php:1291 msgid "Keep Type and STACK" msgstr "" #: ../include/global_arrays.php:1292 #, fuzzy msgid "Convert to AREA/STACK Graph" msgstr "Convertir en modèle de graphique" #: ../include/global_arrays.php:1293 #, fuzzy msgid "Convert to LINE1 Graph" msgstr "Convertir en modèle de graphique" #: ../include/global_arrays.php:1294 #, fuzzy msgid "Convert to LINE2 Graph" msgstr "Convertir en modèle de graphique" #: ../include/global_arrays.php:1295 #, fuzzy msgid "Convert to LINE3 Graph" msgstr "Convertir en modèle de graphique" #: ../include/global_arrays.php:1299 msgid "No Totals" msgstr "" #: ../include/global_arrays.php:1300 msgid "Print all Legend Items" msgstr "" #: ../include/global_arrays.php:1301 msgid "Print totaling Legend Items Only" msgstr "" #: ../include/global_arrays.php:1305 #, fuzzy msgid "Total Similar Data Sources" msgstr "Aucune sources de donnée" #: ../include/global_arrays.php:1306 #, fuzzy msgid "Total All Data Sources" msgstr "Aucune sources de donnée" #: ../include/global_arrays.php:1310 #, fuzzy msgid "No Reordering" msgstr "Tri numérique" #: ../include/global_arrays.php:1311 #, fuzzy msgid "Data Source, Graph" msgstr "Chemin de la source de donnée" #: ../include/global_arrays.php:1312 #, fuzzy msgid "Graph, Data Source" msgstr "Source de donnée" #: ../include/global_arrays.php:1319 msgid "contains" msgstr "" #: ../include/global_arrays.php:1320 msgid "does not contain" msgstr "" #: ../include/global_arrays.php:1321 msgid "begins with" msgstr "" #: ../include/global_arrays.php:1322 msgid "does not begin with" msgstr "" #: ../include/global_arrays.php:1323 msgid "ends with" msgstr "" #: ../include/global_arrays.php:1324 msgid "does not end with" msgstr "" #: ../include/global_arrays.php:1325 msgid "matches" msgstr "" #: ../include/global_arrays.php:1326 msgid "does not match with" msgstr "" #: ../include/global_arrays.php:1327 msgid "is less than" msgstr "" #: ../include/global_arrays.php:1328 msgid "is less than or equal" msgstr "" #: ../include/global_arrays.php:1329 msgid "is greater than" msgstr "" #: ../include/global_arrays.php:1330 msgid "is greater than or equal" msgstr "" #: ../include/global_arrays.php:1331 #, fuzzy msgid "is unknown" msgstr "Inconnu" #: ../include/global_arrays.php:1332 msgid "is not unknown" msgstr "" #: ../include/global_arrays.php:1333 msgid "is empty" msgstr "" #: ../include/global_arrays.php:1334 msgid "is not empty" msgstr "" #: ../include/global_arrays.php:1335 #, fuzzy msgid "matches regular expression" msgstr "Expression régulière" #: ../include/global_arrays.php:1336 msgid "does not match regular expression" msgstr "" #: ../include/global_arrays.php:1438 msgid "Fixed String" msgstr "" #: ../include/global_arrays.php:1443 msgid "Every 1 Hour" msgstr "" #: ../include/global_arrays.php:1449 msgid "Every Day" msgstr "" #: ../include/global_arrays.php:1450 #, fuzzy msgid "Every Week" msgstr "Une semaine" #: ../include/global_arrays.php:1451 ../include/global_arrays.php:1452 #, php-format msgid "Every %d Weeks" msgstr "" #: ../include/global_arrays.php:1477 msgctxt "A short textual representation of a month, three letters" msgid "Jan" msgstr "" #: ../include/global_arrays.php:1478 msgctxt "A short textual representation of a month, three letters" msgid "Feb" msgstr "" #: ../include/global_arrays.php:1479 msgctxt "A short textual representation of a month, three letters" msgid "Mar" msgstr "" #: ../include/global_arrays.php:1480 msgctxt "A short textual representation of a month, three letters" msgid "Apr" msgstr "" #: ../include/global_arrays.php:1481 msgctxt "A short textual representation of a month, three letters" msgid "May" msgstr "" #: ../include/global_arrays.php:1482 msgctxt "A short textual representation of a month, three letters" msgid "Jun" msgstr "" #: ../include/global_arrays.php:1483 msgctxt "A short textual representation of a month, three letters" msgid "Jul" msgstr "" #: ../include/global_arrays.php:1484 msgctxt "A short textual representation of a month, three letters" msgid "Aug" msgstr "" #: ../include/global_arrays.php:1485 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Sep" msgstr "Pas" #: ../include/global_arrays.php:1486 msgctxt "A short textual representation of a month, three letters" msgid "Oct" msgstr "" #: ../include/global_arrays.php:1487 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Nov" msgstr "Non" #: ../include/global_arrays.php:1488 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Dec" msgstr "Équipement" #: ../include/global_arrays.php:1502 msgctxt "A textual representation of a day, three letters" msgid "Sun" msgstr "" #: ../include/global_arrays.php:1503 #, fuzzy msgctxt "A textual representation of a day, three letters" msgid "Mon" msgstr "Un moi" #: ../include/global_arrays.php:1504 msgctxt "A textual representation of a day, three letters" msgid "Tue" msgstr "" #: ../include/global_arrays.php:1505 msgctxt "A textual representation of a day, three letters" msgid "Wed" msgstr "" #: ../include/global_arrays.php:1506 msgctxt "A textual representation of a day, three letters" msgid "Thu" msgstr "" #: ../include/global_arrays.php:1507 msgctxt "A textual representation of a day, three letters" msgid "Fri" msgstr "" #: ../include/global_arrays.php:1508 #, fuzzy msgctxt "A textual representation of a day, three letters" msgid "Sat" msgstr "État" #: ../include/global_form.php:36 #, fuzzy msgid "A useful name for this Data Storage and Polling Profile." msgstr "Un nom pratique pour cet arbre de graphique." #: ../include/global_form.php:40 msgid "New Profile" msgstr "" #: ../include/global_form.php:44 msgid "Polling Interval" msgstr "" #: ../include/global_form.php:45 msgid "The frequency that data will be collected from the Data Source?" msgstr "" #: ../include/global_form.php:53 msgid "" "How long can data be missing before RRDtool records unknown data. \n" "\t\t\tIncrease this value if your Data Source is unstable and you wish to " "carry forward \n" "\t\t\told data rather than show gaps in your graphs. This value is " "multiplied by the\n" "\t\t\tX-Files Factor to determine the actual amount of time." msgstr "" #: ../include/global_form.php:63 msgid "X-Files Factor" msgstr "" #: ../include/global_form.php:64 msgid "The amount of unknown data that can still be regarded as known." msgstr "" #: ../include/global_form.php:72 msgid "Consolidation Functions" msgstr "Fonctions de consolidation" #: ../include/global_form.php:73 ../include/global_form.php:105 msgid "How data is to be entered in RRAs." msgstr "" #: ../include/global_form.php:80 msgid "Is this the default storage profile?" msgstr "" #: ../include/global_form.php:86 msgid "RRDfile Size (in Bytes)" msgstr "" #: ../include/global_form.php:87 msgid "" "Based upon the number of Rows in all RRAs and the number of Consolidation " "Functions selected, the size of this entire in the RRDfile." msgstr "" #: ../include/global_form.php:109 msgid "New Profile RRA" msgstr "" #: ../include/global_form.php:113 msgid "Aggregation Level" msgstr "" #: ../include/global_form.php:114 msgid "" "The number of samples required prior to filling a row in the RRA " "specification. The first RRA should always have a value of 1." msgstr "" #: ../include/global_form.php:122 msgid "How many generations data is kept in the RRA." msgstr "" #: ../include/global_form.php:130 msgid "Effective Retention" msgstr "" #: ../include/global_form.php:131 msgid "" "Based upon the Aggregation Level, the Rows, and the Polling Interval the " "amount of data that will be retained in the RRA" msgstr "" #: ../include/global_form.php:136 msgid "RRA Size (in Bytes)" msgstr "" #: ../include/global_form.php:137 msgid "" "Based upon the number of Rows and the number of Consolidation Functions " "selected, the size of this RRA in the RRDfile." msgstr "" #: ../include/global_form.php:155 msgid "A useful name for this CDEF." msgstr "Un nom pratique de ce CDEF." #: ../include/global_form.php:175 #, fuzzy msgid "The name of this Color." msgstr "Un nom pratique de ce CDEF." #: ../include/global_form.php:182 #, fuzzy msgid "Hex Value" msgstr "Valeur" #: ../include/global_form.php:183 msgid "The hex value for this color; valid range: 000000-FFFFFF." msgstr "La valeur héxadécimale de cette couleur; plage valide : 000000-FFFFFF." #: ../include/global_form.php:191 msgid "Any named color should be read only." msgstr "" #: ../include/global_form.php:216 ../include/global_form.php:276 #, fuzzy msgid "Enter a meaningful name for this data input method." msgstr "Choisissez un nom pour cette source de donnée." #: ../include/global_form.php:223 msgid "Input Type" msgstr "Type d'entrée" #: ../include/global_form.php:224 msgid "" "Choose the method you wish to use to collect data for this Data Input method." msgstr "" #: ../include/global_form.php:230 msgid "Input String" msgstr "Chaine d'entrée" #: ../include/global_form.php:231 msgid "" "The data that is sent to the script, which includes the complete path to the " "script and input sources in <> brackets." msgstr "" #: ../include/global_form.php:252 ../include/global_form.php:263 #, php-format msgid "Field [%s]" msgstr "" #: ../include/global_form.php:253 #, php-format msgid "Choose the associated field from the %s field." msgstr "" #: ../include/global_form.php:264 #, php-format msgid "" "Enter a name for this %s field. Note: If using name value pairs in your " "script, for example: NAME:VALUE, it is important that the name match your " "output field name identically to the script output name or names." msgstr "" #: ../include/global_form.php:283 #, fuzzy msgid "Update RRDfile" msgstr "Mettre à jour le fichier RRD" #: ../include/global_form.php:284 msgid "Whether data from this output field is to be entered into the RRDfile." msgstr "" #: ../include/global_form.php:291 msgid "Regular Expression Match" msgstr "Expression régulière" #: ../include/global_form.php:292 msgid "" "If you want to require a certain regular expression to be matched against " "input data, enter it here (preg_match format)." msgstr "" #: ../include/global_form.php:299 msgid "Allow Empty Input" msgstr "Authoriser les entrées vides" #: ../include/global_form.php:300 #, fuzzy msgid "Check here if you want to allow NULL input in this field from the user." msgstr "" "Cocher cette option si vous voullez vous connecter en mode passif au serveur " "FTP." #: ../include/global_form.php:307 #, fuzzy msgid "Special Type Code" msgstr "Source de donnée spéciale" #: ../include/global_form.php:308 #, php-format msgid "" "If this field should be treated specially by host templates, indicate so " "here. Valid keywords for this field are %s" msgstr "" #: ../include/global_form.php:340 msgid "The name given to this data template." msgstr "Le nom de ce modèle de donnée." #: ../include/global_form.php:371 msgid "" "Choose a name for this data source. It can include replacement variables " "such as |host_description| or |query_fieldName|.\n" " For a complete list of supported replacement tags, please see " "the Cacti documentation." msgstr "" #: ../include/global_form.php:376 msgid "Data Source Path" msgstr "Chemin de la source de donnée" #: ../include/global_form.php:381 #, fuzzy msgid "The full path to the RRDfile." msgstr "Le chemin vers l'exécutable rrdtool." #: ../include/global_form.php:390 msgid "The script/source used to gather data for this data source." msgstr "" "Script/source utilisé pour collecter les données de cette source de donnée." #: ../include/global_form.php:396 ../include/global_form.php:1615 msgid "" "Select the Data Source Profile. The Data Source Profile controls polling " "interval, the data aggregation, and retention policy for the resulting Data " "Sources." msgstr "" #: ../include/global_form.php:402 msgid "Step" msgstr "Pas" #: ../include/global_form.php:407 msgid "The amount of time in seconds between expected updates." msgstr "" #: ../include/global_form.php:411 #, fuzzy msgid "Data Source Active" msgstr "Élement de source de donnée" #: ../include/global_form.php:414 #, fuzzy msgid "Whether Cacti should gather data for this data source or not." msgstr "" "Script/source utilisé pour collecter les données de cette source de donnée." #: ../include/global_form.php:422 msgid "Internal Data Source Name" msgstr "Nom interne de la source de donnée" #: ../include/global_form.php:427 msgid "" "Choose unique name to represent this piece of data inside of the RRDfile." msgstr "" #: ../include/global_form.php:430 msgid "Minimum Value (\"U\" for No Minimum)" msgstr "" #: ../include/global_form.php:435 msgid "The minimum value of data that is allowed to be collected." msgstr "" #: ../include/global_form.php:438 msgid "Maximum Value (\"U\" for No Maximum)" msgstr "" #: ../include/global_form.php:443 msgid "The maximum value of data that is allowed to be collected." msgstr "" #: ../include/global_form.php:446 msgid "Data Source Type" msgstr "Type de source de donnée" #: ../include/global_form.php:450 #, fuzzy msgid "How data is represented in the RRA." msgstr "Le nom imprimé sur le graphique." #: ../include/global_form.php:458 msgid "" "The maximum amount of time that can pass before data is entered as " "'unknown'. (Usually 2x300=600)" msgstr "" #: ../include/global_form.php:464 msgid "Not Selected" msgstr "Non sélectionné" #: ../include/global_form.php:465 msgid "" "When data is gathered, the data for this field will be put into this data " "source." msgstr "" #: ../include/global_form.php:474 msgid "" "Enter a name for this GPRINT preset, make sure it is something you recognize." msgstr "" #: ../include/global_form.php:481 msgid "GPRINT Text" msgstr "Texte GPRINT" #: ../include/global_form.php:482 msgid "Enter the custom GPRINT string here." msgstr "" #: ../include/global_form.php:500 #, fuzzy msgid "Common Options" msgstr "Options d'authentification" #: ../include/global_form.php:505 #, fuzzy msgid "Title (--title)" msgstr "Fichier de fonte du titre" #: ../include/global_form.php:509 msgid "" "The name that is printed on the graph. It can include replacement variables " "such as |host_description| or |query_fieldName|.\n" "\t\t\tFor a complete list of supported replacement tags, please see the " "Cacti documentation." msgstr "" #: ../include/global_form.php:514 msgid "Vertical Label (--vertical-label)" msgstr "" #: ../include/global_form.php:518 msgid "The label vertically printed to the left of the graph." msgstr "Le label imprimmé verticalement à la gauche du grapique." #: ../include/global_form.php:522 msgid "Image Format (--imgformat)" msgstr "" #: ../include/global_form.php:526 msgid "" "The type of graph that is generated; PNG, GIF or SVG. The selection of " "graph image type is very RRDtool dependent." msgstr "" #: ../include/global_form.php:529 msgid "Height (--height)" msgstr "" #: ../include/global_form.php:533 msgid "" "The height (in pixels) of the graph area within the graph. This area does " "not include the legend, axis legends, or title." msgstr "" #: ../include/global_form.php:537 msgid "Width (--width)" msgstr "" #: ../include/global_form.php:541 msgid "" "The width (in pixels) of the graph area within the graph. This area does not " "include the legend, axis legends, or title." msgstr "" #: ../include/global_form.php:545 msgid "Base Value (--base)" msgstr "" #: ../include/global_form.php:549 msgid "Should be set to 1024 for memory and 1000 for traffic measurements." msgstr "" #: ../include/global_form.php:553 msgid "Slope Mode (--slope-mode)" msgstr "" #: ../include/global_form.php:556 msgid "" "Using Slope Mode evens out the shape of the graphs at the expense of\n" "\t\t\tsome on screen resolution." msgstr "" #: ../include/global_form.php:560 #, fuzzy msgid "Scaling Options" msgstr "Options d'authentification" #: ../include/global_form.php:565 msgid "Auto Scale" msgstr "" #: ../include/global_form.php:568 msgid "" "Auto scale the y-axis instead of defining an upper and lower limit. Note: if " "this is check both the\n" "\t\t\tUpper and Lower limit will be ignored." msgstr "" #: ../include/global_form.php:573 #, fuzzy msgid "Auto Scale Options" msgstr "Options du compte d'utilisateur" #: ../include/global_form.php:576 msgid "" "Use
    \n" "\t\t\t--alt-autoscale to scale to the absolute minimum and maximum
    \n" "\t\t\t--alt-autoscale-max to scale to the maximum value, using a given lower " "limit
    \n" "\t\t\t--alt-autoscale-min to scale to the minimum value, using a given upper " "limit
    \n" "\t\t\t--alt-autoscale (with limits) to scale using both lower and upper " "limits (RRDtool default)
    " msgstr "" #: ../include/global_form.php:584 msgid "Use --alt-autoscale (ignoring given limits)" msgstr "" #: ../include/global_form.php:588 msgid "Use --alt-autoscale-max (accepting a lower limit)" msgstr "" #: ../include/global_form.php:592 msgid "Use --alt-autoscale-min (accepting an upper limit)" msgstr "" #: ../include/global_form.php:596 msgid "Use --alt-autoscale (accepting both limits, RRDtool default)" msgstr "" #: ../include/global_form.php:601 msgid "Logarithmic Scaling (--logarithmic)" msgstr "" #: ../include/global_form.php:605 msgid "Use Logarithmic y-axis scaling" msgstr "Utiliser une mise à l'échelle logarithmique sur l'axe des y" #: ../include/global_form.php:608 msgid "SI Units for Logarithmic Scaling (--units=si)" msgstr "" #: ../include/global_form.php:611 msgid "" "Use SI Units for Logarithmic Scaling instead of using exponential notation." "
    \n" "\t\t\tNote: Linear graphs use SI notation by default." msgstr "" #: ../include/global_form.php:615 msgid "Rigid Boundaries Mode (--rigid)" msgstr "" #: ../include/global_form.php:618 msgid "" "Do not expand the lower and upper limit if the graph contains a value " "outside the valid range." msgstr "" #: ../include/global_form.php:621 msgid "Upper Limit (--upper-limit)" msgstr "" #: ../include/global_form.php:625 #, fuzzy msgid "The maximum vertical value for the graph." msgstr "Le label imprimmé verticalement à la gauche du grapique." #: ../include/global_form.php:629 msgid "Lower Limit (--lower-limit)" msgstr "" #: ../include/global_form.php:633 #, fuzzy msgid "The minimum vertical value for the graph." msgstr "Le label imprimmé verticalement à la gauche du grapique." #: ../include/global_form.php:637 #, fuzzy msgid "Grid Options" msgstr "Options des graphiques" #: ../include/global_form.php:642 msgid "Unit Grid Value (--unit/--y-grid)" msgstr "" #: ../include/global_form.php:646 msgid "" "Sets the exponent value on the Y-axis for numbers. Note: This option is\n" "\t\t\tdeprecated and replaced by the --y-grid option. In this option, Y-" "axis grid lines appear\n" "\t\t\tat each grid step interval. Labels are placed every label factor " "lines." msgstr "" #: ../include/global_form.php:652 msgid "Unit Exponent Value (--units-exponent)" msgstr "" #: ../include/global_form.php:656 msgid "" "What unit cacti should use on the Y-axis. Use 3 to display everything in \"k" "\" or -6\n" "\t\t\tto display everything in \"u\" (micro)." msgstr "" #: ../include/global_form.php:661 msgid "Unit Length (--units-length <length>)" msgstr "" #: ../include/global_form.php:666 msgid "" "How many digits should RRDtool assume the y-axis labels to be? You may have " "to use this \n" "\t\t\toption to make enough space once you start fiddling with the y-axis " "labeling." msgstr "" #: ../include/global_form.php:670 msgid "No Gridfit (--no-gridfit)" msgstr "" #: ../include/global_form.php:673 msgid "" "In order to avoid anti-aliasing blurring effects RRDtool snaps points to " "device \n" "\t\t\tresolution pixels, this results in a crisper appearance. If this is " "not to your liking, you can \n" "\t\t\tuse this switch to turn this behavior off.
    Note: Gridfitting is turned off for PDF, EPS, SVG output by default." msgstr "" #: ../include/global_form.php:678 msgid "Alternative Y Grid (--alt-y-grid)" msgstr "" #: ../include/global_form.php:681 msgid "" "The algorithm ensures that you always have a grid, that there are enough but " "not too many grid lines, \n" "\t\t\tand that the grid is metric. This parameter will also ensure that you " "get enough decimals displayed \n" "\t\t\teven if your graph goes from 69.998 to 70.001.
    Note: This parameter may interfere with --alt-autoscale options." msgstr "" #: ../include/global_form.php:686 #, fuzzy msgid "Axis Options" msgstr "Options d'authentification" #: ../include/global_form.php:691 msgid "Right Axis (--right-axis <scale:shift>)" msgstr "" #: ../include/global_form.php:696 msgid "" "A second axis will be drawn to the right of the graph. It is tied to the " "left axis via the \n" "\t\t\tscale and shift parameters." msgstr "" #: ../include/global_form.php:700 msgid "Right Axis Label (--right-axis-label <string>)" msgstr "" #: ../include/global_form.php:705 msgid "The label for the right axis." msgstr "" #: ../include/global_form.php:708 msgid "Right Axis Format (--right-axis-format <format>)" msgstr "" #: ../include/global_form.php:713 #, php-format msgid "" "By default, the format of the axis labels gets determined automatically. \n" "\t\t\tIf you want to do this yourself, use this option with the same %lf " "arguments you know from the PRINT and GPRINT commands." msgstr "" #: ../include/global_form.php:717 msgid "Right Axis Formatter (--right-axis-formatter <formatname>)" msgstr "" #: ../include/global_form.php:722 msgid "" "When you setup the right axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted " "as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S" "\"). See also --units-length and --right-axis-format. Finally\n" "\t\t\t\"duration\" where values are interpreted as duration in " "milliseconds. Formatting follows the rules of valstrfduration qualified " "PRINT/GPRINT." msgstr "" #: ../include/global_form.php:728 msgid "Left Axis Formatter (--left-axis-formatter <formatname>)" msgstr "" #: ../include/global_form.php:733 msgid "" "When you setup the left axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted " "as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S" "\"). See also --units-length. Finally \"duration\" where values\n" "\t\t\tare interpreted as duration in milliseconds. Formatting follows the " "rules of valstrfduration qualified PRINT/GPRINT." msgstr "" #: ../include/global_form.php:739 #, fuzzy msgid "Legend Options" msgstr "Options d'authentification" #: ../include/global_form.php:744 msgid "Auto Padding" msgstr "Remplissage automatique" #: ../include/global_form.php:747 msgid "" "Pad text so that legend and graph data always line up. Note: this could " "cause\n" "\t\t\tgraphs to take longer to render because of the larger overhead. Also " "Auto Padding may not\n" "\t\t\tbe accurate on all types of graphs, consistent labeling usually helps." msgstr "" #: ../include/global_form.php:752 msgid "Dynamic Labels (--dynamic-labels)" msgstr "" #: ../include/global_form.php:755 msgid "Draw line markers as a line." msgstr "" #: ../include/global_form.php:758 msgid "Force Rules Legend (--force-rules-legend)" msgstr "" #: ../include/global_form.php:761 msgid "Force the generation of HRULE and VRULE legends." msgstr "" #: ../include/global_form.php:764 msgid "Tab Width (--tabwidth <pixels>)" msgstr "" #: ../include/global_form.php:769 msgid "By default the tab-width is 40 pixels, use this option to change it." msgstr "" #: ../include/global_form.php:772 msgid "Legend Position (--legend-position=<position>)" msgstr "" #: ../include/global_form.php:776 #, fuzzy msgid "Place the legend at the given side of the graph." msgstr "Le nom imprimé sur le graphique." #: ../include/global_form.php:779 msgid "Legend Direction (--legend-direction=<direction>)" msgstr "" #: ../include/global_form.php:783 msgid "Place the legend items in the given vertical order." msgstr "" #: ../include/global_form.php:790 ../lib/api_aggregate.php:1216 #: ../lib/html.php:857 msgid "Graph Item Type" msgstr "Type de l'élément graphique" #: ../include/global_form.php:794 #, fuzzy msgid "How data for this item is represented visually on the graph." msgstr "Le nom imprimé sur le graphique." #: ../include/global_form.php:809 #, fuzzy msgid "The data source to use for this graph item." msgstr "Le format de date à utiliser pour les graphiques" #: ../include/global_form.php:816 #, fuzzy msgid "The color to use for the legend." msgstr "Taille de la fonte utilisée pour les légendes du graphique" #: ../include/global_form.php:819 msgid "Opacity/Alpha Channel" msgstr "" #: ../include/global_form.php:823 msgid "The opacity/alpha channel of the color." msgstr "" #: ../include/global_form.php:826 ../lib/rrd.php:2688 msgid "Consolidation Function" msgstr "Fonction de consolidation" #: ../include/global_form.php:830 msgid "How data for this item is represented statistically on the graph." msgstr "" #: ../include/global_form.php:833 #, fuzzy msgid "CDEF Function" msgstr "Fonction" #: ../include/global_form.php:838 msgid "A CDEF (math) function to apply to this item on the graph or legend." msgstr "" #: ../include/global_form.php:841 #, fuzzy msgid "VDEF Function" msgstr "Fonction" #: ../include/global_form.php:846 msgid "A VDEF (math) function to apply to this item on the graph legend." msgstr "" #: ../include/global_form.php:849 msgid "Shift Data" msgstr "" #: ../include/global_form.php:852 msgid "" "Offset your data on the time axis (x-axis) by the amount specified in the " "'value' field." msgstr "" #: ../include/global_form.php:855 ../lib/rrd.php:2658 ../utilities.php:2338 msgid "Value" msgstr "Valeur" #: ../include/global_form.php:860 msgid "" "[HRULE|VRULE]: The value of the graph item.
    \n" "\t\t\t[TICK]: The fraction for the tick line.
    \n" "\t\t\t[SHIFT]: The time offset in seconds." msgstr "" #: ../include/global_form.php:865 #, fuzzy msgid "GPRINT Type" msgstr "Texte GPRINT" #: ../include/global_form.php:869 msgid "" "If this graph item is a GPRINT, you can optionally choose another format\n" "\t\t\there. You can define additional types under \"GPRINT Presets\"." msgstr "" #: ../include/global_form.php:873 msgid "Text Alignment (TEXTALIGN)" msgstr "" #: ../include/global_form.php:878 msgid "" "All subsequent legend line(s) will be aligned as given here. You may use " "this command multiple times in a single graph.\n" "\t\t\tThis command does not produce tabular layout.
    Note: You may want to insert a <HR> on the preceding graph item.
    \n" "\t\t\tNote: A <HR> on this legend line will obsolete " "this setting!" msgstr "" #: ../include/global_form.php:883 #, fuzzy msgid "Text Format" msgstr "Format du titre :" #: ../include/global_form.php:888 msgid "Text that will be displayed on the legend for this graph item." msgstr "" #: ../include/global_form.php:891 msgid "Insert Hard Return" msgstr "" #: ../include/global_form.php:894 msgid "Forces the legend to the next line after this item." msgstr "" #: ../include/global_form.php:897 msgid "Line Width (decimal)" msgstr "" #: ../include/global_form.php:902 msgid "" "In case LINE was chosen, specify width of line here. You must include a " "decimal precision, for example 2.00" msgstr "" #: ../include/global_form.php:905 msgid "Dashes (dashes[=on_s[,off_s[,on_s,off_s]...]])" msgstr "" #: ../include/global_form.php:910 msgid "The dashes modifier enables dashed line style." msgstr "" #: ../include/global_form.php:913 msgid "Dash Offset (dash-offset=offset)" msgstr "" #: ../include/global_form.php:918 msgid "" "The dash-offset parameter specifies an offset into the pattern at which the " "stroke begins." msgstr "" #: ../include/global_form.php:931 msgid "The name given to this graph template." msgstr "Le nom donné à ce modèle de graphique." #: ../include/global_form.php:938 msgid "Multiple Instances" msgstr "" #: ../include/global_form.php:939 msgid "" "Check this checkbox if there can be more than one Graph of this type per " "Device." msgstr "" #: ../include/global_form.php:963 msgid "" "Enter a name for this graph item input, make sure it is something you " "recognize." msgstr "" #: ../include/global_form.php:971 msgid "" "Enter a description for this graph item input to describe what this input is " "used for." msgstr "" #: ../include/global_form.php:978 #, fuzzy msgid "Field Type" msgstr "Nom du champ" #: ../include/global_form.php:979 #, fuzzy msgid "How data is to be represented on the graph." msgstr "Le nom imprimé sur le graphique." #: ../include/global_form.php:1002 #, fuzzy msgid "General Device Options" msgstr "Options des graphiques" #: ../include/global_form.php:1007 msgid "Give this host a meaningful description." msgstr "" #: ../include/global_form.php:1014 ../include/global_form.php:1639 msgid "Fully qualified hostname or IP address for this device." msgstr "" #: ../include/global_form.php:1021 #, fuzzy msgid "Poller Association" msgstr "Administration du cache de l'agent de collecte" #: ../include/global_form.php:1029 #, fuzzy msgid "Device Site Association" msgstr "Supprimer l'association de modèled de graphique" #: ../include/global_form.php:1030 msgid "What Site is this Device associated with." msgstr "" #: ../include/global_form.php:1039 msgid "" "Choose the Device Template to use to define the default Graph Templates and " "Data Queries associated with this Device." msgstr "" #: ../include/global_form.php:1046 msgid "Number of Collection Threads" msgstr "" #: ../include/global_form.php:1047 msgid "" "The number of concurrent threads to use for polling this device. This " "applies to the Spine poller only." msgstr "" #: ../include/global_form.php:1054 #, fuzzy msgid "Disable Device" msgstr "Désactiver" #: ../include/global_form.php:1055 msgid "Check this box to disable all checks for this host." msgstr "" #: ../include/global_form.php:1068 ../include/global_form.php:1668 #, fuzzy msgid "Choose the SNMP version for this device." msgstr "Choisisser le parent pour cet entête / graphique" #: ../include/global_form.php:1076 ../include/global_form.php:1676 msgid "SNMP Community" msgstr "Comunnauté SNMP" #: ../include/global_form.php:1077 ../include/global_form.php:1677 msgid "SNMP read community for this device." msgstr "" #: ../include/global_form.php:1096 msgid "SNMP v3 authentication pass phrase for this device." msgstr "" #: ../include/global_form.php:1105 msgid "Choose the SNMPv3 authentication protocol." msgstr "" #: ../include/global_form.php:1113 msgid "Choose the SNMPv3 privacy passphrase." msgstr "" #: ../include/global_form.php:1122 msgid "Choose the SNMPv3 privacy protocol." msgstr "" #: ../include/global_form.php:1129 msgid "SNMP Context (v3)" msgstr "" #: ../include/global_form.php:1130 msgid "Enter the SNMP v3 context to use for this device." msgstr "" #: ../include/global_form.php:1138 msgid "SNMP Engine ID (v3)" msgstr "" #: ../include/global_form.php:1139 msgid "" "Enter the SNMP v3 Engine Id to use for this device. Leave this field empty " "to use the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "" #: ../include/global_form.php:1148 msgid "Enter the UDP port number to use for SNMP (default is 161)." msgstr "" "Saisissez le numéro de port UDP à utiliser le SNMP (par défaut le 161)." #: ../include/global_form.php:1165 msgid "Maximum OIDs Per Get Request" msgstr "" #: ../include/global_form.php:1174 #, fuzzy msgid "Availability/Reachability Options" msgstr "Changer les options de détection de disponibilité" #: ../include/global_form.php:1178 ../include/global_settings.php:547 msgid "Downed Device Detection" msgstr "" #: ../include/global_form.php:1179 ../include/global_settings.php:548 msgid "" "The method Cacti will use to determine if a host is available for polling. " "
    NOTE: It is recommended that, at a minimum, SNMP always be selected." msgstr "" #: ../include/global_form.php:1188 msgid "" "The type of ping packet to sent.
    NOTE: ICMP on Linux/UNIX requires " "root privileges." msgstr "" #: ../include/global_form.php:1225 ../include/global_form.php:1763 #, fuzzy msgid "Additional Options" msgstr "Options du compte d'utilisateur" #: ../include/global_form.php:1229 ../include/global_form.php:1768 #: ../pollers.php:70 msgid "Notes" msgstr "" #: ../include/global_form.php:1230 ../include/global_form.php:1769 msgid "Enter notes to this host." msgstr "" #: ../include/global_form.php:1237 msgid "External ID" msgstr "" #: ../include/global_form.php:1238 msgid "External ID for linking Cacti data to external monitoring systems." msgstr "" #: ../include/global_form.php:1260 #, fuzzy msgid "A useful name for this host template." msgstr "Un nom pratique pour cet arbre de graphique." #: ../include/global_form.php:1280 msgid "A name for this data query." msgstr "Nom de cette requète." #: ../include/global_form.php:1288 #, fuzzy msgid "A description for this data query." msgstr "Nom de cette requète." #: ../include/global_form.php:1295 msgid "XML Path" msgstr "Chemin XML" #: ../include/global_form.php:1296 msgid "" "The full path to the XML file containing definitions for this data query." msgstr "" #: ../include/global_form.php:1305 msgid "" "Choose the input method for this Data Query. This input method defines how " "data is collected for each Device associated with the Data Query." msgstr "" #: ../include/global_form.php:1324 msgid "" "Choose the Graph Template to use for this Data Query Graph Template item." msgstr "" #: ../include/global_form.php:1350 msgid "A name for this associated graph." msgstr "Un nom pour le graphique associé." #: ../include/global_form.php:1378 msgid "A useful name for this graph tree." msgstr "Un nom pratique pour cet arbre de graphique." #: ../include/global_form.php:1385 ../include/global_form.php:2281 #: ../lib/api_automation.php:1334 ../tree.php:1279 msgid "Sorting Type" msgstr "Type de tri" #: ../include/global_form.php:1386 ../include/global_form.php:2282 msgid "Choose how items in this tree will be sorted." msgstr "Choisissez la méthode de tri des éléments de cet arbre." #: ../include/global_form.php:1392 msgid "Publish" msgstr "" #: ../include/global_form.php:1393 msgid "Should this Tree be published for users to access?" msgstr "" #: ../include/global_form.php:1428 msgid "An Email Address where the User can be reached." msgstr "" #: ../include/global_form.php:1436 msgid "" "Enter the password for this user twice. Remember that passwords are case " "sensitive!" msgstr "" #: ../include/global_form.php:1444 ../user_group_admin.php:88 msgid "Determines if user is able to login." msgstr "" #: ../include/global_form.php:1450 ../tree.php:1561 msgid "Locked" msgstr "" #: ../include/global_form.php:1451 #, fuzzy msgid "Determines if the user account is locked." msgstr "Accès refusé, compte d'utilisateur désactivé." #: ../include/global_form.php:1456 msgid "Account Options" msgstr "Options du compte d'utilisateur" #: ../include/global_form.php:1458 #, fuzzy msgid "Set any user account specific options here." msgstr "Configurer les options spécifiques aux comptes d'utilisateur ici." #: ../include/global_form.php:1462 #, fuzzy msgid "Must Change Password at Next Login" msgstr "" "L'utilisateur doit changer son mot de passe à la prochaine authentification." #: ../include/global_form.php:1474 msgid "Maintain Custom Graph and User Settings" msgstr "" #: ../include/global_form.php:1481 msgid "Graph Options" msgstr "Options des graphiques" #: ../include/global_form.php:1483 #, fuzzy msgid "Set any graph specific options here." msgstr "Configurer les options spécifiques aux graphiques ici." #: ../include/global_form.php:1487 msgid "User Has Rights to Tree View" msgstr "" #: ../include/global_form.php:1493 msgid "User Has Rights to List View" msgstr "" #: ../include/global_form.php:1499 msgid "User Has Rights to Preview View" msgstr "" #: ../include/global_form.php:1506 ../user_group_admin.php:130 msgid "Login Options" msgstr "Options d'authentification" #: ../include/global_form.php:1509 msgid "What to do when this user logs in." msgstr "Que faire lorsque cet utilisateur s'authentifie." #: ../include/global_form.php:1514 msgid "Show the page that user pointed their browser to." msgstr "" #: ../include/global_form.php:1518 msgid "Show the default console screen." msgstr "Montrer l'écran console par défaut." #: ../include/global_form.php:1522 msgid "Show the default graph screen." msgstr "Montrer l'écran des graphiques par défaut." #: ../include/global_form.php:1528 ../utilities.php:765 #, fuzzy msgid "Authentication Realm" msgstr "Méthode d'authentification" #: ../include/global_form.php:1529 msgid "" "Only used if you have LDAP or Web Basic Authentication enabled. Changing " "this to a non-enabled realm will effectively disable the user." msgstr "" #: ../include/global_form.php:1566 #, fuzzy msgid "Discovery Rules" msgstr "Filtre de recherche" #: ../include/global_form.php:1584 msgid "Import Template from Local File" msgstr "Importer un modèle à partir d'un fichier local" #: ../include/global_form.php:1585 msgid "" "If the XML file containing template data is located on your local machine, " "select it here." msgstr "" "Si le fichier XML contenant le modèle de donnée est sur votre machine, " "sélectionnez le ici." #: ../include/global_form.php:1590 msgid "Import Template from Text" msgstr "Importer un modèle à partir d'un bloc texte" #: ../include/global_form.php:1591 #, fuzzy msgid "" "If you have the XML file containing template data as text, you can paste it " "into this box to import it." msgstr "" "Si le fichier XML contenant le modèle de donnée est sur votre machine, " "sélectionnez le ici." #: ../include/global_form.php:1599 msgid "Preview Import Only" msgstr "" #: ../include/global_form.php:1601 msgid "" "If checked, Cacti will not import the template, but rather compare the " "imported Template to the existing Template data. If you are acceptable of " "the change, you can them import." msgstr "" #: ../include/global_form.php:1606 #, fuzzy msgid "Remove Orphaned Graph Items" msgstr "Eléments graphiques associés" #: ../include/global_form.php:1608 msgid "" "If checked, Cacti will delete any Graph Items from both the Graph Template " "and associated Graphs that are not included in the imported Graph Template." msgstr "" #: ../include/global_form.php:1625 #, fuzzy msgid "General SNMP Entity Options" msgstr "Modifier les options SNMP" #: ../include/global_form.php:1631 msgid "Give this SNMP entity a meaningful description." msgstr "" #: ../include/global_form.php:1646 msgid "Disable SNMP Notification Receiver" msgstr "" #: ../include/global_form.php:1647 msgid "" "Check this box if you temporary do not want to send SNMP notifications to " "this host." msgstr "" #: ../include/global_form.php:1654 msgid "Maximum Log Size" msgstr "Taille maximum du log" #: ../include/global_form.php:1655 msgid "" "Maximum number of day's notification log entries for this receiver need to " "be stored." msgstr "" #: ../include/global_form.php:1695 msgid "SNMP Auth Password (v3)" msgstr "" #: ../include/global_form.php:1696 msgid "SNMP v3 user password for this device." msgstr "" #: ../include/global_form.php:1705 msgid "" "Choose the SNMPv3 Authorization Protocol.
    Note: SHA authentication " "support is only available if you have OpenSSL installed." msgstr "" #: ../include/global_form.php:1712 msgid "SNMP Privacy Password (v3)" msgstr "" #: ../include/global_form.php:1722 msgid "" "Choose the SNMPv3 Privacy Protocol.
    Note: DES/AES encryption support is " "only available if you have OpenSSL installed." msgstr "" #: ../include/global_form.php:1728 msgid "SNMP Engine ID" msgstr "" #: ../include/global_form.php:1729 msgid "" "Defines the unique SNMP Engine ID to identify this peer. Following format " "will be recommended:
    FlexibleLength+Enterprise(8000) + IANA-Cacti(5d75) + " "MAC-Following(03) + YOUR-MAC-ADDRESS(e.g.:D89D67287B00).
    Per default the " "locally administrated MAC 02-FF-FF-FF-FF-FF will be used." msgstr "" #: ../include/global_form.php:1738 #, fuzzy msgid "The UDP port to be used for SNMP traps. Typically, 162." msgstr "Port UDP par défaut utilisé pour les requètes SNMP. En principe 161." #: ../include/global_form.php:1754 msgid "SNMP Message Type" msgstr "" #: ../include/global_form.php:1755 msgid "" "SNMP traps are always unacknowledged. To send out acknowledged SNMP " "notifications, formally called \"INFORMS\", SNMPv2 or above will be required." msgstr "" #: ../include/global_form.php:1787 ../include/global_form.php:2046 #: ../links.php:379 msgid "Title" msgstr "Titre" #: ../include/global_form.php:1788 #, fuzzy msgid "The new Title of the aggregated Graph." msgstr "Le nom imprimé sur le graphique." #: ../include/global_form.php:1795 ../include/global_form.php:1878 #: ../include/global_form.php:1980 msgid "Prefix" msgstr "" #: ../include/global_form.php:1796 msgid "A Prefix for all GPRINT lines to distinguish e.g. different hosts." msgstr "" #: ../include/global_form.php:1804 ../include/global_form.php:1887 #: ../include/global_form.php:1989 msgid "" "Use this Option to create e.g. STACKed graphs.
    AREA/STACK: 1st graph " "keeps AREA/STACK items, others convert to STACK
    LINE1: all items convert " "to LINE1 items
    LINE2: all items convert to LINE2 items
    LINE3: all " "items convert to LINE3 items" msgstr "" #: ../include/global_form.php:1815 ../include/global_form.php:1898 #: ../include/global_form.php:2000 msgid "Totaling" msgstr "" #: ../include/global_form.php:1816 ../include/global_form.php:1899 #: ../include/global_form.php:2001 msgid "" "Please check those Items that shall be totaled in the \"Total\" column, when " "selecting any totaling option here." msgstr "" #: ../include/global_form.php:1823 ../include/global_form.php:1907 #: ../include/global_form.php:2009 #, fuzzy msgid "Total Type" msgstr "Type de l'agent de collecte" #: ../include/global_form.php:1824 ../include/global_form.php:1908 #: ../include/global_form.php:2010 msgid "Which type of totaling shall be performed." msgstr "" #: ../include/global_form.php:1831 ../include/global_form.php:1916 #: ../include/global_form.php:2018 msgid "Prefix for GPRINT Totals" msgstr "" #: ../include/global_form.php:1832 ../include/global_form.php:1917 #: ../include/global_form.php:2019 msgid "A Prefix for all totaling GPRINT lines." msgstr "" #: ../include/global_form.php:1839 ../include/global_form.php:1924 #: ../include/global_form.php:2026 #, fuzzy msgid "Reorder Type" msgstr "Type de l'agent de collecte" #: ../include/global_form.php:1840 ../include/global_form.php:1925 #: ../include/global_form.php:2027 msgid "Reordering of Graphs." msgstr "" #: ../include/global_form.php:1860 #, fuzzy msgid "Please name this Aggregate Graph." msgstr "Le nom imprimé sur le graphique." #: ../include/global_form.php:1867 #, fuzzy msgid "Propagation Enabled" msgstr "Propager les modifications" #: ../include/global_form.php:1868 msgid "Is this to carry the template?" msgstr "" #: ../include/global_form.php:1874 #, fuzzy msgid "Aggregate Graph Settings" msgstr "Paramètres du graphique" #: ../include/global_form.php:1879 ../include/global_form.php:1981 msgid "" "A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may " "use both Host as well as Data Query replacement variables in this prefix." msgstr "" #: ../include/global_form.php:1959 #, fuzzy msgid "Aggregate Template Name" msgstr "Nom du modèle de graphique" #: ../include/global_form.php:1960 #, fuzzy msgid "Please name this Aggregate Template." msgstr "Le nom donné à ce modèle de graphique." #: ../include/global_form.php:1967 #, fuzzy msgid "Source Graph Template" msgstr "Pas de modèle de graphique" #: ../include/global_form.php:1968 msgid "The Graph Template that this Aggregate Template is based upon." msgstr "" #: ../include/global_form.php:1976 msgid "Aggregate Template Settings" msgstr "" #: ../include/global_form.php:2050 #, fuzzy msgid "The name of this Color Template." msgstr "Le nom donné à ce modèle de graphique." #: ../include/global_form.php:2061 msgid "A nice Color" msgstr "" #: ../include/global_form.php:2071 #, fuzzy msgid "A useful name for this Template." msgstr "Un nom pratique pour cet arbre de graphique." #: ../include/global_form.php:2085 ../include/global_form.php:2127 #: ../lib/api_automation.php:1208 ../lib/api_automation.php:1270 #, fuzzy msgid "Operation" msgstr "Opérateur" #: ../include/global_form.php:2086 ../include/global_form.php:2128 msgid "Logical operation to combine rules." msgstr "" #: ../include/global_form.php:2094 ../include/global_form.php:2136 msgid "The Field Name that shall be used for this Rule Item." msgstr "" #: ../include/global_form.php:2102 ../include/global_form.php:2144 #, fuzzy msgid "Operator." msgstr "Opérateur" #: ../include/global_form.php:2109 ../include/global_form.php:2151 #: ../include/global_form.php:2297 msgid "Matching Pattern" msgstr "" #: ../include/global_form.php:2110 ../include/global_form.php:2152 msgid "The Pattern to be matched against." msgstr "" #: ../include/global_form.php:2118 ../include/global_form.php:2160 #: ../include/global_form.php:2314 msgid "Sequence." msgstr "" #: ../include/global_form.php:2169 ../include/global_form.php:2216 #, fuzzy msgid "A useful name for this Rule." msgstr "Un nom pratique de ce CDEF." #: ../include/global_form.php:2177 msgid "Choose a Data Query to apply to this rule." msgstr "" #: ../include/global_form.php:2188 msgid "Choose any of the available Graph Types to apply to this rule." msgstr "" #: ../include/global_form.php:2203 ../include/global_form.php:2261 #, fuzzy msgid "Enable Rule" msgstr "Activer" #: ../include/global_form.php:2204 ../include/global_form.php:2262 msgid "Check this box to enable this rule." msgstr "" #: ../include/global_form.php:2224 #, fuzzy msgid "Choose a Tree for the new Tree Items." msgstr "Choisissez le type d'élément a placer sur l'arbre" #: ../include/global_form.php:2231 #, fuzzy msgid "Leaf Item Type" msgstr "Type d'élément d'arbre" #: ../include/global_form.php:2232 msgid "The Item Type that shall be dynamically added to the tree." msgstr "" #: ../include/global_form.php:2239 #, fuzzy msgid "Graph Grouping Style" msgstr "Titre du graphique" #: ../include/global_form.php:2240 msgid "" "Choose how graphs are grouped when drawn for this particular host on the " "tree." msgstr "" #: ../include/global_form.php:2250 #, fuzzy msgid "Optional: Sub-Tree Item" msgstr "Élement de source de donnée" #: ../include/global_form.php:2251 msgid "" "Choose a Sub-Tree Item to hook in.
    Make sure, that it is still there when " "this rule is executed!" msgstr "" #: ../include/global_form.php:2272 #, fuzzy msgid "Header Type" msgstr "Type de l'agent de collecte" #: ../include/global_form.php:2273 msgid "Choose an Object to build a new Sub-header." msgstr "" #: ../include/global_form.php:2289 msgid "Propagate Changes" msgstr "Propager les modifications" #: ../include/global_form.php:2290 msgid "" "Propagate all options on this form (except for 'Title') to all child " "'Header' items." msgstr "" #: ../include/global_form.php:2298 msgid "" "The String Pattern (Regular Expression) to match against.
    Enclosing '/' " "must NOT be provided!" msgstr "" #: ../include/global_form.php:2305 msgid "Replacement Pattern" msgstr "" #: ../include/global_form.php:2306 msgid "" "The Replacement String Pattern for use as a Tree Header.
    Refer to a Match " "by e.g. \\${1} for the first match!" msgstr "" #: ../include/global_languages.php:592 msgid " T" msgstr "" #: ../include/global_languages.php:594 msgid " G" msgstr "" #: ../include/global_languages.php:596 msgid " M" msgstr "" #: ../include/global_languages.php:598 msgid " K" msgstr "" #: ../include/global_session.php:91 ../lib/html_filter.php:66 msgid "Enter a search term" msgstr "" #: ../include/global_session.php:92 #, fuzzy msgid "Enter a regular expression" msgstr "Expression régulière" #: ../include/global_settings.php:38 ../include/global_settings.php:836 #: ../include/global_settings.php:940 ../include/global_settings.php:1565 #: ../managers.php:39 ../user_admin.php:1921 ../user_group_admin.php:1642 msgid "General" msgstr "" #: ../include/global_settings.php:39 msgid "Paths" msgstr "Chemins" #: ../include/global_settings.php:40 #, fuzzy msgid "Device Defaults" msgstr "Défaut" #: ../include/global_settings.php:41 ../include/global_settings.php:449 msgid "Poller" msgstr "Agent de collecte" #: ../include/global_settings.php:42 #, fuzzy msgid "Data Storage" msgstr "Source de donnée" #: ../include/global_settings.php:43 msgid "Visual" msgstr "Visuel" #: ../include/global_settings.php:44 ../lib/functions.php:3800 #: ../lib/functions.php:3805 #, fuzzy msgid "Authentication" msgstr "Méthode d'authentification par LDAP" #: ../include/global_settings.php:45 #, fuzzy msgid "Data Source Statistics" msgstr "Chemin de la source de donnée" #: ../include/global_settings.php:46 msgid "Performance" msgstr "" #: ../include/global_settings.php:47 msgid "Spikes" msgstr "" #: ../include/global_settings.php:48 msgid "Mail/Reporting/DNS" msgstr "" #: ../include/global_settings.php:52 msgid "Time Spanning/Shifting" msgstr "" #: ../include/global_settings.php:53 #, fuzzy msgid "Graph Thumbnail Settings" msgstr "Vignettes des graphiques" #: ../include/global_settings.php:54 #, fuzzy msgid "Tree Settings" msgstr "Paramètres" #: ../include/global_settings.php:55 #, fuzzy msgid "Graph Fonts" msgstr "Options des graphiques" #: ../include/global_settings.php:85 #, fuzzy msgid "Required Tool Paths" msgstr "Version des outils nécessaires" #: ../include/global_settings.php:90 msgid "snmpwalk Binary Path" msgstr "Chemin de l'exécutable snmpwalk" #: ../include/global_settings.php:91 msgid "The path to your snmpwalk binary." msgstr "Chemin de l'exécutable snmpwalk." #: ../include/global_settings.php:96 msgid "snmpget Binary Path" msgstr "Chemin de l'exécutable snmpget" #: ../include/global_settings.php:97 msgid "The path to your snmpget binary." msgstr "Chemin de l'exécutable snmpget." #: ../include/global_settings.php:102 #, fuzzy msgid "snmpbulkwalk Binary Path" msgstr "Chemin de l'exécutable snmpwalk" #: ../include/global_settings.php:103 #, fuzzy msgid "The path to your snmpbulkwalk binary." msgstr "Chemin de l'exécutable snmpwalk." #: ../include/global_settings.php:108 #, fuzzy msgid "snmpgetnext Binary Path" msgstr "Chemin de l'exécutable snmpget" #: ../include/global_settings.php:109 #, fuzzy msgid "The path to your snmpgetnext binary." msgstr "Chemin de l'exécutable snmpget." #: ../include/global_settings.php:114 #, fuzzy msgid "snmptrap Binary Path" msgstr "Chemin de l'exécutable snmpget" #: ../include/global_settings.php:115 #, fuzzy msgid "The path to your snmptrap binary." msgstr "Chemin de l'exécutable snmpget." #: ../include/global_settings.php:120 #, fuzzy msgid "RRDtool Binary Path" msgstr "Chemin vers l'exécutable RRDTool" #: ../include/global_settings.php:121 msgid "The path to the rrdtool binary." msgstr "Le chemin vers l'exécutable rrdtool." #: ../include/global_settings.php:126 msgid "PHP Binary Path" msgstr "Chemin de l'exécutable PHP" #: ../include/global_settings.php:127 msgid "" "The path to your PHP binary file (may require a php recompile to get this " "file)." msgstr "" #: ../include/global_settings.php:132 msgid "Logging" msgstr "Loguer" #: ../include/global_settings.php:137 #, fuzzy msgid "Cacti Log Path" msgstr "Chemin de la source de donnée" #: ../include/global_settings.php:138 msgid "" "The path to your Cacti log file (if blank, defaults to /log/" "cacti.log)" msgstr "" #: ../include/global_settings.php:144 msgid "Rotate the Cacti Log Nightly" msgstr "" #: ../include/global_settings.php:145 msgid "This will rotate the Cacti Log every night at midnight." msgstr "" #: ../include/global_settings.php:150 #, fuzzy msgid "Log Retention" msgstr "Options d'authentification" #: ../include/global_settings.php:151 msgid "" "The number of days to retain old logs. Use 0 to never remove any logs. " "(0-365)" msgstr "" #: ../include/global_settings.php:157 #, fuzzy msgid "Alternate Poller Path" msgstr "Effacer le cache de l'agent de collecte." #: ../include/global_settings.php:162 msgid "Spine Binary File Location" msgstr "" #: ../include/global_settings.php:163 #, fuzzy msgid "The path to Spine binary." msgstr "Chemin de l'exécutable snmpget." #: ../include/global_settings.php:168 msgid "Spine Config File Path" msgstr "" #: ../include/global_settings.php:169 msgid "" "The path to Spine configuration file. By default, in the cwd of spine, or /" "etc if not specified." msgstr "" #: ../include/global_settings.php:174 ../lib/functions.php:2238 #: ../rrdcleaner.php:296 #, fuzzy msgid "RRD Cleaner" msgstr "Effacer" #: ../include/global_settings.php:179 msgid "RRDfile Auto Clean" msgstr "" #: ../include/global_settings.php:180 msgid "" "Automatically Delete, Archive, or Delete RRDfiles when removed from Cacti" msgstr "" #: ../include/global_settings.php:185 msgid "RRDfile Auto Clean Method" msgstr "" #: ../include/global_settings.php:186 msgid "The method used to Clean RRDfiles from Cacti after their deletion." msgstr "" #: ../include/global_settings.php:192 msgid "Archive directory" msgstr "" #: ../include/global_settings.php:193 msgid "" "This is the directory where RRDfiles are moved for " "Archive" msgstr "" #: ../include/global_settings.php:201 #, fuzzy msgid "Event Logging" msgstr "Loguer" #: ../include/global_settings.php:206 #, fuzzy msgid "Log Destination" msgstr "Branche de destintation :" #: ../include/global_settings.php:207 msgid "How will Cacti handle event logging." msgstr "Façon dont Cacti va gêrer les évennements à logguer." #: ../include/global_settings.php:213 msgid "Web Events" msgstr "" #: ../include/global_settings.php:214 msgid "What Cacti website messages should be placed in the log." msgstr "" #: ../include/global_settings.php:219 msgid "SNMP Messages" msgstr "" #: ../include/global_settings.php:223 #, fuzzy msgid "Graph Syntax" msgstr "Paramètres du graphique" #: ../include/global_settings.php:227 #, fuzzy msgid "Developer Mode" msgstr "Mode de prévisualisation" #: ../include/global_settings.php:233 #, fuzzy msgid "Log Settings" msgstr "Paramètres" #: ../include/global_settings.php:238 msgid "Generic Log Level" msgstr "" #: ../include/global_settings.php:239 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: ../include/global_settings.php:245 msgid "Selective File Debug" msgstr "" #: ../include/global_settings.php:246 msgid "" "Select which files you wish to place in Debug mode regardless of the Generic " "Log Level setting. Any files selected will be treated as they are in Debug " "mode." msgstr "" #: ../include/global_settings.php:252 msgid "Selective Plugin Debug" msgstr "" #: ../include/global_settings.php:253 msgid "" "Select which Plugins you wish to place in Debug mode regardless of the " "Generic Log Level setting. Any files used by this plugin will be treated as " "they are in Debug mode." msgstr "" #: ../include/global_settings.php:259 msgid "Selective Device Debug" msgstr "" #: ../include/global_settings.php:260 msgid "" "A comma delimited list of Device ID's that you wish to be in Debug mode " "during data collection. This Debug level is only in place during the Cacti " "polling process." msgstr "" #: ../include/global_settings.php:267 msgid "Poller Syslog/Eventlog Selection" msgstr "" #: ../include/global_settings.php:268 msgid "" "If you are using the Syslog/Eventlog, What Cacti poller messages should be " "placed in the Syslog/Eventlog." msgstr "" #: ../include/global_settings.php:273 #, fuzzy msgid "Statistics" msgstr "Initialiser les statistiques" #: ../include/global_settings.php:277 ../lib/clog_webapi.php:333 #: ../utilities.php:1002 #, fuzzy msgid "Warnings" msgstr "Alertes de l'agent de collecte" #: ../include/global_settings.php:281 ../lib/clog_webapi.php:334 #: ../utilities.php:1003 msgid "Errors" msgstr "" #: ../include/global_settings.php:287 #, fuzzy msgid "Other Defaults" msgstr "Défaut" #: ../include/global_settings.php:292 msgid "Has Graphs/Data Sources Checked" msgstr "" #: ../include/global_settings.php:293 msgid "Should the Has Graphs and Has Data Sources be Checked by Default." msgstr "" #: ../include/global_settings.php:298 #, fuzzy msgid "Graph Template Image Format" msgstr "Elements de modèle de graphique" #: ../include/global_settings.php:299 #, fuzzy msgid "The default Image Format to be used for all new Graph Templates." msgstr "Le format de date à utiliser pour les graphiques" #: ../include/global_settings.php:305 #, fuzzy msgid "Graph Template Height" msgstr "Nom du modèle de graphique" #: ../include/global_settings.php:306 ../include/global_settings.php:314 #, fuzzy msgid "The default Graph Width to be used for all new Graph Templates." msgstr "Le séparateur de date à utiliser avec les graphiques" #: ../include/global_settings.php:313 #, fuzzy msgid "Graph Template Width" msgstr "Modèle de graphique" #: ../include/global_settings.php:321 msgid "Language Support" msgstr "" #: ../include/global_settings.php:322 msgid "" "Choose 'enabled' to allow the localization of Cacti. The strict mode " "requires that the requested language will also be supported by all plugins " "being installed at your system. If that's not the fact everything will be " "displayed in English." msgstr "" #: ../include/global_settings.php:328 msgid "Language" msgstr "" #: ../include/global_settings.php:329 #, fuzzy msgid "Default language for this system." msgstr "Un nom pratique pour cet arbre de graphique." #: ../include/global_settings.php:335 msgid "Auto Language Detection" msgstr "" #: ../include/global_settings.php:336 msgid "" "Allow to automatically determine the 'default' language of the user and " "provide it at login time if that language is supported by Cacti. If " "disabled, the default language will be in force until the user elects " "another language." msgstr "" #: ../include/global_settings.php:342 ../include/global_settings.php:1819 #, fuzzy msgid "Date Display Format" msgstr "Format d'affichage de la date" #: ../include/global_settings.php:343 #, fuzzy msgid "The System default date format to use in Cacti." msgstr "Le format de date à utiliser pour les graphiques" #: ../include/global_settings.php:349 ../include/global_settings.php:1826 #, fuzzy msgid "Date Separator" msgstr "Séparateur de date" #: ../include/global_settings.php:350 #, fuzzy msgid "The System default date separator to be used in Cacti." msgstr "Le séparateur de date à utiliser avec les graphiques" #: ../include/global_settings.php:356 #, fuzzy msgid "Other Settings" msgstr "Paramètres" #: ../include/global_settings.php:361 ../utilities.php:258 #, fuzzy msgid "RRDtool Version" msgstr "Version du protocole" #: ../include/global_settings.php:362 #, fuzzy msgid "The version of RRDtool that you have installed." msgstr "La version de l'utilitaire RRDTool installée." #: ../include/global_settings.php:368 #, fuzzy msgid "Graph Permission Method" msgstr "Permissions du graphique" #: ../include/global_settings.php:369 msgid "" "There are two methods for determining a User's Graph Permissions. The first " "is 'Permissive'. Under the 'Permissive' setting, a User only needs access " "to either the Graph, Device or Graph Template to gain access to the Graphs " "that apply to them. Under 'Restrictive', the User must have access to the " "Graph, the Device, and the Graph Template to gain access to the Graph." msgstr "" #: ../include/global_settings.php:376 #, fuzzy msgid "Graph/Data Source Creation Method" msgstr "Chemin de la source de donnée" #: ../include/global_settings.php:377 msgid "" "If set to Simple, Graphs and Data Sources can only be created from New " "Graphs. If Advanced, legacy Graph and Data Source creation is supported." msgstr "" #: ../include/global_settings.php:382 msgid "Show Form/Setting Help Inline" msgstr "" #: ../include/global_settings.php:383 msgid "" "When checked, Form and Setting Help will be show inline. Otherwise it will " "be presented when hovering over the help button." msgstr "" #: ../include/global_settings.php:388 #, fuzzy msgid "Deletion Verification" msgstr "Méthode d'authentification intégrée" #: ../include/global_settings.php:389 msgid "Prompt user before item deletion." msgstr "Prévenir l'utilisateur avant de suprimer un élément." #: ../include/global_settings.php:394 msgid "Hide Cacti Console" msgstr "" #: ../include/global_settings.php:395 msgid "" "For use with Cacti's External Link Support. Using this setting, you can " "replace the Cacti Console with your own page." msgstr "" #: ../include/global_settings.php:401 msgid "Enable Drag-N-Drop" msgstr "" #: ../include/global_settings.php:402 msgid "" "Some of Cacti's interfaces support Drag-N-Drop. If checked this option will " "be enabled. Note: For visually impaired user, this option may be disabled." msgstr "" #: ../include/global_settings.php:407 msgid "Force Connections over HTTPS" msgstr "" #: ../include/global_settings.php:408 msgid "" "When checked, any attempts to access Cacti will be redirected to HTTPS to " "insure high security." msgstr "" #: ../include/global_settings.php:419 msgid "Enable Automatic Graph Creation" msgstr "" #: ../include/global_settings.php:420 msgid "" "When disabled, Cacti Automation will not actively create any Graph.This is " "useful when adjusting Host settings so as to avoid creating new Graphs each " "time you save an object. Invoking Automation Rules manually will still be " "possible." msgstr "" #: ../include/global_settings.php:427 msgid "Enable Automatic Tree Item Creation" msgstr "" #: ../include/global_settings.php:428 msgid "" "When disabled, Cacti Automation will not actively create any Tree Item.This " "is useful when adjusting Host or Graph settings so as to avoid creating new " "Tree Entries each time you save an object. Invoking Rules manually will " "still be possible." msgstr "" #: ../include/global_settings.php:436 #, fuzzy msgid "General Defaults" msgstr "Défaut" #: ../include/global_settings.php:442 msgid "The default Site for all new Devices." msgstr "" #: ../include/global_settings.php:450 msgid "The default Poller for all new Devices." msgstr "" #: ../include/global_settings.php:457 msgid "Re-index Method for Data Queries" msgstr "" #: ../include/global_settings.php:458 msgid "The default Re-index Method to use for all Data Queries." msgstr "" #: ../include/global_settings.php:464 #, fuzzy msgid "SNMP Defaults" msgstr "Défaut" #: ../include/global_settings.php:470 msgid "Default SNMP version for all new hosts." msgstr "" #: ../include/global_settings.php:477 msgid "Default SNMP read community for all new hosts." msgstr "" #: ../include/global_settings.php:483 #, fuzzy msgid "Username (v3)" msgstr "Nom d'utilisateur" #: ../include/global_settings.php:484 msgid "The SNMP v3 Username for polling hosts." msgstr "" #: ../include/global_settings.php:490 #, fuzzy msgid "Password (v3)" msgstr "Mot de passe" #: ../include/global_settings.php:491 msgid "The SNMP v3 Password for polling hosts." msgstr "" #: ../include/global_settings.php:498 msgid "Auth Protocol (v3)" msgstr "" #: ../include/global_settings.php:505 msgid "Privacy Passphrase (v3)" msgstr "" #: ../include/global_settings.php:512 msgid "Privacy Protocol (v3)" msgstr "" #: ../include/global_settings.php:519 msgid "Default SNMP timeout in milli-seconds." msgstr "??Timeoute?? SNMP par défaut en milli-secondes." #: ../include/global_settings.php:526 msgid "Port Number" msgstr "" #: ../include/global_settings.php:527 #, fuzzy msgid "Default UDP port to be used for SNMP Calls. Typically, 161." msgstr "Port UDP par défaut utilisé pour les requètes SNMP. En principe 161." #: ../include/global_settings.php:535 msgid "" "The number of times the SNMP poller will attempt to reach the host before " "failing." msgstr "" #: ../include/global_settings.php:542 #, fuzzy msgid "Availability/Reachability" msgstr "Disponibilité" #: ../include/global_settings.php:554 msgid "Ping Type" msgstr "Type de ping" #: ../include/global_settings.php:555 msgid "" "The type of ping packet to send.
    NOTE: ICMP requires that the Cacti " "Service ID have root privileges in UNIX/Linux." msgstr "" #: ../include/global_settings.php:562 msgid "" "When choosing either TCP or UDP Ping, which port should be checked for " "availability of the host prior to polling." msgstr "" #: ../include/global_settings.php:578 msgid "The number of times Cacti will attempt to ping a host before failing." msgstr "" #: ../include/global_settings.php:585 #, fuzzy msgid "Up/Down Settings" msgstr "Paramètres du graphique" #: ../include/global_settings.php:590 msgid "Failure Count" msgstr "" #: ../include/global_settings.php:591 msgid "" "The number of polling intervals a host must be down before logging an error " "and reporting host as down." msgstr "" #: ../include/global_settings.php:598 msgid "Recovery Count" msgstr "" #: ../include/global_settings.php:599 msgid "" "The number of polling intervals a host must remain up before returning host " "to an up status and issuing a notice." msgstr "" #: ../include/global_settings.php:608 #, fuzzy msgid "Theme Settings" msgstr "Paramètres" #: ../include/global_settings.php:613 ../include/global_settings.php:764 #: ../include/global_settings.php:1792 msgid "Theme" msgstr "" #: ../include/global_settings.php:614 ../include/global_settings.php:1793 msgid "Please select one of the available Themes to skin your Cacti with." msgstr "" #: ../include/global_settings.php:620 #, fuzzy msgid "Table Settings" msgstr "Paramètres globaux" #: ../include/global_settings.php:625 msgid "Rows Per Page" msgstr "Lignes par page" #: ../include/global_settings.php:626 #, fuzzy msgid "The default number of rows to display on for a table." msgstr "" "Nombre de lignes à afficher sur une seule page pour les sources de donnée." #: ../include/global_settings.php:632 msgid "Graph/Data Source/Data Query Settings" msgstr "" #: ../include/global_settings.php:637 msgid "Maximum Title Length" msgstr "Taille maximum du titre" #: ../include/global_settings.php:638 #, fuzzy msgid "The maximum allowable Graph or Data Source titles." msgstr "" "Nombre maximum de cacatères à afficher pour un titre de source de donnée." #: ../include/global_settings.php:645 #, fuzzy msgid "Data Source Field Length" msgstr "Champs de la source de donnée" #: ../include/global_settings.php:646 #, fuzzy msgid "The maximum Data Query field length." msgstr "Taille maximum du champ" #: ../include/global_settings.php:653 #, fuzzy msgid "Graph Creation" msgstr "Options des graphiques" #: ../include/global_settings.php:658 #, fuzzy msgid "Default Graph Type" msgstr "Arbre de graphique par défaut" #: ../include/global_settings.php:659 msgid "When creating graphs, what Graph Type would you like pre-selected?" msgstr "" #: ../include/global_settings.php:662 #, fuzzy msgid "All Types" msgstr "Type de l'agent de collecte" #: ../include/global_settings.php:662 #, fuzzy msgid "By Template/Data Query" msgstr "Interrogation avancée" #: ../include/global_settings.php:670 msgid "Default Log Tail Lines" msgstr "" #: ../include/global_settings.php:671 msgid "Default number of lines of the Cacti log file to tail." msgstr "" #: ../include/global_settings.php:677 msgid "Maximum number of rows per page" msgstr "" #: ../include/global_settings.php:678 msgid "" "User defined number of lines for the CLOG to tail when selecting 'All lines'." msgstr "" #: ../include/global_settings.php:685 #, fuzzy msgid "Log Tail Refresh" msgstr "Raffraichissement de la page" #: ../include/global_settings.php:686 msgid "How often do you want the Cacti log display to update." msgstr "" #: ../include/global_settings.php:692 msgid "RRDtool Graph Watermark" msgstr "" #: ../include/global_settings.php:697 msgid "Watermark Text" msgstr "" #: ../include/global_settings.php:698 msgid "Test to place at the bottom center of every Graph." msgstr "" #: ../include/global_settings.php:705 #, fuzzy msgid "Log Viewer Settings" msgstr "Paramètres de Cacti" #: ../include/global_settings.php:710 msgid "Exclusion Regex" msgstr "" #: ../include/global_settings.php:711 msgid "" "Any strings that match this regex will be excluded from the user display.\n" "\t\t\t\tFor example, if you want to exclude all log lines that " "include the words 'Admin' or 'Login'\n" "\t\t\t\tyou would type '(Admin || Login)'" msgstr "" #: ../include/global_settings.php:720 #, fuzzy msgid "Real-time Graphs" msgstr "Mettre à jour les graphiques" #: ../include/global_settings.php:725 msgid "Enable Real-time Graphing" msgstr "" #: ../include/global_settings.php:726 msgid "" "When an option is checked, users will be able to put Cacti into Real-time " "mode." msgstr "" #: ../include/global_settings.php:731 ../lib/html_reports.php:365 #, fuzzy msgid "Graph Timespan" msgstr "Titre du graphique" #: ../include/global_settings.php:732 msgid "This timespan you wish to see on the default graph." msgstr "" #: ../include/global_settings.php:738 ../utilities.php:1893 msgid "Refresh Interval" msgstr "" #: ../include/global_settings.php:739 msgid "This is the time between graph updates." msgstr "" #: ../include/global_settings.php:745 msgid "Cache Directory" msgstr "" #: ../include/global_settings.php:746 msgid "" "This is the location, on the web server where the RRDfiles and PNG files " "will be cached.\n" "\t\t\tThis cache will be managed by the poller.\n" "\t\t\tMake sure you have the correct read and write permissions on this " "folder" msgstr "" #: ../include/global_settings.php:755 msgid "RRDtool Graph Font Control" msgstr "" #: ../include/global_settings.php:760 #, fuzzy msgid "Font Selection Method" msgstr "Méthode d'authentification" #: ../include/global_settings.php:761 msgid "How do you wish fonts to be handled by default?" msgstr "" #: ../include/global_settings.php:764 msgid "System" msgstr "" #: ../include/global_settings.php:767 #, fuzzy msgid "Default Font" msgstr "Défaut" #: ../include/global_settings.php:768 msgid "" "When not using Theme based font control, the Pangon font-config font name to " "use for all Graphs. Optionally, you may leave blank and control font " "settings on a per object basis." msgstr "" #: ../include/global_settings.php:770 ../include/global_settings.php:785 #: ../include/global_settings.php:800 ../include/global_settings.php:815 #: ../include/global_settings.php:830 msgid "Enter Valid Font Config Value" msgstr "" #: ../include/global_settings.php:774 ../include/global_settings.php:1977 msgid "Title Font Size" msgstr "Taille de la fonte du titre" #: ../include/global_settings.php:775 ../include/global_settings.php:1978 msgid "The size of the font used for Graph Titles" msgstr "Taille de la fonte utilisée pour les titres des graphiques" #: ../include/global_settings.php:782 #, fuzzy msgid "Title Font Setting" msgstr "Taille de la fonte du titre" #: ../include/global_settings.php:783 msgid "" "The font to use for Graph Titles. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:789 ../include/global_settings.php:1990 msgid "Legend Font Size" msgstr "Taille de fonte de la légende" #: ../include/global_settings.php:790 ../include/global_settings.php:1991 msgid "The size of the font used for Graph Legend items" msgstr "Taille de la fonte utilisée pour les légendes du graphique" #: ../include/global_settings.php:797 #, fuzzy msgid "Legend Font Setting" msgstr "Taille de fonte de la légende" #: ../include/global_settings.php:798 msgid "" "The font to use for Graph Legends. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:804 ../include/global_settings.php:2003 msgid "Axis Font Size" msgstr "Taille de la fonte des axes" #: ../include/global_settings.php:805 ../include/global_settings.php:2004 msgid "The size of the font used for Graph Axis" msgstr "Taille de la fonte utilisée sur les axes du graphique" #: ../include/global_settings.php:812 #, fuzzy msgid "Axis Font Setting" msgstr "Taille de la fonte des axes" #: ../include/global_settings.php:813 msgid "" "The font to use for Graph Axis items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:819 ../include/global_settings.php:2016 #, fuzzy msgid "Unit Font Size" msgstr "Taille de la fonte du titre" #: ../include/global_settings.php:820 ../include/global_settings.php:2017 msgid "The size of the font used for Graph Units" msgstr "" "Taille de la fonte utilisée pour l'affichage de l'unité sur les graphiques" #: ../include/global_settings.php:827 #, fuzzy msgid "Unit Font Setting" msgstr "Taille de la fonte du titre" #: ../include/global_settings.php:828 msgid "" "The font to use for Graph Unit items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:841 msgid "Data Collection Enabled" msgstr "" #: ../include/global_settings.php:842 #, fuzzy msgid "If you wish to stop the polling process completely, uncheck this box." msgstr "Si vous vouller arrèter le processus de collecte, décocher cette case." #: ../include/global_settings.php:848 msgid "Poller Type" msgstr "Type de l'agent de collecte" #: ../include/global_settings.php:849 msgid "" "The poller type to use. This setting will take effect at next polling " "interval." msgstr "" #: ../include/global_settings.php:856 msgid "" "The polling interval in use. This setting will effect how often RRDfiles " "are checked and updated.\n" "\t\t\tNOTE: If you change this value, you must re-populate the " "poller cache. Failure to do so, may result in lost data." msgstr "" #: ../include/global_settings.php:863 msgid "Cron Interval" msgstr "" #: ../include/global_settings.php:864 msgid "" "The cron interval in use. You need to set this setting to the interval that " "your cron or scheduled task is currently running." msgstr "" #: ../include/global_settings.php:870 msgid "Maximum Concurrent Poller Processes" msgstr "Nombre maximum de processus de collecte simultanés" #: ../include/global_settings.php:871 msgid "" "The number of concurrent processes to execute. Using a higher number when " "using cmd.php will improve performance. Performance improvements in spine " "are best resolved with the threads parameter" msgstr "" #: ../include/global_settings.php:878 msgid "Balance Process Load" msgstr "" #: ../include/global_settings.php:879 msgid "" "If you choose this option, Cacti will attempt to balance the load of each " "poller process by equally distributing poller items per process." msgstr "" #: ../include/global_settings.php:884 msgid "Disable increasing OID Check" msgstr "" #: ../include/global_settings.php:885 msgid "Controls disabling check for increasing OID while walking OID tree." msgstr "" #: ../include/global_settings.php:890 msgid "Spine Specific Execution Parameters" msgstr "" #: ../include/global_settings.php:895 msgid "Invalid Data Logging" msgstr "" #: ../include/global_settings.php:896 msgid "" "How would you like Spine output errors logged? The options are: 'Detailed' " "which is similar to cmd.php logging; 'Summary' which provides the number of " "output errors per host; and 'None', which does not provide error counts." msgstr "" #: ../include/global_settings.php:901 ../utilities.php:193 msgid "Summary" msgstr "" #: ../include/global_settings.php:902 #, fuzzy msgid "Detailed" msgstr "Sauvegarde échouée." #: ../include/global_settings.php:906 msgid "Maximum Threads per Process" msgstr "Nombre maximum de thread par processus" #: ../include/global_settings.php:907 msgid "" "The maximum threads allowed per process. Using a higher number when using " "Spine will improve performance." msgstr "" #: ../include/global_settings.php:914 msgid "Number of PHP Script Servers" msgstr "" #: ../include/global_settings.php:915 msgid "" "The number of concurrent script server processes to run per Spine process. " "Settings between 1 and 10 are accepted. This parameter will help if you are " "running several threads and script server scripts." msgstr "" #: ../include/global_settings.php:922 msgid "Script and Script Server Timeout Value" msgstr "" #: ../include/global_settings.php:923 msgid "" "The maximum time that Cacti will wait on a script to complete. This timeout " "value is in seconds" msgstr "" #: ../include/global_settings.php:930 msgid "The Maximum SNMP OIDs Per SNMP Get Request" msgstr "" #: ../include/global_settings.php:931 msgid "" "The maximum number of SNMP get OIDs to issue per snmpbulkwalk request. " "Increasing this value speeds poller performance over slow links. The " "maximum value is 100 OIDs. Decreasing this value to 0 or 1 will disable " "snmpbulkwalk" msgstr "" #: ../include/global_settings.php:945 msgid "Authentication Method" msgstr "Méthode d'authentification" #: ../include/global_settings.php:946 msgid "" "
    None - No authentication will be used, all users will " "have full access.

    Built-in Authentication - Cacti handles user " "authentication, which allows you to create users and give them rights to " "different areas within Cacti.

    Web Basic Authentication - " "Authentication is handled by the web server. Users can be added or created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used.

    LDAP Authentication - " "Allows for authentication against a LDAP server. Users will be created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used. If PHPs LDAP module is not enabled, " "LDAP Authentication will not appear as a selectable option." "

    Multiple LDAP/AD Domain Authentication - Allows " "administrators to support multiple disparate groups from different LDAP/AD " "directories to access Cacti resources. Just as LDAP Authentication, the PHP " "LDAP module is required to utilize this method.
    " msgstr "" #: ../include/global_settings.php:952 #, fuzzy msgid "Support Authentication Cookies" msgstr "Méthode d'authentification intégrée" #: ../include/global_settings.php:953 msgid "" "If a user authenticates and selects 'Keep me signed in', an authentication " "cookie will be created on the user's computer allowing that user to stay " "logged in. The authentication cookie expires after 90 days of non-use." msgstr "" #: ../include/global_settings.php:958 msgid "Special Users" msgstr "" #: ../include/global_settings.php:963 msgid "Guest User" msgstr "Utilisateur invité" #: ../include/global_settings.php:964 msgid "The name of the guest user for viewing graphs; is 'No User' by default." msgstr "" #: ../include/global_settings.php:966 ../include/global_settings.php:974 #: ../user_domains.php:335 msgid "No User" msgstr "Pas d'utilisateur" #: ../include/global_settings.php:971 ../user_domains.php:331 msgid "User Template" msgstr "Modèle d'utilisateur" #: ../include/global_settings.php:972 #, fuzzy msgid "" "The name of the user that cacti will use as a template for new Web Basic and " "LDAP users; is 'guest' by default." msgstr "" "Le nom d'utilisateur que Cacti utilisera par défaut comme modèle pour la " "création de nouveaux utilisateur authentifié par HTTP ou par LDAP : \"guest" "\" par défaut." #: ../include/global_settings.php:979 msgid "Local Account Complexity Requirements" msgstr "" #: ../include/global_settings.php:984 #, fuzzy msgid "Minimum Length" msgstr "Taille maximum du champ" #: ../include/global_settings.php:985 msgid "This is minimal length of allowed passwords." msgstr "" #: ../include/global_settings.php:992 msgid "Require Mix Case" msgstr "" #: ../include/global_settings.php:993 msgid "" "This will require new passwords to contains both lower and upper-case " "characters." msgstr "" #: ../include/global_settings.php:998 msgid "Require Number" msgstr "" #: ../include/global_settings.php:999 msgid "" "This will require new passwords to contain at least 1 numerical character." msgstr "" #: ../include/global_settings.php:1004 msgid "Require Special Character" msgstr "" #: ../include/global_settings.php:1005 msgid "" "This will require new passwords to contain at least 1 special character." msgstr "" #: ../include/global_settings.php:1010 msgid "Force Complexity Upon Old Passwords" msgstr "" #: ../include/global_settings.php:1011 msgid "" "This will require all old passwords to also meet the new complexity " "requirements upon login. If not met, it will force a password change." msgstr "" #: ../include/global_settings.php:1016 msgid "Expire Inactive Accounts" msgstr "" #: ../include/global_settings.php:1017 msgid "" "This is maximum number of days before inactive accounts are disabled. The " "Admin account is excluded from this policy." msgstr "" #: ../include/global_settings.php:1030 #, fuzzy msgid "Expire Password" msgstr "Mot de passe" #: ../include/global_settings.php:1031 #, fuzzy msgid "This is maximum number of days before a password is set to expire." msgstr "" "Nombre maximum de cacatères à afficher pour un titre de source de donnée." #: ../include/global_settings.php:1042 #, fuzzy msgid "Password History" msgstr "Mot de passe" #: ../include/global_settings.php:1043 msgid "Remember this number of old passwords and disallow re-using them." msgstr "" #: ../include/global_settings.php:1048 #, fuzzy msgid "1 Change" msgstr "Changer la machine" #: ../include/global_settings.php:1049 ../include/global_settings.php:1050 #: ../include/global_settings.php:1051 ../include/global_settings.php:1052 #: ../include/global_settings.php:1053 ../include/global_settings.php:1054 #: ../include/global_settings.php:1055 ../include/global_settings.php:1056 #: ../include/global_settings.php:1057 ../include/global_settings.php:1058 #: ../include/global_settings.php:1059 #, fuzzy, php-format msgid "%d Changes" msgstr "Changer la machine" #: ../include/global_settings.php:1062 #, fuzzy msgid "Account Locking" msgstr "Options du compte d'utilisateur" #: ../include/global_settings.php:1067 msgid "Lock Accounts" msgstr "" #: ../include/global_settings.php:1068 msgid "Lock an account after this many failed attempts in 1 hour." msgstr "" #: ../include/global_settings.php:1073 msgid "1 Attempt" msgstr "" #: ../include/global_settings.php:1074 ../include/global_settings.php:1075 #: ../include/global_settings.php:1076 ../include/global_settings.php:1077 #: ../include/global_settings.php:1078 #, php-format msgid "%d Attempts" msgstr "" #: ../include/global_settings.php:1081 msgid "Auto Unlock" msgstr "" #: ../include/global_settings.php:1082 msgid "" "An account will automatically be unlocked after this many minutes. Even if " "the correct password is entered, the account will not unlock until this time " "limit has been met. Max of 1440 minutes (1 Day)" msgstr "" #: ../include/global_settings.php:1101 #, fuzzy msgid "LDAP General Settings" msgstr "Paramètres du graphique" #: ../include/global_settings.php:1105 ../user_domains.php:358 msgid "Server" msgstr "Serveur" #: ../include/global_settings.php:1106 msgid "The DNS hostname or IP address of the server." msgstr "" #: ../include/global_settings.php:1111 ../user_domains.php:366 msgid "Port Standard" msgstr "Port standard" #: ../include/global_settings.php:1112 msgid "TCP/UDP port for Non-SSL communications." msgstr "" #: ../include/global_settings.php:1119 ../user_domains.php:375 msgid "Port SSL" msgstr "Port SSL" #: ../include/global_settings.php:1120 ../user_domains.php:376 msgid "TCP/UDP port for SSL communications." msgstr "" #: ../include/global_settings.php:1127 ../user_domains.php:384 msgid "Protocol Version" msgstr "Version du protocole" #: ../include/global_settings.php:1128 ../user_domains.php:385 msgid "Protocol Version that the server supports." msgstr "Version du protocole supporté par le serveur." #: ../include/global_settings.php:1134 ../user_domains.php:391 msgid "Encryption" msgstr "Chiffrement" #: ../include/global_settings.php:1135 ../user_domains.php:392 msgid "" "Encryption that the server supports. TLS is only supported by Protocol " "Version 3." msgstr "" "Chiffrement supporté par le serveur. TLS n'est disponible qu'en protocole de " "version 3." #: ../include/global_settings.php:1141 ../user_domains.php:398 msgid "Referrals" msgstr "" #: ../include/global_settings.php:1142 ../user_domains.php:399 msgid "" "Enable or Disable LDAP referrals. If disabled, it may increase the speed of " "searches." msgstr "" #: ../include/global_settings.php:1148 ../user_domains.php:405 msgid "Mode" msgstr "Mode" #: ../include/global_settings.php:1149 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the user's " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the user's Distinguished Name (DN)." msgstr "" #: ../include/global_settings.php:1155 ../user_domains.php:412 msgid "Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1156 ../user_domains.php:413 msgid "" "Distinguished Name syntax, such as for windows: \"<username>" "@win2kdomain.local\" or for OpenLDAP: \"uid=<username>," "ou=people,dc=domain,dc=local\". \"<username>\" is replaced with " "the username that was supplied at the login prompt. This is only used when " "in \"No Searching\" mode." msgstr "" #: ../include/global_settings.php:1161 ../user_domains.php:419 #, fuzzy msgid "Require Group Membership" msgstr "Version des outils nécessaires" #: ../include/global_settings.php:1162 ../user_domains.php:420 msgid "" "Require user to be member of group to authenticate. Group settings must be " "set for this to work, enabling without proper group settings will cause " "authentication failure." msgstr "" #: ../include/global_settings.php:1167 ../user_domains.php:425 #, fuzzy msgid "LDAP Group Settings" msgstr "Paramètres du graphique" #: ../include/global_settings.php:1171 ../user_domains.php:429 msgid "Group Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1172 ../user_domains.php:430 msgid "Distinguished Name of the group that user must have membership." msgstr "" #: ../include/global_settings.php:1177 ../user_domains.php:436 msgid "Group Member Attribute" msgstr "" #: ../include/global_settings.php:1178 ../user_domains.php:437 msgid "Name of the attribute that contains the usernames of the members." msgstr "" #: ../include/global_settings.php:1183 ../user_domains.php:443 #, fuzzy msgid "Group Member Type" msgstr "Type de l'élément graphique" #: ../include/global_settings.php:1184 ../user_domains.php:444 msgid "" "Defines if users use full Distinguished Name or just Username in the defined " "Group Member Attribute." msgstr "" #: ../include/global_settings.php:1187 msgid "Distinguished Name" msgstr "" #: ../include/global_settings.php:1190 ../user_domains.php:450 #, fuzzy msgid "LDAP Specific Search Settings" msgstr "Recherche spécifique" #: ../include/global_settings.php:1194 ../user_domains.php:454 #, fuzzy msgid "Search Base" msgstr "Filtre de recherche" #: ../include/global_settings.php:1195 msgid "" "Search base for searching the LDAP directory, such as 'dc=win2kdomain," "dc=local' or 'ou=people,dc=domain,dc=local'." msgstr "" #: ../include/global_settings.php:1200 ../user_domains.php:461 msgid "Search Filter" msgstr "Filtre de recherche" #: ../include/global_settings.php:1201 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: '(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))' or for OpenLDAP: " "'(&(objectClass=account)(uid=<username>))'. '<username>' " "is replaced with the username that was supplied at the login prompt. " msgstr "" #: ../include/global_settings.php:1206 ../user_domains.php:468 msgid "Search Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1207 ../user_domains.php:469 msgid "" "Distinguished Name for Specific Searching binding to the LDAP directory." msgstr "" #: ../include/global_settings.php:1212 ../user_domains.php:475 #, fuzzy msgid "Search Password" msgstr "Mot de passe" #: ../include/global_settings.php:1213 ../user_domains.php:476 msgid "Password for Specific Searching binding to the LDAP directory." msgstr "" #: ../include/global_settings.php:1220 msgid "URL Linking" msgstr "" #: ../include/global_settings.php:1225 msgid "Server Base URL" msgstr "" #: ../include/global_settings.php:1226 msgid "" "This is a the server location that will be used for links to the Cacti site." msgstr "" #: ../include/global_settings.php:1233 msgid "" "Emailing Options
    Send a Test Email
    " msgstr "" #: ../include/global_settings.php:1237 msgid "Test Email" msgstr "" #: ../include/global_settings.php:1238 msgid "" "This is a Email account used for sending a test message to ensure everything " "is working properly." msgstr "" #: ../include/global_settings.php:1243 #, fuzzy msgid "Mail Services" msgstr "Équipements" #: ../include/global_settings.php:1244 msgid "Which mail service to use in order to send mail" msgstr "" #: ../include/global_settings.php:1246 ../include/global_settings.php:1247 msgid "PHP Mail() Function" msgstr "" #: ../include/global_settings.php:1247 ../lib/functions.php:3788 msgid "SMTP" msgstr "" #: ../include/global_settings.php:1247 ../lib/functions.php:3783 msgid "Sendmail" msgstr "" #: ../include/global_settings.php:1250 #, fuzzy msgid "Ping Mail Server" msgstr "Équipements" #: ../include/global_settings.php:1251 msgid "Ping the Mail Server before sending test Email?" msgstr "" #: ../include/global_settings.php:1257 ../lib/html_reports.php:186 msgid "From Email Address" msgstr "" #: ../include/global_settings.php:1258 msgid "This is the Email address that the Email will appear from." msgstr "" #: ../include/global_settings.php:1263 ../lib/html_reports.php:178 #, fuzzy msgid "From Name" msgstr "Nom complet" #: ../include/global_settings.php:1264 msgid "This is the actual name that the Email will appear from." msgstr "" #: ../include/global_settings.php:1269 msgid "Word Wrap" msgstr "" #: ../include/global_settings.php:1270 msgid "" "This is how many characters will be allowed before a line in the Email is " "automatically word wrapped. (0 = Disabled)" msgstr "" #: ../include/global_settings.php:1277 #, fuzzy msgid "Sendmail Options" msgstr "Options des graphiques" #: ../include/global_settings.php:1282 ../lib/functions.php:3783 msgid "Sendmail Path" msgstr "" #: ../include/global_settings.php:1283 msgid "" "This is the path to sendmail on your server. (Only used if Sendmail is " "selected as the Mail Service)" msgstr "" #: ../include/global_settings.php:1289 #, fuzzy msgid "SMTP Options" msgstr "Options FTP" #: ../include/global_settings.php:1294 #, fuzzy msgid "SMTP Hostname" msgstr "Nom de machine" #: ../include/global_settings.php:1295 msgid "" "This is the hostname/IP of the SMTP Server you will send the Email to. For " "failover, separate your hosts using a semi-colon." msgstr "" #: ../include/global_settings.php:1301 #, fuzzy msgid "SMTP Port" msgstr "Port SNMP" #: ../include/global_settings.php:1302 msgid "The port on the SMTP Server to use." msgstr "" #: ../include/global_settings.php:1309 #, fuzzy msgid "SMTP Username" msgstr "Nom d'utilisateur" #: ../include/global_settings.php:1310 msgid "" "The username to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: ../include/global_settings.php:1315 #, fuzzy msgid "SMTP Password" msgstr "Mot de passe FTP" #: ../include/global_settings.php:1316 msgid "" "The password to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: ../include/global_settings.php:1321 msgid "SMTP Security" msgstr "" #: ../include/global_settings.php:1322 msgid "The encryption method to use for the Email." msgstr "" #: ../include/global_settings.php:1328 #, fuzzy msgid "SMTP Timeout" msgstr "Délai maximum pour le SNMP" #: ../include/global_settings.php:1329 #, fuzzy msgid "Please enter the SMTP timeout in seconds." msgstr "??Timeoute?? SNMP par défaut en milli-secondes." #: ../include/global_settings.php:1336 msgid "Reporting Presets" msgstr "" #: ../include/global_settings.php:1341 #, fuzzy msgid "Default Graph Image Format" msgstr "Arbre de graphique par défaut" #: ../include/global_settings.php:1342 msgid "" "When creating a new report, what image type should be used for the inline " "graphs." msgstr "" #: ../include/global_settings.php:1348 #, fuzzy msgid "Maximum E-Mail Size" msgstr "Taille maximum du log" #: ../include/global_settings.php:1349 msgid "The maximum size of the E-Mail message including all attachements." msgstr "" #: ../include/global_settings.php:1355 msgid "Poller Logging Level for Cacti Reporting" msgstr "" #: ../include/global_settings.php:1356 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: ../include/global_settings.php:1362 msgid "Enable Lotus Notes (R) tweak" msgstr "" #: ../include/global_settings.php:1363 msgid "Enable code tweak for specific handling of Lotus Notes Mail Clients." msgstr "" #: ../include/global_settings.php:1368 #, fuzzy msgid "DNS Options" msgstr "Options FTP" #: ../include/global_settings.php:1373 msgid "Primary DNS IP Address" msgstr "" #: ../include/global_settings.php:1374 msgid "Enter the primary DNS IP Address to utilize for reverse lookups." msgstr "" #: ../include/global_settings.php:1380 msgid "Secondary DNS IP Address" msgstr "" #: ../include/global_settings.php:1381 msgid "Enter the secondary DNS IP Address to utilize for reverse lookups." msgstr "" #: ../include/global_settings.php:1387 #, fuzzy msgid "DNS Timeout" msgstr "Délai maximum pour le SNMP" #: ../include/global_settings.php:1388 msgid "" "Please enter the DNS timeout in milliseconds. Cacti uses a PHP based DNS " "resolver." msgstr "" #: ../include/global_settings.php:1397 #, fuzzy msgid "Data Sources Statistics" msgstr "Chemin de la source de donnée" #: ../include/global_settings.php:1402 msgid "Enable Data Source Statistics Collection" msgstr "" #: ../include/global_settings.php:1403 msgid "Should Data Source Statistics be collected for this Cacti system?" msgstr "" #: ../include/global_settings.php:1408 msgid "Daily Update Frequency" msgstr "" #: ../include/global_settings.php:1409 msgid "How frequent should Daily Stats be updated?" msgstr "" #: ../include/global_settings.php:1415 msgid "Hourly Average Window" msgstr "" #: ../include/global_settings.php:1416 msgid "" "The number of consecutive hours that represent the hourly\n" "\t\t\taverage. Keep in mind that a setting too high can result in very " "large memory tables" msgstr "" #: ../include/global_settings.php:1423 msgid "Maintenance Time" msgstr "" #: ../include/global_settings.php:1424 msgid "" "What time of day should Weekly, Monthly, and Yearly Data be updated? Format " "is HH:MM [am/pm]" msgstr "" #: ../include/global_settings.php:1431 msgid "Memory Limit for Data Source Statistics Data Collector" msgstr "" #: ../include/global_settings.php:1432 msgid "" "The maximum amount of memory for the Cacti Poller and Data Source Statistics " "Poller" msgstr "" #: ../include/global_settings.php:1438 msgid "Debugging" msgstr "Déboguage" #: ../include/global_settings.php:1443 msgid "Enable Single RRDtool Pipe" msgstr "" #: ../include/global_settings.php:1444 msgid "" "Using a single pipe will speed the RRDtool process by 10x. However, RRDtool " "crashes\n" "\t\t\tproblems can occur. Disable this setting if you need to find a bad " "RRDfile." msgstr "" #: ../include/global_settings.php:1450 msgid "Enable Partial Reference Data Retrieve" msgstr "" #: ../include/global_settings.php:1451 msgid "" "If using a large system, it may be beneficial for you to only gather data as " "needed\n" "\t\t\tduring Cacti poller passes. If you check this box, Data Source " "Statistics will gather data this way." msgstr "" #: ../include/global_settings.php:1459 msgid "On-demand RRD Update Settings" msgstr "" #: ../include/global_settings.php:1464 msgid "Enable On-demand RRD Updating" msgstr "" #: ../include/global_settings.php:1465 msgid "" "Should Boost enable on demand RRD updating in Cacti? If you disable, this " "change will not take effect until after the next polling cycle." msgstr "" #: ../include/global_settings.php:1470 msgid "System Level RRD Updater" msgstr "" #: ../include/global_settings.php:1471 msgid "" "Before RRD On-demand Update Can be Cleared, a poller run must always pass" msgstr "" #: ../include/global_settings.php:1476 msgid "How Often Should Boost Update All RRDs" msgstr "" #: ../include/global_settings.php:1477 msgid "" "When you enable boost, your RRD files are only updated when they are " "requested by a user, or when this time period elapses." msgstr "" #: ../include/global_settings.php:1484 #, fuzzy msgid "Maximum Records" msgstr "Valeur maximum de la durée de rétention" #: ../include/global_settings.php:1485 msgid "" "If the boost output table exceeds this size, in records, an update will take " "place." msgstr "" #: ../include/global_settings.php:1492 #, fuzzy msgid "Maximum Data Source Items Per Pass" msgstr "Élement de source de donnée" #: ../include/global_settings.php:1493 msgid "" "To optimize performance, the boost RRD updater needs to know how many Data " "Source Items\n" "\t\t\tshould be retrieved in one pass. Please be careful not to set too " "high as graphing performance during\n" "\t\t\tmajor updates can be compromised. If you encounter graphing or " "polling slowness during updates, lower this\n" "\t\t\tnumber. The default value is 50000." msgstr "" #: ../include/global_settings.php:1502 #, fuzzy msgid "Maximum Argument Length" msgstr "Taille maximum du champ" #: ../include/global_settings.php:1503 msgid "" "When boost sends update commands to RRDtool, it must not exceed the " "operating systems\n" "\t\t\tMaximum Argument Length. This varies by operating system and kernel " "level. For example:\n" "\t\t\tWindows 2000 <= 2048, FreeBSD <= 65535, Linux 2.6.22-- <= 131072, " "Linux 2.6.23++ unlimited" msgstr "" #: ../include/global_settings.php:1512 msgid "Memory Limit for Boost and Poller" msgstr "" #: ../include/global_settings.php:1513 msgid "The maximum amount of memory for the Cacti Poller and Boosts Poller" msgstr "" #: ../include/global_settings.php:1519 msgid "Maximum RRD Update Script Run Time" msgstr "" #: ../include/global_settings.php:1520 msgid "" "The maximum boot poller run time allowed prior to boost issuing warning\n" "\t\t\tmessages relative to possible hardware/software issues preventing " "proper updates." msgstr "" #: ../include/global_settings.php:1527 msgid "Enable direct population of poller_output_boost table" msgstr "" #: ../include/global_settings.php:1528 msgid "" "Enables direct insert of records into poller output boost with results in a " "25% time reduction in each poll cycle." msgstr "" #: ../include/global_settings.php:1533 ../utilities.php:2139 msgid "Image Caching" msgstr "" #: ../include/global_settings.php:1538 msgid "Enable Image Caching" msgstr "" #: ../include/global_settings.php:1539 msgid "Should image caching be enabled?" msgstr "" #: ../include/global_settings.php:1544 msgid "Location for Image Files" msgstr "" #: ../include/global_settings.php:1545 msgid "" "Specify the location where Boost should place your image files. These files " "will be automatically purged by the poller when they expire." msgstr "" #: ../include/global_settings.php:1551 msgid "Process Interlocking" msgstr "" #: ../include/global_settings.php:1556 msgid "Boost Debug Log" msgstr "" #: ../include/global_settings.php:1557 msgid "" "If this field is non-blank, Boost will log RRDupdate output from the boost" "\tpoller process." msgstr "" #: ../include/global_settings.php:1571 msgid "" "Choose if RRDs will be stored locally or being handled by an external " "RRDtool proxy server." msgstr "" #: ../include/global_settings.php:1574 ../include/global_settings.php:1582 msgid "RRDtool Proxy Server" msgstr "" #: ../include/global_settings.php:1577 msgid "Structured RRD Path (/host_id/local_data_id.rrd)" msgstr "" #: ../include/global_settings.php:1578 msgid "Use a separate subfolder for each hosts RRD files." msgstr "" #: ../include/global_settings.php:1587 ../include/global_settings.php:1619 #, fuzzy msgid "Proxy Server" msgstr "Serveur" #: ../include/global_settings.php:1588 msgid "The DNS hostname or IP address of the RRDtool proxy server." msgstr "" #: ../include/global_settings.php:1593 ../include/global_settings.php:1625 msgid "Proxy Port Number" msgstr "" #: ../include/global_settings.php:1594 msgid "TCP port for encrypted communication." msgstr "" #: ../include/global_settings.php:1601 ../include/global_settings.php:1633 #: ../utilities.php:248 msgid "RSA Fingerprint" msgstr "" #: ../include/global_settings.php:1602 msgid "" "The fingerprint of the current public RSA key the proxy is using. This is " "required to establish a trusted connection." msgstr "" #: ../include/global_settings.php:1609 msgid "RRDtool Proxy Server - Backup" msgstr "" #: ../include/global_settings.php:1614 msgid "Load Balancing" msgstr "" #: ../include/global_settings.php:1615 msgid "" "If both main and backup proxy are receivable this option allows to spread " "all requests against RRDtool." msgstr "" #: ../include/global_settings.php:1620 msgid "" "The DNS hostname or IP address of the RRDtool backup proxy server if proxy " "is running in MSR mode." msgstr "" #: ../include/global_settings.php:1626 msgid "TCP port for encrypted communication with the backup proxy." msgstr "" #: ../include/global_settings.php:1634 msgid "" "The fingerprint of the current public RSA key the backup proxy is using. " "This required to establish a trusted connection." msgstr "" #: ../include/global_settings.php:1643 #, fuzzy msgid "Spike Kill Settings" msgstr "Paramètres globaux" #: ../include/global_settings.php:1648 #, fuzzy msgid "Removal Method" msgstr "Méthode de réindexation" #: ../include/global_settings.php:1649 msgid "" "There are two removal methods. The first, Standard Deviation, will remove " "any\n" "\t\t\tsample that is X number of standard deviations away from the average " "of samples. The second method,\n" "\t\t\tVariance, will remove any sample that is X% more than the Variance " "average. The Variance method takes\n" "\t\t\tinto account a certain number of 'outliers'. Those are exceptional " "samples, like the spike, that need\n" "\t\t\tto be excluded from the Variance Average calculation." msgstr "" #: ../include/global_settings.php:1656 msgid "Standard Deviation" msgstr "" #: ../include/global_settings.php:1656 msgid "Variance Based w/Outliers Removed" msgstr "" #: ../include/global_settings.php:1659 ../lib/html.php:1719 #, fuzzy msgid "Replacement Method" msgstr "Méthode de réindexation" #: ../include/global_settings.php:1660 msgid "" "There are three replacement methods. The first method replaces the spike " "with the\n" "\t\t\tthe average of the data source in question. The second method " "replaces the spike with a 'NaN'.\n" "\t\t\tThe last replaces the spike with the last known good value found." msgstr "" #: ../include/global_settings.php:1665 ../lib/html.php:1720 #, fuzzy msgid "Average" msgstr "Moyen (ms)" #: ../include/global_settings.php:1665 ../lib/html.php:1722 msgid "Last Known Good" msgstr "" #: ../include/global_settings.php:1665 msgid "NaN's" msgstr "" #: ../include/global_settings.php:1668 msgid "Number of Standard Deviations" msgstr "" #: ../include/global_settings.php:1669 msgid "" "Any value that is this many standard deviations above the average will be " "excluded.\n" "\t\t\tA good number will be dependent on the type of data to be operated " "on. We recommend a number no lower\n" "\t\t\tthan 5 Standard Deviations." msgstr "" #: ../include/global_settings.php:1675 ../include/global_settings.php:1676 #: ../include/global_settings.php:1677 ../include/global_settings.php:1678 #: ../include/global_settings.php:1679 ../include/global_settings.php:1680 #: ../include/global_settings.php:1681 ../include/global_settings.php:1682 #: ../include/global_settings.php:1683 ../include/global_settings.php:1684 #, php-format msgid "%d Standard Deviations" msgstr "" #: ../include/global_settings.php:1688 ../lib/html.php:1731 msgid "Variance Percentage" msgstr "" #: ../include/global_settings.php:1689 #, php-format msgid "" "This value represents the percentage above the adjusted sample average once " "outliers\n" "\t\t\thave been removed from the sample. For example, a Variance Percentage " "of 100% on an adjusted average of 50\n" "\t\t\twould remove any sample above the quantity of 100 from the graph." msgstr "" #: ../include/global_settings.php:1710 msgid "Variance Number of Outliers" msgstr "" #: ../include/global_settings.php:1711 msgid "" "This value represents the number of high and low average samples will be " "removed from the\n" "\t\t\tsample set prior to calculating the Variance Average. If you choose " "an outlier value of 5, then both the top\n" "\t\t\tand bottom 5 averages are removed." msgstr "" #: ../include/global_settings.php:1717 ../include/global_settings.php:1718 #: ../include/global_settings.php:1719 ../include/global_settings.php:1720 #: ../include/global_settings.php:1721 ../include/global_settings.php:1722 #: ../include/global_settings.php:1723 ../include/global_settings.php:1724 #, php-format msgid "%d High/Low Samples" msgstr "" #: ../include/global_settings.php:1728 msgid "Max Kills Per RRA" msgstr "" #: ../include/global_settings.php:1729 msgid "" "This value represents the maximum number of spikes to remove from a Graph " "RRA." msgstr "" #: ../include/global_settings.php:1733 ../include/global_settings.php:1734 #: ../include/global_settings.php:1735 ../include/global_settings.php:1736 #: ../include/global_settings.php:1737 ../include/global_settings.php:1738 #: ../include/global_settings.php:1739 ../include/global_settings.php:1740 #, php-format msgid "%d Samples" msgstr "" #: ../include/global_settings.php:1744 msgid "RRDfile Backup Directory" msgstr "" #: ../include/global_settings.php:1745 msgid "" "If this directory is not empty, then your original RRDfiles will be backed\n" "\t\t\tup to this location." msgstr "" #: ../include/global_settings.php:1753 #, fuzzy msgid "Batch Spike Kill Settings" msgstr "Paramètres de Cacti" #: ../include/global_settings.php:1758 msgid "Removal Schedule" msgstr "" #: ../include/global_settings.php:1759 msgid "" "Do you wish to periodically remove spikes from your graphs? If so, select " "the frequency\n" "\t\t\tbelow." msgstr "" #: ../include/global_settings.php:1767 msgid "Once a Day" msgstr "" #: ../include/global_settings.php:1768 msgid "Every Other Day" msgstr "" #: ../include/global_settings.php:1772 msgid "Base Time" msgstr "" #: ../include/global_settings.php:1773 msgid "" "The Base Time for Spike removal to occur. For example, if you use '12:00am' " "and you choose\n" "\t\t\tonce per day, the batch removal would begin at approximately midnight " "every day." msgstr "" #: ../include/global_settings.php:1781 #, fuzzy msgid "Graph Templates to Spike Kill" msgstr "Elements de modèle de graphique" #: ../include/global_settings.php:1783 msgid "" "When performing batch spike removal, only the templates selected below will " "be acted on." msgstr "" #: ../include/global_settings.php:1799 msgid "Default View Mode" msgstr "Mode de vue par défaut" #: ../include/global_settings.php:1800 msgid "" "Which Graph mode you want displayed by default when you first visit the " "Graphs page?" msgstr "" #: ../include/global_settings.php:1806 #, fuzzy msgid "User Language" msgstr "Gestion utilisateurs" #: ../include/global_settings.php:1807 msgid "Defines the preferred GUI language." msgstr "" #: ../include/global_settings.php:1813 #, fuzzy msgid "Show Graph Title" msgstr "Titre du graphique" #: ../include/global_settings.php:1814 msgid "" "Display the graph title on the page so that it may be searched using the " "browser." msgstr "" #: ../include/global_settings.php:1820 #, fuzzy msgid "The date format to use in Cacti." msgstr "Le format de date à utiliser pour les graphiques" #: ../include/global_settings.php:1827 #, fuzzy msgid "The date separator to be used in Cacti." msgstr "Le séparateur de date à utiliser avec les graphiques" #: ../include/global_settings.php:1833 msgid "Page Refresh" msgstr "Raffraichissement de la page" #: ../include/global_settings.php:1834 msgid "The number of seconds between automatic page refreshes." msgstr "Nombre de secondes entre deux rafraichissements automatiques de page." #: ../include/global_settings.php:1840 #, fuzzy msgid "Preview Graphs Per Page" msgstr "Lignes par page" #: ../include/global_settings.php:1841 ../include/global_settings.php:1956 msgid "The number of graphs to display on one page in preview mode." msgstr "Le nombre de graphiques à afficher sur une page en prévisualisation." #: ../include/global_settings.php:1849 #, fuzzy msgid "Default Time Range" msgstr "Mode de vue par défaut" #: ../include/global_settings.php:1850 msgid "The default RRA to use in rare occasions." msgstr "" #: ../include/global_settings.php:1856 #, fuzzy msgid "Default Graph View Timespan" msgstr "Arbre de graphique par défaut" #: ../include/global_settings.php:1857 msgid "The default timespan you wish to be displayed when you display graphs" msgstr "" #: ../include/global_settings.php:1863 #, fuzzy msgid "Default Graph View Timeshift" msgstr "Arbre de graphique par défaut" #: ../include/global_settings.php:1864 msgid "The default timeshift you wish to be displayed when you display graphs" msgstr "" #: ../include/global_settings.php:1870 #, fuzzy msgid "Allow Graph to extend to Future" msgstr "Activer l'export de graphique" #: ../include/global_settings.php:1871 msgid "When displaying Graphs, allow Graph Dates to extend 'to future'" msgstr "" #: ../include/global_settings.php:1876 msgid "First Day of the Week" msgstr "" #: ../include/global_settings.php:1877 #, fuzzy msgid "The first Day of the Week for weekly Graph Displays" msgstr "Taille de la fonte utilisée pour les titres des graphiques" #: ../include/global_settings.php:1883 msgid "Start of Daily Shift" msgstr "" #: ../include/global_settings.php:1884 msgid "Start Time of the Daily Shift." msgstr "" #: ../include/global_settings.php:1891 msgid "End of Daily Shift" msgstr "" #: ../include/global_settings.php:1892 msgid "End Time of the Daily Shift." msgstr "" #: ../include/global_settings.php:1901 #, fuzzy msgid "Thumbnail Sections" msgstr "Hauteur de la vignette" #: ../include/global_settings.php:1902 msgid "Which portions of Cacti display Thumbnails by default." msgstr "" #: ../include/global_settings.php:1906 ../lib/functions.php:1880 msgid "Preview Mode" msgstr "Mode de prévisualisation" #: ../include/global_settings.php:1916 msgid "Preview Thumbnail Columns" msgstr "" #: ../include/global_settings.php:1917 #, fuzzy msgid "" "The number of columns to use when displaying Thumbnail graphs in Preview " "mode." msgstr "" "Le nombre de colones à utiliser pour l'affichage des graphiques en vignettes." #: ../include/global_settings.php:1920 ../include/global_settings.php:1927 #: ../lib/html_graph.php:231 ../lib/html_graph.php:232 #: ../lib/html_graph.php:233 ../lib/html_graph.php:234 #: ../lib/html_graph.php:235 ../lib/html_tree.php:677 ../lib/html_tree.php:678 #: ../lib/html_tree.php:679 ../lib/html_tree.php:680 ../lib/html_tree.php:681 #, php-format msgid "%d Columns" msgstr "" #: ../include/global_settings.php:1920 ../include/global_settings.php:1927 msgid "1 Column" msgstr "" #: ../include/global_settings.php:1923 msgid "Tree View Thumbnail Columns" msgstr "" #: ../include/global_settings.php:1924 #, fuzzy msgid "" "The number of columns to use when displaying Thumbnail graphs in Tree mode." msgstr "" "Le nombre de colones à utiliser pour l'affichage des graphiques en vignettes." #: ../include/global_settings.php:1930 msgid "Thumbnail Height" msgstr "Hauteur de la vignette" #: ../include/global_settings.php:1931 msgid "The height of Thumbnail graphs in pixels." msgstr "" #: ../include/global_settings.php:1938 msgid "Thumbnail Width" msgstr "Largeur de la vignette" #: ../include/global_settings.php:1939 msgid "The width of Thumbnail graphs in pixels." msgstr "" #: ../include/global_settings.php:1948 #, fuzzy msgid "Default Tree" msgstr "Arbre de graphique par défaut" #: ../include/global_settings.php:1949 #, fuzzy msgid "The default graph tree to use when displaying graphs in tree mode." msgstr "Le nombre de graphiques à afficher sur une page en prévisualisation." #: ../include/global_settings.php:1955 #, fuzzy msgid "Graphs Per Page" msgstr "Lignes par page" #: ../include/global_settings.php:1962 #, fuzzy msgid "Expand Devices" msgstr "Équipements" #: ../include/global_settings.php:1963 msgid "" "Choose whether to expand the Graph Templates and Data Queries used by a " "Device on Tree." msgstr "" #: ../include/global_settings.php:1970 msgid "Use Custom Fonts" msgstr "" #: ../include/global_settings.php:1971 msgid "" "Choose whether to use your own custom fonts and font sizes or utilize the " "system defaults." msgstr "" #: ../include/global_settings.php:1984 msgid "Title Font File" msgstr "Fichier de fonte du titre" #: ../include/global_settings.php:1985 #, fuzzy msgid "The font file to use for Graph Titles" msgstr "Taille de la fonte utilisée pour les titres des graphiques" #: ../include/global_settings.php:1997 msgid "Legend Font File" msgstr "Fichier de fonte de la légende" #: ../include/global_settings.php:1998 #, fuzzy msgid "The font file to be used for Graph Legend items" msgstr "Taille de la fonte utilisée pour les légendes du graphique" #: ../include/global_settings.php:2010 #, fuzzy msgid "Axis Font File" msgstr "Taille de la fonte des axes" #: ../include/global_settings.php:2011 #, fuzzy msgid "The font file to be used for Graph Axis items" msgstr "Taille de la fonte utilisée sur les axes du graphique" #: ../include/global_settings.php:2023 #, fuzzy msgid "Unit Font File" msgstr "Fichier de fonte du titre" #: ../include/global_settings.php:2024 #, fuzzy msgid "The font file to be used for Graph Unit items" msgstr "" "Taille de la fonte utilisée pour l'affichage de l'unité sur les graphiques" #: ../index.php:64 #, php-format msgid "" "You are now logged into Cacti. You can follow " "these basic steps to get started." msgstr "" #: ../index.php:67 #, php-format msgid "Create devices for network" msgstr "" #: ../index.php:68 #, php-format msgid "Create graphs for your new devices" msgstr "" #: ../index.php:69 #, php-format msgid "View your new graphs" msgstr "" #: ../index.php:78 msgid "Offline" msgstr "" #: ../index.php:78 msgid "Online" msgstr "" #: ../index.php:78 msgid "Recovery" msgstr "" #: ../index.php:78 msgid "Remote Data Collector Status:" msgstr "" #: ../index.php:80 msgid "Number of Offline Records:" msgstr "" #: ../index.php:85 msgid "" "NOTE: You are logged into a Remote Data Collector. When " "'online', you will be able to view and control much of the Main Cacti " "Web Site just as if you were logged into it. Also, it's important to note " "that Remote Data Collectors are required to use the Cacti's Performance " "Boosting Services 'On Demand Updating' feature, and we always " "recommend using Spine. When the Remote Data Collector is 'offline', " "the Remote Data Collectos Web Site will contain much less information. " "However, it will cache all updates until the Main Cacti Database and Web " "Server are reachable. Then it will dump it's Boost table output back to the " "Main Cacti Database for updating." msgstr "" #: ../index.php:90 msgid "" "NOTE: None of the Core Cacti Plugins, to date, have been re-" "designed to work with Remote Data Collectors. Therefore, Plugins such as " "MacTrack, and HMIB, which require direct access to devices will not work " "with Remote Data Collectors at this time. However, plugins such as Thold " "will work so long as the Remote Data Collector is in 'online' mode." msgstr "" #: ../install/index.php:51 ../install/index.php:56 ../install/index.php:61 #: ../install/index.php:302 ../lib/html_utility.php:820 msgid "Error" msgstr "" #: ../install/index.php:53 #, php-format msgid "" "This installation is already up-to-date. Click here to " "use Cacti." msgstr "" #: ../install/index.php:58 #, php-format msgid "" "You are attempting to install Cacti %s onto a 0.6.x database. To continue, " "you must create a new database, import \"cacti.sql\" into it, and update " "\"include/config.php\" to point to the new database." msgstr "" #: ../install/index.php:63 #, php-format msgid "" "You have created a new database, but have not yet imported the 'cacti.sql' " "file. At the command line, execute the following to continue:

    mysql -u %s -p %s < cacti.sql

    This error may also be " "generated if the cacti database user does not have correct permissions on " "the Cacti database. Please ensure that the Cacti database user has the " "ability to SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, DROP, INDEX on the " "Cacti database." msgstr "" #: ../install/index.php:65 #, php-format msgid "" "In Cacti %s, you must also import MySQL TimeZone information into MySQL and " "grant the Cacti user SELECT access to the mysql.time_zone_name table" msgstr "" #: ../install/index.php:68 msgid "On Linux/UNIX, do the following:" msgstr "" #: ../install/index.php:68 msgid "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" msgstr "" #: ../install/index.php:70 msgid "" "On Windows, you must follow the instructions here Time zone description " "table. Once that is complete, you can issue the following command to " "grant the Cacti user access to the tables:" msgstr "" #: ../install/index.php:72 #, php-format msgid "" "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" msgstr "" #: ../install/index.php:304 #, php-format msgid "" "Invalid Cacti version %1$s, cannot upgrade to %2$s" msgstr "" #: ../install/index.php:410 msgid "Cacti Installation Wizard" msgstr "" #: ../install/index.php:418 msgid "License Agreement" msgstr "" #: ../install/index.php:420 msgid "" "Thanks for taking the time to download and install Cacti, the complete " "graphing solution for your network. Before you can start making cool graphs, " "there are a few pieces of data that Cacti needs to know." msgstr "" #: ../install/index.php:421 #, php-format msgid "" "Make sure you have read and followed the required steps needed to install " "Cacti before continuing. Install information can be found for Unix and Win32-based operating systems." msgstr "" #: ../install/index.php:422 #, php-format msgid "" "Also, if this is an upgrade, be sure to reading the Upgrade information file." msgstr "" #: ../install/index.php:423 msgid "" "Cacti is licensed under the GNU General Public License, you must agree to " "its provisions before continuing:" msgstr "" #: ../install/index.php:441 msgid "Pre-installation Checks" msgstr "" #: ../install/index.php:442 msgid "MySQL TimeZone Support" msgstr "" #: ../install/index.php:447 ../install/index.php:451 ../install/index.php:630 #: ../install/index.php:638 msgid "ERROR:" msgstr "" #: ../install/index.php:447 msgid "" "Your MySQL TimeZone database is not populated. Please populate this " "database before proceeding." msgstr "" #: ../install/index.php:451 msgid "" "Your Cacti database login account does not have access to the MySQL TimeZone " "database. Please provide the Cacti database account \"select\" access to " "the \"time_zone_name\" table in the \"mysql\" database, and populate MySQL's " "TimeZone information before proceeding." msgstr "" #: ../install/index.php:456 msgid "" "Your Cacti database account has access to the MySQL TimeZone database and " "that database is populated with global TimeZone information." msgstr "" #: ../install/index.php:459 msgid "Required PHP Module Support" msgstr "" #: ../install/index.php:461 msgid "" "Cacti requires several PHP Modules to be installed to work properly. If any " "of these are not installed, you will be unable to continue the installation " "until corrected. In addition, for optimal system performance Cacti should be " "run with certain MySQL system variables set. Please follow the MySQL " "recommendations at your discretion. Always seek the MySQL documentation if " "you have any questions." msgstr "" #: ../install/index.php:463 msgid "" "The following PHP extensions are mandatory, and MUST be installed before " "continuing your Cacti install." msgstr "" #: ../install/index.php:465 #, fuzzy msgid "Required PHP Modules" msgstr "Version des outils nécessaires" #: ../install/index.php:466 ../install/index.php:543 ../plugins.php:41 #: ../plugins.php:288 ../utilities.php:415 msgid "Installed" msgstr "" #: ../install/index.php:466 msgid "Required" msgstr "" #: ../install/index.php:468 ../utilities.php:387 #, fuzzy msgid "PHP Version" msgstr "Version de SNMP" #: ../install/index.php:533 msgid "Optional PHP Module Support" msgstr "" #: ../install/index.php:535 msgid "" "The following PHP extensions are recommended, and should be installed before " "continuing your Cacti install." msgstr "" #: ../install/index.php:542 msgid "Optional Modules" msgstr "" #: ../install/index.php:543 #, fuzzy msgid "Optional" msgstr "Options FTP" #: ../install/index.php:553 msgid "" "These MySQL performance tuning settings will help your Cacti system perform " "better without issues for a longer time." msgstr "" #: ../install/index.php:555 msgid "Recommended MySQL System Variable Settings" msgstr "" #: ../install/index.php:560 msgid "Installation Type" msgstr "" #: ../install/index.php:565 #, php-format msgid "Upgrade from %s to %s" msgstr "" #: ../install/index.php:566 msgid "" "WARNING - If you are upgrading from a previous version please close all " "Cacti browser sessions and clear cache before continuing" msgstr "" #: ../install/index.php:569 msgid "Please select the type of installation" msgstr "" #: ../install/index.php:571 #, fuzzy #| msgid "Consolidation Functions" msgid "Installation options:" msgstr "Fonctions de consolidation" #: ../install/index.php:574 #, fuzzy msgid "Choose this for the Primary site." msgstr "Choisisser le parent pour cet entête / graphique" #: ../install/index.php:574 ../install/index.php:580 msgid "New Primary Server" msgstr "" #: ../install/index.php:575 ../install/index.php:581 msgid "New Remote Poller" msgstr "" #: ../install/index.php:575 msgid "" "Remote Pollers are used to access networks that are not readily accessible " "to the Primary site." msgstr "" #: ../install/index.php:585 msgid "" "The following information has been determined from Cacti's configuration " "file. If it is not correct, please edit \"include/config.php\" before " "continuing." msgstr "" #: ../install/index.php:589 msgid "Local Cacti database connection information" msgstr "" #: ../install/index.php:591 ../install/index.php:620 #, php-format msgid "Database: %s" msgstr "" #: ../install/index.php:592 ../install/index.php:621 #, php-format msgid "Database User: %s" msgstr "" #: ../install/index.php:593 ../install/index.php:622 #, php-format msgid "Database Hostname: %s" msgstr "" #: ../install/index.php:594 ../install/index.php:623 #, php-format msgid "Port: %s" msgstr "" #: ../install/index.php:595 ../install/index.php:624 #, php-format msgid "Server Operating System Type: %s" msgstr "" #: ../install/index.php:618 ../install/index.php:627 msgid "Remote Poller Cacti database connection information" msgstr "" #: ../install/index.php:630 msgid "" "Your config.php file must be writable by\n" "\t\t\t\t\t\t\t\t\t\tthe web server during install in order to configure the " "Remote poller. Once\n" "\t\t\t\t\t\t\t\t\t\tinstallation is complete, you must set this file to Read " "Only to prevent\n" "\t\t\t\t\t\t\t\t\t\tpossible security issues." msgstr "" #: ../install/index.php:638 msgid "" "Your Remote Cacti Poller information has not\n" "\t\t\t\t\t\t\t\t\t\tbeen included in your config.php file. Please review " "the config.php.dist, and\n" "\t\t\t\t\t\t\t\t\t\tset the variables: $rdatabase_default, " "$rdatabase_username, etc.\n" "\t\t\t\t\t\t\t\t\t\tThese variables must be set and point back to your " "Primary Cacti database server.\n" "\t\t\t\t\t\t\t\t\t\tCorrect this and try again." msgstr "" #: ../install/index.php:644 msgid "The variables that must be set include the following:" msgstr "" #: ../install/index.php:655 msgid "You must also set the $poller_id variable in the config.php." msgstr "" #: ../install/index.php:657 msgid "" "Once you have the variables set in the config.php file, you must also\n" "\t\t\t\t\t\t\t\t\t\tgrant the $rdatabase_username access to the Cacti " "database. Follow the same procedure you would with\n" "\t\t\t\t\t\t\t\t\t\tany other Cacti install. You may then press the 'Test " "Connection' button. If the test is\n" "\t\t\t\t\t\t\t\t\t\tsuccessful you will be able to proceed and complete the " "install." msgstr "" #: ../install/index.php:682 ../install/index.php:698 ../lib/html.php:342 msgid "Next" msgstr "Suivant" #: ../install/index.php:707 msgid "Upgrade" msgstr "" #: ../install/index.php:720 msgid "Remote Database: " msgstr "" #: ../install/index.php:731 msgid "Critical Binary Locations and Versions" msgstr "" #: ../install/index.php:733 msgid "Make sure all of these values are correct before continuing." msgstr "" #: ../install/index.php:791 msgid "Directory Permission Checks" msgstr "" #: ../install/index.php:793 msgid "" "Please ensure the directory permissions below are correct before " "proceeding. During the install, these directories need to be owned by the " "Web Server user. These permission changes are required to allow the " "Installer to install Device Template packages which include XML and script " "files that will be placed in these directories. If you choose not to " "install the packages, there is an 'install_package.php' cli script that can " "be used from the command line after the install is complete." msgstr "" #: ../install/index.php:796 msgid "" "After the install is complete, you can make some of these directories read " "only to increase security." msgstr "" #: ../install/index.php:798 msgid "" "These directories will be required to stay read writable after the install " "so that the Cacti remote synchronization process can update them as the Main " "Cacti Web Site changes" msgstr "" #: ../install/index.php:829 msgid "Required Writable at Install Time Only" msgstr "" #: ../install/index.php:832 ../install/index.php:842 ../install/index.php:852 #, fuzzy msgid "Writable" msgstr "Désactiver" #: ../install/index.php:834 ../install/index.php:844 ../install/index.php:854 msgid "Not Writable" msgstr "" #: ../install/index.php:839 ../install/index.php:849 msgid "Required Writable after Install Complete" msgstr "" #: ../install/index.php:862 #, php-format msgid "" "Make sure your webserver has read and write access to the entire folder " "structure.
    Example: chown -R apache.apache %s/resource/" msgstr "" #: ../install/index.php:863 msgid "" "For SELINUX-users make sure that you have the correct permissions or set " "'setenforce 0' temporarily." msgstr "" #: ../install/index.php:865 #, fuzzy msgid "Check Permissions" msgstr "Permissions du graphique" #: ../install/index.php:867 msgid "All folders are writable" msgstr "" #: ../install/index.php:873 msgid "" "If you are installing packages, once the packages are installed, you should " "change the scripts directory back to read only as this presents some " "exposure to the web site." msgstr "" #: ../install/index.php:873 ../install/index.php:879 ../install/index.php:915 msgid "NOTE:" msgstr "" #: ../install/index.php:879 msgid "" "For remote pollers, it is critical that\n" "\t\t\t\t\t\t\t\tthe paths that you will be updating frequently, including " "the plugins, scripts,\n" "\t\t\t\t\t\t\t\tand resources paths have read/write access as the data " "collector will have to\n" "\t\t\t\t\t\t\t\tupdate these paths from the main web server content." msgstr "" #: ../install/index.php:889 #, fuzzy msgid "Template Setup" msgstr "Nom du modèle" #: ../install/index.php:891 msgid "" "Please select the Device Templates that you wish to use after the Install. " "If you Operating System is Windows, you need to ensure that you select the " "'Windows Device' Template. If your Operating System is Linux/UNIX, make " "sure you select the 'Local Linux Machine' Device Template." msgstr "" #: ../install/index.php:893 msgid "" "Device Templates allow you to monitor and graph a vast assortment of data " "within Cacti. After you select the desired Device Templates, press 'Finish' " "and the installation will complete. Please be patient on this step, as the " "importation of the Device Templates can take a few minutes." msgstr "" #: ../install/index.php:899 ../plugins.php:378 msgid "Author" msgstr "" #: ../install/index.php:899 msgid "Homepage" msgstr "" #: ../install/index.php:917 msgid "" "Press 'Finish' to complete the installation process after selecting your " "Device Templates." msgstr "" #: ../install/index.php:921 #, fuzzy msgid "Upgrade Results" msgstr "Résultat de l'exportation" #: ../install/index.php:928 #, fuzzy msgid "[Fail]" msgstr "[echec]" #: ../install/index.php:929 #, fuzzy msgid "[Success]" msgstr "[succès]" #: ../install/index.php:930 msgid "[Skipped]" msgstr "" #: ../install/index.php:934 msgid "Database upgrade completed!" msgstr "" #: ../install/index.php:955 msgid "" "One or more of the SQL queries needed to upgraded your Cacti installation " "has failed. Please see below for more details. Your Cacti MySQL user must " "have SELECT, INSERT, UPDATE, DELETE, ALTER, CREATE, and DROP permissions. You should try executing the failed queries as \"root\" " "to ensure that you do not have a permissions problem." msgstr "" #: ../install/index.php:955 ../utilities.php:2010 ../utilities.php:2011 #: ../utilities.php:2014 ../utilities.php:2015 msgid "WARNING:" msgstr "" #: ../install/index.php:960 msgid "No database action needed." msgstr "" #: ../install/index.php:965 msgid "Important Upgrade Notice" msgstr "" #: ../install/index.php:966 msgid "" "Before you continue with the installation, you must update " "your /etc/crontab file to point to poller.php instead of " "cmd.php." msgstr "" #: ../install/index.php:967 msgid "" "See the sample crontab entry below with the change made in red. Your crontab " "line will look slightly different based upon your setup." msgstr "" #: ../install/index.php:969 msgid "Once you have made this change, please click Finish to continue." msgstr "" #: ../install/index.php:976 #, fuzzy msgctxt "Dialog: previous" msgid "Previous" msgstr "Précédent" #: ../install/index.php:977 msgctxt "Dialog: complete" msgid "Finish" msgstr "" #: ../install/index.php:977 #, fuzzy msgctxt "Dialog: go to the next page" msgid "Next" msgstr "Suivant" #: ../install/index.php:978 msgctxt "Dialog: test connection" msgid "Test Connection" msgstr "" #: ../install/index.php:978 msgid "Test remote database connection" msgstr "" #: ../lib/aggregate.php:42 msgid "Display Graphs from this Aggregate" msgstr "" #: ../lib/api_aggregate.php:1101 msgid "" "The Graphs chosen for the Aggregate Graph below represent Graphs from " "multiple Graph Templates. Aggregate does not support creating Aggregate " "Graphs from multiple Graph Templates." msgstr "" #: ../lib/api_aggregate.php:1102 ../lib/api_aggregate.php:1121 msgid "Press 'Return' to return and select different Graphs" msgstr "" #: ../lib/api_aggregate.php:1120 msgid "" "The Graphs chosen for the Aggregate Graph do not use Graph Templates. " "Aggregate does not support creating Aggregate Graphs from non-templated " "graphs." msgstr "" #: ../lib/api_aggregate.php:1210 ../lib/functions.php:1932 msgid "Graph Items" msgstr "Elements graphiques" #: ../lib/api_aggregate.php:1210 ../lib/functions.php:2064 msgid "Graph Template Items" msgstr "Elements de modèle de graphique" #: ../lib/api_aggregate.php:1214 ../lib/html.php:855 #, fuzzy msgid "Graph Item" msgstr "Elements graphiques" #: ../lib/api_aggregate.php:1217 ../lib/html.php:858 #, fuzzy msgid "CF Type" msgstr "Type de ping" #: ../lib/api_aggregate.php:1218 ../lib/html.php:860 #, fuzzy msgid "Item Color" msgstr "Couleur" #: ../lib/api_aggregate.php:1219 #, fuzzy msgid "Color Template" msgstr "Exporter le modèle" #: ../lib/api_aggregate.php:1220 msgid "Skip" msgstr "" #: ../lib/api_automation.php:124 #, fuzzy msgid "Matching Devices" msgstr "Équipements" #: ../lib/api_automation.php:139 ../lib/api_automation.php:994 #: ../lib/html_reports.php:268 ../lib/html_reports.php:1211 #: ../lib/html_reports.php:1481 ../lib/html_reports.php:1492 #: ../lib/rrd.php:2653 ../utilities.php:301 ../utilities.php:2338 #, fuzzy msgid "Type" msgstr "Type de ping" #: ../lib/api_automation.php:299 msgid "No Matching Devices" msgstr "" #: ../lib/api_automation.php:408 ../lib/api_automation.php:674 #: ../lib/api_automation.php:799 msgid "Matching Objects" msgstr "" #: ../lib/api_automation.php:562 #, fuzzy msgid "Graph ID" msgstr "Graphique" #: ../lib/api_automation.php:689 msgid "Objects" msgstr "" #: ../lib/api_automation.php:760 msgid "" "A blue font color indicates that the rule will be applied to the objects in " "question. Other objects will not be subject to the rule." msgstr "" #: ../lib/api_automation.php:760 #, php-format msgid "Matching Objects [ %s ]" msgstr "" #: ../lib/api_automation.php:810 #, fuzzy msgid "Device Status" msgstr "Équipements" #: ../lib/api_automation.php:832 msgid "There are no Objects that match this rule." msgstr "" #: ../lib/api_automation.php:876 #, fuzzy msgid "Error in data query" msgstr "Nom de cette requète." #: ../lib/api_automation.php:980 #, fuzzy msgid "Matching Items" msgstr "Elements graphiques" #: ../lib/api_automation.php:1142 #, fuzzy msgid "Resulting Branch" msgstr "Branche de destintation :" #: ../lib/api_automation.php:1181 #, fuzzy msgid "No Items Found" msgstr "Aucuns éléments" #: ../lib/api_automation.php:1209 ../lib/api_automation.php:1271 #, fuzzy msgid "Field" msgstr "Nom du champ" #: ../lib/api_automation.php:1211 ../lib/api_automation.php:1273 msgid "Pattern" msgstr "" #: ../lib/api_automation.php:1254 msgid "No Device Selection Criteria" msgstr "" #: ../lib/api_automation.php:1316 msgid "No Graph Creation Criteria" msgstr "" #: ../lib/api_automation.php:1335 #, fuzzy msgid "Propagate Change" msgstr "Propager les modifications" #: ../lib/api_automation.php:1336 #, fuzzy msgid "Search Pattern" msgstr "Filtre de recherche" #: ../lib/api_automation.php:1337 msgid "Replace Pattern" msgstr "" #: ../lib/api_automation.php:1381 msgid "No Tree Creation Criteria" msgstr "" #: ../lib/api_automation.php:1941 #, php-format msgid "Rule Item [edit rule item for %s: %s]" msgstr "" #: ../lib/api_automation.php:1943 #, php-format msgid "Rule Item [new rule item for %s: %s]" msgstr "" #: ../lib/api_automation.php:2634 #, fuzzy msgid "Added by Cacti Automation" msgstr "Retour à Cacti" #: ../lib/api_device.php:398 #, fuzzy msgid "Device is Disabled" msgstr "Désactivé" #: ../lib/api_device.php:399 msgid "Device Availability Check Bypassed" msgstr "" #: ../lib/api_device.php:406 msgid "SNMP Information" msgstr "Information SNMP" #: ../lib/api_device.php:410 #, fuzzy msgid "SNMP not in use" msgstr "Information SNMP" #: ../lib/api_device.php:418 ../lib/api_device.php:422 #: ../lib/api_device.php:434 #, fuzzy msgid "SNMP error" msgstr "Port SNMP" #: ../lib/api_device.php:441 msgid "System:" msgstr "" #: ../lib/api_device.php:447 msgid "Uptime:" msgstr "" #: ../lib/api_device.php:448 msgid "days" msgstr "" #: ../lib/api_device.php:448 msgid "hours" msgstr "" #: ../lib/api_device.php:448 msgid "minutes" msgstr "" #: ../lib/api_device.php:449 msgid "Hostname:" msgstr "Nom de machine :" #: ../lib/api_device.php:450 #, fuzzy msgid "Location:" msgstr "Actions" #: ../lib/api_device.php:451 msgid "Contact:" msgstr "" #: ../lib/api_device.php:480 ../lib/functions.php:3814 #: ../lib/functions.php:3816 ../lib/functions.php:3820 #, fuzzy msgid "Ping Results" msgstr "Résultat de l'exportation" #: ../lib/api_device.php:485 msgid "No Ping or SNMP Availability Check in Use" msgstr "" #: ../lib/auth.php:312 msgid "Web Basic" msgstr "" #: ../lib/clog_webapi.php:124 msgid "" "Click 'Continue' to purge the Cacti log file.


    Note: If logging is " "set to Cacti and Syslog, the log information will remain in Syslog." msgstr "" #: ../lib/clog_webapi.php:130 msgid "Purge cacti.log" msgstr "" #: ../lib/clog_webapi.php:156 ../utilities.php:975 msgid "Log Filters" msgstr "" #: ../lib/clog_webapi.php:183 #, php-format msgid "Log [Total Lines: %d %s - Additional Filter in Affect]" msgstr "" #: ../lib/clog_webapi.php:185 #, php-format msgid "Log [Total Lines: %d %s - No Other Filter in Affect]" msgstr "" #: ../lib/clog_webapi.php:195 ../utilities.php:1084 ../utilities.php:1403 #: ../utilities.php:1611 ../utilities.php:1691 ../utilities.php:2332 #: ../utilities.php:2542 msgid "Entries" msgstr "" #: ../lib/clog_webapi.php:311 ../utilities.php:984 msgid "Tail Lines" msgstr "" #: ../lib/clog_webapi.php:327 ../utilities.php:996 msgid "Message Type" msgstr "" #: ../lib/clog_webapi.php:332 ../utilities.php:1001 #, fuzzy msgid "Stats" msgstr "État" #: ../lib/clog_webapi.php:335 ../utilities.php:1004 #, fuzzy msgid "Debug" msgstr "Déboguage" #: ../lib/clog_webapi.php:336 ../utilities.php:1005 msgid "SQL Calls" msgstr "" #: ../lib/clog_webapi.php:367 ../utilities.php:1032 msgid "Display Order" msgstr "" #: ../lib/clog_webapi.php:371 ../utilities.php:1036 msgid "Newest First" msgstr "" #: ../lib/clog_webapi.php:372 ../utilities.php:1037 msgid "Oldest First" msgstr "" #: ../lib/functions.php:676 #, php-format msgid "Error %s is not readable" msgstr "" #: ../lib/functions.php:1818 ../lib/functions.php:1823 msgid "Logged in as" msgstr "Authentifié comme" #: ../lib/functions.php:1818 msgid "Login as Regular User" msgstr "" #: ../lib/functions.php:1818 msgid "guest" msgstr "" #: ../lib/functions.php:1825 msgid "Edit Profile" msgstr "" #: ../lib/functions.php:1827 msgid "Logout" msgstr "Se déconnecter" #: ../lib/functions.php:1844 ../lib/functions.php:1850 msgid "User Profile (Edit)" msgstr "" #: ../lib/functions.php:1862 ../lib/functions.php:1868 msgid "Tree Mode" msgstr "Mode arbre" #: ../lib/functions.php:1874 msgid "List Mode" msgstr "Mode liste" #: ../lib/functions.php:1896 ../lib/functions.php:1902 #: ../lib/functions.php:2756 ../lib/html.php:1299 ../lib/html.php:1371 #: ../links.php:344 ../user_admin.php:1653 ../user_group_admin.php:1374 msgid "Console" msgstr "Console" #: ../lib/functions.php:1914 ../lib/functions.php:1956 #: ../lib/functions.php:1974 ../lib/functions.php:2028 #: ../lib/functions.php:2040 ../lib/functions.php:2052 #: ../lib/functions.php:2088 ../lib/functions.php:2106 #: ../lib/functions.php:2124 ../lib/functions.php:2142 #: ../lib/functions.php:2160 ../lib/functions.php:2184 #: ../lib/functions.php:2220 ../lib/functions.php:2340 #: ../lib/functions.php:2364 ../lib/functions.php:2382 #: ../lib/functions.php:2400 ../lib/functions.php:2412 #: ../lib/functions.php:2514 ../lib/functions.php:2538 #: ../lib/functions.php:2556 ../lib/functions.php:2574 #: ../lib/functions.php:2592 ../lib/functions.php:2616 msgid "(Edit)" msgstr "(Editer)" #: ../lib/functions.php:1938 msgid "Create New Graphs" msgstr "Créer de nouveaux graphiques" #: ../lib/functions.php:1944 msgid "Create Graphs from Data Query" msgstr "Créer un graphique à partir d'une interrogation avancée" #: ../lib/functions.php:1962 ../lib/functions.php:1980 #: ../lib/functions.php:2076 ../lib/functions.php:2166 #: ../lib/functions.php:2190 ../lib/functions.php:2346 msgid "(Remove)" msgstr "(Supprimer)" #: ../lib/functions.php:1998 ../lib/functions.php:2004 #: ../lib/functions.php:2010 ../lib/functions.php:2016 #: ../lib/functions.php:2280 msgid "View Cacti Log" msgstr "" #: ../lib/functions.php:2022 msgid "Graph Trees" msgstr "Arbres des graphiques" #: ../lib/functions.php:2154 msgid "Round Robin Archives" msgstr "Archives Round Robin" #: ../lib/functions.php:2196 #, fuzzy msgid "Data Input Fields" msgstr "Champ d'entrée" #: ../lib/functions.php:2202 ../lib/functions.php:2232 #, fuzzy msgid "(Remove Item)" msgstr "(Supprimer)" #: ../lib/functions.php:2250 msgid "List unused Files" msgstr "" #: ../lib/functions.php:2262 ../lib/functions.php:2274 ../utilities.php:1780 msgid "View Poller Cache" msgstr "Voir le cache de l'agent de collecte" #: ../lib/functions.php:2268 ../utilities.php:1784 #, fuzzy msgid "View Data Query Cache" msgstr "Nom de l'interrogation avancée" #: ../lib/functions.php:2286 ../utilities.php:1168 msgid "Clear Cacti Log" msgstr "" #: ../lib/functions.php:2292 ../utilities.php:1773 msgid "View User Log" msgstr "" #: ../lib/functions.php:2298 msgid "Clear User Log" msgstr "" #: ../lib/functions.php:2304 ../utilities.php:1764 msgid "Technical Support" msgstr "" #: ../lib/functions.php:2310 ../utilities.php:1877 #, fuzzy msgid "Boost Status" msgstr "État" #: ../lib/functions.php:2316 #, fuzzy msgid "View SNMP Agent Cache" msgstr "Voir le cache SNMP" #: ../lib/functions.php:2322 msgid "View SNMP Agent Notification Log" msgstr "" #: ../lib/functions.php:2352 #, fuzzy msgid "VDEF Items" msgstr "Éléments CDEF" #: ../lib/functions.php:2358 msgid "View SNMP Notification Receivers" msgstr "" #: ../lib/functions.php:2370 msgid "Cacti Settings" msgstr "Paramètres de Cacti" #: ../lib/functions.php:2388 ../lib/functions.php:2418 #, fuzzy msgid "(Action)" msgstr "Actions" #: ../lib/functions.php:2436 msgid "Export Results" msgstr "Résultat de l'exportation" #: ../lib/functions.php:2448 ../lib/functions.php:2478 ../lib/html.php:1320 #: ../lib/html.php:1322 ../lib/html.php:1396 msgid "Reporting" msgstr "" #: ../lib/functions.php:2454 ../lib/functions.php:2484 msgid "Report Add" msgstr "" #: ../lib/functions.php:2460 ../lib/functions.php:2490 #, fuzzy msgid "Report Delete" msgstr "Exporter le modèle" #: ../lib/functions.php:2466 ../lib/functions.php:2496 msgid "Report Edit" msgstr "" #: ../lib/functions.php:2472 ../lib/functions.php:2502 msgid "Report Edit Item" msgstr "" #: ../lib/functions.php:2526 #, fuzzy msgid "Color Template Items" msgstr "Elements de modèle de graphique" #: ../lib/functions.php:2568 #, fuzzy msgid "Aggregate Items" msgstr "Elements de modèle de graphique" #: ../lib/functions.php:2604 #, fuzzy msgid "Graph Rule Items" msgstr "Elements graphiques" #: ../lib/functions.php:2628 #, fuzzy msgid "Tree Rule Items" msgstr "Type d'élément d'arbre" #: ../lib/functions.php:2713 msgid "Leaf" msgstr "" #: ../lib/functions.php:2727 #, fuzzy msgid "Non Query Based" msgstr "Nom de l'interrogation avancée" #: ../lib/functions.php:3435 msgid "" "Mailer Error: No TO address set!!
    If using the Test Mail " "link, please set the Alert e-mail setting." msgstr "" #: ../lib/functions.php:3747 #, fuzzy, php-format msgid "Authentication failed: %s" msgstr "Méthode d'authentification" #: ../lib/functions.php:3751 #, php-format msgid "HELO failed: %s" msgstr "" #: ../lib/functions.php:3754 #, fuzzy, php-format msgid "Connect failed: %s" msgstr "Méthode d'authentification" #: ../lib/functions.php:3757 msgid "SMTP error: " msgstr "" #: ../lib/functions.php:3770 msgid "" "This is a test message generated from Cacti. This message was sent to test " "the configuration of your Mail Settings." msgstr "" #: ../lib/functions.php:3771 msgid "Your email settings are currently set as follows" msgstr "" #: ../lib/functions.php:3772 #, fuzzy msgid "Method" msgstr "Méthode :" #: ../lib/functions.php:3774 msgid "Checking Configuration...
    " msgstr "" #: ../lib/functions.php:3781 msgid "PHP's Mailer Class" msgstr "" #: ../lib/functions.php:3787 #, fuzzy msgid "Method: SMTP" msgstr "Méthode :" #: ../lib/functions.php:3802 msgid "Not Shown for Security Reasons" msgstr "" #: ../lib/functions.php:3803 msgid "Security" msgstr "" #: ../lib/functions.php:3811 msgid "Ping Results:" msgstr "" #: ../lib/functions.php:3820 msgid "Bypassed" msgstr "" #: ../lib/functions.php:3828 msgid "Creating Message Text..." msgstr "" #: ../lib/functions.php:3831 msgid "Sending Message..." msgstr "" #: ../lib/functions.php:3835 msgid "Cacti Test Message" msgstr "" #: ../lib/functions.php:3837 #, fuzzy msgid "Success!" msgstr "Succès" #: ../lib/functions.php:3840 msgid "Message Not Sent due to ping failure." msgstr "" #: ../lib/html.php:233 msgid "Data Query:" msgstr "Iterrogation avancée :" #: ../lib/html.php:293 #, fuzzy msgid "CSV Export of Graph Data" msgstr "Convertir en modèle de graphique" #: ../lib/html.php:294 #, fuzzy msgid "Time Graph View" msgstr "Voir les graphiques" #: ../lib/html.php:296 msgid "Click to view just this Graph in Real-time" msgstr "" #: ../lib/html.php:299 msgid "Kill Spikes in Graphs" msgstr "" #: ../lib/html.php:336 msgid "Previous" msgstr "Précédent" #: ../lib/html.php:339 #, php-format msgid "%d to %d of %s [ %s ]" msgstr "" #: ../lib/html.php:348 #, fuzzy, php-format msgid "All %d %s" msgstr "Montrer les lignes" #: ../lib/html.php:354 #, fuzzy, php-format msgid "No %s Found" msgstr "Pas de graphique trouvé" #: ../lib/html.php:674 ../lib/html.php:761 #, fuzzy msgid "Select All Rows" msgstr "Sélectionner tout" #: ../lib/html.php:859 msgid "Alpha %" msgstr "" #: ../lib/html.php:900 #, fuzzy msgid "No Task" msgstr "Pas d'arbres" #: ../lib/html.php:1144 #, fuzzy msgid "Choose an action" msgstr "Fonction de consolidation" #: ../lib/html.php:1154 msgid "Execute Action" msgstr "" #: ../lib/html.php:1329 ../lib/html.php:1331 ../lib/html.php:1407 #, fuzzy msgid "Cacti Log" msgstr "Dernière connection" #: ../lib/html.php:1721 msgid "Nan's" msgstr "" #: ../lib/html.php:1725 msgid "Standard Deviations" msgstr "" #: ../lib/html.php:1727 #, php-format msgid "%s Standard Deviations" msgstr "" #: ../lib/html.php:1737 msgid "Variance Outliers" msgstr "" #: ../lib/html.php:1739 #, php-format msgid "%d Outliers" msgstr "" #: ../lib/html.php:1743 msgid "Kills Per RRA" msgstr "" #: ../lib/html.php:1745 #, php-format msgid "%d Spikes" msgstr "" #: ../lib/html.php:1752 msgid "Remove StdDev" msgstr "" #: ../lib/html.php:1753 msgid "Remove Variance" msgstr "" #: ../lib/html.php:1754 msgid "Gap Fill Range" msgstr "" #: ../lib/html.php:1755 msgid "Float Range" msgstr "" #: ../lib/html.php:1756 msgid "Dry Run StdDev" msgstr "" #: ../lib/html.php:1757 msgid "Dry Run Variance" msgstr "" #: ../lib/html.php:1758 msgid "Dry Run Gap Fill Range" msgstr "" #: ../lib/html.php:1759 msgid "Dry Run Float Range" msgstr "" #: ../lib/html_filter.php:82 msgid "Apply filter to table" msgstr "" #: ../lib/html_filter.php:87 msgid "Reset filter to default values" msgstr "" #: ../lib/html_form.php:509 msgid "File Found" msgstr "" #: ../lib/html_form.php:511 msgid "Path is a Directory and not a File" msgstr "" #: ../lib/html_form.php:515 msgid "File is Not Found" msgstr "" #: ../lib/html_form.php:518 msgid "Enter a valid file path" msgstr "" #: ../lib/html_form.php:554 msgid "Directory Found" msgstr "" #: ../lib/html_form.php:556 msgid "Path is a File and not a Directory" msgstr "" #: ../lib/html_form.php:560 msgid "Directory is Not found" msgstr "" #: ../lib/html_form.php:563 msgid "Enter a valid directory path" msgstr "" #: ../lib/html_form.php:1056 msgid "NO FONT VERIFICATION POSSIBLE" msgstr "" #: ../lib/html_form_template.php:562 ../lib/html_form_template.php:577 #, php-format msgid "Data Query Data Sources must be created through %s" msgstr "" #: ../lib/html_graph.php:197 ../lib/html_tree.php:649 msgid "" "Save the current Graphs, Columns, Thumbnail, Preset, and Timeshift " "preferences to your profile" msgstr "" #: ../lib/html_graph.php:226 ../lib/html_tree.php:672 msgid "Columns" msgstr "" #: ../lib/html_graph.php:230 ../lib/html_tree.php:676 #, php-format msgid "%d Column" msgstr "" #: ../lib/html_graph.php:239 ../lib/html_reports.php:125 #: ../lib/html_tree.php:685 #, fuzzy msgid "Thumbnails" msgstr "Vignettes des graphiques" #: ../lib/html_graph.php:261 ../lib/html_tree.php:707 msgid "Custom" msgstr "Personnalisé" #: ../lib/html_graph.php:282 ../lib/html_reports.php:1479 #: ../lib/html_reports.php:1490 ../lib/html_tree.php:728 msgid "From" msgstr "" #: ../lib/html_graph.php:288 ../lib/html_tree.php:734 msgid "Start Date Selector" msgstr "Sélecteur de date de démarrage" #: ../lib/html_graph.php:291 ../lib/html_reports.php:1480 #: ../lib/html_reports.php:1491 ../lib/html_tree.php:737 msgid "To" msgstr "" #: ../lib/html_graph.php:297 ../lib/html_tree.php:743 msgid "End Date Selector" msgstr "Sélecteur de date de fin" #: ../lib/html_graph.php:300 ../lib/html_tree.php:746 msgid "Shift Time Backward" msgstr "" #: ../lib/html_graph.php:303 ../lib/html_tree.php:749 msgid "Define Shifting Interval" msgstr "" #: ../lib/html_graph.php:316 ../lib/html_tree.php:762 msgid "Shift Time Forward" msgstr "" #: ../lib/html_graph.php:319 ../lib/html_tree.php:765 msgid "Refresh selected time span" msgstr "" #: ../lib/html_graph.php:322 ../lib/html_tree.php:768 msgid "Return to the default time span" msgstr "" #: ../lib/html_graph.php:339 msgid "Interval" msgstr "" #: ../lib/html_graph.php:351 ../lib/html_tree.php:797 msgid "Stop" msgstr "" #: ../lib/html_reports.php:35 ../lib/html_reports.php:1474 #, fuzzy msgid "Report Name" msgstr "Nom d'utilisateur" #: ../lib/html_reports.php:37 msgid "New Report" msgstr "" #: ../lib/html_reports.php:38 msgid "Give this Report a descriptive Name" msgstr "" #: ../lib/html_reports.php:43 #, fuzzy msgid "Enable Report" msgstr "Activer" #: ../lib/html_reports.php:46 msgid "Check this box to enable this Report." msgstr "" #: ../lib/html_reports.php:51 #, fuzzy msgid "Output Formatting" msgstr "Format de sortie" #: ../lib/html_reports.php:56 msgid "Use Custom Format HTML" msgstr "" #: ../lib/html_reports.php:59 #, fuzzy msgid "Check this box if you want to use custom html and CSS for the report." msgstr "" "Cocher cette option si vous voullez vous connecter en mode passif au serveur " "FTP." #: ../lib/html_reports.php:64 msgid "Format File to Use" msgstr "" #: ../lib/html_reports.php:67 msgid "" "Choose the custom html wrapper and CSS file to use. This file contains both " "html and CSS to wrap around your report.\n" "\t\tIf it contains more than simply CSS, you need to place a special " " tag inside of the file. This format tag will be replaced by the " "report content. These files are located in the 'formats' directory." msgstr "" #: ../lib/html_reports.php:73 #, fuzzy msgid "Default Text Font Size" msgstr "Taille de la fonte du titre" #: ../lib/html_reports.php:74 msgid "" "Defines the default font size for all text in the report including the " "Report Title." msgstr "" #: ../lib/html_reports.php:81 msgid "Default Object Alignment" msgstr "" #: ../lib/html_reports.php:82 msgid "Defines the default Alignment for Text and Graphs." msgstr "" #: ../lib/html_reports.php:89 #, fuzzy msgid "Graph Linked" msgstr "Champs du graphique" #: ../lib/html_reports.php:92 msgid "Should the Graphs be linked back to the Cacti site?" msgstr "" #: ../lib/html_reports.php:96 msgid "Graph Settings" msgstr "Paramètres du graphique" #: ../lib/html_reports.php:101 #, fuzzy msgid "Graph Columns" msgstr "Options des graphiques" #: ../lib/html_reports.php:105 msgid "The number of Graph columns." msgstr "" #: ../lib/html_reports.php:113 msgid "The Graph width in pixels." msgstr "" #: ../lib/html_reports.php:121 msgid "The Graph height in pixels." msgstr "" #: ../lib/html_reports.php:128 msgid "Should the Graphs be rendered as Thumbnails?" msgstr "" #: ../lib/html_reports.php:132 msgid "Email Frequency" msgstr "" #: ../lib/html_reports.php:137 msgid "Next Timestamp for Sending Mail Report" msgstr "" #: ../lib/html_reports.php:138 msgid "" "Start time for [first|next] mail to take place. All future mailing times " "will be based upon this start time. A good example would be 2:00am. The time " "must be in the future. If a fractional time is used, say 2:00am, it is " "assumed to be in the future." msgstr "" #: ../lib/html_reports.php:146 msgid "Report Interval" msgstr "" #: ../lib/html_reports.php:147 msgid "Defines a Report Frequency relative to the given Mailtime above." msgstr "" #: ../lib/html_reports.php:148 msgid "e.g. 'Week(s)' represents a weekly Reporting Interval." msgstr "" #: ../lib/html_reports.php:155 msgid "Interval Frequency" msgstr "" #: ../lib/html_reports.php:156 msgid "" "Based upon the Timespan of the Report Interval above, defines the Frequency " "within that Interval." msgstr "" #: ../lib/html_reports.php:157 msgid "" "e.g. If the Report Interval is 'Month(s)', then '2' indicates Every '2 " "Month(s) from the next Mailtime.' Lastly, if using the Month(s) Report " "Intervals, the 'Day of Week' and the 'Day of Month' are both calculated " "based upon the Mailtime you specify above." msgstr "" #: ../lib/html_reports.php:165 msgid "Email Sender/Receiver Details" msgstr "" #: ../lib/html_reports.php:170 msgid "Subject" msgstr "" #: ../lib/html_reports.php:172 #, fuzzy msgid "Cacti Report" msgstr "Paramètres de Cacti" #: ../lib/html_reports.php:173 msgid "" "This value will be used as the default Email subject. The report name will " "be used if left blank." msgstr "" #: ../lib/html_reports.php:181 msgid "This Name will be used as the default E-mail Sender" msgstr "" #: ../lib/html_reports.php:189 msgid "This Address will be used as the E-mail Senders address" msgstr "" #: ../lib/html_reports.php:194 msgid "To Email Address(es)" msgstr "" #: ../lib/html_reports.php:200 msgid "Please separate multiple addresses by comma (,)" msgstr "" #: ../lib/html_reports.php:205 msgid "BCC Address(es)" msgstr "" #: ../lib/html_reports.php:211 msgid "Blind carbon copy. Please separate multiple addresses by comma (,)" msgstr "" #: ../lib/html_reports.php:216 msgid "Image attach type" msgstr "" #: ../lib/html_reports.php:219 msgid "Select one of the given Types for the Image Attachments" msgstr "" #: ../lib/html_reports.php:271 msgid "Item Type to be added." msgstr "" #: ../lib/html_reports.php:277 #, fuzzy msgid "Graph Tree" msgstr "Arbres des graphiques" #: ../lib/html_reports.php:281 #, fuzzy msgid "Select a Tree to use." msgstr "Sélectionnez un type de graphique :" #: ../lib/html_reports.php:287 #, fuzzy msgid "Graph Tree Branch" msgstr "Arbres des graphiques" #: ../lib/html_reports.php:291 #, fuzzy msgid "Select a Tree Branch to use." msgstr "Sélectionnez un type de graphique :" #: ../lib/html_reports.php:293 msgid "Branch:" msgstr "" #: ../lib/html_reports.php:299 ../lib/html_tree.php:593 msgid "Device:" msgstr "Machine :" #: ../lib/html_reports.php:309 msgid "Cascade to Branches" msgstr "" #: ../lib/html_reports.php:312 msgid "Should all children branch Graphs be rendered?" msgstr "" #: ../lib/html_reports.php:316 #, fuzzy msgid "Graph Name Regular Expression" msgstr "Expression régulière" #: ../lib/html_reports.php:319 msgid "" "A Perl compatible regular expression (REGEXP) used to select graphs to " "include from the tree." msgstr "" #: ../lib/html_reports.php:329 #, fuzzy msgid "Select a Device Template to use." msgstr "Modèle de graphique sélectionné" #: ../lib/html_reports.php:338 msgid "Select a Device to specify a Graph" msgstr "" #: ../lib/html_reports.php:348 #, fuzzy msgid "Select a Graph Template for the host" msgstr "Modèle de graphique sélectionné" #: ../lib/html_reports.php:358 msgid "The Graph to use for this report item." msgstr "" #: ../lib/html_reports.php:368 msgid "Graph End Time is always set to Cacti's schedule." msgstr "" #: ../lib/html_reports.php:369 msgid "Graph Start Time equals Graph End Time minus given timespan" msgstr "" #: ../lib/html_reports.php:374 ../lib/html_reports.php:1214 msgid "Alignment" msgstr "" #: ../lib/html_reports.php:377 msgid "Alignment of the Item" msgstr "" #: ../lib/html_reports.php:382 msgid "Fixed Text" msgstr "" #: ../lib/html_reports.php:385 msgid "Enter descriptive Text" msgstr "" #: ../lib/html_reports.php:390 ../lib/html_reports.php:1215 #, fuzzy msgid "Font Size" msgstr "Taille de la fonte des axes" #: ../lib/html_reports.php:394 msgid "Font Size of the Item" msgstr "" #: ../lib/html_reports.php:457 msgid "Date/Time moved to the same time Tomorrow" msgstr "" #: ../lib/html_reports.php:640 #, fuzzy msgid "You must select at least one Report." msgstr "Vous devez sélectionner au moins un champ." #: ../lib/html_reports.php:648 msgid "Click 'Continue' to delete the following Report(s)." msgstr "" #: ../lib/html_reports.php:655 msgid "Click 'Continue' to take ownership of the following Report(s)." msgstr "" #: ../lib/html_reports.php:662 msgid "" "Click 'Continue' to duplicate the following Report(s). You may optionally " "change the title for the new Reports" msgstr "" #: ../lib/html_reports.php:664 #, fuzzy msgid "Name Format:" msgstr "Format du titre :" #: ../lib/html_reports.php:674 msgid "Click 'Continue' to enable the following Report(s)." msgstr "" #: ../lib/html_reports.php:676 msgid "" "Please be certain that those Report(s) have successfully been tested first!" msgstr "" #: ../lib/html_reports.php:682 msgid "Click 'Continue' to disable the following Reports." msgstr "" #: ../lib/html_reports.php:689 msgid "Click 'Continue' to send the following Report(s) now." msgstr "" #: ../lib/html_reports.php:735 #, php-format msgid "Unable to send Report '%d'. Please set destination e-mail addresses" msgstr "" #: ../lib/html_reports.php:740 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail subject" msgstr "" #: ../lib/html_reports.php:745 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail From Name" msgstr "" #: ../lib/html_reports.php:750 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail from address" msgstr "" #: ../lib/html_reports.php:806 #, fuzzy, php-format msgid "Report Item [edit Report: %s]" msgstr "Elements graphiques" #: ../lib/html_reports.php:808 #, fuzzy, php-format msgid "Report Item [new Report: %s]" msgstr "Aucuns éléments" #: ../lib/html_reports.php:1059 ../user_admin.php:1937 #, php-format msgid "[edit: %s]" msgstr "" #: ../lib/html_reports.php:1060 msgid "Events" msgstr "" #: ../lib/html_reports.php:1062 ../lib/import.php:1803 ../user_admin.php:1939 msgid "[new]" msgstr "[nouveau]" #: ../lib/html_reports.php:1094 msgid "Send Report" msgstr "" #: ../lib/html_reports.php:1172 msgid "Scheduled Events" msgstr "" #: ../lib/html_reports.php:1183 msgid "Report Preview" msgstr "" #: ../lib/html_reports.php:1212 msgid "Item Details" msgstr "" #: ../lib/html_reports.php:1213 msgid "Timespan" msgstr "" #: ../lib/html_reports.php:1252 msgid "(All Branches)" msgstr "" #: ../lib/html_reports.php:1254 #, fuzzy msgid "(Current Branch)" msgstr "Actuel (ms)" #: ../lib/html_reports.php:1297 #, fuzzy msgid "No Report Items" msgstr "Aucuns éléments" #: ../lib/html_reports.php:1371 #, fuzzy msgid "Administrator Level" msgstr "Administration des utilisateurs" #: ../lib/html_reports.php:1371 #, php-format msgid "Reports [%s]" msgstr "" #: ../lib/html_reports.php:1371 #, fuzzy msgid "User Level" msgstr "Nom d'utilisateur" #: ../lib/html_reports.php:1466 msgid "Reports" msgstr "" #: ../lib/html_reports.php:1475 ../tree.php:1562 msgid "Owner" msgstr "" #: ../lib/html_reports.php:1476 ../lib/html_reports.php:1487 msgid "Frequency" msgstr "" #: ../lib/html_reports.php:1477 ../lib/html_reports.php:1488 #, fuzzy msgid "Last Run" msgstr "La dernière heure" #: ../lib/html_reports.php:1478 ../lib/html_reports.php:1489 #, fuzzy msgid "Next Run" msgstr "Suivant" #: ../lib/html_reports.php:1486 #, fuzzy msgid "Report Title" msgstr "Titre du modèle" #: ../lib/html_reports.php:1517 msgid "Report Disabled - No Owner" msgstr "" #: ../lib/html_reports.php:1527 msgid "Multiple" msgstr "" #: ../lib/html_reports.php:1528 msgid "Invalid" msgstr "" #: ../lib/html_reports.php:1535 #, fuzzy msgid "No Reports Found" msgstr "Pas de graphique trouvé" #: ../lib/html_tree.php:580 ../lib/html_tree.php:583 ../lib/html_tree.php:586 msgid "Graph Template:" msgstr "Modèle de graphique :" #: ../lib/html_tree.php:591 ../lib/reports.php:886 #, fuzzy msgid "Tree:" msgstr "Pas d'arbres" #: ../lib/html_tree.php:592 ../lib/reports.php:891 msgid "Leaf:" msgstr "" #: ../lib/html_tree.php:596 msgid "Applied" msgstr "" #: ../lib/html_tree.php:596 #, fuzzy msgid "Filter" msgstr "Filtre de recherche" #: ../lib/html_tree.php:596 #, fuzzy msgid "Graph Filters" msgstr "Champs du graphique" #: ../lib/html_tree.php:642 #, fuzzy msgid "Set/Refresh Filter" msgstr "Filtre de recherche" #: ../lib/html_utility.php:419 ../lib/html_utility.php:635 #, php-format msgid "The search term \"%s\" is not valid. Error is %s" msgstr "" #: ../lib/html_utility.php:766 msgid "There was an internal error!" msgstr "" #: ../lib/html_utility.php:767 msgid "Backtrack limit was exhausted!" msgstr "" #: ../lib/html_utility.php:768 msgid "Recursion limit was exhausted!" msgstr "" #: ../lib/html_utility.php:769 msgid "Bad UTF-8 error!" msgstr "" #: ../lib/html_utility.php:770 msgid "Bad UTF-8 offset error!" msgstr "" #: ../lib/import.php:229 msgid "written" msgstr "" #: ../lib/import.php:231 msgid "could not open" msgstr "" #: ../lib/import.php:237 msgid "not exists" msgstr "" #: ../lib/import.php:240 ../lib/import.php:244 msgid "not writable" msgstr "" #: ../lib/import.php:246 #, fuzzy msgid "writable" msgstr "Désactiver" #: ../lib/import.php:1764 #, fuzzy msgid "Import Preview Results" msgstr "Résultat de l'importation" #: ../lib/import.php:1764 msgid "Import Results" msgstr "Résultat de l'importation" #: ../lib/import.php:1768 msgid "Cacti would make the following changes if the Package was imported:" msgstr "" #: ../lib/import.php:1770 #, fuzzy msgid "Cacti has imported the following items for the Package:" msgstr "Cacti a importé les éléments suivants :" #: ../lib/import.php:1773 msgid "Package Files" msgstr "" #: ../lib/import.php:1777 #, fuzzy msgid "[preview] " msgstr "Mode de prévisualisation" #: ../lib/import.php:1782 msgid "Cacti would make the following changes if the Template was imported:" msgstr "" #: ../lib/import.php:1784 #, fuzzy msgid "Cacti has imported the following items for the Template:" msgstr "Cacti a importé les éléments suivants :" #: ../lib/import.php:1793 msgid "[success]" msgstr "[succès]" #: ../lib/import.php:1795 msgid "[fail]" msgstr "[echec]" #: ../lib/import.php:1797 msgid "[preview]" msgstr "" #: ../lib/import.php:1801 #, fuzzy msgid "[updated]" msgstr "[mettre à jour]" #: ../lib/import.php:1805 msgid "[unchanged]" msgstr "" #: ../lib/import.php:1841 msgid "Found Dependency:" msgstr "Dépendances trouvées :" #: ../lib/import.php:1843 msgid "Unmet Dependency:" msgstr "Dépendances non satisfaites :" #: ../lib/ldap.php:197 ../lib/ldap.php:376 msgid "PHP LDAP not enabled" msgstr "" #: ../lib/ldap.php:204 ../lib/ldap.php:384 msgid "No username defined" msgstr "" #: ../lib/ldap.php:232 msgid "Protocol Error, Unable to set version" msgstr "" #: ../lib/ldap.php:243 ../lib/ldap.php:448 msgid "Unable to set referrals option" msgstr "" #: ../lib/ldap.php:255 ../lib/ldap.php:461 msgid "Protocol Error, unable to start TLS communications" msgstr "" #: ../lib/ldap.php:294 ../lib/ldap.php:313 #, fuzzy msgid "Authentication Success" msgstr "Méthode d'authentification" #: ../lib/ldap.php:297 msgid "Insufficient access" msgstr "" #: ../lib/ldap.php:304 msgid "Group DN could not be found to compare" msgstr "" #: ../lib/ldap.php:321 ../lib/ldap.php:505 #, fuzzy msgid "Protocol Error" msgstr "Version du protocole" #: ../lib/ldap.php:325 #, fuzzy msgid "Authentication Failure" msgstr "Méthode d'authentification" #: ../lib/ldap.php:329 ../lib/ldap.php:515 #, fuzzy msgid "Insufficient Access" msgstr "Accès console" #: ../lib/ldap.php:333 ../lib/ldap.php:520 msgid "Unable to Connect to Server" msgstr "" #: ../lib/ldap.php:337 ../lib/ldap.php:525 msgid "Connection Timeout" msgstr "" #: ../lib/ldap.php:341 ../lib/ldap.php:530 msgid "General Bind Error, LDAP result:" msgstr "" #: ../lib/ldap.php:347 msgid "Unable to Create LDAP Object" msgstr "" #: ../lib/ldap.php:400 ../lib/ldap.php:479 msgid "User found" msgstr "" #: ../lib/ldap.php:407 msgid "Specific DN and Password required" msgstr "" #: ../lib/ldap.php:436 msgid "Protocol Error, unable to set version" msgstr "" #: ../lib/ldap.php:485 msgid "More than one matching user found" msgstr "" #: ../lib/ldap.php:490 ../lib/ldap.php:496 msgid "Unable to find users DN" msgstr "" #: ../lib/ldap.php:510 msgid "Invalid Credentials" msgstr "" #: ../lib/ldap.php:537 msgid "Unable to create LDAP connection object" msgstr "" #: ../lib/ping.php:130 msgid "ICMP Ping timed out" msgstr "" #: ../lib/ping.php:199 ../lib/ping.php:217 #, php-format msgid "ICMP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:204 ../lib/ping.php:222 #, fuzzy msgid "ICMP ping Timed out" msgstr "Délai maxi" #: ../lib/ping.php:229 ../lib/ping.php:431 ../lib/ping.php:536 msgid "Destination address not specified" msgstr "" #: ../lib/ping.php:326 ../lib/ping.php:446 #, fuzzy msgid "default" msgstr "Défaut" #: ../lib/ping.php:356 msgid "PHP version does not support IPv6" msgstr "" #: ../lib/ping.php:378 #, php-format msgid "UDP ping error: %s" msgstr "" #: ../lib/ping.php:412 #, php-format msgid "UDP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:476 msgid "PHP binary does not support IPv6" msgstr "" #: ../lib/ping.php:500 #, php-format msgid "TCP ping: socket_select() failed, reason: %s" msgstr "" #: ../lib/ping.php:515 #, php-format msgid "TCP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:525 #, fuzzy msgid "TCP ping timed out" msgstr "Délai maxi" #: ../lib/ping.php:552 msgid "Ping not performed due to setting." msgstr "" #: ../lib/plugins.php:479 #, php-format msgid "Plugin %s is required for %s, and it is not installed." msgstr "" #: ../lib/plugins.php:486 msgid "Plugin cannot be installed." msgstr "" #: ../lib/plugins.php:763 ../lib/plugins.php:770 ../plugins.php:267 #, fuzzy msgid "Plugin Management" msgstr "Gestion utilisateurs" #: ../lib/reports.php:896 #, fuzzy msgid "Host:" msgstr "Machine" #: ../lib/reports.php:901 #, fuzzy msgid "Graph:" msgstr "Graphique" #: ../lib/reports.php:1002 #, fuzzy msgid "(No Graph Template)" msgstr "Pas de modèle de graphique" #: ../lib/reports.php:1421 msgid "Add to Report" msgstr "" #: ../lib/reports.php:1439 msgid "" "Choose the Report to associate these graphs with. The defaults for " "alignment will be used for each graph in the list below." msgstr "" #: ../lib/reports.php:1441 msgid "Report:" msgstr "" #: ../lib/reports.php:1448 #, fuzzy msgid "Graph Timespan:" msgstr "Modèle de graphique :" #: ../lib/reports.php:1451 #, fuzzy msgid "Graph Alignment:" msgstr "Gestion du graphique" #: ../lib/reports.php:1533 #, php-format msgid "Created Report Graph Item '%s'" msgstr "" #: ../lib/reports.php:1535 #, php-format msgid "Failed Adding Report Graph Item '%s' Already Exists" msgstr "" #: ../lib/reports.php:1538 #, php-format msgid "Skipped Report Graph Item '%s' Already Exists" msgstr "" #: ../lib/rrd.php:2414 #, php-format msgid "Required RRD step size is '%s'" msgstr "" #: ../lib/rrd.php:2452 #, php-format msgid "Type for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2457 #, php-format msgid "Heartbeat for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2465 #, php-format msgid "RRD minimum for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2489 #, php-format msgid "RRD maximum for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2499 #, php-format msgid "DS '%s' missing in RRDfile" msgstr "" #: ../lib/rrd.php:2508 #, php-format msgid "DS '%s' missing in Cacti definition" msgstr "" #: ../lib/rrd.php:2525 ../lib/rrd.php:2526 #, php-format msgid "Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: ../lib/rrd.php:2540 ../lib/rrd.php:2541 #, php-format msgid "File RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: ../lib/rrd.php:2572 #, php-format msgid "XFF for cacti RRA id '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2576 #, php-format msgid "Number of rows for Cacti RRA id '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2592 #, php-format msgid "RRA '%s' missing in RRDfile" msgstr "" #: ../lib/rrd.php:2601 #, php-format msgid "RRA '%s' missing in Cacti definition" msgstr "" #: ../lib/rrd.php:2620 #, fuzzy msgid "RRD File Information" msgstr "Information PHP" #: ../lib/rrd.php:2652 #, fuzzy msgid "Data Source Items" msgstr "Élement de source de donnée" #: ../lib/rrd.php:2654 msgid "Minimal Heartbeat" msgstr "" #: ../lib/rrd.php:2655 msgid "Min" msgstr "" #: ../lib/rrd.php:2656 msgid "Max" msgstr "" #: ../lib/rrd.php:2657 #, fuzzy msgid "Last DS" msgstr "Hier" #: ../lib/rrd.php:2659 #, fuzzy msgid "Unknown Sec" msgstr "Inconnu" #: ../lib/rrd.php:2687 #, fuzzy msgid "Round Robin Archive" msgstr "Archives Round Robin" #: ../lib/rrd.php:2690 msgid "Cur Row" msgstr "" #: ../lib/rrd.php:2691 msgid "PDP per Row" msgstr "" #: ../lib/rrd.php:2692 msgid "X Files Factor" msgstr "" #: ../lib/rrd.php:2693 msgid "CDP Prep Value (0)" msgstr "" #: ../lib/rrd.php:2694 msgid "CDP Unknown Data points (0)" msgstr "" #: ../lib/rrd.php:2771 #, php-format msgid "rename %s to %s" msgstr "" #: ../lib/rrd.php:2821 msgid "Error while parsing the XML of rrdtool dump" msgstr "" #: ../lib/rrd.php:2853 ../lib/rrd.php:2908 ../lib/rrd.php:2964 #, php-format msgid "ERROR while writing XML file: %s" msgstr "" #: ../lib/rrd.php:2862 #, php-format msgid "Added Data Source(s) to RRDfile: %s" msgstr "" #: ../lib/rrd.php:2864 ../lib/rrd.php:2919 #, php-format msgid "ERROR: RRDfile %s not writeable" msgstr "" #: ../lib/rrd.php:2891 ../lib/rrd.php:2947 msgid "Error while parsing the XML of RRDtool dump" msgstr "" #: ../lib/rrd.php:2917 #, php-format msgid "Deleted RRA(s) from RRDfile: %s" msgstr "" #: ../lib/rrd.php:2973 #, php-format msgid "Deleted rra(s) from rrd file: %s" msgstr "" #: ../lib/rrd.php:2975 #, php-format msgid "ERROR: RRD file %s not writeable" msgstr "" #: ../lib/rrd.php:3180 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) removed from RRD file\n" msgstr "" #: ../lib/rrd.php:3214 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) adding to RRD file\n" msgstr "" #: ../lib/utility.php:640 msgid "" "MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions " "to choose. Make sure you\n" "\t\t\t\trun the very latest release though which fixes a long standing low " "level networking\n" "\t\t\t\tissue that was casuing spine many issues with reliability." msgstr "" #: ../lib/utility.php:654 ../lib/utility.php:692 #, php-format msgid "" "It is recommended that you enable InnoDB in any %s version greater than 5.1." msgstr "" #: ../lib/utility.php:667 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8_general_ci collation type as some characters take more " "than a single byte. \n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes " "and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the " "internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting " "other languages." msgstr "" #: ../lib/utility.php:677 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8 character set as some characters take more than a single " "byte.\n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes " "and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the " "internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting " "other languages." msgstr "" #: ../lib/utility.php:705 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8mb4_unicode_ci collation type as some characters take more " "than a single byte." msgstr "" #: ../lib/utility.php:712 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8mb4 character set as some characters take more than a " "single byte." msgstr "" #: ../lib/utility.php:722 #, php-format msgid "" "Depending on the number of logins and use of spine data collector, \n" "\t\t\t\t%s will need many connections. The calculation for spine is:\n" "\t\t\t\ttotal_connections = total_processes * (total_threads + " "script_servers + 1), then you\n" "\t\t\t\tmust leave headroom for user connections, which will change " "depending on the number of\n" "\t\t\t\tconcurrent login accounts." msgstr "" #: ../lib/utility.php:731 #, php-format msgid "" "If using the Cacti Performance Booster and choosing a memory storage " "engine,\n" "\t\t\t\tyou have to be careful to flush your Performance Booster buffer " "before the system runs\n" "\t\t\t\tout of memory table space. This is done two ways, first reducing " "the size of your output\n" "\t\t\t\tcolumn to just the right size. This column is in the tables " "poller_output, \n" "\t\t\t\tand poller_output_boost. The second thing you can do is allocate " "more memory to memory\n" "\t\t\t\ttables. We have arbitrarily chosen a recommended value of 10% of " "system memory, but \n" "\t\t\t\tif you are using SSD disk drives, or have a smaller system, you may " "ignore this recommendation\n" "\t\t\t\tor choose a different storage engine. You may see the expected " "consumption of the \n" "\t\t\t\tPerformance Booster tables under Console -> System Utilities -> View " "Boost Status." msgstr "" #: ../lib/utility.php:744 msgid "" "Keeping the table cache larger means less file open/close operations when\n" "\t\t\t\tusing innodb_file_per_table." msgstr "" #: ../lib/utility.php:750 msgid "" "With Remote polling capabilities, large amounts of data \n" "\t\t\t\twill be synced from the main server to the remote pollers. \n" "\t\t\t\tTherefore, keep this value at or above 16M." msgstr "" #: ../lib/utility.php:757 msgid "" "When executing subqueries, having a larger temporary table size, \n" "\t\t\t\tkeep those temporary tables in memory." msgstr "" #: ../lib/utility.php:763 msgid "" "When performing joins, if they are below this size, they will \n" "\t\t\t\tbe kept in memory and never written to a temporary file." msgstr "" #: ../lib/utility.php:769 #, php-format msgid "" "When using InnoDB storage it is important to keep your table spaces\n" "\t\t\t\tseparate. This makes managing the tables simpler for long time " "users of %s.\n" "\t\t\t\tIf you are running with this currently off, you can migrate to the " "per file storage\n" "\t\t\t\tby enabling the feature, and then running an alter statement on all " "InnoDB tables." msgstr "" #: ../lib/utility.php:777 #, php-format msgid "" "InnoDB will hold as much tables and indexes in system memory as is " "possible.\n" "\t\t\t\tTherefore, you should make the innodb_buffer_pool large enough to " "hold as much\n" "\t\t\t\tof the tables and index in memory. Checking the size of the /var/" "lib/mysql/cacti\n" "\t\t\t\tdirectory will help in determining this value. We are recommending " "25% of your systems\n" "\t\t\t\ttotal memory, but your requirements will vary depending on your " "systems size." msgstr "" #: ../lib/utility.php:786 #, php-format msgid "" "With modern SSD type storage, this operation actually degrades the disk\n" "\t\t\t\tmore rapidly and adds a 50% overhead on all write operations." msgstr "" #: ../lib/utility.php:792 msgid "" "This is where metadata is stored. If you had a lot of tables, it would be " "useful to increase this." msgstr "" #: ../lib/utility.php:797 msgid "" "Rogue queries should not for the database to go offline to others. Kill " "these\n" "\t\t\t\tqueries before they kill your system." msgstr "" #: ../lib/utility.php:807 #, php-format msgid "" "Setting this value to 2 means that you will flush all transactions every\n" "\t\t\t\tsecond rather than at commit. This allows %s to perform writing " "less often." msgstr "" #: ../lib/utility.php:813 msgid "" "With modern SSD type storage, having multiple io threads is advantageous " "for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:822 #, php-format msgid "" "As of %s %s, the you can control how often %s flushes transactions to disk. " "The default is 1 second, but in high I/O systems setting to a value greater " "than 1 can allow disk I/O to be more sequential" msgstr "" #: ../lib/utility.php:827 msgid "" "With modern SSD type storage, having multiple read io threads is " "advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:833 msgid "" "With modern SSD type storage, having multiple write io threads is " "advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:839 #, php-format msgid "" "%s will divide the innodb_buffer_pool into memory regions to improve " "performance.\n" "\t\t\t\t\tThe max value is 64. When your innodb_buffer_pool is less than " "1GB, you should use the pool size\n" "\t\t\t\t\tdivided by 128MB. Continue to use this equation upto the max of " "64." msgstr "" #: ../lib/utility.php:846 #, php-format msgid "%s Tuning" msgstr "" #: ../lib/utility.php:846 #, fuzzy msgid "Documentation" msgstr "Méthode d'authentification par LDAP" #: ../lib/utility.php:846 msgid "Note: Many changes below require a database restart" msgstr "" #: ../lib/vdef.php:75 #, fuzzy msgid "A useful name for this VDEF." msgstr "Un nom pratique de ce CDEF." #: ../links.php:191 msgid "Click 'Continue' to Enable the following Page(s)." msgstr "" #: ../links.php:196 #, fuzzy msgid "Enable Page(s)" msgstr "Activer" #: ../links.php:200 msgid "Click 'Continue' to Disable the following Page(s)." msgstr "" #: ../links.php:205 #, fuzzy msgid "Disable Page(s)" msgstr "Désactiver" #: ../links.php:209 msgid "Click 'Continue' to Delete the following Page(s)." msgstr "" #: ../links.php:214 #, fuzzy msgid "Delete Page(s)" msgstr "Supprimer" #: ../links.php:217 #, fuzzy msgid "You must select at least one page." msgstr "Vous devez sélectionner au moins un champ." #: ../links.php:315 msgid "Links" msgstr "" #: ../links.php:328 msgid "Apply Filter" msgstr "" #: ../links.php:331 msgid "Reset filters" msgstr "" #: ../links.php:345 ../links.php:508 ../user_admin.php:1654 #: ../user_group_admin.php:1375 msgid "Top Tab" msgstr "" #: ../links.php:346 ../user_admin.php:1655 ../user_group_admin.php:1376 #, fuzzy msgid "Bottom Console" msgstr "Console" #: ../links.php:347 ../user_admin.php:1656 ../user_group_admin.php:1377 #, fuzzy msgid "Top Console" msgstr "Console" #: ../links.php:378 msgid "Page" msgstr "" #: ../links.php:380 ../links.php:500 ../links.php:505 msgid "Style" msgstr "" #: ../links.php:392 #, fuzzy msgid "Edit Page" msgstr "Editer" #: ../links.php:395 #, fuzzy msgid "View Page" msgstr "Voir le cache SNMP" #: ../links.php:419 #, fuzzy msgid "Sort for Ordering" msgstr "Tri numérique" #: ../links.php:428 #, fuzzy msgid "No Pages Found" msgstr "Pas de graphique trouvé" #: ../links.php:509 #, fuzzy msgid "Console Menu" msgstr "Console" #: ../links.php:510 msgid "Bottom of Console Page" msgstr "" #: ../links.php:511 msgid "Top of Console Page" msgstr "" #: ../links.php:513 msgid "Where should this page appear?" msgstr "" #: ../links.php:517 #, fuzzy msgid "Console Menu Section" msgstr "Fonction de consolidation" #: ../links.php:520 msgid "" "Under which Console heading should this item appear? (All External Link " "menus will appear between Configuration and Utilities)" msgstr "" #: ../links.php:524 msgid "New Console Section" msgstr "" #: ../links.php:527 msgid "If you don't like any of the choices above, type a new title in here." msgstr "" #: ../links.php:531 #, fuzzy msgid "Tab/Menu Name" msgstr "Nom du modèle" #: ../links.php:534 msgid "The text that will appear in the tab or menu." msgstr "" #: ../links.php:538 msgid "Content File/URL" msgstr "" #: ../links.php:542 msgid "Web URL Below" msgstr "" #: ../links.php:543 msgid "" "The file that contains the content for this page. This file needs to be in " "the Cacti 'include/content/' directory." msgstr "" #: ../links.php:547 msgid "Web URL Location" msgstr "" #: ../links.php:549 msgid "" "The valid URL to use for this external link. Must include the type, for " "example http://www.cacti.net. Note that many websites do not allow them to " "be embedded in an iframe from a foreign site, and therefore External Linking " "may not work." msgstr "" #: ../links.php:567 #, php-format msgid "External Links [edit: %s]" msgstr "" #: ../links.php:569 msgid "External Links [new]" msgstr "" #: ../logout.php:70 ../logout.php:119 msgid "Automatic Logout" msgstr "" #: ../logout.php:72 ../logout.php:121 msgid "You have been logged out of Cacti due to a session timeout." msgstr "" #: ../logout.php:73 ../logout.php:122 #, php-format msgid "Please close your browser or %sLogin Again%s" msgstr "" #: ../managers.php:40 ../managers.php:226 #, fuzzy msgid "Notifications" msgstr "Actions" #: ../managers.php:41 ../managers.php:227 msgid "Logs" msgstr "" #: ../managers.php:141 ../utilities.php:1821 msgid "SNMP Notification Receivers" msgstr "" #: ../managers.php:156 ../managers.php:231 ../managers.php:539 #: ../managers.php:793 msgid "Receivers" msgstr "" #: ../managers.php:223 msgid "Id" msgstr "" #: ../managers.php:257 msgid "No SNMP Notification Receivers" msgstr "" #: ../managers.php:288 #, php-format msgid "SNMP Notification Receiver [edit: %s]" msgstr "" #: ../managers.php:290 msgid "SNMP Notification Receiver [new]" msgstr "" #: ../managers.php:518 ../managers.php:607 ../utilities.php:2263 #: ../utilities.php:2338 msgid "MIB" msgstr "" #: ../managers.php:607 msgid "Kind" msgstr "" #: ../managers.php:607 ../utilities.php:2338 msgid "Max-Access" msgstr "" #: ../managers.php:607 msgid "Monitored" msgstr "" #: ../managers.php:607 ../utilities.php:1409 ../utilities.php:2338 msgid "OID" msgstr "" #: ../managers.php:634 msgid "No SNMP Notifications" msgstr "" #: ../managers.php:730 ../utilities.php:2516 #, fuzzy msgid "Severity" msgstr "Jamais" #: ../managers.php:749 ../utilities.php:2559 msgid "Purge Notification Log" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Notification" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Time" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Varbinds" msgstr "" #: ../managers.php:803 msgid "Severity Level" msgstr "" #: ../managers.php:821 ../utilities.php:2635 msgid "No SNMP Notification Log Entries" msgstr "" #: ../managers.php:998 msgid "Click 'Continue' to delete the following Notification Receiver" msgid_plural "Click 'Continue' to delete following Notification Receiver" msgstr[0] "" msgstr[1] "" #: ../managers.php:1000 msgid "Click 'Continue' to enable the following Notification Receiver" msgid_plural "Click 'Continue' to enable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: ../managers.php:1002 msgid "Click 'Continue' to disable the following Notification Receiver" msgid_plural "Click 'Continue' to disable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: ../managers.php:1059 msgid "" "Click 'Continue' to forward the following Notification Objects to this " "Notification Receiver." msgstr "" #: ../managers.php:1060 msgid "" "Click 'Continue' to disable forwarding the following Notification Objects to " "this Notification Receiver." msgstr "" #: ../managers.php:1069 msgid "Disable Notification Objects" msgstr "" #: ../managers.php:1071 #, fuzzy msgid "You must select at least one notification object." msgstr "Vous devez sélectionner au moins un champ." #: ../plugins.php:28 msgid "Install" msgstr "" #: ../plugins.php:31 msgid "Uninstall" msgstr "" #: ../plugins.php:36 msgid "Not Compatible" msgstr "" #: ../plugins.php:37 ../plugins.php:291 ../utilities.php:417 msgid "Not Installed" msgstr "" #: ../plugins.php:39 msgid "Awaiting Configuration" msgstr "" #: ../plugins.php:40 msgid "Awaiting Upgrade" msgstr "" #: ../plugins.php:167 #, fuzzy msgid "Not Stated" msgstr "Non sélectionné" #: ../plugins.php:289 msgid "Active/Installed" msgstr "" #: ../plugins.php:290 msgid "Configuration Issues" msgstr "" #: ../plugins.php:295 ../plugins.php:365 msgid "Plugins" msgstr "" #: ../plugins.php:374 msgid "" "Actions available include 'Install', 'Activate', 'Disable', 'Enable', " "'Uninstall'." msgstr "" #: ../plugins.php:375 #, fuzzy msgid "Plugin Name" msgstr "Nom complet" #: ../plugins.php:375 msgid "" "The name for this Plugin. The name is controlled by the directory it " "resides in." msgstr "" #: ../plugins.php:376 msgid "A description that the Plugins author has given to the Plugin." msgstr "" #: ../plugins.php:376 #, fuzzy msgid "Plugin Description" msgstr "Description" #: ../plugins.php:377 msgid "The status of this Plugin." msgstr "" #: ../plugins.php:378 msgid "The author of this Plugin." msgstr "" #: ../plugins.php:379 msgid "The version of this Plugin." msgstr "" #: ../plugins.php:380 msgid "Load Order" msgstr "" #: ../plugins.php:380 msgid "" "The load order of the Plugin. You can change the load order by first " "sorting by it, then moving a Plugin either up or down." msgstr "" #: ../plugins.php:406 #, fuzzy msgid "No Plugins Found" msgstr "Pas de graphique trouvé" #: ../plugins.php:424 msgid "ERROR: Directory Missing" msgstr "" #: ../plugins.php:434 msgid "Order Before Previous Plugin" msgstr "" #: ../plugins.php:439 msgid "Order After Next Plugin" msgstr "" #: ../plugins.php:463 msgid "Install Plugin" msgstr "" #: ../plugins.php:467 ../plugins.php:471 ../plugins.php:474 msgid "Uninstall Plugin" msgstr "" #: ../plugins.php:468 #, fuzzy msgid "Disable Plugin" msgstr "Désactiver" #: ../plugins.php:475 #, fuzzy msgid "Enable Plugin" msgstr "Activer" #: ../plugins.php:478 msgid "Plugin is not compatible" msgstr "" #: ../pollers.php:32 msgid "Full Sync" msgstr "" #: ../pollers.php:36 msgid "New/Idle" msgstr "" #: ../pollers.php:39 #, fuzzy msgid "Unknown/Down" msgstr "Inconnu" #: ../pollers.php:48 msgid "Data Collector Information" msgstr "" #: ../pollers.php:53 #, fuzzy msgid "The primary name for this Data Collector." msgstr "Choisissez un nom pour cette source de donnée." #: ../pollers.php:56 #, fuzzy msgid "New Data Collector" msgstr "Sélecteur de date de fin" #: ../pollers.php:61 #, fuzzy msgid "Web Site Hostname" msgstr "Nom de machine" #: ../pollers.php:62 msgid "" "The hostname for Data Collector. It may have to be a Fully Qualified Domain " "name for the remote Pollers to contact it for activities such as re-" "indexing, Real-time graphing, etc." msgstr "" #: ../pollers.php:71 msgid "Notes for this Data Collectors Database." msgstr "" #: ../pollers.php:78 msgid "Remote Database Connection" msgstr "" #: ../pollers.php:83 #, fuzzy msgid "The hostname for the remote database server." msgstr "Choisissez un nom pour cette source de donnée." #: ../pollers.php:91 #, fuzzy msgid "Remote Database Name" msgstr "Nom du modèle" #: ../pollers.php:92 #, fuzzy msgid "The name of the remote database." msgstr "Le nom de ce modèle de donnée." #: ../pollers.php:100 msgid "Remote Database User" msgstr "" #: ../pollers.php:101 msgid "The user name to use to connect to the remote database." msgstr "" #: ../pollers.php:109 msgid "Remote Database Password" msgstr "" #: ../pollers.php:110 msgid "The user password to use to connect to the remote database." msgstr "" #: ../pollers.php:118 msgid "Remote Database Port" msgstr "" #: ../pollers.php:119 msgid "The TCP port to use to connect to the remote database." msgstr "" #: ../pollers.php:127 msgid "Remote Database SSL" msgstr "" #: ../pollers.php:128 msgid "If the remote database uses SSL to connect, check the checkbox below." msgstr "" #: ../pollers.php:283 msgid "" "Click 'Continue' to delete the following Data Collector. Note, all devices " "will be disassociated from this Data Collector and mapped back to the Main " "Cacti Data Collector." msgid_plural "" "Click 'Continue' to delete all following Data Collectors. Note, all devices " "will be disassociated from these Data Collectors and mapped back to the Main " "Cacti Data Collector." msgstr[0] "" msgstr[1] "" #: ../pollers.php:288 #, fuzzy msgid "Delete Data Collector" msgid_plural "Delete Data Collectors" msgstr[0] "Sélecteur de date de démarrage" msgstr[1] "Sélecteur de date de démarrage" #: ../pollers.php:292 msgid "Click 'Continue' to disable the following Data Collector." msgid_plural "Click 'Continue' to disable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: ../pollers.php:297 msgid "Disable Data Collector" msgid_plural "Disable Data Collectors" msgstr[0] "" msgstr[1] "" #: ../pollers.php:301 msgid "Click 'Continue' to enable the following Data Collector." msgid_plural "Click 'Continue' to enable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: ../pollers.php:306 ../pollers.php:315 #, fuzzy msgid "Enable Data Collector" msgid_plural "Enable Data Collectors" msgstr[0] "Sélecteur de date de fin" msgstr[1] "Sélecteur de date de fin" #: ../pollers.php:310 msgid "" "Click 'Continue' to Synchronize the Remote Data Collector for Offline " "Operation." msgid_plural "" "Click 'Continue' to Synchronize the Remote Data Collectors for Offline " "Operation." msgstr[0] "" msgstr[1] "" #: ../pollers.php:318 ../sites.php:283 #, fuzzy msgid "You must select at least one Site." msgstr "Vous devez sélectionner au moins un champ." #: ../pollers.php:351 ../sites.php:316 #, php-format msgid "Site [edit: %s]" msgstr "" #: ../pollers.php:353 ../sites.php:318 #, fuzzy msgid "Site [new]" msgstr "[nouveau]" #: ../pollers.php:379 msgid "" "Remote Data Collectors must be able to communicate to the Main Data " "Collector, and vice versa. Use this button to verify that the Main Data " "Collector can communicate to this Remote Data Collector." msgstr "" #: ../pollers.php:387 msgid "Test Connection" msgstr "" #: ../pollers.php:387 #, fuzzy msgid "Test Database Connection" msgstr "Sélecteur de date de démarrage" #: ../pollers.php:611 #, fuzzy msgid "Collector Name" msgstr "Nom d'utilisateur" #: ../pollers.php:611 #, fuzzy msgid "The Name of this Data Collector." msgstr "Nom de cette requète." #: ../pollers.php:612 msgid "The unique id associated with this Data Collector." msgstr "" #: ../pollers.php:613 msgid "The Hostname where the Data Collector is running." msgstr "" #: ../pollers.php:614 msgid "The Status of this Data Collector." msgstr "" #: ../pollers.php:615 #, fuzzy msgid "Polling Time" msgstr "Type de ping" #: ../pollers.php:615 msgid "The last data collection time for this Data Collector." msgstr "" #: ../pollers.php:616 msgid "The number of Devices associated with this Data Collector." msgstr "" #: ../pollers.php:617 #, fuzzy msgid "SNMP Gets" msgstr "Port SNMP" #: ../pollers.php:617 msgid "The number of SNMP gets associated with this Collector." msgstr "" #: ../pollers.php:618 #, fuzzy msgid "Scripts" msgstr "Script" #: ../pollers.php:618 msgid "The number of script calls associated with this Data Collector." msgstr "" #: ../pollers.php:619 #, fuzzy msgid "Servers" msgstr "Serveur" #: ../pollers.php:619 msgid "The number of script server calls associated with this Data Collector." msgstr "" #: ../pollers.php:620 #, fuzzy msgid "Last Finished" msgstr "Dernière connection" #: ../pollers.php:620 #, fuzzy msgid "The last time this Data Collector completed." msgstr "Le nom de ce modèle de donnée." #: ../pollers.php:621 #, fuzzy msgid "Last Update" msgstr "Hier" #: ../pollers.php:621 msgid "The last time this Data Collector checked in with the main Cacti site." msgstr "" #: ../pollers.php:656 msgid "No Data Collectors Found" msgstr "" #: ../rrdcleaner.php:30 ../tree.php:31 #, fuzzy msgctxt "dropdown action" msgid "Delete" msgstr "Supprimer" #: ../rrdcleaner.php:31 msgctxt "dropdown action" msgid "Archive" msgstr "" #: ../rrdcleaner.php:347 #, fuzzy msgid "RRD File Name" msgstr "Nom du champ" #: ../rrdcleaner.php:348 #, fuzzy msgid "DS Name" msgstr "Nom" #: ../rrdcleaner.php:349 msgid "DS ID" msgstr "" #: ../rrdcleaner.php:350 #, fuzzy msgid "Template ID" msgstr "Nom du modèle" #: ../rrdcleaner.php:352 #, fuzzy msgid "Last Modified" msgstr "Mode liste" #: ../rrdcleaner.php:353 #, fuzzy msgid "Size [KB]" msgstr "Taille" #: ../rrdcleaner.php:364 ../rrdcleaner.php:365 #, fuzzy msgid "Deleted" msgstr "Supprimer" #: ../rrdcleaner.php:373 msgid "No unused RRD Files" msgstr "" #: ../rrdcleaner.php:395 msgid "Total Size [MB]:" msgstr "" #: ../rrdcleaner.php:397 #, fuzzy msgid "Last Scan:" msgstr "Hier" #: ../rrdcleaner.php:481 msgid "Time Since Update" msgstr "" #: ../rrdcleaner.php:497 msgid "RRDfiles" msgstr "" #: ../rrdcleaner.php:512 ../user_domains.php:642 ../user_group_admin.php:1827 #: ../user_group_admin.php:2182 ../user_group_admin.php:2288 #: ../user_group_admin.php:2375 ../user_group_admin.php:2462 #: ../user_group_admin.php:2549 #, fuzzy msgctxt "filter: use" msgid "Go" msgstr "Go" #: ../rrdcleaner.php:515 ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 ../user_group_admin.php:2465 #, fuzzy msgctxt "filter: reset" msgid "Clear" msgstr "Effacer" #: ../rrdcleaner.php:518 msgid "Rescan" msgstr "" #: ../rrdcleaner.php:521 #, fuzzy msgid "Delete All" msgstr "Sélectionner tout" #: ../rrdcleaner.php:521 msgid "Delete All Unknown RRDfiles" msgstr "" #: ../rrdcleaner.php:522 msgid "Archive All" msgstr "" #: ../rrdcleaner.php:522 msgid "Archive All Unknown RRDfiles" msgstr "" #: ../settings.php:138 #, fuzzy, php-format msgid "Cacti Settings (%s)" msgstr "Paramètres de Cacti" #: ../settings.php:191 #, fuzzy msgid "Select Plugin(s)" msgstr "Sélectionner tout" #: ../settings.php:193 #, fuzzy msgid "Plugins Selected" msgstr "Non sélectionné" #: ../settings.php:208 #, fuzzy msgid "Select File(s)" msgstr "Sélectionner tout" #: ../settings.php:210 #, fuzzy msgid "Files Selected" msgstr "Non sélectionné" #: ../settings.php:225 #, fuzzy msgid "Select Template(s)" msgstr "Modèle de graphique sélectionné" #: ../settings.php:230 #, fuzzy msgid "All Templates Selected" msgstr "Titre du modèle" #: ../settings.php:281 msgid "Poller Interval must be less than Cron Interval" msgstr "" #: ../settings.php:303 msgid "Test Email Results" msgstr "" #: ../sites.php:35 #, fuzzy msgid "Site Information" msgstr "Information SNMP" #: ../sites.php:41 #, fuzzy msgid "The primary name for the Site." msgstr "Choisissez un nom pour cette source de donnée." #: ../sites.php:44 msgid "New Site" msgstr "" #: ../sites.php:49 msgid "Address1" msgstr "" #: ../sites.php:50 msgid "The primary address for the Site." msgstr "" #: ../sites.php:52 msgid "Enter the Site Address" msgstr "" #: ../sites.php:58 msgid "Address2" msgstr "" #: ../sites.php:59 msgid "Additional address information for the Site." msgstr "" #: ../sites.php:61 msgid "Additional Site Address information" msgstr "" #: ../sites.php:67 ../sites.php:484 msgid "City" msgstr "" #: ../sites.php:68 msgid "The city or locality for the Site." msgstr "" #: ../sites.php:70 msgid "Enter the City or Locality" msgstr "" #: ../sites.php:76 ../sites.php:485 #, fuzzy msgid "State" msgstr "État" #: ../sites.php:77 msgid "The state for the Site." msgstr "" #: ../sites.php:79 msgid "Enter the state" msgstr "" #: ../sites.php:85 msgid "Postal/Zip Code" msgstr "" #: ../sites.php:86 msgid "The postal or zip code for the Site." msgstr "" #: ../sites.php:88 msgid "Enter the postal code" msgstr "" #: ../sites.php:94 ../sites.php:486 msgid "Country" msgstr "" #: ../sites.php:95 msgid "The country for the Site." msgstr "" #: ../sites.php:97 msgid "Enter the country" msgstr "" #: ../sites.php:103 msgid "TimeZone" msgstr "" #: ../sites.php:104 msgid "The TimeZone for the Site." msgstr "" #: ../sites.php:110 msgid "Latitude" msgstr "" #: ../sites.php:111 msgid "The Latitude for this Site." msgstr "" #: ../sites.php:113 msgid "example 38.889488" msgstr "" #: ../sites.php:119 msgid "Longitude" msgstr "" #: ../sites.php:120 msgid "The Longitude for this Site." msgstr "" #: ../sites.php:122 msgid "example -77.0374678" msgstr "" #: ../sites.php:128 msgid "Site Notes" msgstr "" #: ../sites.php:131 msgid "Additional area use for random notes related to this Site." msgstr "" #: ../sites.php:134 msgid "Enter some useful information about the Site." msgstr "" #: ../sites.php:139 #, fuzzy msgid "Alternate Name" msgstr "Nom du modèle" #: ../sites.php:140 msgid "Used for cases where a Site has an alternate named used to describe it" msgstr "" #: ../sites.php:142 #, fuzzy msgid "If the Site is known by another name enter it here." msgstr "Si cet élément est une entête, donnez un titre ici." #: ../sites.php:275 msgid "" "Click 'Continue' to delete the following Site. Note, all devices will be " "disassociated from this site." msgid_plural "" "Click 'Continue' to delete all following Sites. Note, all devices will be " "disassociated from this site." msgstr[0] "" msgstr[1] "" #: ../sites.php:280 #, fuzzy msgid "Delete Site" msgid_plural "Delete Sites" msgstr[0] "Supprimer" msgstr[1] "Supprimer" #: ../sites.php:481 #, fuzzy msgid "Site Name" msgstr "Nom du champ" #: ../sites.php:481 #, fuzzy msgid "The name of this Site." msgstr "Nom de cette requète." #: ../sites.php:482 msgid "The unique id associated with this Site." msgstr "" #: ../sites.php:483 msgid "The number of Devices associated with this Site." msgstr "" #: ../sites.php:484 msgid "The City associated with this Site." msgstr "" #: ../sites.php:485 msgid "The State associated with this Site." msgstr "" #: ../sites.php:486 msgid "The Country associated with this Site." msgstr "" #: ../sites.php:504 #, fuzzy msgid "No Sites Found" msgstr "Pas de graphique trouvé" #: ../spikekill.php:37 #, php-format msgid "FATAL: Spike Kill method '%s' is Invalid\n" msgstr "" #: ../spikekill.php:81 msgid "FATAL: Spike Kill Not Allowed\n" msgstr "" #: ../templates_export.php:68 msgid "WARNING: Export Errors Encountered. Refresh Browser Window for Details!" msgstr "" #: ../templates_export.php:101 msgid "What would you like to export?" msgstr "Que voulez vous exporter ?" #: ../templates_export.php:130 #, php-format msgid "Available Templates [%s]" msgstr "" #: ../templates_export.php:134 #, php-format msgid "%s to Export" msgstr "" #: ../templates_export.php:135 msgid "Choose the exact item to export to XML." msgstr "Choisissez l'élément exact à exporter en XML." #: ../templates_export.php:144 ../templates_export.php:148 msgid "Include Dependencies" msgstr "Inclure les dépendances" #: ../templates_export.php:145 msgid "" "Some templates rely on other items in Cacti to function properly. It is " "highly recommended that you select this box or the resulting import may fail." msgstr "" #: ../templates_export.php:154 msgid "Output Format" msgstr "Format de sortie" #: ../templates_export.php:155 msgid "Choose the format to output the resulting XML file in." msgstr "Choisissez le format de sortie pour le fichier XML." #: ../templates_export.php:159 msgid "Output to the Browser (within Cacti)" msgstr "Sortie vers le navigateur (via Cacti)" #: ../templates_export.php:160 msgid "Output to the Browser (raw XML)" msgstr "Sortie vers le navigateur (XML brut)" #: ../templates_export.php:161 msgid "Save File Locally" msgstr "Sauvegarder le fichier localement" #: ../tree.php:32 msgctxt "dropdown action" msgid "Publish" msgstr "" #: ../tree.php:33 msgctxt "dropdown action" msgid "Un Publish" msgstr "" #: ../tree.php:258 msgctxt "ordering of tree items" msgid "inherit" msgstr "" #: ../tree.php:261 msgctxt "ordering of tree items" msgid "manual" msgstr "" #: ../tree.php:264 msgctxt "ordering of tree items" msgid "alpha" msgstr "" #: ../tree.php:267 msgctxt "ordering of tree items" msgid "natural" msgstr "" #: ../tree.php:270 msgctxt "ordering of tree items" msgid "numeric" msgstr "" #: ../tree.php:485 #, fuzzy msgid "Click 'Continue' to delete the following Tree." msgid_plural "Click 'Continue' to delete following Trees." msgstr[0] "Etes vous de vouloir supprimer les équipements suivants ?" msgstr[1] "Etes vous de vouloir supprimer les équipements suivants ?" #: ../tree.php:490 #, fuzzy msgid "Delete Tree" msgid_plural "Delete Trees" msgstr[0] "Supprimer" msgstr[1] "Supprimer" #: ../tree.php:494 msgid "Click 'Continue' to publish the following Tree." msgid_plural "Click 'Continue' to publish following Trees." msgstr[0] "" msgstr[1] "" #: ../tree.php:499 msgid "Publish Tree" msgid_plural "Publish Trees" msgstr[0] "" msgstr[1] "" #: ../tree.php:503 msgid "Click 'Continue' to un-publish the following Tree." msgid_plural "Click 'Continue' to un-publish following Trees." msgstr[0] "" msgstr[1] "" #: ../tree.php:508 msgid "Un-publish Tree" msgid_plural "Un-publish Trees" msgstr[0] "" msgstr[1] "" #: ../tree.php:511 #, fuzzy msgid "You must select at least one Tree." msgstr "Vous devez sélectionner au moins un champ." #: ../tree.php:554 #, php-format msgid "Trees [edit: %s]" msgstr "" #: ../tree.php:566 #, fuzzy msgid "Trees [new]" msgstr "Vue en arbre" #: ../tree.php:592 #, fuzzy msgid "Edit Tree" msgstr "Editer" #: ../tree.php:592 msgid "" "To Edit this tree, you must first lock it by pressing the Edit Tree button." msgstr "" #: ../tree.php:595 msgid "Add Root Branch" msgstr "" #: ../tree.php:595 msgid "Finish Editing Tree" msgstr "" #: ../tree.php:595 #, php-format msgid "This tree has been locked for Editing on %1$s by %2$s." msgstr "" #: ../tree.php:601 msgid "To edit the tree, you must first unlock it and then lock it as yourself" msgstr "" #: ../tree.php:617 #, fuzzy msgid "Tree Items" msgstr "Type d'élément d'arbre" #: ../tree.php:625 #, fuzzy msgid "Available Devices" msgstr "Disponibilité" #: ../tree.php:660 #, fuzzy msgid "Available Graphs" msgstr "Voir les graphiques" #: ../tree.php:1039 #, fuzzy msgid "Rename" msgstr "Nom de machine" #: ../tree.php:1066 #, fuzzy msgid "Branch Sorting" msgstr "Paramètres du graphique" #: ../tree.php:1073 msgid "Inherit" msgstr "" #: ../tree.php:1101 #, fuzzy msgid "Alphabetic" msgstr "Tri alphabétique" #: ../tree.php:1115 #, fuzzy msgid "Natural" msgstr "Tri numérique" #: ../tree.php:1152 ../tree.php:1226 ../tree.php:1313 #, fuzzy msgid "Cut" msgstr "Personnalisé" #: ../tree.php:1167 ../tree.php:1241 ../tree.php:1328 ../user_admin.php:29 #: ../user_group_admin.php:31 msgid "Copy" msgstr "Copier" #: ../tree.php:1185 msgid "Paste" msgstr "" #: ../tree.php:1558 msgid "The name by which this Tree will be referred to as." msgstr "" #: ../tree.php:1558 ../user_admin.php:1521 ../user_group_admin.php:1243 #, fuzzy msgid "Tree Name" msgstr "Nom du modèle" #: ../tree.php:1559 msgid "" "The internal database ID for this Tree. Useful when performing automation " "or debugging." msgstr "" #: ../tree.php:1560 msgid "Published" msgstr "" #: ../tree.php:1560 msgid "Unpublished Trees cannot be viewed from the Graph tab" msgstr "" #: ../tree.php:1561 msgid "A Tree must be locked in order to be edited." msgstr "" #: ../tree.php:1562 msgid "The original author of this Tree." msgstr "" #: ../tree.php:1563 msgid "" "To change the order of the trees, first sort by this column, press the up or " "down arrows once they appear." msgstr "" #: ../tree.php:1564 #, fuzzy msgid "Last Edited" msgstr "La semaine dernière" #: ../tree.php:1564 msgid "The date that this Tree was last edited." msgstr "" #: ../tree.php:1565 #, fuzzy msgid "Edited By" msgstr "Editer" #: ../tree.php:1565 msgid "The last user to have modified this Tree." msgstr "" #: ../tree.php:1566 msgid "Branches" msgstr "" #: ../tree.php:1566 msgid "The total number of Branches in this Tree." msgstr "" #: ../tree.php:1567 msgid "The total number of individual Devices in this Tree." msgstr "" #: ../tree.php:1568 msgid "The total number of individual Graphs in this Tree." msgstr "" #: ../tree.php:1608 #, fuzzy msgid "No Trees Found" msgstr "Pas de graphique trouvé" #: ../user_admin.php:32 msgid "Batch Copy" msgstr "" #: ../user_admin.php:345 msgid "Click 'Continue' to delete the selected User(s)." msgstr "" #: ../user_admin.php:350 #, fuzzy msgid "Delete User(s)" msgstr "Supprimer" #: ../user_admin.php:360 msgid "Click 'Continue' to copy the selected User to a new User below." msgstr "" #: ../user_admin.php:365 #, fuzzy msgid "Template Username:" msgstr "Nom du modèle" #: ../user_admin.php:370 #, fuzzy msgid "Username:" msgstr "Nom d'utilisateur" #: ../user_admin.php:377 #, fuzzy msgid "Full Name:" msgstr "Nom complet" #: ../user_admin.php:384 msgid "Realm:" msgstr "" #: ../user_admin.php:390 #, fuzzy msgid "Copy User" msgstr "Pas d'utilisateur" #: ../user_admin.php:396 msgid "Click 'Continue' to enable the selected User(s)." msgstr "" #: ../user_admin.php:401 #, fuzzy msgid "Enable User(s)" msgstr "Activer" #: ../user_admin.php:407 msgid "Click 'Continue' to disable the selected User(s)." msgstr "" #: ../user_admin.php:412 #, fuzzy msgid "Disable User(s)" msgstr "Désactiver" #: ../user_admin.php:420 msgid "" "Click 'Continue' to overwrite the User(s) settings with the selected " "template User settings and permissions. The original users Full Name, " "Password, Realm and Enable status will be retained, all other fields will be " "overwritten from Template User." msgstr "" #: ../user_admin.php:423 #, fuzzy msgid "Template User:" msgstr "Nom du modèle" #: ../user_admin.php:429 msgid "User(s) to update:" msgstr "" #: ../user_admin.php:434 msgid "Reset User(s) Settings" msgstr "" #: ../user_admin.php:437 #, fuzzy msgid "You must select at least one user." msgstr "Vous devez sélectionner au moins un champ." #: ../user_admin.php:812 ../user_group_admin.php:728 msgid "Allow" msgstr "" #: ../user_admin.php:813 ../user_group_admin.php:729 msgid "Deny" msgstr "" #: ../user_admin.php:838 msgid "" "Note: System Graph Policy is 'Permissive' meaning the User must have " "access to at least one of Graph, Device, or Graph Template to gain access to " "the Graph" msgstr "" #: ../user_admin.php:840 msgid "" "Note: System Graph Policy is 'Restrictive' meaning the User must have " "access to the Graph, Device, and Graph Template to gain access to the Graph" msgstr "" #: ../user_admin.php:844 ../user_group_admin.php:745 #, fuzzy msgid "Default Graph Policy" msgstr "Arbre de graphique par défaut" #: ../user_admin.php:849 #, fuzzy msgid "Default Graph Policy for this User" msgstr "Arbre de graphique par défaut" #: ../user_admin.php:1006 ../user_admin.php:1242 ../user_admin.php:1384 #: ../user_admin.php:1521 ../user_group_admin.php:821 #: ../user_group_admin.php:966 ../user_group_admin.php:1109 #: ../user_group_admin.php:1243 msgid "Effective Policy" msgstr "" #: ../user_admin.php:1020 ../user_group_admin.php:847 #, fuzzy msgid "No Matching Graphs Found" msgstr "Pas de graphique trouvé" #: ../user_admin.php:1035 ../user_admin.php:1041 ../user_admin.php:1287 #: ../user_admin.php:1293 ../user_admin.php:1426 ../user_admin.php:1432 #: ../user_admin.php:1562 ../user_admin.php:1568 ../user_group_admin.php:862 #: ../user_group_admin.php:868 ../user_group_admin.php:1010 #: ../user_group_admin.php:1016 ../user_group_admin.php:1151 #: ../user_group_admin.php:1157 ../user_group_admin.php:1283 #: ../user_group_admin.php:1289 #, fuzzy msgid "Revoke Access" msgstr "Accès console" #: ../user_admin.php:1036 ../user_admin.php:1040 ../user_admin.php:1288 #: ../user_admin.php:1292 ../user_admin.php:1427 ../user_admin.php:1431 #: ../user_admin.php:1563 ../user_admin.php:1567 ../user_group_admin.php:62 #: ../user_group_admin.php:863 ../user_group_admin.php:867 #: ../user_group_admin.php:1011 ../user_group_admin.php:1015 #: ../user_group_admin.php:1152 ../user_group_admin.php:1156 #: ../user_group_admin.php:1284 ../user_group_admin.php:1288 #, fuzzy msgid "Grant Access" msgstr "Accès console" #: ../user_admin.php:1093 ../user_admin.php:2646 ../user_group_admin.php:1812 #: ../user_group_admin.php:1872 msgid "Groups" msgstr "" #: ../user_admin.php:1101 ../user_admin.php:1110 msgid "Member" msgstr "" #: ../user_admin.php:1101 #, fuzzy msgid "Policies (Graph/Device/Template)" msgstr "Modèles de graphique associés" #: ../user_admin.php:1110 ../user_group_admin.php:688 msgid "Non Member" msgstr "" #: ../user_admin.php:1112 ../user_admin.php:2299 ../user_admin.php:2300 #: ../user_admin.php:2301 ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 ../user_group_admin.php:1906 msgid "ALLOW" msgstr "" #: ../user_admin.php:1112 ../user_admin.php:2299 ../user_admin.php:2300 #: ../user_admin.php:2301 ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 ../user_group_admin.php:1906 msgid "DENY" msgstr "" #: ../user_admin.php:1118 msgid "No Matching User Groups Found" msgstr "" #: ../user_admin.php:1132 msgid "Assign Membership" msgstr "" #: ../user_admin.php:1133 msgid "Remove Membership" msgstr "" #: ../user_admin.php:1149 ../user_group_admin.php:886 #, fuzzy msgid "Default Device Policy" msgstr "Mode de vue par défaut" #: ../user_admin.php:1154 msgid "Default Device Policy for this User" msgstr "" #: ../user_admin.php:1253 ../user_admin.php:1261 ../user_admin.php:1395 #: ../user_admin.php:1403 ../user_admin.php:1532 ../user_admin.php:1540 #: ../user_group_admin.php:832 ../user_group_admin.php:840 #: ../user_group_admin.php:977 ../user_group_admin.php:985 #: ../user_group_admin.php:1120 ../user_group_admin.php:1128 #: ../user_group_admin.php:1254 ../user_group_admin.php:1262 #, fuzzy msgid "Access Granted" msgstr "Accès refusé" #: ../user_admin.php:1255 ../user_admin.php:1259 ../user_admin.php:1397 #: ../user_admin.php:1401 ../user_admin.php:1534 ../user_admin.php:1538 #: ../user_group_admin.php:834 ../user_group_admin.php:838 #: ../user_group_admin.php:979 ../user_group_admin.php:983 #: ../user_group_admin.php:1122 ../user_group_admin.php:1126 #: ../user_group_admin.php:1256 ../user_group_admin.php:1260 #, fuzzy msgid "Access Restricted" msgstr "Accès refusé" #: ../user_admin.php:1272 ../user_group_admin.php:996 #, fuzzy msgid "No Matching Devices Found" msgstr "Pas de graphique trouvé" #: ../user_admin.php:1310 ../user_group_admin.php:1034 #, fuzzy msgid "Default Graph Template Policy" msgstr "Arbre de graphique par défaut" #: ../user_admin.php:1315 #, fuzzy msgid "Default Graph Template Policy for this User" msgstr "Supprimer l'association de modèled de graphique" #: ../user_admin.php:1384 ../user_group_admin.php:1109 #, fuzzy msgid "Total Graphs" msgstr "Pas de graphiques" #: ../user_admin.php:1411 ../user_group_admin.php:1136 #, fuzzy msgid "No Matching Graph Templates Found" msgstr "Pas de modèle de graphique" #: ../user_admin.php:1449 ../user_group_admin.php:1175 #, fuzzy msgid "Default Tree Policy" msgstr "Arbre de graphique par défaut" #: ../user_admin.php:1454 msgid "Default Tree Policy for this User" msgstr "" #: ../user_admin.php:1547 ../user_group_admin.php:1269 #, fuzzy msgid "No Matching Trees Found" msgstr "Pas de graphique trouvé" #: ../user_admin.php:1592 ../user_group_admin.php:1315 #, fuzzy msgid "User Permissions" msgstr "Permissions du graphique" #: ../user_admin.php:1659 ../user_group_admin.php:1380 #, fuzzy msgid "External Link Permissions" msgstr "Permissions du graphique" #: ../user_admin.php:1716 ../user_group_admin.php:1437 #, fuzzy msgid "Plugin Permissions" msgstr "Permissions du graphique" #: ../user_admin.php:1772 msgid "Legacy 1.x Plugins" msgstr "" #: ../user_admin.php:1807 ../user_group_admin.php:1528 #, fuzzy, php-format msgid "User Settings %s" msgstr "Paramètres du graphique" #: ../user_admin.php:1922 ../user_group_admin.php:1644 #, fuzzy msgid "Permissions" msgstr "Permissions du graphique" #: ../user_admin.php:1923 msgid "Group Membership" msgstr "" #: ../user_admin.php:1924 ../user_group_admin.php:1645 #, fuzzy msgid "Graph Perms" msgstr "Elements graphiques" #: ../user_admin.php:1925 ../user_group_admin.php:1646 #, fuzzy msgid "Device Perms" msgstr "Équipements" #: ../user_admin.php:1926 ../user_group_admin.php:1647 #, fuzzy msgid "Template Perms" msgstr "Nom du modèle" #: ../user_admin.php:1927 ../user_group_admin.php:1648 #, fuzzy msgid "Tree Perms" msgstr "Mode arbre" #: ../user_admin.php:1969 #, fuzzy, php-format msgid "User Management %s" msgstr "Gestion utilisateurs" #: ../user_admin.php:2001 #, fuzzy msgid "Password Too Short" msgstr "Mot de passe" #: ../user_admin.php:2006 msgid "Password Validation Passes" msgstr "" #: ../user_admin.php:2020 #, fuzzy msgid "Passwords do Not Match" msgstr "Les mots de passe ne correspondent pas, veuillez resaisir." #: ../user_admin.php:2023 #, fuzzy msgid "Passwords Match" msgstr "Mot de passe" #: ../user_admin.php:2267 ../user_group_admin.php:1884 #, fuzzy msgid "Graph Policy" msgstr "Titre du graphique" #: ../user_admin.php:2268 ../user_group_admin.php:1885 #, fuzzy msgid "Device Policy" msgstr "Équipement" #: ../user_admin.php:2269 ../user_group_admin.php:1886 #, fuzzy msgid "Template Policy" msgstr "Titre du modèle" #: ../user_admin.php:2270 msgid "Last Login" msgstr "Dernière connection" #: ../user_admin.php:2291 #, fuzzy msgid "Unavailable" msgstr "Disponibilité" #: ../user_admin.php:2307 #, fuzzy msgid "No Users Found" msgstr "Pas de graphique trouvé" #: ../user_admin.php:2522 ../user_group_admin.php:2124 #, fuzzy, php-format msgid "Graph Permissions %s" msgstr "Permissions du graphique" #: ../user_admin.php:2577 ../user_admin.php:2664 msgid "Show All" msgstr "" #: ../user_admin.php:2631 #, php-format msgid "Group Membership %s" msgstr "" #: ../user_admin.php:2719 ../user_group_admin.php:2234 #, fuzzy, php-format msgid "Devices Permission %s" msgstr "Permissions du graphique" #: ../user_admin.php:2770 ../user_admin.php:2857 ../user_admin.php:2944 #: ../user_group_admin.php:2179 ../user_group_admin.php:2285 #: ../user_group_admin.php:2372 ../user_group_admin.php:2459 msgid "Show Exceptions" msgstr "" #: ../user_admin.php:2824 ../user_group_admin.php:2339 #, fuzzy, php-format msgid "Template Permission %s" msgstr "Permissions du graphique" #: ../user_admin.php:2911 ../user_admin.php:2998 ../user_group_admin.php:2426 #, fuzzy, php-format msgid "Tree Permission %s" msgstr "Permissions du graphique" #: ../user_admin.php:3031 msgid "Show Exceptions<" msgstr "" #: ../user_domains.php:222 msgid "Click 'Continue' to delete the following User Domain." msgid_plural "Click 'Continue' to delete following User Domains." msgstr[0] "" msgstr[1] "" #: ../user_domains.php:227 msgid "Delete User Domain" msgid_plural "Delete User Domains" msgstr[0] "" msgstr[1] "" #: ../user_domains.php:231 msgid "Click 'Continue' to disable the following User Domain." msgid_plural "Click 'Continue' to disable following User Domains." msgstr[0] "" msgstr[1] "" #: ../user_domains.php:236 msgid "Disable User Domain" msgid_plural "Disable User Domains" msgstr[0] "" msgstr[1] "" #: ../user_domains.php:240 msgid "Click 'Continue' to enable the following User Domain." msgstr "" #: ../user_domains.php:245 msgid "Enabled User Domain" msgid_plural "Enable User Domains" msgstr[0] "" msgstr[1] "" #: ../user_domains.php:249 msgid "" "Click 'Continue' to make the following the following User Domain the default " "one." msgstr "" #: ../user_domains.php:254 msgid "Make Selected Domain Default" msgstr "" #: ../user_domains.php:257 #, fuzzy msgid "You must select at least one User Domain." msgstr "Vous devez sélectionner au moins un champ." #: ../user_domains.php:308 #, php-format msgid "User Domain [edit: %s]" msgstr "" #: ../user_domains.php:310 msgid "User Domain [new]" msgstr "" #: ../user_domains.php:318 msgid "" "Enter a meaningful name for this domain. This will be the name that appears " "in the Login Realm during login." msgstr "" #: ../user_domains.php:324 #, fuzzy msgid "Domains Type" msgstr "Type de ping" #: ../user_domains.php:325 #, fuzzy msgid "Choose what type of domain this is." msgstr "Choisissez le type d'élément a placer sur l'arbre" #: ../user_domains.php:332 #, fuzzy msgid "" "The name of the user that Cacti will use as a template for new user accounts." msgstr "" "Le nom d'utilisateur que Cacti utilisera par défaut comme modèle pour la " "création de nouveaux utilisateur authentifié par HTTP ou par LDAP : \"guest" "\" par défaut." #: ../user_domains.php:342 msgid "" "If this checkbox is checked, users will be able to login using this domain." msgstr "" #: ../user_domains.php:359 msgid "The dns hostname or ip address of the server." msgstr "" #: ../user_domains.php:367 msgid "TCP/UDP port for Non SSL communications." msgstr "" #: ../user_domains.php:406 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "

    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the users " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the users Distinguished Name (DN)." msgstr "" #: ../user_domains.php:455 msgid "" "Search base for searching the LDAP directory, such as \"dc=win2kdomain," "dc=local\" or \"ou=people,dc=domain,dc=local\"." msgstr "" #: ../user_domains.php:462 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: \"(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))\" or for OpenLDAP: " "\"(&(objectClass=account)(uid=<username>))\". \"<username>\" " "is replaced with the username that was supplied at the login prompt." msgstr "" #: ../user_domains.php:501 #, fuzzy msgid "Domain Properties" msgstr "Configurations" #: ../user_domains.php:627 msgid "Domains" msgstr "" #: ../user_domains.php:714 msgid "Domain Name" msgstr "" #: ../user_domains.php:715 #, fuzzy msgid "Domain Type" msgstr "Type de ping" #: ../user_domains.php:717 msgid "Effective User" msgstr "" #: ../user_domains.php:730 #, fuzzy msgid "None Selected" msgstr "Non sélectionné" #: ../user_domains.php:736 #, fuzzy msgid "No User Domains Found" msgstr "Pas de graphique trouvé" #: ../user_group_admin.php:39 ../user_group_admin.php:58 msgid "Defer to the Users Setting" msgstr "" #: ../user_group_admin.php:43 msgid "Show the Page that the User pointed their browser to" msgstr "" #: ../user_group_admin.php:47 #, fuzzy msgid "Show the Console" msgstr "Montrer l'écran console par défaut." #: ../user_group_admin.php:51 #, fuzzy msgid "Show the default Graph Screen" msgstr "Montrer l'écran des graphiques par défaut." #: ../user_group_admin.php:66 msgid "Restrict Access" msgstr "" #: ../user_group_admin.php:73 ../user_group_admin.php:1881 #, fuzzy msgid "Group Name" msgstr "Nom complet" #: ../user_group_admin.php:74 #, fuzzy msgid "The name of this Group." msgstr "Le nom donné à ce modèle de graphique." #: ../user_group_admin.php:80 #, fuzzy msgid "Group Description" msgstr "Description" #: ../user_group_admin.php:81 msgid "" "A more descriptive name for this group, that can include spaces or special " "characters." msgstr "" #: ../user_group_admin.php:93 #, fuzzy msgid "General Group Options" msgstr "Options des graphiques" #: ../user_group_admin.php:95 msgid "Set any user account-specific options here." msgstr "Configurer les options spécifiques aux comptes d'utilisateur ici." #: ../user_group_admin.php:99 #, fuzzy msgid "Allow Users of this Group to keep custom User Settings" msgstr "" "Permettre à cet utilisateur de sauvegarder ses paramètres personnalisés pour " "les graphiques" #: ../user_group_admin.php:106 #, fuzzy msgid "Tree Rights" msgstr "Vue en arbre" #: ../user_group_admin.php:108 msgid "Should Users of this Group have access to the Tree?" msgstr "" #: ../user_group_admin.php:114 #, fuzzy msgid "Graph List Rights" msgstr "Paramètres du graphique" #: ../user_group_admin.php:116 msgid "Should Users of this Group have access to the Graph List?" msgstr "" #: ../user_group_admin.php:122 #, fuzzy msgid "Graph Preview Rights" msgstr "Arbres des graphiques" #: ../user_group_admin.php:124 msgid "Should Users of this Group have access to the Graph Preview?" msgstr "" #: ../user_group_admin.php:133 #, fuzzy msgid "What to do when a User from this User Group logs in." msgstr "Que faire lorsque cet utilisateur s'authentifie." #: ../user_group_admin.php:441 msgid "Click 'Continue' to delete the following User Group" msgid_plural "Click 'Continue' to delete following User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:446 msgid "Delete User Group" msgid_plural "Delete User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:454 #, fuzzy msgid "Click 'Continue' to Copy the following User Group to a new User Group." msgid_plural "" "Click 'Continue' to Copy following User Groups to new User Groups." msgstr[0] "Etes vous de vouloir supprimer les équipements suivants ?" msgstr[1] "Etes vous de vouloir supprimer les équipements suivants ?" #: ../user_group_admin.php:460 #, fuzzy msgid "Group Prefix:" msgstr "Nom complet" #: ../user_group_admin.php:461 #, fuzzy msgid "New Group" msgstr "Nouveaux grahiques" #: ../user_group_admin.php:465 #, fuzzy msgid "Copy User Group" msgid_plural "Copy User Groups" msgstr[0] "Pas d'utilisateur" msgstr[1] "Pas d'utilisateur" #: ../user_group_admin.php:471 msgid "Click 'Continue' to enable the following User Group." msgid_plural "Click 'Continue' to enable following User Groups." msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:476 msgid "Enable User Group" msgid_plural "Enable User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:482 msgid "Click 'Continue' to disable the following User Group." msgid_plural "Click 'Continue' to disable following User Groups." msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:487 msgid "Disable User Group" msgid_plural "Disable User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:490 #, fuzzy msgid "You must select at least one Group." msgstr "Vous devez sélectionner au moins un champ." #: ../user_group_admin.php:675 #, fuzzy msgid "Login Name" msgstr "S'authentifier" #: ../user_group_admin.php:675 msgid "Membership" msgstr "" #: ../user_group_admin.php:686 msgid "Group Member" msgstr "" #: ../user_group_admin.php:696 msgid "No Matching Group Members Found" msgstr "" #: ../user_group_admin.php:710 msgid "Add to Group" msgstr "" #: ../user_group_admin.php:711 msgid "Remove from Group" msgstr "" #: ../user_group_admin.php:750 ../user_group_admin.php:891 msgid "Default Graph policy for this User Group" msgstr "" #: ../user_group_admin.php:755 ../user_group_admin.php:896 #: ../user_group_admin.php:1044 ../user_group_admin.php:1185 #, fuzzy msgid "Update" msgstr "[mettre à jour]" #: ../user_group_admin.php:1039 #, fuzzy msgid "Default Graph Template policy for this User Group" msgstr "Supprimer l'association de modèled de graphique" #: ../user_group_admin.php:1180 msgid "Default Tree policy for this User Group" msgstr "" #: ../user_group_admin.php:1643 ../user_group_admin.php:1882 msgid "Members" msgstr "" #: ../user_group_admin.php:1655 #, fuzzy, php-format msgid "User Group Management [edit: %s]" msgstr "Gestion utilisateurs" #: ../user_group_admin.php:1657 #, fuzzy msgid "User Group Management [new]" msgstr "Gestion utilisateurs" #: ../user_group_admin.php:1791 #, fuzzy msgid "User Group Management" msgstr "Gestion utilisateurs" #: ../user_group_admin.php:1912 #, fuzzy msgid "No User Groups Found" msgstr "Pas de graphique trouvé" #: ../user_group_admin.php:2513 #, php-format msgid "User Membership %s" msgstr "" #: ../user_group_admin.php:2546 msgid "Show Members" msgstr "" #: ../user_group_admin.php:2552 #, fuzzy msgctxt "filter reset" msgid "Clear" msgstr "Effacer" #: ../utilities.php:164 msgid "" "NET-SNMP Not Installed or its paths are not set. Please install if you wish " "to monitor SNMP enabled devices." msgstr "" #: ../utilities.php:170 #, fuzzy msgid "Configuration Settings" msgstr "Paramètres de Cacti" #: ../utilities.php:170 #, php-format msgid "" "ERROR: Installed RRDtool version does not match configured version." "
    Please visit the %s and select the correct RRDtool Utility Version." msgstr "" #: ../utilities.php:174 #, php-format msgid "" "ERROR: RRDtool 1.2.x+ does not support the GIF images format, but %d\" " "graph(s) and/or templates have GIF set as the image format." msgstr "" #: ../utilities.php:194 msgid "Database" msgstr "" #: ../utilities.php:195 #, fuzzy msgid "PHP Info" msgstr "Information PHP" #: ../utilities.php:202 #, php-format msgid "Technical Support [%s]" msgstr "" #: ../utilities.php:229 #, fuzzy msgid "General Information" msgstr "Information PHP" #: ../utilities.php:231 ../utilities.php:766 msgid "Date" msgstr "" #: ../utilities.php:238 #, fuzzy msgid "Cacti Version" msgstr "Version" #: ../utilities.php:243 #, fuzzy msgid "Cacti OS" msgstr "Paramètres de Cacti" #: ../utilities.php:253 #, fuzzy msgid "NET-SNMP Version" msgstr "Version de SNMP" #: ../utilities.php:281 ../utilities.php:314 #, fuzzy, php-format msgid "Total: %s" msgstr "Pas de graphiques" #: ../utilities.php:288 #, fuzzy msgid "Poller Information" msgstr "Information PHP" #: ../utilities.php:311 #, fuzzy, php-format msgid "Action[%s]" msgstr "Actions" #: ../utilities.php:316 msgid "No items to poll" msgstr "" #: ../utilities.php:322 #, fuzzy msgid "Concurrent Processes" msgstr "Nombre maximum de processus de collecte simultanés" #: ../utilities.php:327 msgid "Max Threads" msgstr "" #: ../utilities.php:332 #, fuzzy msgid "PHP Servers" msgstr "Serveur" #: ../utilities.php:337 #, fuzzy msgid "Script Timeout" msgstr "Délai maximum pour le SNMP" #: ../utilities.php:342 msgid "Max OID" msgstr "" #: ../utilities.php:347 #, fuzzy msgid "Last Run Statistics" msgstr "Initialiser les statistiques" #: ../utilities.php:355 msgid "System Memory" msgstr "" #: ../utilities.php:384 msgid "PHP Information" msgstr "Information PHP" #: ../utilities.php:391 msgid "" "PHP Version 5.5.0+ is recommended due to strong password hashing support." msgstr "" #: ../utilities.php:396 msgid "PHP OS" msgstr "" #: ../utilities.php:401 msgid "PHP uname" msgstr "" #: ../utilities.php:412 #, fuzzy msgid "PHP SNMP" msgstr "SNMP" #: ../utilities.php:447 msgid "You've set memory limit to 'unlimited'." msgstr "" #: ../utilities.php:449 #, php-format msgid "" "It is highly suggested that you alter you php.ini memory_limit to %s or " "higher." msgstr "" #: ../utilities.php:450 msgid "" "This suggested memory value is calculated based on the number of data source " "present and is only to be used as a suggestion, actual values may vary " "system to system based on requirements." msgstr "" #: ../utilities.php:458 msgid "MySQL Table Information - Sizes in KBytes" msgstr "" #: ../utilities.php:467 msgid "Engine" msgstr "" #: ../utilities.php:469 msgid "Avg Row Length" msgstr "" #: ../utilities.php:470 #, fuzzy msgid "Data Length" msgstr "Entrée de donnée" #: ../utilities.php:471 #, fuzzy msgid "Index Length" msgstr "Méthode de réindexation" #: ../utilities.php:472 msgid "Collation" msgstr "" #: ../utilities.php:473 msgid "Comment" msgstr "" #: ../utilities.php:491 msgid "Unable to retrieve table status" msgstr "" #: ../utilities.php:497 #, fuzzy msgid "PHP Module Information" msgstr "Information PHP" #: ../utilities.php:623 msgid "User Login History" msgstr "" #: ../utilities.php:632 ../utilities.php:763 #, fuzzy msgid "User" msgstr "Pas d'utilisateur" #: ../utilities.php:637 msgid "Deleted/Invalid" msgstr "" #: ../utilities.php:650 ../utilities.php:767 #, fuzzy msgid "Result" msgstr "Résultat de l'exportation" #: ../utilities.php:655 #, fuzzy msgid "Success - Pswd" msgstr "Succès" #: ../utilities.php:656 #, fuzzy msgid "Success - Token" msgstr "Succès" #: ../utilities.php:657 #, fuzzy msgid "Failed" msgstr "Echoué" #: ../utilities.php:661 msgid "Attempts" msgstr "" #: ../utilities.php:676 ../utilities.php:1009 ../utilities.php:1337 #: ../utilities.php:1584 ../utilities.php:2293 ../utilities.php:2557 #: ../vdef.php:686 #, fuzzy msgctxt "Button: use filter settings" msgid "Go" msgstr "Go" #: ../utilities.php:679 ../utilities.php:1012 ../utilities.php:1340 #: ../utilities.php:1587 ../utilities.php:2296 ../utilities.php:2558 #: ../vdef.php:689 #, fuzzy msgctxt "Button: reset filter settings" msgid "Clear" msgstr "Effacer" #: ../utilities.php:682 ../utilities.php:1015 ../utilities.php:2559 msgctxt "Button: delete all table entries" msgid "Purge" msgstr "" #: ../utilities.php:682 msgid "Purge User Log" msgstr "" #: ../utilities.php:756 #, fuzzy msgid "User Logins" msgstr "Dernière connection" #: ../utilities.php:768 msgid "IP Address" msgstr "" #: ../utilities.php:784 #, fuzzy msgid "(User Removed)" msgstr "(Supprimer)" #: ../utilities.php:1015 msgid "Purge Log" msgstr "" #: ../utilities.php:1072 #, php-format msgid "Log [Total Lines: %d - Non-Matching Items Hidden]" msgstr "" #: ../utilities.php:1074 #, php-format msgid "Log [Total Lines: %d - All Items Shown]" msgstr "" #: ../utilities.php:1173 #, php-format msgid "%s - WEBUI: Cacti Log Cleared from Web Management Interface." msgstr "" #: ../utilities.php:1175 msgid "Cacti Log Cleared" msgstr "" #: ../utilities.php:1177 msgid "Error: Unable to clear log, no write permissions." msgstr "" #: ../utilities.php:1180 msgid "Error: Unable to clear log, file does not exist." msgstr "" #: ../utilities.php:1273 #, fuzzy msgid "Data Query Cache Items" msgstr "Élement de source de donnée" #: ../utilities.php:1289 #, fuzzy msgid "Query Name" msgstr "Nom de l'interrogation avancée" #: ../utilities.php:1409 #, fuzzy msgid "Field Value" msgstr "Nom du champ" #: ../utilities.php:1409 msgid "Index" msgstr "" #: ../utilities.php:1545 #, fuzzy msgid "Poller Cache Items" msgstr "Voir le cache de l'agent de collecte" #: ../utilities.php:1606 msgid "Script" msgstr "Script" #: ../utilities.php:1722 ../utilities.php:1727 #, fuzzy msgid "SNMP Version:" msgstr "Version de SNMP" #: ../utilities.php:1723 #, fuzzy msgid "Community:" msgstr "Comunnauté SNMP" #: ../utilities.php:1724 ../utilities.php:1728 msgid "OID:" msgstr "" #: ../utilities.php:1728 #, fuzzy msgid "User:" msgstr "Pas d'utilisateur" #: ../utilities.php:1731 #, fuzzy msgid "Script:" msgstr "Script" #: ../utilities.php:1733 #, fuzzy msgid "Script Server:" msgstr "Script" #: ../utilities.php:1746 msgid "RRD:" msgstr "" #: ../utilities.php:1765 msgid "Tecnical Support" msgstr "" #: ../utilities.php:1767 msgid "" "Cacti technical support page. Used by developers and technical support " "persons to assist with issues in Cacti. Includes checks for common " "configuration issues." msgstr "" #: ../utilities.php:1769 #, fuzzy msgid "Log Administration" msgstr "Administration des utilisateurs" #: ../utilities.php:1771 msgid "" "The Cacti Log stores statistic, error and other message depending on system " "settings. This information can be used to identify problems with the poller " "and application." msgstr "" #: ../utilities.php:1775 msgid "" "Allows Administrators to browse the user log. Administrators can filter and " "export the log as well." msgstr "" #: ../utilities.php:1779 msgid "Poller Cache Administration" msgstr "Administration du cache de l'agent de collecte" #: ../utilities.php:1782 msgid "" "This is the data that is being passed to the poller each time it runs. This " "data is then in turn executed/interpreted and the results are fed into the " "RRDfiles for graphing or the database for display." msgstr "" #: ../utilities.php:1786 msgid "" "The Data Query Cache stores information gathered from Data Query input " "types. The values from these fields can be used in the text area of Graphs " "for Legends, Vertical Labels, and GPRINTS as well as in CDEF's." msgstr "" #: ../utilities.php:1788 #, fuzzy msgid "Rebuild Poller Cache" msgstr "Voir le cache de l'agent de collecte" #: ../utilities.php:1790 msgid "" "The poller cache will be cleared and re-generated if you select this option. " "Sometimes host/data source data can get out of sync with the cache in which " "case it makes sense to clear the cache and start over." msgstr "" #: ../utilities.php:1794 #, fuzzy msgid "Boost Utilities" msgstr "Utilitaires systèmes" #: ../utilities.php:1795 msgid "View Boost Status" msgstr "" #: ../utilities.php:1797 msgid "" "This menu pick allows you to view various boost settings and statistics " "associated with the current running Boost configuration." msgstr "" #: ../utilities.php:1801 #, fuzzy msgid "RRD Utilities" msgstr "Utilitaires" #: ../utilities.php:1802 #, fuzzy msgid "RRDfile Cleaner" msgstr "Effacer" #: ../utilities.php:1804 msgid "" "When you delete Data Sources from Cacti, the corresponding RRDfiles are not " "removed automatically. Use this utility to facilitate the removal of these " "old files." msgstr "" #: ../utilities.php:1808 #, fuzzy msgid "SNMPAgent Utilities" msgstr "Utilitaires systèmes" #: ../utilities.php:1809 #, fuzzy msgid "View SNMPAgent Cache" msgstr "Voir le cache SNMP" #: ../utilities.php:1811 msgid "This shows all objects being handled by the SNMPAgent." msgstr "" #: ../utilities.php:1813 #, fuzzy msgid "Rebuild SNMPAgent Cache" msgstr "Voir le cache SNMP" #: ../utilities.php:1815 msgid "" "The SNMP cache will be cleared and re-generated if you select this option. " "Note that it takes another poller run to restore the SNMP cache completely." msgstr "" #: ../utilities.php:1817 msgid "View SNMPAgent Notification Log" msgstr "" #: ../utilities.php:1819 msgid "" "This menu pick allows you to view the latest events SNMPAgent has handled in " "relation to the registered notification receivers." msgstr "" #: ../utilities.php:1823 msgid "Allows Administrators to maintain SNMP notification receivers." msgstr "" #: ../utilities.php:1829 #, fuzzy msgid "Cacti System Utilities" msgstr "Utilitaires systèmes" #: ../utilities.php:1953 #, fuzzy msgid "Overrun Warning" msgstr "Alertes de l'agent de collecte" #: ../utilities.php:1954 msgid "Timed Out" msgstr "" #: ../utilities.php:1955 msgid "Other" msgstr "" #: ../utilities.php:1957 #, fuzzy msgid "Never Run" msgstr "Jamais" #: ../utilities.php:2010 msgid "Cannot open directory" msgstr "" #: ../utilities.php:2014 msgid "Directory Does NOT Exist!!" msgstr "" #: ../utilities.php:2021 msgid "Current Boost Status" msgstr "" #: ../utilities.php:2024 msgid "Boost On-demand Updating:" msgstr "" #: ../utilities.php:2027 #, fuzzy msgid "Total Data Sources:" msgstr "Aucune sources de donnée" #: ../utilities.php:2031 msgid "Pending Boost Records:" msgstr "" #: ../utilities.php:2034 msgid "Archived Boost Records:" msgstr "" #: ../utilities.php:2037 msgid "Total Boost Records:" msgstr "" #: ../utilities.php:2041 #, fuzzy msgid "Boost Storage Statistics" msgstr "Initialiser les statistiques" #: ../utilities.php:2045 msgid "Database Engine:" msgstr "" #: ../utilities.php:2049 msgid "Current Boost Table(s) Size:" msgstr "" #: ../utilities.php:2053 msgid "Avg Bytes/Record:" msgstr "" #: ../utilities.php:2081 #, php-format msgid "%d Bytes" msgstr "" #: ../utilities.php:2081 #, fuzzy msgid "Max Record Length:" msgstr "Taille maximum du champ" #: ../utilities.php:2087 ../utilities.php:2088 msgid "Unlimited" msgstr "" #: ../utilities.php:2093 msgid "Max Allowed Boost Table Size:" msgstr "" #: ../utilities.php:2097 msgid "Estimated Maximum Records:" msgstr "" #: ../utilities.php:2100 #, fuzzy msgid "Runtime Statistics" msgstr "Initialiser les statistiques" #: ../utilities.php:2103 msgid "Last Start Time:" msgstr "" #: ../utilities.php:2106 msgid "Last Run Duration:" msgstr "" #: ../utilities.php:2107 #, php-format msgid "%d minutes" msgstr "" #: ../utilities.php:2107 #, php-format msgid "%d seconds" msgstr "" #: ../utilities.php:2108 #, php-format msgid "%0.2f percent of update frequency)" msgstr "" #: ../utilities.php:2112 msgid "RRD Updates:" msgstr "" #: ../utilities.php:2115 ../utilities.php:2121 msgid "MBytes" msgstr "" #: ../utilities.php:2115 msgid "Peak Poller Memory:" msgstr "" #: ../utilities.php:2118 msgid "Detailed Runtime Timers:" msgstr "" #: ../utilities.php:2121 msgid "Max Poller Memory Allowed:" msgstr "" #: ../utilities.php:2124 msgid "Run Time Configuration" msgstr "" #: ../utilities.php:2127 msgid "Update Frequency:" msgstr "" #: ../utilities.php:2130 msgid "Next Start Time:" msgstr "" #: ../utilities.php:2133 #, fuzzy msgid "Maximum Records:" msgstr "Valeur maximum de la durée de rétention" #: ../utilities.php:2133 msgid "Records" msgstr "" #: ../utilities.php:2136 #, fuzzy msgid "Maximum Allowed Runtime:" msgstr "Taille maximum du log" #: ../utilities.php:2142 msgid "Image Caching Status:" msgstr "" #: ../utilities.php:2145 msgid "Cache Directory:" msgstr "" #: ../utilities.php:2148 #, fuzzy msgid "Cached Files:" msgstr "Filtre de recherche" #: ../utilities.php:2151 msgid "Cached Files Size:" msgstr "" #: ../utilities.php:2248 #, fuzzy msgid "SNMPAgent Cache" msgstr "Voir le cache SNMP" #: ../utilities.php:2278 msgid "OIDs" msgstr "" #: ../utilities.php:2358 msgid "Column Data" msgstr "" #: ../utilities.php:2358 msgid "Scalar" msgstr "" #: ../utilities.php:2501 msgid "SNMPAgent Notification Log" msgstr "" #: ../utilities.php:2529 ../utilities.php:2613 msgid "Receiver" msgstr "" #: ../utilities.php:2605 msgid "Log Entries" msgstr "" #: ../utilities.php:2620 #, php-format msgid "Severity Level: %s" msgstr "" #: ../vdef.php:265 msgid "Click 'Continue' to delete the following VDEF." msgid_plural "Click 'Continue' to delete following VDEFs." msgstr[0] "" msgstr[1] "" #: ../vdef.php:270 #, fuzzy msgid "Delete VDEF" msgid_plural "Delete VDEFs" msgstr[0] "Supprimer" msgstr[1] "Supprimer" #: ../vdef.php:274 msgid "" "Click 'Continue' to duplicate the following VDEF. You can optionally change " "the title format for the new VDEF." msgid_plural "" "Click 'Continue' to duplicate following VDEFs. You can optionally change the " "title format for the new VDEFs." msgstr[0] "" msgstr[1] "" #: ../vdef.php:280 #, fuzzy msgid "Duplicate VDEF" msgid_plural "Duplicate VDEFs" msgstr[0] "Dupliquer" msgstr[1] "Dupliquer" #: ../vdef.php:283 #, fuzzy msgid "You must select at least one VDEF." msgstr "Vous devez sélectionner au moins un champ." #: ../vdef.php:325 msgid "Click 'Continue' to delete the following VDEF's." msgstr "" #: ../vdef.php:385 #, fuzzy msgid "VDEF Preview" msgstr "Mode de prévisualisation" #: ../vdef.php:390 #, php-format msgid "VDEF Items [edit: %s]" msgstr "" #: ../vdef.php:392 #, fuzzy msgid "VDEF Items [new]" msgstr "Éléments CDEF" #: ../vdef.php:408 #, fuzzy msgid "Choose what type of VDEF item this is." msgstr "Choisissez le type d'élément a placer sur l'arbre" #: ../vdef.php:408 #, fuzzy msgid "VDEF Item Type" msgstr "Type d'élément d'arbre" #: ../vdef.php:430 msgid "Enter a value for this VDEF item." msgstr "" #: ../vdef.php:430 #, fuzzy msgid "VDEF Item Value" msgstr "Valeur de l'élement d'arbre" #: ../vdef.php:535 #, php-format msgid "VDEFs [edit: %s]" msgstr "" #: ../vdef.php:537 #, fuzzy msgid "VDEFs [new]" msgstr "[nouveau]" #: ../vdef.php:600 ../vdef.php:639 #, fuzzy msgid "Delete VDEF Item" msgstr "Éléments CDEF" #: ../vdef.php:845 #, fuzzy msgid "The name of this VDEF." msgstr "Un nom pratique de ce CDEF." #: ../vdef.php:845 #, fuzzy msgid "VDEF Name" msgstr "Nom complet" #: ../vdef.php:846 msgid "" "VDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: ../vdef.php:847 msgid "The number of Graphs using this VDEF." msgstr "" #: ../vdef.php:848 msgid "The number of Graphs Templates using this VDEF." msgstr "" #: ../vdef.php:871 msgid "No VDEFs" msgstr "" #, fuzzy #~ msgid "new" #~ msgstr "[nouveau]" #, fuzzy #~ msgid "Graph Template Selection [edit: %s]" #~ msgstr "Elements de modèle de graphique" #, fuzzy #~ msgid "Graph Template Selection [new]" #~ msgstr "Elements de modèle de graphique" #, fuzzy #~ msgid "Report Details" #~ msgstr "Importer les données" #~ msgid "Graph Export" #~ msgstr "Export de graphique" #~ msgid "ACCESS DENIED" #~ msgstr "ACCÈS REFUSÉ" #~ msgid "" #~ "Account to logon on the remote server (leave empty for defaults). " #~ "Default: Anonymous." #~ msgstr "" #~ "Non d'utilisateur distant (laisser vide pour la valeur par défaut). Par " #~ "défaut : anonymous." #~ msgid "Are you sure you want to delete the CDEF" #~ msgstr "Êtes vous sùr de vouloir supprimer le CDEF" #~ msgid "Are you sure you want to delete the input item" #~ msgstr "Etes vous sur de vouloir supprimer le l'élément d'entrée" #~ msgid "Cacti Variables" #~ msgstr "Variables de Cacti" #~ msgid "" #~ "Check this if you want to delete any existing files in the FTP remote " #~ "directory. This option is in use only when using the PHP built-in ftp " #~ "functions." #~ msgstr "" #~ "Cocher cette option si vous voullez supprimer tous les fichiers existants " #~ "sur le serveur FTP distant. Cette option n'est utilisée qu'avec les " #~ "fonctions ftp internes à PHP." #~ msgid "Choose a graph from this list to add it to the tree." #~ msgstr "Sélectionner un graphique dans cette liste à ajouter dans l'arbre." #~ msgid "Choose how children of this branch will be sorted." #~ msgstr "" #~ "Choisir la façon dont les feuilles de cette branche vont être triées." #~ msgid "Choose when to export graphs." #~ msgstr "Choisir quand exporter les graphiques." #~ msgid "Choose which export method to use." #~ msgstr "Chosissez la méthode d'exportation à utiliser." #~ msgid "Classic (export every x times)" #~ msgstr "Classique (export tous les x temps)" #~ msgid "" #~ "Communication port with the ftp server (leave empty for defaults). " #~ "Default: 21." #~ msgstr "" #~ "Port de connection au serveur FTP (laisser vide pour prendre la valeur " #~ "par défaut). Par défaut : 21." #~ msgid "Confirm:" #~ msgstr "Confirmer :" #~ msgid "Create:" #~ msgstr "Créer :" #~ msgid "Daily at specified time" #~ msgstr "Tous les jours à l'heure indiquée" #~ msgid "Default RRA" #~ msgstr "RRA par défaut" #~ msgid "Disabled (no exporting)" #~ msgstr "Désactivé (pas d'export)" #~ msgid "Edit (Graph Permissions)" #~ msgstr "Edition (Permissions du graphique)" #~ msgid "Edit (Graph Settings)" #~ msgstr "Edition (Paramètres du graphique)" #~ msgid "Export Every x Times" #~ msgstr "Export toutes les x fois" #~ msgid "FTP Host" #~ msgstr "Serveur FTP" #~ msgid "FTP User" #~ msgstr "Utilisateur FTP" #~ msgid "Graph Permissions (By Graph Template)" #~ msgstr "Permission du graphique (par modèle de graphique)" #~ msgid "Graph Permissions (By Graph)" #~ msgstr "Permission du graphique (par graphique)" #~ msgid "Hosts" #~ msgstr "Machines" #~ msgid "Hourly at specified minutes" #~ msgstr "Toutes les heures à la minute indiquée" #~ msgid "" #~ "If you don't want Cacti to export static images every 5 minutes, put " #~ "another number here. For instance, 3 would equal every 15 minutes." #~ msgstr "" #~ "Si vous ne voullez pas que Cacti exporte les images statiques toutes les " #~ "5 minutes, donnez une autre valeur ici. 3 signifie toutes les 15 minutes " #~ "par example." #~ msgid "List View Mode" #~ msgstr "Mode de vue en liste" #~ msgid "Maximum Value" #~ msgstr "Valeur maximum" #~ msgid "Minimum Value" #~ msgstr "Valeur minimum" #~ msgid "No Graphs Trees" #~ msgstr "Pas d'arbre de graphiques" #~ msgid "No Host" #~ msgstr "Pas de machine" #~ msgid "Overwrite events as needed" #~ msgstr "Écraser les évènements si nécessaire" #~ msgid "Overwrite events older than the maximum days" #~ msgstr "Écraser les évènements plus vieux que le nombre de maximum de jours" #~ msgid "PHP SNMP Support:" #~ msgstr "Support de SNMP pour PHP :" #~ msgid "Parent Item" #~ msgstr "Élément parent" #~ msgid "Password:" #~ msgstr "Mot de passe :" #~ msgid "Poller:" #~ msgstr "Agent de collecte :" #~ msgid "RRAs" #~ msgstr "RRAs" #~ msgid "RRDTool Default Font Path" #~ msgstr "Chemin par défaut pour les fontes RRDTool" #~ msgid "RRDTool Utility Version" #~ msgstr "Version de l'utilitaire RRDTool" #~ msgid "SNMP Utility Version" #~ msgstr "Version des outils SNMP" #~ msgid "Stop logging if maximum log size is exceeded" #~ msgstr "Arrèter les logs si la taille maximum est atteinte" #~ msgid "The maximum number of characters to display for a graph title." #~ msgstr "Nombre maximum de cacatères à afficher pour un titre de graphique." #~ msgid "The number of graphs to display on one page in list view mode." #~ msgstr "Le nombre de graphiques à afficher sur une page en vue par liste." #~ msgid "The number of rows to display on a single page for graph management." #~ msgstr "" #~ "Nombre de lignes à afficher sur une seule page dans la gestion des " #~ "graphiques." #~ msgid "To disable the following devices, press the \"yes\" button below." #~ msgstr "" #~ "Pour désactiver les équipements suivants, cliquez sur le bouton \"oui\" " #~ "ci-dessous." #~ msgid "To enable the following devices, press the \"yes\" button below." #~ msgstr "" #~ "Pour activer les équipements suivants, cliquez sur le bouton \"oui\" ci-" #~ "dessous." #~ msgid "To end your Cacti session please close your web browser." #~ msgstr "Pour fermer votre session Cacti, veuillez fermer votre navigateur." #~ msgid "Tree View Mode" #~ msgstr "Mode de vue en arbre" #~ msgid "Unknown Index" #~ msgstr "Index inconnu" #~ msgid "Update Round Robin Archives" #~ msgstr "Mettre à jour les archives Round Robin" #~ msgid "Upper Limit" #~ msgstr "Limite supérieure" #~ msgid "Use passive mode" #~ msgstr "Utiliser le mode passif" #~ msgid "XML file parsed ok." #~ msgstr "Analyse du fichier XML correcte." #~ msgid "YOU DO NOT HAVE RIGHTS TO CHANGE GRAPH SETTINGS" #~ msgstr "" #~ "VOUS N'AVEZ PAS LES DROITS POUR MODIFIER LES PARAMÈTRES DU GRAPHIQUE" #~ msgid "Zoom" #~ msgstr "Zoom" cacti-1.1.38/locales/po/dutch_netherlands.po0000664000175000017500000235220013264740213020357 0ustar tromantroman# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Patrick Rademaker, 2017. # msgid "" msgstr "" "Project-Id-Version: Cacti\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-02-25 10:37-0500\n" "PO-Revision-Date: 2018-02-26 20:37+0100\n" "Last-Translator: Patrick Rademaker\n" "Language-Team: Patrick Rademaker\n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.0.6\n" #: /var/www/html/cacti/about.php:29 #: /var/www/html/cacti/include/global_session.php:115 #: /var/www/html/cacti/lib/functions.php:2578 msgid "About Cacti" msgstr "Over Cacti" #: /var/www/html/cacti/about.php:35 /var/www/html/cacti/index.php:73 #: /var/www/html/cacti/logout.php:60 #, php-format msgid "Version %s" msgstr "Versie %s" #: /var/www/html/cacti/about.php:42 msgid "" "Cacti is designed to be a complete graphing solution based on the RRDtool's " "framework. Its goal is to make a network administrator's job easier by " "taking care of all the necessary details necessary to create meaningful " "graphs." msgstr "" "Cacti is ontworpen om een volledige grafische oplossing te bieden op basis " "van RRDtool. Het doel is om het leven van een netwerkbeheerder gemakkelijker " "te maken door het verzorgen van alle noodzakelijke gegevens die nodig zijn " "om zinvolle grafieken te maken." #: /var/www/html/cacti/about.php:44 #, php-format msgid "" "Please see the official %sCacti website%s for information, support, and " "updates." msgstr "" "Raadpleeg de officiële %sCacti website%s voor meer informatie, support en " "updates." #: /var/www/html/cacti/about.php:46 msgid "Cacti Developers" msgstr "Cacti ontwikkelaars" #: /var/www/html/cacti/about.php:58 msgid "Thanks" msgstr "Bedankt" #: /var/www/html/cacti/about.php:61 #, php-format msgid "" "A very special thanks to %sTobi Oetiker%s, the creator of %sRRDtool%s and " "the very popular %sMRTG%s." msgstr "" "Een zeer speciale dank aan %sTobi Oetiker%s, de maker van %sRRDtool%s en de " "zeer populaire %sMRTG%s." #: /var/www/html/cacti/about.php:64 msgid "The users of Cacti" msgstr "De gebruikers van Cacti" #: /var/www/html/cacti/about.php:65 msgid "" "Especially anyone who has taken the time to create an issue report, or " "otherwise help fix a Cacti related problems. Also to anyone who has " "contributed to supporting Cacti." msgstr "" "Vooral iedereen die de tijd heeft genomen om een ​​probleem te melden, of op " "andere wijze Cacti gerelateerde problemen op te lossen. Ook aan iedereen die " "heeft bijgedragen aan de ondersteuning van Cacti." #: /var/www/html/cacti/about.php:70 msgid "License" msgstr "Licentie" #: /var/www/html/cacti/about.php:72 msgid "Cacti is licensed under the GNU GPL:" msgstr "Cacti is gelicentieerd onder de GNU GPL:" #: /var/www/html/cacti/about.php:74 /var/www/html/cacti/install/index.php:432 msgid "" "This program is free software; you can redistribute it and/or modify it " "under the terms of the GNU General Public License as published by the Free " "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" "Dit programma is gratis; je mag het distribueren of aanpassen onder de " "termen van de GNU General Public License zoals gepubliceerd door de Free " "Software Foundation; uitsluitend versie 2 van de licentie, of enig latere " "versie." #: /var/www/html/cacti/about.php:76 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" "Dit programma is gedistribueerd in de hoop dat het zinnig zal zijn, maar " "komt ZONDER ENIGE GARANTIE; zelfs zonder de impliciete garantie van " "VERKOOPBAARHEID of GESCHIKTHEID VOOR EEN BEPAALD DOEL. Zie de GNU General " "Public License voor meer details." #: /var/www/html/cacti/aggregate_graphs.php:40 #: /var/www/html/cacti/aggregate_templates.php:29 #: /var/www/html/cacti/automation_graph_rules.php:32 #: /var/www/html/cacti/automation_networks.php:31 #: /var/www/html/cacti/automation_snmp.php:29 #: /var/www/html/cacti/automation_snmp.php:683 #: /var/www/html/cacti/automation_templates.php:29 #: /var/www/html/cacti/automation_tree_rules.php:32 #: /var/www/html/cacti/cdef.php:29 /var/www/html/cacti/cdef.php:636 #: /var/www/html/cacti/color.php:28 /var/www/html/cacti/color_templates.php:28 #: /var/www/html/cacti/color_templates.php:122 #: /var/www/html/cacti/data_input.php:29 /var/www/html/cacti/data_input.php:494 #: /var/www/html/cacti/data_input.php:533 #: /var/www/html/cacti/data_queries.php:30 #: /var/www/html/cacti/data_queries.php:708 #: /var/www/html/cacti/data_queries.php:808 #: /var/www/html/cacti/data_queries.php:1032 #: /var/www/html/cacti/data_source_profiles.php:29 #: /var/www/html/cacti/data_source_profiles.php:597 #: /var/www/html/cacti/data_sources.php:35 #: /var/www/html/cacti/data_sources.php:942 #: /var/www/html/cacti/data_templates.php:33 #: /var/www/html/cacti/data_templates.php:607 #: /var/www/html/cacti/gprint_presets.php:28 #: /var/www/html/cacti/graph_templates.php:33 #: /var/www/html/cacti/graph_templates.php:440 #: /var/www/html/cacti/graphs.php:44 /var/www/html/cacti/host.php:38 #: /var/www/html/cacti/host_templates.php:30 #: /var/www/html/cacti/host_templates.php:477 #: /var/www/html/cacti/host_templates.php:534 #: /var/www/html/cacti/include/global_arrays.php:1349 #: /var/www/html/cacti/lib/api_automation.php:1277 #: /var/www/html/cacti/lib/api_automation.php:1339 #: /var/www/html/cacti/lib/api_automation.php:1403 #: /var/www/html/cacti/lib/html.php:1058 #: /var/www/html/cacti/lib/html_form.php:1137 #: /var/www/html/cacti/lib/html_reports.php:1335 #: /var/www/html/cacti/links.php:28 /var/www/html/cacti/managers.php:28 #: /var/www/html/cacti/pollers.php:29 /var/www/html/cacti/sites.php:28 #: /var/www/html/cacti/tree.php:1217 /var/www/html/cacti/tree.php:1370 #: /var/www/html/cacti/tree.php:1430 /var/www/html/cacti/user_admin.php:28 #: /var/www/html/cacti/user_domains.php:29 #: /var/www/html/cacti/user_group_admin.php:30 /var/www/html/cacti/vdef.php:29 msgid "Delete" msgstr "Verwijder" #: /var/www/html/cacti/aggregate_graphs.php:41 msgid "Migrate Aggregate to use a Template" msgstr "Migreer een aggregaat om een sjabloon te gebruiken" #: /var/www/html/cacti/aggregate_graphs.php:42 msgid "Create New Aggregate from Aggregates" msgstr "Maak een nieuwe aggregaat van aggregaten" #: /var/www/html/cacti/aggregate_graphs.php:46 msgid "Associate with Aggregate" msgstr "Associeer met aggregaat" #: /var/www/html/cacti/aggregate_graphs.php:47 msgid "Disassociate with Aggregate" msgstr "Dissocieer van geaggregeerde" #: /var/www/html/cacti/aggregate_graphs.php:80 #: /var/www/html/cacti/graphs.php:128 #, php-format msgid "Place on a Tree (%s)" msgstr "Plaats in een menu (%s)" #: /var/www/html/cacti/aggregate_graphs.php:318 msgid "Click 'Continue' to delete the following Aggregate Graph(s)." msgstr "" "Klik op 'Volgende' om de volgende geaggregeerde grafiek te verwijderen." #: /var/www/html/cacti/aggregate_graphs.php:323 #: /var/www/html/cacti/aggregate_graphs.php:384 #: /var/www/html/cacti/aggregate_graphs.php:409 #: /var/www/html/cacti/aggregate_graphs.php:418 #: /var/www/html/cacti/aggregate_graphs.php:427 #: /var/www/html/cacti/aggregate_graphs.php:438 #: /var/www/html/cacti/aggregate_templates.php:312 #: /var/www/html/cacti/automation_devices.php:199 #: /var/www/html/cacti/automation_graph_rules.php:289 #: /var/www/html/cacti/automation_networks.php:385 #: /var/www/html/cacti/automation_snmp.php:254 #: /var/www/html/cacti/automation_snmp.php:338 #: /var/www/html/cacti/automation_templates.php:166 #: /var/www/html/cacti/automation_tree_rules.php:286 #: /var/www/html/cacti/cdef.php:282 /var/www/html/cacti/cdef.php:293 #: /var/www/html/cacti/cdef.php:345 /var/www/html/cacti/color.php:192 #: /var/www/html/cacti/color_templates.php:232 #: /var/www/html/cacti/color_templates.php:242 #: /var/www/html/cacti/color_templates_items.php:264 #: /var/www/html/cacti/data_input.php:218 #: /var/www/html/cacti/data_input.php:266 #: /var/www/html/cacti/data_queries.php:332 #: /var/www/html/cacti/data_queries.php:486 #: /var/www/html/cacti/data_source_profiles.php:280 #: /var/www/html/cacti/data_source_profiles.php:290 #: /var/www/html/cacti/data_source_profiles.php:341 #: /var/www/html/cacti/data_sources.php:468 #: /var/www/html/cacti/data_sources.php:478 #: /var/www/html/cacti/data_sources.php:487 #: /var/www/html/cacti/data_sources.php:496 #: /var/www/html/cacti/data_sources.php:505 #: /var/www/html/cacti/data_sources.php:511 #: /var/www/html/cacti/data_templates.php:363 #: /var/www/html/cacti/data_templates.php:373 #: /var/www/html/cacti/data_templates.php:389 #: /var/www/html/cacti/gprint_presets.php:153 #: /var/www/html/cacti/graph_templates.php:317 #: /var/www/html/cacti/graph_templates.php:327 #: /var/www/html/cacti/graph_templates.php:347 #: /var/www/html/cacti/graph_templates.php:356 #: /var/www/html/cacti/graphs.php:858 /var/www/html/cacti/graphs.php:874 #: /var/www/html/cacti/graphs.php:885 /var/www/html/cacti/graphs.php:896 #: /var/www/html/cacti/graphs.php:911 /var/www/html/cacti/graphs.php:925 #: /var/www/html/cacti/graphs.php:934 /var/www/html/cacti/graphs.php:1060 #: /var/www/html/cacti/graphs.php:1103 /var/www/html/cacti/graphs.php:1125 #: /var/www/html/cacti/graphs.php:1133 /var/www/html/cacti/graphs.php:1584 #: /var/www/html/cacti/host.php:387 /var/www/html/cacti/host.php:396 #: /var/www/html/cacti/host.php:444 /var/www/html/cacti/host.php:453 #: /var/www/html/cacti/host.php:462 /var/www/html/cacti/host.php:476 #: /var/www/html/cacti/host.php:490 /var/www/html/cacti/host.php:499 #: /var/www/html/cacti/host.php:507 /var/www/html/cacti/host_templates.php:261 #: /var/www/html/cacti/host_templates.php:275 #: /var/www/html/cacti/host_templates.php:286 #: /var/www/html/cacti/host_templates.php:334 #: /var/www/html/cacti/host_templates.php:390 #: /var/www/html/cacti/lib/clog_webapi.php:198 #: /var/www/html/cacti/lib/html_form.php:1136 #: /var/www/html/cacti/lib/html_form.php:1148 #: /var/www/html/cacti/lib/html_form.php:1159 #: /var/www/html/cacti/lib/html_utility.php:214 #: /var/www/html/cacti/links.php:196 /var/www/html/cacti/links.php:205 #: /var/www/html/cacti/links.php:214 /var/www/html/cacti/managers.php:1005 #: /var/www/html/cacti/managers.php:1062 /var/www/html/cacti/plugins.php:483 #: /var/www/html/cacti/pollers.php:288 /var/www/html/cacti/pollers.php:297 #: /var/www/html/cacti/pollers.php:306 /var/www/html/cacti/pollers.php:315 #: /var/www/html/cacti/sites.php:291 /var/www/html/cacti/tree.php:625 #: /var/www/html/cacti/tree.php:634 /var/www/html/cacti/tree.php:643 #: /var/www/html/cacti/user_admin.php:340 #: /var/www/html/cacti/user_admin.php:380 #: /var/www/html/cacti/user_admin.php:391 #: /var/www/html/cacti/user_admin.php:402 #: /var/www/html/cacti/user_admin.php:424 #: /var/www/html/cacti/user_domains.php:227 #: /var/www/html/cacti/user_domains.php:236 #: /var/www/html/cacti/user_domains.php:245 #: /var/www/html/cacti/user_domains.php:254 #: /var/www/html/cacti/user_group_admin.php:446 #: /var/www/html/cacti/user_group_admin.php:465 #: /var/www/html/cacti/user_group_admin.php:476 #: /var/www/html/cacti/user_group_admin.php:487 #: /var/www/html/cacti/vdef.php:270 /var/www/html/cacti/vdef.php:280 #: /var/www/html/cacti/vdef.php:332 msgid "Cancel" msgstr "Annuleer" #: /var/www/html/cacti/aggregate_graphs.php:323 #: /var/www/html/cacti/aggregate_graphs.php:384 #: /var/www/html/cacti/aggregate_graphs.php:409 #: /var/www/html/cacti/aggregate_graphs.php:418 #: /var/www/html/cacti/aggregate_graphs.php:427 #: /var/www/html/cacti/aggregate_graphs.php:438 #: /var/www/html/cacti/aggregate_templates.php:312 #: /var/www/html/cacti/automation_devices.php:199 #: /var/www/html/cacti/automation_graph_rules.php:289 #: /var/www/html/cacti/automation_networks.php:377 #: /var/www/html/cacti/automation_snmp.php:229 #: /var/www/html/cacti/automation_snmp.php:339 #: /var/www/html/cacti/automation_templates.php:166 #: /var/www/html/cacti/automation_tree_rules.php:286 #: /var/www/html/cacti/cdef.php:282 /var/www/html/cacti/cdef.php:293 #: /var/www/html/cacti/cdef.php:346 /var/www/html/cacti/color.php:192 #: /var/www/html/cacti/color_templates.php:232 #: /var/www/html/cacti/color_templates.php:242 #: /var/www/html/cacti/color_templates_items.php:265 #: /var/www/html/cacti/data_input.php:218 #: /var/www/html/cacti/data_input.php:267 #: /var/www/html/cacti/data_queries.php:332 #: /var/www/html/cacti/data_queries.php:487 #: /var/www/html/cacti/data_source_profiles.php:280 #: /var/www/html/cacti/data_source_profiles.php:290 #: /var/www/html/cacti/data_source_profiles.php:342 #: /var/www/html/cacti/data_sources.php:468 #: /var/www/html/cacti/data_sources.php:478 #: /var/www/html/cacti/data_sources.php:487 #: /var/www/html/cacti/data_sources.php:496 #: /var/www/html/cacti/data_sources.php:505 #: /var/www/html/cacti/data_sources.php:511 #: /var/www/html/cacti/data_templates.php:363 #: /var/www/html/cacti/data_templates.php:373 #: /var/www/html/cacti/data_templates.php:389 #: /var/www/html/cacti/gprint_presets.php:153 #: /var/www/html/cacti/graph_templates.php:317 #: /var/www/html/cacti/graph_templates.php:327 #: /var/www/html/cacti/graph_templates.php:347 #: /var/www/html/cacti/graph_templates.php:356 #: /var/www/html/cacti/graphs.php:858 /var/www/html/cacti/graphs.php:874 #: /var/www/html/cacti/graphs.php:885 /var/www/html/cacti/graphs.php:896 #: /var/www/html/cacti/graphs.php:911 /var/www/html/cacti/graphs.php:925 #: /var/www/html/cacti/graphs.php:934 /var/www/html/cacti/graphs.php:1060 #: /var/www/html/cacti/graphs.php:1103 /var/www/html/cacti/graphs.php:1125 #: /var/www/html/cacti/graphs.php:1133 /var/www/html/cacti/host.php:387 #: /var/www/html/cacti/host.php:396 /var/www/html/cacti/host.php:444 #: /var/www/html/cacti/host.php:453 /var/www/html/cacti/host.php:462 #: /var/www/html/cacti/host.php:476 /var/www/html/cacti/host.php:490 #: /var/www/html/cacti/host.php:499 /var/www/html/cacti/host.php:507 #: /var/www/html/cacti/host_templates.php:261 #: /var/www/html/cacti/host_templates.php:275 #: /var/www/html/cacti/host_templates.php:286 #: /var/www/html/cacti/host_templates.php:335 #: /var/www/html/cacti/host_templates.php:391 #: /var/www/html/cacti/lib/clog_webapi.php:199 #: /var/www/html/cacti/lib/html_reports.php:704 #: /var/www/html/cacti/lib/html_utility.php:214 #: /var/www/html/cacti/links.php:196 /var/www/html/cacti/links.php:205 #: /var/www/html/cacti/links.php:214 /var/www/html/cacti/managers.php:1005 #: /var/www/html/cacti/managers.php:1062 /var/www/html/cacti/pollers.php:288 #: /var/www/html/cacti/pollers.php:297 /var/www/html/cacti/pollers.php:306 #: /var/www/html/cacti/pollers.php:315 /var/www/html/cacti/sites.php:291 #: /var/www/html/cacti/tree.php:625 /var/www/html/cacti/tree.php:634 #: /var/www/html/cacti/tree.php:643 /var/www/html/cacti/user_admin.php:340 #: /var/www/html/cacti/user_admin.php:380 #: /var/www/html/cacti/user_admin.php:391 #: /var/www/html/cacti/user_admin.php:402 #: /var/www/html/cacti/user_admin.php:424 #: /var/www/html/cacti/user_domains.php:227 #: /var/www/html/cacti/user_domains.php:236 #: /var/www/html/cacti/user_domains.php:245 #: /var/www/html/cacti/user_domains.php:254 #: /var/www/html/cacti/user_group_admin.php:446 #: /var/www/html/cacti/user_group_admin.php:465 #: /var/www/html/cacti/user_group_admin.php:476 #: /var/www/html/cacti/user_group_admin.php:487 #: /var/www/html/cacti/vdef.php:270 /var/www/html/cacti/vdef.php:280 #: /var/www/html/cacti/vdef.php:333 msgid "Continue" msgstr "Volgende" #: /var/www/html/cacti/aggregate_graphs.php:323 #: /var/www/html/cacti/aggregate_graphs.php:384 #: /var/www/html/cacti/aggregate_graphs.php:409 #: /var/www/html/cacti/graphs.php:858 msgid "Delete Graph(s)" msgstr "Verwijder grafiek(en)" #: /var/www/html/cacti/aggregate_graphs.php:349 msgid "" "The selected Aggregate Graphs represent elements from more than one Graph " "Template." msgstr "" "De geselecteerde geaggregeerde grafiek heeft elementen uit meer dan een " "grafiektemplate." #: /var/www/html/cacti/aggregate_graphs.php:350 msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, they must only be using one Graph Template. Please press " "'Return' and then select only Aggregate Graph that utilize the same Graph " "Template." msgstr "" "Voordat u deze geaggregeerde grafiek kunt migreren naar een template " "gebaseerd aggregaat, moeten deze uitsluitend een template grafiek gebruiken. " "Klik op 'Terug' en selecteer uitsluitend geaggregeerde grafieken die " "hetzelfde grafiektemplate gebruiken." #: /var/www/html/cacti/aggregate_graphs.php:355 #: /var/www/html/cacti/aggregate_graphs.php:395 #: /var/www/html/cacti/aggregate_graphs.php:442 #: /var/www/html/cacti/aggregate_templates.php:316 #: /var/www/html/cacti/auth_changepassword.php:332 #: /var/www/html/cacti/auth_profile.php:454 #: /var/www/html/cacti/auth_profile.php:464 #: /var/www/html/cacti/automation_devices.php:203 #: /var/www/html/cacti/automation_graph_rules.php:287 #: /var/www/html/cacti/automation_networks.php:386 #: /var/www/html/cacti/automation_snmp.php:254 #: /var/www/html/cacti/automation_templates.php:170 #: /var/www/html/cacti/automation_tree_rules.php:284 #: /var/www/html/cacti/cdef.php:297 /var/www/html/cacti/color.php:196 #: /var/www/html/cacti/color_templates.php:246 #: /var/www/html/cacti/data_input.php:221 #: /var/www/html/cacti/data_queries.php:335 #: /var/www/html/cacti/data_source_profiles.php:294 #: /var/www/html/cacti/data_sources.php:515 #: /var/www/html/cacti/data_templates.php:393 #: /var/www/html/cacti/gprint_presets.php:157 #: /var/www/html/cacti/graph_templates.php:360 #: /var/www/html/cacti/graphs.php:1062 /var/www/html/cacti/graphs.php:1112 #: /var/www/html/cacti/graphs.php:1115 /var/www/html/cacti/graphs.php:1138 #: /var/www/html/cacti/host.php:511 /var/www/html/cacti/host_templates.php:290 #: /var/www/html/cacti/include/auth.php:139 #: /var/www/html/cacti/lib/html_form.php:1157 #: /var/www/html/cacti/lib/html_utility.php:212 #: /var/www/html/cacti/links.php:218 /var/www/html/cacti/managers.php:1008 #: /var/www/html/cacti/managers.php:1065 #: /var/www/html/cacti/permission_denied.php:30 #: /var/www/html/cacti/permission_denied.php:32 #: /var/www/html/cacti/pollers.php:319 /var/www/html/cacti/sites.php:295 #: /var/www/html/cacti/tree.php:647 /var/www/html/cacti/user_admin.php:429 #: /var/www/html/cacti/user_domains.php:258 #: /var/www/html/cacti/user_group_admin.php:491 #: /var/www/html/cacti/vdef.php:284 msgid "Return" msgstr "Terug" #: /var/www/html/cacti/aggregate_graphs.php:368 msgid "" "Click 'Continue' and the following Aggregate Graph(s) will be migrated to " "use the Aggregate Template that you choose below." msgstr "" "Klik op 'Volgende' en de volgende geaggregeerde grafiek zal worden " "gemigreerd naar het gekozen geaggregeerde template dat u hieronder kiest." #: /var/www/html/cacti/aggregate_graphs.php:374 msgid "Aggregate Template:" msgstr "Aggregeer template:" #: /var/www/html/cacti/aggregate_graphs.php:388 msgid "" "There are currently no Aggregate Templates defined for the selected Legacy " "Aggregates." msgstr "" "Er zijn alleen geaggregeerde templates gedefinieerd voor de geselecteerde " "legacy aggregaten." #: /var/www/html/cacti/aggregate_graphs.php:389 #, php-format msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, first create an Aggregate Template for the Graph Template '%s'." msgstr "" "Voordat u de geaggregeerde grafieken hieronder kunt migreren naar een " "template gebaseerde aggregaat, moet u eerst een aggregaat template voor de " "grafiektemplate '%s' maken." #: /var/www/html/cacti/aggregate_graphs.php:390 msgid "Please press 'Return' to continue." msgstr "Klik op 'Terug' om door te gaan." #: /var/www/html/cacti/aggregate_graphs.php:401 msgid "" "Click 'Continue' to combine the following Aggregate Graph(s) into a single " "Aggregate Graph." msgstr "" "Klik op 'Volgende' om de volgende geaggregeerde grafiek(en) naar een enkele " "geaggregeerde grafiek te combineren." #: /var/www/html/cacti/aggregate_graphs.php:406 msgid "Aggregate Name:" msgstr "Naam van aggregatie:" #: /var/www/html/cacti/aggregate_graphs.php:407 msgid "New Aggregate" msgstr "Nieuwe aggregatie" #: /var/www/html/cacti/aggregate_graphs.php:413 msgid "" "Click 'Continue' to associate the following Graph(s) with the Aggregate " "Graph." msgstr "" "Klik op 'Volgende' om de volgende grafiek met de geaggregeerde grafiek te " "koppelen." #: /var/www/html/cacti/aggregate_graphs.php:418 msgid "Associate Graph(s)" msgstr "Geaggregeerde grafiek(en)" #: /var/www/html/cacti/aggregate_graphs.php:422 msgid "" "Click 'Continue' to disassociate the following Graph(s) from the Aggregate." msgstr "" "Klik op 'Volgende' om de volgende grafiek van de aggregatie te dissociëren." #: /var/www/html/cacti/aggregate_graphs.php:427 msgid "Dis-Associate Graph(s)" msgstr "Dissocieer grafiek(en)" #: /var/www/html/cacti/aggregate_graphs.php:431 msgid "" "Click 'Continue' to place the following Aggregate Graph(s) under the Tree " "Branch." msgstr "" "Klik op 'Volgende' om de volgende geaggregeerde grafiek onder de " "boomstructuur te plaatsen." #: /var/www/html/cacti/aggregate_graphs.php:433 #: /var/www/html/cacti/host.php:482 msgid "Destination Branch:" msgstr "Bestemming structuur:" #: /var/www/html/cacti/aggregate_graphs.php:438 #: /var/www/html/cacti/graphs.php:911 msgid "Place Graph(s) on Tree" msgstr "Plaats grafieken in de boomstructuur" #: /var/www/html/cacti/aggregate_graphs.php:441 msgid "You must select at least one graph." msgstr "U moet tenminste een grafiek selecteren." #: /var/www/html/cacti/aggregate_graphs.php:476 #: /var/www/html/cacti/graphs.php:1171 msgid "Graph Items [new]" msgstr "Grafiek items [nieuw]" #: /var/www/html/cacti/aggregate_graphs.php:492 #: /var/www/html/cacti/graphs.php:1202 #, php-format msgid "Graph Items [edit: %s]" msgstr "Grafiek items [wijzig: %s]" #: /var/www/html/cacti/aggregate_graphs.php:565 #: /var/www/html/cacti/aggregate_graphs.php:572 #: /var/www/html/cacti/lib/html_reports.php:1104 #: /var/www/html/cacti/lib/html_reports.php:1109 #: /var/www/html/cacti/lib/html_reports.php:1148 #: /var/www/html/cacti/utilities.php:1789 msgid "Details" msgstr "Details" #: /var/www/html/cacti/aggregate_graphs.php:566 #: /var/www/html/cacti/graphs_new.php:913 #: /var/www/html/cacti/lib/html_reports.php:1104 #: /var/www/html/cacti/lib/html_reports.php:1195 #: /var/www/html/cacti/utilities.php:319 msgid "Items" msgstr "Items" #: /var/www/html/cacti/aggregate_graphs.php:567 #: /var/www/html/cacti/aggregate_graphs.php:573 #: /var/www/html/cacti/lib/html.php:1688 #: /var/www/html/cacti/lib/html_reports.php:1104 msgid "Preview" msgstr "Voorbeeld" #: /var/www/html/cacti/aggregate_graphs.php:631 msgid "Turn Off Graph Debug Mode" msgstr "Schakel grafiek debug uit" #: /var/www/html/cacti/aggregate_graphs.php:633 msgid "Turn On Graph Debug Mode" msgstr "Schakel grafiek debug in" #: /var/www/html/cacti/aggregate_graphs.php:639 #: /var/www/html/cacti/aggregate_graphs.php:903 msgid "Show Item Details" msgstr "Toon item details" #: /var/www/html/cacti/aggregate_graphs.php:645 #, php-format msgid "Aggregate Preview [%s]" msgstr "Geaggregeerd voorbeeld [%s]" #: /var/www/html/cacti/aggregate_graphs.php:657 #: /var/www/html/cacti/graph.php:525 /var/www/html/cacti/graphs.php:1438 msgid "RRDtool Command:" msgstr "RRDtool opdracht:" #: /var/www/html/cacti/aggregate_graphs.php:659 #: /var/www/html/cacti/graph.php:528 /var/www/html/cacti/graphs.php:1440 msgid "RRDtool Says:" msgstr "RRDtool zegt:" #: /var/www/html/cacti/aggregate_graphs.php:684 #, php-format msgid "Aggregate Graph %s" msgstr "Aggregeer grafiek %s" #: /var/www/html/cacti/aggregate_graphs.php:821 #: /var/www/html/cacti/graphs.php:1020 #: /var/www/html/cacti/lib/api_aggregate.php:1305 msgid "Total" msgstr "Totaal" #: /var/www/html/cacti/aggregate_graphs.php:825 #: /var/www/html/cacti/graphs.php:1022 msgid "All Items" msgstr "Alle items" #: /var/www/html/cacti/aggregate_graphs.php:848 #: /var/www/html/cacti/graphs.php:1454 #: /var/www/html/cacti/lib/api_aggregate.php:1453 msgid "Graph Configuration" msgstr "Grafiekconfiguratie" #: /var/www/html/cacti/aggregate_graphs.php:898 #: /var/www/html/cacti/automation_graph_rules.php:554 #: /var/www/html/cacti/automation_graph_rules.php:569 #: /var/www/html/cacti/automation_graph_rules.php:585 #: /var/www/html/cacti/automation_tree_rules.php:379 #: /var/www/html/cacti/automation_tree_rules.php:529 msgid "Show" msgstr "Toon" #: /var/www/html/cacti/aggregate_graphs.php:900 msgid "Hide Item Details" msgstr "Verberg item details" #: /var/www/html/cacti/aggregate_graphs.php:1020 msgid "Matching Graphs" msgstr "Overeenkomende grafieken" #: /var/www/html/cacti/aggregate_graphs.php:1029 #: /var/www/html/cacti/aggregate_graphs.php:1357 #: /var/www/html/cacti/aggregate_templates.php:538 #: /var/www/html/cacti/automation_devices.php:448 #: /var/www/html/cacti/automation_graph_rules.php:747 #: /var/www/html/cacti/automation_networks.php:1098 #: /var/www/html/cacti/automation_networks.php:1142 #: /var/www/html/cacti/automation_snmp.php:787 #: /var/www/html/cacti/automation_templates.php:392 #: /var/www/html/cacti/automation_tree_rules.php:715 #: /var/www/html/cacti/cdef.php:742 /var/www/html/cacti/color.php:529 #: /var/www/html/cacti/color_templates.php:443 #: /var/www/html/cacti/data_input.php:628 #: /var/www/html/cacti/data_queries.php:1134 #: /var/www/html/cacti/data_source_profiles.php:832 #: /var/www/html/cacti/data_sources.php:1251 #: /var/www/html/cacti/data_templates.php:793 #: /var/www/html/cacti/gprint_presets.php:262 #: /var/www/html/cacti/graph_templates.php:629 #: /var/www/html/cacti/graph_view.php:520 #: /var/www/html/cacti/graph_view.php:830 /var/www/html/cacti/graphs.php:1737 #: /var/www/html/cacti/graphs_new.php:574 /var/www/html/cacti/host.php:1519 #: /var/www/html/cacti/host_templates.php:696 #: /var/www/html/cacti/lib/api_automation.php:141 #: /var/www/html/cacti/lib/api_automation.php:469 #: /var/www/html/cacti/lib/api_automation.php:699 #: /var/www/html/cacti/lib/api_automation.php:1019 #: /var/www/html/cacti/lib/clog_webapi.php:470 #: /var/www/html/cacti/lib/html_filter.php:63 #: /var/www/html/cacti/lib/html_graph.php:204 #: /var/www/html/cacti/lib/html_graph.php:422 #: /var/www/html/cacti/lib/html_reports.php:1422 #: /var/www/html/cacti/lib/html_tree.php:121 #: /var/www/html/cacti/lib/html_tree.php:618 #: /var/www/html/cacti/lib/html_tree.php:880 /var/www/html/cacti/links.php:309 #: /var/www/html/cacti/managers.php:150 /var/www/html/cacti/managers.php:494 #: /var/www/html/cacti/managers.php:726 /var/www/html/cacti/plugins.php:327 #: /var/www/html/cacti/pollers.php:517 /var/www/html/cacti/rrdcleaner.php:475 #: /var/www/html/cacti/settings.php:341 /var/www/html/cacti/settings.php:360 #: /var/www/html/cacti/settings.php:409 /var/www/html/cacti/sites.php:398 #: /var/www/html/cacti/tree.php:768 /var/www/html/cacti/tree.php:803 #: /var/www/html/cacti/tree.php:1679 /var/www/html/cacti/user_admin.php:2207 #: /var/www/html/cacti/user_admin.php:2545 #: /var/www/html/cacti/user_admin.php:2652 #: /var/www/html/cacti/user_admin.php:2738 #: /var/www/html/cacti/user_admin.php:2841 #: /var/www/html/cacti/user_admin.php:2926 #: /var/www/html/cacti/user_admin.php:3011 #: /var/www/html/cacti/user_domains.php:621 #: /var/www/html/cacti/user_group_admin.php:1827 #: /var/www/html/cacti/user_group_admin.php:2152 #: /var/www/html/cacti/user_group_admin.php:2260 #: /var/www/html/cacti/user_group_admin.php:2363 #: /var/www/html/cacti/user_group_admin.php:2448 #: /var/www/html/cacti/user_group_admin.php:2533 #: /var/www/html/cacti/utilities.php:699 /var/www/html/cacti/utilities.php:1118 #: /var/www/html/cacti/utilities.php:1406 #: /var/www/html/cacti/utilities.php:1684 #: /var/www/html/cacti/utilities.php:2359 #: /var/www/html/cacti/utilities.php:2610 /var/www/html/cacti/vdef.php:675 msgid "Search" msgstr "Zoeken" #: /var/www/html/cacti/aggregate_graphs.php:1035 #: /var/www/html/cacti/aggregate_graphs.php:1132 #: /var/www/html/cacti/aggregate_graphs.php:1385 #: /var/www/html/cacti/color_templates.php:552 #: /var/www/html/cacti/graph_view.php:396 #: /var/www/html/cacti/graph_view.php:561 #: /var/www/html/cacti/graph_view.php:615 /var/www/html/cacti/graphs.php:1743 #: /var/www/html/cacti/graphs.php:1827 /var/www/html/cacti/host.php:1583 #: /var/www/html/cacti/include/global_arrays.php:790 #: /var/www/html/cacti/include/global_arrays.php:971 #: /var/www/html/cacti/lib/api_automation.php:281 #: /var/www/html/cacti/lib/functions.php:1994 #: /var/www/html/cacti/lib/html.php:1421 /var/www/html/cacti/lib/html.php:1423 #: /var/www/html/cacti/lib/html.php:1502 #: /var/www/html/cacti/lib/html_graph.php:210 #: /var/www/html/cacti/lib/html_tree.php:669 #: /var/www/html/cacti/lib/html_tree.php:1078 /var/www/html/cacti/tree.php:1763 #: /var/www/html/cacti/user_admin.php:986 #: /var/www/html/cacti/user_admin.php:1230 #: /var/www/html/cacti/user_admin.php:2573 #: /var/www/html/cacti/user_group_admin.php:813 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:2180 #: /var/www/html/cacti/utilities.php:281 msgid "Graphs" msgstr "Grafieken" #: /var/www/html/cacti/aggregate_graphs.php:1039 #: /var/www/html/cacti/aggregate_graphs.php:1389 #: /var/www/html/cacti/aggregate_templates.php:554 #: /var/www/html/cacti/automation_devices.php:533 #: /var/www/html/cacti/automation_graph_rules.php:789 #: /var/www/html/cacti/automation_networks.php:1108 #: /var/www/html/cacti/automation_snmp.php:797 #: /var/www/html/cacti/automation_templates.php:402 #: /var/www/html/cacti/automation_tree_rules.php:735 #: /var/www/html/cacti/cdef.php:752 /var/www/html/cacti/color.php:539 #: /var/www/html/cacti/color_templates.php:457 #: /var/www/html/cacti/data_input.php:638 #: /var/www/html/cacti/data_queries.php:1144 #: /var/www/html/cacti/data_source_profiles.php:842 #: /var/www/html/cacti/data_source_profiles.php:963 #: /var/www/html/cacti/data_sources.php:1287 #: /var/www/html/cacti/data_templates.php:819 #: /var/www/html/cacti/gprint_presets.php:272 #: /var/www/html/cacti/graph_templates.php:639 #: /var/www/html/cacti/graph_view.php:565 /var/www/html/cacti/graphs.php:1747 #: /var/www/html/cacti/graphs_new.php:584 /var/www/html/cacti/host.php:1544 #: /var/www/html/cacti/host_templates.php:706 #: /var/www/html/cacti/include/global_form.php:76 #: /var/www/html/cacti/lib/api_automation.php:184 #: /var/www/html/cacti/lib/api_automation.php:479 #: /var/www/html/cacti/lib/api_automation.php:709 #: /var/www/html/cacti/lib/api_automation.php:1062 #: /var/www/html/cacti/lib/html_reports.php:1442 #: /var/www/html/cacti/links.php:319 /var/www/html/cacti/managers.php:160 #: /var/www/html/cacti/managers.php:504 /var/www/html/cacti/plugins.php:350 #: /var/www/html/cacti/pollers.php:527 /var/www/html/cacti/rrdcleaner.php:501 #: /var/www/html/cacti/sites.php:408 /var/www/html/cacti/tree.php:1689 #: /var/www/html/cacti/user_admin.php:2217 #: /var/www/html/cacti/user_admin.php:2577 #: /var/www/html/cacti/user_admin.php:2662 #: /var/www/html/cacti/user_admin.php:2766 #: /var/www/html/cacti/user_admin.php:2851 #: /var/www/html/cacti/user_admin.php:2936 #: /var/www/html/cacti/user_admin.php:3021 #: /var/www/html/cacti/user_domains.php:32 #: /var/www/html/cacti/user_domains.php:631 #: /var/www/html/cacti/user_domains.php:714 #: /var/www/html/cacti/user_group_admin.php:1837 #: /var/www/html/cacti/user_group_admin.php:2184 #: /var/www/html/cacti/user_group_admin.php:2288 #: /var/www/html/cacti/user_group_admin.php:2373 #: /var/www/html/cacti/user_group_admin.php:2458 #: /var/www/html/cacti/user_group_admin.php:2543 #: /var/www/html/cacti/utilities.php:677 /var/www/html/cacti/utilities.php:1416 #: /var/www/html/cacti/utilities.php:1705 #: /var/www/html/cacti/utilities.php:2384 #: /var/www/html/cacti/utilities.php:2646 /var/www/html/cacti/vdef.php:685 msgid "Default" msgstr "Standaard" #: /var/www/html/cacti/aggregate_graphs.php:1052 msgid "Part of Aggregate" msgstr "Onderdeel van aggregatie" #: /var/www/html/cacti/aggregate_graphs.php:1057 #: /var/www/html/cacti/aggregate_graphs.php:1401 #: /var/www/html/cacti/aggregate_templates.php:575 #: /var/www/html/cacti/automation_devices.php:469 #: /var/www/html/cacti/automation_graph_rules.php:801 #: /var/www/html/cacti/automation_networks.php:1142 #: /var/www/html/cacti/automation_snmp.php:809 #: /var/www/html/cacti/automation_templates.php:414 #: /var/www/html/cacti/automation_tree_rules.php:747 #: /var/www/html/cacti/cdef.php:770 /var/www/html/cacti/color.php:563 #: /var/www/html/cacti/color_templates.php:477 #: /var/www/html/cacti/data_input.php:650 #: /var/www/html/cacti/data_queries.php:1156 #: /var/www/html/cacti/data_source_profiles.php:860 #: /var/www/html/cacti/data_sources.php:1242 #: /var/www/html/cacti/data_templates.php:837 #: /var/www/html/cacti/gprint_presets.php:290 #: /var/www/html/cacti/graph_templates.php:657 #: /var/www/html/cacti/graph_view.php:577 /var/www/html/cacti/graphs.php:1728 #: /var/www/html/cacti/graphs_new.php:563 /var/www/html/cacti/host.php:1509 #: /var/www/html/cacti/host_templates.php:724 #: /var/www/html/cacti/lib/api_automation.php:196 #: /var/www/html/cacti/lib/api_automation.php:460 #: /var/www/html/cacti/lib/api_automation.php:721 #: /var/www/html/cacti/lib/api_automation.php:1074 #: /var/www/html/cacti/lib/clog_webapi.php:418 #: /var/www/html/cacti/lib/html.php:1243 #: /var/www/html/cacti/lib/html_filter.php:81 #: /var/www/html/cacti/lib/html_graph.php:191 #: /var/www/html/cacti/lib/html_reports.php:1453 #: /var/www/html/cacti/lib/html_tree.php:656 /var/www/html/cacti/links.php:329 #: /var/www/html/cacti/managers.php:172 /var/www/html/cacti/managers.php:516 #: /var/www/html/cacti/managers.php:746 /var/www/html/cacti/plugins.php:362 #: /var/www/html/cacti/pollers.php:539 /var/www/html/cacti/sites.php:420 #: /var/www/html/cacti/tree.php:1701 /var/www/html/cacti/user_admin.php:2229 #: /var/www/html/cacti/user_admin.php:2595 #: /var/www/html/cacti/user_admin.php:2680 #: /var/www/html/cacti/user_admin.php:2784 #: /var/www/html/cacti/user_admin.php:2869 #: /var/www/html/cacti/user_admin.php:2954 #: /var/www/html/cacti/user_admin.php:3039 msgid "Go" msgstr "Ga" #: /var/www/html/cacti/aggregate_graphs.php:1057 #: /var/www/html/cacti/aggregate_graphs.php:1401 #: /var/www/html/cacti/automation_devices.php:469 #: /var/www/html/cacti/automation_snmp.php:809 #: /var/www/html/cacti/automation_templates.php:414 #: /var/www/html/cacti/cdef.php:770 /var/www/html/cacti/color.php:563 #: /var/www/html/cacti/data_input.php:650 #: /var/www/html/cacti/data_queries.php:1156 #: /var/www/html/cacti/data_source_profiles.php:860 #: /var/www/html/cacti/data_sources.php:1242 #: /var/www/html/cacti/data_templates.php:837 #: /var/www/html/cacti/gprint_presets.php:290 #: /var/www/html/cacti/graph_templates.php:657 #: /var/www/html/cacti/graph_view.php:577 /var/www/html/cacti/graphs.php:1728 #: /var/www/html/cacti/graphs_new.php:563 /var/www/html/cacti/host.php:1509 #: /var/www/html/cacti/host_templates.php:724 #: /var/www/html/cacti/lib/html_graph.php:191 #: /var/www/html/cacti/managers.php:172 /var/www/html/cacti/managers.php:516 #: /var/www/html/cacti/managers.php:746 /var/www/html/cacti/plugins.php:362 #: /var/www/html/cacti/pollers.php:539 /var/www/html/cacti/sites.php:420 #: /var/www/html/cacti/tree.php:1701 /var/www/html/cacti/user_admin.php:2229 #: /var/www/html/cacti/user_admin.php:2595 #: /var/www/html/cacti/user_admin.php:2680 #: /var/www/html/cacti/user_admin.php:2784 #: /var/www/html/cacti/user_admin.php:2869 #: /var/www/html/cacti/user_admin.php:2954 #: /var/www/html/cacti/user_admin.php:3039 #: /var/www/html/cacti/user_domains.php:643 #: /var/www/html/cacti/user_group_admin.php:1849 #: /var/www/html/cacti/user_group_admin.php:2202 #: /var/www/html/cacti/user_group_admin.php:2306 #: /var/www/html/cacti/user_group_admin.php:2391 #: /var/www/html/cacti/user_group_admin.php:2476 #: /var/www/html/cacti/user_group_admin.php:2561 #: /var/www/html/cacti/utilities.php:689 /var/www/html/cacti/utilities.php:1070 #: /var/www/html/cacti/utilities.php:1397 #: /var/www/html/cacti/utilities.php:1675 #: /var/www/html/cacti/utilities.php:2396 #: /var/www/html/cacti/utilities.php:2658 msgid "Set/Refresh Filters" msgstr "Stel in/vernieuw filters" #: /var/www/html/cacti/aggregate_graphs.php:1058 #: /var/www/html/cacti/aggregate_graphs.php:1402 #: /var/www/html/cacti/aggregate_templates.php:576 #: /var/www/html/cacti/automation_devices.php:470 #: /var/www/html/cacti/automation_graph_rules.php:802 #: /var/www/html/cacti/automation_networks.php:1143 #: /var/www/html/cacti/automation_snmp.php:810 #: /var/www/html/cacti/automation_templates.php:415 #: /var/www/html/cacti/automation_tree_rules.php:748 #: /var/www/html/cacti/cdef.php:771 /var/www/html/cacti/color.php:564 #: /var/www/html/cacti/color_templates.php:478 #: /var/www/html/cacti/data_input.php:651 #: /var/www/html/cacti/data_queries.php:1157 #: /var/www/html/cacti/data_source_profiles.php:861 #: /var/www/html/cacti/data_sources.php:1243 #: /var/www/html/cacti/data_templates.php:838 #: /var/www/html/cacti/gprint_presets.php:291 #: /var/www/html/cacti/graph_templates.php:658 #: /var/www/html/cacti/graph_view.php:578 /var/www/html/cacti/graphs.php:1729 #: /var/www/html/cacti/graphs_new.php:564 /var/www/html/cacti/host.php:1510 #: /var/www/html/cacti/host_templates.php:725 #: /var/www/html/cacti/lib/api_automation.php:197 #: /var/www/html/cacti/lib/api_automation.php:461 #: /var/www/html/cacti/lib/api_automation.php:722 #: /var/www/html/cacti/lib/api_automation.php:1075 #: /var/www/html/cacti/lib/clog_webapi.php:419 #: /var/www/html/cacti/lib/html_filter.php:86 #: /var/www/html/cacti/lib/html_graph.php:192 #: /var/www/html/cacti/lib/html_graph.php:308 #: /var/www/html/cacti/lib/html_reports.php:1454 #: /var/www/html/cacti/lib/html_tree.php:657 #: /var/www/html/cacti/lib/html_tree.php:767 /var/www/html/cacti/links.php:330 #: /var/www/html/cacti/managers.php:173 /var/www/html/cacti/managers.php:517 #: /var/www/html/cacti/managers.php:747 /var/www/html/cacti/plugins.php:363 #: /var/www/html/cacti/pollers.php:540 /var/www/html/cacti/sites.php:421 #: /var/www/html/cacti/tree.php:1702 /var/www/html/cacti/user_admin.php:2230 #: /var/www/html/cacti/user_admin.php:2596 #: /var/www/html/cacti/user_admin.php:2681 #: /var/www/html/cacti/user_admin.php:2785 #: /var/www/html/cacti/user_admin.php:2870 #: /var/www/html/cacti/user_admin.php:2955 #: /var/www/html/cacti/user_admin.php:3040 #: /var/www/html/cacti/user_domains.php:644 msgid "Clear" msgstr "Herstel" #: /var/www/html/cacti/aggregate_graphs.php:1058 #: /var/www/html/cacti/aggregate_graphs.php:1402 #: /var/www/html/cacti/automation_snmp.php:810 #: /var/www/html/cacti/automation_templates.php:415 #: /var/www/html/cacti/cdef.php:771 /var/www/html/cacti/color.php:564 #: /var/www/html/cacti/data_input.php:651 #: /var/www/html/cacti/data_queries.php:1157 #: /var/www/html/cacti/data_source_profiles.php:861 #: /var/www/html/cacti/data_sources.php:1243 #: /var/www/html/cacti/data_templates.php:838 #: /var/www/html/cacti/gprint_presets.php:291 #: /var/www/html/cacti/graph_templates.php:658 #: /var/www/html/cacti/graph_view.php:578 /var/www/html/cacti/graphs.php:1729 #: /var/www/html/cacti/graphs_new.php:564 /var/www/html/cacti/host.php:1510 #: /var/www/html/cacti/host_templates.php:725 #: /var/www/html/cacti/lib/html_graph.php:192 #: /var/www/html/cacti/lib/html_tree.php:657 #: /var/www/html/cacti/managers.php:173 /var/www/html/cacti/managers.php:517 #: /var/www/html/cacti/managers.php:747 /var/www/html/cacti/plugins.php:363 #: /var/www/html/cacti/pollers.php:540 /var/www/html/cacti/sites.php:421 #: /var/www/html/cacti/tree.php:1702 /var/www/html/cacti/user_admin.php:2230 #: /var/www/html/cacti/user_admin.php:2596 #: /var/www/html/cacti/user_admin.php:2681 #: /var/www/html/cacti/user_admin.php:2785 #: /var/www/html/cacti/user_admin.php:2870 #: /var/www/html/cacti/user_admin.php:2955 #: /var/www/html/cacti/user_admin.php:3040 #: /var/www/html/cacti/user_domains.php:644 #: /var/www/html/cacti/user_group_admin.php:1850 #: /var/www/html/cacti/user_group_admin.php:2203 #: /var/www/html/cacti/user_group_admin.php:2307 #: /var/www/html/cacti/user_group_admin.php:2392 #: /var/www/html/cacti/user_group_admin.php:2477 #: /var/www/html/cacti/user_group_admin.php:2562 #: /var/www/html/cacti/utilities.php:690 /var/www/html/cacti/utilities.php:1071 #: /var/www/html/cacti/utilities.php:1398 #: /var/www/html/cacti/utilities.php:1676 #: /var/www/html/cacti/utilities.php:2397 #: /var/www/html/cacti/utilities.php:2659 msgid "Clear Filters" msgstr "Stel filters opnieuw in" #: /var/www/html/cacti/aggregate_graphs.php:1137 #: /var/www/html/cacti/aggregate_graphs.php:1465 #: /var/www/html/cacti/graph_view.php:621 /var/www/html/cacti/graphs.php:1089 #: /var/www/html/cacti/lib/api_automation.php:569 #: /var/www/html/cacti/user_admin.php:994 #: /var/www/html/cacti/user_group_admin.php:821 msgid "Graph Title" msgstr "Grafiektitel" #: /var/www/html/cacti/aggregate_graphs.php:1138 #: /var/www/html/cacti/aggregate_graphs.php:1466 #: /var/www/html/cacti/automation_graph_rules.php:900 #: /var/www/html/cacti/automation_tree_rules.php:841 #: /var/www/html/cacti/data_queries.php:1240 #: /var/www/html/cacti/data_sources.php:1406 #: /var/www/html/cacti/data_templates.php:947 #: /var/www/html/cacti/graph_templates.php:765 #: /var/www/html/cacti/graphs.php:1837 /var/www/html/cacti/host.php:1577 #: /var/www/html/cacti/host_templates.php:813 #: /var/www/html/cacti/lib/api_automation.php:280 #: /var/www/html/cacti/pollers.php:613 /var/www/html/cacti/sites.php:494 #: /var/www/html/cacti/tree.php:1754 /var/www/html/cacti/user_admin.php:994 #: /var/www/html/cacti/user_admin.php:1089 #: /var/www/html/cacti/user_admin.php:1230 #: /var/www/html/cacti/user_admin.php:1374 #: /var/www/html/cacti/user_admin.php:1511 #: /var/www/html/cacti/user_group_admin.php:675 #: /var/www/html/cacti/user_group_admin.php:821 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:1109 #: /var/www/html/cacti/user_group_admin.php:1243 msgid "ID" msgstr "ID" #: /var/www/html/cacti/aggregate_graphs.php:1139 msgid "Included in Aggregate" msgstr "Opgenomen in aggregatie" #: /var/www/html/cacti/aggregate_graphs.php:1140 #: /var/www/html/cacti/aggregate_graphs.php:1468 #: /var/www/html/cacti/graph_templates.php:768 #: /var/www/html/cacti/graphs.php:1839 msgid "Size" msgstr "Grootte" #: /var/www/html/cacti/aggregate_graphs.php:1156 #: /var/www/html/cacti/cdef.php:891 /var/www/html/cacti/color.php:725 #: /var/www/html/cacti/color.php:727 #: /var/www/html/cacti/color_templates.php:569 #: /var/www/html/cacti/data_input.php:751 #: /var/www/html/cacti/data_queries.php:1260 #: /var/www/html/cacti/data_source_profiles.php:1003 #: /var/www/html/cacti/data_source_profiles.php:1004 #: /var/www/html/cacti/data_sources.php:1450 #: /var/www/html/cacti/data_sources.php:1451 #: /var/www/html/cacti/data_templates.php:967 #: /var/www/html/cacti/gprint_presets.php:413 #: /var/www/html/cacti/graph_templates.php:786 #: /var/www/html/cacti/host_templates.php:832 #: /var/www/html/cacti/include/global_settings.php:414 #: /var/www/html/cacti/include/global_settings.php:694 #: /var/www/html/cacti/include/global_settings.php:1341 #: /var/www/html/cacti/install/index.php:591 #: /var/www/html/cacti/install/index.php:616 /var/www/html/cacti/tree.php:1791 #: /var/www/html/cacti/tree.php:1792 /var/www/html/cacti/user_admin.php:2298 #: /var/www/html/cacti/user_domains.php:729 #: /var/www/html/cacti/user_group_admin.php:1917 #: /var/www/html/cacti/vdef.php:882 msgid "No" msgstr "Nee" #: /var/www/html/cacti/aggregate_graphs.php:1156 #: /var/www/html/cacti/cdef.php:891 /var/www/html/cacti/color.php:725 #: /var/www/html/cacti/color.php:727 #: /var/www/html/cacti/color_templates.php:569 #: /var/www/html/cacti/data_input.php:751 #: /var/www/html/cacti/data_queries.php:1260 #: /var/www/html/cacti/data_source_profiles.php:1002 #: /var/www/html/cacti/data_source_profiles.php:1003 #: /var/www/html/cacti/data_source_profiles.php:1004 #: /var/www/html/cacti/data_sources.php:1450 #: /var/www/html/cacti/data_sources.php:1451 #: /var/www/html/cacti/data_templates.php:967 #: /var/www/html/cacti/gprint_presets.php:413 #: /var/www/html/cacti/graph_templates.php:786 #: /var/www/html/cacti/host_templates.php:832 #: /var/www/html/cacti/include/global_settings.php:414 #: /var/www/html/cacti/include/global_settings.php:693 #: /var/www/html/cacti/include/global_settings.php:1341 #: /var/www/html/cacti/install/index.php:590 #: /var/www/html/cacti/install/index.php:591 #: /var/www/html/cacti/install/index.php:615 #: /var/www/html/cacti/install/index.php:616 /var/www/html/cacti/tree.php:1791 #: /var/www/html/cacti/tree.php:1792 /var/www/html/cacti/user_admin.php:2296 #: /var/www/html/cacti/user_domains.php:727 #: /var/www/html/cacti/user_domains.php:729 #: /var/www/html/cacti/user_group_admin.php:1915 #: /var/www/html/cacti/vdef.php:882 msgid "Yes" msgstr "Ja" #: /var/www/html/cacti/aggregate_graphs.php:1162 #: /var/www/html/cacti/graphs.php:1858 #: /var/www/html/cacti/lib/api_automation.php:596 msgid "No Graphs Found" msgstr "Geen grafieken gevonden" #: /var/www/html/cacti/aggregate_graphs.php:1348 #: /var/www/html/cacti/aggregate_graphs.php:1456 #: /var/www/html/cacti/lib/functions.php:2704 msgid "Aggregate Graphs" msgstr "Geaggregeerde grafieken" #: /var/www/html/cacti/aggregate_graphs.php:1363 #: /var/www/html/cacti/data_sources.php:1206 #: /var/www/html/cacti/graph_view.php:527 /var/www/html/cacti/graphs.php:1703 #: /var/www/html/cacti/host.php:1490 #: /var/www/html/cacti/include/global_settings.php:457 #: /var/www/html/cacti/lib/api_automation.php:441 #: /var/www/html/cacti/lib/html_graph.php:159 #: /var/www/html/cacti/lib/html_tree.php:624 #: /var/www/html/cacti/rrdcleaner.php:351 #: /var/www/html/cacti/user_admin.php:2551 #: /var/www/html/cacti/user_admin.php:2744 #: /var/www/html/cacti/user_group_admin.php:2158 #: /var/www/html/cacti/user_group_admin.php:2266 #: /var/www/html/cacti/utilities.php:1645 msgid "Template" msgstr "Template" #: /var/www/html/cacti/aggregate_graphs.php:1367 #: /var/www/html/cacti/automation_devices.php:458 #: /var/www/html/cacti/automation_devices.php:488 #: /var/www/html/cacti/automation_devices.php:503 #: /var/www/html/cacti/automation_devices.php:518 #: /var/www/html/cacti/automation_graph_rules.php:757 #: /var/www/html/cacti/automation_graph_rules.php:779 #: /var/www/html/cacti/automation_tree_rules.php:725 #: /var/www/html/cacti/data_sources.php:1210 #: /var/www/html/cacti/graphs.php:1707 /var/www/html/cacti/graphs_items.php:330 #: /var/www/html/cacti/host.php:1459 /var/www/html/cacti/host.php:1477 #: /var/www/html/cacti/host.php:1494 /var/www/html/cacti/host.php:1529 #: /var/www/html/cacti/lib/api_automation.php:151 #: /var/www/html/cacti/lib/api_automation.php:169 #: /var/www/html/cacti/lib/api_automation.php:428 #: /var/www/html/cacti/lib/api_automation.php:445 #: /var/www/html/cacti/lib/api_automation.php:1029 #: /var/www/html/cacti/lib/api_automation.php:1047 #: /var/www/html/cacti/lib/html.php:1762 /var/www/html/cacti/lib/html.php:1783 #: /var/www/html/cacti/lib/html_reports.php:1432 #: /var/www/html/cacti/managers.php:483 /var/www/html/cacti/managers.php:736 #: /var/www/html/cacti/user_admin.php:2555 #: /var/www/html/cacti/user_admin.php:2748 #: /var/www/html/cacti/user_group_admin.php:2162 #: /var/www/html/cacti/user_group_admin.php:2270 #: /var/www/html/cacti/utilities.php:666 /var/www/html/cacti/utilities.php:1367 #: /var/www/html/cacti/utilities.php:1649 #: /var/www/html/cacti/utilities.php:1694 #: /var/www/html/cacti/utilities.php:2369 #: /var/www/html/cacti/utilities.php:2620 #: /var/www/html/cacti/utilities.php:2633 msgid "Any" msgstr "Alle" #: /var/www/html/cacti/aggregate_graphs.php:1368 #: /var/www/html/cacti/aggregate_graphs.php:1480 #: /var/www/html/cacti/automation_graph_rules.php:910 #: /var/www/html/cacti/automation_graph_rules.php:911 #: /var/www/html/cacti/automation_networks.php:448 #: /var/www/html/cacti/automation_networks.php:660 #: /var/www/html/cacti/automation_tree_rules.php:853 #: /var/www/html/cacti/data_sources.php:824 #: /var/www/html/cacti/data_sources.php:1211 #: /var/www/html/cacti/data_sources.php:1436 #: /var/www/html/cacti/data_templates.php:969 #: /var/www/html/cacti/graph_view.php:794 /var/www/html/cacti/graphs.php:358 #: /var/www/html/cacti/graphs.php:1365 /var/www/html/cacti/graphs.php:1374 #: /var/www/html/cacti/graphs.php:1708 /var/www/html/cacti/graphs_items.php:331 #: /var/www/html/cacti/graphs_items.php:443 /var/www/html/cacti/host.php:1092 #: /var/www/html/cacti/host.php:1103 /var/www/html/cacti/host.php:1460 #: /var/www/html/cacti/host.php:1495 #: /var/www/html/cacti/include/global_arrays.php:395 #: /var/www/html/cacti/include/global_arrays.php:448 #: /var/www/html/cacti/include/global_arrays.php:531 #: /var/www/html/cacti/include/global_arrays.php:674 #: /var/www/html/cacti/include/global_arrays.php:697 #: /var/www/html/cacti/include/global_arrays.php:1433 #: /var/www/html/cacti/include/global_form.php:402 #: /var/www/html/cacti/include/global_form.php:708 #: /var/www/html/cacti/include/global_form.php:716 #: /var/www/html/cacti/include/global_form.php:724 #: /var/www/html/cacti/include/global_form.php:762 #: /var/www/html/cacti/include/global_form.php:769 #: /var/www/html/cacti/include/global_form.php:795 #: /var/www/html/cacti/include/global_form.php:824 #: /var/www/html/cacti/include/global_form.php:832 #: /var/www/html/cacti/include/global_form.php:1014 #: /var/www/html/cacti/include/global_form.php:1023 #: /var/www/html/cacti/include/global_form.php:2091 #: /var/www/html/cacti/include/global_form.php:2133 #: /var/www/html/cacti/include/global_settings.php:461 #: /var/www/html/cacti/include/global_settings.php:469 #: /var/www/html/cacti/include/global_settings.php:477 #: /var/www/html/cacti/include/global_settings.php:987 #: /var/www/html/cacti/include/global_settings.php:1411 #: /var/www/html/cacti/lib/api_automation.php:152 #: /var/www/html/cacti/lib/api_automation.php:429 #: /var/www/html/cacti/lib/api_automation.php:446 #: /var/www/html/cacti/lib/api_automation.php:584 #: /var/www/html/cacti/lib/api_automation.php:1030 #: /var/www/html/cacti/lib/html.php:1763 /var/www/html/cacti/lib/html.php:1781 #: /var/www/html/cacti/lib/html_form.php:320 #: /var/www/html/cacti/lib/html_graph.php:386 #: /var/www/html/cacti/lib/html_reports.php:337 #: /var/www/html/cacti/lib/html_reports.php:389 #: /var/www/html/cacti/lib/html_reports.php:401 #: /var/www/html/cacti/lib/html_reports.php:410 #: /var/www/html/cacti/lib/html_reports.php:420 #: /var/www/html/cacti/lib/html_tree.php:844 #: /var/www/html/cacti/settings.php:334 /var/www/html/cacti/settings.php:353 #: /var/www/html/cacti/settings.php:379 /var/www/html/cacti/user_admin.php:2556 #: /var/www/html/cacti/user_admin.php:2749 #: /var/www/html/cacti/user_group_admin.php:2163 #: /var/www/html/cacti/user_group_admin.php:2271 #: /var/www/html/cacti/utilities.php:1650 msgid "None" msgstr "Geen" #: /var/www/html/cacti/aggregate_graphs.php:1465 msgid "The title for the Aggregate Graphs" msgstr "De titel van de geaggregeerde grafieken" #: /var/www/html/cacti/aggregate_graphs.php:1466 msgid "The internal database identifier for this object" msgstr "De interne database identifier voor dit object" #: /var/www/html/cacti/aggregate_graphs.php:1467 #: /var/www/html/cacti/graphs.php:1093 msgid "Aggregate Template" msgstr "Geaggregeerde template" #: /var/www/html/cacti/aggregate_graphs.php:1467 msgid "The Aggregate Template that this Aggregate Graphs is based upon" msgstr "" "Het geaggregeerde template waarop dit geaggregeerde template is gebaseerd" #: /var/www/html/cacti/aggregate_graphs.php:1486 msgid "No Aggregate Graphs Found" msgstr "Geen geaggregeerde grafieken gevonden" #: /var/www/html/cacti/aggregate_items.php:346 msgid "Override Values for Graph Item" msgstr "Overrule de waarden voor dit grafiek item" #: /var/www/html/cacti/aggregate_items.php:357 #: /var/www/html/cacti/lib/api_aggregate.php:1485 msgid "Override this Value" msgstr "Overrule deze waarde" #: /var/www/html/cacti/aggregate_templates.php:307 msgid "Click 'Continue' to Delete the following Aggregate Graph Template(s)." msgstr "" "Klik op 'Volgende' om de volgende geaggregeerde grafiektemplate te " "verwijderen." #: /var/www/html/cacti/aggregate_templates.php:312 msgid "Delete Color Template(s)" msgstr "Verwijder kleuren template(s)" #: /var/www/html/cacti/aggregate_templates.php:315 msgid "You must select at least one Aggregate Graph Template." msgstr "U moet tenminste een geaggregeerde grafiektemplate selecteren." #: /var/www/html/cacti/aggregate_templates.php:351 #, php-format msgid "Aggregate Template [edit: %s]" msgstr "Aggregeer template [wijzig: %s]" #: /var/www/html/cacti/aggregate_templates.php:353 msgid "Aggregate Template [new]" msgstr "Aggregeer template [nieuw]" #: /var/www/html/cacti/aggregate_templates.php:531 #: /var/www/html/cacti/aggregate_templates.php:630 #: /var/www/html/cacti/lib/functions.php:2686 msgid "Aggregate Templates" msgstr "Aggregeer template" #: /var/www/html/cacti/aggregate_templates.php:544 #: /var/www/html/cacti/automation_templates.php:398 #: /var/www/html/cacti/automation_templates.php:481 #: /var/www/html/cacti/color_templates.php:553 #: /var/www/html/cacti/include/global_arrays.php:799 #: /var/www/html/cacti/include/global_arrays.php:857 #: /var/www/html/cacti/install/index.php:946 #: /var/www/html/cacti/user_admin.php:2847 #: /var/www/html/cacti/user_group_admin.php:2369 msgid "Templates" msgstr "Templates" #: /var/www/html/cacti/aggregate_templates.php:570 #: /var/www/html/cacti/cdef.php:765 /var/www/html/cacti/color.php:558 #: /var/www/html/cacti/color_templates.php:472 #: /var/www/html/cacti/data_sources.php:1278 #: /var/www/html/cacti/gprint_presets.php:285 #: /var/www/html/cacti/graph_templates.php:652 /var/www/html/cacti/vdef.php:698 msgid "Has Graphs" msgstr "Heeft grafieken" #: /var/www/html/cacti/aggregate_templates.php:639 #: /var/www/html/cacti/color_templates.php:550 msgid "Template Title" msgstr "Templatetitel" #: /var/www/html/cacti/aggregate_templates.php:640 msgid "" "Aggregate Templates that are in use can not be Deleted. In use is defined " "as being referenced by an Aggregate." msgstr "" "Geaggregeerde templates die in gebruik zijn kunnen niet worden verwijderd. " "In gebruik betekent dat ze zijn gekoppeld aan een aggregaat." #: /var/www/html/cacti/aggregate_templates.php:640 #: /var/www/html/cacti/cdef.php:874 /var/www/html/cacti/color.php:702 #: /var/www/html/cacti/color_templates.php:551 #: /var/www/html/cacti/data_input.php:733 #: /var/www/html/cacti/data_queries.php:1241 #: /var/www/html/cacti/data_source_profiles.php:964 #: /var/www/html/cacti/data_sources.php:1408 #: /var/www/html/cacti/data_templates.php:948 #: /var/www/html/cacti/gprint_presets.php:394 #: /var/www/html/cacti/graph_templates.php:766 #: /var/www/html/cacti/host_templates.php:814 /var/www/html/cacti/vdef.php:864 msgid "Deletable" msgstr "Verwijderbaar" #: /var/www/html/cacti/aggregate_templates.php:641 #: /var/www/html/cacti/cdef.php:875 /var/www/html/cacti/color.php:703 #: /var/www/html/cacti/data_queries.php:994 #: /var/www/html/cacti/data_queries.php:1242 #: /var/www/html/cacti/gprint_presets.php:395 #: /var/www/html/cacti/graph_templates.php:767 /var/www/html/cacti/vdef.php:865 msgid "Graphs Using" msgstr "Grafiek gebruikt" #: /var/www/html/cacti/aggregate_templates.php:642 #: /var/www/html/cacti/graph_view.php:621 #: /var/www/html/cacti/include/global_arrays.php:759 #: /var/www/html/cacti/include/global_arrays.php:1095 #: /var/www/html/cacti/include/global_form.php:1317 #: /var/www/html/cacti/include/global_form.php:1545 #: /var/www/html/cacti/lib/html_reports.php:406 #: /var/www/html/cacti/tree.php:1452 msgid "Graph Template" msgstr "Grafiektemplate" #: /var/www/html/cacti/aggregate_templates.php:664 msgid "No Aggregate Templates Found" msgstr "Geen geaggregeerde template gevonden" #: /var/www/html/cacti/auth_changepassword.php:106 msgid "You cannot use a previously entered password!" msgstr "U kunt niet een eerder gebruikt wachtwoord gebruiken!" #: /var/www/html/cacti/auth_changepassword.php:113 msgid "Your new passwords do not match, please retype." msgstr "Uw nieuwe wachtwoorden komen niet overeen. Voer deze opnieuw in." #: /var/www/html/cacti/auth_changepassword.php:120 msgid "Your current password is not correct. Please try again." msgstr "Uw huidige wachtwoord is niet correct. Probeert u het opnieuw." #: /var/www/html/cacti/auth_changepassword.php:127 msgid "" "Your new password cannot be the same as the old password. Please try again." msgstr "" "Uw nieuwe wachtwoord kan niet hetzelfde zijn als uw oude wachtwoord. " "Probeert u het opnieuw." #: /var/www/html/cacti/auth_changepassword.php:221 msgid "Forced password change" msgstr "Verplichte wachtwoordwijziging" #: /var/www/html/cacti/auth_changepassword.php:225 msgid "Password requirements include:" msgstr "Wachtwoordvereisten bevatten:" #: /var/www/html/cacti/auth_changepassword.php:229 #, php-format msgid "Must be at least %d characters in length" msgstr "Moet op zijn minst %d karakters lang zijn" #: /var/www/html/cacti/auth_changepassword.php:233 msgid "Must include mixed case" msgstr "Moet hoofdletters en kleine letters bevatten" #: /var/www/html/cacti/auth_changepassword.php:237 msgid "Must include at least 1 number" msgstr "Moet tenminste 1 getal bevatten" #: /var/www/html/cacti/auth_changepassword.php:241 msgid "Must include at least 1 special character" msgstr "Moet tenminste 1 speciaal karakter bevatten" #: /var/www/html/cacti/auth_changepassword.php:245 #, php-format msgid "Cannot be reused for %d password changes" msgstr "Kan niet worden hergebruikt voor %d wachtwoord wijzigingen" #: /var/www/html/cacti/auth_changepassword.php:255 #: /var/www/html/cacti/auth_changepassword.php:308 #: /var/www/html/cacti/include/global_form.php:1462 #: /var/www/html/cacti/lib/functions.php:1964 msgid "Change Password" msgstr "Wijzig wachtwoord" #: /var/www/html/cacti/auth_changepassword.php:314 msgid "Please enter your current password and your new
    Cacti password." msgstr "Voer alstublieft uw huidige en uw nieuwe
    Cacti wachtwoord in." #: /var/www/html/cacti/auth_changepassword.php:319 msgid "Current password" msgstr "Huidige wachtwoord" #: /var/www/html/cacti/auth_changepassword.php:323 msgid "New password" msgstr "Nieuw wachtwoord" #: /var/www/html/cacti/auth_changepassword.php:327 msgid "Confirm new password" msgstr "Bevestig nieuw wachtwoord" #: /var/www/html/cacti/auth_changepassword.php:331 #: /var/www/html/cacti/auth_profile.php:433 #: /var/www/html/cacti/auth_profile.php:464 #: /var/www/html/cacti/graphs_new.php:565 #: /var/www/html/cacti/lib/html_form.php:1154 #: /var/www/html/cacti/lib/html_form.php:1163 #: /var/www/html/cacti/lib/html_graph.php:194 #: /var/www/html/cacti/lib/html_tree.php:659 #: /var/www/html/cacti/settings.php:303 msgid "Save" msgstr "Opslaan" #: /var/www/html/cacti/auth_changepassword.php:340 #: /var/www/html/cacti/auth_login.php:671 #, php-format msgid "Version %1$s | %2$s" msgstr "Versie %1$s | %2$s" #: /var/www/html/cacti/auth_login.php:50 msgid "" "Web Basic Authentication configured, but no username was passed from the web " "server. Please make sure you have authentication enabled on the web server." msgstr "" "Web Basic Authentication is geconfigureerd, maar geen gebruikersnaam was " "doorgegeven aan de webserver. Controleer of u authenticatie heeft " "ingeschakeld op de webserver." #: /var/www/html/cacti/auth_login.php:113 #, php-format msgid "" "%s authenticated by Web Server, but both Template and Guest Users are not " "defined in Cacti." msgstr "" "%s geautoriseerd door de webserver, maar zowel template als gast gebruikers " "zijn niet gedefinieerd in Cacti." #: /var/www/html/cacti/auth_login.php:133 #: /var/www/html/cacti/auth_login.php:427 #, php-format msgid "LDAP Search Error: %s" msgstr "LDAP zoekfoutmelding: %s" #: /var/www/html/cacti/auth_login.php:159 #: /var/www/html/cacti/auth_login.php:467 #, php-format msgid "LDAP Error: %s" msgstr "LDAP foutmelding: %s" #: /var/www/html/cacti/auth_login.php:231 #: /var/www/html/cacti/auth_login.php:457 #, php-format msgid "Template user %s does not exist." msgstr "Template gebruiker %s bestaat niet." #: /var/www/html/cacti/auth_login.php:253 #, php-format msgid "Guest user %s does not exist." msgstr "Gastgebruiker %s bestaat niet." #: /var/www/html/cacti/auth_login.php:289 msgid "Access Denied, user account disabled." msgstr "Toegang geweigerd, gebruikersaccount is uitgeschakeld." #: /var/www/html/cacti/auth_login.php:380 msgid "Access Denied, please contact you Cacti Administrator." msgstr "Toegang geweigerd, neem alstublieft contact op uw Cacti beheerder." #: /var/www/html/cacti/auth_login.php:405 msgid "Cacti" msgstr "Cacti" #: /var/www/html/cacti/auth_login.php:561 #: /var/www/html/cacti/lib/html_tree.php:152 msgid "Login to Cacti" msgstr "Login in Cacti" #: /var/www/html/cacti/auth_login.php:573 msgid "User Login" msgstr "Gebruikerlogin" #: /var/www/html/cacti/auth_login.php:585 msgid "Enter your Username and Password below" msgstr "Voer uw gebruikersnaam en wachtwoord in" #: /var/www/html/cacti/auth_login.php:591 #: /var/www/html/cacti/auth_login.php:594 #: /var/www/html/cacti/include/global_settings.php:1274 #: /var/www/html/cacti/lib/functions.php:4003 msgid "Username" msgstr "Gebruikersnaam" #: /var/www/html/cacti/auth_login.php:599 #: /var/www/html/cacti/include/global_form.php:1429 #: /var/www/html/cacti/lib/functions.php:4004 msgid "Password" msgstr "Wachtwoord" #: /var/www/html/cacti/auth_login.php:611 #: /var/www/html/cacti/include/global_settings.php:1635 #: /var/www/html/cacti/lib/auth.php:338 /var/www/html/cacti/lib/auth.php:360 #: /var/www/html/cacti/lib/auth.php:371 msgid "Local" msgstr "Lokaal" #: /var/www/html/cacti/auth_login.php:615 #: /var/www/html/cacti/include/global_arrays.php:685 #: /var/www/html/cacti/lib/auth.php:372 msgid "LDAP" msgstr "LDAP" #: /var/www/html/cacti/auth_login.php:626 #: /var/www/html/cacti/user_admin.php:2279 #: /var/www/html/cacti/user_group_admin.php:675 msgid "Realm" msgstr "Omgeving" #: /var/www/html/cacti/auth_login.php:643 msgid "Keep me signed in" msgstr "Houd mij ingelogd" #: /var/www/html/cacti/auth_login.php:649 msgid "Login" msgstr "Login" #: /var/www/html/cacti/auth_login.php:662 msgid "Invalid User Name/Password Please Retype" msgstr "Ongeldig gebruikersnaam/wachtwoord. Voer alstublieft opnieuw in" #: /var/www/html/cacti/auth_login.php:665 msgid "User Account Disabled" msgstr "Gebruikersaccount uitgeschakeld" #: /var/www/html/cacti/auth_profile.php:184 msgid "User Account Details" msgstr "Details gebruikersaccount" #: /var/www/html/cacti/auth_profile.php:195 #: /var/www/html/cacti/include/global_arrays.php:668 #: /var/www/html/cacti/include/global_session.php:108 #: /var/www/html/cacti/include/global_settings.php:1964 #: /var/www/html/cacti/lib/html.php:1648 /var/www/html/cacti/lib/html.php:1670 msgid "Tree View" msgstr "Boomstructuur" #: /var/www/html/cacti/auth_profile.php:199 #: /var/www/html/cacti/include/global_arrays.php:669 #: /var/www/html/cacti/include/global_session.php:109 #: /var/www/html/cacti/lib/html.php:1655 /var/www/html/cacti/lib/html.php:1679 msgid "List View" msgstr "Lijstweergave" #: /var/www/html/cacti/auth_profile.php:203 #: /var/www/html/cacti/include/global_arrays.php:670 #: /var/www/html/cacti/include/global_session.php:110 #: /var/www/html/cacti/lib/html.php:1662 msgid "Preview View" msgstr "Voorbeeldweergave" #: /var/www/html/cacti/auth_profile.php:216 #: /var/www/html/cacti/include/global_form.php:1405 #: /var/www/html/cacti/user_admin.php:2276 msgid "User Name" msgstr "Gebruikersnaam" #: /var/www/html/cacti/auth_profile.php:217 #: /var/www/html/cacti/include/global_form.php:1406 msgid "The login name for this user." msgstr "De gebruikersnaam van deze gebruiker." #: /var/www/html/cacti/auth_profile.php:224 #: /var/www/html/cacti/include/global_form.php:1413 #: /var/www/html/cacti/user_admin.php:2277 #: /var/www/html/cacti/user_group_admin.php:675 #: /var/www/html/cacti/utilities.php:773 msgid "Full Name" msgstr "Volledige naam" #: /var/www/html/cacti/auth_profile.php:225 #: /var/www/html/cacti/include/global_form.php:1414 msgid "" "A more descriptive name for this user, that can include spaces or special " "characters." msgstr "" "Een beschrijving van deze gebruiker, mag spaties en speciale karakters " "bevatten." #: /var/www/html/cacti/auth_profile.php:232 #: /var/www/html/cacti/include/global_form.php:1421 msgid "Email Address" msgstr "E-mailadres" #: /var/www/html/cacti/auth_profile.php:233 msgid "An Email Address you be reached at." msgstr "Een e-mailadres waarop wij u kunnen bereiken." #: /var/www/html/cacti/auth_profile.php:240 #: /var/www/html/cacti/auth_profile.php:242 msgid "Clear Private Data" msgstr "Privégegevens wissen" #: /var/www/html/cacti/auth_profile.php:241 msgid "Clear Private Data including Column sizing." msgstr "Privégegevens wissen inclusief kolomgrootte." #: /var/www/html/cacti/auth_profile.php:251 #: /var/www/html/cacti/auth_profile.php:253 msgid "Logout Everywhere" msgstr "Overal uitloggen" #: /var/www/html/cacti/auth_profile.php:252 msgid "Clear all your Login Session Tokens." msgstr "Verwijder al uw login sessie tokens." #: /var/www/html/cacti/auth_profile.php:273 #: /var/www/html/cacti/user_admin.php:1940 #: /var/www/html/cacti/user_group_admin.php:1671 msgid "User Settings" msgstr "Gebruikersinstellingen" #: /var/www/html/cacti/auth_profile.php:330 msgid "Private Data Cleared" msgstr "Privégegevens verwijderd" #: /var/www/html/cacti/auth_profile.php:330 msgid "Your Private Data has been cleared." msgstr "Uw privégegevens zijn opgeruimd." #: /var/www/html/cacti/auth_profile.php:350 msgid "All your login sessions have been cleared." msgstr "Al uw login sessie zijn verwijderd." #: /var/www/html/cacti/auth_profile.php:350 msgid "User Sessions Cleared" msgstr "Login sessies verwijderd" #: /var/www/html/cacti/automation_devices.php:31 msgid "Add Device" msgstr "Apparaat toevoegen" #: /var/www/html/cacti/automation_devices.php:39 #: /var/www/html/cacti/automation_devices.php:271 #: /var/www/html/cacti/automation_devices.php:389 #: /var/www/html/cacti/automation_devices.php:399 #: /var/www/html/cacti/automation_devices.php:621 #: /var/www/html/cacti/automation_devices.php:622 #: /var/www/html/cacti/host.php:1534 #: /var/www/html/cacti/lib/api_automation.php:174 #: /var/www/html/cacti/lib/api_automation.php:1052 #: /var/www/html/cacti/lib/html_utility.php:852 msgid "Down" msgstr "Offline" #: /var/www/html/cacti/automation_devices.php:40 #: /var/www/html/cacti/automation_devices.php:271 #: /var/www/html/cacti/automation_devices.php:391 #: /var/www/html/cacti/automation_devices.php:401 #: /var/www/html/cacti/automation_devices.php:621 #: /var/www/html/cacti/automation_devices.php:622 #: /var/www/html/cacti/host.php:1533 #: /var/www/html/cacti/lib/api_automation.php:173 #: /var/www/html/cacti/lib/api_automation.php:1051 #: /var/www/html/cacti/lib/html_utility.php:858 msgid "Up" msgstr "Online" #: /var/www/html/cacti/automation_devices.php:90 msgid "Added manually through device automation interface." msgstr "Handmatig toegevoegd door apparaat automatiseringsinterface." #: /var/www/html/cacti/automation_devices.php:106 msgid "Added to Cacti" msgstr "Toegevoegd aan Cacti" #: /var/www/html/cacti/automation_devices.php:106 #: /var/www/html/cacti/automation_devices.php:108 #: /var/www/html/cacti/data_sources.php:822 #: /var/www/html/cacti/graph_view.php:621 /var/www/html/cacti/graphs.php:1370 #: /var/www/html/cacti/include/global_arrays.php:755 #: /var/www/html/cacti/include/global_arrays.php:800 #: /var/www/html/cacti/include/global_arrays.php:1549 #: /var/www/html/cacti/lib/api_automation.php:424 #: /var/www/html/cacti/lib/functions.php:3998 #: /var/www/html/cacti/lib/html.php:1758 /var/www/html/cacti/lib/html.php:1788 #: /var/www/html/cacti/lib/html_reports.php:396 #: /var/www/html/cacti/utilities.php:1500 msgid "Device" msgstr "Apparaat" #: /var/www/html/cacti/automation_devices.php:108 msgid "Not Added to Cacti" msgstr "Niet toegevoegd aan Cacti" #: /var/www/html/cacti/automation_devices.php:177 msgid "Click 'Continue' to add the following Discovered device(s)." msgstr "" "Klik op 'Volgende' om de volgende gedetecteerde appara(a)t(en) toe te voegen." #: /var/www/html/cacti/automation_devices.php:183 #: /var/www/html/cacti/pollers.php:603 msgid "Pollers" msgstr "Pollers" #: /var/www/html/cacti/automation_devices.php:187 msgid "Select Template" msgstr "Selecteer template" #: /var/www/html/cacti/automation_devices.php:193 #: /var/www/html/cacti/automation_templates.php:279 #: /var/www/html/cacti/automation_templates.php:491 msgid "Availability Method" msgstr "Beschikbaarheid van methode" #: /var/www/html/cacti/automation_devices.php:199 msgid "Add Device(s)" msgstr "Appara(a)t(en) toevoegen" #: /var/www/html/cacti/automation_devices.php:202 msgid "You must select at least one Device." msgstr "U moet tenminste een apparaat selecteren." #: /var/www/html/cacti/automation_devices.php:239 #: /var/www/html/cacti/automation_devices.php:529 #: /var/www/html/cacti/host.php:1446 /var/www/html/cacti/host.php:1540 #: /var/www/html/cacti/host.php:1640 #: /var/www/html/cacti/include/global_arrays.php:787 #: /var/www/html/cacti/include/global_arrays.php:839 #: /var/www/html/cacti/lib/api_automation.php:180 #: /var/www/html/cacti/lib/api_automation.php:269 #: /var/www/html/cacti/lib/api_automation.php:475 #: /var/www/html/cacti/lib/api_automation.php:558 #: /var/www/html/cacti/lib/api_automation.php:1161 #: /var/www/html/cacti/lib/functions.php:2284 #: /var/www/html/cacti/pollers.php:617 /var/www/html/cacti/sites.php:495 #: /var/www/html/cacti/tree.php:1762 /var/www/html/cacti/user_admin.php:1222 #: /var/www/html/cacti/user_admin.php:2762 #: /var/www/html/cacti/user_group_admin.php:958 #: /var/www/html/cacti/user_group_admin.php:2284 #: /var/www/html/cacti/utilities.php:276 msgid "Devices" msgstr "Apparaten" #: /var/www/html/cacti/automation_devices.php:248 msgid "Device Name" msgstr "Apparaatnaam" #: /var/www/html/cacti/automation_devices.php:249 msgid "IP" msgstr "IP" #: /var/www/html/cacti/automation_devices.php:250 msgid "SNMP Name" msgstr "SNMP naam" #: /var/www/html/cacti/automation_devices.php:251 #: /var/www/html/cacti/include/global_settings.php:1631 msgid "Location" msgstr "Locatie" #: /var/www/html/cacti/automation_devices.php:252 msgid "Contact" msgstr "Contactgegevens" #: /var/www/html/cacti/automation_devices.php:253 #: /var/www/html/cacti/include/global_form.php:952 #: /var/www/html/cacti/include/global_form.php:988 #: /var/www/html/cacti/include/global_form.php:1281 #: /var/www/html/cacti/include/global_form.php:1624 #: /var/www/html/cacti/install/index.php:947 #: /var/www/html/cacti/lib/api_automation.php:276 #: /var/www/html/cacti/lib/api_automation.php:1168 #: /var/www/html/cacti/managers.php:216 /var/www/html/cacti/tree.php:782 #: /var/www/html/cacti/user_admin.php:1089 #: /var/www/html/cacti/user_admin.php:1230 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:1903 msgid "Description" msgstr "Omschrijving" #: /var/www/html/cacti/automation_devices.php:254 #: /var/www/html/cacti/automation_devices.php:499 msgid "OS" msgstr "OS" #: /var/www/html/cacti/automation_devices.php:255 #: /var/www/html/cacti/host.php:1607 #: /var/www/html/cacti/include/global_arrays.php:396 msgid "Uptime" msgstr "Uptime" #: /var/www/html/cacti/automation_devices.php:256 #: /var/www/html/cacti/automation_devices.php:514 #: /var/www/html/cacti/utilities.php:1695 msgid "SNMP" msgstr "SNMP" #: /var/www/html/cacti/automation_devices.php:257 #: /var/www/html/cacti/automation_devices.php:484 #: /var/www/html/cacti/automation_graph_rules.php:775 #: /var/www/html/cacti/automation_networks.php:1001 #: /var/www/html/cacti/automation_tree_rules.php:721 #: /var/www/html/cacti/data_sources.php:1231 #: /var/www/html/cacti/data_templates.php:952 /var/www/html/cacti/host.php:727 #: /var/www/html/cacti/host.php:826 /var/www/html/cacti/host.php:1525 #: /var/www/html/cacti/host.php:1595 #: /var/www/html/cacti/lib/api_automation.php:165 #: /var/www/html/cacti/lib/api_automation.php:278 #: /var/www/html/cacti/lib/api_automation.php:568 #: /var/www/html/cacti/lib/api_automation.php:1043 #: /var/www/html/cacti/lib/api_automation.php:1171 #: /var/www/html/cacti/lib/html_reports.php:1428 #: /var/www/html/cacti/managers.php:218 /var/www/html/cacti/plugins.php:333 #: /var/www/html/cacti/plugins.php:425 /var/www/html/cacti/pollers.php:615 #: /var/www/html/cacti/user_admin.php:1230 #: /var/www/html/cacti/user_group_admin.php:966 msgid "Status" msgstr "Status" #: /var/www/html/cacti/automation_devices.php:258 msgid "Last Check" msgstr "Laatst gecontroleerd" #: /var/www/html/cacti/automation_devices.php:285 #: /var/www/html/cacti/automation_devices.php:613 msgid "Not Detected" msgstr "Niet gedetecteerd" #: /var/www/html/cacti/automation_devices.php:303 #: /var/www/html/cacti/host.php:1683 msgid "No Devices Found" msgstr "Geen apparaat gevonden" #: /var/www/html/cacti/automation_devices.php:439 msgid "Discovery Filters" msgstr "" #: /var/www/html/cacti/automation_devices.php:454 msgid "Network" msgstr "Netwerk" #: /var/www/html/cacti/automation_devices.php:470 msgid "Reset fields to defaults" msgstr "Stel velden opnieuw in" #: /var/www/html/cacti/automation_devices.php:475 #: /var/www/html/cacti/color.php:570 /var/www/html/cacti/host.php:1511 #: /var/www/html/cacti/lib/html_form.php:1169 msgid "Export" msgstr "Exporteer" #: /var/www/html/cacti/automation_devices.php:475 msgid "Export to a file" msgstr "Exporteer naar een bestand" #: /var/www/html/cacti/automation_devices.php:476 #: /var/www/html/cacti/lib/clog_webapi.php:189 #: /var/www/html/cacti/lib/clog_webapi.php:420 #: /var/www/html/cacti/managers.php:748 msgid "Purge" msgstr "Legen" #: /var/www/html/cacti/automation_devices.php:476 msgid "Purge Discovered Devices" msgstr "Ontdekte apparaten verwijderen" #: /var/www/html/cacti/automation_devices.php:643 #: /var/www/html/cacti/automation_networks.php:1067 #: /var/www/html/cacti/automation_snmp.php:661 #: /var/www/html/cacti/automation_snmp.php:662 #: /var/www/html/cacti/automation_snmp.php:663 #: /var/www/html/cacti/automation_snmp.php:664 #: /var/www/html/cacti/automation_snmp.php:665 #: /var/www/html/cacti/automation_snmp.php:666 #: /var/www/html/cacti/lib/html.php:1025 #: /var/www/html/cacti/user_admin.php:2291 #: /var/www/html/cacti/utilities.php:419 /var/www/html/cacti/utilities.php:801 #: /var/www/html/cacti/utilities.php:2113 #: /var/www/html/cacti/utilities.php:2210 #: /var/www/html/cacti/utilities.php:2218 #: /var/www/html/cacti/utilities.php:2221 #: /var/www/html/cacti/utilities.php:2224 #: /var/www/html/cacti/utilities.php:2230 #: /var/www/html/cacti/utilities.php:2459 msgid "N/A" msgstr "N/B" #: /var/www/html/cacti/automation_graph_rules.php:29 #: /var/www/html/cacti/automation_snmp.php:30 #: /var/www/html/cacti/automation_tree_rules.php:29 #: /var/www/html/cacti/cdef.php:30 /var/www/html/cacti/color_templates.php:29 #: /var/www/html/cacti/data_templates.php:34 #: /var/www/html/cacti/graph_templates.php:34 /var/www/html/cacti/graphs.php:63 #: /var/www/html/cacti/host_templates.php:31 #: /var/www/html/cacti/include/global_arrays.php:1346 #: /var/www/html/cacti/vdef.php:30 msgid "Duplicate" msgstr "Dupliceer" #: /var/www/html/cacti/automation_graph_rules.php:30 #: /var/www/html/cacti/automation_networks.php:33 #: /var/www/html/cacti/automation_tree_rules.php:30 #: /var/www/html/cacti/data_sources.php:38 /var/www/html/cacti/host.php:39 #: /var/www/html/cacti/include/global_arrays.php:1347 #: /var/www/html/cacti/include/global_settings.php:1232 #: /var/www/html/cacti/links.php:29 /var/www/html/cacti/managers.php:29 #: /var/www/html/cacti/managers.php:35 /var/www/html/cacti/plugins.php:29 #: /var/www/html/cacti/pollers.php:31 /var/www/html/cacti/user_admin.php:30 #: /var/www/html/cacti/user_domains.php:31 #: /var/www/html/cacti/user_domains.php:402 #: /var/www/html/cacti/user_group_admin.php:32 msgid "Enable" msgstr "Inschakelen" #: /var/www/html/cacti/automation_graph_rules.php:31 #: /var/www/html/cacti/automation_networks.php:32 #: /var/www/html/cacti/automation_tree_rules.php:31 #: /var/www/html/cacti/data_sources.php:39 /var/www/html/cacti/host.php:40 #: /var/www/html/cacti/include/global_arrays.php:1348 #: /var/www/html/cacti/links.php:30 /var/www/html/cacti/managers.php:30 #: /var/www/html/cacti/managers.php:34 /var/www/html/cacti/plugins.php:30 #: /var/www/html/cacti/pollers.php:30 /var/www/html/cacti/user_admin.php:31 #: /var/www/html/cacti/user_domains.php:30 #: /var/www/html/cacti/user_group_admin.php:33 msgid "Disable" msgstr "Uitschakelen" #: /var/www/html/cacti/automation_graph_rules.php:256 msgid "Press 'Continue' to delete the following Graph Rules." msgstr "Klik op 'Volgende' om de volgende grafiekregels te verwijderen." #: /var/www/html/cacti/automation_graph_rules.php:263 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Graph Rules." msgstr "" "Klik op 'Volgende' om de volgende regels te kopiëren. U kunt optioneel de " "indeling van de titel voor de nieuwe grafiekregels wijzigen." #: /var/www/html/cacti/automation_graph_rules.php:265 #: /var/www/html/cacti/automation_tree_rules.php:262 #: /var/www/html/cacti/graphs.php:880 /var/www/html/cacti/graphs.php:891 msgid "Title Format" msgstr "Indeling titel" #: /var/www/html/cacti/automation_graph_rules.php:265 #: /var/www/html/cacti/automation_tree_rules.php:262 msgid "rule_name" msgstr "rule_name" #: /var/www/html/cacti/automation_graph_rules.php:271 #: /var/www/html/cacti/automation_tree_rules.php:268 msgid "Click 'Continue' to enable the following Rule(s)." msgstr "Klik op 'Volgende' om de volgende regels in te schakelen." #: /var/www/html/cacti/automation_graph_rules.php:273 #: /var/www/html/cacti/automation_tree_rules.php:270 msgid "Make sure, that those rules have successfully been tested!" msgstr "Let op dat deze regels goed zijn getest!" #: /var/www/html/cacti/automation_graph_rules.php:279 #: /var/www/html/cacti/automation_tree_rules.php:276 msgid "Click 'Continue' to disable the following Rule(s)." msgstr "Klik op 'Volgende' om de volgende regel(s) uit te schakelen." #: /var/www/html/cacti/automation_graph_rules.php:286 #: /var/www/html/cacti/automation_tree_rules.php:283 msgid "You must select at least one Rule." msgstr "U moet tenminste een regel selecteren." #: /var/www/html/cacti/automation_graph_rules.php:289 #: /var/www/html/cacti/automation_tree_rules.php:286 msgid "Apply requested action" msgstr "Gevraagde actie toepassen" #: /var/www/html/cacti/automation_graph_rules.php:419 #: /var/www/html/cacti/automation_tree_rules.php:471 msgid "Are You Sure?" msgstr "Weet u het zeker?" #: /var/www/html/cacti/automation_graph_rules.php:419 #, php-format msgid "Are you sure you want to delete the Rule '%s'?" msgstr "Weet u zeker dat u de regel '%s' wilt verwijderen?" #: /var/www/html/cacti/automation_graph_rules.php:538 #, php-format msgid "Rule Selection [edit: %s]" msgstr "Regel selectie [wijzig: %s]" #: /var/www/html/cacti/automation_graph_rules.php:544 msgid "Rule Selection [new]" msgstr "Regel selectie [nieuw: %s]" #: /var/www/html/cacti/automation_graph_rules.php:554 #: /var/www/html/cacti/automation_graph_rules.php:569 #: /var/www/html/cacti/automation_graph_rules.php:585 #: /var/www/html/cacti/automation_tree_rules.php:379 #: /var/www/html/cacti/automation_tree_rules.php:529 msgid "Don't Show" msgstr "Niet tonen" #: /var/www/html/cacti/automation_graph_rules.php:554 msgid "Rule Details." msgstr "Regeldetails." #: /var/www/html/cacti/automation_graph_rules.php:569 msgid "Matching Devices." msgstr "Overeenkomende apparaten." #: /var/www/html/cacti/automation_graph_rules.php:585 msgid "Matching Objects." msgstr "Overeenkomende objecten." #: /var/www/html/cacti/automation_graph_rules.php:625 msgid "Device Selection Criteria" msgstr "Apparaat selectiecriteria" #: /var/www/html/cacti/automation_graph_rules.php:631 msgid "Graph Creation Criteria" msgstr "Criteria voor het maken van een grafiek" #: /var/www/html/cacti/automation_graph_rules.php:738 #: /var/www/html/cacti/automation_graph_rules.php:785 #: /var/www/html/cacti/automation_graph_rules.php:890 #: /var/www/html/cacti/include/global_arrays.php:810 #: /var/www/html/cacti/lib/functions.php:2740 msgid "Graph Rules" msgstr "Grafiekregels" #: /var/www/html/cacti/automation_graph_rules.php:753 #: /var/www/html/cacti/automation_graph_rules.php:901 #: /var/www/html/cacti/include/global_arrays.php:1098 #: /var/www/html/cacti/include/global_form.php:1555 #: /var/www/html/cacti/include/global_form.php:2170 msgid "Data Query" msgstr "Data query" #: /var/www/html/cacti/automation_graph_rules.php:780 #: /var/www/html/cacti/automation_graph_rules.php:903 #: /var/www/html/cacti/automation_graph_rules.php:919 #: /var/www/html/cacti/automation_networks.php:523 #: /var/www/html/cacti/automation_tree_rules.php:726 #: /var/www/html/cacti/automation_tree_rules.php:846 #: /var/www/html/cacti/automation_tree_rules.php:864 #: /var/www/html/cacti/data_sources.php:1236 /var/www/html/cacti/host.php:1530 #: /var/www/html/cacti/include/global_arrays.php:718 #: /var/www/html/cacti/include/global_form.php:1437 #: /var/www/html/cacti/include/global_settings.php:355 #: /var/www/html/cacti/lib/api_automation.php:170 #: /var/www/html/cacti/lib/api_automation.php:1048 #: /var/www/html/cacti/lib/html_reports.php:1433 #: /var/www/html/cacti/lib/html_reports.php:1525 #: /var/www/html/cacti/lib/html_reports.php:1536 #: /var/www/html/cacti/lib/html_reports.php:1572 #: /var/www/html/cacti/links.php:380 /var/www/html/cacti/managers.php:243 #: /var/www/html/cacti/managers.php:598 /var/www/html/cacti/user_admin.php:1089 #: /var/www/html/cacti/user_admin.php:1101 #: /var/www/html/cacti/user_admin.php:2278 #: /var/www/html/cacti/user_domains.php:341 #: /var/www/html/cacti/user_domains.php:716 #: /var/www/html/cacti/user_group_admin.php:87 #: /var/www/html/cacti/user_group_admin.php:675 #: /var/www/html/cacti/user_group_admin.php:690 #: /var/www/html/cacti/user_group_admin.php:1907 #: /var/www/html/cacti/utilities.php:2245 msgid "Enabled" msgstr "Ingeschakeld" #: /var/www/html/cacti/automation_graph_rules.php:781 #: /var/www/html/cacti/automation_graph_rules.php:919 #: /var/www/html/cacti/automation_networks.php:1016 #: /var/www/html/cacti/automation_tree_rules.php:727 #: /var/www/html/cacti/automation_tree_rules.php:864 #: /var/www/html/cacti/data_sources.php:1237 #: /var/www/html/cacti/data_templates.php:971 /var/www/html/cacti/host.php:1531 #: /var/www/html/cacti/include/global_arrays.php:717 #: /var/www/html/cacti/include/global_arrays.php:1274 #: /var/www/html/cacti/include/global_arrays.php:1557 #: /var/www/html/cacti/include/global_settings.php:355 #: /var/www/html/cacti/include/global_settings.php:1108 #: /var/www/html/cacti/include/global_settings.php:1122 #: /var/www/html/cacti/include/global_settings.php:1134 #: /var/www/html/cacti/include/global_settings.php:1159 #: /var/www/html/cacti/include/global_settings.php:1173 #: /var/www/html/cacti/include/global_settings.php:1232 #: /var/www/html/cacti/include/global_settings.php:1813 #: /var/www/html/cacti/lib/api_automation.php:171 #: /var/www/html/cacti/lib/api_automation.php:1049 #: /var/www/html/cacti/lib/html_reports.php:1434 #: /var/www/html/cacti/lib/html_reports.php:1572 #: /var/www/html/cacti/lib/html_utility.php:848 #: /var/www/html/cacti/managers.php:243 /var/www/html/cacti/managers.php:598 #: /var/www/html/cacti/pollers.php:40 /var/www/html/cacti/user_admin.php:1101 #: /var/www/html/cacti/user_domains.php:402 #: /var/www/html/cacti/user_group_admin.php:690 #: /var/www/html/cacti/utilities.php:2245 msgid "Disabled" msgstr "Uitgeschakeld" #: /var/www/html/cacti/automation_graph_rules.php:899 #: /var/www/html/cacti/automation_tree_rules.php:840 msgid "Rule Name" msgstr "Regelnaam" #: /var/www/html/cacti/automation_graph_rules.php:899 msgid "The name of this rule." msgstr "De naam van deze regel." #: /var/www/html/cacti/automation_graph_rules.php:900 msgid "" "The internal database ID for this rule. Useful in performing debugging and " "automation." msgstr "" "De interne database ID voor deze regel. Handig voor het debuggen en " "automatiseren." #: /var/www/html/cacti/automation_graph_rules.php:902 #: /var/www/html/cacti/include/global_form.php:1809 #: /var/www/html/cacti/include/global_form.php:1888 #: /var/www/html/cacti/include/global_form.php:1986 #: /var/www/html/cacti/include/global_form.php:2181 msgid "Graph Type" msgstr "Grafiektype" #: /var/www/html/cacti/automation_graph_rules.php:925 msgid "No Graph Rules Found" msgstr "Geen grafiekregels gevonden" #: /var/www/html/cacti/automation_networks.php:34 msgid "Discover Now" msgstr "Zoek nu" #: /var/www/html/cacti/automation_networks.php:35 msgid "Cancel Discovery" msgstr "Annuleer zoeken" #: /var/www/html/cacti/automation_networks.php:208 #, php-format msgid "ERROR: You must specify the day of the week. Disabling Network %s!." msgstr "" "FOUT: U moet een dag van de week specificeren. Het netwerk %s wordt " "uitgeschakeld!." #: /var/www/html/cacti/automation_networks.php:214 #, php-format msgid "" "ERROR: You must specify both the Months and Days of Month. Disabling " "Network %s!" msgstr "" "FOUT: U moet zowel een maand als de dag(en) van de maand specificeren. Het " "netwerk %s wordt uitgeschakeld!" #: /var/www/html/cacti/automation_networks.php:220 #, php-format msgid "" "ERROR: You must specify the Months, Weeks of Months, and Days of Week. " "Disabling Network %s!" msgstr "" "FOUT: U moet een maand, week van de maand en dagen van de week specificeren. " "Het netwerk %s wordt uitgeschakeld!" #: /var/www/html/cacti/automation_networks.php:238 #, php-format msgid "ERROR: Network '%s' is Invalid." msgstr "FOUT: Netwerk '%s' is ongeldig." #: /var/www/html/cacti/automation_networks.php:337 msgid "Click 'Continue' to delete the following Network(s)." msgstr "Klik op 'Volgende' om het/de volgende netwerk(en) te verwijderen." #: /var/www/html/cacti/automation_networks.php:344 msgid "Click 'Continue' to enable the following Network(s)." msgstr "Klik op 'Volgende' om het/de volgende netwerk(en) in te schakelen." #: /var/www/html/cacti/automation_networks.php:351 msgid "Click 'Continue' to disable the following Network(s)." msgstr "Klik op 'Volgende' om het/de volgende netwerk(en) uit te schakelen." #: /var/www/html/cacti/automation_networks.php:358 msgid "Click 'Continue' to discover the following Network(s)." msgstr "Klik op 'Volgende' om het/de volgende netwerk(en) op te zoeken." #: /var/www/html/cacti/automation_networks.php:361 msgid "Run discover in debug mode" msgstr "" #: /var/www/html/cacti/automation_networks.php:367 msgid "Click 'Continue' to cancel on going Network Discovery(s)." msgstr "" "Klik op 'Volgende' om het zoeken van het/de volgende netwerk(en) te stoppen." #: /var/www/html/cacti/automation_networks.php:374 msgid "You must select at least one Network." msgstr "U moet tenminste een netwerk selecteren." #: /var/www/html/cacti/automation_networks.php:405 #: /var/www/html/cacti/automation_networks.php:989 #: /var/www/html/cacti/tree.php:1253 msgid "Manual" msgstr "Handmatig" #: /var/www/html/cacti/automation_networks.php:406 #: /var/www/html/cacti/automation_networks.php:990 #: /var/www/html/cacti/include/global_arrays.php:578 #: /var/www/html/cacti/include/global_arrays.php:1571 msgid "Daily" msgstr "Dagelijks" #: /var/www/html/cacti/automation_networks.php:407 #: /var/www/html/cacti/automation_networks.php:991 #: /var/www/html/cacti/include/global_arrays.php:1572 msgid "Weekly" msgstr "Wekelijks" #: /var/www/html/cacti/automation_networks.php:408 #: /var/www/html/cacti/automation_networks.php:992 #: /var/www/html/cacti/include/global_arrays.php:1573 msgid "Monthly" msgstr "Maandelijks" #: /var/www/html/cacti/automation_networks.php:409 #: /var/www/html/cacti/automation_networks.php:993 msgid "Monthly on Day" msgstr "Maandelijks op dag" #: /var/www/html/cacti/automation_networks.php:413 #, php-format msgid "Network Discovery Range [edit: %s]" msgstr "Zoek netwerk binnen bereik [wijzig: %s]" #: /var/www/html/cacti/automation_networks.php:415 msgid "Network Discovery Range [new]" msgstr "Zoek netwerk binnen bereik [nieuw]" #: /var/www/html/cacti/automation_networks.php:422 #: /var/www/html/cacti/include/global_form.php:1857 #: /var/www/html/cacti/include/global_form.php:1953 #: /var/www/html/cacti/include/global_settings.php:50 #: /var/www/html/cacti/lib/html_reports.php:30 msgid "General Settings" msgstr "Algemene instellingen" #: /var/www/html/cacti/automation_networks.php:427 #: /var/www/html/cacti/automation_snmp.php:602 #: /var/www/html/cacti/data_input.php:472 #: /var/www/html/cacti/data_input.php:506 #: /var/www/html/cacti/data_queries.php:662 #: /var/www/html/cacti/data_queries.php:760 #: /var/www/html/cacti/data_queries.php:992 #: /var/www/html/cacti/data_source_profiles.php:562 #: /var/www/html/cacti/graph_templates.php:423 #: /var/www/html/cacti/include/global_form.php:35 #: /var/www/html/cacti/include/global_form.php:101 #: /var/www/html/cacti/include/global_form.php:158 #: /var/www/html/cacti/include/global_form.php:178 #: /var/www/html/cacti/include/global_form.php:219 #: /var/www/html/cacti/include/global_form.php:343 #: /var/www/html/cacti/include/global_form.php:380 #: /var/www/html/cacti/include/global_form.php:486 #: /var/www/html/cacti/include/global_form.php:912 #: /var/www/html/cacti/include/global_form.php:944 #: /var/www/html/cacti/include/global_form.php:1253 #: /var/www/html/cacti/include/global_form.php:1273 #: /var/www/html/cacti/include/global_form.php:1343 #: /var/www/html/cacti/include/global_form.php:1371 #: /var/www/html/cacti/include/global_form.php:2064 #: /var/www/html/cacti/include/global_form.php:2162 #: /var/www/html/cacti/include/global_form.php:2207 #: /var/www/html/cacti/install/index.php:529 #: /var/www/html/cacti/install/index.php:611 #: /var/www/html/cacti/install/index.php:947 #: /var/www/html/cacti/lib/vdef.php:74 /var/www/html/cacti/managers.php:562 #: /var/www/html/cacti/pollers.php:52 /var/www/html/cacti/sites.php:40 #: /var/www/html/cacti/user_admin.php:1089 #: /var/www/html/cacti/user_domains.php:317 #: /var/www/html/cacti/utilities.php:479 /var/www/html/cacti/utilities.php:2439 msgid "Name" msgstr "Naam" #: /var/www/html/cacti/automation_networks.php:428 msgid "Give this Network a meaningful name." msgstr "Geef dit netwerk een naam." #: /var/www/html/cacti/automation_networks.php:431 msgid "New Network Discovery Range" msgstr "Nieuwe netwerk zoek bereik" #: /var/www/html/cacti/automation_networks.php:435 #: /var/www/html/cacti/automation_networks.php:998 #: /var/www/html/cacti/host.php:1473 msgid "Data Collector" msgstr "Data Collector" #: /var/www/html/cacti/automation_networks.php:436 #: /var/www/html/cacti/include/global_form.php:1004 msgid "" "Choose the Cacti Data Collector/Poller to be used to gather data from this " "Device." msgstr "" "Kies de Cacti Data Collector/poller die gebruikt dient te worden voor het " "ophalen van informatie van dit apparaat." #: /var/www/html/cacti/automation_networks.php:443 msgid "Associated Site" msgstr "Gekoppelde locatie" #: /var/www/html/cacti/automation_networks.php:444 msgid "" "Choose the Cacti Site that you wish to associate discovered Devices with." msgstr "Kies de Cacti locatie die u wilt koppelen aan de gevonden apparaten." #: /var/www/html/cacti/automation_networks.php:452 msgid "Subnet Range" msgstr "Subnet bereik" #: /var/www/html/cacti/automation_networks.php:453 msgid "" "Enter valid Network Ranges separated by commas. You may use an IP address, " "a Network range such as 192.168.1.0/24 or 192.168.1.0/255.255.255.0, or " "using wildcards such as 192.168.*.*" msgstr "" "Voer een valide netwerkbereik in, gescheiden met komma's. U mag een IP " "adres, netwerkbereik zoals 192.168.1.0/24 of 192.168.1.0/255.255.255.0 " "gebruiken, of gebruik maken van wildcards zoals 192.168.*.*" #: /var/www/html/cacti/automation_networks.php:462 msgid "Total IP Addresses" msgstr "Totaal aantal IP adressen" #: /var/www/html/cacti/automation_networks.php:463 msgid "Total addressable IP Addresses in this Network Range." msgstr "Totaal te adresseren IP adressen in dit netwerk." #: /var/www/html/cacti/automation_networks.php:468 msgid "Alternate DNS Servers" msgstr "Alternatieve DNS servers" #: /var/www/html/cacti/automation_networks.php:469 msgid "" "A space delimited list of alternate DNS Servers to use for DNS resolution. " "If blank, the poller OS will be used to resolve DNS names." msgstr "" "Een spatie gescheiden lijst van alternatieve DNS servers voor het ophalen " "van DNS gegevens. Indien niet opgegeven zal de poller de DNS servers van het " "OS gebruiken om DNS namen te resolven." #: /var/www/html/cacti/automation_networks.php:472 msgid "Enter IPs or FQDNs of DNS Servers" msgstr "Voer IPs or FQDNs in van DNS servers" #: /var/www/html/cacti/automation_networks.php:476 msgid "Schedule Type" msgstr "Schematype" #: /var/www/html/cacti/automation_networks.php:477 msgid "Define the collection frequency." msgstr "Definieer een verzamelfrequentie." #: /var/www/html/cacti/automation_networks.php:484 msgid "Discovery Threads" msgstr "Aantal threads" #: /var/www/html/cacti/automation_networks.php:485 msgid "Define the number of threads to use for discovering this Network Range." msgstr "" "Definieer het aantal threads om te gebruiken voor het scannen van dit " "netwerk." #: /var/www/html/cacti/automation_networks.php:488 #, php-format msgid "%d Thread" msgstr "%d Thread" #: /var/www/html/cacti/automation_networks.php:489 #: /var/www/html/cacti/automation_networks.php:490 #: /var/www/html/cacti/automation_networks.php:491 #: /var/www/html/cacti/automation_networks.php:492 #: /var/www/html/cacti/automation_networks.php:493 #: /var/www/html/cacti/automation_networks.php:494 #: /var/www/html/cacti/automation_networks.php:495 #: /var/www/html/cacti/automation_networks.php:496 #: /var/www/html/cacti/automation_networks.php:497 #: /var/www/html/cacti/automation_networks.php:498 #: /var/www/html/cacti/automation_networks.php:499 #: /var/www/html/cacti/include/global_arrays.php:651 #: /var/www/html/cacti/include/global_arrays.php:652 #: /var/www/html/cacti/include/global_arrays.php:653 #: /var/www/html/cacti/include/global_arrays.php:654 #: /var/www/html/cacti/include/global_arrays.php:655 #, php-format msgid "%d Threads" msgstr "%d Threads" #: /var/www/html/cacti/automation_networks.php:505 msgid "Run Limit" msgstr "Draaitijd" #: /var/www/html/cacti/automation_networks.php:506 msgid "After the selected Run Limit, the discovery process will be terminated." msgstr "Na de opgegeven draaitijd zal de scanopdracht worden gestopt." #: /var/www/html/cacti/automation_networks.php:509 #: /var/www/html/cacti/automation_networks.php:1129 #: /var/www/html/cacti/include/global_arrays.php:603 #, php-format msgid "%d Minute" msgstr "%d Minuut" #: /var/www/html/cacti/automation_networks.php:510 #: /var/www/html/cacti/automation_networks.php:511 #: /var/www/html/cacti/automation_networks.php:512 #: /var/www/html/cacti/automation_networks.php:513 #: /var/www/html/cacti/automation_networks.php:1130 #: /var/www/html/cacti/automation_networks.php:1131 #: /var/www/html/cacti/data_sources.php:1071 #: /var/www/html/cacti/include/global_arrays.php:568 #: /var/www/html/cacti/include/global_arrays.php:569 #: /var/www/html/cacti/include/global_arrays.php:570 #: /var/www/html/cacti/include/global_arrays.php:571 #: /var/www/html/cacti/include/global_arrays.php:604 #: /var/www/html/cacti/include/global_arrays.php:605 #: /var/www/html/cacti/include/global_arrays.php:606 #: /var/www/html/cacti/include/global_arrays.php:607 #: /var/www/html/cacti/include/global_arrays.php:608 #: /var/www/html/cacti/include/global_arrays.php:609 #: /var/www/html/cacti/include/global_arrays.php:951 #: /var/www/html/cacti/include/global_arrays.php:952 #: /var/www/html/cacti/include/global_arrays.php:1281 #: /var/www/html/cacti/include/global_arrays.php:1285 #: /var/www/html/cacti/include/global_arrays.php:1293 #: /var/www/html/cacti/include/global_arrays.php:1294 #: /var/www/html/cacti/include/global_arrays.php:1316 #: /var/www/html/cacti/include/global_arrays.php:1317 #: /var/www/html/cacti/include/global_arrays.php:1318 #: /var/www/html/cacti/include/global_arrays.php:1319 #: /var/www/html/cacti/include/global_arrays.php:1320 #: /var/www/html/cacti/include/global_arrays.php:1331 #: /var/www/html/cacti/include/global_settings.php:1175 #: /var/www/html/cacti/include/global_settings.php:1176 #: /var/www/html/cacti/include/global_settings.php:1177 #: /var/www/html/cacti/include/global_settings.php:1178 #: /var/www/html/cacti/include/global_settings.php:1179 #: /var/www/html/cacti/include/global_settings.php:1891 #, php-format msgid "%d Minutes" msgstr "%d Minuten" #: /var/www/html/cacti/automation_networks.php:514 #: /var/www/html/cacti/include/global_arrays.php:610 #: /var/www/html/cacti/include/global_arrays.php:620 #: /var/www/html/cacti/include/global_arrays.php:1185 #, php-format msgid "%d Hour" msgstr "%d Uur" #: /var/www/html/cacti/automation_networks.php:515 #: /var/www/html/cacti/automation_networks.php:516 #: /var/www/html/cacti/automation_networks.php:517 #: /var/www/html/cacti/data_source_profiles.php:769 #: /var/www/html/cacti/include/global_arrays.php:573 #: /var/www/html/cacti/include/global_arrays.php:574 #: /var/www/html/cacti/include/global_arrays.php:575 #: /var/www/html/cacti/include/global_arrays.php:576 #: /var/www/html/cacti/include/global_arrays.php:577 #: /var/www/html/cacti/include/global_arrays.php:611 #: /var/www/html/cacti/include/global_arrays.php:612 #: /var/www/html/cacti/include/global_arrays.php:613 #: /var/www/html/cacti/include/global_arrays.php:614 #: /var/www/html/cacti/include/global_arrays.php:621 #: /var/www/html/cacti/include/global_arrays.php:622 #: /var/www/html/cacti/include/global_arrays.php:623 #: /var/www/html/cacti/include/global_arrays.php:624 #: /var/www/html/cacti/include/global_arrays.php:1186 #: /var/www/html/cacti/include/global_arrays.php:1187 #: /var/www/html/cacti/include/global_arrays.php:1188 #: /var/www/html/cacti/include/global_arrays.php:1189 #: /var/www/html/cacti/include/global_arrays.php:1233 #: /var/www/html/cacti/include/global_arrays.php:1234 #: /var/www/html/cacti/include/global_arrays.php:1235 #: /var/www/html/cacti/include/global_arrays.php:1236 #: /var/www/html/cacti/include/global_arrays.php:1237 #: /var/www/html/cacti/include/global_arrays.php:1254 #: /var/www/html/cacti/include/global_arrays.php:1255 #: /var/www/html/cacti/include/global_arrays.php:1256 #: /var/www/html/cacti/include/global_arrays.php:1257 #: /var/www/html/cacti/include/global_arrays.php:1258 #: /var/www/html/cacti/include/global_settings.php:1181 #: /var/www/html/cacti/include/global_settings.php:1182 #: /var/www/html/cacti/include/global_settings.php:1183 #: /var/www/html/cacti/include/global_settings.php:1184 #, php-format msgid "%d Hours" msgstr "%d Uren" #: /var/www/html/cacti/automation_networks.php:524 msgid "Enable this Network Range." msgstr "Activeer dit netwerksegment." #: /var/www/html/cacti/automation_networks.php:529 msgid "Enable NetBIOS" msgstr "Activeer NetBIOS" #: /var/www/html/cacti/automation_networks.php:530 msgid "Use NetBIOS to attempt to resolve the hostname of up hosts." msgstr "Gebruik NetBIOS om de hostname te herkennen van online hosts." #: /var/www/html/cacti/automation_networks.php:536 msgid "Automatically Add to Cacti" msgstr "Automatisch toevoegen aan Cacti" #: /var/www/html/cacti/automation_networks.php:537 msgid "" "For any newly discovered Devices that are reachable using SNMP and who match " "a Device Rule, add them to Cacti." msgstr "" "Ieder nieuw ontdekt apparaat dat bereikbaar is via SNMP en dat aan de " "apparaatregels voldoet, toevoegen aan Cacti." #: /var/www/html/cacti/automation_networks.php:542 msgid "Rerun Data Queries" msgstr "Data Queries opnieuw uitvoeren" #: /var/www/html/cacti/automation_networks.php:543 msgid "If a device previously added to Cacti is found, rerun its data queries." msgstr "" "Als een apparaat dat eerder is toegevoegd aan Cacti, is gevonden, voer dan " "de data queries opnieuw uit." #: /var/www/html/cacti/automation_networks.php:548 msgid "Discovery Timing" msgstr "Scan tijd" #: /var/www/html/cacti/automation_networks.php:553 msgid "Starting Date/Time" msgstr "Startdatum/tijd" #: /var/www/html/cacti/automation_networks.php:554 msgid "What time will this Network discover item start?" msgstr "Om welke tijd moet deze netwerkscan starten?" #: /var/www/html/cacti/automation_networks.php:562 msgid "Rerun Every" msgstr "Opnieuw uitvoeren iedere" #: /var/www/html/cacti/automation_networks.php:563 msgid "Rerun discovery for this Network Range every X." msgstr "Scan opnieuw uitvoeren voor dit netwerk iedere X." #: /var/www/html/cacti/automation_networks.php:578 msgid "Days of Week" msgstr "Dagen per week" #: /var/www/html/cacti/automation_networks.php:579 #: /var/www/html/cacti/automation_networks.php:637 msgid "What Day(s) of the week will this Network Range be discovered." msgstr "Welke dag(en) van de week moet dit netwerk worden gescant." #: /var/www/html/cacti/automation_networks.php:581 #: /var/www/html/cacti/automation_networks.php:639 #: /var/www/html/cacti/include/global_arrays.php:1613 msgid "Sunday" msgstr "Zondag" #: /var/www/html/cacti/automation_networks.php:582 #: /var/www/html/cacti/automation_networks.php:640 #: /var/www/html/cacti/include/global_arrays.php:1614 msgid "Monday" msgstr "Maandag" #: /var/www/html/cacti/automation_networks.php:583 #: /var/www/html/cacti/automation_networks.php:641 #: /var/www/html/cacti/include/global_arrays.php:1615 msgid "Tuesday" msgstr "Dinsdag" #: /var/www/html/cacti/automation_networks.php:584 #: /var/www/html/cacti/automation_networks.php:642 #: /var/www/html/cacti/include/global_arrays.php:1616 msgid "Wednesday" msgstr "Woensdag" #: /var/www/html/cacti/automation_networks.php:585 #: /var/www/html/cacti/automation_networks.php:643 #: /var/www/html/cacti/include/global_arrays.php:1617 msgid "Thursday" msgstr "Donderdag" #: /var/www/html/cacti/automation_networks.php:586 #: /var/www/html/cacti/automation_networks.php:644 #: /var/www/html/cacti/include/global_arrays.php:1618 msgid "Friday" msgstr "Vrijdag" #: /var/www/html/cacti/automation_networks.php:587 #: /var/www/html/cacti/automation_networks.php:645 #: /var/www/html/cacti/include/global_arrays.php:1619 msgid "Saturday" msgstr "Zaterdag" #: /var/www/html/cacti/automation_networks.php:594 msgid "Months of Year" msgstr "Maanden per jaar" #: /var/www/html/cacti/automation_networks.php:595 msgid "What Months(s) of the Year will this Network Range be discovered." msgstr "Welke maand(en) van het jaar moet dit netwerk worden gescant." #: /var/www/html/cacti/automation_networks.php:597 #: /var/www/html/cacti/include/global_arrays.php:1583 msgid "January" msgstr "Januari" #: /var/www/html/cacti/automation_networks.php:598 #: /var/www/html/cacti/include/global_arrays.php:1584 msgid "February" msgstr "Februari" #: /var/www/html/cacti/automation_networks.php:599 #: /var/www/html/cacti/include/global_arrays.php:1585 msgid "March" msgstr "Maart" #: /var/www/html/cacti/automation_networks.php:600 #: /var/www/html/cacti/include/global_arrays.php:1586 msgid "April" msgstr "April" #: /var/www/html/cacti/automation_networks.php:601 #: /var/www/html/cacti/include/global_arrays.php:1587 msgid "May" msgstr "Mei" #: /var/www/html/cacti/automation_networks.php:602 #: /var/www/html/cacti/include/global_arrays.php:1588 msgid "June" msgstr "Juni" #: /var/www/html/cacti/automation_networks.php:603 #: /var/www/html/cacti/include/global_arrays.php:1589 msgid "July" msgstr "Juli" #: /var/www/html/cacti/automation_networks.php:604 #: /var/www/html/cacti/include/global_arrays.php:1590 msgid "August" msgstr "Augustus" #: /var/www/html/cacti/automation_networks.php:605 #: /var/www/html/cacti/include/global_arrays.php:1591 msgid "September" msgstr "September" #: /var/www/html/cacti/automation_networks.php:606 #: /var/www/html/cacti/include/global_arrays.php:1592 msgid "October" msgstr "Oktober" #: /var/www/html/cacti/automation_networks.php:607 #: /var/www/html/cacti/include/global_arrays.php:1593 msgid "November" msgstr "November" #: /var/www/html/cacti/automation_networks.php:608 #: /var/www/html/cacti/include/global_arrays.php:1594 msgid "December" msgstr "December" #: /var/www/html/cacti/automation_networks.php:615 msgid "Days of Month" msgstr "Dagen per maand" #: /var/www/html/cacti/automation_networks.php:616 msgid "What Day(s) of the Month will this Network Range be discovered." msgstr "Welke dag(en) van de maand moet dit netwerk worden gescant." #: /var/www/html/cacti/automation_networks.php:617 #: /var/www/html/cacti/automation_networks.php:629 msgid "Last" msgstr "Laatste" #: /var/www/html/cacti/automation_networks.php:623 msgid "Week(s) of Month" msgstr "We(e)k(en) per maand" #: /var/www/html/cacti/automation_networks.php:624 msgid "What Week(s) of the Month will this Network Range be discovered." msgstr "Welke we(e)k(en) van de maand moet dit netwerk worden gescant." #: /var/www/html/cacti/automation_networks.php:626 msgid "First" msgstr "Eerste" #: /var/www/html/cacti/automation_networks.php:627 msgid "Second" msgstr "Tweede" #: /var/www/html/cacti/automation_networks.php:628 msgid "Third" msgstr "Derde" #: /var/www/html/cacti/automation_networks.php:636 msgid "Day(s) of Week" msgstr "Dag(en) per week" #: /var/www/html/cacti/automation_networks.php:652 msgid "Reachability Settings" msgstr "Bereikbaarheidsinstellingen" #: /var/www/html/cacti/automation_networks.php:657 #: /var/www/html/cacti/include/global_arrays.php:812 #: /var/www/html/cacti/include/global_form.php:1045 #: /var/www/html/cacti/include/global_form.php:1656 msgid "SNMP Options" msgstr "SNMP opties" #: /var/www/html/cacti/automation_networks.php:658 msgid "Select the SNMP Options to use for discovery of this Network Range." msgstr "" "Selecteer de SNMP opties die voor deze netwerk scan gebruikt dienen te " "worden." #: /var/www/html/cacti/automation_networks.php:664 #: /var/www/html/cacti/include/global_form.php:1181 msgid "Ping Method" msgstr "Ping methode" #: /var/www/html/cacti/automation_networks.php:665 msgid "The type of ping packet to send." msgstr "Het type pingpakket dat moet worden verzonden." #: /var/www/html/cacti/automation_networks.php:673 #: /var/www/html/cacti/include/global_form.php:1191 #: /var/www/html/cacti/include/global_settings.php:617 msgid "Ping Port" msgstr "Pingpoort" #: /var/www/html/cacti/automation_networks.php:675 #: /var/www/html/cacti/include/global_form.php:1193 msgid "TCP or UDP port to attempt connection." msgstr "TCP of UDP poort voor de verbinding." #: /var/www/html/cacti/automation_networks.php:681 #: /var/www/html/cacti/include/global_form.php:1199 #: /var/www/html/cacti/include/global_settings.php:625 msgid "Ping Timeout Value" msgstr "Ping timeout waarde" #: /var/www/html/cacti/automation_networks.php:682 #: /var/www/html/cacti/include/global_form.php:1200 msgid "" "The timeout value to use for host ICMP and UDP pinging. This host SNMP " "timeout value applies for SNMP pings." msgstr "" "De timeout waarde die gebruikt moet worden voor de host ICMP en UDP ping. De " "host SNMP timeout waarde geldt voor de SNMP ping." #: /var/www/html/cacti/automation_networks.php:690 #: /var/www/html/cacti/include/global_form.php:1208 #: /var/www/html/cacti/include/global_settings.php:633 msgid "Ping Retry Count" msgstr "Aantal keren opnieuw proberen te pingen" #: /var/www/html/cacti/automation_networks.php:691 #: /var/www/html/cacti/include/global_form.php:1209 msgid "" "After an initial failure, the number of ping retries Cacti will attempt " "before failing." msgstr "Het aantal pogingen Cacti opnieuw zal proberen te pingen." #: /var/www/html/cacti/automation_networks.php:731 msgid "Select the days(s) of the week" msgstr "Selecteer de dag(en) van de week" #: /var/www/html/cacti/automation_networks.php:741 msgid "Select the month(s) of the year" msgstr "Selecteer de maand(en) van het jaar" #: /var/www/html/cacti/automation_networks.php:751 msgid "Select the day(s) of the month" msgstr "Selecteer de dag(en) van de maand" #: /var/www/html/cacti/automation_networks.php:761 msgid "Select the week(s) of the month" msgstr "Selecteer de we(e)k(en) van de maand" #: /var/www/html/cacti/automation_networks.php:771 msgid "Select the day(s) of the week" msgstr "Selecteer de dag(en) van de week" #: /var/www/html/cacti/automation_networks.php:844 #: /var/www/html/cacti/automation_networks.php:861 msgid "every X Days" msgstr "iedere X dagen" #: /var/www/html/cacti/automation_networks.php:844 #: /var/www/html/cacti/automation_networks.php:861 msgid "every X Weeks" msgstr "iedere X weken" #: /var/www/html/cacti/automation_networks.php:845 msgid "every X Days." msgstr "iedere X dagen." #: /var/www/html/cacti/automation_networks.php:845 #: /var/www/html/cacti/automation_networks.php:862 msgid "every X." msgstr "iedere X." #: /var/www/html/cacti/automation_networks.php:862 msgid "every X Weeks." msgstr "iedere X weken." #: /var/www/html/cacti/automation_networks.php:970 msgid "Network Filters" msgstr "Netwerkfilters" #: /var/www/html/cacti/automation_networks.php:980 #: /var/www/html/cacti/automation_networks.php:1104 #: /var/www/html/cacti/include/global_arrays.php:807 msgid "Networks" msgstr "Netwerken" #: /var/www/html/cacti/automation_networks.php:997 msgid "Network Name" msgstr "Netwerknaam" #: /var/www/html/cacti/automation_networks.php:999 msgid "Schedule" msgstr "Schema" #: /var/www/html/cacti/automation_networks.php:1000 msgid "Total IPs" msgstr "Totaal aantal IP adressen" #: /var/www/html/cacti/automation_networks.php:1001 msgid "The Current Status of this Networks Discovery" msgstr "De huidige status van de netwerkscan" #: /var/www/html/cacti/automation_networks.php:1002 msgid "Pending/Running/Done" msgstr "Wachtende/Actief/Gereed" #: /var/www/html/cacti/automation_networks.php:1002 msgid "Progress" msgstr "Voortgang" #: /var/www/html/cacti/automation_networks.php:1003 msgid "Up/SNMP Hosts" msgstr "Actieve/SNMP hosts" #: /var/www/html/cacti/automation_networks.php:1004 msgid "Threads" msgstr "Threads" #: /var/www/html/cacti/automation_networks.php:1005 msgid "Last Runtime" msgstr "Laatste keer actief" #: /var/www/html/cacti/automation_networks.php:1006 msgid "Next Start" msgstr "Volgende start" #: /var/www/html/cacti/automation_networks.php:1007 msgid "Last Started" msgstr "Laatst gestart" #: /var/www/html/cacti/automation_networks.php:1032 #: /var/www/html/cacti/pollers.php:37 /var/www/html/cacti/utilities.php:2050 msgid "Running" msgstr "Actief" #: /var/www/html/cacti/automation_networks.php:1052 #: /var/www/html/cacti/pollers.php:38 /var/www/html/cacti/utilities.php:2049 msgid "Idle" msgstr "Inactief" #: /var/www/html/cacti/automation_networks.php:1073 msgid "No Networks Found" msgstr "Geen netwerken gevonden" #: /var/www/html/cacti/automation_networks.php:1119 #: /var/www/html/cacti/graph.php:353 /var/www/html/cacti/graph_realtime.php:242 #: /var/www/html/cacti/lib/clog_webapi.php:450 #: /var/www/html/cacti/lib/html_graph.php:307 #: /var/www/html/cacti/lib/html_tree.php:766 #: /var/www/html/cacti/lib/html_tree.php:785 #: /var/www/html/cacti/utilities.php:1102 #: /var/www/html/cacti/utilities.php:2002 msgid "Refresh" msgstr "Vernieuwen" #: /var/www/html/cacti/automation_networks.php:1125 #: /var/www/html/cacti/automation_networks.php:1126 #: /var/www/html/cacti/automation_networks.php:1127 #: /var/www/html/cacti/automation_networks.php:1128 #: /var/www/html/cacti/data_sources.php:1067 #: /var/www/html/cacti/include/global_arrays.php:566 #: /var/www/html/cacti/include/global_arrays.php:600 #: /var/www/html/cacti/include/global_arrays.php:601 #: /var/www/html/cacti/include/global_arrays.php:602 #: /var/www/html/cacti/include/global_arrays.php:946 #: /var/www/html/cacti/include/global_arrays.php:947 #: /var/www/html/cacti/include/global_arrays.php:948 #: /var/www/html/cacti/include/global_arrays.php:949 #: /var/www/html/cacti/include/global_arrays.php:1275 #: /var/www/html/cacti/include/global_arrays.php:1276 #: /var/www/html/cacti/include/global_arrays.php:1277 #: /var/www/html/cacti/include/global_arrays.php:1278 #: /var/www/html/cacti/include/global_arrays.php:1279 #: /var/www/html/cacti/include/global_arrays.php:1312 #: /var/www/html/cacti/include/global_arrays.php:1313 #: /var/www/html/cacti/include/global_arrays.php:1325 #: /var/www/html/cacti/include/global_arrays.php:1326 #: /var/www/html/cacti/include/global_arrays.php:1327 #: /var/www/html/cacti/include/global_arrays.php:1328 #: /var/www/html/cacti/include/global_arrays.php:1329 #: /var/www/html/cacti/include/global_settings.php:1891 #, php-format msgid "%d Seconds" msgstr "%d Seconden" #: /var/www/html/cacti/automation_networks.php:1143 msgid "Clear Filtered" msgstr "Reset gefilterde" #: /var/www/html/cacti/automation_snmp.php:226 msgid "You must select at least one SNMP Option." msgstr "U moet op zijn minst een SNMP optie kiezen." #: /var/www/html/cacti/automation_snmp.php:234 msgid "Click 'Continue' to delete the following SNMP Option(s)." msgstr "Klik op 'Volgende' om de volgende SNMP optie(s) te verwijderen." #: /var/www/html/cacti/automation_snmp.php:241 msgid "" "Click 'Continue' to duplicate the following SNMP Options. You can optionally " "change the title format for the new SNMP Options." msgstr "" "Klik op 'Volgende' om de volgende SNMP opties te kopiëren. U kunt optioneel " "het titelformaat voor de nieuwe SNMP opties wijzigen." #: /var/www/html/cacti/automation_snmp.php:243 msgid "Name Format" msgstr "Naamlayout" #: /var/www/html/cacti/automation_snmp.php:243 msgid "name" msgstr "naam" #: /var/www/html/cacti/automation_snmp.php:330 msgid "Click 'Continue' to delete the following SNMP Option Item." msgstr "Klik op 'Volgende' om het volgende SNMP optie item te verwijderen." #: /var/www/html/cacti/automation_snmp.php:331 msgid "SNMP Option:" msgstr "SNMP optie:" #: /var/www/html/cacti/automation_snmp.php:332 #, php-format msgid "SNMP Version: %s" msgstr "SNMP versie: %s" #: /var/www/html/cacti/automation_snmp.php:333 #, php-format msgid "SNMP Community/Username: %s" msgstr "SNMP Community/Gebruikersnaam: %s" #: /var/www/html/cacti/automation_snmp.php:339 msgid "Remove SNMP Item" msgstr "Verwijder SNMP item" #: /var/www/html/cacti/automation_snmp.php:397 #, php-format msgid "SNMP Options [edit: %s]" msgstr "SNMP opties [wijzig: %s]" #: /var/www/html/cacti/automation_snmp.php:399 msgid "SNMP Options [new]" msgstr "SNMP opties [nieuw]" #: /var/www/html/cacti/automation_snmp.php:415 #: /var/www/html/cacti/include/global_form.php:1049 #: /var/www/html/cacti/include/global_form.php:1661 msgid "SNMP Version" msgstr "SNMP versie" #: /var/www/html/cacti/automation_snmp.php:416 msgid "Choose the SNMP version for this host." msgstr "Kies de SNMP versie voor deze host." #: /var/www/html/cacti/automation_snmp.php:424 msgid "SNMP Community String" msgstr "SNMP community waarde" #: /var/www/html/cacti/automation_snmp.php:425 msgid "Fill in the SNMP read community for this device." msgstr "Voer de SNMP read community waarde in voor dit apparaat." #: /var/www/html/cacti/automation_snmp.php:433 #: /var/www/html/cacti/include/global_form.php:1068 #: /var/www/html/cacti/include/global_form.php:1680 msgid "SNMP Security Level" msgstr "SMTP Security" #: /var/www/html/cacti/automation_snmp.php:434 #: /var/www/html/cacti/include/global_form.php:1069 #: /var/www/html/cacti/include/global_form.php:1681 msgid "SNMP v3 Security Level to user for querying the device." msgstr "Voor de SNMP v3 context in voor dit apparaat." #: /var/www/html/cacti/automation_snmp.php:443 #: /var/www/html/cacti/include/global_form.php:1078 #: /var/www/html/cacti/include/global_form.php:1690 msgid "SNMP Username (v3)" msgstr "SNMP gebruikersnaam (v3)" #: /var/www/html/cacti/automation_snmp.php:444 #: /var/www/html/cacti/include/global_form.php:1079 #: /var/www/html/cacti/include/global_form.php:1691 msgid "SNMP v3 username for this device." msgstr "SNMP v3 gebruikersnaam voor dit apparaat." #: /var/www/html/cacti/automation_snmp.php:452 #: /var/www/html/cacti/include/global_form.php:1087 #: /var/www/html/cacti/include/global_form.php:1699 msgid "SNMP Auth Protocol (v3)" msgstr "SNMP Auth protocol (v3)" #: /var/www/html/cacti/automation_snmp.php:453 msgid "Choose the SNMPv3 Authorization Protocol." msgstr "Kies het SNMPv3 autothorisatieprotocol." #: /var/www/html/cacti/automation_snmp.php:461 #: /var/www/html/cacti/include/global_form.php:1096 msgid "SNMP Password (v3)" msgstr "SNMP wachtwoord (v3)" #: /var/www/html/cacti/automation_snmp.php:462 msgid "SNMP v3 password for this device." msgstr "SNMP v3 wachtwoord voor dit apparaat." #: /var/www/html/cacti/automation_snmp.php:470 #: /var/www/html/cacti/include/global_form.php:1105 #: /var/www/html/cacti/include/global_form.php:1717 msgid "SNMP Privacy Protocol (v3)" msgstr "SNMP privacy protocol (v3)" #: /var/www/html/cacti/automation_snmp.php:471 msgid "Choose the SNMPv3 Privacy Protocol." msgstr "Kies het SNMPv3 privacy protocol." #: /var/www/html/cacti/automation_snmp.php:479 #: /var/www/html/cacti/include/global_form.php:1114 msgid "SNMP Privacy Passphrase (v3)" msgstr "SNMP privacy wachtwoord (v3)" #: /var/www/html/cacti/automation_snmp.php:480 #: /var/www/html/cacti/include/global_form.php:1727 msgid "Choose the SNMPv3 Privacy Passphrase." msgstr "Kies het SNMPv3 privacy wachtwoord." #: /var/www/html/cacti/automation_snmp.php:488 msgid "SNMP Context" msgstr "SNMP context" #: /var/www/html/cacti/automation_snmp.php:489 msgid "Enter the SNMP Context to use for this device." msgstr "Voer de SNMP context in voor dit apparaat." #: /var/www/html/cacti/automation_snmp.php:497 #: /var/www/html/cacti/include/global_form.php:1132 #: /var/www/html/cacti/include/global_settings.php:566 msgid "SNMP Engine ID (v3)" msgstr "SNMP Engine ID (v3)" #: /var/www/html/cacti/automation_snmp.php:498 #: /var/www/html/cacti/include/global_form.php:1133 msgid "" "Enter the SNMP v3 Engine Id to use for this device. Leave this field empty " "to use the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "" #: /var/www/html/cacti/automation_snmp.php:506 #: /var/www/html/cacti/include/global_form.php:1141 #: /var/www/html/cacti/include/global_form.php:1743 msgid "SNMP Port" msgstr "SNMP poort" #: /var/www/html/cacti/automation_snmp.php:507 msgid "The UDP/TCP Port to poll the SNMP agent on." msgstr "De UDP/TCP poort waarop de SNMP agent moet pollen." #: /var/www/html/cacti/automation_snmp.php:515 #: /var/www/html/cacti/include/global_form.php:1150 #: /var/www/html/cacti/include/global_form.php:1752 msgid "SNMP Timeout" msgstr "SNMP timeout" #: /var/www/html/cacti/automation_snmp.php:516 #: /var/www/html/cacti/include/global_form.php:1151 #: /var/www/html/cacti/include/global_form.php:1753 msgid "" "The maximum number of milliseconds Cacti will wait for an SNMP response " "(does not work with php-snmp support)." msgstr "" "Het maximaal aantal milliseconden dat Cacti wacht op een SNMP antwoord " "(werkt niet met php-snmp support)." #: /var/www/html/cacti/automation_snmp.php:524 msgid "SNMP Retries" msgstr "SNMP pogingen" #: /var/www/html/cacti/automation_snmp.php:525 msgid "" "The maximum number of attempts to reach a device via an SNMP readstring " "prior to giving up." msgstr "" "Het maximum aantal pogingen om een apparaat via de SNMP read waarde te " "bereiken." #: /var/www/html/cacti/automation_snmp.php:533 msgid "Maximum OID's Per Get Request" msgstr "Maximaal aantal OID's per GET request" #: /var/www/html/cacti/automation_snmp.php:534 #: /var/www/html/cacti/include/global_form.php:1160 msgid "" "Specified the number of OIDs that can be obtained in a single SNMP Get " "request." msgstr "" "Specificeer het aantal OID's dat in een enkele SNMP GET request mag worden " "opgehaald." #: /var/www/html/cacti/automation_snmp.php:546 #: /var/www/html/cacti/include/global_form.php:903 #: /var/www/html/cacti/include/global_form.php:2111 #: /var/www/html/cacti/include/global_form.php:2153 #: /var/www/html/cacti/include/global_form.php:2304 #: /var/www/html/cacti/lib/api_automation.php:1238 #: /var/www/html/cacti/lib/api_automation.php:1300 #: /var/www/html/cacti/lib/api_automation.php:1362 #: /var/www/html/cacti/lib/html_reports.php:460 #: /var/www/html/cacti/lib/html_reports.php:1254 msgid "Sequence" msgstr "Volgorde" #: /var/www/html/cacti/automation_snmp.php:547 #: /var/www/html/cacti/lib/html_reports.php:461 msgid "Sequence of Item." msgstr "Volgorde van item." #: /var/www/html/cacti/automation_snmp.php:589 #, php-format msgid "SNMP Option Set [edit: %s]" msgstr "SNMP opties [wijzig: %s]" #: /var/www/html/cacti/automation_snmp.php:591 msgid "SNMP Option Set [new]" msgstr "SNMP opties [nieuw]" #: /var/www/html/cacti/automation_snmp.php:603 msgid "Fill in the name of this SNMP Option Set." msgstr "Voer de naam in van deze SNMP optie reeks." #: /var/www/html/cacti/automation_snmp.php:628 #: /var/www/html/cacti/automation_snmp.php:778 msgid "Automation SNMP Options" msgstr "Automatisering SNMP opties" #: /var/www/html/cacti/automation_snmp.php:631 /var/www/html/cacti/cdef.php:597 #: /var/www/html/cacti/lib/api_automation.php:1237 #: /var/www/html/cacti/lib/api_automation.php:1299 #: /var/www/html/cacti/lib/api_automation.php:1361 #: /var/www/html/cacti/lib/html_reports.php:1253 #: /var/www/html/cacti/vdef.php:571 msgid "Item" msgstr "Item" #: /var/www/html/cacti/automation_snmp.php:632 #: /var/www/html/cacti/include/auth.php:162 #: /var/www/html/cacti/include/global_settings.php:500 #: /var/www/html/cacti/permission_denied.php:52 #: /var/www/html/cacti/plugins.php:428 msgid "Version" msgstr "Versie" #: /var/www/html/cacti/automation_snmp.php:633 #: /var/www/html/cacti/include/global_settings.php:507 msgid "Community" msgstr "Community" #: /var/www/html/cacti/automation_snmp.php:634 #: /var/www/html/cacti/lib/functions.php:3999 msgid "Port" msgstr "Poort" #: /var/www/html/cacti/automation_snmp.php:635 #: /var/www/html/cacti/include/global_settings.php:582 msgid "Timeout" msgstr "Timeout" #: /var/www/html/cacti/automation_snmp.php:636 #: /var/www/html/cacti/include/global_settings.php:590 msgid "Retries" msgstr "Pogingen" #: /var/www/html/cacti/automation_snmp.php:637 msgid "Max OIDS" msgstr "Max OID's" #: /var/www/html/cacti/automation_snmp.php:638 msgid "Auth Username" msgstr "Auth gebruikersnaam" #: /var/www/html/cacti/automation_snmp.php:639 msgid "Auth Password" msgstr "Auth wachtwoord" #: /var/www/html/cacti/automation_snmp.php:640 msgid "Auth Protocol" msgstr "Auth protocol" #: /var/www/html/cacti/automation_snmp.php:641 msgid "Priv Passphrase" msgstr "Priv wachtwoord" #: /var/www/html/cacti/automation_snmp.php:642 msgid "Priv Protocol" msgstr "Priv protocol" #: /var/www/html/cacti/automation_snmp.php:643 msgid "Context" msgstr "Context" #: /var/www/html/cacti/automation_snmp.php:644 #: /var/www/html/cacti/data_queries.php:996 #: /var/www/html/cacti/utilities.php:1690 msgid "Action" msgstr "Actie" #: /var/www/html/cacti/automation_snmp.php:654 #: /var/www/html/cacti/color_templates.php:93 #: /var/www/html/cacti/lib/api_aggregate.php:1375 #: /var/www/html/cacti/lib/api_aggregate.php:1378 #: /var/www/html/cacti/lib/api_aggregate.php:1383 #: /var/www/html/cacti/lib/html.php:984 #, php-format msgid "Item # %d" msgstr "Item # %d" #: /var/www/html/cacti/automation_snmp.php:656 msgid "none" msgstr "geen" #: /var/www/html/cacti/automation_snmp.php:671 #: /var/www/html/cacti/automation_templates.php:523 #: /var/www/html/cacti/cdef.php:624 /var/www/html/cacti/color_templates.php:110 #: /var/www/html/cacti/data_queries.php:694 #: /var/www/html/cacti/data_queries.php:794 #: /var/www/html/cacti/lib/api_automation.php:1264 #: /var/www/html/cacti/lib/api_automation.php:1326 #: /var/www/html/cacti/lib/api_automation.php:1390 #: /var/www/html/cacti/lib/html.php:1047 #: /var/www/html/cacti/lib/html_reports.php:1328 #: /var/www/html/cacti/lib/html_reports.php:1330 #: /var/www/html/cacti/tree.php:1776 /var/www/html/cacti/tree.php:1783 #: /var/www/html/cacti/vdef.php:600 msgid "Move Down" msgstr "Naar beneden" #: /var/www/html/cacti/automation_snmp.php:677 #: /var/www/html/cacti/automation_templates.php:529 #: /var/www/html/cacti/cdef.php:630 /var/www/html/cacti/color_templates.php:116 #: /var/www/html/cacti/data_queries.php:699 #: /var/www/html/cacti/data_queries.php:799 #: /var/www/html/cacti/lib/api_automation.php:1270 #: /var/www/html/cacti/lib/api_automation.php:1332 #: /var/www/html/cacti/lib/api_automation.php:1396 #: /var/www/html/cacti/lib/html.php:1052 #: /var/www/html/cacti/lib/html_reports.php:1330 #: /var/www/html/cacti/lib/html_reports.php:1332 #: /var/www/html/cacti/tree.php:1780 /var/www/html/cacti/tree.php:1784 #: /var/www/html/cacti/vdef.php:606 msgid "Move Up" msgstr "Naar boven" #: /var/www/html/cacti/automation_snmp.php:691 msgid "No SNMP Items" msgstr "Geen SNMP items" #: /var/www/html/cacti/automation_snmp.php:727 msgid "Delete SNMP Option Item" msgstr "Verwijder SNMP optie item" #: /var/www/html/cacti/automation_snmp.php:793 msgid "SNMP Rules" msgstr "SNMP regels" #: /var/www/html/cacti/automation_snmp.php:885 msgid "SNMP Option Sets" msgstr "SNMP optie reeks" #: /var/www/html/cacti/automation_snmp.php:894 msgid "SNMP Option Set" msgstr "SNMP optie reeks" #: /var/www/html/cacti/automation_snmp.php:895 msgid "Networks Using" msgstr "Gebruikte netwerken" #: /var/www/html/cacti/automation_snmp.php:896 msgid "SNMP Entries" msgstr "SNMP vermeldingen" #: /var/www/html/cacti/automation_snmp.php:897 msgid "V1 Entries" msgstr "V1 Vermeldingen" #: /var/www/html/cacti/automation_snmp.php:898 msgid "V2 Entries" msgstr "V2 Vermeldingen" #: /var/www/html/cacti/automation_snmp.php:899 msgid "V3 Entries" msgstr "V3 Vermeldingen" #: /var/www/html/cacti/automation_snmp.php:919 msgid "No SNMP Option Sets Found" msgstr "Geen SNMP optiereeksen gevonden" #: /var/www/html/cacti/automation_templates.php:161 msgid "Click 'Continue' to delete the folling Automation Template(s)." msgstr "" "Klik op 'Volgende' om de volgende automatiseringstemplate(s) te verwijderen." #: /var/www/html/cacti/automation_templates.php:166 msgid "Delete Automation Template(s)" msgstr "Verwijder automatiseringtemplate(s)" #: /var/www/html/cacti/automation_templates.php:169 msgid "You must select at least one Automation Template." msgstr "U moet op zijn minst een automatiseringstemplate selecteren." #: /var/www/html/cacti/automation_templates.php:272 #: /var/www/html/cacti/include/global_arrays.php:1099 #: /var/www/html/cacti/include/global_form.php:1020 #: /var/www/html/cacti/include/global_form.php:1540 #: /var/www/html/cacti/lib/html_reports.php:386 msgid "Device Template" msgstr "Apparaattemplate" #: /var/www/html/cacti/automation_templates.php:273 msgid "Select a Device Template that Devices will be matched to." msgstr "Selecteer een apparaattemplate waaraan de apparaten gekoppeld worden." #: /var/www/html/cacti/automation_templates.php:280 msgid "Choose the Availability Method to use for Discovered Devices." msgstr "Kies de beschikbaarheidsmethode voor de gevonden apparaten." #: /var/www/html/cacti/automation_templates.php:287 #: /var/www/html/cacti/automation_templates.php:492 msgid "System Description Match" msgstr "Systeembeschrijving overeenkomst" #: /var/www/html/cacti/automation_templates.php:288 msgid "" "This is a unique string that will be matched to a devices sysDescr string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" "Dit is een unieke waarde dat gekoppeld wordt aan de sysDescr waarde van een " "apparaat om het te koppelen aan dit scantemplate. Iedere Perl reguliere " "expressie kan hier worden gebruikt evenals ieder SQL Where statement." #: /var/www/html/cacti/automation_templates.php:294 #: /var/www/html/cacti/automation_templates.php:493 msgid "System Name Match" msgstr "Systeemnaam overeenkomst" #: /var/www/html/cacti/automation_templates.php:295 msgid "" "This is a unique string that will be matched to a devices sysName string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" "Dit is een unieke waarde dat gekoppeld wordt aan de sysName waarde van een " "apparaat om het te koppelen aan dit scantemplate. Iedere Perl reguliere " "expressie kan hier worden gebruikt evenals ieder SQL Where statement." #: /var/www/html/cacti/automation_templates.php:301 msgid "System OID Match" msgstr "Systeem OID overeenkomst" #: /var/www/html/cacti/automation_templates.php:302 msgid "" "This is a unique string that will be matched to a devices sysOid string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" "Dit is een unieke waarde dat gekoppeld wordt aan de sysOid waarde van een " "apparaat om het te koppelen aan dit scantemplate. Iedere Perl reguliere " "expressie kan hier worden gebruikt evenals ieder SQL Where statement." #: /var/www/html/cacti/automation_templates.php:327 #, php-format msgid "Automation Templates [edit: %s]" msgstr "Scantemplate [wijzig: %s]" #: /var/www/html/cacti/automation_templates.php:329 msgid "Automation Templates for [Deleted Template]" msgstr "Scantemplate voor [Verwijderd template]" #: /var/www/html/cacti/automation_templates.php:332 msgid "Automation Templates [new]" msgstr "Scantemplate [nieuw]" #: /var/www/html/cacti/automation_templates.php:383 msgid "Device Automation Templates" msgstr "Apparaat scantemplate" #: /var/www/html/cacti/automation_templates.php:490 #: /var/www/html/cacti/data_sources.php:1410 #: /var/www/html/cacti/graphs.php:1838 /var/www/html/cacti/user_admin.php:1374 #: /var/www/html/cacti/user_group_admin.php:1109 msgid "Template Name" msgstr "Templatenaam" #: /var/www/html/cacti/automation_templates.php:494 msgid "System ObjectId Match" msgstr "Systeem ObjectId overeenkomst" #: /var/www/html/cacti/automation_templates.php:498 #: /var/www/html/cacti/data_queries.php:663 #: /var/www/html/cacti/data_queries.php:761 /var/www/html/cacti/links.php:381 #: /var/www/html/cacti/tree.php:1758 msgid "Order" msgstr "Volgorde" #: /var/www/html/cacti/automation_templates.php:508 msgid "Unknown Template" msgstr "Onbekend template" #: /var/www/html/cacti/automation_templates.php:543 msgid "No Automation Device Templates Found" msgstr "Geen automatiseringsapparaat template gevonden" #: /var/www/html/cacti/automation_tree_rules.php:253 msgid "Click 'Continue' to delete the following Rule(s)." msgstr "Klik op 'Volgende' om de volgende regel(s) te verwijderen." #: /var/www/html/cacti/automation_tree_rules.php:260 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Rules." msgstr "" "Klik op 'Volgende' om de volgende regel(s) te kopiëren. U kunt optioneel de " "titel layout voor de nieuwe regel(s) wijzigen." #: /var/www/html/cacti/automation_tree_rules.php:379 msgid "Created Trees" msgstr "Gemaakte boomstructuur" #: /var/www/html/cacti/automation_tree_rules.php:471 #, php-format msgid "Are you sure you want to DELETE the Rule '%s'?" msgstr "Weet u zeker dat u regel '%s' wilt verwijderen?" #: /var/www/html/cacti/automation_tree_rules.php:529 msgid "Eligible Objects" msgstr "In aanmerking komende objecten" #: /var/www/html/cacti/automation_tree_rules.php:542 #, php-format msgid "Tree Rule Selection [edit: %s]" msgstr "Boomstructuur regel selectie [wijzig: %s]" #: /var/www/html/cacti/automation_tree_rules.php:544 msgid "Tree Rules Selection [new]" msgstr "Boomstructuur regel selectie [nieuw]" #: /var/www/html/cacti/automation_tree_rules.php:595 msgid "Object Selection Criteria" msgstr "Object selectiecriteria" #: /var/www/html/cacti/automation_tree_rules.php:601 msgid "Tree Creation Criteria" msgstr "Criteria voor het aanmaken van een menuitem" #: /var/www/html/cacti/automation_tree_rules.php:706 #: /var/www/html/cacti/automation_tree_rules.php:731 #: /var/www/html/cacti/automation_tree_rules.php:831 #: /var/www/html/cacti/include/global_arrays.php:811 #: /var/www/html/cacti/lib/functions.php:2764 msgid "Tree Rules" msgstr "Boomstructuur" #: /var/www/html/cacti/automation_tree_rules.php:842 msgid "Hook into Tree" msgstr "Invoeren in boomstructuur" #: /var/www/html/cacti/automation_tree_rules.php:843 msgid "At Subtree" msgstr "Op deelboom" #: /var/www/html/cacti/automation_tree_rules.php:844 msgid "This Type" msgstr "Dit type" #: /var/www/html/cacti/automation_tree_rules.php:845 msgid "Using Grouping" msgstr "Gebruik groepering" #: /var/www/html/cacti/automation_tree_rules.php:854 msgid "ROOT" msgstr "ROOT" #: /var/www/html/cacti/automation_tree_rules.php:870 msgid "No Tree Rules Found" msgstr "Geen boomstructuur regels gevonden" #: /var/www/html/cacti/cdef.php:277 msgid "Click 'Continue' to delete the following CDEF." msgid_plural "Click 'Continue' to delete all following CDEFs." msgstr[0] "Klik op 'Volgende' om de volgende CDEF te verwijderen." msgstr[1] "Klik op 'Volgende' om alle volgende CDEF's te verwijderen." #: /var/www/html/cacti/cdef.php:282 msgid "Delete CDEF" msgid_plural "Delete CDEFs" msgstr[0] "Verwijder CDEF" msgstr[1] "Verwijder CDEF's" #: /var/www/html/cacti/cdef.php:286 msgid "" "Click 'Continue' to duplicate the following CDEF. You can optionally change " "the title format for the new CDEF." msgid_plural "" "Click 'Continue' to duplicate the following CDEFs. You can optionally change " "the title format for the new CDEFs." msgstr[0] "" "Klik op 'Volgende' om de volgende CDEF te kopiëren. U kunt optioneel het " "titelformaat voor de nieuwe CDEF wijzigen." msgstr[1] "" "Klik op 'Volgende' om de volgende CDEF's te kopiëren. U kunt optioneel het " "titelformaat voor de nieuwe CDEF's wijzigen." #: /var/www/html/cacti/cdef.php:288 /var/www/html/cacti/color_templates.php:238 #: /var/www/html/cacti/data_source_profiles.php:286 #: /var/www/html/cacti/data_templates.php:369 #: /var/www/html/cacti/graph_templates.php:323 #: /var/www/html/cacti/host_templates.php:267 /var/www/html/cacti/vdef.php:276 msgid "Title Format:" msgstr "Titel formaat:" #: /var/www/html/cacti/cdef.php:293 msgid "Duplicate CDEF" msgid_plural "Duplicate CDEFs" msgstr[0] "Kopieer CDEF" msgstr[1] "Kopieer CDEF's" #: /var/www/html/cacti/cdef.php:296 msgid "You must select at least one CDEF." msgstr "U moet op zijn minst een CDEF selecteren." #: /var/www/html/cacti/cdef.php:338 msgid "Click 'Continue' to delete the following CDEF Item." msgstr "Klik op 'Volgende' om het volgende CDEF item te verwijderen." #: /var/www/html/cacti/cdef.php:339 #, php-format msgid "CDEF Name: '%s'" msgstr "CDEF naam: '%s'" #: /var/www/html/cacti/cdef.php:346 msgid "Remove CDEF Item" msgstr "Verwijder CDEF item" #: /var/www/html/cacti/cdef.php:423 msgid "CDEF Preview" msgstr "CDEF Voorbeeld" #: /var/www/html/cacti/cdef.php:434 #, php-format msgid "CDEF Items [edit: %s]" msgstr "CDEF items [wijzig: %s]" #: /var/www/html/cacti/cdef.php:447 msgid "CDEF Item Type" msgstr "Type CDEF item" #: /var/www/html/cacti/cdef.php:448 msgid "Choose what type of CDEF item this is." msgstr "Kies het type CDEF item." #: /var/www/html/cacti/cdef.php:454 msgid "CDEF Item Value" msgstr "Waarde CDEF item" #: /var/www/html/cacti/cdef.php:455 msgid "Enter a value for this CDEF item." msgstr "Voer een waarde in voor dit CDEF item." #: /var/www/html/cacti/cdef.php:571 #, php-format msgid "CDEF [edit: %s]" msgstr "CDEF [wijzig: %s]" #: /var/www/html/cacti/cdef.php:573 msgid "CDEF [new]" msgstr "CDEF [nieuw]" #: /var/www/html/cacti/cdef.php:594 /var/www/html/cacti/lib/functions.php:2134 msgid "CDEF Items" msgstr "CDEF Items" #: /var/www/html/cacti/cdef.php:598 /var/www/html/cacti/vdef.php:572 msgid "Item Value" msgstr "Item waarde" #: /var/www/html/cacti/cdef.php:615 /var/www/html/cacti/vdef.php:591 #, php-format msgid "Item #%d" msgstr "Item #%d" #: /var/www/html/cacti/cdef.php:675 msgid "Delete CDEF Item" msgstr "Verwijder CDEF item" #: /var/www/html/cacti/cdef.php:733 /var/www/html/cacti/cdef.php:748 #: /var/www/html/cacti/cdef.php:864 #: /var/www/html/cacti/include/global_arrays.php:816 #: /var/www/html/cacti/lib/functions.php:2116 msgid "CDEFs" msgstr "CDEF's" #: /var/www/html/cacti/cdef.php:873 msgid "CDEF Name" msgstr "CDEF naam" #: /var/www/html/cacti/cdef.php:873 #: /var/www/html/cacti/data_source_profiles.php:962 msgid "The name of this CDEF." msgstr "De naam van deze CDEF." #: /var/www/html/cacti/cdef.php:874 msgid "" "CDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" "CDEF's die in gebruik zijn kunnen niet worden verwijderd. Een CDEF is in " "gebruik als deze door een grafiek of grafiektemplate wordt gebruikt." #: /var/www/html/cacti/cdef.php:875 msgid "The number of Graphs using this CDEF." msgstr "Het aantal grafieken die deze CDEF gebruiken." #: /var/www/html/cacti/cdef.php:876 /var/www/html/cacti/color.php:704 #: /var/www/html/cacti/data_input.php:735 #: /var/www/html/cacti/data_queries.php:1243 #: /var/www/html/cacti/data_source_profiles.php:969 #: /var/www/html/cacti/gprint_presets.php:396 /var/www/html/cacti/vdef.php:866 msgid "Templates Using" msgstr "Gebruikte templates" #: /var/www/html/cacti/cdef.php:876 msgid "The number of Graphs Templates using this CDEF." msgstr "Het aantal grafiektemplates die deze CDEF gebruiken." #: /var/www/html/cacti/cdef.php:898 msgid "No CDEFs" msgstr "Geen CDEF's" #: /var/www/html/cacti/clog.php:33 /var/www/html/cacti/clog_user.php:32 msgid "FATAL: YOU DO NO HAVE ACCESS TO THIS AREA OF CACTI" msgstr "FOUT: U HEEFT GEEN TOEGANG TOT DEZE SECTIE VAN CACTI" #: /var/www/html/cacti/color.php:170 msgid "Unnamed Color" msgstr "Naamloze kleur" #: /var/www/html/cacti/color.php:187 msgid "Click 'Continue' to delete the following Color" msgid_plural "Click 'Continue' to delete the following Colors" msgstr[0] "Klik op 'Volgende' om de volgende kleur te verwijderen" msgstr[1] "Klik op 'Volgende' om de volgende kleuren te verwijderen" #: /var/www/html/cacti/color.php:192 msgid "Delete Color" msgid_plural "Delete Colors" msgstr[0] "Verwijder kleur" msgstr[1] "Verwijder kleuren" #: /var/www/html/cacti/color.php:195 msgid "You must select at least one Color." msgstr "U moet tenminste een kleur selecteren." #: /var/www/html/cacti/color.php:351 msgid "Cacti has imported the following items:" msgstr "Cacti heeft de volgende items geïmporteerd:" #: /var/www/html/cacti/color.php:365 /var/www/html/cacti/color.php:569 msgid "Import Colors" msgstr "Importeer kleuren" #: /var/www/html/cacti/color.php:368 msgid "Import Colors from Local File" msgstr "Importeer kleuren vanuit een lokaal bestand" #: /var/www/html/cacti/color.php:369 msgid "" "Please specify the location of the CSV file containing your Color " "information." msgstr "Specificeer de locatie van het CSV bestand met de kleurinformatie." #: /var/www/html/cacti/color.php:373 /var/www/html/cacti/lib/html_form.php:471 msgid "Select a File" msgstr "Selecteer een bestand" #: /var/www/html/cacti/color.php:380 msgid "Overwrite Existing Data?" msgstr "Bestaande data overschrijven?" #: /var/www/html/cacti/color.php:381 msgid "" "Should the import process be allowed to overwrite existing data? Please " "note, this does not mean delete old rows, only update duplicate rows." msgstr "" "Mag bestaande data door het import proces worden overschreven? Dit betekent " "niet dat oude rijen worden verwijderd, bestaande dubbele rijen worden alleen " "bijgewerkt." #: /var/www/html/cacti/color.php:384 msgid "Allow Existing Rows to be Updated?" msgstr "Bijwerken van bestaande rijen toestaan?" #: /var/www/html/cacti/color.php:389 msgid "Required File Format Notes" msgstr "Verplichte bestandsformaat opmerkingen" #: /var/www/html/cacti/color.php:392 msgid "The file must contain a header row with the following column headings." msgstr "Het bestand moet kolomkoppen bevatten met de volgende kolomnamen." #: /var/www/html/cacti/color.php:394 msgid "name - The Color Name" msgstr "Naam - De kleurnaam" #: /var/www/html/cacti/color.php:395 msgid "hex - The Hex Value" msgstr "hex - De hex waarde" #: /var/www/html/cacti/color.php:416 #, php-format msgid "Colors [edit: %s]" msgstr "Kleuren [wijzig: %s]" #: /var/www/html/cacti/color.php:418 msgid "Colors [new]" msgstr "Kleuren [nieuw]" #: /var/www/html/cacti/color.php:520 /var/www/html/cacti/color.php:535 #: /var/www/html/cacti/color.php:689 #: /var/www/html/cacti/include/global_arrays.php:818 #: /var/www/html/cacti/lib/functions.php:2182 msgid "Colors" msgstr "Kleuren" #: /var/www/html/cacti/color.php:552 msgid "Named Colors" msgstr "Benoemde kleuren" #: /var/www/html/cacti/color.php:569 /var/www/html/cacti/lib/html_form.php:1167 msgid "Import" msgstr "Importeren" #: /var/www/html/cacti/color.php:570 msgid "Export Colors" msgstr "Exporteer kleuren" #: /var/www/html/cacti/color.php:698 /var/www/html/cacti/color_templates.php:74 msgid "Hex" msgstr "Hex" #: /var/www/html/cacti/color.php:698 msgid "The Hex Value for this Color." msgstr "De hex waarde voor deze kleur." #: /var/www/html/cacti/color.php:699 msgid "Color Name" msgstr "Kleurnaam" #: /var/www/html/cacti/color.php:699 msgid "The name of this Color definition." msgstr "De naam van deze kleurdefinitie." #: /var/www/html/cacti/color.php:700 msgid "Is this color a named color which are read only." msgstr "Is deze kleur als alleen lezen benoemd." #: /var/www/html/cacti/color.php:700 msgid "Named Color" msgstr "Benoemde kleur" #: /var/www/html/cacti/color.php:701 /var/www/html/cacti/color_templates.php:73 #: /var/www/html/cacti/include/global_arrays.php:804 #: /var/www/html/cacti/include/global_form.php:799 #: /var/www/html/cacti/include/global_form.php:2052 msgid "Color" msgstr "Kleur" #: /var/www/html/cacti/color.php:701 msgid "The Color as shown on the screen." msgstr "De kleur zoals getoond op het scherm." #: /var/www/html/cacti/color.php:702 msgid "" "Colors in use cannot be Deleted. In use is defined as being referenced " "either by a Graph or a Graph Template." msgstr "" "In gebruik zijnde kleuren kunnen niet worden verwijderd. Een kleur is in " "gebruik als deze wordt gebruikt in een grafiek of grafiektemplate." #: /var/www/html/cacti/color.php:703 msgid "The number of Graph using this Color." msgstr "Het aantal grafieken dat deze kleur gebruikt." #: /var/www/html/cacti/color.php:704 msgid "The number of Graph Templates using this Color." msgstr "Het aantal grafiektemplates dat deze kleur gebruikt." #: /var/www/html/cacti/color.php:734 msgid "No Colors Found" msgstr "Geen kleuren gevonden" #: /var/www/html/cacti/color_templates.php:72 msgid "Color Item" msgstr "Kleur item" #: /var/www/html/cacti/color_templates.php:132 #: /var/www/html/cacti/graph_templates_inputs.php:227 #: /var/www/html/cacti/lib/api_aggregate.php:1435 #: /var/www/html/cacti/lib/html.php:1066 msgid "No Items" msgstr "Geen items" #: /var/www/html/cacti/color_templates.php:227 msgid "Click 'Continue' to delete the following Color Template" msgid_plural "Click 'Continue' to delete following Color Templates" msgstr[0] "Klik op 'Volgende' om het volgende kleurtemplate te verwijderen" msgstr[1] "Klik op 'Volgende' om de volgende kleurtemplates te verwijderen" #: /var/www/html/cacti/color_templates.php:232 msgid "Delete Color Template" msgid_plural "Delete Color Templates" msgstr[0] "Verwijder kleurtemplate" msgstr[1] "Verwijder kleurtemplates" #: /var/www/html/cacti/color_templates.php:236 msgid "" "Click 'Continue' to duplicate the following Color Template. You can " "optionally change the title format for the new color template." msgid_plural "" "Click 'Continue' to duplicate following Color Templates. You can optionally " "change the title format for the new color templates." msgstr[0] "" "Klik op 'Volgende' om het volgende kleurtemplate te dupliceren. Optioneel is " "het mogelijk om het formaat van de titel te wijzigen voor het nieuwe kleuren " "template." msgstr[1] "" "Klik op 'Volgende' om de volgende kleurtemplates te dupliceren. Optioneel is " "het mogelijk om het formaat van de titel te wijzigen voor het nieuwe kleuren " "template." #: /var/www/html/cacti/color_templates.php:242 msgid "Duplicate Color Template" msgid_plural "Duplicate Color Templates" msgstr[0] "Dupliceer kleurentemplate" msgstr[1] "Dupliceer kleurtemplates" #: /var/www/html/cacti/color_templates.php:245 msgid "You must select at least one Color Template." msgstr "U moet tenminste een kleurentemplate kiezen." #: /var/www/html/cacti/color_templates.php:278 msgid "Color Template Items [new]" msgstr "Kleurtemplate items [nieuw]" #: /var/www/html/cacti/color_templates.php:289 #, php-format msgid "Color Template Items [edit: %s]" msgstr "Kleurtemplate items [wijzig: %s]" #: /var/www/html/cacti/color_templates.php:323 msgid "Delete Color Item" msgstr "Verwijder kleur item" #: /var/www/html/cacti/color_templates.php:353 #, php-format msgid "Color Template [edit: %s]" msgstr "Kleurtemplate [wijzig: %s]" #: /var/www/html/cacti/color_templates.php:355 msgid "Color Template [new]" msgstr "Kleurtemplate [nieuw]" #: /var/www/html/cacti/color_templates.php:436 #: /var/www/html/cacti/color_templates.php:449 #: /var/www/html/cacti/color_templates.php:541 #: /var/www/html/cacti/lib/functions.php:2662 msgid "Color Templates" msgstr "Kleurtemplates" #: /var/www/html/cacti/color_templates.php:551 msgid "" "Color Templates that are in use cannot be Deleted. In use is defined as " "being referenced by an Aggregate Template." msgstr "" "Kleurtemplates die in gebruik zijn kunnen niet worden verwijderd. Een " "kleurtemplate is in gebruik als het wordt gebruikt voor een geaggregeerd " "template." #: /var/www/html/cacti/color_templates.php:576 msgid "No Color Templates Found" msgstr "Geen kleurentemplates gevonden" #: /var/www/html/cacti/color_templates_items.php:257 msgid "Click 'Continue' to delete the following Color Template Color." msgstr "Klik op 'Volgende' om de volgende kleurtemplate kleur te verwijderen." #: /var/www/html/cacti/color_templates_items.php:258 msgid "Color Name:" msgstr "Kleurnaam:" #: /var/www/html/cacti/color_templates_items.php:259 msgid "Color Hex:" msgstr "Kleur hex:" #: /var/www/html/cacti/color_templates_items.php:265 msgid "Remove Color Item" msgstr "Verwijder kleuritem" #: /var/www/html/cacti/color_templates_items.php:321 #, php-format msgid "Color Template Items [edit Report Item: %s]" msgstr "Kleurtemplate items [wijzig Rapportageitem: %s]" #: /var/www/html/cacti/color_templates_items.php:324 #, php-format msgid "Color Template Items [new Report Item: %s]" msgstr "Kleurtemplate items [nieuw Rapportitem: %s]" #: /var/www/html/cacti/data_input.php:212 msgid "Click 'Continue' to delete the following Data Input Method" msgid_plural "Click 'Continue' to delete the following Data Input Method" msgstr[0] "" "Klik op 'Volgende' om de volgende data invoer methode te verwijderen" msgstr[1] "" "Klik op 'Volgende' om de volgende data invoer methoden te verwijderen" #: /var/www/html/cacti/data_input.php:218 msgid "Delete Data Input Method" msgid_plural "Delete Data Input Methods" msgstr[0] "Verwijder data invoer methode" msgstr[1] "Verwijder data invoer methoden" #: /var/www/html/cacti/data_input.php:220 msgid "You must select at least one data input method." msgstr "U moet op zijn minst een data invoer methode selecteren." #: /var/www/html/cacti/data_input.php:259 msgid "Click 'Continue' to delete the following Data Input Field." msgstr "Klik op 'Volgende' om het volgende data invoer veld te verwijderen." #: /var/www/html/cacti/data_input.php:260 #, php-format msgid "Field Name: %s" msgstr "Veldnaam: %s" #: /var/www/html/cacti/data_input.php:261 #, php-format msgid "Friendly Name: %s" msgstr "Leesbare naam: %s" #: /var/www/html/cacti/data_input.php:267 #: /var/www/html/cacti/host_templates.php:335 #: /var/www/html/cacti/host_templates.php:391 msgid "Remove Data Input Field" msgstr "Verwijder data invoer veld" #: /var/www/html/cacti/data_input.php:355 msgid "" "This script appears to have no input values, therefore there is nothing to " "add." msgstr "" #: /var/www/html/cacti/data_input.php:361 #, php-format msgid "Output Fields [edit: %s]" msgstr "Uitvoer veld [wijzig: %s]" #: /var/www/html/cacti/data_input.php:362 #: /var/www/html/cacti/include/global_form.php:474 msgid "Output Field" msgstr "Uitvoer veld" #: /var/www/html/cacti/data_input.php:364 #, php-format msgid "Input Fields [edit: %s]" msgstr "Invoer veld [wijzig: %s]" #: /var/www/html/cacti/data_input.php:365 msgid "Input Field" msgstr "Invoer veld" #: /var/www/html/cacti/data_input.php:436 #, php-format msgid "Data Input Methods [edit: %s]" msgstr "Data invoer methode [wijzig: %s]" #: /var/www/html/cacti/data_input.php:438 msgid "Data Input Methods [new]" msgstr "Data invoer methode [nieuw]" #: /var/www/html/cacti/data_input.php:448 #: /var/www/html/cacti/include/global_arrays.php:381 msgid "SNMP Get" msgstr "SNMP get" #: /var/www/html/cacti/data_input.php:451 #: /var/www/html/cacti/include/global_arrays.php:382 msgid "SNMP Query" msgstr "SNMP query" #: /var/www/html/cacti/data_input.php:454 #: /var/www/html/cacti/include/global_arrays.php:384 msgid "Script Query" msgstr "Script query" #: /var/www/html/cacti/data_input.php:457 #: /var/www/html/cacti/include/global_arrays.php:386 msgid "Script Query - Script Server" msgstr "Script query - Script server" #: /var/www/html/cacti/data_input.php:470 msgid "Input Fields" msgstr "Invoer veld" #: /var/www/html/cacti/data_input.php:473 msgid "Field Order" msgstr "Veldvolgorde" #: /var/www/html/cacti/data_input.php:474 #: /var/www/html/cacti/data_input.php:507 #: /var/www/html/cacti/include/global_form.php:279 msgid "Friendly Name" msgstr "Leesbare naam" #: /var/www/html/cacti/data_input.php:488 msgid "(Not In Use)" msgstr "(Niet in gebruik)" #: /var/www/html/cacti/data_input.php:500 msgid "No Input Fields" msgstr "Geen invoer velden" #: /var/www/html/cacti/data_input.php:504 msgid "Output Fields" msgstr "Uitvoer velden" #: /var/www/html/cacti/data_input.php:508 msgid "Update RRA" msgstr "RRA bijwerken" #: /var/www/html/cacti/data_input.php:539 msgid "No Output Fields" msgstr "Geen uitvoer velden" #: /var/www/html/cacti/data_input.php:562 #: /var/www/html/cacti/host_templates.php:593 msgid "Delete Data Input Field" msgstr "Verwijder data invoer veld" #: /var/www/html/cacti/data_input.php:619 #: /var/www/html/cacti/include/global_arrays.php:797 #: /var/www/html/cacti/include/global_arrays.php:967 #: /var/www/html/cacti/lib/functions.php:2320 msgid "Data Input Methods" msgstr "Data invoer methoden" #: /var/www/html/cacti/data_input.php:634 #: /var/www/html/cacti/data_input.php:723 msgid "Input Methods" msgstr "Invoer methoden" #: /var/www/html/cacti/data_input.php:732 msgid "Data Input Name" msgstr "Data invoer naam" #: /var/www/html/cacti/data_input.php:732 msgid "The name of this Data Input Method." msgstr "De naam van deze data invoer methode." #: /var/www/html/cacti/data_input.php:733 msgid "" "Data Inputs that are in use cannot be Deleted. In use is defined as being " "referenced either by a Data Source or a Data Template." msgstr "" "Data invoer velden die in gebruik zijn kunnen niet worden verwijderd. Een " "data invoer veld is in gebruik als deze is gekoppeld aan een data source of " "data template." #: /var/www/html/cacti/data_input.php:734 #: /var/www/html/cacti/data_source_profiles.php:968 #: /var/www/html/cacti/data_templates.php:949 msgid "Data Sources Using" msgstr "Databron gebruikt" #: /var/www/html/cacti/data_input.php:734 msgid "The number of Data Sources that use this Data Input Method." msgstr "Het aantal data bronnen dat deze data invoer methode gebruiken." #: /var/www/html/cacti/data_input.php:735 msgid "The number of Data Templates that use this Data Input Method." msgstr "Het aantal data templates dat deze data invoer methode gebruiken." #: /var/www/html/cacti/data_input.php:736 #: /var/www/html/cacti/data_queries.php:1244 #: /var/www/html/cacti/include/global_arrays.php:1091 #: /var/www/html/cacti/include/global_form.php:398 #: /var/www/html/cacti/include/global_form.php:1298 msgid "Data Input Method" msgstr "Data invoer methode" #: /var/www/html/cacti/data_input.php:736 msgid "The method used to gather information for this Data Input Method." msgstr "" "De methode die moet worden gebruikt om informatie te verzamelen over deze " "data invoer methode." #: /var/www/html/cacti/data_input.php:759 msgid "No Data Input Methods Found" msgstr "Geen data invoer methoden gevonden" #: /var/www/html/cacti/data_queries.php:326 msgid "Click 'Continue' to delete the following Data Query." msgid_plural "Click 'Continue' to delete following Data Queries." msgstr[0] "Klik op 'Volgende' om de volgende data query te verwijderen." msgstr[1] "Klik op 'Volgende' om de volgende data queries te verwijderen." #: /var/www/html/cacti/data_queries.php:332 msgid "Delete Data Query" msgid_plural "Delete Data Query" msgstr[0] "Verwijder data query" msgstr[1] "Verwijder data queries" #: /var/www/html/cacti/data_queries.php:334 msgid "You must select at least one data query." msgstr "U moet op zijn minst een data query selecteren." #: /var/www/html/cacti/data_queries.php:480 msgid "Click 'Continue' to delete the following Data Query Graph Association." msgstr "" "Klik op 'Volgende' om de volgende data query grafiek koppeling te " "verwijderen." #: /var/www/html/cacti/data_queries.php:481 #, php-format msgid "Graph Name: %s" msgstr "Grafieknaam: %s" #: /var/www/html/cacti/data_queries.php:487 /var/www/html/cacti/vdef.php:333 msgid "Remove VDEF Item" msgstr "Verwijder VDEF item" #: /var/www/html/cacti/data_queries.php:545 #, php-format msgid "Associated Graph/Data Templates [edit: %s]" msgstr "Gekoppelde grafiek/data templates [wijzig: %s]" #: /var/www/html/cacti/data_queries.php:569 msgid "Associated Data Templates" msgstr "Gekoppelde data templates" #: /var/www/html/cacti/data_queries.php:587 #, php-format msgid "Data Template - %s" msgstr "Data template - %s" #: /var/www/html/cacti/data_queries.php:617 #: /var/www/html/cacti/data_sources.php:881 #: /var/www/html/cacti/data_templates.php:547 #: /var/www/html/cacti/graphs_items.php:439 #: /var/www/html/cacti/include/global_arrays.php:802 #: /var/www/html/cacti/include/global_form.php:784 #: /var/www/html/cacti/lib/api_aggregate.php:1299 #: /var/www/html/cacti/lib/html.php:944 msgid "Data Source" msgstr "Data bron" #: /var/www/html/cacti/data_queries.php:652 msgid "Suggested Values - Graphs" msgstr "Gesuggereerde waarden - Grafieken" #: /var/www/html/cacti/data_queries.php:664 #: /var/www/html/cacti/data_queries.php:762 msgid "Equation" msgstr "Vergelijking" #: /var/www/html/cacti/data_queries.php:717 #: /var/www/html/cacti/data_queries.php:818 msgid "No Suggested Values Found" msgstr "Geen voorgestelde waarde gevonden" #: /var/www/html/cacti/data_queries.php:726 #: /var/www/html/cacti/data_queries.php:827 #: /var/www/html/cacti/include/global_form.php:2087 #: /var/www/html/cacti/include/global_form.php:2129 #: /var/www/html/cacti/lib/api_automation.php:1363 #: /var/www/html/cacti/utilities.php:1500 msgid "Field Name" msgstr "Veldnaam" #: /var/www/html/cacti/data_queries.php:732 #: /var/www/html/cacti/data_queries.php:833 msgid "Suggested Value" msgstr "Voorgestelde waarde" #: /var/www/html/cacti/data_queries.php:738 #: /var/www/html/cacti/data_queries.php:839 /var/www/html/cacti/host.php:810 #: /var/www/html/cacti/host.php:927 /var/www/html/cacti/host_templates.php:507 #: /var/www/html/cacti/host_templates.php:561 #: /var/www/html/cacti/lib/html.php:62 #: /var/www/html/cacti/lib/html_filter.php:55 msgid "Add" msgstr "Toevoegen" #: /var/www/html/cacti/data_queries.php:738 msgid "Add Graph Title Suggested Name" msgstr "Voorgestelde naam van grafiek titel toevoegen" #: /var/www/html/cacti/data_queries.php:748 msgid "Suggested Values - Data Sources" msgstr "Voorgestelde waarden - Data bronnen" #: /var/www/html/cacti/data_queries.php:839 msgid "Add Data Source Name Suggested Name" msgstr "Voorgestelde data bron naam toevoegen" #: /var/www/html/cacti/data_queries.php:956 #, php-format msgid "Data Queries [edit: %s]" msgstr "Data queries [wijzig: %s]" #: /var/www/html/cacti/data_queries.php:958 msgid "Data Queries [new]" msgstr "Data queries [nieuw]" #: /var/www/html/cacti/data_queries.php:978 msgid "Successfully located XML file" msgstr "XML bestand gevonden" #: /var/www/html/cacti/data_queries.php:981 msgid "Could not locate XML file." msgstr "XML bestand niet gevonden." #: /var/www/html/cacti/data_queries.php:989 /var/www/html/cacti/host.php:722 #: /var/www/html/cacti/host_templates.php:458 #: /var/www/html/cacti/lib/functions.php:2374 msgid "Associated Graph Templates" msgstr "Gekoppelde grafiektemplates" #: /var/www/html/cacti/data_queries.php:993 #: /var/www/html/cacti/graph_templates.php:764 #: /var/www/html/cacti/graphs_new.php:641 /var/www/html/cacti/host.php:726 #: /var/www/html/cacti/lib/api_automation.php:571 msgid "Graph Template Name" msgstr "Naam grafiektemplate" #: /var/www/html/cacti/data_queries.php:995 msgid "Mapping ID" msgstr "Mapping ID" #: /var/www/html/cacti/data_queries.php:1036 msgid "Mapped Graph Templates with Graphs are read only" msgstr "" "Als grafiektemplates aan grafieken zijn gekoppeld zijn deze niet wijzigbaar" #: /var/www/html/cacti/data_queries.php:1043 msgid "No Graph Templates Defined." msgstr "Geen grafiektemplate gedefinieerd." #: /var/www/html/cacti/data_queries.php:1068 msgid "Delete Associated Graph" msgstr "Verwijder gekoppelde grafiek" #: /var/www/html/cacti/data_queries.php:1125 #: /var/www/html/cacti/data_queries.php:1140 #: /var/www/html/cacti/data_queries.php:1230 #: /var/www/html/cacti/include/global_arrays.php:796 #: /var/www/html/cacti/include/global_arrays.php:968 #: /var/www/html/cacti/lib/api_automation.php:1058 #: /var/www/html/cacti/lib/functions.php:2356 msgid "Data Queries" msgstr "Data queries" #: /var/www/html/cacti/data_queries.php:1239 /var/www/html/cacti/host.php:824 #: /var/www/html/cacti/utilities.php:1500 msgid "Data Query Name" msgstr "Data query naam" #: /var/www/html/cacti/data_queries.php:1239 msgid "The name of this Data Query." msgstr "De naam van deze data query." #: /var/www/html/cacti/data_queries.php:1240 #: /var/www/html/cacti/graph_templates.php:765 msgid "" "The internal ID for this Graph Template. Useful when performing automation " "or debugging." msgstr "" "Het interne ID voor deze grafiektemplate. Handig voor automation of " "debugging." #: /var/www/html/cacti/data_queries.php:1241 msgid "" "Data Queries that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" "Data queries die in gebruik zijn kunnen niet worden verwijderd. Een data " "query is in gebruik als deze wordt gebruikt in een grafiek of " "grafiektemplate." #: /var/www/html/cacti/data_queries.php:1242 msgid "The number of Graphs using this Data Query." msgstr "Het aantal grafieken dat deze data query gebruikt." #: /var/www/html/cacti/data_queries.php:1243 msgid "The number of Graphs Templates using this Data Query." msgstr "Het aantal grafiektemplates dat deze data query gebruikt." #: /var/www/html/cacti/data_queries.php:1244 msgid "" "The Data Input Method used to collect data for Data Sources associated with " "this Data Query." msgstr "" "De data invoer methode die gebruikt wordt om data the verzamelen voor de " "data bronnen die gekoppeld zijn met deze data query." #: /var/www/html/cacti/data_queries.php:1268 msgid "No Data Queries Found" msgstr "Geen data queries gevonden" #: /var/www/html/cacti/data_source_profiles.php:275 msgid "Click 'Continue' to delete the following Data Source Profile" msgid_plural "Click 'Continue' to delete following Data Source Profiles" msgstr[0] "Klik op 'Volgende' om het volgende data bron profiel te verwijderen" msgstr[1] "" "Klik op 'Volgende' om de volgende data bron profielen te verwijderen" #: /var/www/html/cacti/data_source_profiles.php:280 msgid "Delete Data Source Profile" msgid_plural "Delete Data Source Profiles" msgstr[0] "Verwijder data bron profiel" msgstr[1] "Verwijder data bron profielen" #: /var/www/html/cacti/data_source_profiles.php:284 msgid "" "Click 'Continue' to duplicate the following Data Source Profile. You can " "optionally change the title format for the new Data Source Profile" msgid_plural "" "Click 'Continue' to duplicate following Data Source Profiles. You can " "optionally change the title format for the new Data Source Profiles." msgstr[0] "" "Klik op 'Volgende' om het volgende data bron profiel te dupliceren. " "Optioneel is het mogelijk om het titel formaat voor het nieuwe data bron " "profiel te wijzigen" msgstr[1] "" "Klik op 'Volgende' om de volgende data bron profielen te dupliceren. " "Optioneel is het mogelijk om het titel formaat voor de nieuwe data bron " "profielen te wijzigen." #: /var/www/html/cacti/data_source_profiles.php:290 msgid "Duplicate Data Source Profile" msgid_plural "Duplicate Date Source Profiles" msgstr[0] "Dupliceer data bron profiel" msgstr[1] "Dupliceer data bron profielen" #: /var/www/html/cacti/data_source_profiles.php:293 msgid "You must select at least one Data Source Profile." msgstr "U moet op zijn minst een data bron profiel selecteren." #: /var/www/html/cacti/data_source_profiles.php:335 msgid "Click 'Continue' to delete the following Data Source Profile RRA." msgstr "Klik op 'Volgende' om de volgende dat bron profiel RRA te verwijderen." #: /var/www/html/cacti/data_source_profiles.php:336 #, php-format msgid "Profile Name: %s" msgstr "Profielnaam: %s" #: /var/www/html/cacti/data_source_profiles.php:342 msgid "Remove Data Source Profile RRA" msgstr "Verwijder data bron profiel RRA" #: /var/www/html/cacti/data_source_profiles.php:403 #: /var/www/html/cacti/data_source_profiles.php:422 msgid "Each Insert is New Row" msgstr "Iedere invoer is een nieuwe rij" #: /var/www/html/cacti/data_source_profiles.php:441 msgid "(Some Elements Read Only)" msgstr "(Sommige elementen zijn niet wijzigbaar)" #: /var/www/html/cacti/data_source_profiles.php:441 #, php-format msgid "RRA [edit: %s %s]" msgstr "RRA [wijzig: %s %s]" #: /var/www/html/cacti/data_source_profiles.php:536 #, php-format msgid "Data Source Profile [edit: %s]" msgstr "Data bron profiel [wijzig: %s]" #: /var/www/html/cacti/data_source_profiles.php:538 msgid "Data Source Profile [new]" msgstr "Data bron profiel [nieuw]" #: /var/www/html/cacti/data_source_profiles.php:556 msgid "Data Source Profile RRAs (press save to update timespans)" msgstr "" "Data bron profiel RRA's (Klik op 'Opslaan' om de tijdperiode bij te werken)" #: /var/www/html/cacti/data_source_profiles.php:558 msgid "Data Source Profile RRAs (Read Only)" msgstr "Data bron profiel RRA's (alleen lezen)" #: /var/www/html/cacti/data_source_profiles.php:563 #: /var/www/html/cacti/include/global_form.php:134 msgid "Data Retention" msgstr "Data retentie" #: /var/www/html/cacti/data_source_profiles.php:564 #: /var/www/html/cacti/include/global_settings.php:801 #: /var/www/html/cacti/lib/html_reports.php:426 msgid "Graph Timespan" msgstr "Grafiek tijdspanne" #: /var/www/html/cacti/data_source_profiles.php:565 msgid "Steps" msgstr "Stappen" #: /var/www/html/cacti/data_source_profiles.php:566 #: /var/www/html/cacti/graphs_new.php:580 #: /var/www/html/cacti/include/global_form.php:118 #: /var/www/html/cacti/lib/html.php:385 #: /var/www/html/cacti/lib/html_filter.php:73 #: /var/www/html/cacti/lib/rrd.php:2741 /var/www/html/cacti/utilities.php:481 #: /var/www/html/cacti/utilities.php:1412 msgid "Rows" msgstr "Rijen" #: /var/www/html/cacti/data_source_profiles.php:619 msgid "Select Consolidation Function(s)" msgstr "Kies een of meerdere consolidatie functie(s)" #: /var/www/html/cacti/data_source_profiles.php:646 msgid "Delete Data Source Profile Item" msgstr "Verwijder data bron profiel item" #: /var/www/html/cacti/data_source_profiles.php:711 #, php-format msgid "%s KBytes per Data Sources and %s Bytes for the Header" msgstr "%s KBytes per data bron en %s Bytes voor de header" #: /var/www/html/cacti/data_source_profiles.php:720 #, php-format msgid "%s KBytes per Data Source" msgstr "%s KBytes per data bron" #: /var/www/html/cacti/data_source_profiles.php:734 #: /var/www/html/cacti/include/global_arrays.php:637 #: /var/www/html/cacti/include/global_arrays.php:1202 #: /var/www/html/cacti/include/global_settings.php:1114 #, php-format msgid "%d Years" msgstr "%d Jaren" #: /var/www/html/cacti/data_source_profiles.php:734 msgid "1 Year" msgstr "1 Jaar" #: /var/www/html/cacti/data_source_profiles.php:743 #: /var/www/html/cacti/include/global_arrays.php:631 #: /var/www/html/cacti/include/global_arrays.php:1196 #: /var/www/html/cacti/rrdcleaner.php:489 #, php-format msgid "%d Month" msgstr "%d Maand" #: /var/www/html/cacti/data_source_profiles.php:743 #: /var/www/html/cacti/include/global_arrays.php:632 #: /var/www/html/cacti/include/global_arrays.php:633 #: /var/www/html/cacti/include/global_arrays.php:634 #: /var/www/html/cacti/include/global_arrays.php:635 #: /var/www/html/cacti/include/global_arrays.php:1197 #: /var/www/html/cacti/include/global_arrays.php:1198 #: /var/www/html/cacti/include/global_arrays.php:1199 #: /var/www/html/cacti/include/global_arrays.php:1200 #: /var/www/html/cacti/rrdcleaner.php:490 #: /var/www/html/cacti/rrdcleaner.php:491 #: /var/www/html/cacti/rrdcleaner.php:492 #, php-format msgid "%d Months" msgstr "%d Maanden" #: /var/www/html/cacti/data_source_profiles.php:752 #: /var/www/html/cacti/include/global_arrays.php:628 #: /var/www/html/cacti/include/global_arrays.php:1194 #: /var/www/html/cacti/rrdcleaner.php:485 #: /var/www/html/cacti/rrdcleaner.php:486 #, php-format msgid "%d Week" msgstr "%d Week" #: /var/www/html/cacti/data_source_profiles.php:752 #: /var/www/html/cacti/include/global_arrays.php:629 #: /var/www/html/cacti/include/global_arrays.php:630 #: /var/www/html/cacti/include/global_arrays.php:1195 #: /var/www/html/cacti/rrdcleaner.php:487 #: /var/www/html/cacti/rrdcleaner.php:488 #, php-format msgid "%d Weeks" msgstr "%d Weken" #: /var/www/html/cacti/data_source_profiles.php:761 #: /var/www/html/cacti/include/global_arrays.php:615 #: /var/www/html/cacti/include/global_arrays.php:625 #: /var/www/html/cacti/include/global_arrays.php:1190 #, php-format msgid "%d Day" msgstr "%d Dag" #: /var/www/html/cacti/data_source_profiles.php:761 #: /var/www/html/cacti/include/global_arrays.php:616 #: /var/www/html/cacti/include/global_arrays.php:626 #: /var/www/html/cacti/include/global_arrays.php:627 #: /var/www/html/cacti/include/global_arrays.php:1191 #: /var/www/html/cacti/include/global_arrays.php:1192 #: /var/www/html/cacti/include/global_arrays.php:1193 #: /var/www/html/cacti/include/global_settings.php:1109 #: /var/www/html/cacti/include/global_settings.php:1110 #: /var/www/html/cacti/include/global_settings.php:1111 #: /var/www/html/cacti/include/global_settings.php:1112 #: /var/www/html/cacti/include/global_settings.php:1123 #: /var/www/html/cacti/include/global_settings.php:1124 #: /var/www/html/cacti/include/global_settings.php:1125 #: /var/www/html/cacti/include/global_settings.php:1126 #, php-format msgid "%d Days" msgstr "%d Dagen" #: /var/www/html/cacti/data_source_profiles.php:769 #: /var/www/html/cacti/include/global_arrays.php:572 #: /var/www/html/cacti/include/global_arrays.php:1232 #: /var/www/html/cacti/include/global_arrays.php:1253 #: /var/www/html/cacti/include/global_arrays.php:1286 #: /var/www/html/cacti/include/global_arrays.php:1295 #: /var/www/html/cacti/include/global_arrays.php:1321 #: /var/www/html/cacti/include/global_settings.php:1180 msgid "1 Hour" msgstr "1 Uur" #: /var/www/html/cacti/data_source_profiles.php:823 #: /var/www/html/cacti/include/global_arrays.php:975 msgid "Data Source Profiles" msgstr "Data bron profielen" #: /var/www/html/cacti/data_source_profiles.php:838 #: /var/www/html/cacti/data_source_profiles.php:953 msgid "Profiles" msgstr "Profielen" #: /var/www/html/cacti/data_source_profiles.php:855 #: /var/www/html/cacti/data_templates.php:832 msgid "Has Data Sources" msgstr "Heeft data bronnen" #: /var/www/html/cacti/data_source_profiles.php:962 msgid "Data Source Profile Name" msgstr "Data bron profielnaam" #: /var/www/html/cacti/data_source_profiles.php:963 msgid "Is this the default Profile for all new Data Templates?" msgstr "Is dit het standaard profiel voor alle nieuwe data templates?" #: /var/www/html/cacti/data_source_profiles.php:964 msgid "" "Profiles that are in use cannot be Deleted. In use is defined as being " "referenced by a Data Source or a Data Template." msgstr "" "Profielen die in gebruik zijn kunnen niet worden verwijderd. Een profiel is " "in gebruik als deze wordt gebruikt door een data source of data template." #: /var/www/html/cacti/data_source_profiles.php:965 msgid "Profiles that are in use by Data Sources become read only for now." msgstr "" "Profielen die in gebruik zijn door een data bron worden 'alleen lezen'." #: /var/www/html/cacti/data_source_profiles.php:965 #: /var/www/html/cacti/include/global_form.php:194 msgid "Read Only" msgstr "Alleen lezen" #: /var/www/html/cacti/data_source_profiles.php:966 #: /var/www/html/cacti/data_sources.php:1407 #: /var/www/html/cacti/include/global_settings.php:923 msgid "Poller Interval" msgstr "Poller interval" #: /var/www/html/cacti/data_source_profiles.php:966 msgid "The Polling Frequency for the Profile" msgstr "De pollerfrequentie voor het profiel" #: /var/www/html/cacti/data_source_profiles.php:967 #: /var/www/html/cacti/include/global_form.php:52 #: /var/www/html/cacti/include/global_form.php:466 msgid "Heartbeat" msgstr "Heartbeat" #: /var/www/html/cacti/data_source_profiles.php:967 msgid "" "The Amount of Time, in seconds, without good data before Data is stored as " "Unknown" msgstr "" "De hoeveelheid tijd, in seconden, zonder goede data voordat data opgeslagen " "wordt als onbekend" #: /var/www/html/cacti/data_source_profiles.php:968 msgid "The number of Data Sources using this Profile." msgstr "Het aantal data bronnen die dit profiel gebruiken." #: /var/www/html/cacti/data_source_profiles.php:969 msgid "The number of Data Templates using this Profile." msgstr "Het aantal data templates die dit profiel gebruiken." #: /var/www/html/cacti/data_source_profiles.php:1013 msgid "No Data Source Profiles Found" msgstr "Geen data bron profielen gevonden" #: /var/www/html/cacti/data_sources.php:36 #: /var/www/html/cacti/data_sources.php:478 /var/www/html/cacti/graphs.php:54 msgid "Change Device" msgstr "Wijzig apparaat" #: /var/www/html/cacti/data_sources.php:37 /var/www/html/cacti/graphs.php:55 msgid "Reapply Suggested Names" msgstr "Gesuggereerde namen opnieuw toepassen" #: /var/www/html/cacti/data_sources.php:446 msgid "Click 'Continue' to delete the following Data Source" msgid_plural "Click 'Continue' to delete following Data Sources" msgstr[0] "Klik op 'Volgende' om de volgende data bron te verwijderen" msgstr[1] "Klik op 'Volgende' om de volgende data bronnen te verwijderen" #: /var/www/html/cacti/data_sources.php:450 msgid "The following graph is using these data sources:" msgid_plural "The following graphs are using these data sources:" msgstr[0] "De volgende grafiek gebruikt deze data bronnen:" msgstr[1] "De volgende grafieken gebruiken deze data bronnen:" #: /var/www/html/cacti/data_sources.php:459 msgid "Leave the Graph untouched." msgid_plural "Leave all Graphs untouched." msgstr[0] "Laat de grafiek ongewijzigd." msgstr[1] "Laat de grafieken ongewijzigd." #: /var/www/html/cacti/data_sources.php:460 msgid "" "Delete all Graph Items that reference this Data Source." msgid_plural "" "Delete all Graph Items that reference these Data Sources." msgstr[0] "" "Verwijder alle grafiekitems die gekoppeld zijn aan deze " "data bron." msgstr[1] "" "Verwijder alle grafiekitems die gekoppeld zijn aan deze " "data bronnen." #: /var/www/html/cacti/data_sources.php:461 msgid "Delete all Graphs that reference this Data Source." msgid_plural "" "Delete all Graphs that reference these Data Sources." msgstr[0] "" "Verwijder alle grafieken die gekoppeld zijn aan deze data " "bron." msgstr[1] "" "Verwijder alle grafieken die gekoppeld zijn aan deze data " "bronnen." #: /var/www/html/cacti/data_sources.php:468 msgid "Delete Data Source" msgid_plural "Delete Data Sources" msgstr[0] "Verwijder data bron" msgstr[1] "Verwijder data bronnen" #: /var/www/html/cacti/data_sources.php:472 msgid "Choose a new Device for this Data Source and click 'Continue'." msgid_plural "Choose a new Device for these Data Sources and click 'Continue'" msgstr[0] "Kies een nieuw apparaat voor deze data bron en klik op 'Volgende'." msgstr[1] "" "Kies een nieuw apparaat voor deze data bronnen en klik op 'Volgende'" #: /var/www/html/cacti/data_sources.php:474 msgid "New Device:" msgstr "Nieuw apparaat:" #: /var/www/html/cacti/data_sources.php:482 msgid "Click 'Continue' to enable the following Data Source." msgid_plural "Click 'Continue' to enable all following Data Sources." msgstr[0] "Klik op Volgende' om de volgende data bron te activeren." msgstr[1] "Klik op Volgende' om de volgende data bronnen te activeren." #: /var/www/html/cacti/data_sources.php:487 msgid "Enable Data Source" msgid_plural "Enable Data Sources" msgstr[0] "Activeer data bron" msgstr[1] "Activeer data bronnen" #: /var/www/html/cacti/data_sources.php:491 msgid "Click 'Continue' to disable the following Data Source." msgid_plural "Click 'Continue' to disable all following Data Sources." msgstr[0] "Klik op 'Volgende' om de volgende data bron uit te schakelen." msgstr[1] "Klik op 'Volgende' om de volgende data bronnen uit te schakelen." #: /var/www/html/cacti/data_sources.php:496 msgid "Disable Data Source" msgid_plural "Disable Data Sources" msgstr[0] "Deactiveer data bron" msgstr[1] "Deactiveer data bronnen" #: /var/www/html/cacti/data_sources.php:500 msgid "" "Click 'Continue' to re-apply the suggested name to the following Data Source." msgid_plural "" "Click 'Continue' to re-apply the suggested names to all following Data " "Sources." msgstr[0] "" "Klik op 'Volgende' om de voorgestelde naam voor de volgende data bron " "opnieuw toe te passen." msgstr[1] "" "Klik op 'Volgende' om de gesuggereerde namen voor de volgende data bron " "opnieuw toe te passen." #: /var/www/html/cacti/data_sources.php:505 msgid "Reapply Suggested Naming to Data Source" msgid_plural "Reapply Suggested Naming to Data Sources" msgstr[0] "Voorgestelde naam voor data bron opnieuw toepassen" msgstr[1] "Voorgestelde naam voor data bronnen opnieuw toepassen" #: /var/www/html/cacti/data_sources.php:514 msgid "You must select at least one data source." msgstr "U moet tenminste een data bron selecteren." #: /var/www/html/cacti/data_sources.php:572 #: /var/www/html/cacti/data_templates.php:667 #, php-format msgid "Custom Data [data input: %s]" msgstr "Aangepaste data [data invoer: %s]" #: /var/www/html/cacti/data_sources.php:605 #, php-format msgid "(From Device: %s)" msgstr "(Van apparaat: %s)" #: /var/www/html/cacti/data_sources.php:608 msgid "(From Data Template)" msgstr "(Van data template)" #: /var/www/html/cacti/data_sources.php:609 msgid "Nothing Entered" msgstr "Er is niets ingevoerd" #: /var/www/html/cacti/data_sources.php:624 #: /var/www/html/cacti/data_templates.php:723 msgid "No Input Fields for the Selected Data Input Source" msgstr "Geen invoervelden voor de geselecteerde data invoer bron" #: /var/www/html/cacti/data_sources.php:705 #, php-format msgid "Data Template Selection [edit: %s]" msgstr "Data template selectie [wijzig: %s]" #: /var/www/html/cacti/data_sources.php:711 msgid "Data Template Selection [new]" msgstr "Data template selectie [nieuw]" #: /var/www/html/cacti/data_sources.php:744 msgid "Turn Off Data Source Debug Mode." msgstr "Data bron debug modus uitschakelen." #: /var/www/html/cacti/data_sources.php:744 msgid "Turn On Data Source Debug Mode." msgstr "Data bron debug modus inschakelen." #: /var/www/html/cacti/data_sources.php:745 msgid "Turn Off Data Source Info Mode." msgstr "Data bron info modus uitschakelen." #: /var/www/html/cacti/data_sources.php:745 msgid "Turn On Data Source Info Mode." msgstr "Data bron info modus inschakelen." #: /var/www/html/cacti/data_sources.php:748 msgid "Edit Data Template." msgstr "Wijzig datatemplate." #: /var/www/html/cacti/data_sources.php:751 /var/www/html/cacti/graphs.php:1333 msgid "Edit Device." msgstr "Wijzig apparaat." #: /var/www/html/cacti/data_sources.php:814 msgid "Selected Data Template" msgstr "Geselecteerde data template" #: /var/www/html/cacti/data_sources.php:815 #, php-format msgid "" "The name given to this data template. Please note that you may only change " "Graph Templates to a 100% compatible Graph Template, which means that it " "includes identical Data Sources." msgstr "" "De naam van dit data template. Let op dat u alleen grafiek templates kunt " "wijzigen naar een 100% compatible grafiek template, dit betekent dat deze " "dezelfde data bronnen moeten hebben." #: /var/www/html/cacti/data_sources.php:823 msgid "Choose the Device that this Data Source belongs to." msgstr "Kies het apparaat waartoe deze data bron behoort." #: /var/www/html/cacti/data_sources.php:869 msgid "Supplemental Data Template Data" msgstr "Aanvullende data template data" #: /var/www/html/cacti/data_sources.php:871 msgid "Data Source Fields" msgstr "Data bron velden" #: /var/www/html/cacti/data_sources.php:872 msgid "Data Source Item Fields" msgstr "Data bron item velden" #: /var/www/html/cacti/data_sources.php:873 msgid "Custom Data" msgstr "Aangepaste data" #: /var/www/html/cacti/data_sources.php:957 #, php-format msgid "Data Source Item %s" msgstr "Data bron item %s" #: /var/www/html/cacti/data_sources.php:960 #: /var/www/html/cacti/data_templates.php:620 msgid "New" msgstr "Nieuw" #: /var/www/html/cacti/data_sources.php:1019 msgid "Data Source Debug" msgstr "Data bron debug" #: /var/www/html/cacti/data_sources.php:1039 msgid "RRDtool Tune Info" msgstr "RRDtool tune info" #: /var/www/html/cacti/data_sources.php:1065 #: /var/www/html/cacti/data_templates.php:970 #: /var/www/html/cacti/include/global_form.php:410 msgid "External" msgstr "Extern" #: /var/www/html/cacti/data_sources.php:1069 #: /var/www/html/cacti/include/global_arrays.php:567 #: /var/www/html/cacti/include/global_arrays.php:950 #: /var/www/html/cacti/include/global_arrays.php:1280 #: /var/www/html/cacti/include/global_arrays.php:1314 #: /var/www/html/cacti/include/global_arrays.php:1330 #: /var/www/html/cacti/include/global_settings.php:1174 #: /var/www/html/cacti/include/global_settings.php:1891 msgid "1 Minute" msgstr "1 Minuut" #: /var/www/html/cacti/data_sources.php:1196 #: /var/www/html/cacti/graphs_items.php:311 #, php-format msgid "Data Sources [%s]" msgstr "Data bronnen [%s]" #: /var/www/html/cacti/data_sources.php:1196 msgid "No Device" msgstr "Geen apparaat" #: /var/www/html/cacti/data_sources.php:1235 #: /var/www/html/cacti/data_sources.php:1261 #: /var/www/html/cacti/data_sources.php:1277 #: /var/www/html/cacti/data_templates.php:803 #: /var/www/html/cacti/graph_view.php:793 #: /var/www/html/cacti/graphs_new.php:540 #: /var/www/html/cacti/lib/clog_webapi.php:432 #: /var/www/html/cacti/lib/html_graph.php:385 #: /var/www/html/cacti/lib/html_reports.php:347 #: /var/www/html/cacti/lib/html_tree.php:843 #: /var/www/html/cacti/plugins.php:337 /var/www/html/cacti/settings.php:333 #: /var/www/html/cacti/settings.php:352 /var/www/html/cacti/settings.php:378 #: /var/www/html/cacti/utilities.php:648 /var/www/html/cacti/utilities.php:1084 msgid "All" msgstr "Alle" #: /var/www/html/cacti/data_sources.php:1257 #: /var/www/html/cacti/data_templates.php:799 msgid "Profile" msgstr "Profiel" #: /var/www/html/cacti/data_sources.php:1273 #: /var/www/html/cacti/data_sources.php:1279 msgid "Orphaned" msgstr "Overerfd" #: /var/www/html/cacti/data_sources.php:1283 #: /var/www/html/cacti/data_sources.php:1396 /var/www/html/cacti/host.php:1589 #: /var/www/html/cacti/include/global_arrays.php:791 #: /var/www/html/cacti/lib/api_automation.php:282 #: /var/www/html/cacti/lib/functions.php:2266 #: /var/www/html/cacti/user_admin.php:1230 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/utilities.php:286 msgid "Data Sources" msgstr "Data bronnen" #: /var/www/html/cacti/data_sources.php:1405 #: /var/www/html/cacti/utilities.php:1787 msgid "Data Source Name" msgstr "Data bron naam" #: /var/www/html/cacti/data_sources.php:1405 msgid "" "The name of this Data Source. Generally programtically generated from the " "Data Template definition." msgstr "" "De naam van deze data bron. Over het algemeen programmatisch gegenereerd op " "basis van de data template definitie." #: /var/www/html/cacti/data_sources.php:1406 msgid "" "The internal database ID for this Data Source. Useful when performing " "automation or debugging." msgstr "" "De interne database ID voor deze data bron. Handig voor automatisering of " "debugging." #: /var/www/html/cacti/data_sources.php:1407 msgid "The frequency that data is collected for this Data Source." msgstr "De frequentie voor het verzamelen van data voor deze data bron." #: /var/www/html/cacti/data_sources.php:1408 msgid "If this Data Source is no long in use by Graphs, it can be Deleted." msgstr "" "Als deze data bron niet langer gebruikt wordt in grafieken, dan kan deze " "worden verwijderd." #: /var/www/html/cacti/data_sources.php:1409 #: /var/www/html/cacti/data_templates.php:971 #: /var/www/html/cacti/plugins.php:37 /var/www/html/cacti/plugins.php:338 msgid "Active" msgstr "Actief" #: /var/www/html/cacti/data_sources.php:1409 msgid "" "Whether or not data will be collected for this Data Source. Controlled at " "the Data Template level." msgstr "" "Moet er wel of niet data verzameld worden voor deze data bron. Dit wordt " "aangestuurd op data template niveau." #: /var/www/html/cacti/data_sources.php:1410 msgid "The Data Template that this Data Source was based upon." msgstr "De data template waarop deze data bron was gebaseerd." #: /var/www/html/cacti/data_sources.php:1457 msgid "No Data Sources Found" msgstr "Geen data bron gevonden" #: /var/www/html/cacti/data_templates.php:35 msgid "Change Profile" msgstr "Wijzig profiel" #: /var/www/html/cacti/data_templates.php:358 msgid "" "Click 'Continue' to delete the following Data Template(s). Any data sources " "attached to these templates will become individual Data Source(s) and all " "Templating benefits will be removed." msgstr "" "Klik op 'Volgende' om de volgende data template(s) te verwijderen. Alle data " "bronnen die aan deze templates zijn gekoppeld zullen losstaande data bronnen " "worden en alle template voordelen zullen worden opgeheven." #: /var/www/html/cacti/data_templates.php:363 msgid "Delete Data Template(s)" msgstr "Verwijder datatemplate(s)" #: /var/www/html/cacti/data_templates.php:367 msgid "" "Click 'Continue' to duplicate the following Data Template(s). You can " "optionally change the title format for the new Data Template(s)." msgstr "" "Klik op 'Volgende' om de volgende data template(s) te dupliceren. Optioneel " "kunt u het titel formaat voor de nieuwe data template(s) aanpassen." #: /var/www/html/cacti/data_templates.php:369 msgid "template_title" msgstr "template_title" #: /var/www/html/cacti/data_templates.php:373 msgid "Duplicate Data Template(s)" msgstr "Dupliceer data template(s)" #: /var/www/html/cacti/data_templates.php:377 msgid "" "Click 'Continue' to change the default Data Source Profile for the following " "Data Template(s)." msgstr "" "Klik op 'Volgende' om het standaard data bron profiel voor het/de " "geselecteerde data template(s) te wijzigen." #: /var/www/html/cacti/data_templates.php:379 msgid "New Data Source Profile" msgstr "Nieuw data bron profiel" #: /var/www/html/cacti/data_templates.php:385 msgid "" "NOTE: This change only will affect future Data Sources and does not alter " "existing Data Sources." msgstr "" "LET OP: Deze wijziging is alleen van toepassing op toekomstige data bronnen " "en laat huidige bestaande data bronnen onveranderd." #: /var/www/html/cacti/data_templates.php:389 msgid "Change Data Source Profile" msgstr "Wijzig data bron profiel" #: /var/www/html/cacti/data_templates.php:392 msgid "You must select at least one data template." msgstr "U moet op zijn minst een data template selecteren." #: /var/www/html/cacti/data_templates.php:504 #, php-format msgid "Data Templates [edit: %s]" msgstr "Data template [wijzig: %s]" #: /var/www/html/cacti/data_templates.php:523 msgid "Edit Data Input Method." msgstr "Wijzig Data invoer methode." #: /var/www/html/cacti/data_templates.php:532 msgid "Data Templates [new]" msgstr "Data template [nieuw]" #: /var/www/html/cacti/data_templates.php:564 msgid "This field is always templated." msgstr "Dit veld is altijd getempleteerd." #: /var/www/html/cacti/data_templates.php:568 #: /var/www/html/cacti/data_templates.php:639 #: /var/www/html/cacti/data_templates.php:711 msgid "" "Check this checkbox if you wish to allow the user to override the value on " "the right during Data Source creation." msgstr "" #: /var/www/html/cacti/data_templates.php:620 #, php-format msgid "Data Source Item [%s]" msgstr "Data bron item [%s]" #: /var/www/html/cacti/data_templates.php:704 msgid "Value will be derived from the device if this field is left empty." msgstr "" "De waarde wordt over genomen van het apparaat als u dit veld leeg houdt." #: /var/www/html/cacti/data_templates.php:784 #: /var/www/html/cacti/data_templates.php:815 #: /var/www/html/cacti/data_templates.php:937 #: /var/www/html/cacti/include/global_arrays.php:979 #: /var/www/html/cacti/lib/functions.php:2248 msgid "Data Templates" msgstr "Data templates" #: /var/www/html/cacti/data_templates.php:946 msgid "Data Template Name" msgstr "Data template naam" #: /var/www/html/cacti/data_templates.php:946 msgid "The name of this Data Template." msgstr "De naam voor dit data template." #: /var/www/html/cacti/data_templates.php:947 msgid "" "The internal database ID for this Data Template. Useful when performing " "automation or debugging." msgstr "" "De interne database ID voor deze data template. Handig voor automatisering " "of debugging." #: /var/www/html/cacti/data_templates.php:948 msgid "" "Data Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Data Source." msgstr "" "Data template die in gebruik zijn kunnen niet worden verwijderd. In gebruik " "is gedefinieerd als gekoppeld aan een data bron." #: /var/www/html/cacti/data_templates.php:949 msgid "The number of Data Sources using this Data Template." msgstr "Het aantal data bronnen die dit data template gebruiken." #: /var/www/html/cacti/data_templates.php:950 msgid "Input Method" msgstr "Invoer methode" #: /var/www/html/cacti/data_templates.php:950 msgid "The method that is used to place Data into the Data Source RRDfile." msgstr "" "De methode die wordt gebruikt om data in het data bron RRD-bestand te " "plaatsen." #: /var/www/html/cacti/data_templates.php:951 msgid "Profile Name" msgstr "Profielnaam" #: /var/www/html/cacti/data_templates.php:951 msgid "The default Data Source Profile for this Data Template." msgstr "Het standaard data source profiel voor dit data template." #: /var/www/html/cacti/data_templates.php:952 msgid "" "Data Sources based on Inactive Data Templates will not be updated when the " "poller runs." msgstr "" "Data bronnen gebaseerd op inactieve data templates worden niet bijgewerkt " "tijdens een poller run." #: /var/www/html/cacti/data_templates.php:976 msgid "No Data Templates Found" msgstr "Geen data template gevonden" #: /var/www/html/cacti/gprint_presets.php:148 msgid "Click 'Continue' to delete the folling GPRINT Preset(s)." msgstr "" "Klik op 'Volgende' om de volgende GPRINT voorinstelling(en) te verwijderen." #: /var/www/html/cacti/gprint_presets.php:153 msgid "Delete GPRINT Preset(s)" msgstr "Verwijder GRPINT voorinstelling(en)" #: /var/www/html/cacti/gprint_presets.php:156 msgid "You must select at least one GPRINT Preset." msgstr "U moet op zijn minst een GPRINT voorinstelling selecteren." #: /var/www/html/cacti/gprint_presets.php:185 #, php-format msgid "GPRINT Presets [edit: %s]" msgstr "GPRINT voorinstelling [wijzig: %s]" #: /var/www/html/cacti/gprint_presets.php:187 msgid "GPRINT Presets [new]" msgstr "GPRINT voorinstelling [nieuw]" #: /var/www/html/cacti/gprint_presets.php:253 #: /var/www/html/cacti/lib/functions.php:2098 msgid "GPRINT Presets" msgstr "GPRINT voorinstelling" #: /var/www/html/cacti/gprint_presets.php:268 #: /var/www/html/cacti/gprint_presets.php:383 #: /var/www/html/cacti/include/global_arrays.php:819 msgid "GPRINTs" msgstr "GPRINTs" #: /var/www/html/cacti/gprint_presets.php:392 msgid "GPRINT Preset Name" msgstr "Naam GPRINT voorinstelling" #: /var/www/html/cacti/gprint_presets.php:392 msgid "The name of this GPRINT Preset." msgstr "De naam voor deze GPRINT voorinstelling." #: /var/www/html/cacti/gprint_presets.php:393 msgid "Format" msgstr "Formaat" #: /var/www/html/cacti/gprint_presets.php:393 msgid "The GPRINT format string." msgstr "De GPRINT opmaak waarde." #: /var/www/html/cacti/gprint_presets.php:394 msgid "" "GPRINTs that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" "GPRINT's kunnen niet worden verwijderd als deze in gebruik zijn. In gebruik " "wordt gedefinieerd als gekoppeld aan een grafiek of grafiektemplate." #: /var/www/html/cacti/gprint_presets.php:395 msgid "The number of Graphs using this GPRINT." msgstr "Het aantal grafieken die deze GPRINT gebruiken." #: /var/www/html/cacti/gprint_presets.php:396 msgid "The number of Graphs Templates using this GPRINT." msgstr "Het aantal grafiektemplates die deze GPRINT gebruiken." #: /var/www/html/cacti/gprint_presets.php:420 msgid "No GPRINT Presets" msgstr "Geen GPRINT voorinstelling" #: /var/www/html/cacti/graph.php:94 msgid "Viewing Graph" msgstr "Toon grafiek" #: /var/www/html/cacti/graph.php:129 /var/www/html/cacti/lib/html.php:354 msgid "Graph Details, Zooming and Debugging Utilities" msgstr "Grafiek details, zoom en debug utilities" #: /var/www/html/cacti/graph.php:130 msgid "CSV Export" msgstr "Exporteer CSV" #: /var/www/html/cacti/graph.php:131 msgid "Real-time" msgstr "Real-time" #: /var/www/html/cacti/graph.php:221 #: /var/www/html/cacti/include/global_session.php:105 msgid "Utility View" msgstr "Gereedschappenoverzicht" #: /var/www/html/cacti/graph.php:323 msgid "Graph Utility View" msgstr "" #: /var/www/html/cacti/graph.php:336 msgid "Graph Source/Properties" msgstr "Grafiek bron/eigenschappen" #: /var/www/html/cacti/graph.php:340 msgid "Graph Data" msgstr "Grafiekdata" #: /var/www/html/cacti/graph.php:523 msgid "RRDtool Graph Syntax" msgstr "RRDtool grafiek syntax" #: /var/www/html/cacti/graph_realtime.php:194 msgid "Real-time has been disabled by your administrator." msgstr "Real-time is uitgeschakeld door uw beheerder." #: /var/www/html/cacti/graph_realtime.php:201 msgid "" "The Image Cache Directory does not exist. Please first create it and set " "permissions and then attempt to open another Real-time graph." msgstr "" "De afbeeldingen cache directorie bestaat niet. Maak deze directorie eerst en " "stel de rechten correct in. Probeer hierna opnieuw een real-time grafiek te " "openen." #: /var/www/html/cacti/graph_realtime.php:208 msgid "" "The Image Cache Directory is not writable. Please set permissions and then " "attempt to open another Real-time graph." msgstr "" "De afbeeldingen cache directorie is niet schrijfbaar. Stel de rechten " "correct in en probeer hierna opnieuw een real-time grafiek te openen." #: /var/www/html/cacti/graph_realtime.php:219 msgid "Cacti Real-time Graphing" msgstr "Cacti real-time grafieken" #: /var/www/html/cacti/graph_realtime.php:228 #: /var/www/html/cacti/lib/html_graph.php:316 #: /var/www/html/cacti/lib/html_tree.php:773 msgid "Window" msgstr "Venster" #: /var/www/html/cacti/graph_realtime.php:258 #, php-format msgid "%d seconds left." msgstr "%d seconden over." #: /var/www/html/cacti/graph_realtime.php:286 msgid "seconds left." msgstr "seconden over." #: /var/www/html/cacti/graph_templates.php:35 msgid "Resize" msgstr "Grootte wijzigen" #: /var/www/html/cacti/graph_templates.php:36 msgid "Sync Graphs" msgstr "Synchroniseer grafieken" #: /var/www/html/cacti/graph_templates.php:312 msgid "" "Click 'Continue' to delete the following Graph Template(s). Any Graph(s) " "associated with the Template(s) will become individual Graph(s)." msgstr "" "Klik op 'Volgende' om de volgende grafiektemplate(s) te verwijderen. Alle " "gekoppelde grafieken zullen losse grafieken worden." #: /var/www/html/cacti/graph_templates.php:317 msgid "Delete Graph Template(s)" msgstr "Verwijder grafiektemplate(s)" #: /var/www/html/cacti/graph_templates.php:321 msgid "" "Click 'Continue' to duplicate the following Graph Template(s). You can " "optionally change the title format for the new Graph Template(s)." msgstr "" "Klik 'Volgende' om de volgende grafiektemplate(s) te duplicere. Optioneel " "kunt u de titel voor de nieuwe grafiektemplate(s) wijzigen." #: /var/www/html/cacti/graph_templates.php:327 msgid "Duplicate Graph Template(s)" msgstr "Dupliceer grafiektemplate(s)" #: /var/www/html/cacti/graph_templates.php:331 msgid "" "Click 'Continue' to resize the following Graph Template(s) and Graph(s) to " "the Height and Width below. The defaults below are maintained in Settings." msgstr "" "Klik op 'Volgende' om het formaat van de volgende grafiektemplate(s) te " "wijzigen naar de hoogte en breedte die hieronder zijn opgegeven. De " "standaard afmetingen worden opgeslagen in de instellingen." #: /var/www/html/cacti/graph_templates.php:340 #: /var/www/html/cacti/lib/html_reports.php:117 msgid "Graph Height" msgstr "Grafiekhoogte" #: /var/www/html/cacti/graph_templates.php:342 #: /var/www/html/cacti/lib/html_reports.php:109 msgid "Graph Width" msgstr "Grafiekbreedte" #: /var/www/html/cacti/graph_templates.php:347 msgid "Resize Selected Graph Template(s)" msgstr "Formaat wijzigen van de selecteerde grafiek template(s)" #: /var/www/html/cacti/graph_templates.php:351 msgid "" "Click 'Continue' to Synchronize your Graphs with the following Graph " "Template(s). This function is important if you have Graphs that exist with " "multiple versions of a Graph Template and wish to make them all common in " "appearance." msgstr "" "Klik op 'Volgende' om de grafieken te synchroniseren met de volgende " "grafiektemplate(s). Deze functie is belangrijk als u grafieken heeft die van " "verschillende versies van een grafiektemplate zijn gemaakt en u deze wilt " "gelijktrekken." #: /var/www/html/cacti/graph_templates.php:356 msgid "Synchronize Graphs to Graph Template(s)" msgstr "Synchroniseer grafieken naar (een) grafiektemplate(s)" #: /var/www/html/cacti/graph_templates.php:359 msgid "ERROR: You must select at least one graph template." msgstr "FOUT: U moet op zijn minst een grafiektemplate selecteren." #: /var/www/html/cacti/graph_templates.php:413 #, php-format msgid "Graph Template Items [edit: %s]" msgstr "Grafiektemplate items [wijzig %s]" #: /var/www/html/cacti/graph_templates.php:420 #: /var/www/html/cacti/lib/functions.php:2218 msgid "Graph Item Inputs" msgstr "Grafiek item invoer" #: /var/www/html/cacti/graph_templates.php:446 msgid "No Inputs" msgstr "Geen invoer" #: /var/www/html/cacti/graph_templates.php:491 #, php-format msgid "Template [edit: %s]" msgstr "Template [wijzig: %s]" #: /var/www/html/cacti/graph_templates.php:493 msgid "Template [new]" msgstr "Template [nieuw]" #: /var/www/html/cacti/graph_templates.php:509 msgid "Graph Template Options" msgstr "Grafiek template opties" #: /var/www/html/cacti/graph_templates.php:525 msgid "" "Check this checkbox if you wish to allow the user to override the value on " "the right during Graph creation." msgstr "" #: /var/www/html/cacti/graph_templates.php:620 #: /var/www/html/cacti/graph_templates.php:635 #: /var/www/html/cacti/graph_templates.php:755 #: /var/www/html/cacti/graphs_new.php:636 #: /var/www/html/cacti/include/global_arrays.php:978 #: /var/www/html/cacti/lib/functions.php:2194 #: /var/www/html/cacti/user_admin.php:1366 #: /var/www/html/cacti/user_group_admin.php:1101 msgid "Graph Templates" msgstr "Grafiektemplates" #: /var/www/html/cacti/graph_templates.php:764 msgid "The name of this Graph Template." msgstr "De naam van de grafektemplate." #: /var/www/html/cacti/graph_templates.php:766 msgid "" "Graph Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Graph." msgstr "" "Grafiektemplates die in gebruik zijn kunnen niet worden verwijderd. Een " "grafiek is in gebruik als deze is gekoppelde aan een grafiek." #: /var/www/html/cacti/graph_templates.php:767 msgid "The number of Graphs using this Graph Template." msgstr "Het aantal grafieken dat gebruik maakt van deze grafiektemplate." #: /var/www/html/cacti/graph_templates.php:768 msgid "The default size of the resulting Graphs." msgstr "De standaard afmeting van de grafiek." #: /var/www/html/cacti/graph_templates.php:769 msgid "Image Format" msgstr "Formaat van de afbeleding" #: /var/www/html/cacti/graph_templates.php:769 msgid "The default image format for the resulting Graphs." msgstr "Het standaard opmaak van de afbeelding." #: /var/www/html/cacti/graph_templates.php:770 msgid "The vertical label for the resulting Graphs." msgstr "Het verticale label voor de grafiek." #: /var/www/html/cacti/graph_templates.php:770 #: /var/www/html/cacti/graph_xport.php:121 #: /var/www/html/cacti/graph_xport.php:154 msgid "Vertical Label" msgstr "Verticaal label" #: /var/www/html/cacti/graph_templates.php:796 msgid "No Graph Templates Found" msgstr "Geen grafiek templates gevonden" #: /var/www/html/cacti/graph_templates_inputs.php:145 #, php-format msgid "Graph Item Inputs [edit graph: %s]" msgstr "Grafiek item invoer [wijzig grafiek: %s]" #: /var/www/html/cacti/graph_templates_inputs.php:191 msgid "Associated Graph Items" msgstr "Gekoppelde grafiekitems" #: /var/www/html/cacti/graph_templates_items.php:99 #: /var/www/html/cacti/graph_templates_items.php:125 #: /var/www/html/cacti/graphs_items.php:140 msgid "Cur:" msgstr "Hui:" #: /var/www/html/cacti/graph_templates_items.php:106 #: /var/www/html/cacti/graph_templates_items.php:132 #: /var/www/html/cacti/graphs_items.php:147 msgid "Avg:" msgstr "Gem:" #: /var/www/html/cacti/graph_templates_items.php:113 #: /var/www/html/cacti/graph_templates_items.php:146 #: /var/www/html/cacti/graphs_items.php:161 msgid "Max:" msgstr "Max:" #: /var/www/html/cacti/graph_templates_items.php:139 #: /var/www/html/cacti/graphs_items.php:154 msgid "Min:" msgstr "Min:" #: /var/www/html/cacti/graph_templates_items.php:405 #, php-format msgid "Graph Template Items [edit graph: %s]" msgstr "Grafiek template item [wijzig grafiek: %s]" #: /var/www/html/cacti/graph_templates_items.php:466 msgid "Field Not Templated" msgstr "Veld wordt niet getempleteerd" #: /var/www/html/cacti/graph_view.php:243 msgid "YOU DO NOT HAVE RIGHTS FOR TREE VIEW" msgstr "U HEEFT GEEN RECHTEN VOOR DE BOOMSTRUCTUURWEERGAVE" #: /var/www/html/cacti/graph_view.php:322 msgid "YOU DO NOT HAVE RIGHTS FOR PREVIEW VIEW" msgstr "U HEEFT GEEN RECHTEN VOOR DE VOORVERTONINGWEERGAVE" #: /var/www/html/cacti/graph_view.php:328 msgid "Graph Preview Filters" msgstr "Grafiek voorvertoning filters" #: /var/www/html/cacti/graph_view.php:328 msgid "[ Custom Graph List Applied - Filtering from List ]" msgstr "[ Aangepaste grafieklijst toegepast - Filter VAN lijst ]" #: /var/www/html/cacti/graph_view.php:423 msgid "YOU DO NOT HAVE RIGHTS FOR LIST VIEW" msgstr "U HEEFT GEEN RECHTEN TOT DE LIJSTWEERGAVE" #: /var/www/html/cacti/graph_view.php:512 msgid "Graph List View Filters" msgstr "Grafiek lijst weergave filters" #: /var/www/html/cacti/graph_view.php:512 msgid "[ Custom Graph List Applied - Filter FROM List ]" msgstr "[ Aangepaste grafieklijst toegepast - Filter VAN lijst ]" #: /var/www/html/cacti/graph_view.php:531 #: /var/www/html/cacti/graph_view.php:782 #: /var/www/html/cacti/graph_view.php:787 #: /var/www/html/cacti/lib/html_graph.php:163 #: /var/www/html/cacti/lib/html_graph.php:374 #: /var/www/html/cacti/lib/html_graph.php:379 #: /var/www/html/cacti/lib/html_tree.php:628 #: /var/www/html/cacti/lib/html_tree.php:832 #: /var/www/html/cacti/lib/html_tree.php:837 msgid "All Graphs & Templates" msgstr "Alle grafiektemplates" #: /var/www/html/cacti/graph_view.php:579 #: /var/www/html/cacti/graph_view.php:656 msgid "View" msgstr "Weergeven" #: /var/www/html/cacti/graph_view.php:579 #: /var/www/html/cacti/graph_view.php:656 #: /var/www/html/cacti/include/global_arrays.php:958 #: /var/www/html/cacti/lib/clog_webapi.php:654 msgid "View Graphs" msgstr "Toon grafieken" #: /var/www/html/cacti/graph_view.php:621 msgid "Graph Size" msgstr "Grafiekgrootte" #: /var/www/html/cacti/graph_view.php:635 msgid "Aggregated Device" msgstr "Geaggregeerd apparaat" #: /var/www/html/cacti/graph_view.php:638 msgid "Non-Device" msgstr "Geen-apparaat" #: /var/www/html/cacti/graph_view.php:639 msgid "Not Applicable" msgstr "Niet van toepassing" #: /var/www/html/cacti/graph_view.php:730 #: /var/www/html/cacti/include/global_settings.php:1960 #: /var/www/html/cacti/lib/functions.php:2018 msgid "Preview Mode" msgstr "Voorvertoning modus" #: /var/www/html/cacti/graph_view.php:784 #: /var/www/html/cacti/lib/html_graph.php:376 #: /var/www/html/cacti/lib/html_tree.php:834 #: /var/www/html/cacti/settings.php:369 msgid "Templates Selected" msgstr "Templates geselecteerd" #: /var/www/html/cacti/graph_xport.php:120 #: /var/www/html/cacti/graph_xport.php:153 #: /var/www/html/cacti/include/global_form.php:1793 #: /var/www/html/cacti/include/global_form.php:2040 #: /var/www/html/cacti/lib/html.php:1566 /var/www/html/cacti/links.php:378 msgid "Title" msgstr "Titel" #: /var/www/html/cacti/graph_xport.php:123 #: /var/www/html/cacti/graph_xport.php:155 msgid "Start Date" msgstr "Startdatum" #: /var/www/html/cacti/graph_xport.php:124 #: /var/www/html/cacti/graph_xport.php:156 msgid "End Date" msgstr "Einddatum" #: /var/www/html/cacti/graph_xport.php:125 #: /var/www/html/cacti/graph_xport.php:157 #: /var/www/html/cacti/include/global_form.php:415 msgid "Step" msgstr "Stap" #: /var/www/html/cacti/graph_xport.php:126 #: /var/www/html/cacti/graph_xport.php:158 msgid "Total Rows" msgstr "Totaal aantal rijen" #: /var/www/html/cacti/graph_xport.php:127 #: /var/www/html/cacti/graph_xport.php:159 #: /var/www/html/cacti/lib/api_automation.php:570 msgid "Graph ID" msgstr "Grafiek ID" #: /var/www/html/cacti/graph_xport.php:128 #: /var/www/html/cacti/graph_xport.php:160 msgid "Host ID" msgstr "Host ID" #: /var/www/html/cacti/graph_xport.php:132 #: /var/www/html/cacti/graph_xport.php:170 msgid "Nth Percentile" msgstr "Nth Percentiel" #: /var/www/html/cacti/graph_xport.php:138 #: /var/www/html/cacti/graph_xport.php:180 msgid "Summation" msgstr "Samenvatting" #: /var/www/html/cacti/graph_xport.php:144 #: /var/www/html/cacti/utilities.php:244 /var/www/html/cacti/utilities.php:775 msgid "Date" msgstr "Datum" #: /var/www/html/cacti/graph_xport.php:152 msgid "Download" msgstr "Download" #: /var/www/html/cacti/graph_xport.php:152 msgid "Summary Details" msgstr "Samenvatting details" #: /var/www/html/cacti/graphs.php:49 /var/www/html/cacti/graphs.php:874 #: /var/www/html/cacti/lib/functions.php:2068 msgid "Change Graph Template" msgstr "Wijzig grafiektemplate" #: /var/www/html/cacti/graphs.php:56 msgid "Create Aggregate Graph" msgstr "Maak geaggregeerde grafiek" #: /var/www/html/cacti/graphs.php:57 msgid "Create Aggregate from Template" msgstr "Maak geaggregeerde grafiek vanaf template" #: /var/www/html/cacti/graphs.php:58 /var/www/html/cacti/graphs.php:1125 #: /var/www/html/cacti/host.php:43 msgid "Apply Automation Rules" msgstr "Automatiseringsregels toepassen" #: /var/www/html/cacti/graphs.php:64 /var/www/html/cacti/graphs.php:896 msgid "Convert to Graph Template" msgstr "Converteer naar grafiektemplate" #: /var/www/html/cacti/graphs.php:176 #, php-format msgid "Created graph: %s" msgstr "Grafiek: %s gemaakt" #: /var/www/html/cacti/graphs.php:184 /var/www/html/cacti/graphs_new.php:253 #: /var/www/html/cacti/graphs_new.php:269 msgid "ERROR: no Data Source associated. Check Template" msgstr "FOUT: geen data bron gekoppeld. Controleer template" #: /var/www/html/cacti/graphs.php:835 msgid "" "Click 'Continue' to delete the following Graph(s). Note that if you choose " "to Delete Data Sources, only those Data Sources not in use elsewhere will " "also be Deleted." msgstr "" "Klik op 'Volgende' om de volgende grafiek(en) te verwijderen. Let op: als u " "ervoor kiest om de data bronnen te verwijderen, zullen uitsluitend de data " "bronnen die niet in gebruik zijn worden verwijderd." #: /var/www/html/cacti/graphs.php:839 msgid "The following Data Source(s) are in use by these Graph(s)." msgstr "De volgende data bron(nen) zijn/is in gebruik bij deze grafiek(en)." #: /var/www/html/cacti/graphs.php:848 msgid "" "Delete all Data Source(s) referenced by these Graph(s) that are not in use " "elsewhere." msgstr "" "Verwijder alle data bron(nen) gekoppeld aan deze grafiek(en) die niet elders " "in gebruik zijn." #: /var/www/html/cacti/graphs.php:850 msgid "Leave the Data Source(s) untouched." msgstr "Laat de data bron(nen) ongemoeid." #: /var/www/html/cacti/graphs.php:862 msgid "" "Choose a Graph Template and click 'Continue' to change the Graph Template " "for the following Graph(s). Please note, that only compatible Graph " "Templates will be displayed. Compatible is identified by those having " "identical Data Sources." msgstr "" "Kies een grafiektemplate an klik op 'Volgende' om de grafiektemplate voor de " "volgende grafiek(en) te wijzigen. Let op: alleen compatible grafiektemplates " "zullen worden getoond. Compatible grafiektemplates hebben dezelfde identieke " "data bronnen." #: /var/www/html/cacti/graphs.php:864 msgid "New Graph Template" msgstr "Nieuw grafiektemplate" #: /var/www/html/cacti/graphs.php:878 msgid "" "Click 'Continue' to duplicate the following Graph(s). You can optionally " "change the title format for the new Graph(s)." msgstr "" "Klik op 'Volgende' om de volgende grafiek(en) te dupliceren. Optioneel kunt " "u de opmaak van de titel voor de nieuwe grafiek(en) wijzigen." #: /var/www/html/cacti/graphs.php:881 msgid " (1)" msgstr " (1)" #: /var/www/html/cacti/graphs.php:885 msgid "Duplicate Graph(s)" msgstr "Dupliceer grafiek(en)" #: /var/www/html/cacti/graphs.php:889 msgid "" "Click 'Continue' to convert the following Graph(s) into Graph Template(s). " "You can optionally change the title format for the new Graph Template(s)." msgstr "" "Klik op 'Volgende' om de volgende grafiek(en) in grafiektemplate(s) te " "converteren. Optioneel kunt u de naam van het/de nieuwe grafiektemplate(s) " "wijzigen." #: /var/www/html/cacti/graphs.php:892 msgid " Template" msgstr " Template" #: /var/www/html/cacti/graphs.php:900 msgid "" "Click 'Continue' to place the following Graph(s) under the Tree Branch " "selected below." msgstr "" "Klik op 'Volgende' om de volgende grafiek(en) in de selecteerde " "boomstructuur te plaatsen." #: /var/www/html/cacti/graphs.php:902 msgid "Destination Branch" msgstr "" #: /var/www/html/cacti/graphs.php:915 msgid "Choose a new Device for these Graph(s) and click 'Continue'." msgstr "Kies een nieuw apparaat voor deze grafiek(en) en klik op 'Volgende'." #: /var/www/html/cacti/graphs.php:917 msgid "New Device" msgstr "Nieuw apparaat" #: /var/www/html/cacti/graphs.php:925 msgid "Change Graph(s) Associated Device" msgstr "Wijzig grafiek(en) van gekoppeld apparaat" #: /var/www/html/cacti/graphs.php:929 msgid "" "Click 'Continue' to re-apply suggested naming to the following Graph(s)." msgstr "" "Klik op 'Volgende' om de gesuggereerde namen opnieuw toe te passen op de " "volgende grafiek(en)." #: /var/www/html/cacti/graphs.php:934 msgid "Reapply Suggested Naming to Graph(s)" msgstr "Gesuggereerde namen opnieuw toepassen op de grafiek(en)" #: /var/www/html/cacti/graphs.php:950 msgid "" "Click 'Continue' to create an Aggregate Graph from the selected Graph(s)." msgstr "" "Klik op 'Volgende' om een geaggregeerde grafiek te maken van de " "geselecteerde grafiek(en)." #: /var/www/html/cacti/graphs.php:959 msgid "The following data sources are in use by these graphs:" msgstr "De volgende data bronnen zijn in gebruik bij deze grafieken:" #: /var/www/html/cacti/graphs.php:992 msgid "Please confirm" msgstr "Bevestig alstublieft" #: /var/www/html/cacti/graphs.php:1060 msgid "Resize Selected Graph(s)" msgstr "Formaat wijzigen van geselecteerde grafiek(en)" #: /var/www/html/cacti/graphs.php:1082 msgid "" "Select the Aggregate Template to use and press 'Continue' to create your " "Aggregate Graph. Otherwise press 'Cancel' to return." msgstr "" "Selecteer het geaggregeerde template dat u wilt gebruiken en druk op " "'Volgende' om deze te maken. Druk op 'Annuleren' om terug te gaan." #: /var/www/html/cacti/graphs.php:1103 msgid "Create Aggregate" msgstr "" #: /var/www/html/cacti/graphs.php:1107 msgid "" "There are presently no Aggregate Templates defined for this Graph Template. " "Please either first create an Aggregate Template for the selected Graphs " "Graph Template and try again, or simply crease an un-templated Aggregate " "Graph." msgstr "" "Er zijn geen geaggregeerde templates gedefinieerd voor dit grafiektemplate. " "Maak een geaggregeerd template voor de geselecteerde grafiek template en " "probeer het opnieuw of gebruik een niet getempleteerd geaggregeerde grafiek." #: /var/www/html/cacti/graphs.php:1108 msgid "Press 'Return' to return and select different Graphs." msgstr "Druk op 'enter' om terug te gaan en een andere grafiek te selecteren." #: /var/www/html/cacti/graphs.php:1120 msgid "Click 'Continue' to apply Automation Rules to the following Graphs." msgstr "" "Klik op 'Volgende' om de automatiseringsregels op de volgende grafieken toe " "te passen." #: /var/www/html/cacti/graphs.php:1136 msgid "You must select at least one Graph." msgstr "U moet tenminste een grafiek selecteren." #: /var/www/html/cacti/graphs.php:1284 #, php-format msgid "Graph [edit: %s]" msgstr "Grafiek [wijzig: %s]" #: /var/www/html/cacti/graphs.php:1290 msgid "Graph [new]" msgstr "Grafiek [nieuw]" #: /var/www/html/cacti/graphs.php:1315 msgid "Turn Off Graph Debug Mode." msgstr "Grafiek debug modus uitschakelen." #: /var/www/html/cacti/graphs.php:1317 msgid "Turn On Graph Debug Mode." msgstr "Grafiek debug modus inschakelen." #: /var/www/html/cacti/graphs.php:1330 msgid "Edit Graph Template." msgstr "Wijzig grafiektemplate." #: /var/www/html/cacti/graphs.php:1336 msgid "Unlock Graph." msgstr "Grafiek vrijgeven." #: /var/www/html/cacti/graphs.php:1338 msgid "Lock Graph." msgstr "Vergrendel grafiek." #: /var/www/html/cacti/graphs.php:1362 msgid "Selected Graph Template" msgstr "Geselecteerde grafiektemplate" #: /var/www/html/cacti/graphs.php:1363 #, php-format msgid "" "Choose a Graph Template to apply to this Graph. Please note that you may " "only change Graph Templates to a 100% compatible Graph Template, which means " "that it includes identical Data Sources." msgstr "" "Kies een grafiektemplate om toe te passen voor deze grafiek. Let op dat u " "alleen een grafiektemplate kunt wijzigen naar een 100% compatible " "grafiektemplate, dit houdt in dat het dezelfde data bronnen bevat." #: /var/www/html/cacti/graphs.php:1371 msgid "Choose the Device that this Graph belongs to." msgstr "Kies het apparaat waar deze grafiek toe behoort." #: /var/www/html/cacti/graphs.php:1411 msgid "Supplemental Graph Template Data" msgstr "Aanvullende grafiektemplate data" #: /var/www/html/cacti/graphs.php:1413 msgid "Graph Fields" msgstr "Grafiekveld" #: /var/www/html/cacti/graphs.php:1414 msgid "Graph Item Fields" msgstr "Grafiek item veld" #: /var/www/html/cacti/graphs.php:1693 #: /var/www/html/cacti/lib/functions.php:2056 msgid "Graph Management" msgstr "Beheer grafiek" #: /var/www/html/cacti/graphs.php:1836 #: /var/www/html/cacti/include/global_form.php:1861 #: /var/www/html/cacti/lib/html_reports.php:416 #: /var/www/html/cacti/tree.php:816 msgid "Graph Name" msgstr "Grafieknaam" #: /var/www/html/cacti/graphs.php:1836 msgid "" "The Title of this Graph. Generally programatically generated from the Graph " "Template definition or Suggested Naming rules. The max length of the Title " "is controlled under Settings->Visual." msgstr "" "De titel van deze grafiek. Geprogrammeerd uit de definities van de " "grafiektemplate of gesuggereerde naamgeving. De maximale lengte van de titel " "wordt beheerd in instellingen->visueel." #: /var/www/html/cacti/graphs.php:1837 msgid "" "The internal database ID for this Graph. Useful when performing automation " "or debugging." msgstr "" "De interne database ID van deze grafiek. Handig voor automation of debugging." #: /var/www/html/cacti/graphs.php:1838 msgid "The Graph Template that this Graph was based upon." msgstr "De grafiektemplate waarop deze grafiek is gebaseerd." #: /var/www/html/cacti/graphs.php:1839 msgid "The size of this Graph when not in Preview mode." msgstr "De afmetingen van deze grafiek wanneer niet in voorvertoning modus." #: /var/www/html/cacti/graphs_items.php:309 msgid "Data Sources [No Device]" msgstr "Data bron [geen apparaat]" #: /var/www/html/cacti/graphs_items.php:326 #: /var/www/html/cacti/include/global_arrays.php:1090 #: /var/www/html/cacti/include/global_form.php:1550 msgid "Data Template" msgstr "Data template" #: /var/www/html/cacti/graphs_items.php:399 #, php-format msgid "Graph Items [graph: %s]" msgstr "Grafiekitems [grafiek: %s]" #: /var/www/html/cacti/graphs_items.php:440 msgid "Choose the Data Source to associate with this Graph Item." msgstr "Kies de data bron om dit grafiek item aan te koppelen." #: /var/www/html/cacti/graphs_new.php:79 msgid "Default Settings Saved" msgstr "Standaardinstellingen opgeslagen" #: /var/www/html/cacti/graphs_new.php:245 #: /var/www/html/cacti/graphs_new.php:261 #, php-format msgid "Created: %s" msgstr "Gemaakt: %s" #: /var/www/html/cacti/graphs_new.php:298 #: /var/www/html/cacti/graphs_new.php:321 #, php-format msgid "Create Graph from %s" msgstr "Maak grafiek van %s" #: /var/www/html/cacti/graphs_new.php:319 #, php-format msgid "Create %s Graphs from %s" msgstr "Maak %s grafieken van %s" #: /var/www/html/cacti/graphs_new.php:362 #, php-format msgid "Graph [Template: %s]" msgstr "Grafiek [Template: %s]" #: /var/www/html/cacti/graphs_new.php:363 #, php-format msgid "Graph Items [Template: %s]" msgstr "Grafiekitems [Template: %s]" #: /var/www/html/cacti/graphs_new.php:368 #, php-format msgid "Data Source [Template: %s]" msgstr "Data bron [Template: %s]" #: /var/www/html/cacti/graphs_new.php:378 #, php-format msgid "Custom Data [Template: %s]" msgstr "Aangepaste data [Template: %s]" #: /var/www/html/cacti/graphs_new.php:463 #, php-format msgid "New Graphs for [ %s ]" msgstr "Nieuwe grafieken voor [ %s ]" #: /var/www/html/cacti/graphs_new.php:466 msgid "New Graphs for [ All Devices ]" msgstr "Nieuwe grafieken voor [ Alle apparaten ]" #: /var/www/html/cacti/graphs_new.php:471 msgid "New Graphs for None Host Type" msgstr "Nieuwe grafiek voor type geen-host" #: /var/www/html/cacti/graphs_new.php:501 #: /var/www/html/cacti/include/global_session.php:103 msgid "Filter Settings Saved" msgstr "Filter instellingen opgeslagen" #: /var/www/html/cacti/graphs_new.php:536 msgid "Graph Types" msgstr "Grafiektype" #: /var/www/html/cacti/graphs_new.php:541 msgid "Graph Template Based" msgstr "Grafiektemplate gebaseerd" #: /var/www/html/cacti/graphs_new.php:565 msgid "Save Filters" msgstr "Filters opslaan" #: /var/www/html/cacti/graphs_new.php:598 msgid "Edit this Device" msgstr "Wijzig dit apparaat" #: /var/www/html/cacti/graphs_new.php:599 msgid "Create New Device" msgstr "Maak nieuw apparaat" #: /var/www/html/cacti/graphs_new.php:642 #: /var/www/html/cacti/graphs_new.php:935 /var/www/html/cacti/lib/html.php:823 #: /var/www/html/cacti/user_admin.php:1583 #: /var/www/html/cacti/user_group_admin.php:1316 msgid "Select All" msgstr "Selecteer alles" #: /var/www/html/cacti/graphs_new.php:642 #: /var/www/html/cacti/graphs_new.php:935 /var/www/html/cacti/lib/html.php:736 #: /var/www/html/cacti/lib/html.php:823 msgid "Select All Rows" msgstr "Selecteer alle rijen" #: /var/www/html/cacti/graphs_new.php:729 #: /var/www/html/cacti/include/global_arrays.php:783 #: /var/www/html/cacti/include/global_arrays.php:854 #: /var/www/html/cacti/lib/html_form.php:1152 #: /var/www/html/cacti/lib/html_form.php:1165 /var/www/html/cacti/tree.php:1191 msgid "Create" msgstr "Maken" #: /var/www/html/cacti/graphs_new.php:731 msgid "(Select a graph type to create)" msgstr "(Selecteer een type grafiek om te maken)" #: /var/www/html/cacti/graphs_new.php:815 #, php-format msgid "Data Query [%s]" msgstr "Data query [%s]" #: /var/www/html/cacti/graphs_new.php:931 msgid "From there you can get more information." msgstr "Daar kunt u meer informatie krijgen." #: /var/www/html/cacti/graphs_new.php:931 msgid "" "This Data Query returned 0 rows, perhaps there was a problem executing this " "Data Query." msgstr "" "Deze data query retourneerde geen rijen, misschien is er een probleem bij " "het uitvoeren van de data query." #: /var/www/html/cacti/graphs_new.php:931 msgid "You can run this Data Query in debug mode" msgstr "U kunt deze data query in debug modus uitvoeren" #: /var/www/html/cacti/graphs_new.php:974 msgid "Search Returned no Rows." msgstr "Geen zoekresultaten." #: /var/www/html/cacti/graphs_new.php:979 msgid "Error in data query." msgstr "Fout in data query." #: /var/www/html/cacti/graphs_new.php:1003 msgid "Select a Graph Type to Create" msgstr "Selecteer een grafiektype om te creëeren" #: /var/www/html/cacti/graphs_new.php:1006 msgid "Make selection default" msgstr "Maak standaardselectie" #: /var/www/html/cacti/graphs_new.php:1006 msgid "Set Default" msgstr "Stel in als standaard" #: /var/www/html/cacti/host.php:41 msgid "Change Device Settings" msgstr "Wijzig apparaat instellingen" #: /var/www/html/cacti/host.php:42 msgid "Clear Statistics" msgstr "Statistieken opschonen" #: /var/www/html/cacti/host.php:44 msgid "Sync to Device Template" msgstr "Synchroniseer naar apparaat template" #: /var/www/html/cacti/host.php:382 msgid "Click 'Continue' to enable the following Device(s)." msgstr "Klik op 'Volgende' om de volgende appara(a)t(en) in te schakelen." #: /var/www/html/cacti/host.php:387 msgid "Enable Device(s)" msgstr "Appara(a)t(en) inschakelen" #: /var/www/html/cacti/host.php:391 msgid "Click 'Continue' to disable the following Device(s)." msgstr "Klik op 'Volgende' om de volgende appara(a)t(en) uit te schakelen." #: /var/www/html/cacti/host.php:396 msgid "Disable Device(s)" msgstr "Appara(a)t(en) uitschakelen" #: /var/www/html/cacti/host.php:400 msgid "" "Click 'Continue' to change the Device options below for multiple Device(s). " "Please check the box next to the fields you want to update, and then fill in " "the new value." msgstr "" "Klik op 'Volgende' om de hieronder vermelde apparaat opties voor een of " "meerdere apparaten aan te passen. Selecteer het selectievak naast de velden " "die u wilt bijwerken en vul de nieuwe waarde in." #: /var/www/html/cacti/host.php:427 msgid "Update this Field" msgstr "Dit veld bijwerken" #: /var/www/html/cacti/host.php:444 msgid "Change Device(s) SNMP Options" msgstr "Wijzig de SNMP opties voor dit/deze appara(a)t(en)" #: /var/www/html/cacti/host.php:448 msgid "Click 'Continue' to clear the counters for the following Device(s)." msgstr "" "Klik op 'Volgende' om de tellers voor de volgende appara(a)t(en) te resetten." #: /var/www/html/cacti/host.php:453 msgid "Clear Statistics on Device(s)" msgstr "Reset de statistieken van appara(a)t(en)" #: /var/www/html/cacti/host.php:457 msgid "" "Click 'Continue' to Synchronize the following Device(s) to their Device " "Template." msgstr "" "Klik op 'Volgende' om de volgende appara(a)t(en) te synchroniseren naar zijn " "apparaat template." #: /var/www/html/cacti/host.php:462 msgid "Synchronize Device(s)" msgstr "Synchroniseer appara(a)t(en)" #: /var/www/html/cacti/host.php:466 msgid "Click 'Continue' to delete the following Device(s)." msgstr "Klik op 'Volgende' om de volgende appara(a)t(en) te verwijderen." #: /var/www/html/cacti/host.php:469 msgid "" "Leave all Graph(s) and Data Source(s) untouched. Data Source(s) will be " "disabled however." msgstr "" "Laat alle grafieken en data bronnen ongemoeid. Data bronnen zullen alleen " "worden uitgeschakeld." #: /var/www/html/cacti/host.php:470 msgid "Delete all associated Graph(s) and Data Source(s)." msgstr "Verwijder de gekoppelde grafiek(en) en data bron(nen)." #: /var/www/html/cacti/host.php:476 msgid "Delete Device(s)" msgstr "Verwijder appara(a)t(en)" #: /var/www/html/cacti/host.php:480 msgid "" "Click 'Continue' to place the following Device(s) under the branch selected " "below." msgstr "" "Klik op 'Volgende' om de volgende apparaten om de hieronder geselecteerde " "tak te plaatsen." #: /var/www/html/cacti/host.php:490 msgid "Place Device(s) on Tree" msgstr "Plaats appara(a)t(en) in de boomstructuur" #: /var/www/html/cacti/host.php:494 msgid "Click 'Continue' to apply Automation Rules to the following Devices(s)." msgstr "" "Klik op 'Volgende' om de automatiseringsregels toe te passen voor de " "volgende appara(a)t(en)." #: /var/www/html/cacti/host.php:499 msgid "Run Automation on Device(s)" msgstr "" #: /var/www/html/cacti/host.php:510 msgid "You must select at least one device." msgstr "U moet tenminste een apparaat selecteren." #: /var/www/html/cacti/host.php:636 msgid "Device [new]" msgstr "Apparaat [nieuw]" #: /var/www/html/cacti/host.php:642 #, php-format msgid "Device [edit: %s]" msgstr "Apparaat [wijzig: %s]" #: /var/www/html/cacti/host.php:644 msgid "Disable Device Debug" msgstr "Apparaat debug uitschakelen" #: /var/www/html/cacti/host.php:646 msgid "Enable Device Debug" msgstr "Apparaat debug inschakelen" #: /var/www/html/cacti/host.php:659 msgid "Create Graphs for this Device" msgstr "Maak grafieken voor dit apparaat" #: /var/www/html/cacti/host.php:661 msgid "Data Source List" msgstr "Lijst met data bronnen" #: /var/www/html/cacti/host.php:662 msgid "Graph List" msgstr "Lijst met grafieken" #: /var/www/html/cacti/host.php:668 msgid "Contacting Device" msgstr "Proberen apparaat te bereiken" #: /var/www/html/cacti/host.php:701 msgid "Data Query Debug Information" msgstr "Data query debug informatie" #: /var/www/html/cacti/host.php:705 /var/www/html/cacti/lib/functions.php:3280 #: /var/www/html/cacti/tree.php:1333 /var/www/html/cacti/tree.php:1407 #: /var/www/html/cacti/tree.php:1494 /var/www/html/cacti/user_admin.php:29 #: /var/www/html/cacti/user_group_admin.php:31 msgid "Copy" msgstr "Kopiëren" #: /var/www/html/cacti/host.php:706 #: /var/www/html/cacti/templates_import.php:141 msgid "Hide" msgstr "Verbergen" #: /var/www/html/cacti/host.php:785 /var/www/html/cacti/tree.php:1311 #: /var/www/html/cacti/tree.php:1385 /var/www/html/cacti/tree.php:1472 msgid "Edit" msgstr "Wijzig" #: /var/www/html/cacti/host.php:785 msgid "Is Being Graphed" msgstr "Wordt gepresenteerd" #: /var/www/html/cacti/host.php:785 msgid "Not Being Graphed" msgstr "Wordt niet gepresenteerd" #: /var/www/html/cacti/host.php:788 msgid "Delete Graph Template Association" msgstr "Verwijder grafiektemplate koppeling" #: /var/www/html/cacti/host.php:795 /var/www/html/cacti/host_templates.php:485 msgid "No associated graph templates." msgstr "Geen gekoppelde grafiektemplates." #: /var/www/html/cacti/host.php:804 /var/www/html/cacti/host_templates.php:494 msgid "Add Graph Template" msgstr "Grafiektemplate toevoegen" #: /var/www/html/cacti/host.php:810 msgid "Add Graph Template to Device" msgstr "Grafiektemplate toevoegen aan apparaat" #: /var/www/html/cacti/host.php:820 /var/www/html/cacti/host_templates.php:517 msgid "Associated Data Queries" msgstr "Gekoppelde data queries" #: /var/www/html/cacti/host.php:825 /var/www/html/cacti/host.php:921 msgid "Re-Index Method" msgstr "Herindexeringsmethode" #: /var/www/html/cacti/host.php:827 #: /var/www/html/cacti/lib/api_automation.php:1243 #: /var/www/html/cacti/lib/api_automation.php:1305 #: /var/www/html/cacti/lib/api_automation.php:1368 #: /var/www/html/cacti/lib/functions.php:2074 #: /var/www/html/cacti/lib/functions.php:2140 #: /var/www/html/cacti/lib/functions.php:2206 #: /var/www/html/cacti/lib/functions.php:2242 #: /var/www/html/cacti/lib/functions.php:2260 #: /var/www/html/cacti/lib/functions.php:2278 #: /var/www/html/cacti/lib/functions.php:2296 #: /var/www/html/cacti/lib/functions.php:2326 #: /var/www/html/cacti/lib/functions.php:2362 #: /var/www/html/cacti/lib/functions.php:2392 #: /var/www/html/cacti/lib/functions.php:2482 #: /var/www/html/cacti/lib/functions.php:2674 #: /var/www/html/cacti/lib/functions.php:2698 #: /var/www/html/cacti/lib/functions.php:2716 #: /var/www/html/cacti/lib/functions.php:2734 #: /var/www/html/cacti/lib/functions.php:2752 #: /var/www/html/cacti/lib/functions.php:2776 #: /var/www/html/cacti/lib/html_reports.php:1260 #: /var/www/html/cacti/links.php:376 /var/www/html/cacti/plugins.php:422 msgid "Actions" msgstr "Acties" #: /var/www/html/cacti/host.php:888 #, php-format msgid " [%d Items, %d Rows]" msgstr " [%d items, %d rijen]" #: /var/www/html/cacti/host.php:888 msgid "Fail" msgstr "Mislukt" #: /var/www/html/cacti/host.php:888 /var/www/html/cacti/lib/functions.php:4013 #: /var/www/html/cacti/lib/functions.php:4018 msgid "Success" msgstr "Gelukt" #: /var/www/html/cacti/host.php:891 msgid "Reload Query" msgstr "Query herladen" #: /var/www/html/cacti/host.php:892 msgid "Verbose Query" msgstr "Query uitschrijven" #: /var/www/html/cacti/host.php:893 msgid "Remove Query" msgstr "Verwijder query" #: /var/www/html/cacti/host.php:899 msgid "No Associated Data Queries." msgstr "Geen gekoppelde data queries." #: /var/www/html/cacti/host.php:915 /var/www/html/cacti/host_templates.php:551 msgid "Add Data Query" msgstr "Data query toevoegen" #: /var/www/html/cacti/host.php:927 msgid "Add Data Query to Device" msgstr "Data query toevoegen aan apparaat" #: /var/www/html/cacti/host.php:1093 /var/www/html/cacti/host.php:1106 #: /var/www/html/cacti/include/global_arrays.php:537 msgid "Ping" msgstr "Ping" #: /var/www/html/cacti/host.php:1104 #: /var/www/html/cacti/include/global_arrays.php:532 msgid "Ping and SNMP Uptime" msgstr "Ping en SNMP uptime" #: /var/www/html/cacti/host.php:1105 #: /var/www/html/cacti/include/global_arrays.php:534 msgid "SNMP Uptime" msgstr "SNMP uptime" #: /var/www/html/cacti/host.php:1107 #: /var/www/html/cacti/include/global_arrays.php:533 msgid "Ping or SNMP Uptime" msgstr "Ping of SNMP uptime" #: /var/www/html/cacti/host.php:1108 #: /var/www/html/cacti/include/global_arrays.php:535 msgid "SNMP Desc" msgstr "SNMP Desc" #: /var/www/html/cacti/host.php:1109 msgid "SNMP GetNext" msgstr "SNMP GetNext" #: /var/www/html/cacti/host.php:1455 #: /var/www/html/cacti/include/global_settings.php:465 msgid "Site" msgstr "Website" #: /var/www/html/cacti/host.php:1511 msgid "Export Devices" msgstr "Apparaten exporteren" #: /var/www/html/cacti/host.php:1532 #: /var/www/html/cacti/lib/api_automation.php:172 #: /var/www/html/cacti/lib/api_automation.php:1050 msgid "Not Up" msgstr "Niet online" #: /var/www/html/cacti/host.php:1535 #: /var/www/html/cacti/lib/api_automation.php:175 #: /var/www/html/cacti/lib/api_automation.php:1053 #: /var/www/html/cacti/lib/html_utility.php:855 #: /var/www/html/cacti/pollers.php:41 msgid "Recovering" msgstr "Herstellende" #: /var/www/html/cacti/host.php:1536 #: /var/www/html/cacti/lib/api_automation.php:176 #: /var/www/html/cacti/lib/api_automation.php:1054 #: /var/www/html/cacti/lib/html_utility.php:864 #: /var/www/html/cacti/plugins.php:179 /var/www/html/cacti/plugins.php:183 #: /var/www/html/cacti/plugins.php:202 /var/www/html/cacti/utilities.php:2109 msgid "Unknown" msgstr "Onbekend" #: /var/www/html/cacti/host.php:1565 #: /var/www/html/cacti/lib/api_automation.php:565 #: /var/www/html/cacti/utilities.php:1788 msgid "Device Description" msgstr "Apparaatbeschrijving" #: /var/www/html/cacti/host.php:1568 msgid "The name by which this Device will be referred to." msgstr "De naam waarnaar dit apparaat zal refereren." #: /var/www/html/cacti/host.php:1571 #: /var/www/html/cacti/include/global_form.php:995 #: /var/www/html/cacti/include/global_form.php:1632 #: /var/www/html/cacti/lib/api_automation.php:277 #: /var/www/html/cacti/lib/api_automation.php:566 #: /var/www/html/cacti/lib/api_automation.php:840 #: /var/www/html/cacti/lib/api_automation.php:1169 #: /var/www/html/cacti/managers.php:219 /var/www/html/cacti/pollers.php:82 #: /var/www/html/cacti/pollers.php:614 /var/www/html/cacti/user_admin.php:1230 #: /var/www/html/cacti/user_group_admin.php:966 msgid "Hostname" msgstr "Hostname" #: /var/www/html/cacti/host.php:1574 msgid "" "Either an IP address, or hostname. If a hostname, it must be resolvable by " "either DNS, or from your hosts file." msgstr "" "Dit is een IP adres of hostname. Als het een hostname is, moet het te " "herleiden zijn door DNS of vanuit uw hosts bestand." #: /var/www/html/cacti/host.php:1580 msgid "" "The internal database ID for this Device. Useful when performing automation " "or debugging." msgstr "" "De interne database ID voor dit apparaat. Handig voor automatisering of " "debugging." #: /var/www/html/cacti/host.php:1586 msgid "The total number of Graphs generated from this Device." msgstr "Het totaal aantal grafieken gegenereerd vanaf dit apparaat." #: /var/www/html/cacti/host.php:1592 msgid "The total number of Data Sources generated from this Device." msgstr "Het totaal aantal data bronnen gegenereerd vanaf dit apparaat." #: /var/www/html/cacti/host.php:1598 msgid "" "The monitoring status of the Device based upon ping results. If this Device " "is a special type Device, by using the hostname \"localhost\", or due to the " "setting to not perform an Availability Check, it will always remain Up. " "When using cmd.php data collector, a Device with no Graphs, is not pinged by " "the data collector and will remain in an \"Unknown\" state." msgstr "" "De monitoringstatus van het apparaat gebaseerd op ping resultaten. Als dit " "apparaat een speciaal type apparaat is, bijvoorbeeld door het gebruik van " "hostname 'localhost', of als de controle op beschikbaarheid is " "uitgeschakeld, zal altijd online worden weergegeven. Indien gebruik wordt " "gemaakt van cmd.php en het apparaat heeft geen grafieken, zal het apparaat " "niet worden gepinged en altijd in de status 'onbekend' worden weergegeven." #: /var/www/html/cacti/host.php:1601 msgid "In State" msgstr "In staat" #: /var/www/html/cacti/host.php:1604 msgid "The amount of time that this Device has been in its current state." msgstr "De tijd dat dit apparaat in de huidige staat is." #: /var/www/html/cacti/host.php:1610 msgid "The current amount of time that the host has been up." msgstr "De tijd dat dit apparaat online is." #: /var/www/html/cacti/host.php:1613 msgid "Poll Time" msgstr "Poll tijd" #: /var/www/html/cacti/host.php:1616 msgid "The amount of time it takes to collect data from this Device." msgstr "De tijd die het kost om de data op te halen van dit apparaat." #: /var/www/html/cacti/host.php:1619 msgid "Current (ms)" msgstr "Huidig (ms)" #: /var/www/html/cacti/host.php:1622 msgid "The current ping time in milliseconds to reach the Device." msgstr "De huidige ping tijd in milliseconden om dit apparaat te bereiken." #: /var/www/html/cacti/host.php:1625 msgid "Average (ms)" msgstr "Gemiddeld (ms)" #: /var/www/html/cacti/host.php:1628 msgid "" "The average ping time in milliseconds to reach the Device since the counters " "were cleared for this Device." msgstr "" "De gemiddelde ping tijd in milliseconden om dit apparaat te bereiken, sinds " "de tellers voor dit apparaat zijn gereset." #: /var/www/html/cacti/host.php:1631 msgid "Availability" msgstr "Beschikbaarheid" #: /var/www/html/cacti/host.php:1634 msgid "" "The availability percentage based upon ping results since the counters were " "cleared for this Device." msgstr "" "Het beschikbaarheidspercentage gebaseerd op ping resultaten sinds de tellers " "voor dit apparaat zijn gereset." #: /var/www/html/cacti/host_templates.php:32 msgid "Sync Devices" msgstr "Synchroniseer apparaten" #: /var/www/html/cacti/host_templates.php:256 msgid "Click 'Continue' to delete the following Device Template(s)." msgstr "Klik op 'Volgende' om de volgende apparaat template(s) te verwijderen." #: /var/www/html/cacti/host_templates.php:261 msgid "Delete Device Template(s)" msgstr "Verwijder apparaattemplate(s)" #: /var/www/html/cacti/host_templates.php:265 msgid "" "Click 'Continue' to duplicate the following Device Template(s). Optionally " "change the title for the new Device Template(s)." msgstr "" "Klik op 'Volgende' om de volgende apparaat template(s) te dupliceren. " "Optioneel kan de titel voor het nieuwe apparaat template(s) worden aangepast." #: /var/www/html/cacti/host_templates.php:275 msgid "Duplicate Device Template(s)" msgstr "Dupliceer apparaattemplate(s)" #: /var/www/html/cacti/host_templates.php:279 msgid "" "Click 'Continue' to Synchronize Devices associated with the selected Device " "Template(s). Note that this action may take some time depending on the " "number of Devices mapped to the Device Template." msgstr "" "Klik op 'Volgende' om de aan de apparaat template(s) te synchroniseren naar " "de gekoppelde apparaten. Let op dat deze actie enige tijd kan duren " "afhankelijk van het aantal apparaten dat gekoppeld is aan de apparaat " "template." #: /var/www/html/cacti/host_templates.php:286 msgid "Sync Devices to Device Template(s)" msgstr "Synchroniseer apparaten naar apparaattemplate(s)" #: /var/www/html/cacti/host_templates.php:289 msgid "You must select at least one host template." msgstr "U moet op zijn minst een host template selecteren." #: /var/www/html/cacti/host_templates.php:328 msgid "" "Click 'Continue' to delete the following Graph Template will be " "disassociated from the Device Template." msgstr "" "Klik op 'Volgende' om de grafiektemplate te verwijderen en los te koppelen " "van het apparaat template." #: /var/www/html/cacti/host_templates.php:329 #, php-format msgid "Graph Template Name: %s" msgstr "Grafiektemplate naam: %s" #: /var/www/html/cacti/host_templates.php:384 msgid "" "Click 'Continue' to delete the following Data Queries will be disassociated " "from the Device Template." msgstr "" "Klik op 'Volgende' om de volgende data query te verwijderen en los te " "koppelen van het apparaat template." #: /var/www/html/cacti/host_templates.php:385 #, php-format msgid "Data Query Name: %s" msgstr "Data bron naam: %s" #: /var/www/html/cacti/host_templates.php:434 #, php-format msgid "Device Templates [edit: %s]" msgstr "Apparaattemplate [wijzig: %s]" #: /var/www/html/cacti/host_templates.php:436 msgid "Device Templates [new]" msgstr "Apparaattemplate [nieuw]" #: /var/www/html/cacti/host_templates.php:453 msgid "Default Submit Button" msgstr "Standaard bevestigen knop" #: /var/www/html/cacti/host_templates.php:507 msgid "Add Graph Template to Device Template" msgstr "Grafiektemplate toevoegen aan apparaat template" #: /var/www/html/cacti/host_templates.php:542 msgid "No associated data queries." msgstr "Geen gekoppelde data queries." #: /var/www/html/cacti/host_templates.php:561 msgid "Add Data Query to Device Template" msgstr "Data query aan apparaat template toevoegen" #: /var/www/html/cacti/host_templates.php:687 #: /var/www/html/cacti/host_templates.php:702 #: /var/www/html/cacti/host_templates.php:803 #: /var/www/html/cacti/include/global_arrays.php:980 #: /var/www/html/cacti/lib/functions.php:2230 msgid "Device Templates" msgstr "Apparaattemplate" #: /var/www/html/cacti/host_templates.php:719 msgid "Has Devices" msgstr "Heeft apparaten" #: /var/www/html/cacti/host_templates.php:812 #: /var/www/html/cacti/lib/api_automation.php:279 #: /var/www/html/cacti/lib/api_automation.php:567 #: /var/www/html/cacti/lib/api_automation.php:1170 msgid "Device Template Name" msgstr "Apparaat template naam" #: /var/www/html/cacti/host_templates.php:812 msgid "The name of this Device Template." msgstr "De naam van dit apparaat template." #: /var/www/html/cacti/host_templates.php:813 msgid "" "The internal database ID for this Device Template. Useful when performing " "automation or debugging." msgstr "" "De interne database ID voor dit apparaat template. Handig voor " "automatisering of debugging." #: /var/www/html/cacti/host_templates.php:814 msgid "" "Device Templates in use cannot be Deleted. In use is defined as being " "referenced by a Device." msgstr "" "Apparaat templates die in gebruik zijn kunnen niet worden verwijderd. In " "gebruik wordt gedefinieerd als gebruikt door een apparaat." #: /var/www/html/cacti/host_templates.php:815 msgid "Devices Using" msgstr "Gebruikt door apparaten" #: /var/www/html/cacti/host_templates.php:815 msgid "The number of Devices using this Device Template." msgstr "Het aantal apparaten dat dit apparaat template gebruikt." #: /var/www/html/cacti/host_templates.php:838 msgid "No Device Templates Found" msgstr "Geen apparaattemplates gevonden" #: /var/www/html/cacti/include/auth.php:96 msgid "Not Logged In" msgstr "Niet ingelogd" #: /var/www/html/cacti/include/auth.php:97 msgid "You must be logged in to access this area of Cacti." msgstr "U dient ingelogd te zijn om dit deel van Cacti te gebruiken." #: /var/www/html/cacti/include/auth.php:101 msgid "FATAL: You must be logged in to access this area of Cacti." msgstr "" "FATALE FOUT: U dient ingelogd te zijn om dit deel van Cacti te gebruiken." #: /var/www/html/cacti/include/auth.php:139 #: /var/www/html/cacti/include/auth.php:141 #: /var/www/html/cacti/permission_denied.php:30 #: /var/www/html/cacti/permission_denied.php:32 msgid "Login Again" msgstr "Log nogmaals in" #: /var/www/html/cacti/include/auth.php:147 #: /var/www/html/cacti/include/auth.php:154 #: /var/www/html/cacti/permission_denied.php:38 #: /var/www/html/cacti/permission_denied.php:45 msgid "Permission Denied" msgstr "Toegang geweigerd" #: /var/www/html/cacti/include/auth.php:156 #: /var/www/html/cacti/permission_denied.php:47 msgid "" "If you feel that this is an error. Please contact your Cacti Administrator." msgstr "" "Als u van mening bent dat dit foutief is, neem dan alstublieft contact op " "met uw Cacti beheerder." #: /var/www/html/cacti/include/auth.php:156 #: /var/www/html/cacti/permission_denied.php:47 msgid "You are not permitted to access this section of Cacti." msgstr "U heeft geen toestemming voor dit deel van Cacti." #: /var/www/html/cacti/include/global_arrays.php:117 msgid "Save Successful." msgstr "Succesvol opgeslagen." #: /var/www/html/cacti/include/global_arrays.php:120 msgid "Save Failed." msgstr "Opslaan mislukt." #: /var/www/html/cacti/include/global_arrays.php:123 msgid "Save Failed due to field input errors (Check red fields)." msgstr "Opslaan mislukt: veld invoer fouten (Controleer rode velden)." #: /var/www/html/cacti/include/global_arrays.php:126 msgid "Passwords do not match, please retype." msgstr "" "De wachtwoorden komen niet overeen. Voert u deze alstublieft opnieuw in." #: /var/www/html/cacti/include/global_arrays.php:129 msgid "You must select at least one field." msgstr "U moet tenminste een veld selecteren." #: /var/www/html/cacti/include/global_arrays.php:132 msgid "" "You must have built in user authentication turned on to use this feature." msgstr "" "U moet de ingebouwde gebruikersauthenticatie ingeschakeld hebben om deze " "feature te gebruiken." #: /var/www/html/cacti/include/global_arrays.php:135 msgid "XML parse error." msgstr "XML parsefout." #: /var/www/html/cacti/include/global_arrays.php:138 msgid "" "The directory highlighted does not exist. Please enter a valid directory." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:141 msgid "The Cacti log file must have the extension '.log'" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:144 msgid "Data Source does not exist." msgstr "Data bron bestaat niet." #: /var/www/html/cacti/include/global_arrays.php:147 msgid "Username already in use." msgstr "Gebruikersnaam is al in gebruik." #: /var/www/html/cacti/include/global_arrays.php:150 msgid "The SNMP v3 Privacy Passphrases do not match" msgstr "Het SNMPv3 privacy wachtwoord komt niet overeen" #: /var/www/html/cacti/include/global_arrays.php:153 msgid "The SNMP v3 Authentication Passphrases do not match" msgstr "Het SNMPv3 authenticatie wachtwoord komt niet overeen" #: /var/www/html/cacti/include/global_arrays.php:156 msgid "XML: Cacti version does not exist." msgstr "XML: Cacti versie bestaat niet." #: /var/www/html/cacti/include/global_arrays.php:159 msgid "XML: Hash version does not exist." msgstr "XML: Hash versie bestaat niet." #: /var/www/html/cacti/include/global_arrays.php:162 msgid "XML: Generated with a newer version of Cacti." msgstr "XML: Gegenereerd met een nieuwere versie van Cacti." #: /var/www/html/cacti/include/global_arrays.php:165 msgid "XML: Cannot locate type code." msgstr "XML: Type code kon niet worden gevonden." #: /var/www/html/cacti/include/global_arrays.php:168 msgid "Username already exists." msgstr "Gebruikersnaam bestaat al." #: /var/www/html/cacti/include/global_arrays.php:171 msgid "Username change not permitted for designated template or guest user." msgstr "" "Het wijzigen van de gebruikersnaam is niet toegestaan vanwege het " "rechtenprofiel of als u een gastgebruiker bent." #: /var/www/html/cacti/include/global_arrays.php:174 msgid "User delete not permitted for designated template or guest user." msgstr "" "Verwijderen van gebruiker niet toegestaan voor aangewezen sjablonen of het " "gastaccount." #: /var/www/html/cacti/include/global_arrays.php:177 msgid "User delete not permitted for designated graph export user." msgstr "" "Verwijderen van gebruiker niet toegestaan voor aangewezen grafiek export " "gebruiker." #: /var/www/html/cacti/include/global_arrays.php:180 msgid "" "Data Template includes deleted Data Source Profile. Please resave the Data " "Template with an existing Data Source Profile." msgstr "" "Data template bevat een verwijderd data bron profiel. Sla het data template " "opnieuw op met een bestaand data bron profiel." #: /var/www/html/cacti/include/global_arrays.php:183 msgid "" "Graph Template includes deleted GPrint Prefix. Please run database repair " "script to identify and/or correct." msgstr "" "Grafiek template bevat verwijderde GPrint voorvoegsel. Draai het database " "reparatiescript om dit te identificeren en te corrigeren." #: /var/www/html/cacti/include/global_arrays.php:186 msgid "" "Graph Template includes deleted CDEFs. Please run database repair script to " "identify and/or correct." msgstr "" "Grafiek template bevat verwijderde CDEF’s. Draai het database " "reparatiescript om dit te identificeren en te corrigeren." #: /var/www/html/cacti/include/global_arrays.php:189 msgid "" "Graph Template includes deleted Data Input Method. Please run database " "repair script to identify." msgstr "" "Grafiek template bevat een verwijderde data invoer methode. Draai het " "database reparatiescript om dit te identificeren." #: /var/www/html/cacti/include/global_arrays.php:192 msgid "" "Data Template not found during Export. Please run database repair script to " "identify." msgstr "" "Data template niet gevonden tijdens het exporteren. Draai het database " "reparatiescript om dit te identificeren." #: /var/www/html/cacti/include/global_arrays.php:195 msgid "" "Device Template not found during Export. Please run database repair script " "to identify." msgstr "" "Apparaat template niet gevonden tijdens het exporteren. Draai het database " "reparatiescript om dit te identificeren." #: /var/www/html/cacti/include/global_arrays.php:198 msgid "" "Data Query not found during Export. Please run database repair script to " "identify." msgstr "" "Data query niet gevonden tijdens het exporteren. Draai het database " "reparatiescript om dit te identificeren." #: /var/www/html/cacti/include/global_arrays.php:201 msgid "" "Graph Template not found during Export. Please run database repair script " "to identify." msgstr "" "Grafiek template niet gevonden tijdens exporteren. Draait het Database " "reparatie script om deze fout te identificeren." #: /var/www/html/cacti/include/global_arrays.php:204 msgid "" "Graph not found. Either it has been deleted or your database needs repair." msgstr "" "Grafiek niet gevonden. Of het is verwijderd of uw database moet worden " "gerepareerd." #: /var/www/html/cacti/include/global_arrays.php:207 msgid "SNMPv3 Auth Passphrases must be 8 characters or greater." msgstr "SNMPv3 Auth wachtwoord moet minimaal 8 karakters lang zijn." #: /var/www/html/cacti/include/global_arrays.php:210 msgid "" "Some Graphs not updated. Unable to change device for Data Query based Graphs." msgstr "" "Sommige grafieken zijn niet bijgewerkt. Het apparaat is niet gewijzigd voor " "de data query gebaseerde grafiek." #: /var/www/html/cacti/include/global_arrays.php:213 msgid "Unable to change device for Data Query based Graphs." msgstr "Het apparaat voor data query gebaseerde grafiek is niet gewijzigd." #: /var/www/html/cacti/include/global_arrays.php:216 msgid "" "Some settings not saved. Check messages below. Check red fields for errors." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:219 msgid "The file highlighted does not exist. Please enter a valid file name." msgstr "" #: /var/www/html/cacti/include/global_arrays.php:222 msgid "Log file specified is not a Cacti log or archive file." msgstr "Het gespecificeerde log bestand is geen Cacti log of archief bestand." #: /var/www/html/cacti/include/global_arrays.php:225 msgid "Log file specified was Cacti archive file and was removed." msgstr "" "Het gespecificeerde log bestand was een Cacti archief en is daarom " "verwijderd." #: /var/www/html/cacti/include/global_arrays.php:228 msgid "Cacti log purged successfully" msgstr "Cacti log succesvol geleegd" #: /var/www/html/cacti/include/global_arrays.php:231 msgid "" "If you force a password change, you must also allow the user to change their " "password." msgstr "" "Als je forceert om een wachtwoord te wijzigen moet je de gebruiker ook de " "rechten geven om het wachtwoord te wijzigen." #: /var/www/html/cacti/include/global_arrays.php:234 msgid "You are not allowed to change your password." msgstr "U mag uw wachtwoord niet wijzigen." #: /var/www/html/cacti/include/global_arrays.php:237 msgid "LDAP/AD based password change not supported." msgstr "" "Het wijzigen van op LDAP/AD gebaseerde wachtwoorden wordt niet ondersteund." #: /var/www/html/cacti/include/global_arrays.php:240 msgid "Unable to clear log, no write permissions" msgstr "Logbestand legen mislukt, geen schrijfrechten" #: /var/www/html/cacti/include/global_arrays.php:243 msgid "Unable to clear log, file does not exist" msgstr "Logbestand legen mislukt. Het bestand bestaat niet" #: /var/www/html/cacti/include/global_arrays.php:246 msgid "CSRF Timeout, refreshing page." msgstr "CSRF time-out, pagina wordt vernieuwd." #: /var/www/html/cacti/include/global_arrays.php:249 msgid "Invalid timestamp. Select timestamp in the future." msgstr "Ongeldige tijd. Selecteer een tijd in de toekomst." #: /var/www/html/cacti/include/global_arrays.php:252 msgid "Data Collector(s) synchronized for offline operation" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:255 msgid "Data Collector(s) not found when attempting synchronization" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:258 msgid "Unable to establish MySQL connection with remote Data Collector." msgstr "Het maken van een MySQL verbinding is mislukt met de data collector." #: /var/www/html/cacti/include/global_arrays.php:261 msgid "" "Data Collector synchronization must be initiated from the main Cacti server." msgstr "" "Data collector synchronisatie moet worden geïnitieerd vanaf de hoofd Cacti " "server." #: /var/www/html/cacti/include/global_arrays.php:264 msgid "Report Saved" msgstr "Rapport opgeslagen" #: /var/www/html/cacti/include/global_arrays.php:267 msgid "Report Save Failed" msgstr "Rapport niet opgeslagen" #: /var/www/html/cacti/include/global_arrays.php:270 msgid "Report Item Saved" msgstr "Rapportitem opgeslagen" #: /var/www/html/cacti/include/global_arrays.php:273 msgid "Report Item Save Failed" msgstr "Rapportitem niet opgeslagen" #: /var/www/html/cacti/include/global_arrays.php:276 msgid "" "Poller Resource Cache cleared. Main Data Collector will rebuild at the next " "poller start, and Remote Data Collectors will sync afterwards." msgstr "" "Poller bron cache verwijderd. Hoofd data collector wordt herbouwd tijdens de " "volgende run en de andere data collectoren worden daarna gesynchroniseerd." #: /var/www/html/cacti/include/global_arrays.php:279 msgid "Unexpected error occurred" msgstr "Er heeft zich een onverwachte fout voorgedaan" #: /var/www/html/cacti/include/global_arrays.php:371 #: /var/www/html/cacti/include/global_arrays.php:723 msgid "Function" msgstr "Functie" #: /var/www/html/cacti/include/global_arrays.php:372 #: /var/www/html/cacti/include/global_arrays.php:725 msgid "Special Data Source" msgstr "Speciale data bron" #: /var/www/html/cacti/include/global_arrays.php:373 #: /var/www/html/cacti/include/global_arrays.php:727 msgid "Custom String" msgstr "Aangepaste waarde" #: /var/www/html/cacti/include/global_arrays.php:377 #: /var/www/html/cacti/include/global_arrays.php:764 msgid "Current Graph Item Data Source" msgstr "Huidige data bron van grafiek item" #: /var/www/html/cacti/include/global_arrays.php:383 #: /var/www/html/cacti/include/global_arrays.php:390 msgid "Script/Command" msgstr "Script/Opdracht" #: /var/www/html/cacti/include/global_arrays.php:385 #: /var/www/html/cacti/include/global_arrays.php:391 #: /var/www/html/cacti/utilities.php:1697 msgid "Script Server" msgstr "Script server" #: /var/www/html/cacti/include/global_arrays.php:397 msgid "Index Count" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:398 msgid "Verify All" msgstr "Alles verifieer" #: /var/www/html/cacti/include/global_arrays.php:402 msgid "" "All Re-Indexing will be manual or managed through scripts or Device " "Automation." msgstr "" "Alle herindexeringen zijn handmatig of worden beheerd vanuit scripts of de " "apparaat automatisering." #: /var/www/html/cacti/include/global_arrays.php:403 msgid "" "When the Devices SNMP uptime goes backward, a Re-Index will be performed." msgstr "" "Wanneer de SNMP uptime van apparaten achteruit gaat, zal een herindexering " "worden uitgevoerd." #: /var/www/html/cacti/include/global_arrays.php:404 msgid "When the Data Query index count changes, a Re-Index will be performed." msgstr "" "Wanneer de data query indexering veranderd, zal een herindexering plaats " "vinden." #: /var/www/html/cacti/include/global_arrays.php:405 msgid "Every polling cycle, a Re-Index will be performed. Very expensive." msgstr "" "Tijdens iedere polling cyclus zal een herindexering worden uitgevoerd. Dit " "is erg zwaar." #: /var/www/html/cacti/include/global_arrays.php:409 msgid "SNMP Field Name (Dropdown)" msgstr "SNMP veld naam (Dropdown)" #: /var/www/html/cacti/include/global_arrays.php:410 msgid "SNMP Field Value (From User)" msgstr "SNMP veld waarde (Van gebruiker)" #: /var/www/html/cacti/include/global_arrays.php:411 msgid "SNMP Output Type (Dropdown)" msgstr "SNMP uitvoer type (Dropdown)" #: /var/www/html/cacti/include/global_arrays.php:430 #: /var/www/html/cacti/include/global_arrays.php:436 msgid "Normal" msgstr "Normaal" #: /var/www/html/cacti/include/global_arrays.php:431 msgid "Light" msgstr "Licht" #: /var/www/html/cacti/include/global_arrays.php:432 #: /var/www/html/cacti/include/global_arrays.php:437 msgid "Mono" msgstr "Mono" #: /var/www/html/cacti/include/global_arrays.php:441 msgid "North" msgstr "Noord" #: /var/www/html/cacti/include/global_arrays.php:442 msgid "South" msgstr "Zuid" #: /var/www/html/cacti/include/global_arrays.php:443 msgid "West" msgstr "West" #: /var/www/html/cacti/include/global_arrays.php:444 msgid "East" msgstr "Oost" #: /var/www/html/cacti/include/global_arrays.php:449 msgid "Left" msgstr "Links" #: /var/www/html/cacti/include/global_arrays.php:450 msgid "Right" msgstr "Rechts" #: /var/www/html/cacti/include/global_arrays.php:451 msgid "Justified" msgstr "Uitgelijnd" #: /var/www/html/cacti/include/global_arrays.php:452 msgid "Center" msgstr "Centraal" #: /var/www/html/cacti/include/global_arrays.php:456 msgid "Top -> Down" msgstr "Boven -> Beneden" #: /var/www/html/cacti/include/global_arrays.php:457 msgid "Bottom -> Up" msgstr "Beneden -> Boven" #: /var/www/html/cacti/include/global_arrays.php:461 #: /var/www/html/cacti/tree.php:1295 msgid "Numeric" msgstr "Numeriek" #: /var/www/html/cacti/include/global_arrays.php:462 msgid "Timestamp" msgstr "Timestamp" #: /var/www/html/cacti/include/global_arrays.php:463 msgid "Duration" msgstr "Duur" #: /var/www/html/cacti/include/global_arrays.php:501 msgid "Not In Use" msgstr "Niet in gebruik" #: /var/www/html/cacti/include/global_arrays.php:502 #: /var/www/html/cacti/include/global_arrays.php:503 #: /var/www/html/cacti/include/global_arrays.php:504 #: /var/www/html/cacti/include/global_arrays.php:692 #: /var/www/html/cacti/include/global_arrays.php:693 #, php-format msgid "Version %d" msgstr "Versie %d" #: /var/www/html/cacti/include/global_arrays.php:508 #: /var/www/html/cacti/include/global_arrays.php:514 msgid "[None]" msgstr "[Geen]" #: /var/www/html/cacti/include/global_arrays.php:509 msgid "MD5" msgstr "MD5" #: /var/www/html/cacti/include/global_arrays.php:510 msgid "SHA" msgstr "SHA" #: /var/www/html/cacti/include/global_arrays.php:515 msgid "DES" msgstr "DES" #: /var/www/html/cacti/include/global_arrays.php:516 msgid "AES" msgstr "AES" #: /var/www/html/cacti/include/global_arrays.php:525 msgid "Logfile Only" msgstr "Uitsluitend logbestand" #: /var/www/html/cacti/include/global_arrays.php:526 msgid "Logfile and Syslog/Eventlog" msgstr "Logbestand en syslog/eventlog" #: /var/www/html/cacti/include/global_arrays.php:527 msgid "Syslog/Eventlog Only" msgstr "Uitsluitend syslog/eventlog" #: /var/www/html/cacti/include/global_arrays.php:536 msgid "SNMP getNext" msgstr "SNMP getNext" #: /var/www/html/cacti/include/global_arrays.php:541 msgid "ICMP Ping" msgstr "ICMP ping" #: /var/www/html/cacti/include/global_arrays.php:542 msgid "TCP Ping" msgstr "TCP ping" #: /var/www/html/cacti/include/global_arrays.php:543 msgid "UDP Ping" msgstr "UDP ping" #: /var/www/html/cacti/include/global_arrays.php:547 msgid "NONE - Syslog Only if Selected" msgstr "GEEN - Uitsluitend syslog indien geselecteerd" #: /var/www/html/cacti/include/global_arrays.php:548 msgid "LOW - Statistics and Errors" msgstr "LAAG - Statistieken en foutmeldingen" #: /var/www/html/cacti/include/global_arrays.php:549 msgid "MEDIUM - Statistics, Errors and Results" msgstr "MEDIUM - Statistieken, foutmeldingen en resultaten" #: /var/www/html/cacti/include/global_arrays.php:550 msgid "HIGH - Statistics, Errors, Results and Major I/O Events" msgstr "" "HOOG - Statistieken, foutmeldingen, resultaten en grote I/O gebeurtenissen" #: /var/www/html/cacti/include/global_arrays.php:551 msgid "DEBUG - Statistics, Errors, Results, I/O and Program Flow" msgstr "DEBUG - Statistieken, foutmeldingen, resultaten, I/O en programma flow" #: /var/www/html/cacti/include/global_arrays.php:552 msgid "DEVEL - Developer DEBUG Level" msgstr "DEVEL - Ontwikkelaar DEBUG meldingen" #: /var/www/html/cacti/include/global_arrays.php:565 msgid "Selected Poller Interval" msgstr "Selecteer poller interval" #: /var/www/html/cacti/include/global_arrays.php:582 #: /var/www/html/cacti/include/global_arrays.php:583 #: /var/www/html/cacti/include/global_arrays.php:584 #: /var/www/html/cacti/include/global_arrays.php:585 #: /var/www/html/cacti/include/global_arrays.php:641 #: /var/www/html/cacti/include/global_arrays.php:642 #: /var/www/html/cacti/include/global_arrays.php:643 #: /var/www/html/cacti/include/global_arrays.php:644 #, php-format msgid "Every %d Seconds" msgstr "Iedere %d seconden" #: /var/www/html/cacti/include/global_arrays.php:586 #: /var/www/html/cacti/include/global_arrays.php:645 #: /var/www/html/cacti/include/global_arrays.php:659 msgid "Every Minute" msgstr "Iedere minuut" #: /var/www/html/cacti/include/global_arrays.php:587 #: /var/www/html/cacti/include/global_arrays.php:588 #: /var/www/html/cacti/include/global_arrays.php:589 #: /var/www/html/cacti/include/global_arrays.php:590 #: /var/www/html/cacti/include/global_arrays.php:646 #: /var/www/html/cacti/include/global_arrays.php:660 #, php-format msgid "Every %d Minutes" msgstr "Iedere %d minuten" #: /var/www/html/cacti/include/global_arrays.php:591 msgid "Every Hour" msgstr "Ieder uur" #: /var/www/html/cacti/include/global_arrays.php:592 #: /var/www/html/cacti/include/global_arrays.php:593 #: /var/www/html/cacti/include/global_arrays.php:594 #: /var/www/html/cacti/include/global_arrays.php:595 #: /var/www/html/cacti/include/global_arrays.php:1559 #: /var/www/html/cacti/include/global_arrays.php:1560 #: /var/www/html/cacti/include/global_arrays.php:1561 #: /var/www/html/cacti/include/global_arrays.php:1562 #: /var/www/html/cacti/include/global_arrays.php:1563 #: /var/www/html/cacti/include/global_settings.php:1814 #: /var/www/html/cacti/include/global_settings.php:1815 #, php-format msgid "Every %d Hours" msgstr "Iedere %d uren" #: /var/www/html/cacti/include/global_arrays.php:596 msgid "Every %1 Day" msgstr "Iedere %d dagen" #: /var/www/html/cacti/include/global_arrays.php:636 #: /var/www/html/cacti/include/global_arrays.php:1201 #: /var/www/html/cacti/include/global_settings.php:1113 #: /var/www/html/cacti/rrdcleaner.php:493 #, php-format msgid "%d Year" msgstr "%d Jaar" #: /var/www/html/cacti/include/global_arrays.php:650 msgid "1 Thread (default)" msgstr "1 Thread (standaard)" #: /var/www/html/cacti/include/global_arrays.php:675 msgid "Builtin Authentication" msgstr "Ingebouwde authenticatie" #: /var/www/html/cacti/include/global_arrays.php:676 msgid "Web Basic Authentication" msgstr "Web basic authenticatie" #: /var/www/html/cacti/include/global_arrays.php:680 msgid "LDAP Authentication" msgstr "LDAP authenticatie" #: /var/www/html/cacti/include/global_arrays.php:681 msgid "Multiple LDAP/AD Domains" msgstr "Meerdere LDAP/AD domeinen" #: /var/www/html/cacti/include/global_arrays.php:686 msgid "Active Directory" msgstr "Active Directory" #: /var/www/html/cacti/include/global_arrays.php:698 #: /var/www/html/cacti/include/global_settings.php:1411 msgid "SSL" msgstr "SSL" #: /var/www/html/cacti/include/global_arrays.php:699 #: /var/www/html/cacti/include/global_settings.php:1411 msgid "TLS" msgstr "TLS" #: /var/www/html/cacti/include/global_arrays.php:703 msgid "No Searching" msgstr "Niet zoeken" #: /var/www/html/cacti/include/global_arrays.php:704 msgid "Anonymous Searching" msgstr "Anoniem zoeken" #: /var/www/html/cacti/include/global_arrays.php:705 msgid "Specific Searching" msgstr "Specifiek zoeken" #: /var/www/html/cacti/include/global_arrays.php:719 msgid "Enabled (strict mode)" msgstr "Ingeschakeld (strikt modus)" #: /var/www/html/cacti/include/global_arrays.php:724 #: /var/www/html/cacti/include/global_form.php:2095 #: /var/www/html/cacti/include/global_form.php:2137 #: /var/www/html/cacti/lib/api_automation.php:1241 #: /var/www/html/cacti/lib/api_automation.php:1303 msgid "Operator" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:726 msgid "Another CDEF" msgstr "Nog een CDEF" #: /var/www/html/cacti/include/global_arrays.php:745 msgid "Inherit Parent Sorting" msgstr "Overerf de sortering van een bovenliggend niveau" #: /var/www/html/cacti/include/global_arrays.php:746 msgid "Manual Ordering (No Sorting)" msgstr "Handmatig sorteren (Geen sortering)" #: /var/www/html/cacti/include/global_arrays.php:747 msgid "Alphabetic Ordering" msgstr "Alfabetisch sorteren" #: /var/www/html/cacti/include/global_arrays.php:748 msgid "Natural Ordering" msgstr "Natuurlijke sortering" #: /var/www/html/cacti/include/global_arrays.php:749 msgid "Numeric Ordering" msgstr "Numerieke sortering" #: /var/www/html/cacti/include/global_arrays.php:753 #: /var/www/html/cacti/lib/rrd.php:2676 msgid "Header" msgstr "Kolomkop" #: /var/www/html/cacti/include/global_arrays.php:754 #: /var/www/html/cacti/include/global_arrays.php:801 #: /var/www/html/cacti/include/global_arrays.php:1384 #: /var/www/html/cacti/include/global_arrays.php:1548 msgid "Graph" msgstr "Grafiek" #: /var/www/html/cacti/include/global_arrays.php:760 #: /var/www/html/cacti/tree.php:1461 msgid "Data Query Index" msgstr "Data query index" #: /var/www/html/cacti/include/global_arrays.php:765 msgid "Current Graph Item Polling Interval" msgstr "Huidige polling interval van dit grafiek item" #: /var/www/html/cacti/include/global_arrays.php:766 msgid "All Data Sources (Do not Include Duplicates)" msgstr "Alle data bronnen (Dubbelen uitgesloten)" #: /var/www/html/cacti/include/global_arrays.php:767 msgid "All Data Sources (Include Duplicates)" msgstr "Alle data bronnen (Inclusief dubbelen)" #: /var/www/html/cacti/include/global_arrays.php:768 msgid "All Similar Data Sources (Do not Include Duplicates)" msgstr "Alle vergelijkbare data bronnen (Dubbelen uitgesloten)" #: /var/www/html/cacti/include/global_arrays.php:769 msgid "All Similar Data Sources (Do not Include Duplicates) Polling Interval" msgstr "Alle vergelijkbare data bronnen (Dubbelen uitgesloten) Poller interval" #: /var/www/html/cacti/include/global_arrays.php:770 msgid "All Similar Data Sources (Include Duplicates)" msgstr "Alle vergelijkbare data bronnen (Inclusief dubbelen)" #: /var/www/html/cacti/include/global_arrays.php:771 msgid "Current Data Source Item: Minimum Value" msgstr "Huidige data bron item: minimale waarde" #: /var/www/html/cacti/include/global_arrays.php:772 msgid "Current Data Source Item: Maximum Value" msgstr "Huidige data bron item: Maximale waarde" #: /var/www/html/cacti/include/global_arrays.php:773 msgid "Graph: Lower Limit" msgstr "Grafiek: onder limiet" #: /var/www/html/cacti/include/global_arrays.php:774 msgid "Graph: Upper Limit" msgstr "Grafiek: boven limiet" #: /var/www/html/cacti/include/global_arrays.php:775 msgid "Count of All Data Sources (Do not Include Duplicates)" msgstr "Totaal van alle data bronnen (dubbelen niet meegeteld)" #: /var/www/html/cacti/include/global_arrays.php:776 msgid "Count of All Data Sources (Include Duplicates)" msgstr "Totaal van alle data bronnen (dubbelen wel meegeteld)" #: /var/www/html/cacti/include/global_arrays.php:777 msgid "Count of All Similar Data Sources (Do not Include Duplicates)" msgstr "Totaal van alle gelijke data bronnen (dubbelen niet meegeteld)" #: /var/www/html/cacti/include/global_arrays.php:778 msgid "Count of All Similar Data Sources (Include Duplicates)" msgstr "Totaal van alle gelijke data bronnen (dubbelen wel meegeteld)" #: /var/www/html/cacti/include/global_arrays.php:784 #: /var/www/html/cacti/lib/html_form_template.php:568 #: /var/www/html/cacti/lib/html_form_template.php:583 msgid "New Graphs" msgstr "Nieuwe grafieken" #: /var/www/html/cacti/include/global_arrays.php:786 #: /var/www/html/cacti/include/global_arrays.php:838 #: /var/www/html/cacti/include/global_arrays.php:855 msgid "Management" msgstr "Onderhoud" #: /var/www/html/cacti/include/global_arrays.php:788 #: /var/www/html/cacti/sites.php:389 /var/www/html/cacti/sites.php:404 #: /var/www/html/cacti/sites.php:484 msgid "Sites" msgstr "Locaties" #: /var/www/html/cacti/include/global_arrays.php:789 #: /var/www/html/cacti/include/global_arrays.php:972 #: /var/www/html/cacti/tree.php:1670 /var/www/html/cacti/tree.php:1685 #: /var/www/html/cacti/tree.php:1744 /var/www/html/cacti/user_admin.php:1503 #: /var/www/html/cacti/user_admin.php:2932 #: /var/www/html/cacti/user_admin.php:3017 #: /var/www/html/cacti/user_group_admin.php:1235 #: /var/www/html/cacti/user_group_admin.php:2454 msgid "Trees" msgstr "Boomstructuren" #: /var/www/html/cacti/include/global_arrays.php:792 msgid "Aggregates" msgstr "Geaggregeerde" #: /var/www/html/cacti/include/global_arrays.php:794 #: /var/www/html/cacti/include/global_arrays.php:841 #: /var/www/html/cacti/include/global_arrays.php:856 msgid "Data Collection" msgstr "Data verzameling" #: /var/www/html/cacti/include/global_arrays.php:795 #: /var/www/html/cacti/include/global_arrays.php:842 #: /var/www/html/cacti/pollers.php:508 msgid "Data Collectors" msgstr "Data verzamelaars" #: /var/www/html/cacti/include/global_arrays.php:803 msgid "Aggregate" msgstr "Aggregeer" #: /var/www/html/cacti/include/global_arrays.php:806 #: /var/www/html/cacti/include/global_arrays.php:858 #: /var/www/html/cacti/include/global_settings.php:429 msgid "Automation" msgstr "Automatisering" #: /var/www/html/cacti/include/global_arrays.php:808 msgid "Discovered Devices" msgstr "Ontdekte apparaten" #: /var/www/html/cacti/include/global_arrays.php:809 msgid "Device Rules" msgstr "Apparaatregels" #: /var/www/html/cacti/include/global_arrays.php:814 #: /var/www/html/cacti/include/global_arrays.php:859 #: /var/www/html/cacti/lib/html_filter.php:178 #: /var/www/html/cacti/lib/html_graph.php:253 #: /var/www/html/cacti/lib/html_tree.php:712 msgid "Presets" msgstr "Voorinstellingen" #: /var/www/html/cacti/include/global_arrays.php:815 msgid "Data Profiles" msgstr "Data profielen" #: /var/www/html/cacti/include/global_arrays.php:817 #: /var/www/html/cacti/lib/functions.php:2476 /var/www/html/cacti/vdef.php:667 #: /var/www/html/cacti/vdef.php:681 /var/www/html/cacti/vdef.php:854 msgid "VDEFs" msgstr "VDEF's" #: /var/www/html/cacti/include/global_arrays.php:821 #: /var/www/html/cacti/include/global_arrays.php:860 msgid "Import/Export" msgstr "Importeren/exporteren" #: /var/www/html/cacti/include/global_arrays.php:822 #: /var/www/html/cacti/lib/functions.php:2596 msgid "Import Templates" msgstr "Importeer templates" #: /var/www/html/cacti/include/global_arrays.php:823 #: /var/www/html/cacti/lib/functions.php:2584 #: /var/www/html/cacti/templates_export.php:159 msgid "Export Templates" msgstr "Exporteer templates" #: /var/www/html/cacti/include/global_arrays.php:825 #: /var/www/html/cacti/include/global_arrays.php:844 #: /var/www/html/cacti/include/global_arrays.php:861 #: /var/www/html/cacti/lib/plugins.php:769 msgid "Configuration" msgstr "Configuratie" #: /var/www/html/cacti/include/global_arrays.php:826 #: /var/www/html/cacti/include/global_arrays.php:845 msgid "Settings" msgstr "Instellingen" #: /var/www/html/cacti/include/global_arrays.php:827 #: /var/www/html/cacti/lib/functions.php:2530 #: /var/www/html/cacti/user_admin.php:2213 #: /var/www/html/cacti/user_admin.php:2267 #: /var/www/html/cacti/user_group_admin.php:667 #: /var/www/html/cacti/user_group_admin.php:2539 msgid "Users" msgstr "Gebruikers" #: /var/www/html/cacti/include/global_arrays.php:828 #: /var/www/html/cacti/lib/functions.php:2560 msgid "User Groups" msgstr "Gebruiker groepen" #: /var/www/html/cacti/include/global_arrays.php:829 #: /var/www/html/cacti/lib/functions.php:2548 #: /var/www/html/cacti/user_domains.php:612 #: /var/www/html/cacti/user_domains.php:703 msgid "User Domains" msgstr "Gebruiker domeinen" #: /var/www/html/cacti/include/global_arrays.php:831 #: /var/www/html/cacti/include/global_arrays.php:847 #: /var/www/html/cacti/include/global_arrays.php:862 #: /var/www/html/cacti/lib/functions.php:2404 msgid "Utilities" msgstr "Gereedschappen" #: /var/www/html/cacti/include/global_arrays.php:832 #: /var/www/html/cacti/include/global_arrays.php:848 msgid "System Utilities" msgstr "Systeem gereedschappen" #: /var/www/html/cacti/include/global_arrays.php:833 #: /var/www/html/cacti/include/global_arrays.php:863 #: /var/www/html/cacti/include/global_arrays.php:877 #: /var/www/html/cacti/include/global_arrays.php:961 #: /var/www/html/cacti/links.php:90 /var/www/html/cacti/links.php:301 #: /var/www/html/cacti/links.php:369 /var/www/html/cacti/links.php:482 msgid "External Links" msgstr "Externe links" #: /var/www/html/cacti/include/global_arrays.php:886 msgid "All Lines" msgstr "Alle regels" #: /var/www/html/cacti/include/global_arrays.php:887 #: /var/www/html/cacti/include/global_arrays.php:888 #: /var/www/html/cacti/include/global_arrays.php:889 #: /var/www/html/cacti/include/global_arrays.php:890 #: /var/www/html/cacti/include/global_arrays.php:891 #: /var/www/html/cacti/include/global_arrays.php:892 #: /var/www/html/cacti/include/global_arrays.php:893 #: /var/www/html/cacti/include/global_arrays.php:894 #: /var/www/html/cacti/include/global_arrays.php:895 #: /var/www/html/cacti/include/global_arrays.php:896 #: /var/www/html/cacti/include/global_arrays.php:897 #: /var/www/html/cacti/include/global_arrays.php:898 #, php-format msgid "%d Lines" msgstr "%d Regels" #: /var/www/html/cacti/include/global_arrays.php:953 #: /var/www/html/cacti/lib/html_reports.php:1567 msgid "Never" msgstr "Nooit" #: /var/www/html/cacti/include/global_arrays.php:957 msgid "Console Access" msgstr "Console toegang" #: /var/www/html/cacti/include/global_arrays.php:959 msgid "Realtime Graphs" msgstr "Realtime grafieken" #: /var/www/html/cacti/include/global_arrays.php:960 msgid "Update Profile" msgstr "Profiel bijwerken" #: /var/www/html/cacti/include/global_arrays.php:963 #: /var/www/html/cacti/user_admin.php:2192 msgid "User Management" msgstr "Gebruikersbeheer" #: /var/www/html/cacti/include/global_arrays.php:964 msgid "Settings and Utilities" msgstr "Instellingen en gereedschappen" #: /var/www/html/cacti/include/global_arrays.php:965 msgid "Automation Settings" msgstr "Automatisering instellingen" #: /var/www/html/cacti/include/global_arrays.php:970 msgid "Sites/Devices/Data Sources/Data Collectors" msgstr "Locaties/Apparaten/Data bronnen/Data collectoren" #: /var/www/html/cacti/include/global_arrays.php:973 msgid "Remove Spikes from Graphs" msgstr "Haal pieken uit grafieken" #: /var/www/html/cacti/include/global_arrays.php:976 msgid "Colors/GPrints/CDEFs/VDEFs" msgstr "Kleuren/GPrints/CDEF's/VDEF's" #: /var/www/html/cacti/include/global_arrays.php:982 msgid "Export Data" msgstr "Exporteer data" #: /var/www/html/cacti/include/global_arrays.php:983 msgid "Import Data" msgstr "Importeer data" #: /var/www/html/cacti/include/global_arrays.php:985 #: /var/www/html/cacti/include/global_settings.php:737 msgid "Log Management" msgstr "Logbeheer" #: /var/www/html/cacti/include/global_arrays.php:986 msgid "Log Viewing" msgstr "Log inzien" #: /var/www/html/cacti/include/global_arrays.php:988 msgid "Reports Management" msgstr "Rapportage management" #: /var/www/html/cacti/include/global_arrays.php:989 msgid "Reports Creation" msgstr "Rapportage creëren" #: /var/www/html/cacti/include/global_arrays.php:1087 msgid "CDEF" msgstr "CDEF" #: /var/www/html/cacti/include/global_arrays.php:1088 msgid "CDEF Item" msgstr "CDEF Item" #: /var/www/html/cacti/include/global_arrays.php:1089 msgid "GPRINT Preset" msgstr "GPRINT voorinstelling" #: /var/www/html/cacti/include/global_arrays.php:1092 msgid "Data Input Field" msgstr "Data invoer veld" #: /var/www/html/cacti/include/global_arrays.php:1093 #: /var/www/html/cacti/include/global_form.php:407 #: /var/www/html/cacti/include/global_form.php:1607 msgid "Data Source Profile" msgstr "Data bron profiel" #: /var/www/html/cacti/include/global_arrays.php:1094 msgid "Data Template Item" msgstr "Data template item" #: /var/www/html/cacti/include/global_arrays.php:1096 msgid "Graph Template Item" msgstr "Grafiek template item" #: /var/www/html/cacti/include/global_arrays.php:1097 msgid "Graph Template Input" msgstr "Grafiek template invoer" #: /var/www/html/cacti/include/global_arrays.php:1100 msgid "VDEF" msgstr "VDEF" #: /var/www/html/cacti/include/global_arrays.php:1101 msgid "VDEF Item" msgstr "VDEF item" #: /var/www/html/cacti/include/global_arrays.php:1153 msgid "Last Half Hour" msgstr "Afgelopen half uur" #: /var/www/html/cacti/include/global_arrays.php:1154 msgid "Last Hour" msgstr "Afgelopen uur" #: /var/www/html/cacti/include/global_arrays.php:1155 #: /var/www/html/cacti/include/global_arrays.php:1156 #: /var/www/html/cacti/include/global_arrays.php:1157 #: /var/www/html/cacti/include/global_arrays.php:1158 #, php-format msgid "Last %d Hours" msgstr "Afgelopen %d uren" #: /var/www/html/cacti/include/global_arrays.php:1159 msgid "Last Day" msgstr "Afgelopen dag" #: /var/www/html/cacti/include/global_arrays.php:1160 #: /var/www/html/cacti/include/global_arrays.php:1161 #: /var/www/html/cacti/include/global_arrays.php:1162 #, php-format msgid "Last %d Days" msgstr "Afgelopen %d dagen" #: /var/www/html/cacti/include/global_arrays.php:1163 msgid "Last Week" msgstr "Afgelopen week" #: /var/www/html/cacti/include/global_arrays.php:1164 #, php-format msgid "Last %d Weeks" msgstr "Afgelopen %d weken" #: /var/www/html/cacti/include/global_arrays.php:1165 msgid "Last Month" msgstr "Afgelopen maand" #: /var/www/html/cacti/include/global_arrays.php:1166 #: /var/www/html/cacti/include/global_arrays.php:1167 #: /var/www/html/cacti/include/global_arrays.php:1168 #: /var/www/html/cacti/include/global_arrays.php:1169 #, php-format msgid "Last %d Months" msgstr "Afgelopen %d maanden" #: /var/www/html/cacti/include/global_arrays.php:1170 msgid "Last Year" msgstr "Afgelopen jaar" #: /var/www/html/cacti/include/global_arrays.php:1171 #, php-format msgid "Last %d Years" msgstr "Afgelopen %d jaren" #: /var/www/html/cacti/include/global_arrays.php:1172 msgid "Day Shift" msgstr "Werkdag" #: /var/www/html/cacti/include/global_arrays.php:1173 msgid "This Day" msgstr "Vandaag" #: /var/www/html/cacti/include/global_arrays.php:1174 msgid "This Week" msgstr "Deze week" #: /var/www/html/cacti/include/global_arrays.php:1175 msgid "This Month" msgstr "Deze maand" #: /var/www/html/cacti/include/global_arrays.php:1176 msgid "This Year" msgstr "Dit jaar" #: /var/www/html/cacti/include/global_arrays.php:1177 msgid "Previous Day" msgstr "Vorige dag" #: /var/www/html/cacti/include/global_arrays.php:1178 msgid "Previous Week" msgstr "Vorige week" #: /var/www/html/cacti/include/global_arrays.php:1179 msgid "Previous Month" msgstr "Vorige maand" #: /var/www/html/cacti/include/global_arrays.php:1180 msgid "Previous Year" msgstr "Vorig jaar" #: /var/www/html/cacti/include/global_arrays.php:1184 #, php-format msgid "%d Min" msgstr "%d Min" #: /var/www/html/cacti/include/global_arrays.php:1216 msgid "Month Number, Day, Year" msgstr "Maand nummer, dag, jaar" #: /var/www/html/cacti/include/global_arrays.php:1217 msgid "Month Name, Day, Year" msgstr "Maand naam, dag, jaar" #: /var/www/html/cacti/include/global_arrays.php:1218 msgid "Day, Month Number, Year" msgstr "Dag, maand nummer, jaar" #: /var/www/html/cacti/include/global_arrays.php:1219 msgid "Day, Month Name, Year" msgstr "Dag, maand naam, jaar" #: /var/www/html/cacti/include/global_arrays.php:1220 msgid "Year, Month Number, Day" msgstr "Jaar, maand nummer, dag" #: /var/www/html/cacti/include/global_arrays.php:1221 msgid "Year, Month Name, Day" msgstr "Jaar, maand naam, dag" #: /var/www/html/cacti/include/global_arrays.php:1231 msgid "After Boost" msgstr "After Boost" #: /var/www/html/cacti/include/global_arrays.php:1241 #: /var/www/html/cacti/include/global_arrays.php:1242 #: /var/www/html/cacti/include/global_arrays.php:1243 #: /var/www/html/cacti/include/global_arrays.php:1244 #: /var/www/html/cacti/include/global_arrays.php:1245 #: /var/www/html/cacti/include/global_arrays.php:1300 #: /var/www/html/cacti/include/global_arrays.php:1301 #: /var/www/html/cacti/include/global_arrays.php:1302 #: /var/www/html/cacti/include/global_arrays.php:1303 #: /var/www/html/cacti/include/global_arrays.php:1304 #, php-format msgid "%d MBytes" msgstr "%d MBytes" #: /var/www/html/cacti/include/global_arrays.php:1246 #: /var/www/html/cacti/include/global_arrays.php:1305 msgid "1 GByte" msgstr "1 GByte" #: /var/www/html/cacti/include/global_arrays.php:1247 #: /var/www/html/cacti/include/global_arrays.php:1306 #, php-format msgid "%s GBytes" msgstr "%s GBytes" #: /var/www/html/cacti/include/global_arrays.php:1248 #: /var/www/html/cacti/include/global_arrays.php:1249 #: /var/www/html/cacti/include/global_arrays.php:1307 #: /var/www/html/cacti/include/global_arrays.php:1308 #, php-format msgid "%d GBytes" msgstr "%d GBytes" #: /var/www/html/cacti/include/global_arrays.php:1262 msgid "2,000 Data Source Items" msgstr "2000 Data bron items" #: /var/www/html/cacti/include/global_arrays.php:1263 msgid "5,000 Data Source Items" msgstr "5000 Data bron items" #: /var/www/html/cacti/include/global_arrays.php:1264 msgid "10,000 Data Source Items" msgstr "10000 Data bron items" #: /var/www/html/cacti/include/global_arrays.php:1265 msgid "15,000 Data Source Items" msgstr "15000 Data bron items" #: /var/www/html/cacti/include/global_arrays.php:1266 msgid "25,000 Data Source Items" msgstr "25000 Data bron items" #: /var/www/html/cacti/include/global_arrays.php:1267 msgid "50,000 Data Source Items (Default)" msgstr "50000 Data bron items (Standaard)" #: /var/www/html/cacti/include/global_arrays.php:1268 msgid "100,000 Data Source Items" msgstr "100000 Data bron items" #: /var/www/html/cacti/include/global_arrays.php:1269 msgid "200,000 Data Source Items" msgstr "200000 Data bron items" #: /var/www/html/cacti/include/global_arrays.php:1270 msgid "400,000 Data Source Items" msgstr "400000 Data bron items" #: /var/www/html/cacti/include/global_arrays.php:1287 msgid "2 Hours" msgstr "2 uur" #: /var/www/html/cacti/include/global_arrays.php:1288 msgid "4 Hours" msgstr "4 uur" #: /var/www/html/cacti/include/global_arrays.php:1289 msgid "6 Hours" msgstr "6 uur" #: /var/www/html/cacti/include/global_arrays.php:1296 #, php-format msgid "%s Hours" msgstr "%s Uren" #: /var/www/html/cacti/include/global_arrays.php:1315 #, php-format msgid "%s Minutes" msgstr "%s Minuten" #: /var/www/html/cacti/include/global_arrays.php:1335 msgid "1 Megabyte" msgstr "1 Megabyte" #: /var/www/html/cacti/include/global_arrays.php:1336 #: /var/www/html/cacti/include/global_arrays.php:1337 #: /var/www/html/cacti/include/global_arrays.php:1338 #: /var/www/html/cacti/include/global_arrays.php:1339 #: /var/www/html/cacti/include/global_arrays.php:1340 #: /var/www/html/cacti/include/global_arrays.php:1341 #, php-format msgid "%d Megabytes" msgstr "%d Megabytes" #: /var/www/html/cacti/include/global_arrays.php:1345 msgid "Send Now" msgstr "Nu versturen" #: /var/www/html/cacti/include/global_arrays.php:1353 msgid "Take Ownership" msgstr "Word eigenaar" #: /var/www/html/cacti/include/global_arrays.php:1357 msgid "Inline PNG Image" msgstr "Inline PNG afbeelding" #: /var/www/html/cacti/include/global_arrays.php:1362 msgid "Inline JPEG Image" msgstr "Inline JPEG afbeelding" #: /var/www/html/cacti/include/global_arrays.php:1363 msgid "Inline GIF Image" msgstr "Inline GIF afbeelding" #: /var/www/html/cacti/include/global_arrays.php:1366 msgid "Attached PNG Image" msgstr "Bijgevoegd PNG afbeelding" #: /var/www/html/cacti/include/global_arrays.php:1369 msgid "Attached JPEG Image" msgstr "Bijgevoegd JPEG afbeelding" #: /var/www/html/cacti/include/global_arrays.php:1370 msgid "Attached GIF Image" msgstr "Bijgevoegd GIF afbeelding" #: /var/www/html/cacti/include/global_arrays.php:1374 msgid "Inline PNG Image, LN Style" msgstr "Inline PNG afbeelding, LN stijl" #: /var/www/html/cacti/include/global_arrays.php:1376 msgid "Inline JPEG Image, LN Style" msgstr "Inline JPG afbeelding, LN stijl" #: /var/www/html/cacti/include/global_arrays.php:1377 msgid "Inline GIF Image, LN Style" msgstr "Inline GIF afbeelding, LN stijl" #: /var/www/html/cacti/include/global_arrays.php:1382 msgid "Text" msgstr "Tekst" #: /var/www/html/cacti/include/global_arrays.php:1383 #: /var/www/html/cacti/include/global_form.php:2215 msgid "Tree" msgstr "Menu" #: /var/www/html/cacti/include/global_arrays.php:1385 msgid "Horizontal Rule" msgstr "Horizontale lijn" #: /var/www/html/cacti/include/global_arrays.php:1389 msgid "left" msgstr "links" #: /var/www/html/cacti/include/global_arrays.php:1390 msgid "center" msgstr "midden" #: /var/www/html/cacti/include/global_arrays.php:1391 msgid "right" msgstr "rechts" #: /var/www/html/cacti/include/global_arrays.php:1395 msgid "Minute(s)" msgstr "Minu(u)t(en)" #: /var/www/html/cacti/include/global_arrays.php:1396 msgid "Hour(s)" msgstr "U(u)r(en)" #: /var/www/html/cacti/include/global_arrays.php:1397 msgid "Day(s)" msgstr "Dag(en)" #: /var/www/html/cacti/include/global_arrays.php:1398 msgid "Week(s)" msgstr "We(e)k(en)" #: /var/www/html/cacti/include/global_arrays.php:1399 msgid "Month(s), Day of Month" msgstr "Maand(en), dag van de maand" #: /var/www/html/cacti/include/global_arrays.php:1400 msgid "Month(s), Day of Week" msgstr "Maand(en), dag van de week" #: /var/www/html/cacti/include/global_arrays.php:1401 msgid "Year(s)" msgstr "Ja(a)r(en)" #: /var/www/html/cacti/include/global_arrays.php:1405 msgid "Keep Graph Types" msgstr "Behoud grafiektypen" #: /var/www/html/cacti/include/global_arrays.php:1406 msgid "Keep Type and STACK" msgstr "Behoud type en STACK" #: /var/www/html/cacti/include/global_arrays.php:1407 msgid "Convert to AREA/STACK Graph" msgstr "Converteer naar AREA/STACK grafiek" #: /var/www/html/cacti/include/global_arrays.php:1408 msgid "Convert to LINE1 Graph" msgstr "Converteer naar LINE1 grafiek" #: /var/www/html/cacti/include/global_arrays.php:1409 msgid "Convert to LINE2 Graph" msgstr "Converteer naar LINE2 grafiek" #: /var/www/html/cacti/include/global_arrays.php:1410 msgid "Convert to LINE3 Graph" msgstr "Converteer naar LINE3 grafiek" #: /var/www/html/cacti/include/global_arrays.php:1414 msgid "No Totals" msgstr "Geen totalen" #: /var/www/html/cacti/include/global_arrays.php:1415 msgid "Print all Legend Items" msgstr "Toon alle legenda items" #: /var/www/html/cacti/include/global_arrays.php:1416 msgid "Print totaling Legend Items Only" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1420 msgid "Total Similar Data Sources" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1421 msgid "Total All Data Sources" msgstr "" #: /var/www/html/cacti/include/global_arrays.php:1425 msgid "No Reordering" msgstr "Niet herstructureren" #: /var/www/html/cacti/include/global_arrays.php:1426 msgid "Data Source, Graph" msgstr "Data bron, grafiek" #: /var/www/html/cacti/include/global_arrays.php:1427 msgid "Graph, Data Source" msgstr "Grafiek, data bron" #: /var/www/html/cacti/include/global_arrays.php:1434 msgid "contains" msgstr "bevat" #: /var/www/html/cacti/include/global_arrays.php:1435 msgid "does not contain" msgstr "bevat niet" #: /var/www/html/cacti/include/global_arrays.php:1436 msgid "begins with" msgstr "begint met" #: /var/www/html/cacti/include/global_arrays.php:1437 msgid "does not begin with" msgstr "begint niet met" #: /var/www/html/cacti/include/global_arrays.php:1438 msgid "ends with" msgstr "eindigt met" #: /var/www/html/cacti/include/global_arrays.php:1439 msgid "does not end with" msgstr "eindigt niet met" #: /var/www/html/cacti/include/global_arrays.php:1440 msgid "matches" msgstr "komt overeen" #: /var/www/html/cacti/include/global_arrays.php:1441 msgid "does not match with" msgstr "komt niet overeen" #: /var/www/html/cacti/include/global_arrays.php:1442 msgid "is less than" msgstr "is kleiner dan" #: /var/www/html/cacti/include/global_arrays.php:1443 msgid "is less than or equal" msgstr "is kleiner dan of gelijk aan" #: /var/www/html/cacti/include/global_arrays.php:1444 msgid "is greater than" msgstr "is groter dan" #: /var/www/html/cacti/include/global_arrays.php:1445 msgid "is greater than or equal" msgstr "is groter dan of gelijk aan" #: /var/www/html/cacti/include/global_arrays.php:1446 msgid "is unknown" msgstr "is onbekend" #: /var/www/html/cacti/include/global_arrays.php:1447 msgid "is not unknown" msgstr "is niet onbekend" #: /var/www/html/cacti/include/global_arrays.php:1448 msgid "is empty" msgstr "is leeg" #: /var/www/html/cacti/include/global_arrays.php:1449 msgid "is not empty" msgstr "is niet leeg" #: /var/www/html/cacti/include/global_arrays.php:1450 msgid "matches regular expression" msgstr "komt overeen met reguliere expressie" #: /var/www/html/cacti/include/global_arrays.php:1451 msgid "does not match regular expression" msgstr "komt niet overeen met reguliere expressie" #: /var/www/html/cacti/include/global_arrays.php:1553 msgid "Fixed String" msgstr "Vaste waarde" #: /var/www/html/cacti/include/global_arrays.php:1558 msgid "Every 1 Hour" msgstr "Ieder uur" #: /var/www/html/cacti/include/global_arrays.php:1564 msgid "Every Day" msgstr "Iedere dag" #: /var/www/html/cacti/include/global_arrays.php:1565 msgid "Every Week" msgstr "Iedere week" #: /var/www/html/cacti/include/global_arrays.php:1566 #: /var/www/html/cacti/include/global_arrays.php:1567 #, php-format msgid "Every %d Weeks" msgstr "Iedere %d weken" #: /var/www/html/cacti/include/global_arrays.php:1598 msgctxt "A short textual representation of a month, three letters" msgid "Jan" msgstr "Jan" #: /var/www/html/cacti/include/global_arrays.php:1599 msgctxt "A short textual representation of a month, three letters" msgid "Feb" msgstr "Feb" #: /var/www/html/cacti/include/global_arrays.php:1600 msgctxt "A short textual representation of a month, three letters" msgid "Mar" msgstr "Maa" #: /var/www/html/cacti/include/global_arrays.php:1601 msgctxt "A short textual representation of a month, three letters" msgid "Apr" msgstr "Apr" #: /var/www/html/cacti/include/global_arrays.php:1602 msgctxt "A short textual representation of a month, three letters" msgid "May" msgstr "Mei" #: /var/www/html/cacti/include/global_arrays.php:1603 msgctxt "A short textual representation of a month, three letters" msgid "Jun" msgstr "Jun" #: /var/www/html/cacti/include/global_arrays.php:1604 msgctxt "A short textual representation of a month, three letters" msgid "Jul" msgstr "Jul" #: /var/www/html/cacti/include/global_arrays.php:1605 msgctxt "A short textual representation of a month, three letters" msgid "Aug" msgstr "Aug" #: /var/www/html/cacti/include/global_arrays.php:1606 msgctxt "A short textual representation of a month, three letters" msgid "Sep" msgstr "Sep" #: /var/www/html/cacti/include/global_arrays.php:1607 msgctxt "A short textual representation of a month, three letters" msgid "Oct" msgstr "Okt" #: /var/www/html/cacti/include/global_arrays.php:1608 msgctxt "A short textual representation of a month, three letters" msgid "Nov" msgstr "Nov" #: /var/www/html/cacti/include/global_arrays.php:1609 msgctxt "A short textual representation of a month, three letters" msgid "Dec" msgstr "Dec" #: /var/www/html/cacti/include/global_arrays.php:1623 msgctxt "A textual representation of a day, three letters" msgid "Sun" msgstr "Zo" #: /var/www/html/cacti/include/global_arrays.php:1624 msgctxt "A textual representation of a day, three letters" msgid "Mon" msgstr "Ma" #: /var/www/html/cacti/include/global_arrays.php:1625 msgctxt "A textual representation of a day, three letters" msgid "Tue" msgstr "Di" #: /var/www/html/cacti/include/global_arrays.php:1626 msgctxt "A textual representation of a day, three letters" msgid "Wed" msgstr "Wo" #: /var/www/html/cacti/include/global_arrays.php:1627 msgctxt "A textual representation of a day, three letters" msgid "Thu" msgstr "Do" #: /var/www/html/cacti/include/global_arrays.php:1628 msgctxt "A textual representation of a day, three letters" msgid "Fri" msgstr "Vr" #: /var/www/html/cacti/include/global_arrays.php:1629 msgctxt "A textual representation of a day, three letters" msgid "Sat" msgstr "Za" #: /var/www/html/cacti/include/global_form.php:36 msgid "A useful name for this Data Storage and Polling Profile." msgstr "Een handige naam voor deze data opslag en polling profiel." #: /var/www/html/cacti/include/global_form.php:40 msgid "New Profile" msgstr "Nieuw profiel" #: /var/www/html/cacti/include/global_form.php:44 msgid "Polling Interval" msgstr "Polling interval" #: /var/www/html/cacti/include/global_form.php:45 msgid "The frequency that data will be collected from the Data Source?" msgstr "" #: /var/www/html/cacti/include/global_form.php:53 msgid "" "How long can data be missing before RRDtool records unknown data. Increase " "this value if your Data Source is unstable and you wish to carry forward old " "data rather than show gaps in your graphs. This value is multiplied by the " "X-Files Factor to determine the actual amount of time." msgstr "" #: /var/www/html/cacti/include/global_form.php:60 #: /var/www/html/cacti/lib/rrd.php:2744 msgid "X-Files Factor" msgstr "" #: /var/www/html/cacti/include/global_form.php:61 msgid "The amount of unknown data that can still be regarded as known." msgstr "" #: /var/www/html/cacti/include/global_form.php:69 msgid "Consolidation Functions" msgstr "" #: /var/www/html/cacti/include/global_form.php:70 #: /var/www/html/cacti/include/global_form.php:102 msgid "How data is to be entered in RRAs." msgstr "Hoe data wordt ingevoerd in RRA’s." #: /var/www/html/cacti/include/global_form.php:77 msgid "Is this the default storage profile?" msgstr "" #: /var/www/html/cacti/include/global_form.php:83 msgid "RRDfile Size (in Bytes)" msgstr "RRD bestand grootte (in bytes)" #: /var/www/html/cacti/include/global_form.php:84 msgid "" "Based upon the number of Rows in all RRAs and the number of Consolidation " "Functions selected, the size of this entire in the RRDfile." msgstr "" #: /var/www/html/cacti/include/global_form.php:106 msgid "New Profile RRA" msgstr "Nieuw RRA profiel" #: /var/www/html/cacti/include/global_form.php:110 msgid "Aggregation Level" msgstr "Aggregatie niveau" #: /var/www/html/cacti/include/global_form.php:111 msgid "" "The number of samples required prior to filling a row in the RRA " "specification. The first RRA should always have a value of 1." msgstr "" #: /var/www/html/cacti/include/global_form.php:119 msgid "How many generations data is kept in the RRA." msgstr "" #: /var/www/html/cacti/include/global_form.php:127 msgid "Default Timespan" msgstr "Standaard tijdperiode" #: /var/www/html/cacti/include/global_form.php:128 msgid "" "When viewing a Graph based upon the RRA in question, the default Timespan to " "show for that Graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:135 msgid "" "Based upon the Aggregation Level, the Rows, and the Polling Interval the " "amount of data that will be retained in the RRA" msgstr "" #: /var/www/html/cacti/include/global_form.php:140 msgid "RRA Size (in Bytes)" msgstr "RRA grootte (in bytes)" #: /var/www/html/cacti/include/global_form.php:141 msgid "" "Based upon the number of Rows and the number of Consolidation Functions " "selected, the size of this RRA in the RRDfile." msgstr "" #: /var/www/html/cacti/include/global_form.php:159 msgid "A useful name for this CDEF." msgstr "Een handige naam voor deze CDEF." #: /var/www/html/cacti/include/global_form.php:179 msgid "The name of this Color." msgstr "De naam van deze kleur." #: /var/www/html/cacti/include/global_form.php:186 msgid "Hex Value" msgstr "Hex waarde" #: /var/www/html/cacti/include/global_form.php:187 msgid "The hex value for this color; valid range: 000000-FFFFFF." msgstr "De hex waarde voor deze kleur; geldige reeks: 000000-FFFFFF." #: /var/www/html/cacti/include/global_form.php:195 msgid "Any named color should be read only." msgstr "" #: /var/www/html/cacti/include/global_form.php:220 #: /var/www/html/cacti/include/global_form.php:280 msgid "Enter a meaningful name for this data input method." msgstr "Voer een handige naam in voor deze data invoer methode." #: /var/www/html/cacti/include/global_form.php:227 msgid "Input Type" msgstr "Invoer type" #: /var/www/html/cacti/include/global_form.php:228 msgid "" "Choose the method you wish to use to collect data for this Data Input method." msgstr "" #: /var/www/html/cacti/include/global_form.php:234 msgid "Input String" msgstr "Invoer waarde" #: /var/www/html/cacti/include/global_form.php:235 msgid "" "The data that is sent to the script, which includes the complete path to the " "script and input sources in <> brackets." msgstr "" #: /var/www/html/cacti/include/global_form.php:256 #: /var/www/html/cacti/include/global_form.php:267 #, php-format msgid "Field [%s]" msgstr "Veld [%s]" #: /var/www/html/cacti/include/global_form.php:257 #, php-format msgid "Choose the associated field from the %s field." msgstr "" #: /var/www/html/cacti/include/global_form.php:268 #, php-format msgid "" "Enter a name for this %s field. Note: If using name value pairs in your " "script, for example: NAME:VALUE, it is important that the name match your " "output field name identically to the script output name or names." msgstr "" "Voer een naam in voor dit %s veld. Let op: Als er gebruik wordt gemaakt van " "name-waarde combinaties in het script, bijvoorbeeld: NAAM:WAARDE, dan is het " "belangrijk dat de naam exact overeenkomt met het uitvoer veld van het script." #: /var/www/html/cacti/include/global_form.php:287 msgid "Update RRDfile" msgstr "RRD bestand bijwerken" #: /var/www/html/cacti/include/global_form.php:288 msgid "Whether data from this output field is to be entered into the RRDfile." msgstr "" #: /var/www/html/cacti/include/global_form.php:295 msgid "Regular Expression Match" msgstr "Reguliere expressie overeenkomst" #: /var/www/html/cacti/include/global_form.php:296 msgid "" "If you want to require a certain regular expression to be matched against " "input data, enter it here (preg_match format)." msgstr "" #: /var/www/html/cacti/include/global_form.php:303 msgid "Allow Empty Input" msgstr "Sta lege invoer toe" #: /var/www/html/cacti/include/global_form.php:304 msgid "Check here if you want to allow NULL input in this field from the user." msgstr "" #: /var/www/html/cacti/include/global_form.php:311 msgid "Special Type Code" msgstr "" #: /var/www/html/cacti/include/global_form.php:312 #, php-format msgid "" "If this field should be treated specially by host templates, indicate so " "here. Valid keywords for this field are %s" msgstr "" #: /var/www/html/cacti/include/global_form.php:344 msgid "The name given to this data template." msgstr "De naam van dit data template." #: /var/www/html/cacti/include/global_form.php:385 msgid "" "Choose a name for this data source. It can include replacement variables " "such as |host_description| or |query_fieldName|. For a complete list of " "supported replacement tags, please see the Cacti documentation." msgstr "" "Kies een naam voor deze data bron. Het kan variabelen bevatten zoals |" "host_description| of | query_fieldName|. Voor een complete lijst van " "ondersteunde variabelen, bekijk alstublieft de Cacti documentatie." #: /var/www/html/cacti/include/global_form.php:389 msgid "Data Source Path" msgstr "Data bron pad" #: /var/www/html/cacti/include/global_form.php:394 msgid "The full path to the RRDfile." msgstr "Het volledige pad naar het RRD bestand." #: /var/www/html/cacti/include/global_form.php:403 msgid "The script/source used to gather data for this data source." msgstr "" #: /var/www/html/cacti/include/global_form.php:409 #: /var/www/html/cacti/include/global_form.php:1609 msgid "" "Select the Data Source Profile. The Data Source Profile controls polling " "interval, the data aggregation, and retention policy for the resulting Data " "Sources." msgstr "" #: /var/www/html/cacti/include/global_form.php:420 msgid "The amount of time in seconds between expected updates." msgstr "" #: /var/www/html/cacti/include/global_form.php:424 msgid "Data Source Active" msgstr "Data bron actief" #: /var/www/html/cacti/include/global_form.php:427 msgid "Whether Cacti should gather data for this data source or not." msgstr "Moet Cacti wel of niet data verzamelen voor deze data bron." #: /var/www/html/cacti/include/global_form.php:435 msgid "Internal Data Source Name" msgstr "Interne data bron naam" #: /var/www/html/cacti/include/global_form.php:440 msgid "" "Choose unique name to represent this piece of data inside of the RRDfile." msgstr "" #: /var/www/html/cacti/include/global_form.php:443 msgid "Minimum Value (\"U\" for No Minimum)" msgstr "Minimale waarde (\"U\" voor geen minimum)" #: /var/www/html/cacti/include/global_form.php:448 msgid "The minimum value of data that is allowed to be collected." msgstr "De minimale toegestane waarde van de verzamelde data." #: /var/www/html/cacti/include/global_form.php:451 msgid "Maximum Value (\"U\" for No Maximum)" msgstr "Maximale waarde (\"U\" voor geen maximum)" #: /var/www/html/cacti/include/global_form.php:456 msgid "The maximum value of data that is allowed to be collected." msgstr "De maximale toegestane waarde van de verzamelde data." #: /var/www/html/cacti/include/global_form.php:459 msgid "Data Source Type" msgstr "Data bron type" #: /var/www/html/cacti/include/global_form.php:463 msgid "How data is represented in the RRA." msgstr "Hoe data wordt vertegenwoordigd in de RRA." #: /var/www/html/cacti/include/global_form.php:471 msgid "" "The maximum amount of time that can pass before data is entered as " "'unknown'. (Usually 2x300=600)" msgstr "" #: /var/www/html/cacti/include/global_form.php:477 #: /var/www/html/cacti/lib/html_utility.php:235 msgid "Not Selected" msgstr "Niet geselecteerd" #: /var/www/html/cacti/include/global_form.php:478 msgid "" "When data is gathered, the data for this field will be put into this data " "source." msgstr "" #: /var/www/html/cacti/include/global_form.php:487 msgid "" "Enter a name for this GPRINT preset, make sure it is something you recognize." msgstr "" "Voer een naam in voor deze GPRINT, zorg ervoor dat het een duidelijke naam " "is." #: /var/www/html/cacti/include/global_form.php:494 msgid "GPRINT Text" msgstr "GPRINT tekst" #: /var/www/html/cacti/include/global_form.php:495 msgid "Enter the custom GPRINT string here." msgstr "Voer de aangepaste GPRINT waarde in." #: /var/www/html/cacti/include/global_form.php:513 msgid "Common Options" msgstr "Algemene opties" #: /var/www/html/cacti/include/global_form.php:518 msgid "Title (--title)" msgstr "Titel (--title)" #: /var/www/html/cacti/include/global_form.php:522 msgid "" "The name that is printed on the graph. It can include replacement variables " "such as |host_description| or |query_fieldName|. For a complete list of " "supported replacement tags, please see the Cacti documentation." msgstr "" "De naam die wordt getoond in de grafiek. Het kan variabelen bevatten zoals |" "host_description| of | query_fieldName|. Voor een complete lijst van " "ondersteunde variabelen, bekijk alstublieft de Cacti documentatie." #: /var/www/html/cacti/include/global_form.php:526 msgid "Vertical Label (--vertical-label)" msgstr "Verticaal label (—vertical-label)" #: /var/www/html/cacti/include/global_form.php:530 msgid "The label vertically printed to the left of the graph." msgstr "Het label verticaal geprint aan de linkerkant van de grafiek." #: /var/www/html/cacti/include/global_form.php:534 msgid "Image Format (--imgformat)" msgstr "" #: /var/www/html/cacti/include/global_form.php:538 msgid "" "The type of graph that is generated; PNG, GIF or SVG. The selection of " "graph image type is very RRDtool dependent." msgstr "" #: /var/www/html/cacti/include/global_form.php:541 msgid "Height (--height)" msgstr "Hoogte (--height)" #: /var/www/html/cacti/include/global_form.php:545 msgid "" "The height (in pixels) of the graph area within the graph. This area does " "not include the legend, axis legends, or title." msgstr "" "De hoogte (in pixels) van het grafiek deel in de grafiek. Dit gebied omvat " "niet de legenda, de as legenda of de titel." #: /var/www/html/cacti/include/global_form.php:549 msgid "Width (--width)" msgstr "Breedte (--width)" #: /var/www/html/cacti/include/global_form.php:553 msgid "" "The width (in pixels) of the graph area within the graph. This area does not " "include the legend, axis legends, or title." msgstr "" "De breedte (in pixels) van het grafiek deel in de grafiek. Dit gebied omvat " "niet de legenda, de as legenda of de titel." #: /var/www/html/cacti/include/global_form.php:557 msgid "Base Value (--base)" msgstr "Basis waarde (--base)" #: /var/www/html/cacti/include/global_form.php:561 msgid "Should be set to 1024 for memory and 1000 for traffic measurements." msgstr "" "Zou op 1024 voor geheugen- en 1000 voor verkeermetingen moeten worden " "ingesteld." #: /var/www/html/cacti/include/global_form.php:565 msgid "Slope Mode (--slope-mode)" msgstr "" #: /var/www/html/cacti/include/global_form.php:568 msgid "" "Using Slope Mode evens out the shape of the graphs at the expense of some on " "screen resolution." msgstr "" #: /var/www/html/cacti/include/global_form.php:571 msgid "Scaling Options" msgstr "Schaalopties" #: /var/www/html/cacti/include/global_form.php:576 msgid "Auto Scale" msgstr "Automatisch schalen" #: /var/www/html/cacti/include/global_form.php:579 msgid "" "Auto scale the y-axis instead of defining an upper and lower limit. Note: if " "this is check both the Upper and Lower limit will be ignored." msgstr "" #: /var/www/html/cacti/include/global_form.php:583 msgid "Auto Scale Options" msgstr "Opties voor automatisch schalen" #: /var/www/html/cacti/include/global_form.php:586 msgid "" "Use
    --alt-autoscale to scale to the absolute minimum and maximum
    --" "alt-autoscale-max to scale to the maximum value, using a given lower limit " "
    --alt-autoscale-min to scale to the minimum value, using a given upper " "limit
    --alt-autoscale (with limits) to scale using both lower and upper " "limits (RRDtool default)
    " msgstr "" #: /var/www/html/cacti/include/global_form.php:590 msgid "Use --alt-autoscale (ignoring given limits)" msgstr "" #: /var/www/html/cacti/include/global_form.php:594 msgid "Use --alt-autoscale-max (accepting a lower limit)" msgstr "" #: /var/www/html/cacti/include/global_form.php:598 msgid "Use --alt-autoscale-min (accepting an upper limit)" msgstr "" #: /var/www/html/cacti/include/global_form.php:602 msgid "Use --alt-autoscale (accepting both limits, RRDtool default)" msgstr "" #: /var/www/html/cacti/include/global_form.php:607 msgid "Logarithmic Scaling (--logarithmic)" msgstr "" #: /var/www/html/cacti/include/global_form.php:611 msgid "Use Logarithmic y-axis scaling" msgstr "" #: /var/www/html/cacti/include/global_form.php:614 msgid "SI Units for Logarithmic Scaling (--units=si)" msgstr "" #: /var/www/html/cacti/include/global_form.php:617 msgid "" "Use SI Units for Logarithmic Scaling instead of using exponential notation." "
    Note: Linear graphs use SI notation by default." msgstr "" #: /var/www/html/cacti/include/global_form.php:620 msgid "Rigid Boundaries Mode (--rigid)" msgstr "" #: /var/www/html/cacti/include/global_form.php:623 msgid "" "Do not expand the lower and upper limit if the graph contains a value " "outside the valid range." msgstr "" #: /var/www/html/cacti/include/global_form.php:626 msgid "Upper Limit (--upper-limit)" msgstr "Bovenwaarde (--upper-limit)" #: /var/www/html/cacti/include/global_form.php:630 msgid "The maximum vertical value for the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:634 msgid "Lower Limit (--lower-limit)" msgstr "Onderwaarde (--lower-limit)" #: /var/www/html/cacti/include/global_form.php:638 msgid "The minimum vertical value for the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:642 msgid "Grid Options" msgstr "Rasteropties" #: /var/www/html/cacti/include/global_form.php:647 msgid "Unit Grid Value (--unit/--y-grid)" msgstr "" #: /var/www/html/cacti/include/global_form.php:651 msgid "" "Sets the exponent value on the Y-axis for numbers. Note: This option is " "deprecated and replaced by the --y-grid option. In this option, Y-axis grid " "lines appear at each grid step interval. Labels are placed every label " "factor lines." msgstr "" #: /var/www/html/cacti/include/global_form.php:655 msgid "Unit Exponent Value (--units-exponent)" msgstr "" #: /var/www/html/cacti/include/global_form.php:659 msgid "" "What unit Cacti should use on the Y-axis. Use 3 to display everything in \"k" "\" or -6 to display everything in \"u\" (micro)." msgstr "" #: /var/www/html/cacti/include/global_form.php:663 msgid "Unit Length (--units-length <length>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:668 msgid "" "How many digits should RRDtool assume the y-axis labels to be? You may have " "to use this option to make enough space once you start fiddling with the y-" "axis labeling." msgstr "" #: /var/www/html/cacti/include/global_form.php:671 msgid "No Gridfit (--no-gridfit)" msgstr "" #: /var/www/html/cacti/include/global_form.php:674 msgid "" "In order to avoid anti-aliasing blurring effects RRDtool snaps points to " "device resolution pixels, this results in a crisper appearance. If this is " "not to your liking, you can use this switch to turn this behavior off." "
    Note: Gridfitting is turned off for PDF, EPS, SVG " "output by default." msgstr "" #: /var/www/html/cacti/include/global_form.php:677 msgid "Alternative Y Grid (--alt-y-grid)" msgstr "" #: /var/www/html/cacti/include/global_form.php:680 msgid "" "The algorithm ensures that you always have a grid, that there are enough but " "not too many grid lines, and that the grid is metric. This parameter will " "also ensure that you get enough decimals displayed even if your graph goes " "from 69.998 to 70.001.
    Note: This parameter may " "interfere with --alt-autoscale options." msgstr "" #: /var/www/html/cacti/include/global_form.php:683 msgid "Axis Options" msgstr "As opties" #: /var/www/html/cacti/include/global_form.php:688 msgid "Right Axis (--right-axis <scale:shift>)" msgstr "Rechter as (--right-axis <scale:shift>)" #: /var/www/html/cacti/include/global_form.php:693 msgid "" "A second axis will be drawn to the right of the graph. It is tied to the " "left axis via the scale and shift parameters." msgstr "" "Een tweede as zal worden getekend aan de rechterkant van de grafiek. Deze is " "gekoppeld aan de linker met dezelfde schaal en verschuiving parameters." #: /var/www/html/cacti/include/global_form.php:696 msgid "Right Axis Label (--right-axis-label <string>)" msgstr "Label rechter as (--right-axis-label <string>)" #: /var/www/html/cacti/include/global_form.php:701 msgid "The label for the right axis." msgstr "Het label voor de rechter as." #: /var/www/html/cacti/include/global_form.php:704 msgid "Right Axis Format (--right-axis-format <format>)" msgstr "Formaat rechter as (--right-axis-format <format>)" #: /var/www/html/cacti/include/global_form.php:709 #, php-format msgid "" "By default, the format of the axis labels gets determined automatically. If " "you want to do this yourself, use this option with the same %lf arguments " "you know from the PRINT and GPRINT commands." msgstr "" #: /var/www/html/cacti/include/global_form.php:712 msgid "Right Axis Formatter (--right-axis-formatter <formatname>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:717 msgid "" "When you setup the right axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where data is treated as numeric, " "\"timestamp\" where values are interpreted as UNIX timestamps (number of " "seconds since January 1970) and expressed using strftime format (default is " "\"%Y-%m-%d %H:%M:%S\"). See also --units-length and --right-axis-format. " "Finally \"duration\" where values are interpreted as duration in " "milliseconds. Formatting follows the rules of valstrfduration qualified " "PRINT/GPRINT." msgstr "" #: /var/www/html/cacti/include/global_form.php:720 msgid "Left Axis Formatter (--left-axis-formatter <formatname>)" msgstr "" #: /var/www/html/cacti/include/global_form.php:725 msgid "" "When you setup the left axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where data is treated as numeric, " "\"timestamp\" where values are interpreted as UNIX timestamps (number of " "seconds since January 1970) and expressed using strftime format (default is " "\"%Y-%m-%d %H:%M:%S\"). See also --units-length. Finally \"duration\" " "where values are interpreted as duration in milliseconds. Formatting " "follows the rules of valstrfduration qualified PRINT/GPRINT." msgstr "" #: /var/www/html/cacti/include/global_form.php:728 msgid "Legend Options" msgstr "Legenda opties" #: /var/www/html/cacti/include/global_form.php:733 msgid "Auto Padding" msgstr "Automatisch uitvullen" #: /var/www/html/cacti/include/global_form.php:736 msgid "" "Pad text so that legend and graph data always line up. Note: this could " "cause graphs to take longer to render because of the larger overhead. Also " "Auto Padding may not be accurate on all types of graphs, consistent labeling " "usually helps." msgstr "" #: /var/www/html/cacti/include/global_form.php:739 msgid "Dynamic Labels (--dynamic-labels)" msgstr "Dynamische labels (--dynamic-labels)" #: /var/www/html/cacti/include/global_form.php:742 msgid "Draw line markers as a line." msgstr "Trek lijnmarkeringen als een lijn." #: /var/www/html/cacti/include/global_form.php:745 msgid "Force Rules Legend (--force-rules-legend)" msgstr "" #: /var/www/html/cacti/include/global_form.php:748 msgid "Force the generation of HRULE and VRULE legends." msgstr "" #: /var/www/html/cacti/include/global_form.php:751 msgid "Tab Width (--tabwidth <pixels>)" msgstr "Tab breedte (--tabwidth <pixels>)" #: /var/www/html/cacti/include/global_form.php:756 msgid "By default the tab-width is 40 pixels, use this option to change it." msgstr "" #: /var/www/html/cacti/include/global_form.php:759 msgid "Legend Position (--legend-position=<position>)" msgstr "Legenda positie (--legend-position=<position>)" #: /var/www/html/cacti/include/global_form.php:763 msgid "Place the legend at the given side of the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:766 msgid "Legend Direction (--legend-direction=<direction>)" msgstr "Legenda richting (—legend-direction=<direction>)" #: /var/www/html/cacti/include/global_form.php:770 msgid "Place the legend items in the given vertical order." msgstr "" #: /var/www/html/cacti/include/global_form.php:777 #: /var/www/html/cacti/lib/api_aggregate.php:1300 #: /var/www/html/cacti/lib/html.php:945 msgid "Graph Item Type" msgstr "Grafiek item type" #: /var/www/html/cacti/include/global_form.php:781 msgid "How data for this item is represented visually on the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:796 msgid "The data source to use for this graph item." msgstr "" #: /var/www/html/cacti/include/global_form.php:803 msgid "The color to use for the legend." msgstr "De kleur van de legenda." #: /var/www/html/cacti/include/global_form.php:806 msgid "Opacity/Alpha Channel" msgstr "" #: /var/www/html/cacti/include/global_form.php:810 msgid "The opacity/alpha channel of the color." msgstr "" #: /var/www/html/cacti/include/global_form.php:813 #: /var/www/html/cacti/lib/rrd.php:2740 msgid "Consolidation Function" msgstr "" #: /var/www/html/cacti/include/global_form.php:817 msgid "How data for this item is represented statistically on the graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:820 msgid "CDEF Function" msgstr "CDEF functie" #: /var/www/html/cacti/include/global_form.php:825 msgid "A CDEF (math) function to apply to this item on the graph or legend." msgstr "" "Een CDEF (wiskundige) functie om toe te passen op de grafiek of het " "bijschrift." #: /var/www/html/cacti/include/global_form.php:828 msgid "VDEF Function" msgstr "VDEF functie" #: /var/www/html/cacti/include/global_form.php:833 msgid "A VDEF (math) function to apply to this item on the graph legend." msgstr "" "Een VDEF (wiskundige) functie om toe te passen op deze grafiek legenda." #: /var/www/html/cacti/include/global_form.php:836 msgid "Shift Data" msgstr "Verschuif data" #: /var/www/html/cacti/include/global_form.php:839 msgid "" "Offset your data on the time axis (x-axis) by the amount specified in the " "'value' field." msgstr "" #: /var/www/html/cacti/include/global_form.php:842 #: /var/www/html/cacti/lib/rrd.php:2710 /var/www/html/cacti/utilities.php:2439 msgid "Value" msgstr "Waarde" #: /var/www/html/cacti/include/global_form.php:847 msgid "" "[HRULE|VRULE]: The value of the graph item.
    [TICK]: The fraction for " "the tick line.
    [SHIFT]: The time offset in seconds." msgstr "" "[HRULE|VRULE]: De waarde van het grafiek item.
    [TICK]: De fractie voor " "de tiklijn.
    [SHIFT]: De tijd compensatie in seconden." #: /var/www/html/cacti/include/global_form.php:850 msgid "GPRINT Type" msgstr "GPRINT type" #: /var/www/html/cacti/include/global_form.php:854 msgid "" "If this graph item is a GPRINT, you can optionally choose another format " "here. You can define additional types under \"GPRINT Presets\"." msgstr "" #: /var/www/html/cacti/include/global_form.php:857 msgid "Text Alignment (TEXTALIGN)" msgstr "Tekst uitlijning (TEXTALIGN)" #: /var/www/html/cacti/include/global_form.php:862 msgid "" "All subsequent legend line(s) will be aligned as given here. You may use " "this command multiple times in a single graph. This command does not " "produce tabular layout.
    Note: You may want to insert a " "<HR> on the preceding graph item.
    Note: A <" "HR> on this legend line will obsolete this setting!" msgstr "" #: /var/www/html/cacti/include/global_form.php:865 msgid "Text Format" msgstr "Tekst opmaak" #: /var/www/html/cacti/include/global_form.php:870 msgid "Text that will be displayed on the legend for this graph item." msgstr "" #: /var/www/html/cacti/include/global_form.php:873 msgid "Insert Hard Return" msgstr "Voer harde enter in" #: /var/www/html/cacti/include/global_form.php:876 msgid "Forces the legend to the next line after this item." msgstr "" #: /var/www/html/cacti/include/global_form.php:879 msgid "Line Width (decimal)" msgstr "Lijn breedte (decimaal)" #: /var/www/html/cacti/include/global_form.php:884 msgid "" "In case LINE was chosen, specify width of line here. You must include a " "decimal precision, for example 2.00" msgstr "" #: /var/www/html/cacti/include/global_form.php:887 msgid "Dashes (dashes[=on_s[,off_s[,on_s,off_s]...]])" msgstr "" #: /var/www/html/cacti/include/global_form.php:892 msgid "The dashes modifier enables dashed line style." msgstr "" #: /var/www/html/cacti/include/global_form.php:895 msgid "Dash Offset (dash-offset=offset)" msgstr "" #: /var/www/html/cacti/include/global_form.php:900 msgid "" "The dash-offset parameter specifies an offset into the pattern at which the " "stroke begins." msgstr "" #: /var/www/html/cacti/include/global_form.php:913 msgid "The name given to this graph template." msgstr "De naam voor deze grafiektemplate." #: /var/www/html/cacti/include/global_form.php:920 msgid "Multiple Instances" msgstr "Meerdere instanties" #: /var/www/html/cacti/include/global_form.php:921 msgid "" "Check this checkbox if there can be more than one Graph of this type per " "Device." msgstr "" #: /var/www/html/cacti/include/global_form.php:945 msgid "" "Enter a name for this graph item input, make sure it is something you " "recognize." msgstr "" "Voer een naam in voor dit grafiekitem, zorg ervoor dat het een duidelijke " "naam is." #: /var/www/html/cacti/include/global_form.php:953 msgid "" "Enter a description for this graph item input to describe what this input is " "used for." msgstr "" "Voer een beschrijving in voor deze grafiek item invoer zodat wordt " "beschreven waar de invoer voor wordt gebruikt." #: /var/www/html/cacti/include/global_form.php:960 msgid "Field Type" msgstr "Veld type" #: /var/www/html/cacti/include/global_form.php:961 msgid "How data is to be represented on the graph." msgstr "Hoe data wordt weergegeven in de grafiek." #: /var/www/html/cacti/include/global_form.php:984 msgid "General Device Options" msgstr "Algemene apparaat opties" #: /var/www/html/cacti/include/global_form.php:989 msgid "Give this host a meaningful description." msgstr "Geef deze host een zinvolle beschrijving." #: /var/www/html/cacti/include/global_form.php:996 #: /var/www/html/cacti/include/global_form.php:1633 msgid "Fully qualified hostname or IP address for this device." msgstr "Volledige hostname of IP adres voor dit apparaat." #: /var/www/html/cacti/include/global_form.php:1003 msgid "Poller Association" msgstr "" #: /var/www/html/cacti/include/global_form.php:1011 msgid "Device Site Association" msgstr "Locatie van het apparaat" #: /var/www/html/cacti/include/global_form.php:1012 msgid "What Site is this Device associated with." msgstr "Met welke locatie is dit apparaat gekoppeld." #: /var/www/html/cacti/include/global_form.php:1021 msgid "" "Choose the Device Template to use to define the default Graph Templates and " "Data Queries associated with this Device." msgstr "" "Kies het apparaat template om de standaard grafiektemplates en data queries " "te creëren voor dit apparaat." #: /var/www/html/cacti/include/global_form.php:1029 msgid "Number of Collection Threads" msgstr "Aantal verzamel threads" #: /var/www/html/cacti/include/global_form.php:1030 msgid "" "The number of concurrent threads to use for polling this device. This " "applies to the Spine poller only." msgstr "" "Het aantal gelijktijdige processen om dit apparaat te pollen. Dit is alleen " "van toepassing op de Spine poller." #: /var/www/html/cacti/include/global_form.php:1037 msgid "Disable Device" msgstr "Apparaat uitschakelen" #: /var/www/html/cacti/include/global_form.php:1038 msgid "Check this box to disable all checks for this host." msgstr "Activeer deze box om alle controles voor deze host uit te schakelen." #: /var/www/html/cacti/include/global_form.php:1050 #: /var/www/html/cacti/include/global_form.php:1662 msgid "Choose the SNMP version for this device." msgstr "Kies de SNMP versie voor dit apparaat." #: /var/www/html/cacti/include/global_form.php:1058 #: /var/www/html/cacti/include/global_form.php:1670 msgid "SNMP Community" msgstr "SNMP Community" #: /var/www/html/cacti/include/global_form.php:1059 #: /var/www/html/cacti/include/global_form.php:1671 msgid "SNMP read community for this device." msgstr "SNMP read community voor dit apparaat." #: /var/www/html/cacti/include/global_form.php:1088 msgid "Choose the SNMPv3 authentication protocol." msgstr "Kies het SNMPv3 authenticatie protocol." #: /var/www/html/cacti/include/global_form.php:1097 msgid "SNMP v3 authentication pass phrase for this device." msgstr "SNMP v3 authenticatie wachtwoord voor dit apparaat." #: /var/www/html/cacti/include/global_form.php:1106 msgid "Choose the SNMPv3 privacy protocol." msgstr "Kies het SNMPv3 privacy protocol." #: /var/www/html/cacti/include/global_form.php:1115 msgid "Choose the SNMPv3 privacy passphrase." msgstr "Kies het SNMPv3 privé wachtwoord." #: /var/www/html/cacti/include/global_form.php:1123 #: /var/www/html/cacti/include/global_settings.php:557 msgid "SNMP Context (v3)" msgstr "SNMP context (v3)" #: /var/www/html/cacti/include/global_form.php:1124 msgid "Enter the SNMP v3 context to use for this device." msgstr "Voor de SNMP v3 context in voor dit apparaat." #: /var/www/html/cacti/include/global_form.php:1142 msgid "Enter the UDP port number to use for SNMP (default is 161)." msgstr "" "Voer het UDP poortnummer in voor het gebruik voor SNMP (standaard is dit " "161)." #: /var/www/html/cacti/include/global_form.php:1159 msgid "Maximum OIDs Per Get Request" msgstr "Maximaal aantal OID's per GET request" #: /var/www/html/cacti/include/global_form.php:1168 msgid "Availability/Reachability Options" msgstr "" #: /var/www/html/cacti/include/global_form.php:1172 #: /var/www/html/cacti/include/global_settings.php:603 msgid "Downed Device Detection" msgstr "Offline apparaat detectie" #: /var/www/html/cacti/include/global_form.php:1173 msgid "" "The method Cacti will use to determine if a host is available for polling. " "
    NOTE: It is recommended that, at a minimum, SNMP always be selected." msgstr "" #: /var/www/html/cacti/include/global_form.php:1182 msgid "" "The type of ping packet to sent.
    NOTE: ICMP on Linux/UNIX requires " "root privileges." msgstr "" #: /var/www/html/cacti/include/global_form.php:1219 #: /var/www/html/cacti/include/global_form.php:1769 msgid "Additional Options" msgstr "Additionele opties" #: /var/www/html/cacti/include/global_form.php:1223 #: /var/www/html/cacti/include/global_form.php:1774 #: /var/www/html/cacti/pollers.php:70 msgid "Notes" msgstr "Notities" #: /var/www/html/cacti/include/global_form.php:1224 #: /var/www/html/cacti/include/global_form.php:1775 msgid "Enter notes to this host." msgstr "Notities voor deze host." #: /var/www/html/cacti/include/global_form.php:1231 msgid "External ID" msgstr "Extern ID" #: /var/www/html/cacti/include/global_form.php:1232 msgid "External ID for linking Cacti data to external monitoring systems." msgstr "Externe ID om Cacti data aan externe monitoring te koppelen." #: /var/www/html/cacti/include/global_form.php:1254 msgid "A useful name for this host template." msgstr "Een handige naam voor dit apparaat template." #: /var/www/html/cacti/include/global_form.php:1274 msgid "A name for this data query." msgstr "Een naam voor deze data query." #: /var/www/html/cacti/include/global_form.php:1282 msgid "A description for this data query." msgstr "Een beschrijving voor deze data query." #: /var/www/html/cacti/include/global_form.php:1289 msgid "XML Path" msgstr "XML path" #: /var/www/html/cacti/include/global_form.php:1290 msgid "" "The full path to the XML file containing definitions for this data query." msgstr "" "Het volledige path naar het XML bestand dat de definities van de data query " "bevat." #: /var/www/html/cacti/include/global_form.php:1299 msgid "" "Choose the input method for this Data Query. This input method defines how " "data is collected for each Device associated with the Data Query." msgstr "" #: /var/www/html/cacti/include/global_form.php:1318 msgid "" "Choose the Graph Template to use for this Data Query Graph Template item." msgstr "" #: /var/www/html/cacti/include/global_form.php:1344 msgid "A name for this associated graph." msgstr "Een naam voor deze gekoppelde grafiek." #: /var/www/html/cacti/include/global_form.php:1372 msgid "A useful name for this graph tree." msgstr "Een handige naam voor deze grafiek boomstructuur." #: /var/www/html/cacti/include/global_form.php:1379 #: /var/www/html/cacti/include/global_form.php:2272 #: /var/www/html/cacti/lib/api_automation.php:1364 #: /var/www/html/cacti/tree.php:1445 msgid "Sorting Type" msgstr "Manier van sorteren" #: /var/www/html/cacti/include/global_form.php:1380 #: /var/www/html/cacti/include/global_form.php:2273 msgid "Choose how items in this tree will be sorted." msgstr "Kies hoe de items in de boomstructuur zullen worden gesorteerd." #: /var/www/html/cacti/include/global_form.php:1386 msgid "Publish" msgstr "Publiceren" #: /var/www/html/cacti/include/global_form.php:1387 msgid "Should this Tree be published for users to access?" msgstr "" #: /var/www/html/cacti/include/global_form.php:1422 msgid "An Email Address where the User can be reached." msgstr "Een e-mailadres waar de gebruiker kan worden bereikt." #: /var/www/html/cacti/include/global_form.php:1430 msgid "" "Enter the password for this user twice. Remember that passwords are case " "sensitive!" msgstr "" "Voer het wachtwoord voor deze gebruiker twee keer in. Onthoud dat de " "wachtwoorden hoofdlettergevoelig zijn!" #: /var/www/html/cacti/include/global_form.php:1438 #: /var/www/html/cacti/user_group_admin.php:88 msgid "Determines if user is able to login." msgstr "Bepaalt of het voor de gebruiker mogelijk is om in te loggen." #: /var/www/html/cacti/include/global_form.php:1444 #: /var/www/html/cacti/tree.php:1756 msgid "Locked" msgstr "Geblokkeerd" #: /var/www/html/cacti/include/global_form.php:1445 msgid "Determines if the user account is locked." msgstr "Bepaalt of het gebruikeraccount is geblokkeerd." #: /var/www/html/cacti/include/global_form.php:1450 msgid "Account Options" msgstr "Account opties" #: /var/www/html/cacti/include/global_form.php:1452 msgid "Set any user account specific options here." msgstr "" #: /var/www/html/cacti/include/global_form.php:1456 msgid "Must Change Password at Next Login" msgstr "Moet het wachtwoord wijzigen na de volgende login" #: /var/www/html/cacti/include/global_form.php:1468 msgid "Maintain Custom Graph and User Settings" msgstr "Behoud de aangepaste grafiek en gebruikers instellingen" #: /var/www/html/cacti/include/global_form.php:1475 msgid "Graph Options" msgstr "Grafiek opties" #: /var/www/html/cacti/include/global_form.php:1477 msgid "Set any graph specific options here." msgstr "" #: /var/www/html/cacti/include/global_form.php:1481 msgid "User Has Rights to Tree View" msgstr "Gebruiker heeft rechten tot de boomstructuur weergave" #: /var/www/html/cacti/include/global_form.php:1487 msgid "User Has Rights to List View" msgstr "Gebruiker heeft rechter tot de lijstweergave" #: /var/www/html/cacti/include/global_form.php:1493 msgid "User Has Rights to Preview View" msgstr "Gebruiker heeft rechten tot voorvertoningweergave" #: /var/www/html/cacti/include/global_form.php:1500 #: /var/www/html/cacti/user_group_admin.php:130 msgid "Login Options" msgstr "Loginopties" #: /var/www/html/cacti/include/global_form.php:1503 msgid "What to do when this user logs in." msgstr "Wat te doen als deze gebruiker inlogt." #: /var/www/html/cacti/include/global_form.php:1508 msgid "Show the page that user pointed their browser to." msgstr "Toon de pagina die de gebruiker in de browser heeft opgegeven." #: /var/www/html/cacti/include/global_form.php:1512 msgid "Show the default console screen." msgstr "Toon de standaard console pagina." #: /var/www/html/cacti/include/global_form.php:1516 msgid "Show the default graph screen." msgstr "Toon de standaard grafiek pagina." #: /var/www/html/cacti/include/global_form.php:1522 #: /var/www/html/cacti/utilities.php:774 msgid "Authentication Realm" msgstr "" #: /var/www/html/cacti/include/global_form.php:1523 msgid "" "Only used if you have LDAP or Web Basic Authentication enabled. Changing " "this to a non-enabled realm will effectively disable the user." msgstr "" #: /var/www/html/cacti/include/global_form.php:1578 msgid "Import Template from Local File" msgstr "Importeer template vanaf een lokaal bestand" #: /var/www/html/cacti/include/global_form.php:1579 msgid "" "If the XML file containing template data is located on your local machine, " "select it here." msgstr "" #: /var/www/html/cacti/include/global_form.php:1584 msgid "Import Template from Text" msgstr "Importeer template vanaf tekst" #: /var/www/html/cacti/include/global_form.php:1585 msgid "" "If you have the XML file containing template data as text, you can paste it " "into this box to import it." msgstr "" #: /var/www/html/cacti/include/global_form.php:1593 msgid "Preview Import Only" msgstr "Import alleen bekijken" #: /var/www/html/cacti/include/global_form.php:1595 msgid "" "If checked, Cacti will not import the template, but rather compare the " "imported Template to the existing Template data. If you are acceptable of " "the change, you can them import." msgstr "" #: /var/www/html/cacti/include/global_form.php:1600 msgid "Remove Orphaned Graph Items" msgstr "" #: /var/www/html/cacti/include/global_form.php:1602 msgid "" "If checked, Cacti will delete any Graph Items from both the Graph Template " "and associated Graphs that are not included in the imported Graph Template." msgstr "" #: /var/www/html/cacti/include/global_form.php:1619 msgid "General SNMP Entity Options" msgstr "" #: /var/www/html/cacti/include/global_form.php:1625 msgid "Give this SNMP entity a meaningful description." msgstr "" #: /var/www/html/cacti/include/global_form.php:1640 msgid "Disable SNMP Notification Receiver" msgstr "" #: /var/www/html/cacti/include/global_form.php:1641 msgid "" "Check this box if you temporary do not want to send SNMP notifications to " "this host." msgstr "" "Activeer deze box als u tijdelijk geen SNMP notificaties naar deze host wilt " "sturen." #: /var/www/html/cacti/include/global_form.php:1648 msgid "Maximum Log Size" msgstr "Maximale log grootte" #: /var/www/html/cacti/include/global_form.php:1649 msgid "" "Maximum number of day's notification log entries for this receiver need to " "be stored." msgstr "" #: /var/www/html/cacti/include/global_form.php:1700 msgid "" "Choose the SNMPv3 Authorization Protocol.
    Note: SHA authentication " "support is only available if you have OpenSSL installed." msgstr "" "Kies het SNMPv3 authenticatie protocol.
    Let op: Ondersteuning voor SHA " "authenticatie is alleen beschikbaar als u OpenSSL heeft geinstalleerd." #: /var/www/html/cacti/include/global_form.php:1708 msgid "SNMP Auth Password (v3)" msgstr "SNMP Auth wachtwoord (v3)" #: /var/www/html/cacti/include/global_form.php:1709 msgid "SNMP v3 user password for this device." msgstr "SNMP v3 gebruiker wachtwoord voor dit apparaat." #: /var/www/html/cacti/include/global_form.php:1718 msgid "" "Choose the SNMPv3 Privacy Protocol.
    Note: DES/AES encryption support is " "only available if you have OpenSSL installed." msgstr "" "Kies het SNMPv3 privacy protocol.
    Let op: Ondersteuning voor DES/AES " "encryptie is alleen beschikbaar als u OpenSSL heeft geinstalleerd." #: /var/www/html/cacti/include/global_form.php:1726 msgid "SNMP Privacy Password (v3)" msgstr "SNMP privacy wachtwoord (v3)" #: /var/www/html/cacti/include/global_form.php:1734 msgid "SNMP Engine ID" msgstr "SNMP Engine ID" #: /var/www/html/cacti/include/global_form.php:1735 msgid "" "Defines the unique SNMP Engine ID to identify this peer. Following format " "will be recommended:
    FlexibleLength+Enterprise(8000) + IANA-Cacti(5d75) + " "MAC-Following(03) + YOUR-MAC-ADDRESS(e.g.:D89D67287B00).
    Per default the " "locally administrated MAC 02-FF-FF-FF-FF-FF will be used." msgstr "" #: /var/www/html/cacti/include/global_form.php:1744 msgid "The UDP port to be used for SNMP traps. Typically, 162." msgstr "" #: /var/www/html/cacti/include/global_form.php:1760 msgid "SNMP Message Type" msgstr "" #: /var/www/html/cacti/include/global_form.php:1761 msgid "" "SNMP traps are always unacknowledged. To send out acknowledged SNMP " "notifications, formally called \"INFORMS\", SNMPv2 or above will be required." msgstr "" #: /var/www/html/cacti/include/global_form.php:1794 msgid "The new Title of the aggregated Graph." msgstr "" #: /var/www/html/cacti/include/global_form.php:1801 #: /var/www/html/cacti/include/global_form.php:1880 #: /var/www/html/cacti/include/global_form.php:1978 msgid "Prefix" msgstr "Voorvoegsel" #: /var/www/html/cacti/include/global_form.php:1802 msgid "A Prefix for all GPRINT lines to distinguish e.g. different hosts." msgstr "" "Een voorvoegsel voor alle GPRINT lijnen om bijvoorbeeld verschillende " "apparaten van elkaar te onderscheiden." #: /var/www/html/cacti/include/global_form.php:1810 #: /var/www/html/cacti/include/global_form.php:1889 #: /var/www/html/cacti/include/global_form.php:1987 msgid "" "Use this Option to create e.g. STACKed graphs.
    AREA/STACK: 1st graph " "keeps AREA/STACK items, others convert to STACK
    LINE1: all items convert " "to LINE1 items
    LINE2: all items convert to LINE2 items
    LINE3: all " "items convert to LINE3 items" msgstr "" #: /var/www/html/cacti/include/global_form.php:1817 #: /var/www/html/cacti/include/global_form.php:1896 #: /var/www/html/cacti/include/global_form.php:1994 msgid "Totaling" msgstr "In totaal" #: /var/www/html/cacti/include/global_form.php:1818 #: /var/www/html/cacti/include/global_form.php:1897 #: /var/www/html/cacti/include/global_form.php:1995 msgid "" "Please check those Items that shall be totaled in the \"Total\" column, when " "selecting any totaling option here." msgstr "" #: /var/www/html/cacti/include/global_form.php:1825 #: /var/www/html/cacti/include/global_form.php:1905 #: /var/www/html/cacti/include/global_form.php:2003 msgid "Total Type" msgstr "" #: /var/www/html/cacti/include/global_form.php:1826 #: /var/www/html/cacti/include/global_form.php:1906 #: /var/www/html/cacti/include/global_form.php:2004 msgid "Which type of totaling shall be performed." msgstr "" #: /var/www/html/cacti/include/global_form.php:1833 #: /var/www/html/cacti/include/global_form.php:1914 #: /var/www/html/cacti/include/global_form.php:2012 msgid "Prefix for GPRINT Totals" msgstr "Voorvoegsel voor GPRINT totalen" #: /var/www/html/cacti/include/global_form.php:1834 #: /var/www/html/cacti/include/global_form.php:1915 #: /var/www/html/cacti/include/global_form.php:2013 msgid "A Prefix for all totaling GPRINT lines." msgstr "Een voorvoegsel voor alle totalen GPRINT lijnen." #: /var/www/html/cacti/include/global_form.php:1841 #: /var/www/html/cacti/include/global_form.php:1922 #: /var/www/html/cacti/include/global_form.php:2020 msgid "Reorder Type" msgstr "" #: /var/www/html/cacti/include/global_form.php:1842 #: /var/www/html/cacti/include/global_form.php:1923 #: /var/www/html/cacti/include/global_form.php:2021 msgid "Reordering of Graphs." msgstr "" #: /var/www/html/cacti/include/global_form.php:1862 msgid "Please name this Aggregate Graph." msgstr "Geef deze geaggregeerde grafiek een naam." #: /var/www/html/cacti/include/global_form.php:1869 msgid "Propagation Enabled" msgstr "" #: /var/www/html/cacti/include/global_form.php:1870 msgid "Is this to carry the template?" msgstr "" #: /var/www/html/cacti/include/global_form.php:1876 msgid "Aggregate Graph Settings" msgstr "Geaggregeerde grafiek instellingen" #: /var/www/html/cacti/include/global_form.php:1881 #: /var/www/html/cacti/include/global_form.php:1979 msgid "" "A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may " "use both Host as well as Data Query replacement variables in this prefix." msgstr "" "Een voorvoegsel voor alle GPRINT lijnen om bijvoorbeeld verschillende " "apparaten van elkaar te onderscheiden. U mag zowel host als data query " "variabelen in deze prefix gebruiken." #: /var/www/html/cacti/include/global_form.php:1957 msgid "Aggregate Template Name" msgstr "Naam van geaggregeerde template" #: /var/www/html/cacti/include/global_form.php:1958 msgid "Please name this Aggregate Template." msgstr "Geef dit geaggregeerde template een naam." #: /var/www/html/cacti/include/global_form.php:1965 msgid "Source Graph Template" msgstr "" #: /var/www/html/cacti/include/global_form.php:1966 msgid "The Graph Template that this Aggregate Template is based upon." msgstr "" #: /var/www/html/cacti/include/global_form.php:1974 msgid "Aggregate Template Settings" msgstr "Instellingen van geaggregeerde template" #: /var/www/html/cacti/include/global_form.php:2044 msgid "The name of this Color Template." msgstr "" #: /var/www/html/cacti/include/global_form.php:2055 msgid "A nice Color" msgstr "Een mooie kleur" #: /var/www/html/cacti/include/global_form.php:2065 msgid "A useful name for this Template." msgstr "Een naam voor dit template." #: /var/www/html/cacti/include/global_form.php:2079 #: /var/www/html/cacti/include/global_form.php:2121 #: /var/www/html/cacti/lib/api_automation.php:1239 #: /var/www/html/cacti/lib/api_automation.php:1301 msgid "Operation" msgstr "Atie" #: /var/www/html/cacti/include/global_form.php:2080 #: /var/www/html/cacti/include/global_form.php:2122 msgid "Logical operation to combine rules." msgstr "" #: /var/www/html/cacti/include/global_form.php:2088 #: /var/www/html/cacti/include/global_form.php:2130 msgid "The Field Name that shall be used for this Rule Item." msgstr "" #: /var/www/html/cacti/include/global_form.php:2096 #: /var/www/html/cacti/include/global_form.php:2138 msgid "Operator." msgstr "" #: /var/www/html/cacti/include/global_form.php:2103 #: /var/www/html/cacti/include/global_form.php:2145 #: /var/www/html/cacti/include/global_form.php:2288 msgid "Matching Pattern" msgstr "Overeenkomend patroon" #: /var/www/html/cacti/include/global_form.php:2104 #: /var/www/html/cacti/include/global_form.php:2146 msgid "The Pattern to be matched against." msgstr "Het vergelijkingspatroon." #: /var/www/html/cacti/include/global_form.php:2112 #: /var/www/html/cacti/include/global_form.php:2154 #: /var/www/html/cacti/include/global_form.php:2305 msgid "Sequence." msgstr "Volgorde." #: /var/www/html/cacti/include/global_form.php:2163 #: /var/www/html/cacti/include/global_form.php:2208 msgid "A useful name for this Rule." msgstr "Een handige naam voor deze regel." #: /var/www/html/cacti/include/global_form.php:2171 msgid "Choose a Data Query to apply to this rule." msgstr "Kies een data query om toe te passen op deze regel." #: /var/www/html/cacti/include/global_form.php:2182 msgid "Choose any of the available Graph Types to apply to this rule." msgstr "" "Kies een van de beschikbare grafiek types om op deze regel toe te passen." #: /var/www/html/cacti/include/global_form.php:2195 #: /var/www/html/cacti/include/global_form.php:2252 msgid "Enable Rule" msgstr "Activeer regel" #: /var/www/html/cacti/include/global_form.php:2196 #: /var/www/html/cacti/include/global_form.php:2253 msgid "Check this box to enable this rule." msgstr "Activeer deze optie om deze regel in te schakelen." #: /var/www/html/cacti/include/global_form.php:2216 msgid "Choose a Tree for the new Tree Items." msgstr "" #: /var/www/html/cacti/include/global_form.php:2223 msgid "Leaf Item Type" msgstr "" #: /var/www/html/cacti/include/global_form.php:2224 msgid "The Item Type that shall be dynamically added to the tree." msgstr "" #: /var/www/html/cacti/include/global_form.php:2231 msgid "Graph Grouping Style" msgstr "" #: /var/www/html/cacti/include/global_form.php:2232 msgid "" "Choose how graphs are grouped when drawn for this particular host on the " "tree." msgstr "" #: /var/www/html/cacti/include/global_form.php:2242 msgid "Optional: Sub-Tree Item" msgstr "" #: /var/www/html/cacti/include/global_form.php:2243 msgid "" "Choose a Sub-Tree Item to hook in.
    Make sure, that it is still there when " "this rule is executed!" msgstr "" #: /var/www/html/cacti/include/global_form.php:2263 msgid "Header Type" msgstr "" #: /var/www/html/cacti/include/global_form.php:2264 msgid "Choose an Object to build a new Sub-header." msgstr "" #: /var/www/html/cacti/include/global_form.php:2280 msgid "Propagate Changes" msgstr "" #: /var/www/html/cacti/include/global_form.php:2281 msgid "" "Propagate all options on this form (except for 'Title') to all child " "'Header' items." msgstr "" #: /var/www/html/cacti/include/global_form.php:2289 msgid "" "The String Pattern (Regular Expression) to match against.
    Enclosing '/' " "must NOT be provided!" msgstr "" #: /var/www/html/cacti/include/global_form.php:2296 msgid "Replacement Pattern" msgstr "" #: /var/www/html/cacti/include/global_form.php:2297 msgid "" "The Replacement String Pattern for use as a Tree Header.
    Refer to a Match " "by e.g. \\${1} for the first match!" msgstr "" #: /var/www/html/cacti/include/global_languages.php:571 msgid " T" msgstr " T" #: /var/www/html/cacti/include/global_languages.php:573 msgid " G" msgstr " G" #: /var/www/html/cacti/include/global_languages.php:575 msgid " M" msgstr " M" #: /var/www/html/cacti/include/global_languages.php:577 msgid " K" msgstr " K" #: /var/www/html/cacti/include/global_session.php:99 #: /var/www/html/cacti/lib/html_filter.php:66 msgid "Enter a search term" msgstr "Voer een zoekterm in" #: /var/www/html/cacti/include/global_session.php:100 msgid "Enter a regular expression" msgstr "Voer een reguliere expressie in" #: /var/www/html/cacti/include/global_session.php:101 msgid "No file selected" msgstr "Geen bestand geselecteerd" #: /var/www/html/cacti/include/global_session.php:102 #: /var/www/html/cacti/lib/html.php:356 msgid "Time Graph View" msgstr "" #: /var/www/html/cacti/include/global_session.php:104 #: /var/www/html/cacti/include/global_session.php:116 msgid "SpikeKill Results" msgstr "SpikeKill resultaten" #: /var/www/html/cacti/include/global_session.php:106 msgid "Click to view just this Graph in Realtime" msgstr "" #: /var/www/html/cacti/include/global_session.php:107 msgid "Click again to take this Graph out of Realtime" msgstr "" #: /var/www/html/cacti/include/global_session.php:111 msgid "Cacti Home" msgstr "Cacti home" #: /var/www/html/cacti/include/global_session.php:112 msgid "Cacti Project Page" msgstr "Cacti project pagina" #: /var/www/html/cacti/include/global_session.php:113 msgid "Cacti Community Forum" msgstr "Cacti community forum" #: /var/www/html/cacti/include/global_session.php:114 msgid "Report a bug" msgstr "Rapporteer een fout" #: /var/www/html/cacti/include/global_session.php:117 msgid "Click to Show/Hide Filter" msgstr "Klik om het filter te tonen/verbergen" #: /var/www/html/cacti/include/global_session.php:118 msgid "Clear Current Filter" msgstr "Stel filters opnieuw in" #: /var/www/html/cacti/include/global_session.php:119 msgid "Clipboard" msgstr "Klembord" #: /var/www/html/cacti/include/global_session.php:120 msgid "Clipboard ID" msgstr "Klembord ID" #: /var/www/html/cacti/include/global_session.php:121 msgid "Copy operation is unavailable at this time" msgstr "" #: /var/www/html/cacti/include/global_session.php:122 msgid "Failed to find data to copy!" msgstr "" #: /var/www/html/cacti/include/global_session.php:123 msgid "Clipboard has been updated" msgstr "Klembord is bijgewerkt" #: /var/www/html/cacti/include/global_session.php:124 msgid "Sorry, your clipboard could not be updated at this time" msgstr "" #: /var/www/html/cacti/include/global_session.php:128 msgid "Passphrase length meets 8 character minimum" msgstr "" #: /var/www/html/cacti/include/global_session.php:129 msgid "Passphrase too short" msgstr "Het wachtwoord is te kort" #: /var/www/html/cacti/include/global_session.php:130 msgid "Passphrase matches but too short" msgstr "" #: /var/www/html/cacti/include/global_session.php:131 msgid "Passphrase too short and not matching" msgstr "" #: /var/www/html/cacti/include/global_session.php:132 msgid "Passphrases match" msgstr "Wachtwoorden komen overeen" #: /var/www/html/cacti/include/global_session.php:133 msgid "Passphrases do not match" msgstr "Wachtwoorden komen niet overeen" #: /var/www/html/cacti/include/global_session.php:134 msgid "Sorry, we could not process your last action." msgstr "Sorry, we konden uw laatste actie niet verwerken." #: /var/www/html/cacti/include/global_session.php:135 msgid "Error:" msgstr "Fout:" #: /var/www/html/cacti/include/global_session.php:136 msgid "Reason:" msgstr "Reden:" #: /var/www/html/cacti/include/global_session.php:137 msgid "Action failed" msgstr "Actie mislukt" #: /var/www/html/cacti/include/global_session.php:138 msgid "The response to the last action was unexpected." msgstr "De response van de laatste actie was onverwacht." #: /var/www/html/cacti/include/global_session.php:139 msgid "Operation successful" msgstr "Actie succesvol uitvoerd" #: /var/www/html/cacti/include/global_session.php:140 msgid "The Operation was successful. Details are below." msgstr "De actie was succesvol. Details staan hieronder." #: /var/www/html/cacti/include/global_session.php:142 msgid "Ok" msgstr "Ok" #: /var/www/html/cacti/include/global_session.php:143 msgid "Pause" msgstr "Pauze" #: /var/www/html/cacti/include/global_settings.php:38 #: /var/www/html/cacti/include/global_settings.php:904 #: /var/www/html/cacti/include/global_settings.php:1027 #: /var/www/html/cacti/managers.php:39 /var/www/html/cacti/user_admin.php:1933 #: /var/www/html/cacti/user_group_admin.php:1664 msgid "General" msgstr "Generiek" #: /var/www/html/cacti/include/global_settings.php:39 msgid "Paths" msgstr "Paden" #: /var/www/html/cacti/include/global_settings.php:40 msgid "Device Defaults" msgstr "Apparaat standaardinstellingen" #: /var/www/html/cacti/include/global_settings.php:41 #: /var/www/html/cacti/include/global_settings.php:473 msgid "Poller" msgstr "Poller" #: /var/www/html/cacti/include/global_settings.php:42 msgid "Data" msgstr "Data" #: /var/www/html/cacti/include/global_settings.php:43 msgid "Visual" msgstr "Visueel" #: /var/www/html/cacti/include/global_settings.php:44 #: /var/www/html/cacti/lib/functions.php:4002 #: /var/www/html/cacti/lib/functions.php:4007 msgid "Authentication" msgstr "Authenticatie" #: /var/www/html/cacti/include/global_settings.php:45 msgid "Performance" msgstr "Performance" #: /var/www/html/cacti/include/global_settings.php:46 msgid "Spikes" msgstr "Pieken" #: /var/www/html/cacti/include/global_settings.php:47 msgid "Mail/Reporting/DNS" msgstr "Mail/Rapportages/DNS" #: /var/www/html/cacti/include/global_settings.php:51 msgid "Time Spanning/Shifting" msgstr "" #: /var/www/html/cacti/include/global_settings.php:52 msgid "Graph Thumbnail Settings" msgstr "Grafiek thumbnail instellingen" #: /var/www/html/cacti/include/global_settings.php:53 msgid "Tree Settings" msgstr "Boomstructuur instellingen" #: /var/www/html/cacti/include/global_settings.php:54 msgid "Graph Fonts" msgstr "Grafiek lettertypes" #: /var/www/html/cacti/include/global_settings.php:93 msgid "Required Tool Paths" msgstr "" #: /var/www/html/cacti/include/global_settings.php:98 msgid "snmpwalk Binary Path" msgstr "snmpwalk binary locatie" #: /var/www/html/cacti/include/global_settings.php:99 msgid "The path to your snmpwalk binary." msgstr "De locatie van de snmpwalk binary." #: /var/www/html/cacti/include/global_settings.php:104 msgid "snmpget Binary Path" msgstr "snmpget binary locatie" #: /var/www/html/cacti/include/global_settings.php:105 msgid "The path to your snmpget binary." msgstr "De locatie van de snmpget binary." #: /var/www/html/cacti/include/global_settings.php:110 msgid "snmpbulkwalk Binary Path" msgstr "snmpbulkwalk binary locatie" #: /var/www/html/cacti/include/global_settings.php:111 msgid "The path to your snmpbulkwalk binary." msgstr "De locatie van de snmpbulkwalk binary." #: /var/www/html/cacti/include/global_settings.php:116 msgid "snmpgetnext Binary Path" msgstr "snmpgetnext binary locatie" #: /var/www/html/cacti/include/global_settings.php:117 msgid "The path to your snmpgetnext binary." msgstr "De locatie van de snmpgetnext binary." #: /var/www/html/cacti/include/global_settings.php:122 msgid "snmptrap Binary Path" msgstr "snmptrap binary locatie" #: /var/www/html/cacti/include/global_settings.php:123 msgid "The path to your snmptrap binary." msgstr "De locatie van de snmptrap binary." #: /var/www/html/cacti/include/global_settings.php:128 msgid "RRDtool Binary Path" msgstr "RRDtool binary locatie" #: /var/www/html/cacti/include/global_settings.php:129 msgid "The path to the rrdtool binary." msgstr "De locatie van de rrdtool binary." #: /var/www/html/cacti/include/global_settings.php:134 msgid "PHP Binary Path" msgstr "PHP binary locatie" #: /var/www/html/cacti/include/global_settings.php:135 msgid "" "The path to your PHP binary file (may require a php recompile to get this " "file)." msgstr "" "De locatie van de PHP binary (mogelijk is het opnieuw compileren van PHP " "noodzakelijk)." #: /var/www/html/cacti/include/global_settings.php:140 msgid "Logging" msgstr "Logging" #: /var/www/html/cacti/include/global_settings.php:145 msgid "Cacti Log Path" msgstr "Cacti log pad" #: /var/www/html/cacti/include/global_settings.php:146 msgid "" "The path to your Cacti log file (if blank, defaults to <path_cacti>/" "log/cacti.log)" msgstr "" "De locatie van het Cacti log bestand (indien leeg is dit standaard <" "path_cacti>/log/cacti.log)" #: /var/www/html/cacti/include/global_settings.php:152 msgid "Rotate the Cacti Log" msgstr "Roteer de Cacti log" #: /var/www/html/cacti/include/global_settings.php:153 msgid "This option will rotate the Cacti Log periodically." msgstr "Dit zal de Cacti Log periodiek roteren." #: /var/www/html/cacti/include/global_settings.php:158 msgid "Rotation Frequency" msgstr "Roteerfrequentie" #: /var/www/html/cacti/include/global_settings.php:159 msgid "At what frequency would you like to rotate your logs?" msgstr "Hoe vaak wilt u uw logbestanden geroteerd hebben?" #: /var/www/html/cacti/include/global_settings.php:165 msgid "Log Retention" msgstr "Log retentie" #: /var/www/html/cacti/include/global_settings.php:166 msgid "" "How many log files do you wish to retain? Use 0 to never remove any logs. " "(0-365)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:173 msgid "Alternate Poller Path" msgstr "" #: /var/www/html/cacti/include/global_settings.php:178 msgid "Spine Binary File Location" msgstr "" #: /var/www/html/cacti/include/global_settings.php:179 msgid "The path to Spine binary." msgstr "De locatie van de Spine binary." #: /var/www/html/cacti/include/global_settings.php:184 msgid "Spine Config File Path" msgstr "Spine configuratiebestand pad" #: /var/www/html/cacti/include/global_settings.php:185 msgid "" "The path to Spine configuration file. By default, in the cwd of spine, or /" "etc if not specified." msgstr "" "De locatie van het Spine configuratiebestand. Standaard staat deze in de cwd " "van Spine of in /etc als dit niet is gespecificeerd." #: /var/www/html/cacti/include/global_settings.php:190 #: /var/www/html/cacti/lib/functions.php:2386 #: /var/www/html/cacti/rrdcleaner.php:296 msgid "RRD Cleaner" msgstr "RRD Opruimen" #: /var/www/html/cacti/include/global_settings.php:195 msgid "RRDfile Auto Clean" msgstr "" #: /var/www/html/cacti/include/global_settings.php:196 msgid "" "Automatically archive or delete RRDfiles when their corresponding Data " "Sources are removed from Cacti" msgstr "" #: /var/www/html/cacti/include/global_settings.php:201 msgid "RRDfile Auto Clean Method" msgstr "" #: /var/www/html/cacti/include/global_settings.php:202 msgid "" "The method used to Clean RRDfiles from Cacti after their Data Sources are " "deleted." msgstr "" "De methode die moet worden gebruikt om RRD bestanden op te ruimen nadat de " "data bronnen zijn verwijderd." #: /var/www/html/cacti/include/global_settings.php:208 msgid "Archive directory" msgstr "Archiefdirectorie" #: /var/www/html/cacti/include/global_settings.php:209 msgid "" "This is the directory where RRDfiles are moved for archiving" msgstr "" #: /var/www/html/cacti/include/global_settings.php:217 msgid "Event Logging" msgstr "Gebeurtenis registratie" #: /var/www/html/cacti/include/global_settings.php:222 msgid "Log Destination" msgstr "Log bestemming" #: /var/www/html/cacti/include/global_settings.php:223 msgid "How will Cacti handle event logging." msgstr "Hoe moet Cacti omgaan met gebeurtenis registratie." #: /var/www/html/cacti/include/global_settings.php:229 msgid "Web Events" msgstr "" #: /var/www/html/cacti/include/global_settings.php:230 msgid "What Cacti website messages should be placed in the log." msgstr "" "Welke Cacti website berichten zouden in het log bestand moeten worden " "geplaatst." #: /var/www/html/cacti/include/global_settings.php:235 msgid "SNMP Messages" msgstr "SNMP berichten" #: /var/www/html/cacti/include/global_settings.php:239 msgid "Graph Syntax" msgstr "Grafiek syntax" #: /var/www/html/cacti/include/global_settings.php:243 msgid "Developer Mode" msgstr "Ontwikkelmodus" #: /var/www/html/cacti/include/global_settings.php:249 msgid "Log Settings" msgstr "Log instellingen" #: /var/www/html/cacti/include/global_settings.php:254 msgid "Generic Log Level" msgstr "Generiek log niveau" #: /var/www/html/cacti/include/global_settings.php:255 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: /var/www/html/cacti/include/global_settings.php:261 msgid "Selective File Debug" msgstr "" #: /var/www/html/cacti/include/global_settings.php:262 msgid "" "Select which files you wish to place in Debug mode regardless of the Generic " "Log Level setting. Any files selected will be treated as they are in Debug " "mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:268 msgid "Selective Plugin Debug" msgstr "" #: /var/www/html/cacti/include/global_settings.php:269 msgid "" "Select which Plugins you wish to place in Debug mode regardless of the " "Generic Log Level setting. Any files used by this plugin will be treated as " "they are in Debug mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:275 msgid "Selective Device Debug" msgstr "" #: /var/www/html/cacti/include/global_settings.php:276 msgid "" "A comma delimited list of Device ID's that you wish to be in Debug mode " "during data collection. This Debug level is only in place during the Cacti " "polling process." msgstr "" "Een komma gescheiden lijst van apparaat ID's die u in debug modus wilt " "hebben gedurende de data collectie. Dit debug level is alleen van toepassing " "tijdens het Cacti polling proces." #: /var/www/html/cacti/include/global_settings.php:283 msgid "Poller Syslog/Eventlog Selection" msgstr "" #: /var/www/html/cacti/include/global_settings.php:284 msgid "" "If you are using the Syslog/Eventlog, What Cacti poller messages should be " "placed in the Syslog/Eventlog." msgstr "" #: /var/www/html/cacti/include/global_settings.php:289 msgid "Statistics" msgstr "Statistieken" #: /var/www/html/cacti/include/global_settings.php:293 #: /var/www/html/cacti/lib/clog_webapi.php:434 #: /var/www/html/cacti/utilities.php:1086 msgid "Warnings" msgstr "Waarschuwingen" #: /var/www/html/cacti/include/global_settings.php:297 #: /var/www/html/cacti/lib/clog_webapi.php:435 #: /var/www/html/cacti/utilities.php:1087 msgid "Errors" msgstr "Foutmeldingen" #: /var/www/html/cacti/include/global_settings.php:303 msgid "Other Defaults" msgstr "Overige standaard instellingen" #: /var/www/html/cacti/include/global_settings.php:308 msgid "Has Graphs/Data Sources Checked" msgstr "" #: /var/www/html/cacti/include/global_settings.php:309 msgid "Should the Has Graphs and Has Data Sources be Checked by Default." msgstr "" #: /var/www/html/cacti/include/global_settings.php:314 msgid "Graph Template Image Format" msgstr "" #: /var/www/html/cacti/include/global_settings.php:315 msgid "The default Image Format to be used for all new Graph Templates." msgstr "" #: /var/www/html/cacti/include/global_settings.php:321 msgid "Graph Template Height" msgstr "Grafiek template hoogte" #: /var/www/html/cacti/include/global_settings.php:322 #: /var/www/html/cacti/include/global_settings.php:330 msgid "The default Graph Width to be used for all new Graph Templates." msgstr "" #: /var/www/html/cacti/include/global_settings.php:329 msgid "Graph Template Width" msgstr "Grafiek template breedte" #: /var/www/html/cacti/include/global_settings.php:337 msgid "Language Support" msgstr "Taal support" #: /var/www/html/cacti/include/global_settings.php:338 msgid "" "Choose 'enabled' to allow the localization of Cacti. The strict mode " "requires that the requested language will also be supported by all plugins " "being installed at your system. If that's not the fact everything will be " "displayed in English." msgstr "" #: /var/www/html/cacti/include/global_settings.php:344 msgid "Language" msgstr "Taal" #: /var/www/html/cacti/include/global_settings.php:345 msgid "Default language for this system." msgstr "Standaard taal voor het systeem." #: /var/www/html/cacti/include/global_settings.php:351 msgid "Auto Language Detection" msgstr "Automatische taal detectie" #: /var/www/html/cacti/include/global_settings.php:352 msgid "" "Allow to automatically determine the 'default' language of the user and " "provide it at login time if that language is supported by Cacti. If " "disabled, the default language will be in force until the user elects " "another language." msgstr "" #: /var/www/html/cacti/include/global_settings.php:358 #: /var/www/html/cacti/include/global_settings.php:1873 msgid "Date Display Format" msgstr "Datumnotatie" #: /var/www/html/cacti/include/global_settings.php:359 msgid "The System default date format to use in Cacti." msgstr "" #: /var/www/html/cacti/include/global_settings.php:365 #: /var/www/html/cacti/include/global_settings.php:1880 msgid "Date Separator" msgstr "Datum scheidingsteken" #: /var/www/html/cacti/include/global_settings.php:366 msgid "The System default date separator to be used in Cacti." msgstr "" #: /var/www/html/cacti/include/global_settings.php:372 msgid "Other Settings" msgstr "Andere instellingen" #: /var/www/html/cacti/include/global_settings.php:377 #: /var/www/html/cacti/utilities.php:271 msgid "RRDtool Version" msgstr "RRDtool versie" #: /var/www/html/cacti/include/global_settings.php:378 msgid "The version of RRDtool that you have installed." msgstr "De versie van RRDtool die u heeft geïnstalleerd." #: /var/www/html/cacti/include/global_settings.php:384 msgid "Graph Permission Method" msgstr "Grafiek autorisatie methode" #: /var/www/html/cacti/include/global_settings.php:385 msgid "" "There are two methods for determining a User's Graph Permissions. The first " "is 'Permissive'. Under the 'Permissive' setting, a User only needs access " "to either the Graph, Device or Graph Template to gain access to the Graphs " "that apply to them. Under 'Restrictive', the User must have access to the " "Graph, the Device, and the Graph Template to gain access to the Graph." msgstr "" #: /var/www/html/cacti/include/global_settings.php:388 msgid "Permissive" msgstr "Toegeeflijk" #: /var/www/html/cacti/include/global_settings.php:388 msgid "Restrictive" msgstr "Beperkte toegang" #: /var/www/html/cacti/include/global_settings.php:392 msgid "Graph/Data Source Creation Method" msgstr "" #: /var/www/html/cacti/include/global_settings.php:393 msgid "" "If set to Simple, Graphs and Data Sources can only be created from New " "Graphs. If Advanced, legacy Graph and Data Source creation is supported." msgstr "" #: /var/www/html/cacti/include/global_settings.php:395 msgid "Advanced" msgstr "Geavanceerd" #: /var/www/html/cacti/include/global_settings.php:395 msgid "Simple" msgstr "Simpel" #: /var/www/html/cacti/include/global_settings.php:398 msgid "Show Form/Setting Help Inline" msgstr "" #: /var/www/html/cacti/include/global_settings.php:399 msgid "" "When checked, Form and Setting Help will be show inline. Otherwise it will " "be presented when hovering over the help button." msgstr "" #: /var/www/html/cacti/include/global_settings.php:404 msgid "Deletion Verification" msgstr "Verifieer verwijdering" #: /var/www/html/cacti/include/global_settings.php:405 msgid "Prompt user before item deletion." msgstr "Waarschuw de gebruiker voor verwijderen." #: /var/www/html/cacti/include/global_settings.php:410 msgid "Hide Cacti Console" msgstr "Verberg Cacti console" #: /var/www/html/cacti/include/global_settings.php:411 msgid "" "For use with Cacti's External Link Support. Using this setting, you can " "replace the Cacti Console with your own page." msgstr "" #: /var/www/html/cacti/include/global_settings.php:417 msgid "Enable Drag-N-Drop" msgstr "Activeer Drag-N-Drop (slepen en loslaten)" #: /var/www/html/cacti/include/global_settings.php:418 msgid "" "Some of Cacti's interfaces support Drag-N-Drop. If checked this option will " "be enabled. Note: For visually impaired user, this option may be disabled." msgstr "" #: /var/www/html/cacti/include/global_settings.php:423 msgid "Force Connections over HTTPS" msgstr "Forceer HTTPS verbinding" #: /var/www/html/cacti/include/global_settings.php:424 msgid "" "When checked, any attempts to access Cacti will be redirected to HTTPS to " "ensure high security." msgstr "" #: /var/www/html/cacti/include/global_settings.php:435 msgid "Enable Automatic Graph Creation" msgstr "" #: /var/www/html/cacti/include/global_settings.php:436 msgid "" "When disabled, Cacti Automation will not actively create any Graph.This is " "useful when adjusting Host settings so as to avoid creating new Graphs each " "time you save an object. Invoking Automation Rules manually will still be " "possible." msgstr "" #: /var/www/html/cacti/include/global_settings.php:443 msgid "Enable Automatic Tree Item Creation" msgstr "" #: /var/www/html/cacti/include/global_settings.php:444 msgid "" "When disabled, Cacti Automation will not actively create any Tree Item.This " "is useful when adjusting Host or Graph settings so as to avoid creating new " "Tree Entries each time you save an object. Invoking Rules manually will " "still be possible." msgstr "" #: /var/www/html/cacti/include/global_settings.php:452 msgid "General Defaults" msgstr "Algemene standaard waarden" #: /var/www/html/cacti/include/global_settings.php:458 msgid "The default Device Template all new Devices." msgstr "De standaard apparaat template voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:466 msgid "The default Site for all new Devices." msgstr "De standaard locatie voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:474 msgid "The default Poller for all new Devices." msgstr "De standaard poller voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:481 msgid "Device Threads" msgstr "Apparaat threads" #: /var/www/html/cacti/include/global_settings.php:482 msgid "" "The default number of Device Threads. This is only applicable when using " "the spine Data Collector." msgstr "" #: /var/www/html/cacti/include/global_settings.php:488 msgid "Re-index Method for Data Queries" msgstr "Herindexeer methode voor data queries" #: /var/www/html/cacti/include/global_settings.php:489 msgid "The default Re-index Method to use for all Data Queries." msgstr "" #: /var/www/html/cacti/include/global_settings.php:495 msgid "SNMP Defaults" msgstr "" #: /var/www/html/cacti/include/global_settings.php:501 msgid "Default SNMP version for all new Devices." msgstr "Standaard SNMP versie voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:508 msgid "Default SNMP read community for all new Devices." msgstr "Standaard SNMP read community voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:514 msgid "Security Level" msgstr "Beveiligingsniveau" #: /var/www/html/cacti/include/global_settings.php:515 msgid "Default SNMP v3 Security Level for all new Devices." msgstr "Standaard SNMP v3 beveiligingsniveau voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:521 msgid "Auth User (v3)" msgstr "Auth gebruikersnaam (v3)" #: /var/www/html/cacti/include/global_settings.php:522 msgid "Default SNMP v3 Authorization User for all new Devices." msgstr "" "Standaard SNMP v3 autorisatie gebruikersnaam voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:529 msgid "Auth Protocol (v3)" msgstr "Auth protocol (v3)" #: /var/www/html/cacti/include/global_settings.php:530 msgid "Default SNMPv3 Authorization Protocol for all new Devices." msgstr "Standaard SNMP v3 autorisatieprotocol voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:535 msgid "Auth Passphrase (v3)" msgstr "Auth wachtwoord (v3)" #: /var/www/html/cacti/include/global_settings.php:536 msgid "Default SNMP v3 Authorization Passphrase for all new Devices." msgstr "Standaard SNMP v3 autorisatie wachtwoord voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:543 msgid "Privacy Protocol (v3)" msgstr "Privacy protocol (v3)" #: /var/www/html/cacti/include/global_settings.php:544 msgid "Default SNMPv3 Privacy Protocol for all new Devices." msgstr "Standaard SNMP v3 privacy protocol voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:550 msgid "Privacy Passphrase (v3)." msgstr "Privacy wachtwoord (v3)." #: /var/www/html/cacti/include/global_settings.php:551 msgid "Default SNMPv3 Privacy Passphrase for all new Devices." msgstr "Standaard SNMP v3 privacy wachtwoord voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:558 msgid "Enter the SNMP v3 Context for all new Devices." msgstr "Voer de SNMP v3 context in voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:567 msgid "" "Default SNMP v3 Engine Id for all new Devices. Leave this field empty to use " "the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "" #: /var/www/html/cacti/include/global_settings.php:574 msgid "Port Number" msgstr "Poortnummer" #: /var/www/html/cacti/include/global_settings.php:575 msgid "Default UDP Port for all new Devices. Typically 161." msgstr "" "De standaard UDP poort voor alle nieuwe apparaten. Normaalgesproken is dit " "161." #: /var/www/html/cacti/include/global_settings.php:583 msgid "Default SNMP timeout in milli-seconds for all new Devices." msgstr "Standaard SNMP timeout in milliseconden voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:591 msgid "Default SNMP retries for all new Devices." msgstr "Het standaard aantal SNMP pogingen voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:598 msgid "Availability/Reachability" msgstr "" #: /var/www/html/cacti/include/global_settings.php:604 msgid "" "Default Availability/Reachability for all new Devices. The method Cacti " "will use to determine if a Device is available for polling.
    NOTE: It " "is recommended that, at a minimum, SNMP always be selected." msgstr "" #: /var/www/html/cacti/include/global_settings.php:610 msgid "Ping Type" msgstr "Ping type" #: /var/www/html/cacti/include/global_settings.php:611 msgid "Default Ping type for all new Devices.
    " msgstr "De standaard ping methode voor alle nieuwe apparaten." #: /var/www/html/cacti/include/global_settings.php:618 msgid "" "Default Ping Port for all new Devices. With TCP, Cacti will attempt to Syn " "the port. With UDP, Cacti requires either a successful connection, or a " "port not reachable error to determine if the Device is up or not." msgstr "" #: /var/www/html/cacti/include/global_settings.php:626 msgid "" "Default Ping Timeout value in milli-seconds for all new Devices. The " "timeout values to use for Device SMMP, ICMP, UDP and TCP pinging. ICMP " "Pings will be rounded up to the nearest second. TCP and UDP connection " "timeouts on Windows are controlled by the operating system, and are " "therefore not recommended on Windows." msgstr "" #: /var/www/html/cacti/include/global_settings.php:634 msgid "" "The number of times Cacti will attempt to ping a Device before marking it as " "down." msgstr "" #: /var/www/html/cacti/include/global_settings.php:641 msgid "Up/Down Settings" msgstr "Online/Offline instellingen" #: /var/www/html/cacti/include/global_settings.php:646 msgid "Failure Count" msgstr "" #: /var/www/html/cacti/include/global_settings.php:647 msgid "" "The number of polling intervals a Device must be down before logging an " "error and reporting Device as down." msgstr "" #: /var/www/html/cacti/include/global_settings.php:654 msgid "Recovery Count" msgstr "" #: /var/www/html/cacti/include/global_settings.php:655 msgid "" "The number of polling intervals a Device must remain up before returning " "Device to an up status and issuing a notice." msgstr "" #: /var/www/html/cacti/include/global_settings.php:664 msgid "Theme Settings" msgstr "Thema instellingen" #: /var/www/html/cacti/include/global_settings.php:669 #: /var/www/html/cacti/include/global_settings.php:832 #: /var/www/html/cacti/include/global_settings.php:1840 msgid "Theme" msgstr "Thema" #: /var/www/html/cacti/include/global_settings.php:670 #: /var/www/html/cacti/include/global_settings.php:1841 #: /var/www/html/cacti/install/functions.php:442 msgid "Please select one of the available Themes to skin your Cacti with." msgstr "Selecteer een van de beschikbare thema's om Cacti in weer te geven." #: /var/www/html/cacti/include/global_settings.php:676 msgid "Table Settings" msgstr "Tabel instellingen" #: /var/www/html/cacti/include/global_settings.php:681 msgid "Rows Per Page" msgstr "Rijen per pagina" #: /var/www/html/cacti/include/global_settings.php:682 msgid "The default number of rows to display on for a table." msgstr "Het standaard aantal rijen dat in een tabel wordt getoond." #: /var/www/html/cacti/include/global_settings.php:688 msgid "Autocomplete Enabled" msgstr "" #: /var/www/html/cacti/include/global_settings.php:689 msgid "" "In very large systems, select lists can slow the user interface " "significantly. If this option is enabled, Cacti will use autocomplete " "callbacks to populate the select list systematically. Note: autocomplete is " "forcibly disabled on the Classic theme." msgstr "" #: /var/www/html/cacti/include/global_settings.php:697 msgid "Autocomplete Rows" msgstr "" #: /var/www/html/cacti/include/global_settings.php:698 msgid "" "The default number of rows to return from an autocomplete based select " "pattern match." msgstr "" #: /var/www/html/cacti/include/global_settings.php:704 msgid "Graph/Data Source/Data Query Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:709 msgid "Maximum Title Length" msgstr "Maximale titel lengte" #: /var/www/html/cacti/include/global_settings.php:710 msgid "The maximum allowable Graph or Data Source titles." msgstr "" #: /var/www/html/cacti/include/global_settings.php:717 msgid "Data Source Field Length" msgstr "" #: /var/www/html/cacti/include/global_settings.php:718 msgid "The maximum Data Query field length." msgstr "" #: /var/www/html/cacti/include/global_settings.php:725 msgid "Graph Creation" msgstr "" #: /var/www/html/cacti/include/global_settings.php:730 msgid "Default Graph Type" msgstr "Standaard grafiek type" #: /var/www/html/cacti/include/global_settings.php:731 msgid "When creating graphs, what Graph Type would you like pre-selected?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:734 msgid "All Types" msgstr "Alle types" #: /var/www/html/cacti/include/global_settings.php:734 msgid "By Template/Data Query" msgstr "" #: /var/www/html/cacti/include/global_settings.php:742 msgid "Default Log Tail Lines" msgstr "" #: /var/www/html/cacti/include/global_settings.php:743 msgid "Default number of lines of the Cacti log file to tail." msgstr "" #: /var/www/html/cacti/include/global_settings.php:749 msgid "Maximum number of rows per page" msgstr "Maximum aantal rijen per pagina" #: /var/www/html/cacti/include/global_settings.php:750 msgid "" "User defined number of lines for the CLOG to tail when selecting 'All lines'." msgstr "" #: /var/www/html/cacti/include/global_settings.php:757 msgid "Log Tail Refresh" msgstr "" #: /var/www/html/cacti/include/global_settings.php:758 msgid "How often do you want the Cacti log display to update." msgstr "" #: /var/www/html/cacti/include/global_settings.php:764 msgid "RRDtool Graph Watermark" msgstr "RRDtool grafiek watermerk" #: /var/www/html/cacti/include/global_settings.php:769 msgid "Watermark Text" msgstr "Watermerk tekst" #: /var/www/html/cacti/include/global_settings.php:770 msgid "Text placed at the bottom center of every Graph." msgstr "" #: /var/www/html/cacti/include/global_settings.php:777 msgid "Log Viewer Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:782 msgid "Exclusion Regex" msgstr "" #: /var/www/html/cacti/include/global_settings.php:783 msgid "" "Any strings that match this regex will be excluded from the user display. " "For example, if you want to exclude all log lines that include the " "words 'Admin' or 'Login' you would type '(Admin || Login)'" msgstr "" #: /var/www/html/cacti/include/global_settings.php:790 msgid "Real-time Graphs" msgstr "Real-time grafieken" #: /var/www/html/cacti/include/global_settings.php:795 msgid "Enable Real-time Graphing" msgstr "Activeer real-time grafieken maken" #: /var/www/html/cacti/include/global_settings.php:796 msgid "" "When an option is checked, users will be able to put Cacti into Real-time " "mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:802 msgid "This timespan you wish to see on the default graph." msgstr "" #: /var/www/html/cacti/include/global_settings.php:808 #: /var/www/html/cacti/utilities.php:1991 msgid "Refresh Interval" msgstr "Vernieuwingsinterval" #: /var/www/html/cacti/include/global_settings.php:809 msgid "This is the time between graph updates." msgstr "Dit is de tijd tussen grafiek updates." #: /var/www/html/cacti/include/global_settings.php:815 msgid "Cache Directory" msgstr "Cache directorie" #: /var/www/html/cacti/include/global_settings.php:816 msgid "" "This is the location, on the web server where the RRDfiles and PNG files " "will be cached. This cache will be managed by the poller. Make sure you " "have the correct read and write permissions on this folder" msgstr "" #: /var/www/html/cacti/include/global_settings.php:823 msgid "RRDtool Graph Font Control" msgstr "" #: /var/www/html/cacti/include/global_settings.php:828 msgid "Font Selection Method" msgstr "Lettertype selectiemethode" #: /var/www/html/cacti/include/global_settings.php:829 msgid "How do you wish fonts to be handled by default?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:832 #: /var/www/html/cacti/lib/api_device.php:443 msgid "System" msgstr "Systeem" #: /var/www/html/cacti/include/global_settings.php:835 msgid "Default Font" msgstr "Standaard lettertype" #: /var/www/html/cacti/include/global_settings.php:836 msgid "" "When not using Theme based font control, the Pangon font-config font name to " "use for all Graphs. Optionally, you may leave blank and control font " "settings on a per object basis." msgstr "" #: /var/www/html/cacti/include/global_settings.php:838 #: /var/www/html/cacti/include/global_settings.php:853 #: /var/www/html/cacti/include/global_settings.php:868 #: /var/www/html/cacti/include/global_settings.php:883 #: /var/www/html/cacti/include/global_settings.php:898 msgid "Enter Valid Font Config Value" msgstr "" #: /var/www/html/cacti/include/global_settings.php:842 #: /var/www/html/cacti/include/global_settings.php:2031 msgid "Title Font Size" msgstr "Lettertype grootte titel" #: /var/www/html/cacti/include/global_settings.php:843 #: /var/www/html/cacti/include/global_settings.php:2032 msgid "The size of the font used for Graph Titles" msgstr "De grootte van het lettertype dat wordt gebruikt voor grafiek titels" #: /var/www/html/cacti/include/global_settings.php:850 msgid "Title Font Setting" msgstr "Titel lettertype instellingen" #: /var/www/html/cacti/include/global_settings.php:851 msgid "" "The font to use for Graph Titles. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" "Het lettertype dat wordt gebruikt voor grafiek titels. Vul een geldig True " "Type Font in of een geldig Pango lettertype-configuratie waarde." #: /var/www/html/cacti/include/global_settings.php:857 #: /var/www/html/cacti/include/global_settings.php:2044 msgid "Legend Font Size" msgstr "Legenda lettertype grootte" #: /var/www/html/cacti/include/global_settings.php:858 #: /var/www/html/cacti/include/global_settings.php:2045 msgid "The size of the font used for Graph Legend items" msgstr "" "De grootte van het lettertype dat wordt gebruikt voor grafiek legenda items" #: /var/www/html/cacti/include/global_settings.php:865 msgid "Legend Font Setting" msgstr "Legenda lettertype instellingen" #: /var/www/html/cacti/include/global_settings.php:866 msgid "" "The font to use for Graph Legends. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" "Het lettertype dat wordt gebruikt voor grafiek legenda’s. Vul een geldig " "True Type Font in of een geldig Pando lettertype-configuratie waarde." #: /var/www/html/cacti/include/global_settings.php:872 #: /var/www/html/cacti/include/global_settings.php:2057 msgid "Axis Font Size" msgstr "As lettertype grootte" #: /var/www/html/cacti/include/global_settings.php:873 #: /var/www/html/cacti/include/global_settings.php:2058 msgid "The size of the font used for Graph Axis" msgstr "De grootte van het lettertype dat wordt gebruikt voor grafiek-as" #: /var/www/html/cacti/include/global_settings.php:880 msgid "Axis Font Setting" msgstr "As lettertype instellingen" #: /var/www/html/cacti/include/global_settings.php:881 msgid "" "The font to use for Graph Axis items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" "Het lettertype dat wordt gebruikt voor de grafiek as items. Vul een geldig " "True Type Font in of een geldig Pando lettertype-configuratie waarde." #: /var/www/html/cacti/include/global_settings.php:887 #: /var/www/html/cacti/include/global_settings.php:2070 msgid "Unit Font Size" msgstr "Eenheid lettertype grootte" #: /var/www/html/cacti/include/global_settings.php:888 #: /var/www/html/cacti/include/global_settings.php:2071 msgid "The size of the font used for Graph Units" msgstr "" "De grootte van het lettertype dat wordt gebruikt voor de grafiek eenheden" #: /var/www/html/cacti/include/global_settings.php:895 msgid "Unit Font Setting" msgstr "Eenheid lettertype instellingen" #: /var/www/html/cacti/include/global_settings.php:896 msgid "" "The font to use for Graph Unit items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" "Het lettertype dat wordt gebruikt voor de grafiek eenheden. Vul een geldig " "Trye Type Font in of een geldig pando lettertype-configuratie waarde." #: /var/www/html/cacti/include/global_settings.php:909 msgid "Data Collection Enabled" msgstr "Data verzameling geactiveerd" #: /var/www/html/cacti/include/global_settings.php:910 msgid "If you wish to stop the polling process completely, uncheck this box." msgstr "" #: /var/www/html/cacti/include/global_settings.php:916 msgid "Poller Type" msgstr "Poller type" #: /var/www/html/cacti/include/global_settings.php:917 msgid "" "The poller type to use. This setting will take effect at next polling " "interval." msgstr "" #: /var/www/html/cacti/include/global_settings.php:924 msgid "" "The polling interval in use. This setting will effect how often RRDfiles " "are checked and updated.\n" "\t\t\tNOTE: If you change this value, you must re-populate the " "poller cache. Failure to do so, may result in lost data." msgstr "" #: /var/www/html/cacti/include/global_settings.php:931 msgid "Cron Interval" msgstr "Cron interval" #: /var/www/html/cacti/include/global_settings.php:932 msgid "" "The cron interval in use. You need to set this setting to the interval that " "your cron or scheduled task is currently running." msgstr "" #: /var/www/html/cacti/include/global_settings.php:938 msgid "Maximum Concurrent Poller Processes" msgstr "" #: /var/www/html/cacti/include/global_settings.php:939 msgid "" "The number of concurrent processes to execute. Using a higher number when " "using cmd.php will improve performance. Performance improvements in spine " "are best resolved with the threads parameter" msgstr "" #: /var/www/html/cacti/include/global_settings.php:946 msgid "Balance Process Load" msgstr "Balanceer proces belasting" #: /var/www/html/cacti/include/global_settings.php:947 msgid "" "If you choose this option, Cacti will attempt to balance the load of each " "poller process by equally distributing poller items per process." msgstr "" #: /var/www/html/cacti/include/global_settings.php:952 msgid "Disable increasing OID Check" msgstr "" #: /var/www/html/cacti/include/global_settings.php:953 msgid "Controls disabling check for increasing OID while walking OID tree." msgstr "" #: /var/www/html/cacti/include/global_settings.php:958 msgid "SNMP Bulkwalk Fetch Size" msgstr "" #: /var/www/html/cacti/include/global_settings.php:959 msgid "" "How many OID's should be returned per snmpbulkwalk request? For Devices " "with large SNMP trees, increasing this size will increase re-index " "performance over a WAN." msgstr "" #: /var/www/html/cacti/include/global_settings.php:977 msgid "Spine Specific Execution Parameters" msgstr "" #: /var/www/html/cacti/include/global_settings.php:982 msgid "Invalid Data Logging" msgstr "" #: /var/www/html/cacti/include/global_settings.php:983 msgid "" "How would you like Spine output errors logged? The options are: 'Detailed' " "which is similar to cmd.php logging; 'Summary' which provides the number of " "output errors per Device; and 'None', which does not provide error counts." msgstr "" #: /var/www/html/cacti/include/global_settings.php:988 #: /var/www/html/cacti/utilities.php:206 msgid "Summary" msgstr "Samenvatting" #: /var/www/html/cacti/include/global_settings.php:989 msgid "Detailed" msgstr "Gedetailleerd" #: /var/www/html/cacti/include/global_settings.php:993 msgid "Maximum Threads per Process" msgstr "" #: /var/www/html/cacti/include/global_settings.php:994 msgid "" "The maximum threads allowed per process. Using a higher number when using " "Spine will improve performance." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1001 msgid "Number of PHP Script Servers" msgstr "Aantal PHP Script servers" #: /var/www/html/cacti/include/global_settings.php:1002 msgid "" "The number of concurrent script server processes to run per Spine process. " "Settings between 1 and 10 are accepted. This parameter will help if you are " "running several threads and script server scripts." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1009 msgid "Script and Script Server Timeout Value" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1010 msgid "" "The maximum time that Cacti will wait on a script to complete. This timeout " "value is in seconds" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1017 msgid "The Maximum SNMP OIDs Per SNMP Get Request" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1018 msgid "" "The maximum number of SNMP get OIDs to issue per snmpbulkwalk request. " "Increasing this value speeds poller performance over slow links. The " "maximum value is 100 OIDs. Decreasing this value to 0 or 1 will disable " "snmpbulkwalk" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1032 msgid "Authentication Method" msgstr "Authenticatie methode" #: /var/www/html/cacti/include/global_settings.php:1033 msgid "" "
    None - No authentication will be used, all users will " "have full access.

    Built-in Authentication - Cacti handles user " "authentication, which allows you to create users and give them rights to " "different areas within Cacti.

    Web Basic Authentication - " "Authentication is handled by the web server. Users can be added or created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used.

    LDAP Authentication - " "Allows for authentication against a LDAP server. Users will be created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used. If PHPs LDAP module is not enabled, " "LDAP Authentication will not appear as a selectable option." "

    Multiple LDAP/AD Domain Authentication - Allows " "administrators to support multiple disparate groups from different LDAP/AD " "directories to access Cacti resources. Just as LDAP Authentication, the PHP " "LDAP module is required to utilize this method.
    " msgstr "" "
    Geen - Er zal geen authenticatie worden gebruikt. Alle " "gebruikers hebben volledige toegang.

    Ingebouwde authenticatie " "- Cacti hanteert gebruikt authenticatie, welke u in staat stelt om " "gebruikers aan te maken en voor verschillende gedeelten van Cacti rechten " "uit te delen.

    Web Basic authenticatie - authenticatie wordt " "beheerd door de webserve. Gebruikers kunnen automatisch worden aangemaakt of " "handmatig worden aangemaakt of de eerste login als de Template gebruiker is " "gedefinieerd, anders zullen de rechten van de gedefinieerde gastgebruiker " "worden gebruikt.

    LDAP authenticatie - Maakt gebruik van " "authenticatie van een LDAP server. Gebruikers zullen automatisch worden " "aangemaakt op de eerste login als de template gebruiker is gedefinieerd. " "Anders zullen de rechten van de gastgebruiker worden gebruikt. Als de PHP " "LDAP module niet is geactiveerd, zal LDAP authenticatie niet zichtbaar zijn " "als selecteerbare optie.

    Meerdere LDAP/AD domein authenticatie " "- Hiermee kunnen beheerders meerdere verschillende groepen van verschillende " "LDAP / AD-mappen ondersteunen om toegang te krijgen tot Cacti-bronnen. Net " "zoals met LDAP authenticatie, the PHP LDAP module is noodzakelijk om deze " "methode te kunnen gebruiken.
    " #: /var/www/html/cacti/include/global_settings.php:1039 msgid "Support Authentication Cookies" msgstr "Ondersteuning voor authenticatie cookies inschakelen" #: /var/www/html/cacti/include/global_settings.php:1040 msgid "" "If a user authenticates and selects 'Keep me signed in', an authentication " "cookie will be created on the user's computer allowing that user to stay " "logged in. The authentication cookie expires after 90 days of non-use." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1045 msgid "Special Users" msgstr "Speciale gebruikers" #: /var/www/html/cacti/include/global_settings.php:1050 msgid "Guest User" msgstr "Gastgebruiker" #: /var/www/html/cacti/include/global_settings.php:1051 msgid "The name of the guest user for viewing graphs; is 'No User' by default." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1053 #: /var/www/html/cacti/include/global_settings.php:1061 #: /var/www/html/cacti/user_domains.php:335 msgid "No User" msgstr "Geen gebruiker" #: /var/www/html/cacti/include/global_settings.php:1058 #: /var/www/html/cacti/user_domains.php:331 msgid "User Template" msgstr "Gebruiker template" #: /var/www/html/cacti/include/global_settings.php:1059 msgid "" "The name of the user that Cacti will use as a template for new Web Basic and " "LDAP users; is 'guest' by default." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1066 msgid "Local Account Complexity Requirements" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1071 msgid "Minimum Length" msgstr "Minimale lengte" #: /var/www/html/cacti/include/global_settings.php:1072 msgid "This is minimal length of allowed passwords." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1079 msgid "Require Mix Case" msgstr "Hoofdletter/kleine letter ontbreekt" #: /var/www/html/cacti/include/global_settings.php:1080 msgid "" "This will require new passwords to contains both lower and upper-case " "characters." msgstr "" "Dit maakt het gebruik van hoofdletters en kleine letters in nieuwe " "wachtwoorden verplicht." #: /var/www/html/cacti/include/global_settings.php:1085 msgid "Require Number" msgstr "Getal ontbreekt" #: /var/www/html/cacti/include/global_settings.php:1086 msgid "" "This will require new passwords to contain at least 1 numerical character." msgstr "" "Dit maakt het verplicht om tenminste 1 getal te gebruiken in een nieuw " "wachtwoord." #: /var/www/html/cacti/include/global_settings.php:1091 msgid "Require Special Character" msgstr "Speciaal karakter ontbreekt" #: /var/www/html/cacti/include/global_settings.php:1092 msgid "" "This will require new passwords to contain at least 1 special character." msgstr "" "Dit maakt het verplicht om in een nieuw wachtwoord tenminste 1 speciaal " "karakters te gebruiken." #: /var/www/html/cacti/include/global_settings.php:1097 msgid "Force Complexity Upon Old Passwords" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1098 msgid "" "This will require all old passwords to also meet the new complexity " "requirements upon login. If not met, it will force a password change." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1103 msgid "Expire Inactive Accounts" msgstr "Laat inactieve accounts vervallen" #: /var/www/html/cacti/include/global_settings.php:1104 msgid "" "This is maximum number of days before inactive accounts are disabled. The " "Admin account is excluded from this policy." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1117 msgid "Expire Password" msgstr "Laat wachtwoord vervallen" #: /var/www/html/cacti/include/global_settings.php:1118 msgid "This is maximum number of days before a password is set to expire." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1129 msgid "Password History" msgstr "Wachtwoord history" #: /var/www/html/cacti/include/global_settings.php:1130 msgid "Remember this number of old passwords and disallow re-using them." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1135 msgid "1 Change" msgstr "1 Wijziging" #: /var/www/html/cacti/include/global_settings.php:1136 #: /var/www/html/cacti/include/global_settings.php:1137 #: /var/www/html/cacti/include/global_settings.php:1138 #: /var/www/html/cacti/include/global_settings.php:1139 #: /var/www/html/cacti/include/global_settings.php:1140 #: /var/www/html/cacti/include/global_settings.php:1141 #: /var/www/html/cacti/include/global_settings.php:1142 #: /var/www/html/cacti/include/global_settings.php:1143 #: /var/www/html/cacti/include/global_settings.php:1144 #: /var/www/html/cacti/include/global_settings.php:1145 #: /var/www/html/cacti/include/global_settings.php:1146 #, php-format msgid "%d Changes" msgstr "%d Wijzigingen" #: /var/www/html/cacti/include/global_settings.php:1149 msgid "Account Locking" msgstr "Account blokkade" #: /var/www/html/cacti/include/global_settings.php:1154 msgid "Lock Accounts" msgstr "Blokkeer accounts" #: /var/www/html/cacti/include/global_settings.php:1155 msgid "Lock an account after this many failed attempts in 1 hour." msgstr "Blokkeer een account na dit aantal foutieve logins in 1 uur." #: /var/www/html/cacti/include/global_settings.php:1160 msgid "1 Attempt" msgstr "1 Poging" #: /var/www/html/cacti/include/global_settings.php:1161 #: /var/www/html/cacti/include/global_settings.php:1162 #: /var/www/html/cacti/include/global_settings.php:1163 #: /var/www/html/cacti/include/global_settings.php:1164 #: /var/www/html/cacti/include/global_settings.php:1165 #, php-format msgid "%d Attempts" msgstr "%d Pogingen" #: /var/www/html/cacti/include/global_settings.php:1168 msgid "Auto Unlock" msgstr "Automatisch deblokkeren" #: /var/www/html/cacti/include/global_settings.php:1169 msgid "" "An account will automatically be unlocked after this many minutes. Even if " "the correct password is entered, the account will not unlock until this time " "limit has been met. Max of 1440 minutes (1 Day)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1185 msgid "1 Day" msgstr "1 Dag" #: /var/www/html/cacti/include/global_settings.php:1188 msgid "LDAP General Settings" msgstr "Algemene LDAP instellingen" #: /var/www/html/cacti/include/global_settings.php:1192 #: /var/www/html/cacti/user_domains.php:358 msgid "Server" msgstr "Server" #: /var/www/html/cacti/include/global_settings.php:1193 msgid "The DNS hostname or IP address of the server." msgstr "De DNS hostname of IP adres van de server." #: /var/www/html/cacti/include/global_settings.php:1198 #: /var/www/html/cacti/user_domains.php:366 msgid "Port Standard" msgstr "Standaard poort" #: /var/www/html/cacti/include/global_settings.php:1199 msgid "TCP/UDP port for Non-SSL communications." msgstr "TCP/UDP poort voor niet-SSL verbindingen." #: /var/www/html/cacti/include/global_settings.php:1206 #: /var/www/html/cacti/user_domains.php:375 msgid "Port SSL" msgstr "SSL poort" #: /var/www/html/cacti/include/global_settings.php:1207 #: /var/www/html/cacti/user_domains.php:376 msgid "TCP/UDP port for SSL communications." msgstr "TCP/UDP poort voor SSL verbindingen." #: /var/www/html/cacti/include/global_settings.php:1214 #: /var/www/html/cacti/user_domains.php:384 msgid "Protocol Version" msgstr "Procotol versie" #: /var/www/html/cacti/include/global_settings.php:1215 #: /var/www/html/cacti/user_domains.php:385 msgid "Protocol Version that the server supports." msgstr "Protocol versie die de server ondersteund." #: /var/www/html/cacti/include/global_settings.php:1221 #: /var/www/html/cacti/user_domains.php:391 msgid "Encryption" msgstr "Encryptie" #: /var/www/html/cacti/include/global_settings.php:1222 #: /var/www/html/cacti/user_domains.php:392 msgid "" "Encryption that the server supports. TLS is only supported by Protocol " "Version 3." msgstr "" "Encryptie die de server ondersteund. TLS is alleen ondersteund door protocol " "versie 3." #: /var/www/html/cacti/include/global_settings.php:1228 #: /var/www/html/cacti/user_domains.php:398 msgid "Referrals" msgstr "Verwijzingen" #: /var/www/html/cacti/include/global_settings.php:1229 #: /var/www/html/cacti/user_domains.php:399 msgid "" "Enable or Disable LDAP referrals. If disabled, it may increase the speed of " "searches." msgstr "" "Activeer of deactiveer LDAP verwijzingen. Indien uitgeschakeld kan het de " "snelheid van het zoeken versnellen." #: /var/www/html/cacti/include/global_settings.php:1235 #: /var/www/html/cacti/user_domains.php:405 msgid "Mode" msgstr "Modus" #: /var/www/html/cacti/include/global_settings.php:1236 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the user's " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the user's Distinguished Name (DN)." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1242 #: /var/www/html/cacti/user_domains.php:412 msgid "Distinguished Name (DN)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1243 #: /var/www/html/cacti/user_domains.php:413 msgid "" "Distinguished Name syntax, such as for windows: \"<username>" "@win2kdomain.local\" or for OpenLDAP: \"uid=<username>," "ou=people,dc=domain,dc=local\". \"<username>\" is replaced with " "the username that was supplied at the login prompt. This is only used when " "in \"No Searching\" mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1248 #: /var/www/html/cacti/user_domains.php:419 msgid "Require Group Membership" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1249 #: /var/www/html/cacti/user_domains.php:420 msgid "" "Require user to be member of group to authenticate. Group settings must be " "set for this to work, enabling without proper group settings will cause " "authentication failure." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1254 #: /var/www/html/cacti/user_domains.php:425 msgid "LDAP Group Settings" msgstr "LDAP groep instellingen" #: /var/www/html/cacti/include/global_settings.php:1258 #: /var/www/html/cacti/user_domains.php:429 msgid "Group Distinguished Name (DN)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1259 #: /var/www/html/cacti/user_domains.php:430 msgid "Distinguished Name of the group that user must have membership." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1264 #: /var/www/html/cacti/user_domains.php:436 msgid "Group Member Attribute" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1265 #: /var/www/html/cacti/user_domains.php:437 msgid "Name of the attribute that contains the usernames of the members." msgstr "Naam van het attribuut dat de gebruikersnaam van de leden bevat." #: /var/www/html/cacti/include/global_settings.php:1270 #: /var/www/html/cacti/user_domains.php:443 msgid "Group Member Type" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1271 #: /var/www/html/cacti/user_domains.php:444 msgid "" "Defines if users use full Distinguished Name or just Username in the defined " "Group Member Attribute." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1274 msgid "Distinguished Name" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1277 #: /var/www/html/cacti/user_domains.php:450 msgid "LDAP Specific Search Settings" msgstr "LDAP specifieke zoekinstellingen" #: /var/www/html/cacti/include/global_settings.php:1281 #: /var/www/html/cacti/user_domains.php:454 msgid "Search Base" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1282 msgid "" "Search base for searching the LDAP directory, such as 'dc=win2kdomain," "dc=local' or 'ou=people,dc=domain,dc=local'." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1287 #: /var/www/html/cacti/user_domains.php:461 msgid "Search Filter" msgstr "Zoekfilter" #: /var/www/html/cacti/include/global_settings.php:1288 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: '(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))' or for OpenLDAP: " "'(&(objectClass=account)(uid=<username>))'. '<username>' " "is replaced with the username that was supplied at the login prompt. " msgstr "" #: /var/www/html/cacti/include/global_settings.php:1293 #: /var/www/html/cacti/user_domains.php:468 msgid "Search Distinguished Name (DN)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1294 #: /var/www/html/cacti/user_domains.php:469 msgid "" "Distinguished Name for Specific Searching binding to the LDAP directory." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1299 #: /var/www/html/cacti/user_domains.php:475 msgid "Search Password" msgstr "Zoek wachtwoord" #: /var/www/html/cacti/include/global_settings.php:1300 #: /var/www/html/cacti/user_domains.php:476 msgid "Password for Specific Searching binding to the LDAP directory." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1307 msgid "URL Linking" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1312 msgid "Server Base URL" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1313 msgid "" "This is a the server location that will be used for links to the Cacti site." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1320 msgid "" "Emailing Options
    Send a Test Email" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1324 msgid "Test Email" msgstr "Test e-mail" #: /var/www/html/cacti/include/global_settings.php:1325 msgid "" "This is a Email account used for sending a test message to ensure everything " "is working properly." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1330 msgid "Mail Services" msgstr "Mail diensten" #: /var/www/html/cacti/include/global_settings.php:1331 msgid "Which mail service to use in order to send mail" msgstr "" "Welke mail service moet er worden gebruikt voor het verzenden van e-mail" #: /var/www/html/cacti/include/global_settings.php:1333 #: /var/www/html/cacti/include/global_settings.php:1334 msgid "PHP Mail() Function" msgstr "PHP mail() functie" #: /var/www/html/cacti/include/global_settings.php:1334 #: /var/www/html/cacti/lib/functions.php:3990 msgid "SMTP" msgstr "SMTP" #: /var/www/html/cacti/include/global_settings.php:1334 #: /var/www/html/cacti/lib/functions.php:3985 msgid "Sendmail" msgstr "Sendmail" #: /var/www/html/cacti/include/global_settings.php:1337 msgid "Ping Mail Server" msgstr "Ping mailserver" #: /var/www/html/cacti/include/global_settings.php:1338 msgid "Ping the Mail Server before sending test Email?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1344 #: /var/www/html/cacti/lib/html_reports.php:186 msgid "From Email Address" msgstr "Vanaf e-mailadres" #: /var/www/html/cacti/include/global_settings.php:1345 msgid "This is the Email address that the Email will appear from." msgstr "Dit is het afzender e-mailadres." #: /var/www/html/cacti/include/global_settings.php:1350 #: /var/www/html/cacti/lib/html_reports.php:178 msgid "From Name" msgstr "Afzender naam" #: /var/www/html/cacti/include/global_settings.php:1351 msgid "This is the actual name that the Email will appear from." msgstr "Dit is de afzender naam." #: /var/www/html/cacti/include/global_settings.php:1356 msgid "Word Wrap" msgstr "Tekstterugloop" #: /var/www/html/cacti/include/global_settings.php:1357 msgid "" "This is how many characters will be allowed before a line in the Email is " "automatically word wrapped. (0 = Disabled)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1364 msgid "Sendmail Options" msgstr "Sendmail opties" #: /var/www/html/cacti/include/global_settings.php:1369 #: /var/www/html/cacti/lib/functions.php:3985 msgid "Sendmail Path" msgstr "Sendmail path" #: /var/www/html/cacti/include/global_settings.php:1370 msgid "" "This is the path to sendmail on your server. (Only used if Sendmail is " "selected as the Mail Service)" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1376 msgid "SMTP Options" msgstr "SMTP opties" #: /var/www/html/cacti/include/global_settings.php:1381 msgid "SMTP Hostname" msgstr "SMTP hostname" #: /var/www/html/cacti/include/global_settings.php:1382 msgid "" "This is the hostname/IP of the SMTP Server you will send the Email to. For " "failover, separate your hosts using a semi-colon." msgstr "" "Dit is de hostname/IP van de SMTP server waar de e-mail naartoe wordt " "verzonden. Voor een failover, gebruik een puntkomma om meerdere hosts te " "gebruiken." #: /var/www/html/cacti/include/global_settings.php:1388 msgid "SMTP Port" msgstr "SMTP poort" #: /var/www/html/cacti/include/global_settings.php:1389 msgid "The port on the SMTP Server to use." msgstr "De poort van de SMTP server." #: /var/www/html/cacti/include/global_settings.php:1396 msgid "SMTP Username" msgstr "SMTP gebruikersnaam" #: /var/www/html/cacti/include/global_settings.php:1397 msgid "" "The username to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" "De gebruikersnaam om in te loggen op de SMTP server. (Laat leeg indien " "authenticatie niet nodig is.)" #: /var/www/html/cacti/include/global_settings.php:1402 msgid "SMTP Password" msgstr "SMTP wachtwoord" #: /var/www/html/cacti/include/global_settings.php:1403 msgid "" "The password to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" "Het wachtwoord om in te loggen op de SMTP server. (Laat leeg indien " "authenticatie niet nodig is.)" #: /var/www/html/cacti/include/global_settings.php:1408 msgid "SMTP Security" msgstr "SMTP Security" #: /var/www/html/cacti/include/global_settings.php:1409 msgid "The encryption method to use for the Email." msgstr "De encryptiemethode voor de e-mail." #: /var/www/html/cacti/include/global_settings.php:1415 msgid "SMTP Timeout" msgstr "SMTP timeout" #: /var/www/html/cacti/include/global_settings.php:1416 msgid "Please enter the SMTP timeout in seconds." msgstr "Voer de SMTP timeout in seconden in." #: /var/www/html/cacti/include/global_settings.php:1423 msgid "Reporting Presets" msgstr "Rapportage instellingen" #: /var/www/html/cacti/include/global_settings.php:1428 msgid "Default Graph Image Format" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1429 msgid "" "When creating a new report, what image type should be used for the inline " "graphs." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1435 msgid "Maximum E-Mail Size" msgstr "Maximale e-mail grootte" #: /var/www/html/cacti/include/global_settings.php:1436 msgid "The maximum size of the E-Mail message including all attachements." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1442 msgid "Poller Logging Level for Cacti Reporting" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1443 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1449 msgid "Enable Lotus Notes (R) tweak" msgstr "Activeer de Lotus Notes (R) tweak" #: /var/www/html/cacti/include/global_settings.php:1450 msgid "Enable code tweak for specific handling of Lotus Notes Mail Clients." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1455 msgid "DNS Options" msgstr "DNS opties" #: /var/www/html/cacti/include/global_settings.php:1460 msgid "Primary DNS IP Address" msgstr "IP-adres van de primaire DNS server" #: /var/www/html/cacti/include/global_settings.php:1461 msgid "Enter the primary DNS IP Address to utilize for reverse lookups." msgstr "Voer het IP-adres in van de primaire DNS server." #: /var/www/html/cacti/include/global_settings.php:1467 msgid "Secondary DNS IP Address" msgstr "IP-adres van de Secundaire DNS server" #: /var/www/html/cacti/include/global_settings.php:1468 msgid "Enter the secondary DNS IP Address to utilize for reverse lookups." msgstr "Voer het IP-adres in van de secundaire DNS server." #: /var/www/html/cacti/include/global_settings.php:1474 msgid "DNS Timeout" msgstr "DNS timeout" #: /var/www/html/cacti/include/global_settings.php:1475 msgid "" "Please enter the DNS timeout in milliseconds. Cacti uses a PHP based DNS " "resolver." msgstr "" "Voer de DNS timeout in milliseconden in. Cacti gebruikt de op PHP gebaseerde " "DNS resolver." #: /var/www/html/cacti/include/global_settings.php:1486 msgid "On-demand RRD Update Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1491 msgid "Enable On-demand RRD Updating" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1492 msgid "" "Should Boost enable on demand RRD updating in Cacti? If you disable, this " "change will not take effect until after the next polling cycle." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1497 msgid "System Level RRD Updater" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1498 msgid "" "Before RRD On-demand Update Can be Cleared, a poller run must always pass" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1503 msgid "How Often Should Boost Update All RRDs" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1504 msgid "" "When you enable boost, your RRD files are only updated when they are " "requested by a user, or when this time period elapses." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1511 msgid "Maximum Records" msgstr "Maximum aantal rijen" #: /var/www/html/cacti/include/global_settings.php:1512 msgid "" "If the boost output table exceeds this size, in records, an update will take " "place." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1519 msgid "Maximum Data Source Items Per Pass" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1520 msgid "" "To optimize performance, the boost RRD updater needs to know how many Data " "Source Items should be retrieved in one pass. Please be careful not to set " "too high as graphing performance during major updates can be compromised. " "If you encounter graphing or polling slowness during updates, lower this " "number. The default value is 50000." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1526 msgid "Maximum Argument Length" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1527 msgid "" "When boost sends update commands to RRDtool, it must not exceed the " "operating systems Maximum Argument Length. This varies by operating system " "and kernel level. For example: Windows 2000 <= 2048, FreeBSD <= 65535, " "Linux 2.6.22-- <= 131072, Linux 2.6.23++ unlimited" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1534 msgid "Memory Limit for Boost and Poller" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1535 msgid "The maximum amount of memory for the Cacti Poller and Boosts Poller" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1541 msgid "Maximum RRD Update Script Run Time" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1542 msgid "" "The maximum boot poller run time allowed prior to boost issuing warning " "messages relative to possible hardware/software issues preventing proper " "updates." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1548 msgid "Enable direct population of poller_output_boost table" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1549 msgid "" "Enables direct insert of records into poller output boost with results in a " "25% time reduction in each poll cycle." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1554 #: /var/www/html/cacti/utilities.php:2242 msgid "Image Caching" msgstr "Afbeelding caching" #: /var/www/html/cacti/include/global_settings.php:1559 msgid "Enable Image Caching" msgstr "Activeer afbeelding cachine" #: /var/www/html/cacti/include/global_settings.php:1560 msgid "Should image caching be enabled?" msgstr "Moet afbeeldingen cachen worden geactiveerd?" #: /var/www/html/cacti/include/global_settings.php:1565 msgid "Location for Image Files" msgstr "Locatie voor afbeeldingen" #: /var/www/html/cacti/include/global_settings.php:1566 msgid "" "Specify the location where Boost should place your image files. These files " "will be automatically purged by the poller when they expire." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1572 msgid "Process Interlocking" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1577 msgid "Boost Debug Log" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1578 msgid "" "If this field is non-blank, Boost will log RRDupdate output from the boost" "\tpoller process." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1586 msgid "Data Sources Statistics" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1591 msgid "Enable Data Source Statistics Collection" msgstr "Data bron statistiekverzameling inschakelen" #: /var/www/html/cacti/include/global_settings.php:1592 msgid "Should Data Source Statistics be collected for this Cacti system?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1597 msgid "Daily Update Frequency" msgstr "Dagelijkse updatefrequentie" #: /var/www/html/cacti/include/global_settings.php:1598 msgid "How frequent should Daily Stats be updated?" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1604 msgid "Hourly Average Window" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1605 msgid "" "The number of consecutive hours that represent the hourly average. Keep in " "mind that a setting too high can result in very large memory tables" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1611 msgid "Maintenance Time" msgstr "Onderhoudstijd" #: /var/www/html/cacti/include/global_settings.php:1612 msgid "" "What time of day should Weekly, Monthly, and Yearly Data be updated? Format " "is HH:MM [am/pm]" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1619 msgid "Memory Limit for Data Source Statistics Data Collector" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1620 msgid "" "The maximum amount of memory for the Cacti Poller and Data Source Statistics " "Poller" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1626 msgid "Data Storage Settings" msgstr "Data opslag instellingen" #: /var/www/html/cacti/include/global_settings.php:1632 msgid "" "Choose if RRDs will be stored locally or being handled by an external " "RRDtool proxy server." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1635 #: /var/www/html/cacti/include/global_settings.php:1643 msgid "RRDtool Proxy Server" msgstr "RRDtool proxy server" #: /var/www/html/cacti/include/global_settings.php:1638 msgid "Structured RRD Paths" msgstr "Gestructureerde RRD paden" #: /var/www/html/cacti/include/global_settings.php:1639 msgid "" "Use a separate subfolder for each hosts RRD files. The naming of the " "RRDfiles will be <path_cacti>/rra/host_id/local_data_id.rrd." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1648 #: /var/www/html/cacti/include/global_settings.php:1680 msgid "Proxy Server" msgstr "Proxy server" #: /var/www/html/cacti/include/global_settings.php:1649 msgid "The DNS hostname or IP address of the RRDtool proxy server." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1654 #: /var/www/html/cacti/include/global_settings.php:1686 msgid "Proxy Port Number" msgstr "Proxy poortnummer" #: /var/www/html/cacti/include/global_settings.php:1655 msgid "TCP port for encrypted communication." msgstr "TCP poort voor beveiligde communicatie." #: /var/www/html/cacti/include/global_settings.php:1662 #: /var/www/html/cacti/include/global_settings.php:1694 #: /var/www/html/cacti/utilities.php:261 msgid "RSA Fingerprint" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1663 msgid "" "The fingerprint of the current public RSA key the proxy is using. This is " "required to establish a trusted connection." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1670 msgid "RRDtool Proxy Server - Backup" msgstr "RRDtool backup proxy server" #: /var/www/html/cacti/include/global_settings.php:1675 msgid "Load Balancing" msgstr "Load balancing" #: /var/www/html/cacti/include/global_settings.php:1676 msgid "" "If both main and backup proxy are receivable this option allows to spread " "all requests against RRDtool." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1681 msgid "" "The DNS hostname or IP address of the RRDtool backup proxy server if proxy " "is running in MSR mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1687 msgid "TCP port for encrypted communication with the backup proxy." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1695 msgid "" "The fingerprint of the current public RSA key the backup proxy is using. " "This required to establish a trusted connection." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1704 msgid "Spike Kill Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1709 msgid "Removal Method" msgstr "Verwijdermethode" #: /var/www/html/cacti/include/global_settings.php:1710 msgid "" "There are two removal methods. The first, Standard Deviation, will remove " "any sample that is X number of standard deviations away from the average of " "samples. The second method, Variance, will remove any sample that is X% " "more than the Variance average. The Variance method takes into account a " "certain number of 'outliers'. Those are exceptional samples, like the " "spike, that need to be excluded from the Variance Average calculation." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1713 msgid "Standard Deviation" msgstr "Standaard afwijking" #: /var/www/html/cacti/include/global_settings.php:1713 msgid "Variance Based w/Outliers Removed" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1716 #: /var/www/html/cacti/lib/html.php:1844 msgid "Replacement Method" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1717 msgid "" "There are three replacement methods. The first method replaces the spike " "with the the average of the data source in question. The second method " "replaces the spike with a 'NaN'. The last replaces the spike with the last " "known good value found." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1720 #: /var/www/html/cacti/lib/html.php:1845 msgid "Average" msgstr "Gemiddeld" #: /var/www/html/cacti/include/global_settings.php:1720 #: /var/www/html/cacti/lib/html.php:1847 msgid "Last Known Good" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1720 #: /var/www/html/cacti/lib/html.php:1846 msgid "NaN's" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1723 msgid "Number of Standard Deviations" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1724 msgid "" "Any value that is this many standard deviations above the average will be " "excluded. A good number will be dependent on the type of data to be " "operated on. We recommend a number no lower than 5 Standard Deviations." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1728 #: /var/www/html/cacti/include/global_settings.php:1729 #: /var/www/html/cacti/include/global_settings.php:1730 #: /var/www/html/cacti/include/global_settings.php:1731 #: /var/www/html/cacti/include/global_settings.php:1732 #: /var/www/html/cacti/include/global_settings.php:1733 #: /var/www/html/cacti/include/global_settings.php:1734 #: /var/www/html/cacti/include/global_settings.php:1735 #: /var/www/html/cacti/include/global_settings.php:1736 #: /var/www/html/cacti/include/global_settings.php:1737 #, php-format msgid "%d Standard Deviations" msgstr "%d standaardafwijkingen" #: /var/www/html/cacti/include/global_settings.php:1741 #: /var/www/html/cacti/lib/html.php:1856 msgid "Variance Percentage" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1742 #, php-format msgid "" "This value represents the percentage above the adjusted sample average once " "outliers have been removed from the sample. For example, a Variance " "Percentage of 100% on an adjusted average of 50 would remove any sample " "above the quantity of 100 from the graph." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1761 msgid "Variance Number of Outliers" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1762 msgid "" "This value represents the number of high and low average samples will be " "removed from the sample set prior to calculating the Variance Average. If " "you choose an outlier value of 5, then both the top and bottom 5 averages " "are removed." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1766 #: /var/www/html/cacti/include/global_settings.php:1767 #: /var/www/html/cacti/include/global_settings.php:1768 #: /var/www/html/cacti/include/global_settings.php:1769 #: /var/www/html/cacti/include/global_settings.php:1770 #: /var/www/html/cacti/include/global_settings.php:1771 #: /var/www/html/cacti/include/global_settings.php:1772 #: /var/www/html/cacti/include/global_settings.php:1773 #, php-format msgid "%d High/Low Samples" msgstr "%d Hoog/Laag voorbeelden" #: /var/www/html/cacti/include/global_settings.php:1777 msgid "Max Kills Per RRA" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1778 msgid "" "This value represents the maximum number of spikes to remove from a Graph " "RRA." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1782 #: /var/www/html/cacti/include/global_settings.php:1783 #: /var/www/html/cacti/include/global_settings.php:1784 #: /var/www/html/cacti/include/global_settings.php:1785 #: /var/www/html/cacti/include/global_settings.php:1786 #: /var/www/html/cacti/include/global_settings.php:1787 #: /var/www/html/cacti/include/global_settings.php:1788 #: /var/www/html/cacti/include/global_settings.php:1789 #, php-format msgid "%d Samples" msgstr "%d Voorbeelden" #: /var/www/html/cacti/include/global_settings.php:1793 msgid "RRDfile Backup Directory" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1794 msgid "" "If this directory is not empty, then your original RRDfiles will be backed\n" "\t\t\tup to this location." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1802 msgid "Batch Spike Kill Settings" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1807 msgid "Removal Schedule" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1808 msgid "" "Do you wish to periodically remove spikes from your graphs? If so, select " "the frequency\n" "\t\t\tbelow." msgstr "" "Wilt u periodiek pieken uit uw grafieken verwijderen? Als u dit wilt, " "selecteer dan hieronder\n" "\t\t\tde frequentie." #: /var/www/html/cacti/include/global_settings.php:1816 msgid "Once a Day" msgstr "Een keer per dag" #: /var/www/html/cacti/include/global_settings.php:1817 msgid "Every Other Day" msgstr "Om de dag" #: /var/www/html/cacti/include/global_settings.php:1821 msgid "Base Time" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1822 msgid "" "The Base Time for Spike removal to occur. For example, if you use '12:00am' " "and you choose once per day, the batch removal would begin at approximately " "midnight every day." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1829 msgid "Graph Templates to Spike Kill" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1831 msgid "" "When performing batch spike removal, only the templates selected below will " "be acted on." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1847 msgid "Default View Mode" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1848 msgid "" "Which Graph mode you want displayed by default when you first visit the " "Graphs page?" msgstr "" "In welke modus wilt u de grafieken standaard getoond hebben als u de " "grafiekpagina bekijkt?" #: /var/www/html/cacti/include/global_settings.php:1854 msgid "User Language" msgstr "Gebruikertaal" #: /var/www/html/cacti/include/global_settings.php:1855 msgid "Defines the preferred GUI language." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1861 msgid "Show Graph Title" msgstr "Toon grafiektitel" #: /var/www/html/cacti/include/global_settings.php:1862 msgid "" "Display the graph title on the page so that it may be searched using the " "browser." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1867 msgid "Hide Disabled" msgstr "Uitgeschakeld verbergen" #: /var/www/html/cacti/include/global_settings.php:1868 msgid "Hide Disabled Devices and Graphs from Disabled Devices." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1874 msgid "The date format to use in Cacti." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1881 msgid "The date separator to be used in Cacti." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1887 msgid "Page Refresh" msgstr "Pagina vernieuwen" #: /var/www/html/cacti/include/global_settings.php:1888 msgid "The number of seconds between automatic page refreshes." msgstr "Het aantal seconden tussen het automatisch vernieuwen van de pagina." #: /var/www/html/cacti/include/global_settings.php:1894 msgid "Preview Graphs Per Page" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1895 #: /var/www/html/cacti/include/global_settings.php:2010 msgid "The number of graphs to display on one page in preview mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1903 msgid "Default Time Range" msgstr "Standaard tijdperiode" #: /var/www/html/cacti/include/global_settings.php:1904 msgid "The default RRA to use in rare occasions." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1910 msgid "Default Graph View Timespan" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1911 msgid "The default timespan you wish to be displayed when you display graphs" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1917 msgid "Default Graph View Timeshift" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1918 msgid "The default timeshift you wish to be displayed when you display graphs" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1924 msgid "Allow Graph to extend to Future" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1925 msgid "When displaying Graphs, allow Graph Dates to extend 'to future'" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1930 msgid "First Day of the Week" msgstr "Eerste dag van de week" #: /var/www/html/cacti/include/global_settings.php:1931 msgid "The first Day of the Week for weekly Graph Displays" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1937 msgid "Start of Daily Shift" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1938 msgid "Start Time of the Daily Shift." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1945 msgid "End of Daily Shift" msgstr "Einde werkdag" #: /var/www/html/cacti/include/global_settings.php:1946 msgid "End Time of the Daily Shift." msgstr "Eindtijd werkdag." #: /var/www/html/cacti/include/global_settings.php:1955 msgid "Thumbnail Sections" msgstr "Thumbnail secties" #: /var/www/html/cacti/include/global_settings.php:1956 msgid "Which portions of Cacti display Thumbnails by default." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1970 msgid "Preview Thumbnail Columns" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1971 msgid "" "The number of columns to use when displaying Thumbnail graphs in Preview " "mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1974 #: /var/www/html/cacti/include/global_settings.php:1981 #: /var/www/html/cacti/lib/html_graph.php:229 #: /var/www/html/cacti/lib/html_graph.php:230 #: /var/www/html/cacti/lib/html_graph.php:231 #: /var/www/html/cacti/lib/html_graph.php:232 #: /var/www/html/cacti/lib/html_graph.php:233 #: /var/www/html/cacti/lib/html_tree.php:688 #: /var/www/html/cacti/lib/html_tree.php:689 #: /var/www/html/cacti/lib/html_tree.php:690 #: /var/www/html/cacti/lib/html_tree.php:691 #: /var/www/html/cacti/lib/html_tree.php:692 #, php-format msgid "%d Columns" msgstr "%d Kolommen" #: /var/www/html/cacti/include/global_settings.php:1974 #: /var/www/html/cacti/include/global_settings.php:1981 msgid "1 Column" msgstr "1 Kolom" #: /var/www/html/cacti/include/global_settings.php:1977 msgid "Tree View Thumbnail Columns" msgstr "" #: /var/www/html/cacti/include/global_settings.php:1978 msgid "" "The number of columns to use when displaying Thumbnail graphs in Tree mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:1984 msgid "Thumbnail Height" msgstr "Thumbnail hoogte" #: /var/www/html/cacti/include/global_settings.php:1985 msgid "The height of Thumbnail graphs in pixels." msgstr "De hoogte van de thumbnail grafiek in pixels." #: /var/www/html/cacti/include/global_settings.php:1992 msgid "Thumbnail Width" msgstr "Thumbnail breedte" #: /var/www/html/cacti/include/global_settings.php:1993 msgid "The width of Thumbnail graphs in pixels." msgstr "De breedte van de thumbnail grafiek in pixels." #: /var/www/html/cacti/include/global_settings.php:2002 msgid "Default Tree" msgstr "Standaard boom" #: /var/www/html/cacti/include/global_settings.php:2003 msgid "The default graph tree to use when displaying graphs in tree mode." msgstr "" #: /var/www/html/cacti/include/global_settings.php:2009 msgid "Graphs Per Page" msgstr "Grafieken per pagina" #: /var/www/html/cacti/include/global_settings.php:2016 msgid "Expand Devices" msgstr "Apparaten uitklappen" #: /var/www/html/cacti/include/global_settings.php:2017 msgid "" "Choose whether to expand the Graph Templates and Data Queries used by a " "Device on Tree." msgstr "" #: /var/www/html/cacti/include/global_settings.php:2024 msgid "Use Custom Fonts" msgstr "Gebruik aangepaste lettertypes" #: /var/www/html/cacti/include/global_settings.php:2025 msgid "" "Choose whether to use your own custom fonts and font sizes or utilize the " "system defaults." msgstr "" #: /var/www/html/cacti/include/global_settings.php:2038 msgid "Title Font File" msgstr "" #: /var/www/html/cacti/include/global_settings.php:2039 msgid "The font file to use for Graph Titles" msgstr "" #: /var/www/html/cacti/include/global_settings.php:2051 msgid "Legend Font File" msgstr "" #: /var/www/html/cacti/include/global_settings.php:2052 msgid "The font file to be used for Graph Legend items" msgstr "" #: /var/www/html/cacti/include/global_settings.php:2064 msgid "Axis Font File" msgstr "" #: /var/www/html/cacti/include/global_settings.php:2065 msgid "The font file to be used for Graph Axis items" msgstr "" #: /var/www/html/cacti/include/global_settings.php:2077 msgid "Unit Font File" msgstr "" #: /var/www/html/cacti/include/global_settings.php:2078 msgid "The font file to be used for Graph Unit items" msgstr "" #: /var/www/html/cacti/index.php:64 #, php-format msgid "" "You are now logged into Cacti. You can follow " "these basic steps to get started." msgstr "" "U bent nu ingelogd in Cacti. Volgt u de volgende " "basis stappen om van start te gaan." #: /var/www/html/cacti/index.php:67 #, php-format msgid "Create devices for network" msgstr "Creëer apparaten voor netwerk" #: /var/www/html/cacti/index.php:68 #, php-format msgid "Create graphs for your new devices" msgstr "Creëer grafieken voor uw nieuwe apparaten" #: /var/www/html/cacti/index.php:69 #, php-format msgid "View your new graphs" msgstr "Toon uw nieuwe grafieken" #: /var/www/html/cacti/index.php:78 msgid "Offline" msgstr "Offline" #: /var/www/html/cacti/index.php:78 msgid "Online" msgstr "Online" #: /var/www/html/cacti/index.php:78 msgid "Recovery" msgstr "Herstellende" #: /var/www/html/cacti/index.php:78 msgid "Remote Data Collector Status:" msgstr "" #: /var/www/html/cacti/index.php:80 msgid "Number of Offline Records:" msgstr "Aantal offline records:" #: /var/www/html/cacti/index.php:85 msgid "" "NOTE: You are logged into a Remote Data Collector. When " "'online', you will be able to view and control much of the Main Cacti " "Web Site just as if you were logged into it. Also, it's important to note " "that Remote Data Collectors are required to use the Cacti's Performance " "Boosting Services 'On Demand Updating' feature, and we always " "recommend using Spine. When the Remote Data Collector is 'offline', " "the Remote Data Collectors Web Site will contain much less information. " "However, it will cache all updates until the Main Cacti Database and Web " "Server are reachable. Then it will dump it's Boost table output back to the " "Main Cacti Database for updating." msgstr "" "LET OP: U bent ingelogd in een Remote Data Collector. Als " "deze 'online' is, is het mogelijk om deze te beheren zoals de hoofd " "Cacti website alsof u hier op bent ingelogd. Ook is het belangrijk om te " "vermelden dat Remote Data Collectors Cacti's Performance Boosting Service " "'On Demand Updating' feature nodig hebben. Wij adviseren altijd om " "Spine te gebruiken. Wanneer de Remote Data Collector 'offline' is, " "zal de Remote Data Collectors Web Site veel minder informatie bevatten. " "Echter, het zal alle updates cachen totdat de Hoofd Cacti Database en " "Webserver weer beschikbaar zijn. Dan zal het alle informatie uit de Boost " "table naar de Main Cacti Database sturen om de gegevens te laten bijwerken." #: /var/www/html/cacti/index.php:90 msgid "" "NOTE: None of the Core Cacti Plugins, to date, have been re-" "designed to work with Remote Data Collectors. Therefore, Plugins such as " "MacTrack, and HMIB, which require direct access to devices will not work " "with Remote Data Collectors at this time. However, plugins such as Thold " "will work so long as the Remote Data Collector is in 'online' mode." msgstr "" "LET OP: Tot op heden zijn geen van de basis Cacti plugins " "bijgewerkt om met remote pollers te werken. Daarom zullen plugins zoals " "bijvoorbeeld MacTrack en HMIB, die directe toegang nodig hebben op " "apparaten, op dit moment niet werken met Remote Data Collectors. Echter, " "plugins als Thold zullen wél werken zolang de Remote Data Collector in " "'online' modus is." #: /var/www/html/cacti/install/index.php:51 #: /var/www/html/cacti/install/index.php:56 #: /var/www/html/cacti/install/index.php:61 #: /var/www/html/cacti/install/index.php:328 #: /var/www/html/cacti/lib/html_utility.php:861 msgid "Error" msgstr "Fout" #: /var/www/html/cacti/install/index.php:53 #, php-format msgid "" "This installation is already up-to-date. Click here to " "use Cacti." msgstr "" "Deze installatie is al up-to-date. Klik hier om Cacti te " "gaan gebruiken." #: /var/www/html/cacti/install/index.php:58 #, php-format msgid "" "You are attempting to install Cacti %s onto a 0.6.x database. To continue, " "you must create a new database, import \"cacti.sql\" into it, and update " "\"include/config.php\" to point to the new database." msgstr "" "U probeert Cacti %s te installeren op een 0.6.x database. Om door te gaan " "moet u een nieuwe database selecteren, \"cacti.sql\" hierin importeren en de " "\"include/config.php\" bijwerken door de nieuwe database hierin te " "configureren." #: /var/www/html/cacti/install/index.php:63 #, php-format msgid "" "You have created a new database, but have not yet imported the 'cacti.sql' " "file. At the command line, execute the following to continue:

    mysql -u %s -p %s < cacti.sql

    This error may also be " "generated if the cacti database user does not have correct permissions on " "the Cacti database. Please ensure that the Cacti database user has the " "ability to SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, DROP, INDEX on the " "Cacti database." msgstr "" "U heeft een nieuwe database aangemaakt, maar het \"cacti.sql\" bestand nog " "niet geïmporteerd. Vanaf een command line, voer u het volgende uit:

    mysql -u %s -p %s < cacti.sql

    Deze foutmelding kan ook " "worden getoond als de Cacti database gebruiker geen rechten heeft tot de " "Cacti database. Zorg er alstublieft voor dat de Cacti database gebruiker de " "mogelijkheid heeft om SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, DROP en " "INDEX op de Cacti database uit te voeren." #: /var/www/html/cacti/install/index.php:65 #, php-format msgid "" "In Cacti %s, you must also import MySQL TimeZone information into MySQL and " "grant the Cacti user SELECT access to the mysql.time_zone_name table" msgstr "" "In Cacti %s, moet u ook de MySQL tijdzone informatie importeren in MySQL en " "de Cacti user SELECT rechten geven op de mysql.time_zone_name tabel" #: /var/www/html/cacti/install/index.php:68 msgid "On Linux/UNIX, do the following:" msgstr "Op Linux/UNIX, doe het volgende:" #: /var/www/html/cacti/install/index.php:68 msgid "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" msgstr "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" #: /var/www/html/cacti/install/index.php:70 msgid "" "On Windows, you must follow the instructions here Time zone description " "table. Once that is complete, you can issue the following command to " "grant the Cacti user access to the tables:" msgstr "" "Op Windows kunt u de instructies hier volgen voor de tijdzone tabel. " "Als dat is voltooid, kunt u het volgende commando uitvoeren om de Cacti user " "toegang tot de tabellen te geven:" #: /var/www/html/cacti/install/index.php:72 #, php-format msgid "" "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" msgstr "" "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" #: /var/www/html/cacti/install/index.php:87 msgid "Begin" msgstr "Start" #: /var/www/html/cacti/install/index.php:98 #: /var/www/html/cacti/install/index.php:733 #: /var/www/html/cacti/install/index.php:749 #: /var/www/html/cacti/lib/html.php:404 msgid "Next" msgstr "Volgende" #: /var/www/html/cacti/install/index.php:114 #: /var/www/html/cacti/install/index.php:131 msgid "Upgrade" msgstr "Upgrade" #: /var/www/html/cacti/install/index.php:116 #: /var/www/html/cacti/install/index.php:133 msgid "Downgrade" msgstr "Downgrade" #: /var/www/html/cacti/install/index.php:330 #, php-format msgid "" "Invalid Cacti version %1$s, cannot upgrade to %2$s" msgstr "" "Ongeldige Cacti versie %s$s, kan niet upgraden naar " "%2$s" #: /var/www/html/cacti/install/index.php:394 msgid "Cacti Server Installation/Upgrade" msgstr "Cacti installatie/upgrade wizard" #: /var/www/html/cacti/install/index.php:413 msgid "Cacti Installation Wizard" msgstr "Cacti installatie wizard" #: /var/www/html/cacti/install/index.php:421 #: /var/www/html/cacti/utilities.php:251 msgid "Cacti Version" msgstr "Cacti versie" #: /var/www/html/cacti/install/index.php:421 msgid "License Agreement" msgstr "Licentie overeenkomst" #: /var/www/html/cacti/install/index.php:423 msgid "" "Thanks for taking the time to download and install Cacti, the complete " "graphing solution for your network. Before you can start making cool graphs, " "there are a few pieces of data that Cacti needs to know." msgstr "" "Bedankt dat u de tijd heeft genomen om Cacti te downloaden en te " "installeren. Cacti is de complete grafiek oplossing voor uw netwerk. Voordat " "u kunt beginnen met het maken van grafieken, zijn hier een paar zaken over " "Cacti die u moete weten." #: /var/www/html/cacti/install/index.php:424 #, php-format msgid "" "Make sure you have read and followed the required steps needed to install " "Cacti before continuing. Install information can be found for Unix and Win32-based operating systems." msgstr "" "Zorg ervoor dat u de benodigde stappen heeft gelezen en gevolgd voor het " "installeren en Cacti. Installatieinstructies kunnen worden gevonden voor Unix en Win32-gebaseerde " "besturingssystemen." #: /var/www/html/cacti/install/index.php:426 #, php-format msgid "" "Note: This process will guide you through the steps for upgrading from " "version '%s'. " msgstr "" "Let op: Dit proces begeleidt u door de stappen voor het upgraden van versie " "'%s'. " #: /var/www/html/cacti/install/index.php:427 #, php-format msgid "" "Also, if this is an upgrade, be sure to reading the Upgrade information file." msgstr "" "Tevens, als dit een upgrade is, zorg ervoor dat u de upgrade informatie heeft gelezen." #: /var/www/html/cacti/install/index.php:429 msgid "" "Cacti is licensed under the GNU General Public License, you must agree to " "its provisions before continuing:" msgstr "" "Cacti is gelicentieerd onder de GNU Public License, u moet hiermee akkoord " "gaan voordat ik verder kunt gaan:" #: /var/www/html/cacti/install/index.php:434 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" "Dit programma is gedistribueerd in de hoop dat het zinnig zal zijn, maar " "komt ZONDER ENIGE GARANTIE; zelfs zonder de impliciete garantie van " "VERKOOPBAARHEID of GESCHIKTHEID VOOR EEN BEPAALD DOEL. Zie de GNU General " "Public License voor meer details." #: /var/www/html/cacti/install/index.php:436 msgid "Accept GPL License Agreement" msgstr "Accepteer de GPL licentie overeenkomst" #: /var/www/html/cacti/install/index.php:442 msgid "Pre-installation Checks" msgstr "Pre installatie controle" #: /var/www/html/cacti/install/index.php:443 msgid "Location checks" msgstr "Locatie controles" #: /var/www/html/cacti/install/index.php:491 #: /var/www/html/cacti/install/index.php:501 #: /var/www/html/cacti/install/index.php:505 #: /var/www/html/cacti/install/index.php:516 #: /var/www/html/cacti/install/index.php:691 #: /var/www/html/cacti/install/index.php:696 msgid "ERROR:" msgstr "FOUT:" #: /var/www/html/cacti/install/index.php:491 msgid "" "Please update config.php with the correct relative URI location of Cacti " "(url_path)." msgstr "" "Update alstublieft de config.php met de correcte relatieve URL van cacti " "(url_path)." #: /var/www/html/cacti/install/index.php:493 msgid "" "Your Cacti configuration has the relative correct path (url_path) in config." "php." msgstr "" "Uw Cacti configuratie heeft het relatieve pad (url_path) ingesteld in de " "config.php." #: /var/www/html/cacti/install/index.php:496 msgid "MySQL TimeZone Support" msgstr "MySQL Timezone ondersteuning" #: /var/www/html/cacti/install/index.php:501 msgid "" "Your MySQL TimeZone database is not populated. Please populate this " "database before proceeding." msgstr "" "Uw MySQL tijdzone database is niet ingevuld. Verrijk deze database " "alstublieft voordat u doorgaat." #: /var/www/html/cacti/install/index.php:505 msgid "" "Your Cacti database login account does not have access to the MySQL TimeZone " "database. Please provide the Cacti database account \"select\" access to " "the \"time_zone_name\" table in the \"mysql\" database, and populate MySQL's " "TimeZone information before proceeding." msgstr "" "Uw Cacti database loginaccount heeft geen rechten tot de MySQL tijdzone " "database. Zorg er alstublieft voor dat het Cacti database account SELECT " "toegang heeft tot de \"time_zone_name\" tabe in de \"mysql\" database en " "verrijk MySQL’s tijdzone informatie voordat u doorgaat." #: /var/www/html/cacti/install/index.php:510 msgid "" "Your Cacti database account has access to the MySQL TimeZone database and " "that database is populated with global TimeZone information." msgstr "" "Uw Cacti database account heeft toegang tot de MySQL tijdzone database en de " "database is verrijkt met de globale tijdzone informatie." #: /var/www/html/cacti/install/index.php:513 msgid "PHP Timezone Support" msgstr "PHP Timezone ondersteuning" #: /var/www/html/cacti/install/index.php:516 msgid "" "Your Web Servers PHP Timezone settings have not been set. Please edit php." "ini and uncomment the 'date.timezone' setting and set it to the Web Servers " "Timezone per the PHP installation instructions prior to installing Cacti." msgstr "" "Op uw webserver heeft PHP geen correcte tijdzone instelling. Wijzig " "alstublieft de php.ini en activeer de 'date.timezone' instelling en stel " "deze in op de tijdzone van de webserver voordat u Cacti gaat installeren." #: /var/www/html/cacti/install/index.php:519 msgid "Your Web Servers PHP is properly setup with a Timezone." msgstr "Op uw webserver is PHP correct ingesteld met een tijdzone." #: /var/www/html/cacti/install/index.php:522 msgid "Required PHP Module Support" msgstr "Benodigde PHP modules" #: /var/www/html/cacti/install/index.php:524 msgid "" "Cacti requires several PHP Modules to be installed to work properly. If any " "of these are not installed, you will be unable to continue the installation " "until corrected. In addition, for optimal system performance Cacti should be " "run with certain MySQL system variables set. Please follow the MySQL " "recommendations at your discretion. Always seek the MySQL documentation if " "you have any questions." msgstr "" "Cacti heeft verschillende PHP modules nodig om goed te kunnen werken. Als " "een module niet is geïnstalleerd kunt u niet doorgaan met de installatie " "totdat u dit heeft gecorrigeerd. Als aanvulling, voor een optimaal Cacti " "systeem moet MySQL geconfigureerd zijn met bepaalde configuratie " "instellingen. Volg alstublieft de MySQL aanbevelingen. Raadpleeg de MySQL " "handleiding als u hierover vragen heeft." #: /var/www/html/cacti/install/index.php:526 msgid "" "The following PHP extensions are mandatory, and MUST be installed before " "continuing your Cacti install." msgstr "" "De volgende PHP extensies zijn verplicht, en MOETEN worden geïnstalleerd " "voordat u door kunt gaan met de installatie van Cacti." #: /var/www/html/cacti/install/index.php:528 msgid "Required PHP Modules" msgstr "Benodigde PHP modules" #: /var/www/html/cacti/install/index.php:529 #: /var/www/html/cacti/install/index.php:611 /var/www/html/cacti/plugins.php:40 #: /var/www/html/cacti/plugins.php:339 /var/www/html/cacti/utilities.php:428 msgid "Installed" msgstr "Geïnstalleerd" #: /var/www/html/cacti/install/index.php:529 msgid "Required" msgstr "Verplicht" #: /var/www/html/cacti/install/index.php:532 #: /var/www/html/cacti/utilities.php:400 msgid "PHP Version" msgstr "PHP versie" #: /var/www/html/cacti/install/index.php:598 msgid "Optional PHP Module Support" msgstr "Optionele PHP modules" #: /var/www/html/cacti/install/index.php:600 msgid "" "The following PHP extensions are recommended, and should be installed before " "continuing your Cacti install." msgstr "" "De volgende PHP extensies zijn aanbevolen en zouden moeten worden " "geïnstalleerd voordat u doorgaat met de installatie van Cacti." #: /var/www/html/cacti/install/index.php:610 msgid "Optional Modules" msgstr "Optionele modules" #: /var/www/html/cacti/install/index.php:611 msgid "Optional" msgstr "Optioneel" #: /var/www/html/cacti/install/index.php:622 msgid "" "These MySQL performance tuning settings will help your Cacti system perform " "better without issues for a longer time." msgstr "" "Deze MySQL performance optimalisatie instellingen helpen bij het optimaal " "presteren van uw Cacti systeem zonder problemen op de langere termijn." #: /var/www/html/cacti/install/index.php:624 msgid "Recommended MySQL System Variable Settings" msgstr "Aanbevolen MySQL configuratie instellingen" #: /var/www/html/cacti/install/index.php:629 msgid "Installation Type" msgstr "Installatie type" #: /var/www/html/cacti/install/index.php:636 #, php-format msgid "Upgrade from %s to %s" msgstr "Upgrade van %s naar %s" #: /var/www/html/cacti/install/index.php:637 msgid "" "WARNING - If you are upgrading from a previous version please close all " "Cacti browser sessions and clear cache before continuing. Additionally, " "after this script is complete, you will also have to refresh your page to " "load updated JavaScript so that the Cacti pages render properly. In Firefox " "and IE, you simply press F5. In Chrome, you may have to clear your browser " "cache for the Cacti web site." msgstr "" #: /var/www/html/cacti/install/index.php:640 #, php-format msgid "Downgrade from %s to %s" msgstr "Downgrade van %s naar %s" #: /var/www/html/cacti/install/index.php:641 msgid "" "WARNING - Appears you are downgrading to a previous version. Database " "changes made for the newer version will not be reversed and could " "cause issues." msgstr "" #: /var/www/html/cacti/install/index.php:645 msgid "Please select the type of installation" msgstr "Selecteer het type installatie" #: /var/www/html/cacti/install/index.php:647 msgid "Installation options:" msgstr "Installatie opties:" #: /var/www/html/cacti/install/index.php:650 msgid "Choose this for the Primary site." msgstr "Kies deze optie voor de primaire Cacti locatie." #: /var/www/html/cacti/install/index.php:650 #: /var/www/html/cacti/install/index.php:656 msgid "New Primary Server" msgstr "Nieuwe primaire server" #: /var/www/html/cacti/install/index.php:651 #: /var/www/html/cacti/install/index.php:657 msgid "New Remote Poller" msgstr "Nieuwe externe poller" #: /var/www/html/cacti/install/index.php:651 msgid "" "Remote Pollers are used to access networks that are not readily accessible " "to the Primary site." msgstr "" "Externe pollers worden gebruikt op netwerken die niet direct toegankelijk " "zijn voor de primaire Cacti locatie." #: /var/www/html/cacti/install/index.php:661 msgid "" "The following information has been determined from Cacti's configuration " "file. If it is not correct, please edit \"include/config.php\" before " "continuing." msgstr "" "De volgende informatie is bepaald op basis van Cacti's configuratiebestand. " "Als dit niet correct is wijzig dan \"include/config.php\" voordat u verder " "gaat." #: /var/www/html/cacti/install/index.php:665 msgid "Local Cacti database connection information" msgstr "" #: /var/www/html/cacti/install/index.php:667 #: /var/www/html/cacti/install/index.php:681 #, php-format msgid "Database: %s" msgstr "Database: %s" #: /var/www/html/cacti/install/index.php:668 #: /var/www/html/cacti/install/index.php:682 #, php-format msgid "Database User: %s" msgstr "Database gebruiker: %s" #: /var/www/html/cacti/install/index.php:669 #: /var/www/html/cacti/install/index.php:683 #, php-format msgid "Database Hostname: %s" msgstr "Database hostname: %s" #: /var/www/html/cacti/install/index.php:670 #: /var/www/html/cacti/install/index.php:684 #, php-format msgid "Port: %s" msgstr "Poort: %s" #: /var/www/html/cacti/install/index.php:671 #: /var/www/html/cacti/install/index.php:685 #, php-format msgid "Server Operating System Type: %s" msgstr "" #: /var/www/html/cacti/install/index.php:679 #: /var/www/html/cacti/install/index.php:688 msgid "Remote Poller Cacti database connection information" msgstr "" #: /var/www/html/cacti/install/index.php:691 msgid "" "Your config.php file must be writable by the web server during install in " "order to configure the Remote poller. Once installation is complete, you " "must set this file to Read Only to prevent possible security issues." msgstr "" "Uw config.php moet schrijfbaar zijn door de webserver gedurende de " "installatie om te remote poller te configureren. Zodra de installatie is " "voltooid, moet u dit bestand op alleen-lezen rechten plaatsen om mogelijke " "beveiligingsrisico’s tegen te gaan." #: /var/www/html/cacti/install/index.php:696 msgid "" "Your Remote Cacti Poller information has not been included in your config." "php file. Please review the config.php.dist, and set the variables: " "$rdatabase_default, $rdatabase_username, etc. These variables must be " "set and point back to your Primary Cacti database server. Correct this and " "try again." msgstr "" #: /var/www/html/cacti/install/index.php:698 msgid "The variables that must be set include the following:" msgstr "" #: /var/www/html/cacti/install/index.php:709 msgid "You must also set the $poller_id variable in the config.php." msgstr "U moet ook de $poller_id variabel in de config.php invullen." #: /var/www/html/cacti/install/index.php:711 msgid "" "Once you have the variables set in the config.php file, you must also grant " "the $rdatabase_username access to the Cacti database. Follow the same " "procedure you would with any other Cacti install. You may then press the " "'Test Connection' button. If the test is successful you will be able to " "proceed and complete the install." msgstr "" #: /var/www/html/cacti/install/index.php:771 msgid "Remote Database: " msgstr "" #: /var/www/html/cacti/install/index.php:782 msgid "Critical Binary Locations and Versions" msgstr "Noodzakelijke locaties en versies van applicaties" #: /var/www/html/cacti/install/index.php:784 msgid "Make sure all of these values are correct before continuing." msgstr "Zorg ervoor dat al deze waarden correct zijn voordat u doorgaat." #: /var/www/html/cacti/install/index.php:842 msgid "Directory Permission Checks" msgstr "Rechten controle directories" #: /var/www/html/cacti/install/index.php:844 msgid "" "Please ensure the directory permissions below are correct before " "proceeding. During the install, these directories need to be owned by the " "Web Server user. These permission changes are required to allow the " "Installer to install Device Template packages which include XML and script " "files that will be placed in these directories. If you choose not to " "install the packages, there is an 'install_package.php' cli script that can " "be used from the command line after the install is complete." msgstr "" "Let op dat de rechten van de directories hieronder correct zijn ingesteld " "voordat u doorgaat. Tijdens de installatie moeten deze directories eigenaar " "zijn van de webserver gebruiker. Deze rechten wijzigingen zijn noodzakelijk " "om de installer de Apparaat templates, welke XML bestanden en script " "bestanden bevatten, te laten plaatsen in deze directories. Als u ervoor " "kiest om deze pakketten niet te installeren, dan is er een 'install_package." "php' cli script dat kan worden gebruikt als de installatie is voltooid." #: /var/www/html/cacti/install/index.php:847 msgid "" "After the install is complete, you can make some of these directories read " "only to increase security." msgstr "" "Nadat de installatie is voltooid, kunt u een aantal van deze directories " "alleen-lezen markeren om het beveiligingsniveau te verhogen." #: /var/www/html/cacti/install/index.php:849 msgid "" "These directories will be required to stay read writable after the install " "so that the Cacti remote synchronization process can update them as the Main " "Cacti Web Site changes" msgstr "" #: /var/www/html/cacti/install/index.php:880 msgid "Required Writable at Install Time Only" msgstr "Locatie hoeft uitsluitend schrijfbaar te zijn tijdens de installatie" #: /var/www/html/cacti/install/index.php:883 #: /var/www/html/cacti/install/index.php:893 #: /var/www/html/cacti/install/index.php:903 #, php-format msgid "

    %s is Writable

    " msgstr "

    %s is schrijfbaar

    " #: /var/www/html/cacti/install/index.php:885 #: /var/www/html/cacti/install/index.php:895 #: /var/www/html/cacti/install/index.php:905 #, php-format msgid "

    %s is Not Writable

    " msgstr "

    %s is niet schrijfbaar

    " #: /var/www/html/cacti/install/index.php:890 #: /var/www/html/cacti/install/index.php:900 msgid "Required Writable after Install Complete" msgstr "Locatie moet schrijfbaar zijn ook nadat de installatie is voltooid" #: /var/www/html/cacti/install/index.php:913 #, php-format msgid "" "Make sure your webserver has read and write access to the entire folder " "structure.
    Example: chown -R apache.apache %s/resource/" msgstr "" "Zorg ervoor dat de webserver lees en schrijf rechten heeft tot de volledige " "directoriestructuur.
    Bijvoorbeeld: chown -R apache.apache %s/resource/" #: /var/www/html/cacti/install/index.php:914 msgid "" "For SELINUX-users make sure that you have the correct permissions or set " "'setenforce 0' temporarily." msgstr "" #: /var/www/html/cacti/install/index.php:916 msgid "Check Permissions" msgstr "Controleer rechten" #: /var/www/html/cacti/install/index.php:918 msgid "All folders are writable" msgstr "Alle directories zijn schrijfbaar" #: /var/www/html/cacti/install/index.php:924 msgid "" "If you are installing packages, once the packages are installed, you should " "change the scripts directory back to read only as this presents some " "exposure to the web site." msgstr "" "Als u pakketten installeert en wanneer deze pakketten zijn geïnstalleerd, " "dient u de rechten van de script directorie terug te zetten naar alleen-" "lezen om blootstelling van buitenaf aan de website te voorkomen." #: /var/www/html/cacti/install/index.php:924 #: /var/www/html/cacti/install/index.php:930 #: /var/www/html/cacti/install/index.php:963 msgid "NOTE:" msgstr "LET OP:" #: /var/www/html/cacti/install/index.php:930 msgid "" "For remote pollers, it is critical that the paths that you will be updating " "frequently, including the plugins, scripts, and resources paths have read/" "write access as the data collector will have to update these paths from the " "main web server content." msgstr "" #: /var/www/html/cacti/install/index.php:937 msgid "Template Setup" msgstr "Template installatie" #: /var/www/html/cacti/install/index.php:939 msgid "" "Please select the Device Templates that you wish to use after the Install. " "If you Operating System is Windows, you need to ensure that you select the " "'Windows Device' Template. If your Operating System is Linux/UNIX, make " "sure you select the 'Local Linux Machine' Device Template." msgstr "" "Selecteert u alstublieft de apparaat templates die u wilt gebruiken na de " "installatie. Als uw besturingssysteem Windows is, dan moet u erop letten dat " "u de 'Windows Device' templates selecteert. Als uw besturingssysteem Linux/" "UNIX is, let er dan op dat u de 'Local Linux Machine' apparaat template " "selecteert." #: /var/www/html/cacti/install/index.php:941 msgid "" "Device Templates allow you to monitor and graph a vast assortment of data " "within Cacti. After you select the desired Device Templates, press 'Finish' " "and the installation will complete. Please be patient on this step, as the " "importation of the Device Templates can take a few minutes." msgstr "" "Apparaat templates geven u de gelegenheid om een vaste selectie van data " "binnen Cacti te monitoren. Nadat u de gewenste apparaat templates heeft " "geselecteerd, drukt u op 'Volgende' om de installatie te voltooien. Heb " "geduld gedurende dit proces omdat het importeren van de apparaat templates " "enige minuten in beslag kan nemen." #: /var/www/html/cacti/install/index.php:947 #: /var/www/html/cacti/plugins.php:426 msgid "Author" msgstr "Auteur" #: /var/www/html/cacti/install/index.php:947 msgid "Homepage" msgstr "Homepage" #: /var/www/html/cacti/install/index.php:965 msgid "" "Press 'Finish' to complete the installation process after selecting your " "Device Templates." msgstr "" "Nadat u de apparaat templates heeft geselecteerd, drukt u op 'Volgende' om " "het installatieproces af te ronden." #: /var/www/html/cacti/install/index.php:969 msgid "Upgrade Results" msgstr "Upgrade resultaten" #: /var/www/html/cacti/install/index.php:976 msgid "[Fail]" msgstr "[Mislukt]" #: /var/www/html/cacti/install/index.php:977 msgid "[Success]" msgstr "[Succesvol]" #: /var/www/html/cacti/install/index.php:978 msgid "[Skipped]" msgstr "[Overgeslagen]" #: /var/www/html/cacti/install/index.php:982 msgid "Database upgrade completed!" msgstr "" #: /var/www/html/cacti/install/index.php:986 msgid "Version: " msgstr "Versie: " #: /var/www/html/cacti/install/index.php:1003 msgid "" "One or more of the SQL queries needed to upgraded your Cacti installation " "has failed. Please see below for more details. Your Cacti MySQL user must " "have SELECT, INSERT, UPDATE, DELETE, ALTER, CREATE, and DROP permissions. You should try executing the failed queries as \"root\" " "to ensure that you do not have a permissions problem." msgstr "" #: /var/www/html/cacti/install/index.php:1003 #: /var/www/html/cacti/utilities.php:2108 #: /var/www/html/cacti/utilities.php:2109 #: /var/www/html/cacti/utilities.php:2112 #: /var/www/html/cacti/utilities.php:2113 msgid "WARNING:" msgstr "WAARSCHUWING:" #: /var/www/html/cacti/install/index.php:1008 msgid "No database action needed." msgstr "Geen database actie noodzakelijk." #: /var/www/html/cacti/install/index.php:1013 msgid "Important Upgrade Notice" msgstr "" #: /var/www/html/cacti/install/index.php:1014 msgid "" "Before you continue with the installation, you must update " "your /etc/crontab file to point to poller.php instead of " "cmd.php." msgstr "" #: /var/www/html/cacti/install/index.php:1015 msgid "" "See the sample crontab entry below with the change made in red. Your crontab " "line will look slightly different based upon your setup." msgstr "" #: /var/www/html/cacti/install/index.php:1017 msgid "Once you have made this change, please click Finish to continue." msgstr "" #: /var/www/html/cacti/install/index.php:1025 msgctxt "Dialog: previous" msgid "Previous" msgstr "Vorige" #: /var/www/html/cacti/install/index.php:1026 msgctxt "Dialog: complete" msgid "Finish" msgstr "Afronden" #: /var/www/html/cacti/install/index.php:1027 msgctxt "Dialog: test connection" msgid "Test Connection" msgstr "Test verbinding" #: /var/www/html/cacti/install/index.php:1027 msgid "Test remote database connection" msgstr "Database verbinding testen" #: /var/www/html/cacti/install/index.php:1051 #: /var/www/html/cacti/install/index.php:1053 #: /var/www/html/cacti/install/index.php:1055 msgid "Finish" msgstr "Beëindig" #: /var/www/html/cacti/lib/aggregate.php:51 msgid "Display Graphs from this Aggregate" msgstr "" #: /var/www/html/cacti/lib/api_aggregate.php:1169 msgid "" "The Graphs chosen for the Aggregate Graph below represent Graphs from " "multiple Graph Templates. Aggregate does not support creating Aggregate " "Graphs from multiple Graph Templates." msgstr "" #: /var/www/html/cacti/lib/api_aggregate.php:1170 #: /var/www/html/cacti/lib/api_aggregate.php:1189 msgid "Press 'Return' to return and select different Graphs" msgstr "" #: /var/www/html/cacti/lib/api_aggregate.php:1188 msgid "" "The Graphs chosen for the Aggregate Graph do not use Graph Templates. " "Aggregate does not support creating Aggregate Graphs from non-templated " "graphs." msgstr "" #: /var/www/html/cacti/lib/api_aggregate.php:1294 #: /var/www/html/cacti/lib/functions.php:2080 msgid "Graph Items" msgstr "Grafiekitems" #: /var/www/html/cacti/lib/api_aggregate.php:1294 #: /var/www/html/cacti/lib/functions.php:2212 msgid "Graph Template Items" msgstr "Grafiektemplate items" #: /var/www/html/cacti/lib/api_aggregate.php:1298 #: /var/www/html/cacti/lib/html.php:943 msgid "Graph Item" msgstr "Grafiekitem" #: /var/www/html/cacti/lib/api_aggregate.php:1301 #: /var/www/html/cacti/lib/html.php:946 msgid "CF Type" msgstr "CF Type" #: /var/www/html/cacti/lib/api_aggregate.php:1302 #: /var/www/html/cacti/lib/html.php:948 msgid "Item Color" msgstr "Kleur item" #: /var/www/html/cacti/lib/api_aggregate.php:1303 msgid "Color Template" msgstr "Kleur template" #: /var/www/html/cacti/lib/api_aggregate.php:1304 msgid "Skip" msgstr "Overslaan" #: /var/www/html/cacti/lib/api_aggregate.php:1372 msgid "Aggregate Items are not modifyable" msgstr "Geaggregeerde items zijn niet te wijzigen" #: /var/www/html/cacti/lib/api_aggregate.php:1383 msgid "Aggregate Items are not editable" msgstr "Geaggregeerde items zijn niet te wijzigen" #: /var/www/html/cacti/lib/api_automation.php:132 msgid "Matching Devices" msgstr "Overeenkomende apparaten" #: /var/www/html/cacti/lib/api_automation.php:147 #: /var/www/html/cacti/lib/api_automation.php:1025 #: /var/www/html/cacti/lib/clog_webapi.php:428 #: /var/www/html/cacti/lib/html_reports.php:325 #: /var/www/html/cacti/lib/html_reports.php:1255 #: /var/www/html/cacti/lib/html_reports.php:1524 #: /var/www/html/cacti/lib/html_reports.php:1535 #: /var/www/html/cacti/lib/rrd.php:2705 /var/www/html/cacti/utilities.php:314 #: /var/www/html/cacti/utilities.php:1080 #: /var/www/html/cacti/utilities.php:2439 msgid "Type" msgstr "Type" #: /var/www/html/cacti/lib/api_automation.php:306 msgid "No Matching Devices" msgstr "Geen overeenkomende apparaten" #: /var/www/html/cacti/lib/api_automation.php:415 #: /var/www/html/cacti/lib/api_automation.php:690 #: /var/www/html/cacti/lib/api_automation.php:830 msgid "Matching Objects" msgstr "Overeenkomende objecten" #: /var/www/html/cacti/lib/api_automation.php:705 msgid "Objects" msgstr "Objecten" #: /var/www/html/cacti/lib/api_automation.php:753 msgid "Not Found" msgstr "Niet gevonden" #: /var/www/html/cacti/lib/api_automation.php:784 msgid "" "A blue font color indicates that the rule will be applied to the objects in " "question. Other objects will not be subject to the rule." msgstr "" "Het blauwe lettertype geeft aan dat de regel toegepast zal worden op de " "objecten in kwestie. De andere objecten worden niet aangeraakt." #: /var/www/html/cacti/lib/api_automation.php:784 #, php-format msgid "Matching Objects [ %s ]" msgstr "Overeenkomende objecten [ %s ]" #: /var/www/html/cacti/lib/api_automation.php:841 msgid "Device Status" msgstr "Apparaat status" #: /var/www/html/cacti/lib/api_automation.php:863 msgid "There are no Objects that match this rule." msgstr "" #: /var/www/html/cacti/lib/api_automation.php:907 msgid "Error in data query" msgstr "Fout in data query" #: /var/www/html/cacti/lib/api_automation.php:1011 msgid "Matching Items" msgstr "Overeenkomende items" #: /var/www/html/cacti/lib/api_automation.php:1173 msgid "Resulting Branch" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1212 msgid "No Items Found" msgstr "Geen items gevonden" #: /var/www/html/cacti/lib/api_automation.php:1240 #: /var/www/html/cacti/lib/api_automation.php:1302 msgid "Field" msgstr "Veld" #: /var/www/html/cacti/lib/api_automation.php:1242 #: /var/www/html/cacti/lib/api_automation.php:1304 msgid "Pattern" msgstr "Patroon" #: /var/www/html/cacti/lib/api_automation.php:1254 #: /var/www/html/cacti/lib/api_automation.php:1316 #: /var/www/html/cacti/lib/api_automation.php:1380 #, php-format msgid "Item#%d" msgstr "Item#%d" #: /var/www/html/cacti/lib/api_automation.php:1285 msgid "No Device Selection Criteria" msgstr "Geen apparaat selectie criteria" #: /var/www/html/cacti/lib/api_automation.php:1346 msgid "No Graph Creation Criteria" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1365 msgid "Propagate Change" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1366 msgid "Search Pattern" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1367 msgid "Replace Pattern" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1411 msgid "No Tree Creation Criteria" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1872 #: /var/www/html/cacti/lib/api_automation.php:1922 msgid "Device Match Rule" msgstr "Apparaat koppelregels" #: /var/www/html/cacti/lib/api_automation.php:1887 msgid "Create Graph Rule" msgstr "Grafiekregels" #: /var/www/html/cacti/lib/api_automation.php:1926 msgid "Graph Match Rule" msgstr "Grafiek koppelregels" #: /var/www/html/cacti/lib/api_automation.php:1951 msgid "Create Tree Rule (Device)" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1955 msgid "Create Tree Rule (Graph)" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1975 #, php-format msgid "Rule Item [edit rule item for %s: %s]" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:1977 #, php-format msgid "Rule Item [new rule item for %s: %s]" msgstr "" #: /var/www/html/cacti/lib/api_automation.php:2668 msgid "Added by Cacti Automation" msgstr "Toegevoegd door Cacti automation" #: /var/www/html/cacti/lib/api_device.php:407 msgid "ERROR: Failed to connect to remote collector." msgstr "FOUT: Kon geen verbinding maken met de remote poller." #: /var/www/html/cacti/lib/api_device.php:414 msgid "Device is Disabled" msgstr "Apparaat is uitgeschakeld" #: /var/www/html/cacti/lib/api_device.php:415 msgid "Device Availability Check Bypassed" msgstr "Controle op beschikbaarheid is overgeslagen" #: /var/www/html/cacti/lib/api_device.php:422 msgid "SNMP Information" msgstr "SNMP informatie" #: /var/www/html/cacti/lib/api_device.php:426 msgid "SNMP not in use" msgstr "SNMP niet in gebruik" #: /var/www/html/cacti/lib/api_device.php:435 #: /var/www/html/cacti/lib/api_device.php:443 #: /var/www/html/cacti/lib/api_device.php:458 msgid "SNMP error" msgstr "SNMP fout" #: /var/www/html/cacti/lib/api_device.php:435 msgid "Session" msgstr "Sessie" #: /var/www/html/cacti/lib/api_device.php:458 msgid "Host" msgstr "Host" #: /var/www/html/cacti/lib/api_device.php:469 msgid "System:" msgstr "Systeem:" #: /var/www/html/cacti/lib/api_device.php:475 msgid "Uptime:" msgstr "Uptime:" #: /var/www/html/cacti/lib/api_device.php:476 msgid "days" msgstr "dagen" #: /var/www/html/cacti/lib/api_device.php:476 msgid "hours" msgstr "uren" #: /var/www/html/cacti/lib/api_device.php:476 msgid "minutes" msgstr "minuten" #: /var/www/html/cacti/lib/api_device.php:477 msgid "Hostname:" msgstr "Hostname:" #: /var/www/html/cacti/lib/api_device.php:478 msgid "Location:" msgstr "Locatie:" #: /var/www/html/cacti/lib/api_device.php:479 msgid "Contact:" msgstr "Contactpersoon:" #: /var/www/html/cacti/lib/api_device.php:510 #: /var/www/html/cacti/lib/functions.php:4016 #: /var/www/html/cacti/lib/functions.php:4018 #: /var/www/html/cacti/lib/functions.php:4022 msgid "Ping Results" msgstr "Ping resultaten" #: /var/www/html/cacti/lib/api_device.php:515 msgid "No Ping or SNMP Availability Check in Use" msgstr "Geen ping of SNMP beschikbaarheidscontrole in gebruik" #: /var/www/html/cacti/lib/auth.php:373 msgid "Web Basic" msgstr "" #: /var/www/html/cacti/lib/auth.php:1442 /var/www/html/cacti/lib/auth.php:1474 msgid "Branch:" msgstr "" #: /var/www/html/cacti/lib/auth.php:1451 /var/www/html/cacti/lib/auth.php:1483 #: /var/www/html/cacti/lib/html_tree.php:606 msgid "Device:" msgstr "Apparaat:" #: /var/www/html/cacti/lib/auth.php:1886 /var/www/html/cacti/lib/auth.php:1895 msgid "This account has been locked." msgstr "Dit account is geblokkeerd." #: /var/www/html/cacti/lib/auth.php:1938 #, php-format msgid "Password must be at least %d characters!" msgstr "Moet op zijn minst %d karakters lang zijn!" #: /var/www/html/cacti/lib/auth.php:1944 msgid "Your password must contain at least 1 numerical character!" msgstr "Het wachtwoord moet minstens 1 numeriek karakter bevatten!" #: /var/www/html/cacti/lib/auth.php:1948 msgid "" "Your password must contain a mix of lower case and upper case characters!" msgstr "" "Het wachtwoord moet een combinatie van kleine en hoofdletters bevatten!" #: /var/www/html/cacti/lib/auth.php:1954 msgid "Your password must contain at least 1 special character!" msgstr "Het wachtwoord moet tenminste 1 vreemd teken bevatten!" #: /var/www/html/cacti/lib/clog_webapi.php:193 msgid "" "Click 'Continue' to purge the Log File.


    Note: If logging is set " "to both Cacti and Syslog, the log information will remain in Syslog." msgstr "" "Klik op 'Volgende' om het Cacti log bestand te legen.


    Let op: Als " "logging is ingesteld op Cacti en Syslog, dan zal de log informatie " "beschikbaar blijven in de Syslog." #: /var/www/html/cacti/lib/clog_webapi.php:199 #: /var/www/html/cacti/utilities.php:1072 msgid "Purge Log" msgstr "Logbestand legen" #: /var/www/html/cacti/lib/clog_webapi.php:223 #: /var/www/html/cacti/utilities.php:1004 msgid "Log Filters" msgstr "Log filters" #: /var/www/html/cacti/lib/clog_webapi.php:240 msgid " - Admin Filter in Affect" msgstr " - Admin filter wordt toegepast" #: /var/www/html/cacti/lib/clog_webapi.php:242 msgid " - No Admin Filter in Affect" msgstr " - Geen admin filter toegepast" #: /var/www/html/cacti/lib/clog_webapi.php:245 msgid " - Admin View" msgstr " - Admin weergave" #: /var/www/html/cacti/lib/clog_webapi.php:250 #, php-format msgid "Log [Total Lines: %d %s - Additional Filter in Affect]" msgstr "Log [Totaal aantal lijnen: %d %s - Extra filter actief]" #: /var/www/html/cacti/lib/clog_webapi.php:252 #, php-format msgid "Log [Total Lines: %d %s - No Other Filter in Affect]" msgstr "Log [Totaal aantal lijnen: %d %s - Geen ander filter actief]" #: /var/www/html/cacti/lib/clog_webapi.php:262 #: /var/www/html/cacti/utilities.php:1156 #: /var/www/html/cacti/utilities.php:1494 #: /var/www/html/cacti/utilities.php:1701 #: /var/www/html/cacti/utilities.php:1780 #: /var/www/html/cacti/utilities.php:2433 #: /var/www/html/cacti/utilities.php:2642 msgid "Entries" msgstr "Regels" #: /var/www/html/cacti/lib/clog_webapi.php:341 #: /var/www/html/cacti/utilities.php:1013 msgid "File" msgstr "Bestand" #: /var/www/html/cacti/lib/clog_webapi.php:401 #: /var/www/html/cacti/utilities.php:1057 msgid "Tail Lines" msgstr "Aantal rijen" #: /var/www/html/cacti/lib/clog_webapi.php:433 #: /var/www/html/cacti/utilities.php:1085 msgid "Stats" msgstr "Statistieken" #: /var/www/html/cacti/lib/clog_webapi.php:436 #: /var/www/html/cacti/utilities.php:1088 msgid "Debug" msgstr "Debug" #: /var/www/html/cacti/lib/clog_webapi.php:437 #: /var/www/html/cacti/utilities.php:1089 msgid "SQL Calls" msgstr "SQL commando's" #: /var/www/html/cacti/lib/clog_webapi.php:441 #: /var/www/html/cacti/utilities.php:1093 msgid "Display Order" msgstr "Weergavevolgorde" #: /var/www/html/cacti/lib/clog_webapi.php:445 #: /var/www/html/cacti/utilities.php:1097 msgid "Newest First" msgstr "Nieuwste eerst" #: /var/www/html/cacti/lib/clog_webapi.php:446 #: /var/www/html/cacti/utilities.php:1098 msgid "Oldest First" msgstr "Oudste eerst" #: /var/www/html/cacti/lib/data_query.php:75 #, php-format msgid "Running data query [%s]." msgstr "Data query [%s] uitvoeren." #: /var/www/html/cacti/lib/data_query.php:84 #, php-format msgid "Found type = '%s' [%s]." msgstr "Gevonden type = '%s' [%s]." #: /var/www/html/cacti/lib/data_query.php:106 #, php-format msgid "Unknown type = '%s'." msgstr "Onbekend type = '%s'." #: /var/www/html/cacti/lib/data_query.php:113 msgid "Update data query sort cache complete" msgstr "Bijwerken van data query sortering cache is voltooid" #: /var/www/html/cacti/lib/data_query.php:143 msgid "Updated data query index ordering" msgstr "" #: /var/www/html/cacti/lib/data_query.php:147 msgid "Update re-index cache complete" msgstr "" #: /var/www/html/cacti/lib/data_query.php:151 msgid "Update data query cache complete" msgstr "" #: /var/www/html/cacti/lib/data_query.php:155 msgid "Update poller cache from query complete" msgstr "" #: /var/www/html/cacti/lib/data_query.php:160 #: /var/www/html/cacti/lib/data_query.php:167 msgid "Automation execute data query complete" msgstr "" #: /var/www/html/cacti/lib/data_query.php:163 #: /var/www/html/cacti/lib/data_query.php:170 msgid "Plugin hooks complete" msgstr "" #: /var/www/html/cacti/lib/data_query.php:244 #, php-format msgid "Could not find data query XML file at '%s'" msgstr "Het data query XML bestand kon niet worden gevonden in '%s'" #: /var/www/html/cacti/lib/data_query.php:248 #, php-format msgid "Found data query XML file at '%s'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:266 #: /var/www/html/cacti/lib/data_query.php:416 #: /var/www/html/cacti/lib/data_query.php:1508 msgid "Error parsing XML file into an array." msgstr "" #: /var/www/html/cacti/lib/data_query.php:270 #: /var/www/html/cacti/lib/data_query.php:420 msgid "XML file parsed ok." msgstr "XML bestand succesvol geparsed." #: /var/www/html/cacti/lib/data_query.php:278 #: /var/www/html/cacti/lib/data_query.php:423 #, php-format msgid "Invalid field <index_order>%s</index_order>" msgstr "" #: /var/www/html/cacti/lib/data_query.php:279 #: /var/www/html/cacti/lib/data_query.php:424 msgid "" "Must contain <direction>input</direction> or <direction>" "input-output</direction> fields only" msgstr "" #: /var/www/html/cacti/lib/data_query.php:290 #, php-format msgid "Executing script for num of indexes '%s'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:292 #, php-format msgid "Found number of indexes: %s" msgstr "Aantal gevonden indexes: %s" #: /var/www/html/cacti/lib/data_query.php:296 msgid "" "<arg_num_indexes> missing in XML file, 'Index Count Changed' not " "supported" msgstr "" #: /var/www/html/cacti/lib/data_query.php:298 msgid "" "<arg_num_indexes> missing in XML file, 'Index Count Changed' emulated " "by counting arg_index entries" msgstr "" #: /var/www/html/cacti/lib/data_query.php:308 #, php-format msgid "Executing script for list of indexes '%s', Index Count: %s" msgstr "" #: /var/www/html/cacti/lib/data_query.php:310 msgid "Click to show Data Query output for 'index'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:313 #, php-format msgid "Found index: %s" msgstr "Gevonden index: %s" #: /var/www/html/cacti/lib/data_query.php:326 #, php-format msgid "Click to show Data Query output for sfield '%s'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:330 #, php-format msgid "Executing script query '%s'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:339 #, php-format msgid "Found item [%s='%s'] index: %s" msgstr "Gevonden item [%s='%s'] index: %s" #: /var/www/html/cacti/lib/data_query.php:375 #: /var/www/html/cacti/lib/data_query.php:390 #, php-format msgid "Total: %f, Delta: %f, %s" msgstr "" #: /var/www/html/cacti/lib/data_query.php:410 #, php-format msgid "Invalid host_id: %s" msgstr "" #: /var/www/html/cacti/lib/data_query.php:435 msgid "Failed to load SNMP session." msgstr "" #: /var/www/html/cacti/lib/data_query.php:444 #, php-format msgid "Executing SNMP get for num of indexes @ '%s' Index Count: %s" msgstr "" #: /var/www/html/cacti/lib/data_query.php:446 msgid "" "<oid_num_indexes> missing in XML file, 'Index Count Changed' emulated " "by counting oid_index entries" msgstr "" #: /var/www/html/cacti/lib/data_query.php:452 #, php-format msgid "Executing SNMP walk for list of indexes @ '%s' Index Count: %s" msgstr "" #: /var/www/html/cacti/lib/data_query.php:456 msgid "No SNMP data returned" msgstr "Geen SNMP data verkregen" #: /var/www/html/cacti/lib/data_query.php:461 #, php-format msgid "Index found at OID: '%s' value: '%s'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:474 #, php-format msgid "index_parse at OID: '%s' results: '%s'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:492 #, php-format msgid "" "Fixing wrong 'method' field for '%s' since 'rewrite_index' or 'oid_suffix' " "is defined" msgstr "" #: /var/www/html/cacti/lib/data_query.php:499 #, php-format msgid "Inserting index data for field '%s' [value='%s']" msgstr "" #: /var/www/html/cacti/lib/data_query.php:504 #, php-format msgid "Located input field '%s' [get]" msgstr "" #: /var/www/html/cacti/lib/data_query.php:513 #, php-format msgid "Found OID rewrite rule: 's/%s/%s/'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:524 #, php-format msgid "oid_rewrite at OID: '%s' new OI: '%s'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:545 #, php-format msgid "Executing SNMP get for data @ '%s' [value='%s']" msgstr "" #: /var/www/html/cacti/lib/data_query.php:555 #, php-format msgid "Field '%s' %s" msgstr "Veld '%s' %s" #: /var/www/html/cacti/lib/data_query.php:590 #, php-format msgid "Executing SNMP get for %s oids" msgstr "" #: /var/www/html/cacti/lib/data_query.php:626 #, php-format msgid "Got SNMP get result for data @ '%s' [value='%s'] (index: %s)" msgstr "" #: /var/www/html/cacti/lib/data_query.php:655 #, php-format msgid "Executing SNMP get for data @ '%s' [value='$value']" msgstr "" #: /var/www/html/cacti/lib/data_query.php:661 #, php-format msgid "Click to show Data Query output for field '%s'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:663 #, php-format msgid "Located input field '%s' [walk]" msgstr "" #: /var/www/html/cacti/lib/data_query.php:683 #, php-format msgid "Executing SNMP walk for data @ '%s'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:732 #, php-format msgid "Found item [%s='%s'] index: %s [from %s]" msgstr "Gevonden item [%s='%s'] index: %s [van %s]" #: /var/www/html/cacti/lib/data_query.php:770 #, php-format msgid "Found OCTET STRING '%s' decoded value: '%s'" msgstr "" #: /var/www/html/cacti/lib/data_query.php:776 #, php-format msgid "Found item [%s='%s'] index: %s [from regexp oid parse]" msgstr "Gevonden item [%s='%s'] index: %s [van regexp oid parse]" #: /var/www/html/cacti/lib/data_query.php:1141 msgid "Update data source data query cache complete" msgstr "" #: /var/www/html/cacti/lib/functions.php:696 #, php-format msgid "Error %s is not readable" msgstr "Fout %s is niet leesbaar" #: /var/www/html/cacti/lib/functions.php:1956 #: /var/www/html/cacti/lib/functions.php:1961 msgid "Logged in as" msgstr "Ingelogd als" #: /var/www/html/cacti/lib/functions.php:1956 msgid "Login as Regular User" msgstr "Log in als reguliere gebruiker" #: /var/www/html/cacti/lib/functions.php:1956 msgid "guest" msgstr "gast" #: /var/www/html/cacti/lib/functions.php:1963 msgid "Edit Profile" msgstr "Wijzig profiel" #: /var/www/html/cacti/lib/functions.php:1965 msgid "Logout" msgstr "Uitloggen" #: /var/www/html/cacti/lib/functions.php:1982 #: /var/www/html/cacti/lib/functions.php:1988 msgid "User Profile (Edit)" msgstr "Gebruikersprofiel (bewerken)" #: /var/www/html/cacti/lib/functions.php:2000 #: /var/www/html/cacti/lib/functions.php:2006 msgid "Tree Mode" msgstr "" #: /var/www/html/cacti/lib/functions.php:2012 msgid "List Mode" msgstr "Lijst modus" #: /var/www/html/cacti/lib/functions.php:2044 #: /var/www/html/cacti/lib/functions.php:2050 #: /var/www/html/cacti/lib/functions.php:2924 #: /var/www/html/cacti/lib/html.php:1412 /var/www/html/cacti/lib/html.php:1489 #: /var/www/html/cacti/links.php:343 /var/www/html/cacti/user_admin.php:1643 #: /var/www/html/cacti/user_group_admin.php:1396 msgid "Console" msgstr "Console" #: /var/www/html/cacti/lib/functions.php:2062 #: /var/www/html/cacti/lib/functions.php:2104 #: /var/www/html/cacti/lib/functions.php:2122 #: /var/www/html/cacti/lib/functions.php:2176 #: /var/www/html/cacti/lib/functions.php:2188 #: /var/www/html/cacti/lib/functions.php:2200 #: /var/www/html/cacti/lib/functions.php:2236 #: /var/www/html/cacti/lib/functions.php:2254 #: /var/www/html/cacti/lib/functions.php:2272 #: /var/www/html/cacti/lib/functions.php:2290 #: /var/www/html/cacti/lib/functions.php:2308 #: /var/www/html/cacti/lib/functions.php:2332 #: /var/www/html/cacti/lib/functions.php:2368 #: /var/www/html/cacti/lib/functions.php:2488 #: /var/www/html/cacti/lib/functions.php:2512 #: /var/www/html/cacti/lib/functions.php:2536 #: /var/www/html/cacti/lib/functions.php:2554 #: /var/www/html/cacti/lib/functions.php:2566 #: /var/www/html/cacti/lib/functions.php:2668 #: /var/www/html/cacti/lib/functions.php:2692 #: /var/www/html/cacti/lib/functions.php:2710 #: /var/www/html/cacti/lib/functions.php:2728 #: /var/www/html/cacti/lib/functions.php:2746 #: /var/www/html/cacti/lib/functions.php:2770 msgid "(Edit)" msgstr "(Wijzig)" #: /var/www/html/cacti/lib/functions.php:2086 msgid "Create New Graphs" msgstr "Nieuwe grafieken maken" #: /var/www/html/cacti/lib/functions.php:2092 msgid "Create Graphs from Data Query" msgstr "Grafieken maken vanuit een data query" #: /var/www/html/cacti/lib/functions.php:2110 #: /var/www/html/cacti/lib/functions.php:2128 #: /var/www/html/cacti/lib/functions.php:2224 #: /var/www/html/cacti/lib/functions.php:2314 #: /var/www/html/cacti/lib/functions.php:2338 #: /var/www/html/cacti/lib/functions.php:2494 msgid "(Remove)" msgstr "(Verwijder)" #: /var/www/html/cacti/lib/functions.php:2146 #: /var/www/html/cacti/lib/functions.php:2152 #: /var/www/html/cacti/lib/functions.php:2158 #: /var/www/html/cacti/lib/functions.php:2164 #: /var/www/html/cacti/lib/functions.php:2428 msgid "View Cacti Log" msgstr "Toon Cacti log" #: /var/www/html/cacti/lib/functions.php:2170 msgid "Graph Trees" msgstr "" #: /var/www/html/cacti/lib/functions.php:2302 msgid "Round Robin Archives" msgstr "" #: /var/www/html/cacti/lib/functions.php:2344 msgid "Data Input Fields" msgstr "Data invoer velden" #: /var/www/html/cacti/lib/functions.php:2350 #: /var/www/html/cacti/lib/functions.php:2380 msgid "(Remove Item)" msgstr "(Verwijder item)" #: /var/www/html/cacti/lib/functions.php:2398 msgid "List unused Files" msgstr "Lijst van ongebruikte bestanden" #: /var/www/html/cacti/lib/functions.php:2410 #: /var/www/html/cacti/lib/functions.php:2422 #: /var/www/html/cacti/utilities.php:1874 msgid "View Poller Cache" msgstr "Toon poller cache" #: /var/www/html/cacti/lib/functions.php:2416 #: /var/www/html/cacti/utilities.php:1878 msgid "View Data Query Cache" msgstr "Toon data query cache" #: /var/www/html/cacti/lib/functions.php:2434 #: /var/www/html/cacti/utilities.php:1240 msgid "Clear Cacti Log" msgstr "Cacti log leegmaken" #: /var/www/html/cacti/lib/functions.php:2440 #: /var/www/html/cacti/utilities.php:1867 msgid "View User Log" msgstr "Toon gebruikerslog" #: /var/www/html/cacti/lib/functions.php:2446 msgid "Clear User Log" msgstr "Gebruikerslog leegmaken" #: /var/www/html/cacti/lib/functions.php:2452 #: /var/www/html/cacti/utilities.php:1858 #: /var/www/html/cacti/utilities.php:1859 msgid "Technical Support" msgstr "Technische ondersteuning" #: /var/www/html/cacti/lib/functions.php:2458 #: /var/www/html/cacti/utilities.php:1975 msgid "Boost Status" msgstr "" #: /var/www/html/cacti/lib/functions.php:2464 msgid "View SNMP Agent Cache" msgstr "Toon SNMP agent cache" #: /var/www/html/cacti/lib/functions.php:2470 msgid "View SNMP Agent Notification Log" msgstr "Toon SNMP agent notificatie log" #: /var/www/html/cacti/lib/functions.php:2500 /var/www/html/cacti/vdef.php:568 msgid "VDEF Items" msgstr "VDEF Items" #: /var/www/html/cacti/lib/functions.php:2506 msgid "View SNMP Notification Receivers" msgstr "Toon SNMP notificatie ontvangers" #: /var/www/html/cacti/lib/functions.php:2518 msgid "Cacti Settings" msgstr "Cacti instellingen" #: /var/www/html/cacti/lib/functions.php:2524 msgid "External Link" msgstr "Externe link" #: /var/www/html/cacti/lib/functions.php:2542 #: /var/www/html/cacti/lib/functions.php:2572 msgid "(Action)" msgstr "(Actie)" #: /var/www/html/cacti/lib/functions.php:2590 msgid "Export Results" msgstr "Exporteer resultaten" #: /var/www/html/cacti/lib/functions.php:2602 #: /var/www/html/cacti/lib/functions.php:2632 #: /var/www/html/cacti/lib/html.php:1433 /var/www/html/cacti/lib/html.php:1435 #: /var/www/html/cacti/lib/html.php:1516 msgid "Reporting" msgstr "Rapportages" #: /var/www/html/cacti/lib/functions.php:2608 #: /var/www/html/cacti/lib/functions.php:2638 msgid "Report Add" msgstr "Rapportage toevoegen" #: /var/www/html/cacti/lib/functions.php:2614 #: /var/www/html/cacti/lib/functions.php:2644 msgid "Report Delete" msgstr "Rapportage verwijderen" #: /var/www/html/cacti/lib/functions.php:2620 #: /var/www/html/cacti/lib/functions.php:2650 msgid "Report Edit" msgstr "Rapportage wijzigen" #: /var/www/html/cacti/lib/functions.php:2626 #: /var/www/html/cacti/lib/functions.php:2656 msgid "Report Edit Item" msgstr "Rapportageitem wijzen" #: /var/www/html/cacti/lib/functions.php:2680 msgid "Color Template Items" msgstr "Kleur template items" #: /var/www/html/cacti/lib/functions.php:2722 msgid "Aggregate Items" msgstr "Geaggregeerde items" #: /var/www/html/cacti/lib/functions.php:2758 msgid "Graph Rule Items" msgstr "" #: /var/www/html/cacti/lib/functions.php:2782 msgid "Tree Rule Items" msgstr "" #: /var/www/html/cacti/lib/functions.php:2881 msgid "Leaf" msgstr "" #: /var/www/html/cacti/lib/functions.php:2895 msgid "Non Query Based" msgstr "Niet query gebaseerd" #: /var/www/html/cacti/lib/functions.php:3636 msgid "" "Mailer Error: No TO address set!!
    If using the Test Mail " "link, please set the Alert e-mail setting." msgstr "" #: /var/www/html/cacti/lib/functions.php:3949 #, php-format msgid "Authentication failed: %s" msgstr "Authenticatie mislukt: %s" #: /var/www/html/cacti/lib/functions.php:3953 #, php-format msgid "HELO failed: %s" msgstr "HELO mislukt: %s" #: /var/www/html/cacti/lib/functions.php:3956 #, php-format msgid "Connect failed: %s" msgstr "Mislukte verbindingen: %s" #: /var/www/html/cacti/lib/functions.php:3959 msgid "SMTP error: " msgstr "SMTP fout: " #: /var/www/html/cacti/lib/functions.php:3972 msgid "" "This is a test message generated from Cacti. This message was sent to test " "the configuration of your Mail Settings." msgstr "" #: /var/www/html/cacti/lib/functions.php:3973 msgid "Your email settings are currently set as follows" msgstr "Uw e-mail instellingen zijn momenteel als volgt" #: /var/www/html/cacti/lib/functions.php:3974 msgid "Method" msgstr "Methode" #: /var/www/html/cacti/lib/functions.php:3976 msgid "Checking Configuration...
    " msgstr "Configuratie controleren…
    " #: /var/www/html/cacti/lib/functions.php:3983 msgid "PHP's Mailer Class" msgstr "PHP's Mailer Class" #: /var/www/html/cacti/lib/functions.php:3989 msgid "Method: SMTP" msgstr "Methode: SMTP" #: /var/www/html/cacti/lib/functions.php:4004 msgid "Not Shown for Security Reasons" msgstr "Wordt vanwege beveiligingsredenen niet getoond" #: /var/www/html/cacti/lib/functions.php:4005 msgid "Security" msgstr "Beveiliging" #: /var/www/html/cacti/lib/functions.php:4013 msgid "Ping Results:" msgstr "Ping resultaten:" #: /var/www/html/cacti/lib/functions.php:4022 msgid "Bypassed" msgstr "Overgeslagen" #: /var/www/html/cacti/lib/functions.php:4030 msgid "Creating Message Text..." msgstr "" #: /var/www/html/cacti/lib/functions.php:4033 msgid "Sending Message..." msgstr "Bericht wordt verstuurt..." #: /var/www/html/cacti/lib/functions.php:4037 msgid "Cacti Test Message" msgstr "Cacti testbericht" #: /var/www/html/cacti/lib/functions.php:4039 msgid "Success!" msgstr "Gelukt!" #: /var/www/html/cacti/lib/functions.php:4042 msgid "Message Not Sent due to ping failure." msgstr "" #: /var/www/html/cacti/lib/html.php:295 msgid "Data Query:" msgstr "Data query:" #: /var/www/html/cacti/lib/html.php:355 msgid "CSV Export of Graph Data" msgstr "CSV export van grafiekdata" #: /var/www/html/cacti/lib/html.php:358 msgid "Click to view just this Graph in Real-time" msgstr "" #: /var/www/html/cacti/lib/html.php:361 msgid "Kill Spikes in Graphs" msgstr "" #: /var/www/html/cacti/lib/html.php:398 msgid "Previous" msgstr "Vorige" #: /var/www/html/cacti/lib/html.php:401 #, php-format msgid "%d to %d of %s [ %s ]" msgstr "%d tot %d van %s [ %s ]" #: /var/www/html/cacti/lib/html.php:410 #, php-format msgid "All %d %s" msgstr "Alle %d %s" #: /var/www/html/cacti/lib/html.php:416 #, php-format msgid "No %s Found" msgstr "Geen %s gevonden" #: /var/www/html/cacti/lib/html.php:947 msgid "Alpha %" msgstr "Alpha %" #: /var/www/html/cacti/lib/html.php:988 msgid "No Task" msgstr "Geen taak" #: /var/www/html/cacti/lib/html.php:1233 msgid "Choose an action" msgstr "Kies een actie" #: /var/www/html/cacti/lib/html.php:1243 msgid "Execute Action" msgstr "Actie uitvoeren" #: /var/www/html/cacti/lib/html.php:1442 /var/www/html/cacti/lib/html.php:1444 #: /var/www/html/cacti/lib/html.php:1527 /var/www/html/cacti/managers.php:41 #: /var/www/html/cacti/managers.php:221 msgid "Logs" msgstr "Logs" #: /var/www/html/cacti/lib/html.php:1850 msgid "Standard Deviations" msgstr "Standaard afwijkingen" #: /var/www/html/cacti/lib/html.php:1852 #, php-format msgid "%s Standard Deviations" msgstr "%s standaardafwijkingen" #: /var/www/html/cacti/lib/html.php:1862 msgid "Variance Outliers" msgstr "" #: /var/www/html/cacti/lib/html.php:1864 #, php-format msgid "%d Outliers" msgstr "%d Uitschieters" #: /var/www/html/cacti/lib/html.php:1868 msgid "Kills Per RRA" msgstr "" #: /var/www/html/cacti/lib/html.php:1870 #, php-format msgid "%d Spikes" msgstr "%d Pieken" #: /var/www/html/cacti/lib/html.php:1877 msgid "Remove StdDev" msgstr "" #: /var/www/html/cacti/lib/html.php:1878 msgid "Remove Variance" msgstr "" #: /var/www/html/cacti/lib/html.php:1879 msgid "Gap Fill Range" msgstr "" #: /var/www/html/cacti/lib/html.php:1880 msgid "Float Range" msgstr "" #: /var/www/html/cacti/lib/html.php:1881 msgid "Dry Run StdDev" msgstr "" #: /var/www/html/cacti/lib/html.php:1882 msgid "Dry Run Variance" msgstr "" #: /var/www/html/cacti/lib/html.php:1883 msgid "Dry Run Gap Fill Range" msgstr "" #: /var/www/html/cacti/lib/html.php:1884 msgid "Dry Run Float Range" msgstr "" #: /var/www/html/cacti/lib/html_filter.php:82 msgid "Apply filter to table" msgstr "Filter toepassen op tabel" #: /var/www/html/cacti/lib/html_filter.php:87 msgid "Reset filter to default values" msgstr "Herstel filter naar standaard waarden" #: /var/www/html/cacti/lib/html_form.php:517 msgid "File Found" msgstr "Bestand gevonden" #: /var/www/html/cacti/lib/html_form.php:519 msgid "Path is a Directory and not a File" msgstr "Het pad is een directorie en geen bestand" #: /var/www/html/cacti/lib/html_form.php:523 msgid "File is Not Found" msgstr "Bestand is niet gevonden" #: /var/www/html/cacti/lib/html_form.php:526 msgid "Enter a valid file path" msgstr "Voer een geldig bestandslocatie in" #: /var/www/html/cacti/lib/html_form.php:562 msgid "Directory Found" msgstr "Directorie gevonden" #: /var/www/html/cacti/lib/html_form.php:564 msgid "Path is a File and not a Directory" msgstr "Het pad is een bestand en geen directorie" #: /var/www/html/cacti/lib/html_form.php:568 msgid "Directory is Not found" msgstr "Directorie is niet gevonden" #: /var/www/html/cacti/lib/html_form.php:571 msgid "Enter a valid directory path" msgstr "Voer een geldige directorie in" #: /var/www/html/cacti/lib/html_form.php:1040 #, php-format msgid "Cacti Color (%s)" msgstr "Cacti kleur (%s)" #: /var/www/html/cacti/lib/html_form.php:1097 msgid "NO FONT VERIFICATION POSSIBLE" msgstr "GEEN LETTERTYPE VERIFICATIE MOGELIJK" #: /var/www/html/cacti/lib/html_form_template.php:568 #: /var/www/html/cacti/lib/html_form_template.php:583 #, php-format msgid "Data Query Data Sources must be created through %s" msgstr "" #: /var/www/html/cacti/lib/html_graph.php:194 #: /var/www/html/cacti/lib/html_tree.php:659 msgid "" "Save the current Graphs, Columns, Thumbnail, Preset, and Timeshift " "preferences to your profile" msgstr "" #: /var/www/html/cacti/lib/html_graph.php:224 #: /var/www/html/cacti/lib/html_tree.php:683 msgid "Columns" msgstr "Kolommen" #: /var/www/html/cacti/lib/html_graph.php:228 #: /var/www/html/cacti/lib/html_tree.php:687 #, php-format msgid "%d Column" msgstr "%d Kolom" #: /var/www/html/cacti/lib/html_graph.php:239 #: /var/www/html/cacti/lib/html_reports.php:125 #: /var/www/html/cacti/lib/html_tree.php:698 msgid "Thumbnails" msgstr "Thumbnails" #: /var/www/html/cacti/lib/html_graph.php:258 #: /var/www/html/cacti/lib/html_tree.php:717 msgid "Custom" msgstr "Aangepast" #: /var/www/html/cacti/lib/html_graph.php:271 #: /var/www/html/cacti/lib/html_reports.php:1522 #: /var/www/html/cacti/lib/html_reports.php:1533 #: /var/www/html/cacti/lib/html_tree.php:730 msgid "From" msgstr "Van" #: /var/www/html/cacti/lib/html_graph.php:276 #: /var/www/html/cacti/lib/html_tree.php:735 msgid "Start Date Selector" msgstr "Startdatum selector" #: /var/www/html/cacti/lib/html_graph.php:280 #: /var/www/html/cacti/lib/html_reports.php:1523 #: /var/www/html/cacti/lib/html_reports.php:1534 #: /var/www/html/cacti/lib/html_tree.php:739 msgid "To" msgstr "Aan" #: /var/www/html/cacti/lib/html_graph.php:285 #: /var/www/html/cacti/lib/html_tree.php:744 msgid "End Date Selector" msgstr "Einddatum selector" #: /var/www/html/cacti/lib/html_graph.php:290 #: /var/www/html/cacti/lib/html_tree.php:749 msgid "Shift Time Backward" msgstr "Verschuif tijd achteruit" #: /var/www/html/cacti/lib/html_graph.php:291 #: /var/www/html/cacti/lib/html_tree.php:750 msgid "Define Shifting Interval" msgstr "Definieer verschuivingsinterval" #: /var/www/html/cacti/lib/html_graph.php:302 #: /var/www/html/cacti/lib/html_tree.php:761 msgid "Shift Time Forward" msgstr "Verschuif tijd vooruit" #: /var/www/html/cacti/lib/html_graph.php:307 #: /var/www/html/cacti/lib/html_tree.php:766 msgid "Refresh selected time span" msgstr "Vernieuw geselecteerde periode" #: /var/www/html/cacti/lib/html_graph.php:308 #: /var/www/html/cacti/lib/html_tree.php:767 msgid "Return to the default time span" msgstr "Stel de standaard tijdperiode in" #: /var/www/html/cacti/lib/html_graph.php:328 msgid "Interval" msgstr "Interval" #: /var/www/html/cacti/lib/html_graph.php:340 #: /var/www/html/cacti/lib/html_tree.php:797 msgid "Stop" msgstr "Stop" #: /var/www/html/cacti/lib/html_graph.php:423 #: /var/www/html/cacti/lib/html_tree.php:881 #: /var/www/html/cacti/settings.php:342 /var/www/html/cacti/settings.php:361 #: /var/www/html/cacti/settings.php:410 msgid "Enter keyword" msgstr "Voer sleutelwoord in" #: /var/www/html/cacti/lib/html_reports.php:35 #: /var/www/html/cacti/lib/html_reports.php:1517 msgid "Report Name" msgstr "Rapportagenaam" #: /var/www/html/cacti/lib/html_reports.php:37 msgid "New Report" msgstr "Nieuwe rapportage" #: /var/www/html/cacti/lib/html_reports.php:38 msgid "Give this Report a descriptive Name" msgstr "Geef dit rapport een beschrijvende naam" #: /var/www/html/cacti/lib/html_reports.php:43 msgid "Enable Report" msgstr "Rapportage inschakelen" #: /var/www/html/cacti/lib/html_reports.php:46 msgid "Check this box to enable this Report." msgstr "Activeer deze box om dit rapport te activeren." #: /var/www/html/cacti/lib/html_reports.php:51 msgid "Output Formatting" msgstr "Opmaak uitvoer" #: /var/www/html/cacti/lib/html_reports.php:56 msgid "Use Custom Format HTML" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:59 msgid "Check this box if you want to use custom html and CSS for the report." msgstr "" "Activeer deze box als u aangepaste HTML en CSS in dit rapport wilt gebruiken." #: /var/www/html/cacti/lib/html_reports.php:64 msgid "Format File to Use" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:67 msgid "" "Choose the custom html wrapper and CSS file to use. This file contains both " "html and CSS to wrap around your report.\n" "\t\tIf it contains more than simply CSS, you need to place a special " " tag inside of the file. This format tag will be replaced by the " "report content. These files are located in the 'formats' directory." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:73 msgid "Default Text Font Size" msgstr "Standaard Textgrootte" #: /var/www/html/cacti/lib/html_reports.php:74 msgid "" "Defines the default font size for all text in the report including the " "Report Title." msgstr "" "De standaard grootte van het lettertype voor alle tekst in de rapportage " "inclusief de rapport titel." #: /var/www/html/cacti/lib/html_reports.php:81 msgid "Default Object Alignment" msgstr "Standaard object uitlijning" #: /var/www/html/cacti/lib/html_reports.php:82 msgid "Defines the default Alignment for Text and Graphs." msgstr "De standaard uitlijning voor tekst en grafieken." #: /var/www/html/cacti/lib/html_reports.php:89 msgid "Graph Linked" msgstr "Gekoppelde grafieken" #: /var/www/html/cacti/lib/html_reports.php:92 msgid "Should the Graphs be linked back to the Cacti site?" msgstr "Moeten de grafieken gelinked worden naar de Cacti site?" #: /var/www/html/cacti/lib/html_reports.php:96 msgid "Graph Settings" msgstr "Grafiek instellingen" #: /var/www/html/cacti/lib/html_reports.php:101 msgid "Graph Columns" msgstr "Grafiek kolommen" #: /var/www/html/cacti/lib/html_reports.php:105 msgid "The number of Graph columns." msgstr "Het aantal grafiek kolommen." #: /var/www/html/cacti/lib/html_reports.php:113 msgid "The Graph width in pixels." msgstr "De grafiekbreedte in pixels." #: /var/www/html/cacti/lib/html_reports.php:121 msgid "The Graph height in pixels." msgstr "De grafiekbreedte in pixels." #: /var/www/html/cacti/lib/html_reports.php:128 msgid "Should the Graphs be rendered as Thumbnails?" msgstr "Moeten de grafieken als thumbnails worden gerenderd?" #: /var/www/html/cacti/lib/html_reports.php:132 msgid "Email Frequency" msgstr "E-mail frequentie" #: /var/www/html/cacti/lib/html_reports.php:137 msgid "Next Timestamp for Sending Mail Report" msgstr "Volgende uitvoer voor versturen van mail rapportage" #: /var/www/html/cacti/lib/html_reports.php:138 msgid "" "Start time for [first|next] mail to take place. All future mailing times " "will be based upon this start time. A good example would be 2:00am. The time " "must be in the future. If a fractional time is used, say 2:00am, it is " "assumed to be in the future." msgstr "" "De starttijd voor de eerste of volgende mail. Alle toekomstige mailingtijden " "worden gebaseerd op deze starttijd. Een voorbeeld is: 02:00 uur. De tijd " "moet in de toekomst zijn. Als alleen een tijd wordt gebruikt, bijvoorbeeld " "02:00 uur, dan er vanuit gegaan dat deze in de toekomst is." #: /var/www/html/cacti/lib/html_reports.php:146 msgid "Report Interval" msgstr "Rapportage interval" #: /var/www/html/cacti/lib/html_reports.php:147 msgid "Defines a Report Frequency relative to the given Mailtime above." msgstr "" "Definieert de frequentie van het rapport. Relatief aan de opgegeven mailtijd " "van hierboven." #: /var/www/html/cacti/lib/html_reports.php:148 msgid "e.g. 'Week(s)' represents a weekly Reporting Interval." msgstr "bijvoorbeeld: 'We(e)k(en) is een wekelijkse rapportage interval." #: /var/www/html/cacti/lib/html_reports.php:155 msgid "Interval Frequency" msgstr "Interval frequentie" #: /var/www/html/cacti/lib/html_reports.php:156 msgid "" "Based upon the Timespan of the Report Interval above, defines the Frequency " "within that Interval." msgstr "" "Gebaseerd op de tijdspanne van de rapportage interval hierboven, definieer " "de frequentie van die interval." #: /var/www/html/cacti/lib/html_reports.php:157 msgid "" "e.g. If the Report Interval is 'Month(s)', then '2' indicates Every '2 " "Month(s) from the next Mailtime.' Lastly, if using the Month(s) Report " "Intervals, the 'Day of Week' and the 'Day of Month' are both calculated " "based upon the Mailtime you specify above." msgstr "" "bijvoorbeeld: Als de rapportage interval 'Wekelijks' is, dan impliceert '2' " "dat de rapportage iedere 2 weken wordt verstuurd vanaf het eerst volgende " "mail moment. Als er gebruik wordt gemaakt van de Maandelijkse rapportage " "intervallen, de 'dag van de week' en de 'dag van de maand' worden beiden " "berekend op basis van de mailtijd die hierboven is gespecificeerd." #: /var/www/html/cacti/lib/html_reports.php:165 msgid "Email Sender/Receiver Details" msgstr "E-mail zender/ontvanger gegevens" #: /var/www/html/cacti/lib/html_reports.php:170 msgid "Subject" msgstr "Onderwerp" #: /var/www/html/cacti/lib/html_reports.php:172 msgid "Cacti Report" msgstr "Cacti rapportage" #: /var/www/html/cacti/lib/html_reports.php:173 msgid "" "This value will be used as the default Email subject. The report name will " "be used if left blank." msgstr "" "Deze waarde wordt gebruikt als standaard onderwerp voor de e-mail. Indien " "leeg, wordt de rapportagenaam gehanteerd." #: /var/www/html/cacti/lib/html_reports.php:181 msgid "This Name will be used as the default E-mail Sender" msgstr "Deze naam zal worden gebruikt als de standaard afzender van de e-mail" #: /var/www/html/cacti/lib/html_reports.php:189 msgid "This Address will be used as the E-mail Senders address" msgstr "Dit adres wordt gebruikt als afzender adres" #: /var/www/html/cacti/lib/html_reports.php:194 msgid "To Email Address(es)" msgstr "E-mailadres(sen) ontvanger(s)" #: /var/www/html/cacti/lib/html_reports.php:200 msgid "Please separate multiple addresses by comma (,)" msgstr "Vul alstublieft meerdere adressen in gescheiden met een komma (,)" #: /var/www/html/cacti/lib/html_reports.php:205 msgid "BCC Address(es)" msgstr "BCC adres(sen)" #: /var/www/html/cacti/lib/html_reports.php:211 msgid "Blind carbon copy. Please separate multiple addresses by comma (,)" msgstr "" "Blind Carbon Copy. Voer meerdere adressen in gescheiden met een komma (,)" #: /var/www/html/cacti/lib/html_reports.php:216 msgid "Image attach type" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:219 msgid "Select one of the given Types for the Image Attachments" msgstr "Selecteer een van de gegeven types voor de afbeelding bijlagen" #: /var/www/html/cacti/lib/html_reports.php:328 msgid "Item Type to be added." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:334 msgid "Graph Tree" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:338 msgid "Select a Tree to use." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:344 msgid "Graph Tree Branch" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:348 msgid "Select a Tree Branch to use." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:370 msgid "Cascade to Branches" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:373 msgid "Should all children branch Graphs be rendered?" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:377 msgid "Graph Name Regular Expression" msgstr "Grafiek naam reguliere expressie" #: /var/www/html/cacti/lib/html_reports.php:380 msgid "" "A Perl compatible regular expression (REGEXP) used to select graphs to " "include from the tree." msgstr "" "Een Perl reguliere expressie (REGEXP) dat gebruikt wordt om grafieken te " "integreren in de boomstructuur." #: /var/www/html/cacti/lib/html_reports.php:390 msgid "Select a Device Template to use." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:399 msgid "Select a Device to specify a Graph" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:409 msgid "Select a Graph Template for the host" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:419 msgid "The Graph to use for this report item." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:429 msgid "Graph End Time is always set to Cacti's schedule." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:430 msgid "Graph Start Time equals Graph End Time minus given timespan" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:435 #: /var/www/html/cacti/lib/html_reports.php:1258 msgid "Alignment" msgstr "Uitlijning" #: /var/www/html/cacti/lib/html_reports.php:438 msgid "Alignment of the Item" msgstr "Uitlijning van het item" #: /var/www/html/cacti/lib/html_reports.php:443 msgid "Fixed Text" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:446 msgid "Enter descriptive Text" msgstr "Voer een beschrijvende tekst in" #: /var/www/html/cacti/lib/html_reports.php:451 #: /var/www/html/cacti/lib/html_reports.php:1259 msgid "Font Size" msgstr "Lettertypegrootte" #: /var/www/html/cacti/lib/html_reports.php:455 msgid "Font Size of the Item" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:518 msgid "Date/Time moved to the same time Tomorrow" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:701 msgid "You must select at least one Report." msgstr "U moet op zijn minst een rapport selecteren." #: /var/www/html/cacti/lib/html_reports.php:709 msgid "Click 'Continue' to delete the following Report(s)." msgstr "Klik op 'Volgende' om de volgende rapportage(s) te verwijderen." #: /var/www/html/cacti/lib/html_reports.php:716 msgid "Click 'Continue' to take ownership of the following Report(s)." msgstr "" #: /var/www/html/cacti/lib/html_reports.php:723 msgid "" "Click 'Continue' to duplicate the following Report(s). You may optionally " "change the title for the new Reports" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:725 msgid "Name Format:" msgstr "Naamlayout:" #: /var/www/html/cacti/lib/html_reports.php:735 msgid "Click 'Continue' to enable the following Report(s)." msgstr "Klik op 'Volgende' om de volgende rapportage(s) in te schakelen." #: /var/www/html/cacti/lib/html_reports.php:737 msgid "" "Please be certain that those Report(s) have successfully been tested first!" msgstr "" #: /var/www/html/cacti/lib/html_reports.php:743 msgid "Click 'Continue' to disable the following Reports." msgstr "Klik op 'Volgende' om de volgende rapportage(s) uit te schakelen." #: /var/www/html/cacti/lib/html_reports.php:750 msgid "Click 'Continue' to send the following Report(s) now." msgstr "Klik op 'Volgende' om de volgende rapportage(s) direct te versturen." #: /var/www/html/cacti/lib/html_reports.php:796 #, php-format msgid "Unable to send Report '%d'. Please set destination e-mail addresses" msgstr "" "Kon geen rapport verzenden '%d'. Vul alstublieft het ontvangende e-mailadres " "in" #: /var/www/html/cacti/lib/html_reports.php:801 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail subject" msgstr "" "Kon geen rapport verzenden '%s'. Vul alstublieft een e-mail onderwerp in" #: /var/www/html/cacti/lib/html_reports.php:806 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail From Name" msgstr "" "Kon geen rapport verzenden '%s'. Vul alstublieft de naam van de verzender in" #: /var/www/html/cacti/lib/html_reports.php:811 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail from address" msgstr "" "Kon geen rapport verzenden '%s'. Vul alstublieft het verzendende e-mailadres " "in" #: /var/www/html/cacti/lib/html_reports.php:860 #, php-format msgid "Report Item [edit Report: %s]" msgstr "Rapportage item [wijzig rapport: %s]" #: /var/www/html/cacti/lib/html_reports.php:862 #, php-format msgid "Report Item [new Report: %s]" msgstr "Rapport item [nieuw rapport: %s]" #: /var/www/html/cacti/lib/html_reports.php:1103 #: /var/www/html/cacti/user_admin.php:1949 #, php-format msgid "[edit: %s]" msgstr "[wijzig %s]" #: /var/www/html/cacti/lib/html_reports.php:1104 msgid "Events" msgstr "Gebeurtenissen" #: /var/www/html/cacti/lib/html_reports.php:1106 #: /var/www/html/cacti/lib/import.php:1889 #: /var/www/html/cacti/user_admin.php:1951 msgid "[new]" msgstr "[nieuw]" #: /var/www/html/cacti/lib/html_reports.php:1138 msgid "Send Report" msgstr "Verstuur rapport" #: /var/www/html/cacti/lib/html_reports.php:1216 msgid "Scheduled Events" msgstr "Geplande momenten" #: /var/www/html/cacti/lib/html_reports.php:1227 msgid "Report Preview" msgstr "Rapportage voorbeeld" #: /var/www/html/cacti/lib/html_reports.php:1256 msgid "Item Details" msgstr "Item details" #: /var/www/html/cacti/lib/html_reports.php:1257 msgid "Timespan" msgstr "Tijdspanne" #: /var/www/html/cacti/lib/html_reports.php:1296 msgid "(All Branches)" msgstr "(Alle branches)" #: /var/www/html/cacti/lib/html_reports.php:1298 msgid "(Current Branch)" msgstr "(Huidige branch)" #: /var/www/html/cacti/lib/html_reports.php:1341 msgid "No Report Items" msgstr "Geen rapportage items" #: /var/www/html/cacti/lib/html_reports.php:1415 msgid "Administrator Level" msgstr "Beheerdersniveau" #: /var/www/html/cacti/lib/html_reports.php:1415 #, php-format msgid "Reports [%s]" msgstr "Rapportages [%s]" #: /var/www/html/cacti/lib/html_reports.php:1415 msgid "User Level" msgstr "Gebruikersniveau" #: /var/www/html/cacti/lib/html_reports.php:1438 #: /var/www/html/cacti/lib/html_reports.php:1509 msgid "Reports" msgstr "Rapportages" #: /var/www/html/cacti/lib/html_reports.php:1518 #: /var/www/html/cacti/tree.php:1757 msgid "Owner" msgstr "Eigenaar" #: /var/www/html/cacti/lib/html_reports.php:1519 #: /var/www/html/cacti/lib/html_reports.php:1530 msgid "Frequency" msgstr "Frequentie" #: /var/www/html/cacti/lib/html_reports.php:1520 #: /var/www/html/cacti/lib/html_reports.php:1531 msgid "Last Run" msgstr "Laatste run" #: /var/www/html/cacti/lib/html_reports.php:1521 #: /var/www/html/cacti/lib/html_reports.php:1532 msgid "Next Run" msgstr "Volgende run" #: /var/www/html/cacti/lib/html_reports.php:1529 msgid "Report Title" msgstr "Rapportage titel" #: /var/www/html/cacti/lib/html_reports.php:1560 msgid "Report Disabled - No Owner" msgstr "Rapportage uitgeschakeld - Geen eigenaar" #: /var/www/html/cacti/lib/html_reports.php:1564 msgid "Every" msgstr "Iedere" #: /var/www/html/cacti/lib/html_reports.php:1570 msgid "Multiple" msgstr "Meerdere" #: /var/www/html/cacti/lib/html_reports.php:1571 msgid "Invalid" msgstr "Ongeldig" #: /var/www/html/cacti/lib/html_reports.php:1578 msgid "No Reports Found" msgstr "Geen rapportages gevonden" #: /var/www/html/cacti/lib/html_tree.php:593 #: /var/www/html/cacti/lib/html_tree.php:596 #: /var/www/html/cacti/lib/html_tree.php:599 msgid "Graph Template:" msgstr "Grafiektemplate:" #: /var/www/html/cacti/lib/html_tree.php:604 #: /var/www/html/cacti/lib/reports.php:907 msgid "Tree:" msgstr "Menu:" #: /var/www/html/cacti/lib/html_tree.php:605 #: /var/www/html/cacti/lib/reports.php:912 msgid "Leaf:" msgstr "" #: /var/www/html/cacti/lib/html_tree.php:609 msgid "Applied" msgstr "Toegepast" #: /var/www/html/cacti/lib/html_tree.php:609 msgid "Filter" msgstr "Filter" #: /var/www/html/cacti/lib/html_tree.php:609 msgid "Graph Filters" msgstr "Grafiek filters" #: /var/www/html/cacti/lib/html_tree.php:656 msgid "Set/Refresh Filter" msgstr "Stel in/vernieuw filter" #: /var/www/html/cacti/lib/html_utility.php:233 msgid "Selected" msgstr "Geselecteerd" #: /var/www/html/cacti/lib/html_utility.php:439 #: /var/www/html/cacti/lib/html_utility.php:659 #, php-format msgid "The search term \"%s\" is not valid. Error is %s" msgstr "De zoekterm \"%s\" is niet geldig. Foutmelding is %s" #: /var/www/html/cacti/lib/html_utility.php:805 msgid "There was an internal error!" msgstr "Er was een interne fout!" #: /var/www/html/cacti/lib/html_utility.php:806 msgid "Backtrack limit was exhausted!" msgstr "" #: /var/www/html/cacti/lib/html_utility.php:807 msgid "Recursion limit was exhausted!" msgstr "" #: /var/www/html/cacti/lib/html_utility.php:808 msgid "Bad UTF-8 error!" msgstr "" #: /var/www/html/cacti/lib/html_utility.php:809 msgid "Bad UTF-8 offset error!" msgstr "" #: /var/www/html/cacti/lib/html_validate.php:50 #, php-format msgid "" "Validation error for variable %s with a value of %s. See backtrace below " "for more details." msgstr "" #: /var/www/html/cacti/lib/html_validate.php:57 msgid "Validation Error" msgstr "Validatie foutmelding" #: /var/www/html/cacti/lib/import.php:229 msgid "written" msgstr "geschreven" #: /var/www/html/cacti/lib/import.php:231 msgid "could not open" msgstr "kon niet worden geopend" #: /var/www/html/cacti/lib/import.php:237 msgid "not exists" msgstr "bestaat niet" #: /var/www/html/cacti/lib/import.php:240 #: /var/www/html/cacti/lib/import.php:244 msgid "not writable" msgstr "niet schrijfbaar" #: /var/www/html/cacti/lib/import.php:246 msgid "writable" msgstr "schrijfbaar" #: /var/www/html/cacti/lib/import.php:1635 msgid "Unknown Field" msgstr "Onbekend veld" #: /var/www/html/cacti/lib/import.php:1850 msgid "Import Preview Results" msgstr "" #: /var/www/html/cacti/lib/import.php:1850 msgid "Import Results" msgstr "Import resultaten" #: /var/www/html/cacti/lib/import.php:1854 msgid "Cacti would make the following changes if the Package was imported:" msgstr "" "Cacti zal de volgende wijzigingen aanbrengen als het pakket wordt " "geïmporteerd:" #: /var/www/html/cacti/lib/import.php:1856 msgid "Cacti has imported the following items for the Package:" msgstr "Cacti heeft de volgende items voor het pakket geïmporteerd:" #: /var/www/html/cacti/lib/import.php:1859 msgid "Package Files" msgstr "" #: /var/www/html/cacti/lib/import.php:1863 msgid "[preview] " msgstr "[voorbeeld] " #: /var/www/html/cacti/lib/import.php:1868 msgid "Cacti would make the following changes if the Template was imported:" msgstr "" "Cacti zal de volgende wijzigingen aanbrengen als het template wordt " "geïmporteerd:" #: /var/www/html/cacti/lib/import.php:1870 msgid "Cacti has imported the following items for the Template:" msgstr "Cacti heeft de volgende items voor het template geïmporteerd:" #: /var/www/html/cacti/lib/import.php:1879 msgid "[success]" msgstr "[succesvol]" #: /var/www/html/cacti/lib/import.php:1881 msgid "[fail]" msgstr "[mislukt]" #: /var/www/html/cacti/lib/import.php:1883 msgid "[preview]" msgstr "[voorbeeld]" #: /var/www/html/cacti/lib/import.php:1887 msgid "[updated]" msgstr "[bijgewerkt]" #: /var/www/html/cacti/lib/import.php:1891 msgid "[unchanged]" msgstr "[ongewijzigd]" #: /var/www/html/cacti/lib/import.php:1927 msgid "Found Dependency:" msgstr "Gevonden afhankelijkheden:" #: /var/www/html/cacti/lib/import.php:1929 msgid "Unmet Dependency:" msgstr "" #: /var/www/html/cacti/lib/ldap.php:216 /var/www/html/cacti/lib/ldap.php:394 msgid "PHP LDAP not enabled" msgstr "PHP LDAP niet actief" #: /var/www/html/cacti/lib/ldap.php:223 /var/www/html/cacti/lib/ldap.php:402 msgid "No username defined" msgstr "Geen gebruikersnaam gedefinieerd" #: /var/www/html/cacti/lib/ldap.php:250 msgid "Protocol Error, Unable to set version" msgstr "Protocol fout, instellen van versie niet mogelijk" #: /var/www/html/cacti/lib/ldap.php:261 /var/www/html/cacti/lib/ldap.php:466 msgid "Unable to set referrals option" msgstr "" #: /var/www/html/cacti/lib/ldap.php:273 /var/www/html/cacti/lib/ldap.php:479 msgid "Protocol Error, unable to start TLS communications" msgstr "Protocol fout, starten van TLS communicatie niet mogelijk" #: /var/www/html/cacti/lib/ldap.php:312 /var/www/html/cacti/lib/ldap.php:331 msgid "Authentication Success" msgstr "Authenticatie succesvol" #: /var/www/html/cacti/lib/ldap.php:315 msgid "Insufficient access" msgstr "Onvoldoende toegang" #: /var/www/html/cacti/lib/ldap.php:322 msgid "Group DN could not be found to compare" msgstr "" #: /var/www/html/cacti/lib/ldap.php:339 /var/www/html/cacti/lib/ldap.php:523 msgid "Protocol Error" msgstr "Protocol fout" #: /var/www/html/cacti/lib/ldap.php:343 msgid "Authentication Failure" msgstr "Authenticatiefout" #: /var/www/html/cacti/lib/ldap.php:347 /var/www/html/cacti/lib/ldap.php:533 msgid "Insufficient Access" msgstr "Onvoldoende toegang" #: /var/www/html/cacti/lib/ldap.php:351 /var/www/html/cacti/lib/ldap.php:538 msgid "Unable to Connect to Server" msgstr "Verbinding met de server mislukt" #: /var/www/html/cacti/lib/ldap.php:355 /var/www/html/cacti/lib/ldap.php:543 msgid "Connection Timeout" msgstr "Connectie timeout" #: /var/www/html/cacti/lib/ldap.php:359 /var/www/html/cacti/lib/ldap.php:548 msgid "General Bind Error, LDAP result:" msgstr "" #: /var/www/html/cacti/lib/ldap.php:365 msgid "Unable to Create LDAP Object" msgstr "Het was niet mogelijk om een LDAP object aan te maken" #: /var/www/html/cacti/lib/ldap.php:418 /var/www/html/cacti/lib/ldap.php:497 msgid "User found" msgstr "Gebruiker gevonden" #: /var/www/html/cacti/lib/ldap.php:425 msgid "Specific DN and Password required" msgstr "" #: /var/www/html/cacti/lib/ldap.php:454 msgid "Protocol Error, unable to set version" msgstr "Protocol fout, instellen van versie niet mogelijk" #: /var/www/html/cacti/lib/ldap.php:503 msgid "More than one matching user found" msgstr "Meer dan één overeenkomstige gebruiker gevonden" #: /var/www/html/cacti/lib/ldap.php:508 msgid "Unable to find user from DN" msgstr "" #: /var/www/html/cacti/lib/ldap.php:514 msgid "Unable to find users DN" msgstr "" #: /var/www/html/cacti/lib/ldap.php:528 msgid "Invalid Credentials" msgstr "Ongeldige inloggegevens" #: /var/www/html/cacti/lib/ldap.php:555 msgid "Unable to create LDAP connection object" msgstr "Het was niet mogelijk om een LDAP connectie object te maken" #: /var/www/html/cacti/lib/ping.php:130 msgid "ICMP Ping timed out" msgstr "ICMP ping timed out" #: /var/www/html/cacti/lib/ping.php:202 /var/www/html/cacti/lib/ping.php:220 #, php-format msgid "ICMP Ping Success (%s ms)" msgstr "ICMP Ping succes (%s ms)" #: /var/www/html/cacti/lib/ping.php:207 /var/www/html/cacti/lib/ping.php:225 msgid "ICMP ping Timed out" msgstr "ICMP ping timed out" #: /var/www/html/cacti/lib/ping.php:232 /var/www/html/cacti/lib/ping.php:451 #: /var/www/html/cacti/lib/ping.php:580 msgid "Destination address not specified" msgstr "Geadresseerde is niet gespecificeerd" #: /var/www/html/cacti/lib/ping.php:329 /var/www/html/cacti/lib/ping.php:466 msgid "default" msgstr "standaaard" #: /var/www/html/cacti/lib/ping.php:357 /var/www/html/cacti/lib/ping.php:366 #: /var/www/html/cacti/lib/ping.php:494 /var/www/html/cacti/lib/ping.php:503 msgid "Please upgrade to PHP 5.5.4+ for IPv6 support!" msgstr "Upgrade naar PHP 5.5.4+ voor IPv6 ondersteuning!" #: /var/www/html/cacti/lib/ping.php:389 #, php-format msgid "UDP ping error: %s" msgstr "UDP ping fout: %s" #: /var/www/html/cacti/lib/ping.php:429 #, php-format msgid "UDP Ping Success (%s ms)" msgstr "UDP ping succesvol (%s ms)" #: /var/www/html/cacti/lib/ping.php:526 #, php-format msgid "TCP ping: socket_connect(), reason: %s" msgstr "" #: /var/www/html/cacti/lib/ping.php:544 #, php-format msgid "TCP ping: socket_select() failed, reason: %s" msgstr "" #: /var/www/html/cacti/lib/ping.php:559 #, php-format msgid "TCP Ping Success (%s ms)" msgstr "TCP ping succesvol (%s ms)" #: /var/www/html/cacti/lib/ping.php:569 msgid "TCP ping timed out" msgstr "TCP ping timed out" #: /var/www/html/cacti/lib/ping.php:596 msgid "Ping not performed due to setting." msgstr "" #: /var/www/html/cacti/lib/plugins.php:488 #, php-format msgid "Plugin %s is required for %s, and it is not installed." msgstr "Plugin %s is vereist voor %s, maar is niet geinstalleerd." #: /var/www/html/cacti/lib/plugins.php:495 msgid "Plugin cannot be installed." msgstr "Plugin kan niet worden geïnstalleerd." #: /var/www/html/cacti/lib/plugins.php:769 #: /var/www/html/cacti/lib/plugins.php:776 /var/www/html/cacti/plugins.php:318 msgid "Plugin Management" msgstr "Plugin beheer" #: /var/www/html/cacti/lib/plugins.php:787 #: /var/www/html/cacti/lib/plugins.php:793 #, php-format msgid "Requires: Cacti >= %s" msgstr "Benodigd: Cacti >= %s" #: /var/www/html/cacti/lib/plugins.php:790 msgid "Legacy Plugin" msgstr "Oude plugin(s)" #: /var/www/html/cacti/lib/reports.php:917 msgid "Host:" msgstr "Host:" #: /var/www/html/cacti/lib/reports.php:922 msgid "Graph:" msgstr "Grafiek:" #: /var/www/html/cacti/lib/reports.php:1024 msgid "(No Graph Template)" msgstr "(Geen grafiektemplate)" #: /var/www/html/cacti/lib/reports.php:1453 msgid "Add to Report" msgstr "Toevoegen aan rapport" #: /var/www/html/cacti/lib/reports.php:1471 msgid "" "Choose the Report to associate these graphs with. The defaults for " "alignment will be used for each graph in the list below." msgstr "" #: /var/www/html/cacti/lib/reports.php:1473 msgid "Report:" msgstr "Rapportage:" #: /var/www/html/cacti/lib/reports.php:1481 msgid "Graph Timespan:" msgstr "" #: /var/www/html/cacti/lib/reports.php:1484 msgid "Graph Alignment:" msgstr "Grafiek uitlijning:" #: /var/www/html/cacti/lib/reports.php:1573 #, php-format msgid "Created Report Graph Item '%s'" msgstr "" #: /var/www/html/cacti/lib/reports.php:1575 #, php-format msgid "Failed Adding Report Graph Item '%s' Already Exists" msgstr "" #: /var/www/html/cacti/lib/reports.php:1578 #, php-format msgid "Skipped Report Graph Item '%s' Already Exists" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2466 #, php-format msgid "Required RRD step size is '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2504 #, php-format msgid "Type for Data Source '%s' should be '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2509 #, php-format msgid "Heartbeat for Data Source '%s' should be '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2517 #, php-format msgid "RRD minimum for Data Source '%s' should be '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2541 #, php-format msgid "RRD maximum for Data Source '%s' should be '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2551 #, php-format msgid "DS '%s' missing in RRDfile" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2560 #, php-format msgid "DS '%s' missing in Cacti definition" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2577 /var/www/html/cacti/lib/rrd.php:2578 #, php-format msgid "Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2592 /var/www/html/cacti/lib/rrd.php:2593 #, php-format msgid "File RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2624 #, php-format msgid "XFF for cacti RRA id '%s' should be '%s'" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2628 #, php-format msgid "Number of rows for Cacti RRA id '%s' should be '%s'" msgstr "Aantal rijen van Cacti RRA id '%s' zou moeten zijn: '%s'" #: /var/www/html/cacti/lib/rrd.php:2644 #, php-format msgid "RRA '%s' missing in RRDfile" msgstr "RRA '%s' ontbreekt in het RRD bestand" #: /var/www/html/cacti/lib/rrd.php:2653 #, php-format msgid "RRA '%s' missing in Cacti definition" msgstr "RRA '%s' ontbreekt in de Cacti definitie" #: /var/www/html/cacti/lib/rrd.php:2672 msgid "RRD File Information" msgstr "RRD bestandsinformatie" #: /var/www/html/cacti/lib/rrd.php:2704 msgid "Data Source Items" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2706 msgid "Minimal Heartbeat" msgstr "Minimale heartbeat" #: /var/www/html/cacti/lib/rrd.php:2707 msgid "Min" msgstr "Min" #: /var/www/html/cacti/lib/rrd.php:2708 msgid "Max" msgstr "Max" #: /var/www/html/cacti/lib/rrd.php:2709 msgid "Last DS" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2711 msgid "Unknown Sec" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2739 msgid "Round Robin Archive" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2742 msgid "Cur Row" msgstr "Huidige rij" #: /var/www/html/cacti/lib/rrd.php:2743 msgid "PDP per Row" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2745 msgid "CDP Prep Value (0)" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2746 msgid "CDP Unknown Data points (0)" msgstr "" #: /var/www/html/cacti/lib/rrd.php:2823 #, php-format msgid "rename %s to %s" msgstr "hernoem %s naar %s" #: /var/www/html/cacti/lib/rrd.php:2873 msgid "Error while parsing the XML of rrdtool dump" msgstr "Fout tijdens het parsen van de RRDtool dump XML" #: /var/www/html/cacti/lib/rrd.php:2905 /var/www/html/cacti/lib/rrd.php:2960 #: /var/www/html/cacti/lib/rrd.php:3016 #, php-format msgid "ERROR while writing XML file: %s" msgstr "FOUT tijdens het schrijven van XML bestand: %s" #: /var/www/html/cacti/lib/rrd.php:2916 /var/www/html/cacti/lib/rrd.php:2971 #: /var/www/html/cacti/lib/rrd.php:3027 #, php-format msgid "ERROR: RRDfile %s not writeable" msgstr "FOUT: RRD bestand %s is niet schrijfbaar" #: /var/www/html/cacti/lib/rrd.php:2943 /var/www/html/cacti/lib/rrd.php:2999 msgid "Error while parsing the XML of RRDtool dump" msgstr "Fout tijdens het parsen van de RRDtool dump XML" #: /var/www/html/cacti/lib/rrd.php:3232 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) removed from RRD file\n" msgstr "" "RRA (CF=%s, RIJEN=%d, PDP_PER_RIJ=%d, XFF=%1.2f) verwijderd van RRD bestand\n" #: /var/www/html/cacti/lib/rrd.php:3266 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) adding to RRD file\n" msgstr "" "RRA (CF=%s, RIJEN=%d, PDP_PER_RIJ=%d, XFF=%1.2f) toegevoegd aan RRD bestand\n" #: /var/www/html/cacti/lib/rrd.php:3376 msgid "Unknown RRDtool Error" msgstr "Onbekende RRDtool fout" #: /var/www/html/cacti/lib/utility.php:686 msgid "" "MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions " "to choose. Make sure you run the very latest release though which fixes a " "long standing low level networking issue that was causing spine many issues " "with reliability." msgstr "" "MySQL 5.6+ en MariaDB 10.0+ zijn goede releases en zijn goede versies om te " "kiezen. Zorg ervoor dat u de laatste versie draait. Hierin is een lang " "levende fout opgelost met betrekking tot low level networking, dat voor veel " "betrouwbaarheidsproblemen zorgde met Spine." #: /var/www/html/cacti/lib/utility.php:698 #: /var/www/html/cacti/lib/utility.php:728 #, php-format msgid "" "It is recommended that you enable InnoDB in any %s version greater than 5.1." msgstr "" "Het wordt aanbevolen InnoDB te activeren voor iedere %s versie groter dan " "5.1." #: /var/www/html/cacti/lib/utility.php:711 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8_general_ci collation type as some characters take more than a " "single byte. If you are first just now installing Cacti, stop, make the " "changes and start over again. If your Cacti has been running and is in " "production, see the internet for instructions on converting your databases " "and tables if you plan on supporting other languages." msgstr "" "Wanneer Cacti gebruikt wordt met talen anders dan Engels, is het belangrijk " "om de utf8_general_ci karakterset te gebruiken, omdat sommige karakters " "multi-byte zijn. Als u de installatie nu voor het eerst uitvoert, stop dan, " "wijzig de collatie en begin opnieuw. Als Cacti al draait in een " "productieomgeving, kijk op het internet voor instructies over het " "converteren van uw database en tabellen voor de ondersteuning van andere " "talen." #: /var/www/html/cacti/lib/utility.php:717 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8 character set as some characters take more than a single byte. If " "you are first just now installing Cacti, stop, make the changes and start " "over again. If your Cacti has been running and is in production, see the " "internet for instructions on converting your databases and tables if you " "plan on supporting other languages." msgstr "" "Wanneer Cacti gebruikt wordt met talen anders dan Engels, is het belangrijk " "om de UTF8 karakterset te gebruiken, omdat sommige karakters multi-byte " "zijn. Als u de installatie nu voor het eerst uitvoert, stop dan, wijzig de " "collatie en begin opnieuw. Als Cacti al draait in een productieomgeving, " "kijk op het internet voor instructies over het converteren van uw database " "en tabellen voor de ondersteuning van andere talen." #: /var/www/html/cacti/lib/utility.php:741 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8mb4_unicode_ci collation type as some characters take more than a " "single byte." msgstr "" "Wanneer Cacti wordt gebruikt in talen anders dan Engels, wordt het " "aanbevolen om utf8mb4_unicode_ci collatie te gebruiken omdat sommige " "karakters meer dan een enkele byte innemen." #: /var/www/html/cacti/lib/utility.php:747 msgid "" "When using Cacti with languages other than English, it is important ot use " "the utf8mb4 character set as some characters take more than a single byte." msgstr "" "Wanneer Cacti wordt gebruikt in talen anders dan Engels, wordt het " "aanbevolen om utf8mb4 karakter set te gebruiken omdat sommige karakters meer " "dan een enkele byte innemen." #: /var/www/html/cacti/lib/utility.php:756 #, php-format msgid "" "Depending on the number of logins and use of spine data collector, %s will " "need many connections. The calculation for spine is: total_connections = " "total_processes * (total_threads + script_servers + 1), then you must leave " "headroom for user connections, which will change depending on the number of " "concurrent login accounts." msgstr "" "Afhankelijk van het aantal logins en het gebruik van de Spine data " "collector, heeft %s een aantal verbindingen nodig. De berekening voor Spine " "is: totaal_aantal_verbindingen = totaal_aantal_processen * " "(totaal_aantal_threads + script_servers + 1), en dan heeft u nog ruimte " "nodig voor gebruikersverbindingen, deze zullen variëren door het aantal " "gelijktijdige verbindingen van gebruikeraccounts." #: /var/www/html/cacti/lib/utility.php:761 #, php-format msgid "" "If using the Cacti Performance Booster and choosing a memory storage engine, " "you have to be careful to flush your Performance Booster buffer before the " "system runs out of memory table space. This is done two ways, first " "reducing the size of your output column to just the right size. This column " "is in the tables poller_output, and poller_output_boost. The second thing " "you can do is allocate more memory to memory tables. We have arbitrarily " "chosen a recommended value of 10% of system memory, but if you are using SSD " "disk drives, or have a smaller system, you may ignore this recommendation or " "choose a different storage engine. You may see the expected consumption of " "the Performance Booster tables under Console -> System Utilities -> View " "Boost Status." msgstr "" #: /var/www/html/cacti/lib/utility.php:766 msgid "" "Keeping the table cache larger means less file open/close operations when " "using innodb_file_per_table." msgstr "" #: /var/www/html/cacti/lib/utility.php:771 msgid "" "With Remote polling capabilities, large amounts of data will be synced from " "the main server to the remote pollers. Therefore, keep this value at or " "above 16M." msgstr "" "Met remote polling oplossingen zullen grote hoeveelheden data worden " "gesynchroniseerd van de hoofd poller naar de remote pollers. Hou daarom deze " "waarde op of boven de 16M." #: /var/www/html/cacti/lib/utility.php:776 msgid "" "When executing subqueries, having a larger temporary table size, keep those " "temporary tables in memory." msgstr "" "Wanneer subqueries worden uitgevoerd, is een grote tijdelijk tabel grootte " "handig zodat deze tijdelijke tabellen in-memory blijven." #: /var/www/html/cacti/lib/utility.php:781 msgid "" "When performing joins, if they are below this size, they will be kept in " "memory and never written to a temporary file." msgstr "" "Wanneer joins worden gebruikt, en het resultaat beneden deze waarde blijft, " "zal het resultaat in-memory blijven en niet naar een tijdelijk bestand " "worden geschreven." #: /var/www/html/cacti/lib/utility.php:786 #, php-format msgid "" "When using InnoDB storage it is important to keep your table spaces " "separate. This makes managing the tables simpler for long time users of " "%s. If you are running with this currently off, you can migrate to the per " "file storage by enabling the feature, and then running an alter statement on " "all InnoDB tables." msgstr "" "Wanneer de InnoDB storage engine wordt gebruikt is het belangrijk om de " "table spaces gescheiden te houden. Dit maakt het beheer van de tabellen " "simpeler voor langdurig gebruik van %s. Als op dit moment deze waarde niet " "actief is, kunt u migreren naar de per-bestand opslag door deze optie te " "activeren en een ALTER statement uit te voeren op iedere InnoDB tabel." #: /var/www/html/cacti/lib/utility.php:791 #, php-format msgid "" "InnoDB will hold as much tables and indexes in system memory as is " "possible. Therefore, you should make the innodb_buffer_pool large enough to " "hold as much of the tables and index in memory. Checking the size of the /" "var/lib/mysql/cacti directory will help in determining this value. We are " "recommending 25% of your systems total memory, but your requirements will " "vary depending on your systems size." msgstr "" #: /var/www/html/cacti/lib/utility.php:796 #, php-format msgid "" "With modern SSD type storage, this operation actually degrades the disk more " "rapidly and adds a 50% overhead on all write operations." msgstr "" "Met moderne SSD opslag verslechtert deze optie de schijf sneller en zorgt " "tevens voor 50% overhead op alle schrijfacties." #: /var/www/html/cacti/lib/utility.php:801 msgid "" "This is where metadata is stored. If you had a lot of tables, it would be " "useful to increase this." msgstr "" "Dit is waar metadata is opgeslagen. Als u een grote hoeveelheid tabellen " "heeft is het handig om deze waarde te verhogen." #: /var/www/html/cacti/lib/utility.php:806 msgid "" "Rogue queries should not for the database to go offline to others. Kill " "these queries before they kill your system." msgstr "" "Rogue-queries zouden niet moeten omdat deze de server omlaag halen. Kill " "deze queries voordat ze uw systeem killen." #: /var/www/html/cacti/lib/utility.php:815 #, php-format msgid "" "Setting this value to 2 means that you will flush all transactions every " "second rather than at commit. This allows %s to perform writing less often." msgstr "" #: /var/www/html/cacti/lib/utility.php:820 msgid "" "With modern SSD type storage, having multiple io threads is advantageous for " "applications with high io characteristics." msgstr "" "Met moderne SSD opslag is het hebben van meerdere IO threads voordelig voor " "applicaties met een hoog IO gebruik." #: /var/www/html/cacti/lib/utility.php:828 #, php-format msgid "" "As of %s %s, the you can control how often %s flushes transactions to disk. " "The default is 1 second, but in high I/O systems setting to a value greater " "than 1 can allow disk I/O to be more sequential" msgstr "" #: /var/www/html/cacti/lib/utility.php:833 msgid "" "With modern SSD type storage, having multiple read io threads is " "advantageous for applications with high io characteristics." msgstr "" "Met moderne SSD opslag is het hebben van meerdere lees IO threads voordelig " "voor applicaties met een hoog IO gebruik." #: /var/www/html/cacti/lib/utility.php:838 msgid "" "With modern SSD type storage, having multiple write io threads is " "advantageous for applications with high io characteristics." msgstr "" "Met moderne SSD opslag is het hebben van meerdere schrijf IO threads " "voordelig voor applicaties met een hoog IO gebruik." #: /var/www/html/cacti/lib/utility.php:843 #, php-format msgid "" "%s will divide the innodb_buffer_pool into memory regions to improve " "performance. The max value is 64. When your innodb_buffer_pool is less " "than 1GB, you should use the pool size divided by 128MB. Continue to use " "this equation upto the max of 64." msgstr "" "%s zal de innodb_buffer_pool onderverdelen in geheugendelen om de snelheid " "te optimaliseren. De maximale waarde is 64. Wanneer uw innodb_buffer_pool " "minder is dan 1GB, moet u de pool grootte delen door 128MB. Ga hiermee door " "tot de maximale waarde van 64." #: /var/www/html/cacti/lib/utility.php:848 #, php-format msgid "%s Tuning" msgstr "%s Tuning" #: /var/www/html/cacti/lib/utility.php:848 msgid "Documentation" msgstr "Documentatie" #: /var/www/html/cacti/lib/utility.php:848 msgid "Note: Many changes below require a database restart" msgstr "" "Let op: veel wijzigingen die hieronder worden vermeld vereisen een herstart " "van de database server" #: /var/www/html/cacti/lib/utility.php:855 msgid "Variable" msgstr "Variabel" #: /var/www/html/cacti/lib/utility.php:856 msgid "Current Value" msgstr "Huidige waarde" #: /var/www/html/cacti/lib/utility.php:857 msgid "Recommended Value" msgstr "Aanbevolen waarde" #: /var/www/html/cacti/lib/utility.php:858 msgid "Comments" msgstr "Opmerkingen" #: /var/www/html/cacti/lib/vdef.php:75 msgid "A useful name for this VDEF." msgstr "Een naam voor deze VDEF." #: /var/www/html/cacti/links.php:191 msgid "Click 'Continue' to Enable the following Page(s)." msgstr "Klik op 'Volgende' om de volgende pagina('s) in te schakelen." #: /var/www/html/cacti/links.php:196 msgid "Enable Page(s)" msgstr "Activeer pagina('s)" #: /var/www/html/cacti/links.php:200 msgid "Click 'Continue' to Disable the following Page(s)." msgstr "Klik op 'Volgende' om de volgende pagina('s) uit te schakelen." #: /var/www/html/cacti/links.php:205 msgid "Disable Page(s)" msgstr "Deactiveer pagina('s)" #: /var/www/html/cacti/links.php:209 msgid "Click 'Continue' to Delete the following Page(s)." msgstr "Klik op 'Volgende' om de volgende pagina('s) te verwijderen." #: /var/www/html/cacti/links.php:214 msgid "Delete Page(s)" msgstr "Verwijder pagina('s)" #: /var/www/html/cacti/links.php:217 msgid "You must select at least one page." msgstr "U moet op zijn minst een pagina selecteren." #: /var/www/html/cacti/links.php:315 msgid "Links" msgstr "Links" #: /var/www/html/cacti/links.php:329 msgid "Apply Filter" msgstr "Filter toepassen" #: /var/www/html/cacti/links.php:330 msgid "Reset filters" msgstr "Filters herstellen" #: /var/www/html/cacti/links.php:344 /var/www/html/cacti/links.php:507 #: /var/www/html/cacti/user_admin.php:1644 #: /var/www/html/cacti/user_group_admin.php:1397 msgid "Top Tab" msgstr "" #: /var/www/html/cacti/links.php:345 /var/www/html/cacti/user_admin.php:1645 #: /var/www/html/cacti/user_group_admin.php:1398 msgid "Bottom Console" msgstr "" #: /var/www/html/cacti/links.php:346 /var/www/html/cacti/user_admin.php:1646 #: /var/www/html/cacti/user_group_admin.php:1399 msgid "Top Console" msgstr "" #: /var/www/html/cacti/links.php:377 msgid "Page" msgstr "Pagina" #: /var/www/html/cacti/links.php:379 /var/www/html/cacti/links.php:499 #: /var/www/html/cacti/links.php:504 msgid "Style" msgstr "Stijl" #: /var/www/html/cacti/links.php:391 msgid "Edit Page" msgstr "Wijzig pagina" #: /var/www/html/cacti/links.php:394 msgid "View Page" msgstr "Toon pagina" #: /var/www/html/cacti/links.php:418 msgid "Sort for Ordering" msgstr "" #: /var/www/html/cacti/links.php:427 msgid "No Pages Found" msgstr "Geen pagina's gevonden" #: /var/www/html/cacti/links.php:508 msgid "Console Menu" msgstr "Console menu" #: /var/www/html/cacti/links.php:509 msgid "Bottom of Console Page" msgstr "Onderkant van de console pagina" #: /var/www/html/cacti/links.php:510 msgid "Top of Console Page" msgstr "Bovenkant van de console pagina" #: /var/www/html/cacti/links.php:512 msgid "Where should this page appear?" msgstr "Waar moet deze pagina verschijnen?" #: /var/www/html/cacti/links.php:516 msgid "Console Menu Section" msgstr "Console menu sectie" #: /var/www/html/cacti/links.php:519 msgid "" "Under which Console heading should this item appear? (All External Link " "menus will appear between Configuration and Utilities)" msgstr "" #: /var/www/html/cacti/links.php:523 msgid "New Console Section" msgstr "Nieuwe console sectie" #: /var/www/html/cacti/links.php:526 msgid "If you don't like any of the choices above, type a new title in here." msgstr "" #: /var/www/html/cacti/links.php:530 msgid "Tab/Menu Name" msgstr "" #: /var/www/html/cacti/links.php:533 msgid "The text that will appear in the tab or menu." msgstr "" #: /var/www/html/cacti/links.php:537 msgid "Content File/URL" msgstr "Content bestand/URL" #: /var/www/html/cacti/links.php:541 msgid "Web URL Below" msgstr "" #: /var/www/html/cacti/links.php:542 msgid "" "The file that contains the content for this page. This file needs to be in " "the Cacti 'include/content/' directory." msgstr "" #: /var/www/html/cacti/links.php:546 msgid "Web URL Location" msgstr "" #: /var/www/html/cacti/links.php:548 msgid "" "The valid URL to use for this external link. Must include the type, for " "example http://www.cacti.net. Note that many websites do not allow them to " "be embedded in an iframe from a foreign site, and therefore External Linking " "may not work." msgstr "" #: /var/www/html/cacti/links.php:566 #, php-format msgid "External Links [edit: %s]" msgstr "Externe links [wijzig: %s]" #: /var/www/html/cacti/links.php:568 msgid "External Links [new]" msgstr "Externe links [nieuw]" #: /var/www/html/cacti/logout.php:46 /var/www/html/cacti/logout.php:82 msgid "Logout of Cacti" msgstr "Cacti uitloggen" #: /var/www/html/cacti/logout.php:53 /var/www/html/cacti/logout.php:89 msgid "Automatic Logout" msgstr "Automatisch uitloggen" #: /var/www/html/cacti/logout.php:55 /var/www/html/cacti/logout.php:91 msgid "You have been logged out of Cacti due to a session timeout." msgstr "U bent uitgelogd uit Cacti omdat de sessie is verlopen." #: /var/www/html/cacti/logout.php:56 /var/www/html/cacti/logout.php:92 #, php-format msgid "Please close your browser or %sLogin Again%s" msgstr "Sluit alstublieft uw browser of %sLog opnieuw in%s" #: /var/www/html/cacti/managers.php:40 /var/www/html/cacti/managers.php:220 #: /var/www/html/cacti/managers.php:571 msgid "Notifications" msgstr "Notificaties" #: /var/www/html/cacti/managers.php:141 /var/www/html/cacti/utilities.php:1919 msgid "SNMP Notification Receivers" msgstr "" #: /var/www/html/cacti/managers.php:156 /var/www/html/cacti/managers.php:225 #: /var/www/html/cacti/managers.php:500 /var/www/html/cacti/managers.php:800 msgid "Receivers" msgstr "Ontvangers" #: /var/www/html/cacti/managers.php:217 msgid "Id" msgstr "Id" #: /var/www/html/cacti/managers.php:251 msgid "No SNMP Notification Receivers" msgstr "Geen SNMP notificatie ontvangers" #: /var/www/html/cacti/managers.php:282 #, php-format msgid "SNMP Notification Receiver [edit: %s]" msgstr "" #: /var/www/html/cacti/managers.php:284 msgid "SNMP Notification Receiver [new]" msgstr "" #: /var/www/html/cacti/managers.php:479 /var/www/html/cacti/managers.php:564 #: /var/www/html/cacti/utilities.php:2365 #: /var/www/html/cacti/utilities.php:2439 msgid "MIB" msgstr "MIB" #: /var/www/html/cacti/managers.php:563 /var/www/html/cacti/utilities.php:1500 #: /var/www/html/cacti/utilities.php:2439 msgid "OID" msgstr "OID" #: /var/www/html/cacti/managers.php:565 msgid "Kind" msgstr "Soort" #: /var/www/html/cacti/managers.php:566 /var/www/html/cacti/utilities.php:2439 msgid "Max-Access" msgstr "" #: /var/www/html/cacti/managers.php:567 msgid "Monitored" msgstr "Gemonitored" #: /var/www/html/cacti/managers.php:603 msgid "No SNMP Notifications" msgstr "Geen SNMP notificaties" #: /var/www/html/cacti/managers.php:732 /var/www/html/cacti/utilities.php:2616 msgid "Severity" msgstr "Gevoeligheid" #: /var/www/html/cacti/managers.php:748 /var/www/html/cacti/utilities.php:2660 msgid "Purge Notification Log" msgstr "" #: /var/www/html/cacti/managers.php:795 /var/www/html/cacti/utilities.php:2714 msgid "Time" msgstr "Tijd" #: /var/www/html/cacti/managers.php:796 /var/www/html/cacti/utilities.php:2714 msgid "Notification" msgstr "Notificatie" #: /var/www/html/cacti/managers.php:797 /var/www/html/cacti/utilities.php:2714 msgid "Varbinds" msgstr "" #: /var/www/html/cacti/managers.php:814 msgid "Severity Level" msgstr "Gevoeligheidsniveau" #: /var/www/html/cacti/managers.php:831 /var/www/html/cacti/utilities.php:2736 msgid "No SNMP Notification Log Entries" msgstr "Geen SNMP notificatie log regels" #: /var/www/html/cacti/managers.php:991 msgid "Click 'Continue' to delete the following Notification Receiver" msgid_plural "Click 'Continue' to delete following Notification Receiver" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/managers.php:993 msgid "Click 'Continue' to enable the following Notification Receiver" msgid_plural "Click 'Continue' to enable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/managers.php:995 msgid "Click 'Continue' to disable the following Notification Receiver" msgid_plural "Click 'Continue' to disable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/managers.php:1005 #, php-format msgid "%s Notification Receivers" msgstr "%s Notificatie ontvangers" #: /var/www/html/cacti/managers.php:1007 msgid "You must select at least one Notification Receiver." msgstr "" #: /var/www/html/cacti/managers.php:1052 msgid "" "Click 'Continue' to forward the following Notification Objects to this " "Notification Receiver." msgstr "" #: /var/www/html/cacti/managers.php:1053 msgid "" "Click 'Continue' to disable forwarding the following Notification Objects to " "this Notification Receiver." msgstr "" #: /var/www/html/cacti/managers.php:1062 msgid "Disable Notification Objects" msgstr "" #: /var/www/html/cacti/managers.php:1064 msgid "You must select at least one notification object." msgstr "U moet op zijn minst een melding object selecteren." #: /var/www/html/cacti/plugins.php:28 msgid "Install" msgstr "Installeer" #: /var/www/html/cacti/plugins.php:31 /var/www/html/cacti/plugins.php:490 msgid "Uninstall" msgstr "De-installeer" #: /var/www/html/cacti/plugins.php:35 msgid "Not Compatible" msgstr "Niet compatible" #: /var/www/html/cacti/plugins.php:36 /var/www/html/cacti/plugins.php:342 #: /var/www/html/cacti/utilities.php:430 msgid "Not Installed" msgstr "Niet geïnstalleerd" #: /var/www/html/cacti/plugins.php:38 msgid "Awaiting Configuration" msgstr "In afwachting van configuratie" #: /var/www/html/cacti/plugins.php:39 msgid "Awaiting Upgrade" msgstr "In afwachting van upgrade" #: /var/www/html/cacti/plugins.php:180 msgid "Not Stated" msgstr "Niet vermeld" #: /var/www/html/cacti/plugins.php:340 msgid "Active/Installed" msgstr "Actief/geinstalleerd" #: /var/www/html/cacti/plugins.php:341 msgid "Configuration Issues" msgstr "Configuratieproblemen" #: /var/www/html/cacti/plugins.php:346 /var/www/html/cacti/plugins.php:413 msgid "Plugins" msgstr "Plugins" #: /var/www/html/cacti/plugins.php:422 msgid "" "Actions available include 'Install', 'Activate', 'Disable', 'Enable', " "'Uninstall'." msgstr "" "Beschikbare acties zijn: 'Install', 'Activate', 'Disable', 'Enable', " "'Uninstall'." #: /var/www/html/cacti/plugins.php:423 msgid "Plugin Name" msgstr "Plugin naam" #: /var/www/html/cacti/plugins.php:423 msgid "" "The name for this Plugin. The name is controlled by the directory it " "resides in." msgstr "" #: /var/www/html/cacti/plugins.php:424 msgid "A description that the Plugins author has given to the Plugin." msgstr "" "Een beschrijving dat de auteur van de plugin heeft gegeven aan de plugin." #: /var/www/html/cacti/plugins.php:424 msgid "Plugin Description" msgstr "Plugin beschrijving" #: /var/www/html/cacti/plugins.php:425 msgid "The status of this Plugin." msgstr "" #: /var/www/html/cacti/plugins.php:426 msgid "The author of this Plugin." msgstr "" #: /var/www/html/cacti/plugins.php:427 msgid "Requires" msgstr "Vereist" #: /var/www/html/cacti/plugins.php:427 msgid "This Plugin requires the following Plugins be installed first." msgstr "" #: /var/www/html/cacti/plugins.php:428 msgid "The version of this Plugin." msgstr "De versie van deze plugin." #: /var/www/html/cacti/plugins.php:429 msgid "Load Order" msgstr "Volgorde van inladen" #: /var/www/html/cacti/plugins.php:429 msgid "" "The load order of the Plugin. You can change the load order by first " "sorting by it, then moving a Plugin either up or down." msgstr "" #: /var/www/html/cacti/plugins.php:458 msgid "No Plugins Found" msgstr "Geen plugins gevonden" #: /var/www/html/cacti/plugins.php:469 msgid "" "Uninstalling this Plugin will remove all Plugin Data and Settings. If you " "really want to Uninstall the Pluign, click 'Uninstall' below. Otherwise " "click 'Cancel'" msgstr "" #: /var/www/html/cacti/plugins.php:470 msgid "Are you sure you want to Uninstall?" msgstr "Weet u zeker dat u de installatie ongedaan wilt maken?" #: /var/www/html/cacti/plugins.php:521 msgid "ERROR: Directory Missing" msgstr "FOUT: Directorie ontbreekt" #: /var/www/html/cacti/plugins.php:527 #, php-format msgid "Not Compatible, %s" msgstr "Niet compatible, %s" #: /var/www/html/cacti/plugins.php:529 msgid "Plugin Error" msgstr "Plugin fout" #: /var/www/html/cacti/plugins.php:541 msgid "Order Before Previous Plugin" msgstr "" #: /var/www/html/cacti/plugins.php:546 msgid "Order After Next Plugin" msgstr "" #: /var/www/html/cacti/plugins.php:610 #, php-format msgid "" "Unable to Install Plugin. The following Plugins must be installed first: %s" msgstr "" #: /var/www/html/cacti/plugins.php:612 msgid "Install Plugin" msgstr "Installeer plugin" #: /var/www/html/cacti/plugins.php:619 /var/www/html/cacti/plugins.php:631 #, php-format msgid "Unable to Uninstall. This Plugin is required by: %s" msgstr "" #: /var/www/html/cacti/plugins.php:621 /var/www/html/cacti/plugins.php:626 #: /var/www/html/cacti/plugins.php:633 msgid "Uninstall Plugin" msgstr "De-installeer plugin" #: /var/www/html/cacti/plugins.php:623 msgid "Disable Plugin" msgstr "Deactiveer plugin" #: /var/www/html/cacti/plugins.php:635 msgid "Enable Plugin" msgstr "Activeer plugin" #: /var/www/html/cacti/plugins.php:638 msgid "Plugin does not include an INFO file" msgstr "Plugin bevat geen INFO bestand" #: /var/www/html/cacti/plugins.php:641 msgid "Plugin directories can not include spaces" msgstr "Plugin directorie kan geen spaties bevatten" #: /var/www/html/cacti/plugins.php:644 #, php-format msgid "Plugin directory is not correct. Should be '%s' but is '%s'" msgstr "Plugin directorie is niet correct. Zou '%s' moeten zijn, maar is '%s'" #: /var/www/html/cacti/plugins.php:652 #, php-format msgid "Plugin directory '%s' is missing setup.php" msgstr "Plugin directorie '%s' heeft geen setup.php" #: /var/www/html/cacti/plugins.php:654 msgid "Plugin is lacking an INFO file" msgstr "Plugin bevat geen INFO bestand" #: /var/www/html/cacti/plugins.php:656 msgid "Plugin is integrated into Cacti core" msgstr "Deze plugin is tegenwoordig geïntegreerd in Cacti" #: /var/www/html/cacti/plugins.php:658 msgid "Plugin is not compatible" msgstr "Plugin is niet compatible" #: /var/www/html/cacti/pollers.php:32 msgid "Full Sync" msgstr "Volledige synchronisatie" #: /var/www/html/cacti/pollers.php:36 msgid "New/Idle" msgstr "Nieuw/Inactief" #: /var/www/html/cacti/pollers.php:39 msgid "Unknown/Down" msgstr "Onbekend/Offline" #: /var/www/html/cacti/pollers.php:48 msgid "Data Collector Information" msgstr "" #: /var/www/html/cacti/pollers.php:53 msgid "The primary name for this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:56 msgid "New Data Collector" msgstr "Nieuwe data verzamelaar" #: /var/www/html/cacti/pollers.php:61 msgid "Web Site Hostname" msgstr "" #: /var/www/html/cacti/pollers.php:62 msgid "" "The hostname for Data Collector. It may have to be a Fully Qualified Domain " "name for the remote Pollers to contact it for activities such as re-" "indexing, Real-time graphing, etc." msgstr "" #: /var/www/html/cacti/pollers.php:71 msgid "Notes for this Data Collectors Database." msgstr "Aantekeningen voor deze data verzamelaar database." #: /var/www/html/cacti/pollers.php:78 msgid "Remote Database Connection" msgstr "" #: /var/www/html/cacti/pollers.php:83 msgid "The hostname for the remote database server." msgstr "" #: /var/www/html/cacti/pollers.php:91 msgid "Remote Database Name" msgstr "" #: /var/www/html/cacti/pollers.php:92 msgid "The name of the remote database." msgstr "" #: /var/www/html/cacti/pollers.php:100 msgid "Remote Database User" msgstr "" #: /var/www/html/cacti/pollers.php:101 msgid "The user name to use to connect to the remote database." msgstr "" #: /var/www/html/cacti/pollers.php:109 msgid "Remote Database Password" msgstr "" #: /var/www/html/cacti/pollers.php:110 msgid "The user password to use to connect to the remote database." msgstr "" #: /var/www/html/cacti/pollers.php:118 msgid "Remote Database Port" msgstr "" #: /var/www/html/cacti/pollers.php:119 msgid "The TCP port to use to connect to the remote database." msgstr "" #: /var/www/html/cacti/pollers.php:127 msgid "Remote Database SSL" msgstr "" #: /var/www/html/cacti/pollers.php:128 msgid "If the remote database uses SSL to connect, check the checkbox below." msgstr "" #: /var/www/html/cacti/pollers.php:283 msgid "" "Click 'Continue' to delete the following Data Collector. Note, all devices " "will be disassociated from this Data Collector and mapped back to the Main " "Cacti Data Collector." msgid_plural "" "Click 'Continue' to delete all following Data Collectors. Note, all devices " "will be disassociated from these Data Collectors and mapped back to the Main " "Cacti Data Collector." msgstr[0] "" "Klik op 'Volgende' om de volgende data collector te verwijderen. Let op, " "alle apparaten die gebruik maken van deze data collector zullen worden " "ontkoppeld en worden gekoppeld aan de hoofd Cacti data collector." msgstr[1] "" "Klik op 'Volgende' om alle volgende data collectoren te verwijderen. Let op, " "alle apparaten die gebruik maken van deze data collectoren zullen worden " "ontkoppeld en worden gekoppeld aan de hoofd Cacti data collector." #: /var/www/html/cacti/pollers.php:288 msgid "Delete Data Collector" msgid_plural "Delete Data Collectors" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/pollers.php:292 msgid "Click 'Continue' to disable the following Data Collector." msgid_plural "Click 'Continue' to disable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/pollers.php:297 msgid "Disable Data Collector" msgid_plural "Disable Data Collectors" msgstr[0] "Data collector uitschakelen" msgstr[1] "Data collectoren uitschakelen" #: /var/www/html/cacti/pollers.php:301 msgid "Click 'Continue' to enable the following Data Collector." msgid_plural "Click 'Continue' to enable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/pollers.php:306 /var/www/html/cacti/pollers.php:315 msgid "Enable Data Collector" msgid_plural "Enable Data Collectors" msgstr[0] "Data collector inschakelen" msgstr[1] "Data collectoren inschakelen" #: /var/www/html/cacti/pollers.php:310 msgid "" "Click 'Continue' to Synchronize the Remote Data Collector for Offline " "Operation." msgid_plural "" "Click 'Continue' to Synchronize the Remote Data Collectors for Offline " "Operation." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/pollers.php:318 /var/www/html/cacti/sites.php:294 msgid "You must select at least one Site." msgstr "U moet tenminste een locatie selecteren." #: /var/www/html/cacti/pollers.php:351 /var/www/html/cacti/sites.php:327 #, php-format msgid "Site [edit: %s]" msgstr "Locatie [wijzig: %s]" #: /var/www/html/cacti/pollers.php:353 /var/www/html/cacti/sites.php:329 msgid "Site [new]" msgstr "Locatie [nieuw]" #: /var/www/html/cacti/pollers.php:379 msgid "" "Remote Data Collectors must be able to communicate to the Main Data " "Collector, and vice versa. Use this button to verify that the Main Data " "Collector can communicate to this Remote Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:387 msgid "Test Connection" msgstr "Test verbinding" #: /var/www/html/cacti/pollers.php:387 msgid "Test Database Connection" msgstr "Database verbinding testen" #: /var/www/html/cacti/pollers.php:523 msgid "Collectors" msgstr "Data verzamelaars" #: /var/www/html/cacti/pollers.php:612 msgid "Collector Name" msgstr "" #: /var/www/html/cacti/pollers.php:612 msgid "The Name of this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:613 msgid "The unique id associated with this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:614 msgid "The Hostname where the Data Collector is running." msgstr "" #: /var/www/html/cacti/pollers.php:615 msgid "The Status of this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:616 msgid "Polling Time" msgstr "Polling tijd" #: /var/www/html/cacti/pollers.php:616 msgid "The last data collection time for this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:617 msgid "The number of Devices associated with this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:618 msgid "SNMP Gets" msgstr "" #: /var/www/html/cacti/pollers.php:618 msgid "The number of SNMP gets associated with this Collector." msgstr "" #: /var/www/html/cacti/pollers.php:619 msgid "Scripts" msgstr "Scripts" #: /var/www/html/cacti/pollers.php:619 msgid "The number of script calls associated with this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:620 msgid "Servers" msgstr "Servers" #: /var/www/html/cacti/pollers.php:620 msgid "The number of script server calls associated with this Data Collector." msgstr "" #: /var/www/html/cacti/pollers.php:621 msgid "Last Finished" msgstr "Laatst geëindigd" #: /var/www/html/cacti/pollers.php:621 msgid "The last time this Data Collector completed." msgstr "" #: /var/www/html/cacti/pollers.php:622 msgid "Last Update" msgstr "Laatste update" #: /var/www/html/cacti/pollers.php:622 msgid "The last time this Data Collector checked in with the main Cacti site." msgstr "" #: /var/www/html/cacti/pollers.php:657 msgid "No Data Collectors Found" msgstr "Geen data verzamelaars gevonden" #: /var/www/html/cacti/rrdcleaner.php:30 /var/www/html/cacti/tree.php:31 msgctxt "dropdown action" msgid "Delete" msgstr "Verwijderen" #: /var/www/html/cacti/rrdcleaner.php:31 msgctxt "dropdown action" msgid "Archive" msgstr "Archiveren" #: /var/www/html/cacti/rrdcleaner.php:338 msgid "RRD Files" msgstr "RRD bestanden" #: /var/www/html/cacti/rrdcleaner.php:347 msgid "RRD File Name" msgstr "RRD bestandsnaam" #: /var/www/html/cacti/rrdcleaner.php:348 msgid "DS Name" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:349 msgid "DS ID" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:350 msgid "Template ID" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:352 msgid "Last Modified" msgstr "Laatste keer bewerkt" #: /var/www/html/cacti/rrdcleaner.php:353 msgid "Size [KB]" msgstr "Omvang [KB]" #: /var/www/html/cacti/rrdcleaner.php:364 #: /var/www/html/cacti/rrdcleaner.php:365 msgid "Deleted" msgstr "Verwijderd" #: /var/www/html/cacti/rrdcleaner.php:373 msgid "No unused RRD Files" msgstr "Er zijn geen ongebruikte RRD bestanden" #: /var/www/html/cacti/rrdcleaner.php:395 msgid "Total Size [MB]:" msgstr "Totale omvang [MB]:" #: /var/www/html/cacti/rrdcleaner.php:397 msgid "Last Scan:" msgstr "Laatste scan:" #: /var/www/html/cacti/rrdcleaner.php:481 msgid "Time Since Update" msgstr "" #: /var/www/html/cacti/rrdcleaner.php:497 msgid "RRDfiles" msgstr "RRD bestanden" #: /var/www/html/cacti/rrdcleaner.php:513 #: /var/www/html/cacti/user_domains.php:643 #: /var/www/html/cacti/user_group_admin.php:1849 #: /var/www/html/cacti/user_group_admin.php:2202 #: /var/www/html/cacti/user_group_admin.php:2306 #: /var/www/html/cacti/user_group_admin.php:2391 #: /var/www/html/cacti/user_group_admin.php:2476 #: /var/www/html/cacti/user_group_admin.php:2561 msgctxt "filter: use" msgid "Go" msgstr "Ga" #: /var/www/html/cacti/rrdcleaner.php:514 #: /var/www/html/cacti/user_group_admin.php:1850 #: /var/www/html/cacti/user_group_admin.php:2203 #: /var/www/html/cacti/user_group_admin.php:2307 #: /var/www/html/cacti/user_group_admin.php:2392 #: /var/www/html/cacti/user_group_admin.php:2477 msgctxt "filter: reset" msgid "Clear" msgstr "Herstel" #: /var/www/html/cacti/rrdcleaner.php:515 msgid "Rescan" msgstr "Opnieuw scannen" #: /var/www/html/cacti/rrdcleaner.php:520 msgid "Delete All" msgstr "Alles verwijderen" #: /var/www/html/cacti/rrdcleaner.php:520 msgid "Delete All Unknown RRDfiles" msgstr "Verwijder alle onbekende RRD bestanden" #: /var/www/html/cacti/rrdcleaner.php:521 msgid "Archive All" msgstr "Alles archiveren" #: /var/www/html/cacti/rrdcleaner.php:521 msgid "Archive All Unknown RRDfiles" msgstr "Archiveer alle onbekende RRD bestanden" #: /var/www/html/cacti/settings.php:242 #, php-format msgid "Cacti Settings (%s)" msgstr "Cacti instellingen (%s)" #: /var/www/html/cacti/settings.php:307 msgid "Poller Interval must be less than Cron Interval" msgstr "" #: /var/www/html/cacti/settings.php:328 msgid "Select Plugin(s)" msgstr "Selecteer plugin(s)" #: /var/www/html/cacti/settings.php:330 msgid "Plugins Selected" msgstr "Plugins geselecteerd" #: /var/www/html/cacti/settings.php:347 msgid "Select File(s)" msgstr "Selecteer bestand(en)" #: /var/www/html/cacti/settings.php:349 msgid "Files Selected" msgstr "Bestanden geselecteerd" #: /var/www/html/cacti/settings.php:367 msgid "Select Template(s)" msgstr "Selecteer template(s)" #: /var/www/html/cacti/settings.php:372 msgid "All Templates Selected" msgstr "Alle templates geselected" #: /var/www/html/cacti/settings.php:447 msgid "Test Email Results" msgstr "Test e-mail resultaten" #: /var/www/html/cacti/sites.php:35 msgid "Site Information" msgstr "Locatie informatie" #: /var/www/html/cacti/sites.php:41 msgid "The primary name for the Site." msgstr "" #: /var/www/html/cacti/sites.php:44 msgid "New Site" msgstr "Nieuwe locatie" #: /var/www/html/cacti/sites.php:49 msgid "Address1" msgstr "Adres 1" #: /var/www/html/cacti/sites.php:50 msgid "The primary address for the Site." msgstr "Het primaire adres voor de locatie." #: /var/www/html/cacti/sites.php:52 msgid "Enter the Site Address" msgstr "Voer het locatie adres in" #: /var/www/html/cacti/sites.php:58 msgid "Address2" msgstr "Adres 2" #: /var/www/html/cacti/sites.php:59 msgid "Additional address information for the Site." msgstr "Optionele adresgegevens voor de locatie." #: /var/www/html/cacti/sites.php:61 msgid "Additional Site Address information" msgstr "Optionele adresgegevens" #: /var/www/html/cacti/sites.php:67 /var/www/html/cacti/sites.php:496 msgid "City" msgstr "Stad" #: /var/www/html/cacti/sites.php:68 msgid "The city or locality for the Site." msgstr "De stad of omgeving voor de locatie." #: /var/www/html/cacti/sites.php:70 msgid "Enter the City or Locality" msgstr "Voer stad of plaatsnaam in" #: /var/www/html/cacti/sites.php:76 /var/www/html/cacti/sites.php:497 msgid "State" msgstr "Staat" #: /var/www/html/cacti/sites.php:77 msgid "The state for the Site." msgstr "" #: /var/www/html/cacti/sites.php:79 msgid "Enter the state" msgstr "Voer de gemeente in" #: /var/www/html/cacti/sites.php:85 msgid "Postal/Zip Code" msgstr "Postcode" #: /var/www/html/cacti/sites.php:86 msgid "The postal or zip code for the Site." msgstr "De postcode van de locatie." #: /var/www/html/cacti/sites.php:88 msgid "Enter the postal code" msgstr "Voer de postcode in" #: /var/www/html/cacti/sites.php:94 /var/www/html/cacti/sites.php:498 msgid "Country" msgstr "Land" #: /var/www/html/cacti/sites.php:95 msgid "The country for the Site." msgstr "Het land van de locatie." #: /var/www/html/cacti/sites.php:97 msgid "Enter the country" msgstr "Voer het land in" #: /var/www/html/cacti/sites.php:103 msgid "TimeZone" msgstr "Tijdzone" #: /var/www/html/cacti/sites.php:104 msgid "The TimeZone for the Site." msgstr "De tijdzone voor de locatie." #: /var/www/html/cacti/sites.php:112 msgid "Latitude" msgstr "Breedtegraad" #: /var/www/html/cacti/sites.php:113 msgid "The Latitude for this Site." msgstr "" #: /var/www/html/cacti/sites.php:115 msgid "example 38.889488" msgstr "voorbeeld 38.889488" #: /var/www/html/cacti/sites.php:121 msgid "Longitude" msgstr "Longitude" #: /var/www/html/cacti/sites.php:122 msgid "The Longitude for this Site." msgstr "" #: /var/www/html/cacti/sites.php:124 msgid "example -77.0374678" msgstr "voorbeeld -77.0374678" #: /var/www/html/cacti/sites.php:130 msgid "Site Notes" msgstr "Locatie aantekeningen" #: /var/www/html/cacti/sites.php:133 msgid "Additional area use for random notes related to this Site." msgstr "Optionele ruimte voor willekeurige notities over deze omgeving." #: /var/www/html/cacti/sites.php:136 msgid "Enter some useful information about the Site." msgstr "Voer informatie in over deze locatie." #: /var/www/html/cacti/sites.php:141 msgid "Alternate Name" msgstr "Bijnaam" #: /var/www/html/cacti/sites.php:142 msgid "Used for cases where a Site has an alternate named used to describe it" msgstr "" #: /var/www/html/cacti/sites.php:144 msgid "If the Site is known by another name enter it here." msgstr "" #: /var/www/html/cacti/sites.php:286 msgid "" "Click 'Continue' to delete the following Site. Note, all devices will be " "disassociated from this site." msgid_plural "" "Click 'Continue' to delete all following Sites. Note, all devices will be " "disassociated from this site." msgstr[0] "" "Klik op 'Volgende' om de volgende locatie te verwijderen. Let op, alle " "apparaten worden losgekoppeld van deze locatie." msgstr[1] "" "Klik op 'Volgende' om alle volgende locaties te verwijderen. Let op, alle " "apparaten worden losgekoppeld van deze locaties." #: /var/www/html/cacti/sites.php:291 msgid "Delete Site" msgid_plural "Delete Sites" msgstr[0] "Verwijder locatie" msgstr[1] "Verwijder locaties" #: /var/www/html/cacti/sites.php:493 msgid "Site Name" msgstr "Locatienaam" #: /var/www/html/cacti/sites.php:493 msgid "The name of this Site." msgstr "De naam van de locatie." #: /var/www/html/cacti/sites.php:494 msgid "The unique id associated with this Site." msgstr "" #: /var/www/html/cacti/sites.php:495 msgid "The number of Devices associated with this Site." msgstr "" #: /var/www/html/cacti/sites.php:496 msgid "The City associated with this Site." msgstr "" #: /var/www/html/cacti/sites.php:497 msgid "The State associated with this Site." msgstr "" #: /var/www/html/cacti/sites.php:498 msgid "The Country associated with this Site." msgstr "" #: /var/www/html/cacti/sites.php:516 msgid "No Sites Found" msgstr "Geen locaties gevonden" #: /var/www/html/cacti/spikekill.php:37 #, php-format msgid "FATAL: Spike Kill method '%s' is Invalid\n" msgstr "" #: /var/www/html/cacti/spikekill.php:82 msgid "FATAL: Spike Kill Not Allowed\n" msgstr "" #: /var/www/html/cacti/templates_export.php:68 msgid "WARNING: Export Errors Encountered. Refresh Browser Window for Details!" msgstr "" "WAARSCHUWING: Er zijn export fouten opgetreden. Vernieuw het browserscherm " "voor details!" #: /var/www/html/cacti/templates_export.php:109 msgid "What would you like to export?" msgstr "Wat wilt u exporteren?" #: /var/www/html/cacti/templates_export.php:110 msgid "Select the Template type that you wish to export from Cacti." msgstr "" #: /var/www/html/cacti/templates_export.php:120 msgid "Device Template to Export" msgstr "Te exporteren apparaat template" #: /var/www/html/cacti/templates_export.php:121 msgid "Choose the Template to export to XML." msgstr "" #: /var/www/html/cacti/templates_export.php:128 msgid "Include Dependencies" msgstr "" #: /var/www/html/cacti/templates_export.php:129 msgid "" "Some templates rely on other items in Cacti to function properly. It is " "highly recommended that you select this box or the resulting import may fail." msgstr "" #: /var/www/html/cacti/templates_export.php:135 msgid "Output Format" msgstr "" #: /var/www/html/cacti/templates_export.php:136 msgid "Choose the format to output the resulting XML file in." msgstr "" #: /var/www/html/cacti/templates_export.php:143 msgid "Output to the Browser (within Cacti)" msgstr "" #: /var/www/html/cacti/templates_export.php:147 msgid "Output to the Browser (raw XML)" msgstr "" #: /var/www/html/cacti/templates_export.php:151 msgid "Save File Locally" msgstr "Bestand lokaal opslaan" #: /var/www/html/cacti/templates_export.php:170 #, php-format msgid "Available Templates [%s]" msgstr "Beschikbare templates [%s]" #: /var/www/html/cacti/templates_import.php:115 msgid "Import Template" msgstr "Importeer template" #: /var/www/html/cacti/tree.php:32 msgctxt "dropdown action" msgid "Publish" msgstr "Publiceren" #: /var/www/html/cacti/tree.php:33 msgctxt "dropdown action" msgid "Un Publish" msgstr "Depubliceren" #: /var/www/html/cacti/tree.php:366 msgctxt "ordering of tree items" msgid "inherit" msgstr "overerven" #: /var/www/html/cacti/tree.php:369 msgctxt "ordering of tree items" msgid "manual" msgstr "handmatig" #: /var/www/html/cacti/tree.php:372 msgctxt "ordering of tree items" msgid "alpha" msgstr "alphanumeriek" #: /var/www/html/cacti/tree.php:375 msgctxt "ordering of tree items" msgid "natural" msgstr "natuurlijk" #: /var/www/html/cacti/tree.php:378 msgctxt "ordering of tree items" msgid "numeric" msgstr "numeriek" #: /var/www/html/cacti/tree.php:620 msgid "Click 'Continue' to delete the following Tree." msgid_plural "Click 'Continue' to delete following Trees." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:625 msgid "Delete Tree" msgid_plural "Delete Trees" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:629 msgid "Click 'Continue' to publish the following Tree." msgid_plural "Click 'Continue' to publish following Trees." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:634 msgid "Publish Tree" msgid_plural "Publish Trees" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:638 msgid "Click 'Continue' to un-publish the following Tree." msgid_plural "Click 'Continue' to un-publish following Trees." msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:643 msgid "Un-publish Tree" msgid_plural "Un-publish Trees" msgstr[0] "" msgstr[1] "" #: /var/www/html/cacti/tree.php:646 msgid "You must select at least one Tree." msgstr "U moet op zijn minst een menu selecteren." #: /var/www/html/cacti/tree.php:689 #, php-format msgid "Trees [edit: %s]" msgstr "" #: /var/www/html/cacti/tree.php:701 msgid "Trees [new]" msgstr "" #: /var/www/html/cacti/tree.php:727 msgid "Edit Tree" msgstr "" #: /var/www/html/cacti/tree.php:727 msgid "" "To Edit this tree, you must first lock it by pressing the Edit Tree button." msgstr "" #: /var/www/html/cacti/tree.php:730 msgid "Add Root Branch" msgstr "Voeg menu toe" #: /var/www/html/cacti/tree.php:730 msgid "Finish Editing Tree" msgstr "" #: /var/www/html/cacti/tree.php:730 #, php-format msgid "This tree has been locked for Editing on %1$s by %2$s." msgstr "" #: /var/www/html/cacti/tree.php:736 msgid "To edit the tree, you must first unlock it and then lock it as yourself" msgstr "" #: /var/www/html/cacti/tree.php:752 msgid "Tree Items" msgstr "" #: /var/www/html/cacti/tree.php:760 msgid "Available Devices" msgstr "Beschikbare apparaten" #: /var/www/html/cacti/tree.php:795 msgid "Available Graphs" msgstr "Beschikbare grafieken" #: /var/www/html/cacti/tree.php:846 /var/www/html/cacti/tree.php:1059 msgid "New Node" msgstr "Nieuwe node" #: /var/www/html/cacti/tree.php:1205 msgid "Rename" msgstr "Hernoem" #: /var/www/html/cacti/tree.php:1232 msgid "Branch Sorting" msgstr "" #: /var/www/html/cacti/tree.php:1239 msgid "Inherit" msgstr "Overerven" #: /var/www/html/cacti/tree.php:1267 msgid "Alphabetic" msgstr "Alfabetisch" #: /var/www/html/cacti/tree.php:1281 msgid "Natural" msgstr "Natuurlijk" #: /var/www/html/cacti/tree.php:1318 /var/www/html/cacti/tree.php:1392 #: /var/www/html/cacti/tree.php:1479 msgid "Cut" msgstr "Knippen" #: /var/www/html/cacti/tree.php:1351 msgid "Paste" msgstr "Plakken" #: /var/www/html/cacti/tree.php:1653 msgid "Add Tree" msgstr "Menu toevoegen" #: /var/www/html/cacti/tree.php:1659 /var/www/html/cacti/tree.php:1703 msgid "Sort Trees Ascending" msgstr "" #: /var/www/html/cacti/tree.php:1665 /var/www/html/cacti/tree.php:1704 msgid "Sort Trees Descending" msgstr "" #: /var/www/html/cacti/tree.php:1753 msgid "The name by which this Tree will be referred to as." msgstr "" #: /var/www/html/cacti/tree.php:1753 /var/www/html/cacti/user_admin.php:1511 #: /var/www/html/cacti/user_group_admin.php:1243 msgid "Tree Name" msgstr "" #: /var/www/html/cacti/tree.php:1754 msgid "" "The internal database ID for this Tree. Useful when performing automation " "or debugging." msgstr "" #: /var/www/html/cacti/tree.php:1755 msgid "Published" msgstr "Gepubliceerd" #: /var/www/html/cacti/tree.php:1755 msgid "Unpublished Trees cannot be viewed from the Graph tab" msgstr "Niet gepubliceerde menu’s kunnen niet worden getoond in de grafiek tab" #: /var/www/html/cacti/tree.php:1756 msgid "A Tree must be locked in order to be edited." msgstr "Een menu moet worden vergrendeld voordat deze kan worden bewerkt." #: /var/www/html/cacti/tree.php:1757 msgid "The original author of this Tree." msgstr "" #: /var/www/html/cacti/tree.php:1758 msgid "" "To change the order of the trees, first sort by this column, press the up or " "down arrows once they appear." msgstr "" #: /var/www/html/cacti/tree.php:1759 msgid "Last Edited" msgstr "Laatst bewerkt" #: /var/www/html/cacti/tree.php:1759 msgid "The date that this Tree was last edited." msgstr "" #: /var/www/html/cacti/tree.php:1760 msgid "Edited By" msgstr "Gewijzigd door" #: /var/www/html/cacti/tree.php:1760 msgid "The last user to have modified this Tree." msgstr "" #: /var/www/html/cacti/tree.php:1761 msgid "Branches" msgstr "" #: /var/www/html/cacti/tree.php:1761 msgid "The total number of Branches in this Tree." msgstr "" #: /var/www/html/cacti/tree.php:1762 msgid "The total number of individual Devices in this Tree." msgstr "" #: /var/www/html/cacti/tree.php:1763 msgid "The total number of individual Graphs in this Tree." msgstr "" #: /var/www/html/cacti/tree.php:1806 msgid "No Trees Found" msgstr "Geen menu's gevonden" #: /var/www/html/cacti/user_admin.php:32 msgid "Batch Copy" msgstr "" #: /var/www/html/cacti/user_admin.php:335 msgid "Click 'Continue' to delete the selected User(s)." msgstr "" #: /var/www/html/cacti/user_admin.php:340 msgid "Delete User(s)" msgstr "Verwijder gebruiker(s)" #: /var/www/html/cacti/user_admin.php:350 msgid "Click 'Continue' to copy the selected User to a new User below." msgstr "" "Klik op 'Volgende' om de geselecteerde gebruiker naar een nieuwe gebruiker " "te kopiëren." #: /var/www/html/cacti/user_admin.php:355 msgid "Template Username:" msgstr "" #: /var/www/html/cacti/user_admin.php:360 msgid "Username:" msgstr "Gebruikersnaam:" #: /var/www/html/cacti/user_admin.php:367 msgid "Full Name:" msgstr "Volledige naam:" #: /var/www/html/cacti/user_admin.php:374 msgid "Realm:" msgstr "" #: /var/www/html/cacti/user_admin.php:380 msgid "Copy User" msgstr "Kopieer gebruiker" #: /var/www/html/cacti/user_admin.php:386 msgid "Click 'Continue' to enable the selected User(s)." msgstr "Klik op 'Volgende' om de geselecteerde gebruiker(s) in te schakelen." #: /var/www/html/cacti/user_admin.php:391 msgid "Enable User(s)" msgstr "Gebruiker(s) inschakelen" #: /var/www/html/cacti/user_admin.php:397 msgid "Click 'Continue' to disable the selected User(s)." msgstr "Klik op 'Volgende' om de geselecteerde gebruiker(s) uit te schakelen." #: /var/www/html/cacti/user_admin.php:402 msgid "Disable User(s)" msgstr "Uitgeschakelde gebruiker(s)" #: /var/www/html/cacti/user_admin.php:410 msgid "" "Click 'Continue' to overwrite the User(s) settings with the selected " "template User settings and permissions. The original users Full Name, " "Password, Realm and Enable status will be retained, all other fields will be " "overwritten from Template User." msgstr "" #: /var/www/html/cacti/user_admin.php:413 msgid "Template User:" msgstr "" #: /var/www/html/cacti/user_admin.php:419 msgid "User(s) to update:" msgstr "Gebruiker(s) om bij te werken:" #: /var/www/html/cacti/user_admin.php:424 msgid "Reset User(s) Settings" msgstr "" #: /var/www/html/cacti/user_admin.php:427 msgid "You must select at least one user." msgstr "U moet tenminste een gebruiker selecteren." #: /var/www/html/cacti/user_admin.php:800 #: /var/www/html/cacti/user_group_admin.php:728 msgid "Allow" msgstr "Toestaan" #: /var/www/html/cacti/user_admin.php:801 #: /var/www/html/cacti/user_group_admin.php:729 msgid "Deny" msgstr "Weigeren" #: /var/www/html/cacti/user_admin.php:826 msgid "" "Note: System Graph Policy is 'Permissive' meaning the User must have " "access to at least one of Graph, Device, or Graph Template to gain access to " "the Graph" msgstr "" "Let op: Grafiekrechten zijn permissief. Dit betekent dat de gebruiker " "op zijn minst toegang moet hebben tot een grafiek, apparaat of " "grafiektemplate om toegang te krijgen tot de grafiek" #: /var/www/html/cacti/user_admin.php:828 msgid "" "Note: System Graph Policy is 'Restrictive' meaning the User must have " "access to the Graph, Device, and Graph Template to gain access to the Graph" msgstr "" "Let op: De grafiekrechten zijn beperkt. Dit betekent dat de gebruiker " "toegang moet hebben tot de grafiek, het apparaat en de grafiektemplate om " "toegang tot de grafiek te krijgen" #: /var/www/html/cacti/user_admin.php:832 #: /var/www/html/cacti/user_group_admin.php:745 msgid "Default Graph Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:837 msgid "Default Graph Policy for this User" msgstr "" #: /var/www/html/cacti/user_admin.php:842 #: /var/www/html/cacti/user_admin.php:1147 #: /var/www/html/cacti/user_admin.php:1308 #: /var/www/html/cacti/user_admin.php:1449 #: /var/www/html/cacti/user_group_admin.php:755 #: /var/www/html/cacti/user_group_admin.php:896 #: /var/www/html/cacti/user_group_admin.php:1044 #: /var/www/html/cacti/user_group_admin.php:1185 msgid "Update" msgstr "Bijwerken" #: /var/www/html/cacti/user_admin.php:994 #: /var/www/html/cacti/user_admin.php:1230 #: /var/www/html/cacti/user_admin.php:1374 #: /var/www/html/cacti/user_admin.php:1511 #: /var/www/html/cacti/user_group_admin.php:821 #: /var/www/html/cacti/user_group_admin.php:966 #: /var/www/html/cacti/user_group_admin.php:1109 #: /var/www/html/cacti/user_group_admin.php:1243 msgid "Effective Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:1008 #: /var/www/html/cacti/user_group_admin.php:847 msgid "No Matching Graphs Found" msgstr "Geen overeenkomende grafieken gevonden" #: /var/www/html/cacti/user_admin.php:1023 #: /var/www/html/cacti/user_admin.php:1029 #: /var/www/html/cacti/user_admin.php:1275 #: /var/www/html/cacti/user_admin.php:1281 #: /var/www/html/cacti/user_admin.php:1416 #: /var/www/html/cacti/user_admin.php:1422 #: /var/www/html/cacti/user_admin.php:1552 #: /var/www/html/cacti/user_admin.php:1558 #: /var/www/html/cacti/user_group_admin.php:862 #: /var/www/html/cacti/user_group_admin.php:868 #: /var/www/html/cacti/user_group_admin.php:1010 #: /var/www/html/cacti/user_group_admin.php:1016 #: /var/www/html/cacti/user_group_admin.php:1151 #: /var/www/html/cacti/user_group_admin.php:1157 #: /var/www/html/cacti/user_group_admin.php:1283 #: /var/www/html/cacti/user_group_admin.php:1289 msgid "Revoke Access" msgstr "Rechten intrekken" #: /var/www/html/cacti/user_admin.php:1024 #: /var/www/html/cacti/user_admin.php:1028 #: /var/www/html/cacti/user_admin.php:1276 #: /var/www/html/cacti/user_admin.php:1280 #: /var/www/html/cacti/user_admin.php:1417 #: /var/www/html/cacti/user_admin.php:1421 #: /var/www/html/cacti/user_admin.php:1553 #: /var/www/html/cacti/user_admin.php:1557 #: /var/www/html/cacti/user_group_admin.php:62 #: /var/www/html/cacti/user_group_admin.php:863 #: /var/www/html/cacti/user_group_admin.php:867 #: /var/www/html/cacti/user_group_admin.php:1011 #: /var/www/html/cacti/user_group_admin.php:1015 #: /var/www/html/cacti/user_group_admin.php:1152 #: /var/www/html/cacti/user_group_admin.php:1156 #: /var/www/html/cacti/user_group_admin.php:1284 #: /var/www/html/cacti/user_group_admin.php:1288 msgid "Grant Access" msgstr "Toegang toestaan" #: /var/www/html/cacti/user_admin.php:1081 #: /var/www/html/cacti/user_admin.php:2658 #: /var/www/html/cacti/user_group_admin.php:1833 #: /var/www/html/cacti/user_group_admin.php:1892 msgid "Groups" msgstr "Groepen" #: /var/www/html/cacti/user_admin.php:1089 #: /var/www/html/cacti/user_admin.php:1098 msgid "Member" msgstr "Lid" #: /var/www/html/cacti/user_admin.php:1089 msgid "Policies (Graph/Device/Template)" msgstr "" #: /var/www/html/cacti/user_admin.php:1098 #: /var/www/html/cacti/user_group_admin.php:688 msgid "Non Member" msgstr "Geen lid" #: /var/www/html/cacti/user_admin.php:1100 #: /var/www/html/cacti/user_admin.php:2312 #: /var/www/html/cacti/user_admin.php:2313 #: /var/www/html/cacti/user_admin.php:2314 #: /var/www/html/cacti/user_group_admin.php:1924 #: /var/www/html/cacti/user_group_admin.php:1925 #: /var/www/html/cacti/user_group_admin.php:1926 msgid "ALLOW" msgstr "TOESTAAN" #: /var/www/html/cacti/user_admin.php:1100 #: /var/www/html/cacti/user_admin.php:2312 #: /var/www/html/cacti/user_admin.php:2313 #: /var/www/html/cacti/user_admin.php:2314 #: /var/www/html/cacti/user_group_admin.php:1924 #: /var/www/html/cacti/user_group_admin.php:1925 #: /var/www/html/cacti/user_group_admin.php:1926 msgid "DENY" msgstr "WEIGEREN" #: /var/www/html/cacti/user_admin.php:1106 msgid "No Matching User Groups Found" msgstr "Geen overeenkomende gebruikersgroepen gevonden" #: /var/www/html/cacti/user_admin.php:1120 msgid "Assign Membership" msgstr "Lidmaatschap toewijzen" #: /var/www/html/cacti/user_admin.php:1121 msgid "Remove Membership" msgstr "Lidmaatschap verwijderen" #: /var/www/html/cacti/user_admin.php:1137 #: /var/www/html/cacti/user_group_admin.php:886 msgid "Default Device Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:1142 msgid "Default Device Policy for this User" msgstr "" #: /var/www/html/cacti/user_admin.php:1241 #: /var/www/html/cacti/user_admin.php:1249 #: /var/www/html/cacti/user_admin.php:1385 #: /var/www/html/cacti/user_admin.php:1393 #: /var/www/html/cacti/user_admin.php:1522 #: /var/www/html/cacti/user_admin.php:1530 #: /var/www/html/cacti/user_group_admin.php:832 #: /var/www/html/cacti/user_group_admin.php:840 #: /var/www/html/cacti/user_group_admin.php:977 #: /var/www/html/cacti/user_group_admin.php:985 #: /var/www/html/cacti/user_group_admin.php:1120 #: /var/www/html/cacti/user_group_admin.php:1128 #: /var/www/html/cacti/user_group_admin.php:1254 #: /var/www/html/cacti/user_group_admin.php:1262 msgid "Access Granted" msgstr "Toegang verleend" #: /var/www/html/cacti/user_admin.php:1243 #: /var/www/html/cacti/user_admin.php:1247 #: /var/www/html/cacti/user_admin.php:1387 #: /var/www/html/cacti/user_admin.php:1391 #: /var/www/html/cacti/user_admin.php:1524 #: /var/www/html/cacti/user_admin.php:1528 #: /var/www/html/cacti/user_group_admin.php:834 #: /var/www/html/cacti/user_group_admin.php:838 #: /var/www/html/cacti/user_group_admin.php:979 #: /var/www/html/cacti/user_group_admin.php:983 #: /var/www/html/cacti/user_group_admin.php:1122 #: /var/www/html/cacti/user_group_admin.php:1126 #: /var/www/html/cacti/user_group_admin.php:1256 #: /var/www/html/cacti/user_group_admin.php:1260 msgid "Access Restricted" msgstr "Toegang beperkt" #: /var/www/html/cacti/user_admin.php:1260 #: /var/www/html/cacti/user_group_admin.php:996 msgid "No Matching Devices Found" msgstr "Geen overeenkomende apparaten gevonden" #: /var/www/html/cacti/user_admin.php:1298 #: /var/www/html/cacti/user_group_admin.php:1034 msgid "Default Graph Template Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:1303 msgid "Default Graph Template Policy for this User" msgstr "" #: /var/www/html/cacti/user_admin.php:1374 #: /var/www/html/cacti/user_group_admin.php:1109 msgid "Total Graphs" msgstr "Totaal aantal grafieken" #: /var/www/html/cacti/user_admin.php:1401 #: /var/www/html/cacti/user_group_admin.php:1136 msgid "No Matching Graph Templates Found" msgstr "Geen overeenkomende grafiek templates gevonden" #: /var/www/html/cacti/user_admin.php:1439 #: /var/www/html/cacti/user_group_admin.php:1175 msgid "Default Tree Policy" msgstr "" #: /var/www/html/cacti/user_admin.php:1444 msgid "Default Tree Policy for this User" msgstr "" #: /var/www/html/cacti/user_admin.php:1537 #: /var/www/html/cacti/user_group_admin.php:1269 msgid "No Matching Trees Found" msgstr "Geen overeenkomende menu's gevonden" #: /var/www/html/cacti/user_admin.php:1582 #: /var/www/html/cacti/user_group_admin.php:1315 msgid "User Permissions" msgstr "Gebruikersrechten" #: /var/www/html/cacti/user_admin.php:1649 #: /var/www/html/cacti/user_group_admin.php:1402 msgid "External Link Permissions" msgstr "Rechten externe links" #: /var/www/html/cacti/user_admin.php:1706 #: /var/www/html/cacti/user_group_admin.php:1459 msgid "Plugin Permissions" msgstr "Plugin rechten" #: /var/www/html/cacti/user_admin.php:1762 msgid "Legacy 1.x Plugins" msgstr "" #: /var/www/html/cacti/user_admin.php:1819 #: /var/www/html/cacti/user_group_admin.php:1550 #, php-format msgid "User Settings %s" msgstr "Gebruikersinstellingen %s" #: /var/www/html/cacti/user_admin.php:1934 #: /var/www/html/cacti/user_group_admin.php:1666 msgid "Permissions" msgstr "Rechten" #: /var/www/html/cacti/user_admin.php:1935 msgid "Group Membership" msgstr "Groepslidmaatschap" #: /var/www/html/cacti/user_admin.php:1936 #: /var/www/html/cacti/user_group_admin.php:1667 msgid "Graph Perms" msgstr "Grafiek rechten" #: /var/www/html/cacti/user_admin.php:1937 #: /var/www/html/cacti/user_group_admin.php:1668 msgid "Device Perms" msgstr "Apparaat rechten" #: /var/www/html/cacti/user_admin.php:1938 #: /var/www/html/cacti/user_group_admin.php:1669 msgid "Template Perms" msgstr "Template rechten" #: /var/www/html/cacti/user_admin.php:1939 #: /var/www/html/cacti/user_group_admin.php:1670 msgid "Tree Perms" msgstr "Menu rechten" #: /var/www/html/cacti/user_admin.php:1981 #, php-format msgid "User Management %s" msgstr "Gebruikersbeheer %s" #: /var/www/html/cacti/user_admin.php:2013 msgid "Password Too Short" msgstr "Wachtwoord is te kort" #: /var/www/html/cacti/user_admin.php:2018 msgid "Password Validation Passes" msgstr "Wachtwoord validatie succesvol" #: /var/www/html/cacti/user_admin.php:2032 msgid "Passwords do Not Match" msgstr "Wachtwoorden komen niet overeen" #: /var/www/html/cacti/user_admin.php:2035 msgid "Passwords Match" msgstr "Wachtwoorden komen overeen" #: /var/www/html/cacti/user_admin.php:2280 #: /var/www/html/cacti/user_group_admin.php:1904 msgid "Graph Policy" msgstr "Grafiek beleid" #: /var/www/html/cacti/user_admin.php:2281 #: /var/www/html/cacti/user_group_admin.php:1905 msgid "Device Policy" msgstr "Apparaat beleid" #: /var/www/html/cacti/user_admin.php:2282 #: /var/www/html/cacti/user_group_admin.php:1906 msgid "Template Policy" msgstr "Template beleid" #: /var/www/html/cacti/user_admin.php:2283 msgid "Last Login" msgstr "Laatste login" #: /var/www/html/cacti/user_admin.php:2304 msgid "Unavailable" msgstr "Niet beschikbaar" #: /var/www/html/cacti/user_admin.php:2320 msgid "No Users Found" msgstr "Geen gebruikers gevonden" #: /var/www/html/cacti/user_admin.php:2536 #: /var/www/html/cacti/user_group_admin.php:2143 #, php-format msgid "Graph Permissions %s" msgstr "Grafiek rechten %s" #: /var/www/html/cacti/user_admin.php:2590 #: /var/www/html/cacti/user_admin.php:2675 msgid "Show All" msgstr "Toon alles" #: /var/www/html/cacti/user_admin.php:2643 #, php-format msgid "Group Membership %s" msgstr "Groepslidmaatschap %s" #: /var/www/html/cacti/user_admin.php:2729 #: /var/www/html/cacti/user_group_admin.php:2251 #, php-format msgid "Devices Permission %s" msgstr "Apparaat rechten %s" #: /var/www/html/cacti/user_admin.php:2779 #: /var/www/html/cacti/user_admin.php:2864 #: /var/www/html/cacti/user_admin.php:2949 #: /var/www/html/cacti/user_group_admin.php:2197 #: /var/www/html/cacti/user_group_admin.php:2301 #: /var/www/html/cacti/user_group_admin.php:2386 #: /var/www/html/cacti/user_group_admin.php:2471 msgid "Show Exceptions" msgstr "Toon uitzonderingen" #: /var/www/html/cacti/user_admin.php:2832 #: /var/www/html/cacti/user_group_admin.php:2354 #, php-format msgid "Template Permission %s" msgstr "Template rechten %s" #: /var/www/html/cacti/user_admin.php:2917 #: /var/www/html/cacti/user_admin.php:3002 #: /var/www/html/cacti/user_group_admin.php:2439 #, php-format msgid "Tree Permission %s" msgstr "Menu rechten %s" #: /var/www/html/cacti/user_admin.php:3034 msgid "Show Exceptions<" msgstr "Toon uitzonderingen<" #: /var/www/html/cacti/user_domains.php:222 msgid "Click 'Continue' to delete the following User Domain." msgid_plural "Click 'Continue' to delete following User Domains." msgstr[0] "Klik op 'Volgende' om het volgende gebruikersdomein te verwijderen." msgstr[1] "" "Klik op 'Volgende' om de volgende gebruikersdomeinen te verwijderen." #: /var/www/html/cacti/user_domains.php:227 msgid "Delete User Domain" msgid_plural "Delete User Domains" msgstr[0] "Verwijder gebruiker domein" msgstr[1] "Verwijder gebruiker domeinen" #: /var/www/html/cacti/user_domains.php:231 msgid "Click 'Continue' to disable the following User Domain." msgid_plural "Click 'Continue' to disable following User Domains." msgstr[0] "" "Klik op 'Volgende' om het volgende gebruikersdomein uit te schakelen." msgstr[1] "" "Klik op 'Volgende' om de volgende gebruikersdomeinen uit te schakelen." #: /var/www/html/cacti/user_domains.php:236 msgid "Disable User Domain" msgid_plural "Disable User Domains" msgstr[0] "Deactiveer gebruiker domein" msgstr[1] "Deactiveer gebruiker domeinen" #: /var/www/html/cacti/user_domains.php:240 msgid "Click 'Continue' to enable the following User Domain." msgstr "Klik op 'Volgende' om de volgende gebruikersdomeinen in te schakelen." #: /var/www/html/cacti/user_domains.php:245 msgid "Enabled User Domain" msgid_plural "Enable User Domains" msgstr[0] "Gebruikersdomein inschakelen" msgstr[1] "Gebruikersdomeinen inschakelen" #: /var/www/html/cacti/user_domains.php:249 msgid "" "Click 'Continue' to make the following the following User Domain the default " "one." msgstr "" #: /var/www/html/cacti/user_domains.php:254 msgid "Make Selected Domain Default" msgstr "Maak het geselecteerde domein standaard" #: /var/www/html/cacti/user_domains.php:257 msgid "You must select at least one User Domain." msgstr "U moet op zijn minst een gebruikersdomein selecteren." #: /var/www/html/cacti/user_domains.php:308 #, php-format msgid "User Domain [edit: %s]" msgstr "Gebruiker domein [wijzig: %s]" #: /var/www/html/cacti/user_domains.php:310 msgid "User Domain [new]" msgstr "Gebruiker domein [nieuw]" #: /var/www/html/cacti/user_domains.php:318 msgid "" "Enter a meaningful name for this domain. This will be the name that appears " "in the Login Realm during login." msgstr "" "Voer een handige naam in voor dit domein. Deze naam zal wordt getoond in het " "login venster gedurende de login." #: /var/www/html/cacti/user_domains.php:324 msgid "Domains Type" msgstr "" #: /var/www/html/cacti/user_domains.php:325 msgid "Choose what type of domain this is." msgstr "Kies wat voor type domein dit is." #: /var/www/html/cacti/user_domains.php:332 msgid "" "The name of the user that Cacti will use as a template for new user accounts." msgstr "" #: /var/www/html/cacti/user_domains.php:342 msgid "" "If this checkbox is checked, users will be able to login using this domain." msgstr "" #: /var/www/html/cacti/user_domains.php:359 msgid "The dns hostname or ip address of the server." msgstr "" #: /var/www/html/cacti/user_domains.php:367 msgid "TCP/UDP port for Non SSL communications." msgstr "" #: /var/www/html/cacti/user_domains.php:406 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the users " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the users Distinguished Name (DN)." msgstr "" #: /var/www/html/cacti/user_domains.php:455 msgid "" "Search base for searching the LDAP directory, such as \"dc=win2kdomain," "dc=local\" or \"ou=people,dc=domain,dc=local\"." msgstr "" #: /var/www/html/cacti/user_domains.php:462 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: \"(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))\" or for OpenLDAP: " "\"(&(objectClass=account)(uid=<username>))\". \"<username>\" " "is replaced with the username that was supplied at the login prompt." msgstr "" #: /var/www/html/cacti/user_domains.php:501 msgid "Domain Properties" msgstr "Domein eigenschappen" #: /var/www/html/cacti/user_domains.php:627 msgid "Domains" msgstr "Domeinen" #: /var/www/html/cacti/user_domains.php:712 msgid "Domain Name" msgstr "Domeinnaam" #: /var/www/html/cacti/user_domains.php:713 msgid "Domain Type" msgstr "Domein type" #: /var/www/html/cacti/user_domains.php:715 msgid "Effective User" msgstr "" #: /var/www/html/cacti/user_domains.php:728 msgid "None Selected" msgstr "Niets geselecteerd" #: /var/www/html/cacti/user_domains.php:734 msgid "No User Domains Found" msgstr "Geen gebruikersdomeinen gevonden" #: /var/www/html/cacti/user_group_admin.php:39 #: /var/www/html/cacti/user_group_admin.php:58 msgid "Defer to the Users Setting" msgstr "" #: /var/www/html/cacti/user_group_admin.php:43 msgid "Show the Page that the User pointed their browser to" msgstr "" #: /var/www/html/cacti/user_group_admin.php:47 msgid "Show the Console" msgstr "Toon de console" #: /var/www/html/cacti/user_group_admin.php:51 msgid "Show the default Graph Screen" msgstr "Toon het standaard grafiek venster" #: /var/www/html/cacti/user_group_admin.php:66 msgid "Restrict Access" msgstr "" #: /var/www/html/cacti/user_group_admin.php:73 #: /var/www/html/cacti/user_group_admin.php:1901 msgid "Group Name" msgstr "Groepnaam" #: /var/www/html/cacti/user_group_admin.php:74 msgid "The name of this Group." msgstr "" #: /var/www/html/cacti/user_group_admin.php:80 msgid "Group Description" msgstr "Groep beschrijving" #: /var/www/html/cacti/user_group_admin.php:81 msgid "" "A more descriptive name for this group, that can include spaces or special " "characters." msgstr "" "Een meer beschrijvende naam voor deze groep, deze mag spaties en speciale " "karakters bevatten." #: /var/www/html/cacti/user_group_admin.php:93 msgid "General Group Options" msgstr "" #: /var/www/html/cacti/user_group_admin.php:95 msgid "Set any user account-specific options here." msgstr "" #: /var/www/html/cacti/user_group_admin.php:99 msgid "Allow Users of this Group to keep custom User Settings" msgstr "" #: /var/www/html/cacti/user_group_admin.php:106 msgid "Tree Rights" msgstr "" #: /var/www/html/cacti/user_group_admin.php:108 msgid "Should Users of this Group have access to the Tree?" msgstr "" #: /var/www/html/cacti/user_group_admin.php:114 msgid "Graph List Rights" msgstr "Grafiek lijst rechten" #: /var/www/html/cacti/user_group_admin.php:116 msgid "Should Users of this Group have access to the Graph List?" msgstr "" #: /var/www/html/cacti/user_group_admin.php:122 msgid "Graph Preview Rights" msgstr "" #: /var/www/html/cacti/user_group_admin.php:124 msgid "Should Users of this Group have access to the Graph Preview?" msgstr "" #: /var/www/html/cacti/user_group_admin.php:133 msgid "What to do when a User from this User Group logs in." msgstr "" "Wat moet er gebeuren als een gebruiker uit deze gebruikersgroep inlogt." #: /var/www/html/cacti/user_group_admin.php:441 msgid "Click 'Continue' to delete the following User Group" msgid_plural "Click 'Continue' to delete following User Groups" msgstr[0] "Klik op 'Volgende' om de volgende gebruikersgroep te verwijderen" msgstr[1] "Klik op 'Volgende' om de volgende gebruikersgroepen te verwijderen" #: /var/www/html/cacti/user_group_admin.php:446 msgid "Delete User Group" msgid_plural "Delete User Groups" msgstr[0] "Verwijder gebruikersgroep" msgstr[1] "Verwijder gebruikersgroepen" #: /var/www/html/cacti/user_group_admin.php:454 msgid "Click 'Continue' to Copy the following User Group to a new User Group." msgid_plural "" "Click 'Continue' to Copy following User Groups to new User Groups." msgstr[0] "" "Klik op 'Volgende' om de volgende gebruikersgroep naar een nieuwe " "gebruikersgroep te kopiëren." msgstr[1] "" "Klik op 'Volgende' om de volgende gebruikersgroepen naar nieuwe " "gebruikersgroepen te kopiëren." #: /var/www/html/cacti/user_group_admin.php:460 msgid "Group Prefix:" msgstr "Groep voorvoegsel:" #: /var/www/html/cacti/user_group_admin.php:461 msgid "New Group" msgstr "Nieuwe groep" #: /var/www/html/cacti/user_group_admin.php:465 msgid "Copy User Group" msgid_plural "Copy User Groups" msgstr[0] "Kopieer gebruikersgroep" msgstr[1] "Kopieer gebruikersgroepen" #: /var/www/html/cacti/user_group_admin.php:471 msgid "Click 'Continue' to enable the following User Group." msgid_plural "Click 'Continue' to enable following User Groups." msgstr[0] "Klik op 'Volgende' om de volgende gebruikersgroep in te schakelen." msgstr[1] "" "Klik op 'Volgende' om de volgende gebruikersgroepen in te schakelen." #: /var/www/html/cacti/user_group_admin.php:476 msgid "Enable User Group" msgid_plural "Enable User Groups" msgstr[0] "Activeer gebruikersgroep" msgstr[1] "Activeer gebruikersgroepen" #: /var/www/html/cacti/user_group_admin.php:482 msgid "Click 'Continue' to disable the following User Group." msgid_plural "Click 'Continue' to disable following User Groups." msgstr[0] "Klik op 'Volgende' om de volgende gebruikersgroep uit te schakelen." msgstr[1] "" "Klik op 'Volgende' om de volgende gebruikersgroepen uit te schakelen." #: /var/www/html/cacti/user_group_admin.php:487 msgid "Disable User Group" msgid_plural "Disable User Groups" msgstr[0] "Deactiveer gebruikersgroep" msgstr[1] "Deactiveer gebruikersgroepen" #: /var/www/html/cacti/user_group_admin.php:490 msgid "You must select at least one Group." msgstr "U moet tenminste een groep selecteren." #: /var/www/html/cacti/user_group_admin.php:675 msgid "Login Name" msgstr "Loginnaam" #: /var/www/html/cacti/user_group_admin.php:675 msgid "Membership" msgstr "Lidmaatschap" #: /var/www/html/cacti/user_group_admin.php:686 msgid "Group Member" msgstr "Groepsleden" #: /var/www/html/cacti/user_group_admin.php:696 msgid "No Matching Group Members Found" msgstr "Geen overeenkomende groupleden gevonden" #: /var/www/html/cacti/user_group_admin.php:710 msgid "Add to Group" msgstr "Toevoegen aan groep" #: /var/www/html/cacti/user_group_admin.php:711 msgid "Remove from Group" msgstr "Verwijder uit groep" #: /var/www/html/cacti/user_group_admin.php:750 #: /var/www/html/cacti/user_group_admin.php:891 msgid "Default Graph Policy for this User Group" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1039 msgid "Default Graph Template Policy for this User Group" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1180 msgid "Default Tree Policy for this User Group" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1665 #: /var/www/html/cacti/user_group_admin.php:1902 msgid "Members" msgstr "Leden" #: /var/www/html/cacti/user_group_admin.php:1677 #, php-format msgid "User Group Management [edit: %s]" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1679 msgid "User Group Management [new]" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1812 msgid "User Group Management" msgstr "" #: /var/www/html/cacti/user_group_admin.php:1932 msgid "No User Groups Found" msgstr "Geen gebruikersgroepen gevonden" #: /var/www/html/cacti/user_group_admin.php:2524 #, php-format msgid "User Membership %s" msgstr "" #: /var/www/html/cacti/user_group_admin.php:2556 msgid "Show Members" msgstr "Toon leden" #: /var/www/html/cacti/user_group_admin.php:2562 msgctxt "filter reset" msgid "Clear" msgstr "Herstel" #: /var/www/html/cacti/utilities.php:177 msgid "" "NET-SNMP Not Installed or its paths are not set. Please install if you wish " "to monitor SNMP enabled devices." msgstr "" "NET-SNMP niet geïnstalleerd of de paden zijn incorrect ingesteld. Installeer " "NET-SNMP als u SNMP geactiveerde apparaten wilt monitoren." #: /var/www/html/cacti/utilities.php:183 msgid "Configuration Settings" msgstr "Configuratieinstellingen" #: /var/www/html/cacti/utilities.php:183 #, php-format msgid "" "ERROR: Installed RRDtool version does not match configured version." "
    Please visit the %s and select the correct RRDtool Utility Version." msgstr "" #: /var/www/html/cacti/utilities.php:187 #, php-format msgid "" "ERROR: RRDtool 1.2.x+ does not support the GIF images format, but %d\" " "graph(s) and/or templates have GIF set as the image format." msgstr "" #: /var/www/html/cacti/utilities.php:207 msgid "Database" msgstr "Database" #: /var/www/html/cacti/utilities.php:208 msgid "PHP Info" msgstr "PHP Info" #: /var/www/html/cacti/utilities.php:215 #, php-format msgid "Technical Support [%s]" msgstr "Technische ondersteuning [%s]" #: /var/www/html/cacti/utilities.php:242 msgid "General Information" msgstr "Algemene informatie" #: /var/www/html/cacti/utilities.php:256 msgid "Cacti OS" msgstr "Cacti OS" #: /var/www/html/cacti/utilities.php:266 msgid "NET-SNMP Version" msgstr "NET-SNMP versie" #: /var/www/html/cacti/utilities.php:294 /var/www/html/cacti/utilities.php:327 #, php-format msgid "Total: %s" msgstr "Totaal: %s" #: /var/www/html/cacti/utilities.php:301 msgid "Poller Information" msgstr "Poller informatie" #: /var/www/html/cacti/utilities.php:324 #, php-format msgid "Action[%s]" msgstr "Actie[%s]" #: /var/www/html/cacti/utilities.php:329 msgid "No items to poll" msgstr "Geen items om te pollen" #: /var/www/html/cacti/utilities.php:335 msgid "Concurrent Processes" msgstr "Gelijktijdige processen" #: /var/www/html/cacti/utilities.php:340 msgid "Max Threads" msgstr "" #: /var/www/html/cacti/utilities.php:345 msgid "PHP Servers" msgstr "PHP servers" #: /var/www/html/cacti/utilities.php:350 msgid "Script Timeout" msgstr "Script timeout" #: /var/www/html/cacti/utilities.php:355 msgid "Max OID" msgstr "Max OID" #: /var/www/html/cacti/utilities.php:360 msgid "Last Run Statistics" msgstr "Statistieken van de laatste run" #: /var/www/html/cacti/utilities.php:368 msgid "System Memory" msgstr "Systeemgeheugen" #: /var/www/html/cacti/utilities.php:397 msgid "PHP Information" msgstr "PHP informatie" #: /var/www/html/cacti/utilities.php:404 msgid "" "PHP Version 5.5.0+ is recommended due to strong password hashing support." msgstr "" "PHP versie 5.5.0+ wordt aanbevolen vanwege ondersteuning voor sterke " "wachtwoord hashes." #: /var/www/html/cacti/utilities.php:409 msgid "PHP OS" msgstr "PHP OS" #: /var/www/html/cacti/utilities.php:414 msgid "PHP uname" msgstr "PHP uname" #: /var/www/html/cacti/utilities.php:425 msgid "PHP SNMP" msgstr "PHP SNMP" #: /var/www/html/cacti/utilities.php:460 msgid "You've set memory limit to 'unlimited'." msgstr "U heeft het geheugengebruik ingesteld op 'onbeperkt'." #: /var/www/html/cacti/utilities.php:462 #, php-format msgid "" "It is highly suggested that you alter you php.ini memory_limit to %s or " "higher." msgstr "" #: /var/www/html/cacti/utilities.php:463 msgid "" "This suggested memory value is calculated based on the number of data source " "present and is only to be used as a suggestion, actual values may vary " "system to system based on requirements." msgstr "" #: /var/www/html/cacti/utilities.php:471 msgid "MySQL Table Information - Sizes in KBytes" msgstr "MySQL Tabel informatie - Groottes in KBytes" #: /var/www/html/cacti/utilities.php:480 msgid "Engine" msgstr "" #: /var/www/html/cacti/utilities.php:482 msgid "Avg Row Length" msgstr "Gemiddelde rijlengte" #: /var/www/html/cacti/utilities.php:483 msgid "Data Length" msgstr "" #: /var/www/html/cacti/utilities.php:484 msgid "Index Length" msgstr "" #: /var/www/html/cacti/utilities.php:485 msgid "Collation" msgstr "Collatie" #: /var/www/html/cacti/utilities.php:486 msgid "Comment" msgstr "Opmerking" #: /var/www/html/cacti/utilities.php:504 msgid "Unable to retrieve table status" msgstr "Het was niet mogelijk om de tabel status op te halen" #: /var/www/html/cacti/utilities.php:510 msgid "PHP Module Information" msgstr "PHP module informatie" #: /var/www/html/cacti/utilities.php:635 msgid "User Login History" msgstr "Gebruiker login historie" #: /var/www/html/cacti/utilities.php:644 /var/www/html/cacti/utilities.php:772 msgid "User" msgstr "Gebruiker" #: /var/www/html/cacti/utilities.php:649 msgid "Deleted/Invalid" msgstr "Verwijderd/Ongeldig" #: /var/www/html/cacti/utilities.php:662 /var/www/html/cacti/utilities.php:776 msgid "Result" msgstr "Resultaat" #: /var/www/html/cacti/utilities.php:667 msgid "Success - Pswd" msgstr "" #: /var/www/html/cacti/utilities.php:668 msgid "Success - Token" msgstr "" #: /var/www/html/cacti/utilities.php:669 msgid "Failed" msgstr "Mislukt" #: /var/www/html/cacti/utilities.php:673 msgid "Attempts" msgstr "Pogingen" #: /var/www/html/cacti/utilities.php:689 /var/www/html/cacti/utilities.php:1070 #: /var/www/html/cacti/utilities.php:1397 #: /var/www/html/cacti/utilities.php:1675 #: /var/www/html/cacti/utilities.php:2396 #: /var/www/html/cacti/utilities.php:2658 /var/www/html/cacti/vdef.php:703 msgctxt "Button: use filter settings" msgid "Go" msgstr "Ga" #: /var/www/html/cacti/utilities.php:690 /var/www/html/cacti/utilities.php:1071 #: /var/www/html/cacti/utilities.php:1398 #: /var/www/html/cacti/utilities.php:1676 #: /var/www/html/cacti/utilities.php:2397 #: /var/www/html/cacti/utilities.php:2659 /var/www/html/cacti/vdef.php:704 msgctxt "Button: reset filter settings" msgid "Clear" msgstr "Herstel" #: /var/www/html/cacti/utilities.php:691 /var/www/html/cacti/utilities.php:1072 #: /var/www/html/cacti/utilities.php:2660 msgctxt "Button: delete all table entries" msgid "Purge" msgstr "Legen" #: /var/www/html/cacti/utilities.php:691 msgid "Purge User Log" msgstr "" #: /var/www/html/cacti/utilities.php:765 msgid "User Logins" msgstr "Gebruiker logins" #: /var/www/html/cacti/utilities.php:777 msgid "IP Address" msgstr "IP-adres" #: /var/www/html/cacti/utilities.php:793 msgid "(User Removed)" msgstr "(Gebruiker verwijderd)" #: /var/www/html/cacti/utilities.php:1144 #, php-format msgid "Log [Total Lines: %d - Non-Matching Items Hidden]" msgstr "" "Log [Totaal aantal lijnen: %d - Niet overeenkomende items zijn verborgen]" #: /var/www/html/cacti/utilities.php:1146 #, php-format msgid "Log [Total Lines: %d - All Items Shown]" msgstr "Log [Totaal aantal lijnen: %d - Alle items worden getoond]" #: /var/www/html/cacti/utilities.php:1245 #, php-format msgid "%s - WEBUI: Cacti Log Cleared from Web Management Interface." msgstr "%s - WEBUI: Cacti log geleegd vanaf de webinterface." #: /var/www/html/cacti/utilities.php:1247 msgid "Cacti Log Cleared" msgstr "Cacti log leeggemaakt" #: /var/www/html/cacti/utilities.php:1249 msgid "Error: Unable to clear log, no write permissions." msgstr "Fout: logbestand legen mislukt, geen schrijfrechten." #: /var/www/html/cacti/utilities.php:1252 msgid "Error: Unable to clear log, file does not exist." msgstr "Fout: logbestand legen mislukt. Het bestand bestaat niet." #: /var/www/html/cacti/utilities.php:1353 msgid "Data Query Cache Items" msgstr "" #: /var/www/html/cacti/utilities.php:1363 msgid "Query Name" msgstr "" #: /var/www/html/cacti/utilities.php:1427 msgid "Allow the search term to include the index column" msgstr "" #: /var/www/html/cacti/utilities.php:1428 msgid "Include Index" msgstr "" #: /var/www/html/cacti/utilities.php:1500 msgid "Field Value" msgstr "Veld waarde" #: /var/www/html/cacti/utilities.php:1500 msgid "Index" msgstr "Index" #: /var/www/html/cacti/utilities.php:1635 msgid "Poller Cache Items" msgstr "Poller gecachede items" #: /var/www/html/cacti/utilities.php:1696 msgid "Script" msgstr "Script" #: /var/www/html/cacti/utilities.php:1816 #: /var/www/html/cacti/utilities.php:1821 msgid "SNMP Version:" msgstr "SNMP versie:" #: /var/www/html/cacti/utilities.php:1817 msgid "Community:" msgstr "Community:" #: /var/www/html/cacti/utilities.php:1818 #: /var/www/html/cacti/utilities.php:1822 msgid "OID:" msgstr "OID:" #: /var/www/html/cacti/utilities.php:1822 msgid "User:" msgstr "Gebruiker:" #: /var/www/html/cacti/utilities.php:1825 msgid "Script:" msgstr "Script:" #: /var/www/html/cacti/utilities.php:1827 msgid "Script Server:" msgstr "Script server:" #: /var/www/html/cacti/utilities.php:1840 msgid "RRD:" msgstr "RRD:" #: /var/www/html/cacti/utilities.php:1861 msgid "" "Cacti technical support page. Used by developers and technical support " "persons to assist with issues in Cacti. Includes checks for common " "configuration issues." msgstr "" "Cacti technische support pagina. Gebruikt door developers en technische " "supportmedewerkers om u te assisteren bij problemen met Cacti. Dit omvat " "controles voor configuratieproblemen." #: /var/www/html/cacti/utilities.php:1863 msgid "Log Administration" msgstr "Log beheer" #: /var/www/html/cacti/utilities.php:1865 msgid "" "The Cacti Log stores statistic, error and other message depending on system " "settings. This information can be used to identify problems with the poller " "and application." msgstr "" #: /var/www/html/cacti/utilities.php:1869 msgid "" "Allows Administrators to browse the user log. Administrators can filter and " "export the log as well." msgstr "" #: /var/www/html/cacti/utilities.php:1873 msgid "Poller Cache Administration" msgstr "" #: /var/www/html/cacti/utilities.php:1876 msgid "" "This is the data that is being passed to the poller each time it runs. This " "data is then in turn executed/interpreted and the results are fed into the " "RRDfiles for graphing or the database for display." msgstr "" #: /var/www/html/cacti/utilities.php:1880 msgid "" "The Data Query Cache stores information gathered from Data Query input " "types. The values from these fields can be used in the text area of Graphs " "for Legends, Vertical Labels, and GPRINTS as well as in CDEF's." msgstr "" #: /var/www/html/cacti/utilities.php:1882 msgid "Rebuild Poller Cache" msgstr "Poller cache opnieuw opbouwen" #: /var/www/html/cacti/utilities.php:1884 msgid "" "The Poller Cache will be re-generated if you select this option. Use this " "option only in the event of a database crash if you are experiencing issues " "after the crash and have already run the database repair tools. " "Alternatively, if you are having problems with a specific Device, simply re-" "save that Device to rebuild its Poller Cache. There is also a command line " "interface equivalent to this command that is recommended for large systems. " "NOTE: On large systems, this command may take " "several minutes to hours to complete and therefore should not be run from " "the Cacti UI. You can simply run 'php -q cli/rebuild_poller_cache.php --" "help' at the command line for more information." msgstr "" #: /var/www/html/cacti/utilities.php:1886 msgid "Rebuild Resource Cache" msgstr "Resource cache opnieuw opbouwen" #: /var/www/html/cacti/utilities.php:1888 msgid "" "When operating multiple Data Collectors in Cacti, Cacti will attempt to " "maintain state for key files on all Data Collectors. This includes all " "core, non-install related website and plugin files. When you force a " "Resource Cache rebild, Cacti will clear the local Resource Cache, and then " "rebuild it at the next scheduled poller start. This will trigger all Remote " "Data Collectors to recheck their website and plugin files for consistency." msgstr "" #: /var/www/html/cacti/utilities.php:1892 msgid "Boost Utilities" msgstr "" #: /var/www/html/cacti/utilities.php:1893 msgid "View Boost Status" msgstr "" #: /var/www/html/cacti/utilities.php:1895 msgid "" "This menu pick allows you to view various boost settings and statistics " "associated with the current running Boost configuration." msgstr "" #: /var/www/html/cacti/utilities.php:1899 msgid "RRD Utilities" msgstr "" #: /var/www/html/cacti/utilities.php:1900 msgid "RRDfile Cleaner" msgstr "" #: /var/www/html/cacti/utilities.php:1902 msgid "" "When you delete Data Sources from Cacti, the corresponding RRDfiles are not " "removed automatically. Use this utility to facilitate the removal of these " "old files." msgstr "" #: /var/www/html/cacti/utilities.php:1906 msgid "SNMPAgent Utilities" msgstr "" #: /var/www/html/cacti/utilities.php:1907 msgid "View SNMPAgent Cache" msgstr "Toon SNMPAgent cache" #: /var/www/html/cacti/utilities.php:1909 msgid "This shows all objects being handled by the SNMPAgent." msgstr "" #: /var/www/html/cacti/utilities.php:1911 msgid "Rebuild SNMPAgent Cache" msgstr "SNMPAgent cache opnieuw opbouwen" #: /var/www/html/cacti/utilities.php:1913 msgid "" "The SNMP cache will be cleared and re-generated if you select this option. " "Note that it takes another poller run to restore the SNMP cache completely." msgstr "" #: /var/www/html/cacti/utilities.php:1915 msgid "View SNMPAgent Notification Log" msgstr "Toon SNMP agent notificatie log" #: /var/www/html/cacti/utilities.php:1917 msgid "" "This menu pick allows you to view the latest events SNMPAgent has handled in " "relation to the registered notification receivers." msgstr "" #: /var/www/html/cacti/utilities.php:1921 msgid "Allows Administrators to maintain SNMP notification receivers." msgstr "" #: /var/www/html/cacti/utilities.php:1927 msgid "Cacti System Utilities" msgstr "" #: /var/www/html/cacti/utilities.php:2051 msgid "Overrun Warning" msgstr "" #: /var/www/html/cacti/utilities.php:2052 msgid "Timed Out" msgstr "" #: /var/www/html/cacti/utilities.php:2053 msgid "Other" msgstr "Andere" #: /var/www/html/cacti/utilities.php:2055 msgid "Never Run" msgstr "Nooit gedraaid" #: /var/www/html/cacti/utilities.php:2108 msgid "Cannot open directory" msgstr "Kan de directorie niet openen" #: /var/www/html/cacti/utilities.php:2112 msgid "Directory Does NOT Exist!!" msgstr "Directorie bestaat NIET!!" #: /var/www/html/cacti/utilities.php:2119 msgid "Current Boost Status" msgstr "" #: /var/www/html/cacti/utilities.php:2122 msgid "Boost On-demand Updating:" msgstr "" #: /var/www/html/cacti/utilities.php:2125 msgid "Total Data Sources:" msgstr "" #: /var/www/html/cacti/utilities.php:2129 msgid "Pending Boost Records:" msgstr "" #: /var/www/html/cacti/utilities.php:2132 msgid "Archived Boost Records:" msgstr "" #: /var/www/html/cacti/utilities.php:2135 msgid "Total Boost Records:" msgstr "" #: /var/www/html/cacti/utilities.php:2139 msgid "Boost Storage Statistics" msgstr "" #: /var/www/html/cacti/utilities.php:2143 msgid "Database Engine:" msgstr "" #: /var/www/html/cacti/utilities.php:2147 msgid "Current Boost Table(s) Size:" msgstr "" #: /var/www/html/cacti/utilities.php:2151 msgid "Avg Bytes/Record:" msgstr "Gemiddeld aantal bytes/rij:" #: /var/www/html/cacti/utilities.php:2179 #, php-format msgid "%d Bytes" msgstr "%d Bytes" #: /var/www/html/cacti/utilities.php:2179 msgid "Max Record Length:" msgstr "" #: /var/www/html/cacti/utilities.php:2185 #: /var/www/html/cacti/utilities.php:2186 msgid "Unlimited" msgstr "Onbeperkt" #: /var/www/html/cacti/utilities.php:2191 msgid "Max Allowed Boost Table Size:" msgstr "" #: /var/www/html/cacti/utilities.php:2195 msgid "Estimated Maximum Records:" msgstr "" #: /var/www/html/cacti/utilities.php:2198 msgid "Runtime Statistics" msgstr "Runtime statistieken" #: /var/www/html/cacti/utilities.php:2201 msgid "Last Start Time:" msgstr "Laatste starttijd:" #: /var/www/html/cacti/utilities.php:2204 msgid "Last Run Duration:" msgstr "Laatste run duur:" #: /var/www/html/cacti/utilities.php:2207 #, php-format msgid "%d minutes" msgstr "%d minuten" #: /var/www/html/cacti/utilities.php:2207 #, php-format msgid "%d seconds" msgstr "%d seconden" #: /var/www/html/cacti/utilities.php:2208 #, php-format msgid "%0.2f percent of update frequency)" msgstr "%0.2f procent van update frequentie)" #: /var/www/html/cacti/utilities.php:2215 msgid "RRD Updates:" msgstr "RRD Updates:" #: /var/www/html/cacti/utilities.php:2218 #: /var/www/html/cacti/utilities.php:2224 msgid "MBytes" msgstr "Megabytes" #: /var/www/html/cacti/utilities.php:2218 msgid "Peak Poller Memory:" msgstr "" #: /var/www/html/cacti/utilities.php:2221 msgid "Detailed Runtime Timers:" msgstr "" #: /var/www/html/cacti/utilities.php:2224 msgid "Max Poller Memory Allowed:" msgstr "" #: /var/www/html/cacti/utilities.php:2227 msgid "Run Time Configuration" msgstr "Runtime configuratie" #: /var/www/html/cacti/utilities.php:2230 msgid "Update Frequency:" msgstr "Update frequentie:" #: /var/www/html/cacti/utilities.php:2233 msgid "Next Start Time:" msgstr "Volgende start tijd:" #: /var/www/html/cacti/utilities.php:2236 msgid "Maximum Records:" msgstr "Maximum aantal rijen:" #: /var/www/html/cacti/utilities.php:2236 msgid "Records" msgstr "Rijen" #: /var/www/html/cacti/utilities.php:2239 msgid "Maximum Allowed Runtime:" msgstr "Maximaal toegestande runtime:" #: /var/www/html/cacti/utilities.php:2245 msgid "Image Caching Status:" msgstr "Status van cachen van afbeeldingen:" #: /var/www/html/cacti/utilities.php:2248 msgid "Cache Directory:" msgstr "Gecachete directorie:" #: /var/www/html/cacti/utilities.php:2251 msgid "Cached Files:" msgstr "Gecachete bestanden:" #: /var/www/html/cacti/utilities.php:2254 msgid "Cached Files Size:" msgstr "Omvang gecachete bestanden:" #: /var/www/html/cacti/utilities.php:2350 msgid "SNMPAgent Cache" msgstr "SNMPAgent cache" #: /var/www/html/cacti/utilities.php:2380 msgid "OIDs" msgstr "OID's" #: /var/www/html/cacti/utilities.php:2459 msgid "Column Data" msgstr "Kolomdata" #: /var/www/html/cacti/utilities.php:2459 msgid "Scalar" msgstr "Scalair" #: /var/www/html/cacti/utilities.php:2601 msgid "SNMPAgent Notification Log" msgstr "SNMPAgent notificatie log" #: /var/www/html/cacti/utilities.php:2629 #: /var/www/html/cacti/utilities.php:2714 msgid "Receiver" msgstr "Ontvanger" #: /var/www/html/cacti/utilities.php:2706 msgid "Log Entries" msgstr "Log regels" #: /var/www/html/cacti/utilities.php:2721 #, php-format msgid "Severity Level: %s" msgstr "Gevoeligheidsniveau: %s" #: /var/www/html/cacti/vdef.php:265 msgid "Click 'Continue' to delete the following VDEF." msgid_plural "Click 'Continue' to delete following VDEFs." msgstr[0] "Klik op 'Volgende' om de volgende VDEF te verwijderen." msgstr[1] "Klik op 'Volgende' om de volgende VDEF's te verwijderen." #: /var/www/html/cacti/vdef.php:270 msgid "Delete VDEF" msgid_plural "Delete VDEFs" msgstr[0] "Verwijder VDEF" msgstr[1] "Verwijder VDEF's" #: /var/www/html/cacti/vdef.php:274 msgid "" "Click 'Continue' to duplicate the following VDEF. You can optionally change " "the title format for the new VDEF." msgid_plural "" "Click 'Continue' to duplicate following VDEFs. You can optionally change the " "title format for the new VDEFs." msgstr[0] "" "Klik op volgende om de volgende VDEF te dupliceren. Optioneel kunt u de " "titel opmaak wijzigen voor de nieuwe VDEF." msgstr[1] "" "Klik op volgende om de volgende VDEF's te dupliceren. Optioneel kunt u de " "titel opmaak wijzigen voor de nieuwe VDEF's." #: /var/www/html/cacti/vdef.php:280 msgid "Duplicate VDEF" msgid_plural "Duplicate VDEFs" msgstr[0] "Dupliceer VDEF" msgstr[1] "Dupliceer VDEF's" #: /var/www/html/cacti/vdef.php:283 msgid "You must select at least one VDEF." msgstr "U moet tenminste een VDEF selecteren." #: /var/www/html/cacti/vdef.php:325 msgid "Click 'Continue' to delete the following VDEF's." msgstr "Klik op 'Volgende' om de volgende VDEF's te verwijderen." #: /var/www/html/cacti/vdef.php:383 msgid "VDEF Preview" msgstr "VDEF voorbeeld" #: /var/www/html/cacti/vdef.php:388 #, php-format msgid "VDEF Items [edit: %s]" msgstr "VDEF items [wijzig: %s]" #: /var/www/html/cacti/vdef.php:390 msgid "VDEF Items [new]" msgstr "VDEF items [nieuw]" #: /var/www/html/cacti/vdef.php:408 msgid "VDEF Item Type" msgstr "VDEF item type" #: /var/www/html/cacti/vdef.php:409 msgid "Choose what type of VDEF item this is." msgstr "Kies wat voor type VDEF item dit is." #: /var/www/html/cacti/vdef.php:415 msgid "VDEF Item Value" msgstr "VDEF item waarde" #: /var/www/html/cacti/vdef.php:416 msgid "Enter a value for this VDEF item." msgstr "Voer een waarde in voor dit VDEF item." #: /var/www/html/cacti/vdef.php:541 #, php-format msgid "VDEFs [edit: %s]" msgstr "VDEF's [wijzig: %s]" #: /var/www/html/cacti/vdef.php:543 msgid "VDEFs [new]" msgstr "VDEF's [nieuw]" #: /var/www/html/cacti/vdef.php:612 /var/www/html/cacti/vdef.php:652 msgid "Delete VDEF Item" msgstr "Verwijder VDEF item" #: /var/www/html/cacti/vdef.php:863 msgid "The name of this VDEF." msgstr "De naam van deze VDEF." #: /var/www/html/cacti/vdef.php:863 msgid "VDEF Name" msgstr "VDEF naam" #: /var/www/html/cacti/vdef.php:864 msgid "" "VDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" "VDEF's die in gebruik zijn kunnen niet worden verwijderd. In gebruik wordt " "gedefinieerd als gekoppeld aan een grafiek of grafiektemplate." #: /var/www/html/cacti/vdef.php:865 msgid "The number of Graphs using this VDEF." msgstr "Het aantal grafieken dat deze VDEF gebruiken." #: /var/www/html/cacti/vdef.php:866 msgid "The number of Graphs Templates using this VDEF." msgstr "Het aantal grafiektemplates die deze VDEF gebruiken." #: /var/www/html/cacti/vdef.php:889 msgid "No VDEFs" msgstr "Geen VDEF's" #~ msgid "Created 1 Graph from %s" #~ msgstr "1 Grafiek gemaakt van %s" #~ msgid "The SNMP v3 Security Level." #~ msgstr "Het SNMPv3 beveiligingsniveau." #~ msgid "Username (v3)" #~ msgstr "Gebruikersnaam (v3)" #~ msgid "Password (v3)" #~ msgstr "Wachtwoord (v3)" #~ msgid "Use Per-Data Source Value (Ignore this Value)" #~ msgstr "Gebruik per-data bron waarde (negeer deze waarde)" #~ msgid "Use Per-Graph Value (Ignore this Value)" #~ msgstr "Gebruik per-grafiek waarde (negeer deze waarde)" #~ msgid "MD5 (default)" #~ msgstr "MD5 (standaard)" #~ msgid "DES (default)" #~ msgstr "DES (standaard)" #~ msgid "" #~ "WARNING - If you are upgrading from a previous version please close all " #~ "Cacti browser sessions and clear cache before continuing" #~ msgstr "" #~ "WAARSCHUWING - Als u upgrade van een vorige versie, sluit dan alle Cacti " #~ "browserschermen en schoon de lokale cache op voordat u doorgaat" #~ msgctxt "Dialog: go to the next page" #~ msgid "Next" #~ msgstr "Volgende" #~ msgid "ERROR: RRD file %s not writeable" #~ msgstr "FOUT: RRD bestand %s is niet schrijfbaar" #~ msgid "" #~ "This is a unique string that will be matched to a devices sysDescr string " #~ "to pair it to this Discovery Template. Any Perl regular expression can " #~ "be used in addition to any SQL Where expression." #~ msgstr "" #~ "Dit is een unieke waarde dat gekoppeld wordt aan de sysDescr waarde van " #~ "een apparaat om het te koppelen aan dit scantemplate. Iedere Perl " #~ "reguliere expressie kan hier worden gebruikt evenals ieder SQL Where " #~ "statement." #~ msgid "Writable" #~ msgstr "Schrijfbaar" #~ msgid "Not Writable" #~ msgstr "Niet schrijfbaar" #~ msgid "PHP version does not support IPv6" #~ msgstr "PHP versie ondersteund geen IPv6" #~ msgid "PHP binary does not support IPv6" #~ msgstr "PHP binary ondersteund geen IPv6" #~ msgid "Added Data Source(s) to RRDfile: %s" #~ msgstr "Aantal data bron(nen) toegevoegd aan RRD bestand: %s" #~ msgid "Deleted rra(s) from rrd file: %s" #~ msgstr "Verwijderd rra(s) van rrd bestand: %s" #~ msgid "Effective Timespan" #~ msgstr "Effectieve tijdperiode" #~ msgid "Press Ctrl+Shift+X to Clear Filter" #~ msgstr "Druk op Ctrl+Shift+X om het filter te legen" #~ msgid "Purge cacti.log" #~ msgstr "Cacti.log legen" #~ msgid "File to show" #~ msgstr "Toon bestand" #~ msgid "Message Type" #~ msgstr "Bericht type" #~ msgid "Cacti Log" #~ msgstr "Cacti log" #~ msgid "%s to Export" #~ msgstr "%s om te exporteren" #~ msgid "%d Row]" #~ msgid_plural "%d Rows]" #~ msgstr[0] "%d rij]" #~ msgstr[1] "%d rijen]" #~ msgid "You have three Cacti installation options to choose from:" #~ msgstr "U heeft drie Cacti installatie opties om uit te kiezen:" #~ msgid "" #~ "You Cacti database has been upgraded. You can view the results below." #~ msgstr "" #~ "Uw Cacti database is bijgewerkt. U kunt hieronder de resultaten bekijken." #~ msgid "[Not Ran]" #~ msgstr "[Niet gedraaid]" #~ msgid "edit" #~ msgstr "wijzig" #~ msgid "new" #~ msgstr "nieuw" #~ msgid "LINE LIMIT OF 1000 LINES REACHED!!" #~ msgstr "LIMIT VAN 1000 REGELS BEREIKT!!" #~ msgid "IP Address:" #~ msgstr "IP adres:" #~ msgid "Action:" #~ msgstr "Actie:" #~ msgid "User Agent" #~ msgstr "Browser" #~ msgid "Start" #~ msgstr "Start" #~ msgid "Set" #~ msgstr "Set" #~ msgid "%d Graph" #~ msgstr "%d Grafiek" #~ msgid "%d Graphs" #~ msgstr "%d Grafieken" #~ msgid "UDP/TCP Destination Port" #~ msgstr "UDP/TCP bestemming poort" #~ msgid "Destination IP" #~ msgstr "Doel IP adres" #~ msgid "Source IP" #~ msgstr "Bron IP adres" #~ msgid "Source/Destination IP" #~ msgstr "Bron/doel IP adres" #~ msgid "IP Protocol" #~ msgstr "IP protocol" #~ msgid "Select One" #~ msgstr "Selecteer een" #~ msgid "ICMP" #~ msgstr "ICMP" #~ msgid "IGP" #~ msgstr "IGP" #~ msgid "BNA" #~ msgstr "BNA" #~ msgid "No Limit" #~ msgstr "Geen limiet" #~ msgid "Protocol" #~ msgstr "Protocol" #~ msgid "Start Time" #~ msgstr "Starttijd" #~ msgid "Protocols" #~ msgstr "Protocollen" #~ msgid "Statistics:" #~ msgstr "Statistieken:" #~ msgid "Sort Field:" #~ msgstr "Sorteerveld:" #~ msgid "Defaults" #~ msgstr "Standaardwaarden" #~ msgid "Save As" #~ msgstr "Opslaan als" #~ msgid "0 (Disabled)" #~ msgstr "0 (Uitgeschakeld)" #~ msgid "Directory" #~ msgstr "Directorie" #~ msgid "Expiration" #~ msgstr "Vervaldatum" #~ msgid "Device: %s" #~ msgstr "Apparaat: %s" #~ msgid "No Devices" #~ msgstr "Geen apparaten" #~ msgid "Every %d Weeks, 2" #~ msgstr "Iedere %d weken, 2" #~ msgid "Every Month" #~ msgstr "Iedere maand" #~ msgid "Filter Name" #~ msgstr "Filternaam" #~ msgid "Email Addresses" #~ msgstr "E-mailadressen" #~ msgid "Show/Hide" #~ msgstr "Toon/verberg" #~ msgid "Filters" #~ msgstr "Filters" #~ msgid "(edit)" #~ msgstr "(wijzig)" #~ msgid "(actions)" #~ msgstr "(Acties)" #~ msgid "Alternate DNS Server" #~ msgstr "Alternatieve DNS server" #~ msgid "Export Now" #~ msgstr "Exporteren" #~ msgid "Hourly" #~ msgstr "Ieder uur" #~ msgid "Sites Selected" #~ msgstr "Geselecteerde locaties" #~ msgid "All Sites Selected" #~ msgstr "Alle locaties geselecteerd" #~ msgid "Exports" #~ msgstr "Exports" #~ msgid "Export Name" #~ msgstr "Exportnaam" #~ msgid "All Sites" #~ msgstr "Alle locaties" #~ msgid "Sec" #~ msgstr "Sec" #~ msgid "Export Timing" #~ msgstr "Export timing" #~ msgid "Remote Port" #~ msgstr "Verwijder poort" #~ msgid "Edit Device" #~ msgstr "Wijzig apparaat" #~ msgid "Total CPU [h]:" #~ msgstr "Totaal CPU [h]:" #~ msgid "Total (MB)" #~ msgstr "Totaal (MB)" #~ msgid "Uptime(d:h:m)" #~ msgstr "Uptime (d:h:m)" #~ msgid "Total Mem" #~ msgstr "Totaal geheugen" #~ msgid "Total Swap" #~ msgstr "Totaal swap" #~ msgid "View Storage" #~ msgstr "Toon opslag" #~ msgid "No Processes" #~ msgstr "Geen processen" #~ msgid "You must select at least one Host Type." #~ msgstr "U moet tenminste een host type selecteren." #~ msgid "OS Version" #~ msgstr "OS Versie" #~ msgid "MAC Address" #~ msgstr "MAC-adres" #~ msgid "Show Device Details" #~ msgstr "Toon apparaateigenschappen" #~ msgid "You must select at least one device type." #~ msgstr "U moet tenminste een apparaattype selecteren." #~ msgid "Change Device Port Values" #~ msgstr "Wijzig apparaat poort" #~ msgid "Last Duration" #~ msgstr "Laatste duur" #~ msgid "Mac Address" #~ msgstr "MAC-adres" #~ msgid "First Seen" #~ msgstr "Eerste keer gezien" #~ msgid "You must select at least one site." #~ msgstr "U moet tenminste een locatie selecteren." #~ msgid "Total IP's" #~ msgstr "Totaal aantal IP’s" #~ msgid "Total Devices" #~ msgstr "Totaal aantal apparaten" #~ msgid "Total Trunks" #~ msgstr "Totaal aantal trunks" #~ msgid "Max OIDs" #~ msgstr "Maximum aantal OID’s" #~ msgid "Options" #~ msgstr "Opties" #~ msgid "Primary DNS Server:" #~ msgstr "Primaire DNS server:" #~ msgid "Secondary DNS Server:" #~ msgstr "Alternatieve DNS server:" #~ msgid "" #~ "Are you sure you want to delete all the Port to MAC to IP results from " #~ "the system?" #~ msgstr "" #~ "Weet u zeker dat u alle poort naar MAC adres naar IP resultaten wilt " #~ "verwijderen van het systeem?" #~ msgid "" #~ "Are you sure you want to delete all the Aggregated Port to MAC to IP " #~ "results from the system?" #~ msgstr "" #~ "Weet u zeker dat u alle geaggregeerde poort naar MAC adres naar IP " #~ "resultaten wilt verwijderen uit het systeem?" #~ msgid "Corporation" #~ msgstr "Bedrijf" #~ msgid "Address" #~ msgstr "Adres" #~ msgid "ED MAC Address" #~ msgstr "ED MACadres" #~ msgid "Switch Device" #~ msgstr "Wissel apparaat" #~ msgid "Total VLAN's" #~ msgstr "Totaal VLAN’s" #~ msgid "View MAC Addresses" #~ msgstr "Toon MAC adressen" #~ msgid "Show Totals" #~ msgstr "Toon totalen" #~ msgid "IP Address Ranges" #~ msgstr "IP adres bereik" #~ msgid "IP Range" #~ msgstr "IP reeks" #~ msgid "Current IP Addresses" #~ msgstr "Huidig IP adres" #~ msgid "Maximum IP Addresses" #~ msgstr "Maximum aantal IP adressen" #~ msgid "Are you sure you want to Authorize the following MAC Addresses?" #~ msgstr "Weet u zeker dat u het volgende MAC adres wilt autoriseren?" #~ msgid "Are you sure you want to Revoke the following MAC Addresses?" #~ msgstr "Weet u zeker dat u het volgende MAC adres wilt intrekken?" #~ msgid "You must select at least one MAC Address." #~ msgstr "U moet tenminste een MAC adres selecteren." #~ msgid "You must select at least one Row." #~ msgstr "U moet tenminste een regel selecteren." #~ msgid "" #~ "Are you sure you want to Delete the following rows from Aggregated table?" #~ msgstr "" #~ "Weet u zeker dat u de volgende rijen van de geaggregeerde tabel wilt " #~ "verwijderen?" #~ msgid "MAC Addresses" #~ msgstr "MAC adressen" #~ msgid "Port Name" #~ msgstr "Poortnaam" #~ msgid "VLAN Name" #~ msgstr "VLAN naam" #~ msgid "Aggregated" #~ msgstr "Geaggregeerd" #~ msgid "Authorized" #~ msgstr "Geautoriseerd" #~ msgid "Portname" #~ msgstr "Poortnaam" #~ msgid "Edit Site" #~ msgstr "Wijzig locatie" #~ msgid "View IP Addresses" #~ msgstr "Toon IP adressen" #~ msgid "Colon [:]" #~ msgstr "Dubbele punt [:]" #~ msgid "DNS Settings" #~ msgstr "DNS instellingen" #~ msgid "MacAuth Report Email Addresses" #~ msgstr "MacAuth Rapportage e-mailadressen" #~ msgid "Communities" #~ msgstr "Communities" #~ msgid "(Import)" #~ msgstr "(Importeren)" #~ msgid "Contains" #~ msgstr "Bevat" #~ msgid "Full" #~ msgstr "Volledig" #~ msgid "Sync MacTrack Device to Cacti Device" #~ msgstr "Synchroniseer apparaten naar apparaattemplate(s" #~ msgid "Every %d Hour" #~ msgstr "Iedere %d uren" #~ msgid "Fill in the name for the vendor of this device type." #~ msgstr "Voer de naam van de fabrikant in voor dit apparaattype." #~ msgid "" #~ "Specified the number of OID's that can be obtained in a single SNMP Get " #~ "request." #~ msgstr "" #~ "Specificeer het aantal OID’s dat in een enkele SNMP GET request mag " #~ "worden opgehaald." #~ msgid "Fill in the fully qualified hostname for this device." #~ msgstr "Voer de volledige hostname in voor dit apparaat." #~ msgid "SSH" #~ msgstr "SSH" #~ msgid "General Site Settings" #~ msgstr "Algemene locatie instellingen" #~ msgid "Not Defined" #~ msgstr "Niet gedefinieerd" #~ msgid "Device(s)" #~ msgstr "Appara(a)t(en)" #~ msgid "Total Bytes" #~ msgstr "Totaal bytes" #~ msgid "Total Packets" #~ msgstr "Totaal pakketten" #~ msgid "Active Users" #~ msgstr "Actieve gebruikers" #~ msgid "Total In" #~ msgstr "Totaal inkomend" #~ msgid "Total Out" #~ msgstr "Totaal uitgaand" #~ msgid "Total Disk" #~ msgstr "Totaal schijf" #~ msgid "View Users" #~ msgstr "Toon gebruikers" #~ msgid "You must select at least one User." #~ msgstr "U moet tenminste een gebruiker selecteren." #~ msgid "Refresh the Device List" #~ msgstr "Vernieuw apparatenlijst" #~ msgid "Last Refresh: %s" #~ msgstr "Laatste update: %s" #~ msgid "Status:" #~ msgstr "Status:" #~ msgid "IP/Hostname:" #~ msgstr "IP/Hostname:" #~ msgid "Time In State:" #~ msgstr "Tijd in staat:" #~ msgid "Availability:" #~ msgstr "Beschikbaarheid:" #~ msgid "Agent Uptime:" #~ msgstr "Agent uptime:" #~ msgid "Device Monitoring Settings" #~ msgstr "Apparaat monitoring instellingen" #~ msgid "Enable Password" #~ msgstr "Activeer wachtwoord" #~ msgid "File: %s/%s" #~ msgstr "Bestand: %s/%s" #~ msgid "Changed By" #~ msgstr "Gewijzigd door" #~ msgid "This is the IP Address used to communicate with the device." #~ msgstr "" #~ "Dit is het IP adres dat gebruikt wordt om met het apparaat te " #~ "communiceren." #~ msgid "Router: [edit: %s]" #~ msgstr "Router: [wijzig: %s]" #~ msgid "Router: [new]" #~ msgstr "Router: [nieuw]" #~ msgid "Last Backup" #~ msgstr "Laatste backup" #~ msgid "Current" #~ msgstr "Huidig" #~ msgid "Password Prompt" #~ msgstr "Wachtwoord melding" #~ msgid "Show Version" #~ msgstr "Toon versie" #~ msgid "Edit Device Type" #~ msgstr "Wijzig apparaattype" #~ msgid "From Address" #~ msgstr "Afzender e-mailadres" #~ msgid "%d Per Day" #~ msgstr "%d Per dag" #~ msgid "(Actions)" #~ msgstr "(Acties)" #~ msgid "Program" #~ msgstr "Programma" #~ msgid "Time Range" #~ msgstr "Tijdperiode" #~ msgid "Select Device(s)" #~ msgstr "Selecteer appara(a)t(en)" #~ msgid "All Devices Selected" #~ msgstr "Alle apparaten geselecteerd" #~ msgid "Save Default Settings" #~ msgstr "Standaardinstellingen opslaan" #~ msgid "Show All Devices" #~ msgstr "Toon alle apparaten" #~ msgid "All Programs" #~ msgstr "Alle programma’s" #~ msgid "Not Set" #~ msgstr "Niet ingesteld" #~ msgid "Month" #~ msgstr "Maand" #~ msgid "Search String" #~ msgstr "Zoekterm" #~ msgid "Name:" #~ msgstr "Naam:" #~ msgid "Enabled?" #~ msgstr "Ingeschakeld?" #~ msgid "Deletion" #~ msgstr "Verwijdering" #~ msgid "Click 'Continue' to Delete the following Syslog Report(s)." #~ msgstr "Klik op 'Volgende' om de volgende Syslog rapportage te verwijderen." #~ msgid "Click 'Continue' to Disable the following Syslog Report(s)." #~ msgstr "" #~ "Klik op 'Volgende' om de volgende Syslog rapportage uit te schakelen." #~ msgid "Click 'Continue' to Enable the following Syslog Report(s)." #~ msgstr "" #~ "Klik op 'Volgende' om de volgende Syslog rapportage in te schakelen." #~ msgid "Report Email Addresses" #~ msgstr "E-mailadressen rapportage" #~ msgid "%0.1f Hours" #~ msgstr "%0.1f Uren" #~ msgid "Every Polling" #~ msgstr "Iedere poller" #~ msgid "Every %d Pollings" #~ msgstr "Iedere %d pollers" #~ msgid "Exact Value" #~ msgstr "Exacte waarde" #~ msgid "Default Status" #~ msgstr "Standaard status" #~ msgid "Enter a name for this Notification List." #~ msgstr "Voer een naam in voor deze berichtenlijst." #~ msgid "Associated Lists" #~ msgstr "Gekoppelde lijsten" #~ msgid "Current List Only" #~ msgstr "Alleen de huidige lijst" #~ msgid "Select Users" #~ msgstr "Geselecteerde gebruikers" #~ msgid "Current List" #~ msgstr "Huidige lijst" #~ msgid "Log Only" #~ msgstr "Uitsluitend loggen" #~ msgid "List Name" #~ msgstr "Lijstnaam" #~ msgid "Emails" #~ msgstr "E-mails" #~ msgid "Are you sure you wish to create Thresholds for these Data Sources?" #~ msgstr "Weet u zeker dat u drempelwaarden voor deze data bron wilt maken?" #~ msgid "Apply Filters" #~ msgstr "Filter toepassen" #~ msgid "Return to Defaults" #~ msgstr "Standaardinstellingen" #~ msgid "Last:" #~ msgstr "Laatste:" #~ msgid "Data Sources: %s" #~ msgstr "Data bronnen: %s" #~ msgid "Template Settings" #~ msgstr "Template instellingen" #~ msgid "Breach Duration" #~ msgstr "Duur breuk" #~ msgid "Data Manipulation" #~ msgstr "Data manipulatie" #~ msgid "Data Type" #~ msgstr "Data type" #~ msgid "Users Selected" #~ msgstr "Geselecteerde gebruikers" #~ msgid "All Users Selected" #~ msgstr "Alle gebruikers geselecteerd" #~ msgid "Time:" #~ msgstr "Tijd:" #~ msgid "Disable Threshold" #~ msgstr "Drempelwaarde uitschakelen" #~ msgid "View Graph" #~ msgstr "Toon grafiek" #~ msgid "The number of Graphs for this Device" #~ msgstr "Het aantal grafieken voor dit apparaat" #~ msgid "The number of Data Sources for this Device" #~ msgstr "Het aantal data bronnen van dit apparaat" #~ msgid "The official hostname for this Device" #~ msgstr "De officiële hostname van dit apparaat." #~ msgid "Measured Value" #~ msgstr "Gemeten waarde" #~ msgid "Data Field" #~ msgstr "Data veld" #~ msgid "Percent Datasource" #~ msgstr "Aanwezige data bron" #~ msgid "%d Seconds (Average)" #~ msgstr "%d Seconden (gemiddeld)" #~ msgid "Imported" #~ msgstr "Geimporteerd" #~ msgid "Updated" #~ msgstr "Bijgewerkt" #~ msgid "Please select a Device" #~ msgstr "Selecteer alstublieft een apparaat" #~ msgid "Checks" #~ msgstr "Controles" #~ msgid "Enable Site" #~ msgstr "Activeer locatie" #~ msgid "Disable Site" #~ msgstr "Locatie uitschakelen" #~ msgid "No Servers Found" #~ msgstr "Geen servers gevonden" #~ msgid "Query [edit: %s]" #~ msgstr "Query [wijzig: %s]" #~ msgid "Query [new]" #~ msgstr "Query [nieuw]" #~ msgid "Requires Authentication" #~ msgstr "Authenticatie vereist" #~ msgid "Time Out" #~ msgstr "Timeout" #~ msgid "No Users Selected" #~ msgstr "Geen gebruikers geselecteerd" #~ msgid "Master Server" #~ msgstr "Master server" #~ msgid "Display Name of this server" #~ msgstr "De naam van deze server" #~ msgid "WMI Settings" #~ msgstr "WMI instellingen" #~ msgid "Remove WMI Query" #~ msgstr "Verwijder WMI query" #~ msgid "You must select at least one account." #~ msgstr "U moet tenminste een account selecteren." #~ msgid "Account [edit: %s]" #~ msgstr "Account [wijzig: %s]" #~ msgid "No Accounts Found" #~ msgstr "Geen accounts gevonden" #~ msgid "Query" #~ msgstr "Query" #~ msgid "Click 'Continue' to Delete the following WMI Queries." #~ msgstr "Klik op ‘Volgende’ om de volgende WMI query te verwijderen." #~ msgid "You must select at least one WMI Query." #~ msgstr "U moet op zijn minst een WMI query selecteren." #~ msgid "WQL Query" #~ msgstr "WQL query" #~ msgid "Command" #~ msgstr "Commando" #~ msgid "Uptime Goes Backwards" #~ msgstr "Uptime gaat achteruit" cacti-1.1.38/locales/po/chinese_china_simplified.po0000664000175000017500000221505013264740213021647 0ustar tromantroman# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: Cacti Chinese Language File\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-02-11 12:22-0500\n" "PO-Revision-Date: 2018-02-26 14:50+0800\n" "Last-Translator: SFQAS\n" "Language-Team: sfqas \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-Language: Chinese\n" "X-Poedit-Country: CHINA\n" #: ../about.php:29 #: ../lib/functions.php:2424 msgid "About Cacti" msgstr "关于Cacti" #: ../about.php:35 #: ../index.php:73 #: ../logout.php:77 #, php-format msgid "Version %s" msgstr "版本 %s" #: ../about.php:42 msgid "Cacti is designed to be a complete graphing solution based on the RRDtool's framework. Its goal is to make a network administrator's job easier by taking care of all the necessary details necessary to create meaningful graphs." msgstr "Cacti被设计æˆåŸºäºŽRRDtool框架的完整的图形解决方案。 其目标是通过照顾创建有æ„义的图形所需的所有必è¦ç»†èŠ‚ï¼Œä½¿ç½‘ç»œç®¡ç†å‘˜çš„工作更轻æ¾ã€‚" #: ../about.php:44 #, php-format msgid "Please see the official %sCacti website%s for information, support, and updates." msgstr "请查看%sCacti官方网站%s获å–ä¿¡æ¯ï¼Œæ”¯æŒå’Œæ›´æ–°ã€‚" #: ../about.php:46 msgid "Cacti Developers" msgstr "Cacti å¼€å‘者" #: ../about.php:58 msgid "Thanks" msgstr "谢谢" #: ../about.php:61 #, php-format msgid "A very special thanks to %sTobi Oetiker%s, the creator of %sRRDtool%s and the very popular %sMRTG%s." msgstr "éžå¸¸ç‰¹åˆ«æ„Ÿè°¢%s Tobi Oetiker%s,%sRRDtool%s的创建者和éžå¸¸å—欢迎的%sMRTG%s。" #: ../about.php:64 msgid "The users of Cacti" msgstr "Cacti的用户" #: ../about.php:65 msgid "Especially anyone who has taken the time to create an issue report, or otherwise help fix a Cacti related problems. Also to anyone who has contributed to supporting Cacti." msgstr "特别是è°èŠ±äº†æ—¶é—´åˆ›é€ ä¸€ä¸ªé—®é¢˜æŠ¥å‘Šï¼Œæˆ–ä»¥å…¶ä»–æ–¹å¼å¸®åŠ©è§£å†³Cacti相关的问题。 也对任何支æŒCactiåšå‡ºè´¡çŒ®çš„人。" #: ../about.php:70 msgid "License" msgstr "授æƒ" #: ../about.php:72 msgid "Cacti is licensed under the GNU GPL:" msgstr "Cactiæ ¹æ®GNU GPL许å¯ï¼š" #: ../about.php:74 msgid "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version." msgstr "è¿™ä¸ªç¨‹åºæ˜¯å…费的软件; 您å¯ä»¥æ ¹æ®è‡ªç”±è½¯ä»¶åŸºé‡‘会å‘布的GNUé€šç”¨å…¬å…±è®¸å¯æ¡æ¬¾é‡æ–°åˆ†å‘å’Œ/或修改它; 版本2的许å¯è¯ï¼Œæˆ–è€…ï¼ˆæ ¹æ®æ‚¨çš„选择)任何更新的版本。" #: ../about.php:76 msgid "This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details." msgstr "è¿™ä¸ªç¨‹åºæ˜¯åˆ†å‘的,希望它会有用,但没有任何的ä¿è¯; 甚至没有对适销性或特定用途的适用性的暗示ä¿è¯ã€‚ 有关更多详细信æ¯ï¼Œè¯·å‚阅GNU通用公共许å¯è¯ã€‚" #: ../aggregate_graphs.php:40 #: ../aggregate_templates.php:29 #: ../automation_graph_rules.php:32 #: ../automation_networks.php:31 #: ../automation_snmp.php:29 #: ../automation_snmp.php:727 #: ../automation_templates.php:29 #: ../automation_tree_rules.php:32 #: ../cdef.php:29 #: ../cdef.php:619 #: ../color.php:28 #: ../color_templates.php:28 #: ../color_templates.php:122 #: ../data_input.php:29 #: ../data_input.php:490 #: ../data_input.php:528 #: ../data_queries.php:30 #: ../data_queries.php:638 #: ../data_queries.php:736 #: ../data_queries.php:950 #: ../data_source_profiles.php:29 #: ../data_source_profiles.php:513 #: ../data_sources.php:35 #: ../data_sources.php:942 #: ../data_templates.php:33 #: ../data_templates.php:571 #: ../gprint_presets.php:28 #: ../graph_templates.php:33 #: ../graph_templates.php:440 #: ../graphs.php:44 #: ../host.php:38 #: ../host_templates.php:30 #: ../host_templates.php:485 #: ../host_templates.php:542 #: ../include/global_arrays.php:1234 #: ../lib/api_automation.php:1246 #: ../lib/api_automation.php:1309 #: ../lib/api_automation.php:1373 #: ../lib/html.php:970 #: ../lib/html_form.php:1096 #: ../lib/html_reports.php:1291 #: ../links.php:28 #: ../managers.php:28 #: ../pollers.php:29 #: ../sites.php:28 #: ../tree.php:1051 #: ../tree.php:1204 #: ../tree.php:1264 #: ../user_admin.php:28 #: ../user_domains.php:29 #: ../user_group_admin.php:30 #: ../vdef.php:29 msgid "Delete" msgstr "删除" #: ../aggregate_graphs.php:41 msgid "Migrate Aggregate to use a Template" msgstr "è¿ç§»èšåˆä»¥ä½¿ç”¨æ¨¡æ¿" #: ../aggregate_graphs.php:42 msgid "Create New Aggregate from Aggregates" msgstr "从èšåˆåˆ›å»ºæ–°èšåˆ" #: ../aggregate_graphs.php:46 msgid "Associate with Aggregate" msgstr "与Aggregateå…³è”" #: ../aggregate_graphs.php:47 msgid "Disassociate with Aggregate" msgstr "与èšåˆè§£é™¤å…³è”" #: ../aggregate_graphs.php:80 #: ../graphs.php:128 #, php-format msgid "Place on a Tree (%s)" msgstr "放在树上 (%s)" #: ../aggregate_graphs.php:318 msgid "Click 'Continue' to delete the following Aggregate Graph(s)." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹èšåˆå›¾è¡¨ã€‚" #: ../aggregate_graphs.php:323 #: ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 #: ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 #: ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 #: ../automation_devices.php:199 #: ../automation_graph_rules.php:284 #: ../automation_networks.php:358 #: ../automation_snmp.php:253 #: ../automation_snmp.php:356 #: ../automation_templates.php:195 #: ../automation_tree_rules.php:286 #: ../cdef.php:282 #: ../cdef.php:292 #: ../cdef.php:344 #: ../color.php:192 #: ../color_templates.php:232 #: ../color_templates.php:242 #: ../color_templates_items.php:280 #: ../data_input.php:218 #: ../data_input.php:266 #: ../data_queries.php:322 #: ../data_queries.php:425 #: ../data_source_profiles.php:266 #: ../data_source_profiles.php:276 #: ../data_source_profiles.php:324 #: ../data_sources.php:468 #: ../data_sources.php:478 #: ../data_sources.php:487 #: ../data_sources.php:496 #: ../data_sources.php:505 #: ../data_sources.php:511 #: ../data_templates.php:358 #: ../data_templates.php:368 #: ../data_templates.php:384 #: ../gprint_presets.php:153 #: ../graph_templates.php:317 #: ../graph_templates.php:327 #: ../graph_templates.php:347 #: ../graph_templates.php:356 #: ../graphs.php:818 #: ../graphs.php:845 #: ../graphs.php:856 #: ../graphs.php:867 #: ../graphs.php:882 #: ../graphs.php:905 #: ../graphs.php:1029 #: ../graphs.php:1072 #: ../graphs.php:1094 #: ../graphs.php:1102 #: ../graphs.php:1535 #: ../host.php:381 #: ../host.php:390 #: ../host.php:432 #: ../host.php:441 #: ../host.php:450 #: ../host.php:464 #: ../host.php:478 #: ../host.php:487 #: ../host.php:495 #: ../host_templates.php:261 #: ../host_templates.php:275 #: ../host_templates.php:286 #: ../host_templates.php:334 #: ../host_templates.php:394 #: ../lib/clog_webapi.php:129 #: ../lib/html_form.php:1095 #: ../lib/html_form.php:1107 #: ../lib/html_form.php:1118 #: ../lib/html_utility.php:198 #: ../links.php:196 #: ../links.php:205 #: ../links.php:214 #: ../managers.php:1012 #: ../managers.php:1069 #: ../pollers.php:288 #: ../pollers.php:297 #: ../pollers.php:306 #: ../pollers.php:315 #: ../sites.php:280 #: ../tree.php:490 #: ../tree.php:499 #: ../tree.php:508 #: ../user_admin.php:350 #: ../user_admin.php:390 #: ../user_admin.php:401 #: ../user_admin.php:412 #: ../user_admin.php:434 #: ../user_domains.php:227 #: ../user_domains.php:236 #: ../user_domains.php:245 #: ../user_domains.php:254 #: ../user_group_admin.php:446 #: ../user_group_admin.php:465 #: ../user_group_admin.php:476 #: ../user_group_admin.php:487 #: ../vdef.php:270 #: ../vdef.php:280 #: ../vdef.php:332 msgid "Cancel" msgstr "å–æ¶ˆ" #: ../aggregate_graphs.php:323 #: ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 #: ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 #: ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 #: ../automation_devices.php:199 #: ../automation_graph_rules.php:284 #: ../automation_networks.php:350 #: ../automation_snmp.php:228 #: ../automation_snmp.php:357 #: ../automation_templates.php:195 #: ../automation_tree_rules.php:286 #: ../cdef.php:282 #: ../cdef.php:292 #: ../cdef.php:345 #: ../color.php:192 #: ../color_templates.php:232 #: ../color_templates.php:242 #: ../color_templates_items.php:281 #: ../data_input.php:218 #: ../data_input.php:267 #: ../data_queries.php:322 #: ../data_queries.php:426 #: ../data_source_profiles.php:266 #: ../data_source_profiles.php:276 #: ../data_source_profiles.php:325 #: ../data_sources.php:468 #: ../data_sources.php:478 #: ../data_sources.php:487 #: ../data_sources.php:496 #: ../data_sources.php:505 #: ../data_sources.php:511 #: ../data_templates.php:358 #: ../data_templates.php:368 #: ../data_templates.php:384 #: ../gprint_presets.php:153 #: ../graph_templates.php:317 #: ../graph_templates.php:327 #: ../graph_templates.php:347 #: ../graph_templates.php:356 #: ../graphs.php:818 #: ../graphs.php:845 #: ../graphs.php:856 #: ../graphs.php:867 #: ../graphs.php:882 #: ../graphs.php:905 #: ../graphs.php:1029 #: ../graphs.php:1072 #: ../graphs.php:1094 #: ../graphs.php:1102 #: ../host.php:381 #: ../host.php:390 #: ../host.php:432 #: ../host.php:441 #: ../host.php:450 #: ../host.php:464 #: ../host.php:478 #: ../host.php:487 #: ../host.php:495 #: ../host_templates.php:261 #: ../host_templates.php:275 #: ../host_templates.php:286 #: ../host_templates.php:335 #: ../host_templates.php:395 #: ../lib/clog_webapi.php:130 #: ../lib/html_reports.php:643 #: ../lib/html_utility.php:198 #: ../links.php:196 #: ../links.php:205 #: ../links.php:214 #: ../managers.php:1012 #: ../managers.php:1069 #: ../pollers.php:288 #: ../pollers.php:297 #: ../pollers.php:306 #: ../pollers.php:315 #: ../sites.php:280 #: ../tree.php:490 #: ../tree.php:499 #: ../tree.php:508 #: ../user_admin.php:350 #: ../user_admin.php:390 #: ../user_admin.php:401 #: ../user_admin.php:412 #: ../user_admin.php:434 #: ../user_domains.php:227 #: ../user_domains.php:236 #: ../user_domains.php:245 #: ../user_domains.php:254 #: ../user_group_admin.php:446 #: ../user_group_admin.php:465 #: ../user_group_admin.php:476 #: ../user_group_admin.php:487 #: ../vdef.php:270 #: ../vdef.php:280 #: ../vdef.php:333 msgid "Continue" msgstr "ç»§ç»­" #: ../aggregate_graphs.php:323 #: ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 #: ../graphs.php:818 msgid "Delete Graph(s)" msgstr "删除图表" #: ../aggregate_graphs.php:349 msgid "The selected Aggregate Graphs represent elements from more than one Graph Template." msgstr "选定的èšåˆå›¾è¡¨ç¤ºæ¥è‡ªå¤šä¸ªå›¾è¡¨æ¨¡æ¿çš„元素。" #: ../aggregate_graphs.php:350 msgid "In order to migrate the Aggregate Graphs below to a Template based Aggregate, they must only be using one Graph Template. Please press 'Return' and then select only Aggregate Graph that utilize the same Graph Template." msgstr "为了将下é¢çš„èšåˆå›¾è¿ç§»åˆ°åŸºäºŽæ¨¡æ¿çš„èšåˆï¼Œä»–们åªèƒ½ä½¿ç”¨ä¸€ä¸ªå›¾æ¨¡æ¿ã€‚ 请按“返回â€ï¼Œç„¶åŽé€‰æ‹©ä»…使用相åŒå›¾å½¢æ¨¡æ¿çš„èšåˆå›¾ã€‚" #: ../aggregate_graphs.php:355 #: ../aggregate_graphs.php:395 #: ../aggregate_graphs.php:442 #: ../aggregate_templates.php:316 #: ../auth_changepassword.php:308 #: ../automation_devices.php:203 #: ../automation_graph_rules.php:282 #: ../automation_networks.php:359 #: ../automation_snmp.php:253 #: ../automation_templates.php:199 #: ../automation_tree_rules.php:284 #: ../cdef.php:296 #: ../color.php:196 #: ../color_templates.php:246 #: ../data_input.php:221 #: ../data_queries.php:325 #: ../data_source_profiles.php:280 #: ../data_sources.php:515 #: ../data_templates.php:388 #: ../gprint_presets.php:157 #: ../graph_templates.php:360 #: ../graphs.php:1031 #: ../graphs.php:1081 #: ../graphs.php:1084 #: ../graphs.php:1107 #: ../host.php:499 #: ../host_templates.php:290 #: ../include/auth.php:115 #: ../lib/html_form.php:1116 #: ../lib/html_utility.php:196 #: ../links.php:218 #: ../managers.php:1072 #: ../permission_denied.php:30 #: ../permission_denied.php:32 #: ../pollers.php:319 #: ../sites.php:284 #: ../tree.php:512 #: ../user_admin.php:439 #: ../user_domains.php:258 #: ../user_group_admin.php:491 #: ../vdef.php:284 msgid "Return" msgstr "返回" #: ../aggregate_graphs.php:368 msgid "Click 'Continue' and the following Aggregate Graph(s) will be migrated to use the Aggregate Template that you choose below." msgstr "点击“继续â€ï¼Œä¸‹é¢çš„èšåˆå›¾å°†è¢«è¿ç§»åˆ°ä½¿ç”¨æ‚¨åœ¨ä¸‹é¢é€‰æ‹©çš„èšåˆæ¨¡æ¿ã€‚" #: ../aggregate_graphs.php:374 msgid "Aggregate Template:" msgstr "èšåˆæ¨¡æ¿ï¼š" #: ../aggregate_graphs.php:388 msgid "There are currently no Aggregate Templates defined for the selected Legacy Aggregates." msgstr "当剿²¡æœ‰ä¸ºé€‰å®šçš„æ—§å¼èšåˆå®šä¹‰èšåˆæ¨¡æ¿ã€‚" #: ../aggregate_graphs.php:389 #, php-format msgid "In order to migrate the Aggregate Graphs below to a Template based Aggregate, first create an Aggregate Template for the Graph Template '%s'." msgstr "为了将下é¢çš„èšåˆå›¾è¿ç§»åˆ°åŸºäºŽæ¨¡æ¿çš„èšåˆï¼Œé¦–å…ˆä¸ºå›¾æ¨¡æ¿ '%s'创建一个èšåˆæ¨¡æ¿ã€‚" #: ../aggregate_graphs.php:390 msgid "Please press 'Return' to continue." msgstr "请按“返回â€ç»§ç»­ã€‚" #: ../aggregate_graphs.php:401 msgid "Click 'Continue' to combine the following Aggregate Graph(s) into a single Aggregate Graph." msgstr "点击“继续â€ï¼Œå°†ä¸‹é¢çš„èšåˆå›¾ç»„åˆæˆä¸€ä¸ªèšåˆå›¾ã€‚" #: ../aggregate_graphs.php:406 msgid "Aggregate Name:" msgstr "èšåˆå称:" #: ../aggregate_graphs.php:407 msgid "New Aggregate" msgstr "新建èšåˆ" #: ../aggregate_graphs.php:413 msgid "Click 'Continue' to associate the following Graph(s) with the Aggregate Graph." msgstr "点击“继续â€å°†ä»¥ä¸‹å›¾å½¢ä¸Žèšåˆå›¾ç›¸å…³è”。" #: ../aggregate_graphs.php:418 msgid "Associate Graph(s)" msgstr "å…³è”图" #: ../aggregate_graphs.php:422 msgid "Click 'Continue' to disassociate the following Graph(s) from the Aggregate." msgstr "点击“继续â€ä»Žèšåˆä¸­å–消关è”以下图形。" #: ../aggregate_graphs.php:427 msgid "Dis-Associate Graph(s)" msgstr "分散关è”图" #: ../aggregate_graphs.php:431 msgid "Click 'Continue' to place the following Aggregate Graph(s) under the Tree Branch." msgstr "点击“继续â€ï¼Œåœ¨æ ‘形分支下放置下é¢çš„èšåˆå›¾ã€‚" #: ../aggregate_graphs.php:433 #: ../host.php:470 msgid "Destination Branch:" msgstr "目的地分行:" #: ../aggregate_graphs.php:438 #: ../graphs.php:882 msgid "Place Graph(s) on Tree" msgstr "放置图形到树" #: ../aggregate_graphs.php:441 msgid "You must select at least one graph." msgstr "您必须至少选择一个图表。" #: ../aggregate_graphs.php:476 #: ../graphs.php:1140 msgid "Graph Items [new]" msgstr "图表项[新建]" #: ../aggregate_graphs.php:492 #: ../graphs.php:1160 #, php-format msgid "Graph Items [edit: %s]" msgstr "图表项目[编辑:%s]" #: ../aggregate_graphs.php:560 #: ../aggregate_graphs.php:563 #: ../lib/html_reports.php:1060 #: ../lib/html_reports.php:1065 #: ../lib/html_reports.php:1104 #: ../utilities.php:1699 msgid "Details" msgstr "详情" #: ../aggregate_graphs.php:560 #: ../lib/html_reports.php:1060 #: ../lib/html_reports.php:1151 #: ../utilities.php:306 msgid "Items" msgstr "项目" #: ../aggregate_graphs.php:560 #: ../aggregate_graphs.php:563 #: ../lib/html.php:1559 #: ../lib/html_reports.php:1060 msgid "Preview" msgstr "预览" #: ../aggregate_graphs.php:607 msgid "Turn Off Graph Debug Mode" msgstr "关闭图形调试模å¼" #: ../aggregate_graphs.php:609 msgid "Turn On Graph Debug Mode" msgstr "打开图形调试模å¼" #: ../aggregate_graphs.php:615 #: ../aggregate_graphs.php:880 msgid "Show Item Details" msgstr "显示项目详情" #: ../aggregate_graphs.php:621 #, php-format msgid "Aggregate Preview [%s]" msgstr "èšåˆé¢„览 [%s]" #: /var/www/html/cacti/aggregate_graphs.php:657 #: /var/www/html/cacti/graph.php:525 #: /var/www/html/cacti/graphs.php:1438 msgid "RRDtool Command:" msgstr "RRDtool命令:" #: /var/www/html/cacti/aggregate_graphs.php:659 #: /var/www/html/cacti/graph.php:528 #: /var/www/html/cacti/graphs.php:1440 msgid "RRDtool Says:" msgstr "RRDtool说:" #: ../aggregate_graphs.php:660 #, php-format msgid "Aggregate Graph %s" msgstr "综åˆå›¾ '%s'" #: ../aggregate_graphs.php:798 #: ../lib/api_aggregate.php:1221 msgid "Total" msgstr "总" #: ../aggregate_graphs.php:802 msgid "All Items" msgstr "所有项目" #: ../aggregate_graphs.php:825 #: ../graphs.php:1414 #: ../lib/api_aggregate.php:1367 msgid "Graph Configuration" msgstr "图形é…ç½®" #: ../aggregate_graphs.php:875 #: ../automation_graph_rules.php:513 #: ../automation_graph_rules.php:528 #: ../automation_graph_rules.php:544 #: ../automation_tree_rules.php:379 #: ../automation_tree_rules.php:529 msgid "Show" msgstr "显示" #: ../aggregate_graphs.php:877 msgid "Hide Item Details" msgstr "éšè—项目详情" #: ../aggregate_graphs.php:998 msgid "Matching Graphs" msgstr "匹é…图形" #: ../aggregate_graphs.php:1007 #: ../aggregate_graphs.php:1326 #: ../aggregate_templates.php:538 #: ../automation_devices.php:448 #: ../automation_graph_rules.php:701 #: ../automation_networks.php:1061 #: ../automation_networks.php:1082 #: ../automation_snmp.php:828 #: ../automation_templates.php:412 #: ../automation_tree_rules.php:715 #: ../cdef.php:722 #: ../color.php:529 #: ../color_templates.php:439 #: ../data_input.php:619 #: ../data_queries.php:1048 #: ../data_source_profiles.php:719 #: ../data_sources.php:1251 #: ../data_templates.php:754 #: ../gprint_presets.php:262 #: ../graph_templates.php:628 #: ../graph_view.php:517 #: ../graph_view.php:818 #: ../graphs.php:1687 #: ../graphs_new.php:548 #: ../host.php:1375 #: ../host_templates.php:700 #: ../lib/api_automation.php:133 #: ../lib/api_automation.php:460 #: ../lib/api_automation.php:683 #: ../lib/api_automation.php:988 #: ../lib/clog_webapi.php:380 #: ../lib/html_filter.php:63 #: ../lib/html_graph.php:206 #: ../lib/html_graph.php:432 #: ../lib/html_reports.php:1378 #: ../lib/html_tree.php:121 #: ../lib/html_tree.php:605 #: ../lib/html_tree.php:879 #: ../links.php:309 #: ../managers.php:150 #: ../managers.php:533 #: ../managers.php:724 #: ../plugins.php:276 #: ../pollers.php:517 #: ../rrdcleaner.php:475 #: ../settings.php:204 #: ../settings.php:221 #: ../settings.php:267 #: ../sites.php:387 #: ../tree.php:633 #: ../tree.php:668 #: ../tree.php:1485 #: ../user_admin.php:2193 #: ../user_admin.php:2531 #: ../user_admin.php:2640 #: ../user_admin.php:2728 #: ../user_admin.php:2833 #: ../user_admin.php:2920 #: ../user_admin.php:3007 #: ../user_domains.php:621 #: ../user_group_admin.php:1806 #: ../user_group_admin.php:2133 #: ../user_group_admin.php:2243 #: ../user_group_admin.php:2348 #: ../user_group_admin.php:2435 #: ../user_group_admin.php:2522 #: ../utilities.php:689 #: ../utilities.php:1045 #: ../utilities.php:1282 #: ../utilities.php:1594 #: ../utilities.php:2257 #: ../utilities.php:2510 #: ../vdef.php:659 msgid "Search" msgstr "æœç´¢" #: ../aggregate_graphs.php:1013 #: ../aggregate_graphs.php:1111 #: ../aggregate_graphs.php:1354 #: ../color_templates.php:549 #: ../graph_view.php:395 #: ../graph_view.php:556 #: ../graphs.php:1693 #: ../host.php:1501 #: ../include/global_arrays.php:686 #: ../include/global_arrays.php:865 #: ../lib/api_automation.php:274 #: ../lib/functions.php:1856 #: ../lib/html.php:1308 #: ../lib/html.php:1310 #: ../lib/html.php:1383 #: ../lib/html_graph.php:212 #: ../lib/html_tree.php:658 #: ../lib/html_tree.php:1076 #: ../tree.php:1568 #: ../user_admin.php:998 #: ../user_admin.php:1242 #: ../user_admin.php:2559 #: ../user_group_admin.php:813 #: ../user_group_admin.php:966 #: ../user_group_admin.php:2161 #: ../utilities.php:268 msgid "Graphs" msgstr "图形" #: ../aggregate_graphs.php:1017 #: ../aggregate_graphs.php:1358 #: ../aggregate_templates.php:554 #: ../automation_devices.php:533 #: ../automation_graph_rules.php:743 #: ../automation_networks.php:1071 #: ../automation_snmp.php:838 #: ../automation_templates.php:422 #: ../automation_tree_rules.php:735 #: ../cdef.php:732 #: ../color.php:539 #: ../color_templates.php:453 #: ../data_input.php:629 #: ../data_queries.php:1058 #: ../data_source_profiles.php:729 #: ../data_source_profiles.php:848 #: ../data_sources.php:1287 #: ../data_templates.php:780 #: ../gprint_presets.php:272 #: ../graph_templates.php:638 #: ../graph_view.php:560 #: ../graphs.php:1697 #: ../graphs_new.php:530 #: ../host.php:1400 #: ../host_templates.php:710 #: ../include/global_form.php:79 #: ../lib/api_automation.php:176 #: ../lib/api_automation.php:470 #: ../lib/api_automation.php:693 #: ../lib/api_automation.php:1031 #: ../lib/html_reports.php:1398 #: ../links.php:319 #: ../managers.php:160 #: ../managers.php:543 #: ../plugins.php:299 #: ../pollers.php:527 #: ../rrdcleaner.php:501 #: ../sites.php:397 #: ../tree.php:1495 #: ../user_admin.php:2203 #: ../user_admin.php:2563 #: ../user_admin.php:2650 #: ../user_admin.php:2756 #: ../user_admin.php:2843 #: ../user_admin.php:2930 #: ../user_admin.php:3017 #: ../user_domains.php:32 #: ../user_domains.php:631 #: ../user_domains.php:716 #: ../user_group_admin.php:1816 #: ../user_group_admin.php:2165 #: ../user_group_admin.php:2271 #: ../user_group_admin.php:2358 #: ../user_group_admin.php:2445 #: ../user_group_admin.php:2532 #: ../utilities.php:665 #: ../utilities.php:1326 #: ../utilities.php:1615 #: ../utilities.php:2282 #: ../utilities.php:2546 #: ../vdef.php:669 msgid "Default" msgstr "默认" #: ../aggregate_graphs.php:1031 msgid "Part of Aggregate" msgstr "部分èšåˆ" #: ../aggregate_graphs.php:1034 #: ../aggregate_graphs.php:1369 #: ../aggregate_templates.php:574 #: ../automation_devices.php:468 #: ../automation_graph_rules.php:754 #: ../automation_networks.php:1082 #: ../automation_snmp.php:849 #: ../automation_templates.php:433 #: ../automation_tree_rules.php:746 #: ../cdef.php:749 #: ../color.php:562 #: ../color_templates.php:472 #: ../data_input.php:640 #: ../data_queries.php:1069 #: ../data_source_profiles.php:746 #: ../data_sources.php:1241 #: ../data_templates.php:797 #: ../gprint_presets.php:289 #: ../graph_templates.php:655 #: ../graph_view.php:571 #: ../graphs.php:1677 #: ../graphs_new.php:554 #: ../host.php:1365 #: ../host_templates.php:727 #: ../lib/api_automation.php:187 #: ../lib/api_automation.php:452 #: ../lib/api_automation.php:704 #: ../lib/api_automation.php:1042 #: ../lib/clog_webapi.php:340 #: ../lib/html.php:1154 #: ../lib/html_filter.php:81 #: ../lib/html_graph.php:190 #: ../lib/html_reports.php:1408 #: ../lib/html_tree.php:642 #: ../links.php:328 #: ../managers.php:171 #: ../managers.php:554 #: ../managers.php:743 #: ../plugins.php:310 #: ../pollers.php:538 #: ../sites.php:408 #: ../tree.php:1506 #: ../user_admin.php:2214 #: ../user_admin.php:2580 #: ../user_admin.php:2667 #: ../user_admin.php:2773 #: ../user_admin.php:2860 #: ../user_admin.php:2947 #: ../user_admin.php:3034 msgid "Go" msgstr "Go" #: ../aggregate_graphs.php:1034 #: ../aggregate_graphs.php:1369 #: ../automation_devices.php:468 #: ../automation_snmp.php:849 #: ../automation_templates.php:433 #: ../cdef.php:749 #: ../color.php:562 #: ../data_input.php:640 #: ../data_queries.php:1069 #: ../data_source_profiles.php:746 #: ../data_sources.php:1241 #: ../data_templates.php:797 #: ../gprint_presets.php:289 #: ../graph_templates.php:655 #: ../graph_view.php:571 #: ../graphs.php:1677 #: ../graphs_new.php:554 #: ../host.php:1365 #: ../host_templates.php:727 #: ../lib/html_graph.php:190 #: ../managers.php:171 #: ../managers.php:554 #: ../managers.php:743 #: ../plugins.php:310 #: ../pollers.php:538 #: ../sites.php:408 #: ../tree.php:1506 #: ../user_admin.php:2214 #: ../user_admin.php:2580 #: ../user_admin.php:2667 #: ../user_admin.php:2773 #: ../user_admin.php:2860 #: ../user_admin.php:2947 #: ../user_admin.php:3034 #: ../user_domains.php:642 #: ../user_group_admin.php:1827 #: ../user_group_admin.php:2182 #: ../user_group_admin.php:2288 #: ../user_group_admin.php:2375 #: ../user_group_admin.php:2462 #: ../user_group_admin.php:2549 #: ../utilities.php:676 #: ../utilities.php:1009 #: ../utilities.php:1337 #: ../utilities.php:1584 #: ../utilities.php:2293 #: ../utilities.php:2557 msgid "Set/Refresh Filters" msgstr "设置/刷新过滤器" #: ../aggregate_graphs.php:1037 #: ../aggregate_graphs.php:1372 #: ../aggregate_templates.php:577 #: ../automation_devices.php:471 #: ../automation_graph_rules.php:757 #: ../automation_networks.php:1085 #: ../automation_snmp.php:852 #: ../automation_templates.php:436 #: ../automation_tree_rules.php:749 #: ../cdef.php:752 #: ../color.php:565 #: ../color_templates.php:475 #: ../data_input.php:643 #: ../data_queries.php:1072 #: ../data_source_profiles.php:749 #: ../data_sources.php:1244 #: ../data_templates.php:800 #: ../gprint_presets.php:292 #: ../graph_templates.php:658 #: ../graph_view.php:574 #: ../graphs.php:1680 #: ../graphs_new.php:555 #: ../host.php:1368 #: ../host_templates.php:730 #: ../lib/api_automation.php:190 #: ../lib/api_automation.php:455 #: ../lib/api_automation.php:707 #: ../lib/api_automation.php:1045 #: ../lib/clog_webapi.php:343 #: ../lib/html_filter.php:86 #: ../lib/html_graph.php:193 #: ../lib/html_graph.php:322 #: ../lib/html_reports.php:1411 #: ../lib/html_tree.php:645 #: ../lib/html_tree.php:768 #: ../links.php:331 #: ../managers.php:174 #: ../managers.php:557 #: ../managers.php:746 #: ../plugins.php:313 #: ../pollers.php:541 #: ../sites.php:411 #: ../tree.php:1509 #: ../user_admin.php:2217 #: ../user_admin.php:2583 #: ../user_admin.php:2670 #: ../user_admin.php:2776 #: ../user_admin.php:2863 #: ../user_admin.php:2950 #: ../user_admin.php:3037 #: ../user_domains.php:645 msgid "Clear" msgstr "清除" #: ../aggregate_graphs.php:1037 #: ../aggregate_graphs.php:1372 #: ../automation_snmp.php:852 #: ../automation_templates.php:436 #: ../cdef.php:752 #: ../color.php:565 #: ../data_input.php:643 #: ../data_queries.php:1072 #: ../data_source_profiles.php:749 #: ../data_sources.php:1244 #: ../data_templates.php:800 #: ../gprint_presets.php:292 #: ../graph_templates.php:658 #: ../graph_view.php:574 #: ../graphs.php:1680 #: ../graphs_new.php:555 #: ../host.php:1368 #: ../host_templates.php:730 #: ../lib/html_graph.php:193 #: ../lib/html_tree.php:645 #: ../managers.php:174 #: ../managers.php:557 #: ../managers.php:746 #: ../plugins.php:313 #: ../pollers.php:541 #: ../sites.php:411 #: ../tree.php:1509 #: ../user_admin.php:2217 #: ../user_admin.php:2583 #: ../user_admin.php:2670 #: ../user_admin.php:2776 #: ../user_admin.php:2863 #: ../user_admin.php:2950 #: ../user_admin.php:3037 #: ../user_domains.php:645 #: ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 #: ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 #: ../user_group_admin.php:2465 #: ../user_group_admin.php:2552 #: ../utilities.php:679 #: ../utilities.php:1012 #: ../utilities.php:1340 #: ../utilities.php:1587 #: ../utilities.php:2296 #: ../utilities.php:2558 msgid "Clear Filters" msgstr "清除过滤器" #: ../aggregate_graphs.php:1116 #: ../aggregate_graphs.php:1435 #: ../graph_view.php:619 #: ../graphs.php:1058 #: ../lib/api_automation.php:561 #: ../user_admin.php:1006 #: ../user_group_admin.php:821 msgid "Graph Title" msgstr "图形标题" #: ../aggregate_graphs.php:1117 #: ../aggregate_graphs.php:1436 #: ../automation_graph_rules.php:856 #: ../automation_tree_rules.php:843 #: ../data_queries.php:1153 #: ../data_sources.php:1406 #: ../data_templates.php:910 #: ../graph_templates.php:762 #: ../graphs.php:1788 #: ../host.php:1500 #: ../host_templates.php:815 #: ../lib/api_automation.php:273 #: ../pollers.php:612 #: ../sites.php:482 #: ../tree.php:1559 #: ../user_admin.php:1006 #: ../user_admin.php:1101 #: ../user_admin.php:1242 #: ../user_admin.php:1384 #: ../user_admin.php:1521 #: ../user_group_admin.php:675 #: ../user_group_admin.php:821 #: ../user_group_admin.php:966 #: ../user_group_admin.php:1109 #: ../user_group_admin.php:1243 msgid "ID" msgstr "ID" #: ../aggregate_graphs.php:1118 msgid "Included in Aggregate" msgstr "包å«åœ¨èšåˆä¸­" #: ../aggregate_graphs.php:1119 #: ../aggregate_graphs.php:1438 #: ../graph_templates.php:765 #: ../graphs.php:1790 msgid "Size" msgstr "大å°" #: ../aggregate_graphs.php:1129 #: ../cdef.php:869 #: ../color.php:722 #: ../color.php:724 #: ../color_templates.php:566 #: ../data_input.php:741 #: ../data_queries.php:1173 #: ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 #: ../data_sources.php:1450 #: ../data_sources.php:1451 #: ../data_templates.php:930 #: ../gprint_presets.php:411 #: ../graph_templates.php:783 #: ../host_templates.php:834 #: ../include/global_settings.php:398 #: ../include/global_settings.php:1254 #: ../install/index.php:527 #: ../install/index.php:548 #: ../tree.php:1593 #: ../tree.php:1594 #: ../user_admin.php:2285 #: ../user_domains.php:731 #: ../user_group_admin.php:1897 #: ../vdef.php:864 msgid "No" msgstr "ä¸" #: ../aggregate_graphs.php:1129 #: ../cdef.php:869 #: ../color.php:722 #: ../color.php:724 #: ../color_templates.php:566 #: ../data_input.php:741 #: ../data_queries.php:1173 #: ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 #: ../data_sources.php:1450 #: ../data_sources.php:1451 #: ../data_templates.php:930 #: ../gprint_presets.php:411 #: ../graph_templates.php:783 #: ../host_templates.php:834 #: ../include/global_settings.php:398 #: ../include/global_settings.php:1254 #: ../install/index.php:526 #: ../install/index.php:527 #: ../install/index.php:547 #: ../install/index.php:548 #: ../tree.php:1593 #: ../tree.php:1594 #: ../user_admin.php:2283 #: ../user_domains.php:729 #: ../user_domains.php:731 #: ../user_group_admin.php:1895 #: ../vdef.php:864 msgid "Yes" msgstr "确定" #: ../aggregate_graphs.php:1135 #: ../graphs.php:1810 #: ../lib/api_automation.php:588 msgid "No Graphs Found" msgstr "没有找到图形" #: ../aggregate_graphs.php:1317 #: ../aggregate_graphs.php:1426 #: ../lib/functions.php:2550 msgid "Aggregate Graphs" msgstr "èšåˆå›¾è¡¨" #: ../aggregate_graphs.php:1332 #: ../data_sources.php:1206 #: ../graph_view.php:524 #: ../graphs.php:1653 #: ../host.php:1347 #: ../lib/api_automation.php:434 #: ../lib/html_graph.php:159 #: ../lib/html_tree.php:611 #: ../rrdcleaner.php:351 #: ../user_admin.php:2537 #: ../user_admin.php:2734 #: ../user_group_admin.php:2139 #: ../user_group_admin.php:2249 #: ../utilities.php:1555 msgid "Template" msgstr "模æ¿" #: ../aggregate_graphs.php:1336 #: ../automation_devices.php:458 #: ../automation_devices.php:488 #: ../automation_devices.php:503 #: ../automation_devices.php:518 #: ../automation_graph_rules.php:711 #: ../automation_graph_rules.php:733 #: ../data_sources.php:1210 #: ../graphs.php:1657 #: ../graphs_items.php:308 #: ../graphs_items.php:329 #: ../host.php:1316 #: ../host.php:1334 #: ../host.php:1351 #: ../host.php:1385 #: ../lib/api_automation.php:143 #: ../lib/api_automation.php:161 #: ../lib/api_automation.php:421 #: ../lib/api_automation.php:438 #: ../lib/api_automation.php:998 #: ../lib/api_automation.php:1016 #: ../lib/html.php:1633 #: ../lib/html_reports.php:1388 #: ../managers.php:522 #: ../managers.php:734 #: ../user_admin.php:2541 #: ../user_admin.php:2738 #: ../user_group_admin.php:2143 #: ../user_group_admin.php:2253 #: ../utilities.php:654 #: ../utilities.php:1293 #: ../utilities.php:1559 #: ../utilities.php:1604 #: ../utilities.php:2267 #: ../utilities.php:2520 #: ../utilities.php:2533 msgid "Any" msgstr "任何" #: ../aggregate_graphs.php:1337 #: ../aggregate_graphs.php:1450 #: ../automation_graph_rules.php:866 #: ../automation_graph_rules.php:867 #: ../automation_networks.php:421 #: ../automation_networks.php:633 #: ../automation_tree_rules.php:855 #: ../data_sources.php:824 #: ../data_sources.php:1211 #: ../data_sources.php:1436 #: ../data_templates.php:932 #: ../graph_view.php:782 #: ../graphs.php:1326 #: ../graphs.php:1658 #: ../graphs_items.php:309 #: ../graphs_items.php:330 #: ../host.php:1013 #: ../host.php:1317 #: ../host.php:1352 #: ../include/global_arrays.php:330 #: ../include/global_arrays.php:383 #: ../include/global_arrays.php:459 #: ../include/global_arrays.php:571 #: ../include/global_arrays.php:594 #: ../include/global_arrays.php:1318 #: ../include/global_form.php:389 #: ../include/global_form.php:712 #: ../include/global_form.php:721 #: ../include/global_form.php:732 #: ../include/global_form.php:775 #: ../include/global_form.php:782 #: ../include/global_form.php:808 #: ../include/global_form.php:837 #: ../include/global_form.php:845 #: ../include/global_form.php:1032 #: ../include/global_form.php:1041 #: ../include/global_form.php:2097 #: ../include/global_form.php:2139 #: ../include/global_settings.php:445 #: ../include/global_settings.php:453 #: ../include/global_settings.php:900 #: ../include/global_settings.php:1324 #: ../lib/api_automation.php:144 #: ../lib/api_automation.php:422 #: ../lib/api_automation.php:439 #: ../lib/api_automation.php:576 #: ../lib/api_automation.php:999 #: ../lib/html.php:1634 #: ../lib/html_form.php:315 #: ../lib/html_graph.php:396 #: ../lib/html_reports.php:280 #: ../lib/html_reports.php:328 #: ../lib/html_reports.php:340 #: ../lib/html_reports.php:349 #: ../lib/html_reports.php:359 #: ../lib/html_tree.php:843 #: ../settings.php:197 #: ../settings.php:214 #: ../settings.php:237 #: ../user_admin.php:2542 #: ../user_admin.php:2739 #: ../user_group_admin.php:2144 #: ../user_group_admin.php:2254 #: ../utilities.php:1560 msgid "None" msgstr "空" #: ../aggregate_graphs.php:1435 msgid "The title for the Aggregate Graphs" msgstr "èšåˆå›¾çš„æ ‡é¢˜" #: ../aggregate_graphs.php:1436 msgid "The internal database identifier for this object" msgstr "此对象的内部数æ®åº“标识符" #: ../aggregate_graphs.php:1437 #: ../graphs.php:1062 msgid "Aggregate Template" msgstr "èšåˆæ¨¡æ¿" #: ../aggregate_graphs.php:1437 msgid "The Aggregate Template that this Aggregate Graphs is based upon" msgstr "æ­¤èšåˆå›¾æ‰€åŸºäºŽçš„èšåˆæ¨¡æ¿" #: ../aggregate_graphs.php:1456 msgid "No Aggregate Graphs Found" msgstr "没有找到èšåˆå›¾" #: ../aggregate_items.php:346 msgid "Override Values for Graph Item" msgstr "图形项目的é‡å†™å€¼" #: ../aggregate_items.php:357 #: ../lib/api_aggregate.php:1392 msgid "Override this Value" msgstr "覆盖此值" #: ../aggregate_templates.php:307 msgid "Click 'Continue' to Delete the following Aggregate Graph Template(s)." msgstr "点击“继续â€åˆ é™¤ä¸‹é¢çš„èšåˆå›¾æ¨¡æ¿" #: ../aggregate_templates.php:312 msgid "Delete Color Template(s)" msgstr "删除颜色模æ¿" #: ../aggregate_templates.php:315 msgid "You must select at least one Aggregate Graph Template." msgstr "您必须至少选择一个èšåˆå›¾æ¨¡æ¿ã€‚" #: ../aggregate_templates.php:351 #, php-format msgid "Aggregate Template [edit: %s]" msgstr "图形模æ¿é™åˆ¶èšåˆæ¨¡æ¿[编辑:%s]" #: ../aggregate_templates.php:353 msgid "Aggregate Template [new]" msgstr "èšåˆæ¨¡æ¿[新建]" #: ../aggregate_templates.php:531 #: ../aggregate_templates.php:631 #: ../lib/functions.php:2532 msgid "Aggregate Templates" msgstr "èšåˆæ¨¡æ¿" #: ../aggregate_templates.php:544 #: ../automation_templates.php:418 #: ../automation_templates.php:503 #: ../color_templates.php:550 #: ../include/global_arrays.php:695 #: ../include/global_arrays.php:753 #: ../install/index.php:898 #: ../user_admin.php:2839 #: ../user_group_admin.php:2354 msgid "Templates" msgstr "模æ¿" #: ../aggregate_templates.php:571 #: ../cdef.php:746 #: ../color.php:559 #: ../color_templates.php:469 #: ../data_sources.php:1278 #: ../gprint_presets.php:286 #: ../graph_templates.php:652 #: ../vdef.php:683 msgid "Has Graphs" msgstr "有图" #: ../aggregate_templates.php:640 #: ../color_templates.php:547 msgid "Template Title" msgstr "æ¨¡æ¿æ ‡é¢˜" #: ../aggregate_templates.php:641 msgid "Aggregate Templates that are in use can not be Deleted. In use is defined as being referenced by an Aggregate." msgstr "正在使用的èšåˆæ¨¡æ¿ä¸èƒ½è¢«åˆ é™¤ã€‚ 在使用中被定义为由一个èšåˆå¼•用。" #: ../aggregate_templates.php:641 #: ../cdef.php:852 #: ../color.php:699 #: ../color_templates.php:548 #: ../data_input.php:723 #: ../data_queries.php:1154 #: ../data_source_profiles.php:849 #: ../data_sources.php:1408 #: ../data_templates.php:911 #: ../gprint_presets.php:392 #: ../graph_templates.php:763 #: ../host_templates.php:816 #: ../vdef.php:846 msgid "Deletable" msgstr "å¯åˆ é™¤" #: ../aggregate_templates.php:642 #: ../cdef.php:853 #: ../color.php:700 #: ../data_queries.php:912 #: ../data_queries.php:1155 #: ../gprint_presets.php:393 #: ../graph_templates.php:764 #: ../vdef.php:847 msgid "Graphs Using" msgstr "图形使用" #: ../aggregate_templates.php:643 #: ../graph_view.php:619 #: ../include/global_arrays.php:655 #: ../include/global_arrays.php:989 #: ../include/global_form.php:1323 #: ../include/global_form.php:1551 #: ../lib/html_reports.php:345 #: ../tree.php:1286 msgid "Graph Template" msgstr "图形模æ¿" #: ../aggregate_templates.php:665 msgid "No Aggregate Templates Found" msgstr "没有找到èšåˆæ¨¡æ¿" #: ../auth_changepassword.php:93 msgid "You cannot use a previously entered password!" msgstr "您ä¸èƒ½ä½¿ç”¨ä»¥å‰è¾“入的密ç ï¼" #: ../auth_changepassword.php:131 msgid "Your new passwords do not match, please retype." msgstr "您的新密ç ä¸åŒ¹é…ï¼Œè¯·é‡æ–°è¾“入。" #: ../auth_changepassword.php:110 #: ../auth_changepassword.php:120 msgid "Your current password is not correct. Please try again." msgstr "您当å‰çš„密ç ä¸æ­£ç¡®ã€‚ 请å†è¯•一次。" #: ../auth_changepassword.php:115 #: ../auth_changepassword.php:125 msgid "Your new password cannot be the same as the old password. Please try again." msgstr "您的新密ç ä¸èƒ½ä¸Žæ—§å¯†ç ç›¸åŒã€‚ 请å†è¯•一次。" #: ../auth_changepassword.php:224 msgid "Forced password change" msgstr "*** å¼ºåˆ¶ä¿®æ”¹å¯†ç  ***" #: ../auth_changepassword.php:228 msgid "Password requirements include:" msgstr "密ç è¦æ±‚包括:" #: ../auth_changepassword.php:232 #, php-format msgid "Must be at least %d characters in length" msgstr "必须至少有 %d 个字符的长度" #: ../auth_changepassword.php:236 msgid "Must include mixed case" msgstr "必须包括混åˆçš„æƒ…况" #: ../auth_changepassword.php:240 msgid "Must include at least 1 number" msgstr "必须包å«è‡³å°‘1个数字" #: ../auth_changepassword.php:244 msgid "Must include at least 1 special character" msgstr "必须包å«è‡³å°‘一个特殊字符" #: ../auth_changepassword.php:248 #, php-format msgid "Cannot be reused for %d password changes" msgstr "无法é‡å¤ä½¿ç”¨ %d å¯†ç æ›´æ”¹" #: ../auth_changepassword.php:258 #: ../auth_changepassword.php:284 #: ../include/global_form.php:1468 #: ../lib/functions.php:1826 msgid "Change Password" msgstr "更改密ç " #: ../auth_changepassword.php:290 msgid "Please enter your current password and your new
    Cacti password." msgstr "请输入您当å‰çš„密ç å’Œæ–°çš„
    Cacti密ç ã€‚" #: ../auth_changepassword.php:295 msgid "Current password" msgstr "当å‰å¯†ç " #: ../auth_changepassword.php:299 msgid "New password" msgstr "新密ç " #: ../auth_changepassword.php:303 msgid "Confirm new password" msgstr "确认新密ç " #: ../auth_changepassword.php:307 #: ../lib/html_form.php:1113 #: ../lib/html_form.php:1122 #: ../lib/html_graph.php:197 #: ../lib/html_tree.php:649 msgid "Save" msgstr "ä¿å­˜" #: ../auth_changepassword.php:316 #: ../auth_login.php:649 #, php-format msgid "Version %1$s | %2$s" msgstr "版本 %1$s | %2$s" #: ../auth_login.php:50 msgid "Web Basic Authentication configured, but no username was passed from the web server. Please make sure you have authentication enabled on the web server." msgstr "å·²é…ç½®Web基本身份验è¯ï¼Œä½†æ²¡æœ‰ä»ŽWebæœåŠ¡å™¨ä¼ é€’ç”¨æˆ·å。 è¯·ç¡®ä¿æ‚¨åœ¨WebæœåŠ¡å™¨ä¸Šå¯ç”¨äº†èº«ä»½éªŒè¯ã€‚" #: ../auth_login.php:97 #, php-format msgid "%s authenticated by Web Server, but both Template and Guest Users are not defined in Cacti." msgstr "%s 通过Web Server进行身份验è¯ï¼Œä½†â€œæ¨¡æ¿â€å’Œâ€œè®¿å®¢ç”¨æˆ·â€åœ¨Cacti中未定义。" #: ../auth_login.php:116 #: ../auth_login.php:405 #, php-format msgid "LDAP Search Error: %s" msgstr "LDAPæœå¯»é”™è¯¯ï¼š %s" #: ../auth_login.php:142 #: ../auth_login.php:445 #, php-format msgid "LDAP Error: %s" msgstr "LDAP错误:%s" #: ../auth_login.php:219 #: ../auth_login.php:437 #, php-format msgid "Template user %s does not exist." msgstr "模æ¿ç”¨æˆ· %sä¸å­˜åœ¨ã€‚" #: ../auth_login.php:234 #, php-format msgid "Guest user %s does not exist." msgstr "æ¥å®¾ç”¨æˆ· %s ä¸å­˜åœ¨ã€‚" #: ../auth_login.php:269 msgid "Access Denied, user account disabled." msgstr "æ‹’ç»è®¿é—®ï¼Œç”¨æˆ·å¸å·è¢«ç¦ç”¨ã€‚" #: ../auth_login.php:355 msgid "Access Denied, please contact you Cacti Administrator." msgstr "访问拒ç»ï¼Œè¯·è”ç³»Cacti管ç†å‘˜ã€‚" #: /var/www/html/cacti/auth_login.php:404 msgid "Cacti" msgstr "Cacti" #: ../auth_login.php:519 msgid "Login to Cacti" msgstr "登录到Cacti" #: ../auth_login.php:552 msgid "User Login" msgstr "用户登录" #: ../auth_login.php:564 msgid "Enter your Username and Password below" msgstr "在下é¢è¾“入您的用户å和密ç " #: ../auth_login.php:570 #: ../auth_login.php:573 #: ../include/global_settings.php:1187 #: ../lib/functions.php:3801 msgid "Username" msgstr "用户å" #: ../auth_login.php:578 #: ../include/global_form.php:1435 #: ../lib/functions.php:3802 msgid "Password" msgstr "密ç " #: ../auth_login.php:590 #: ../include/global_settings.php:1574 #: ../lib/auth.php:287 #: ../lib/auth.php:299 #: ../lib/auth.php:310 msgid "Local" msgstr "本地" #: ../auth_login.php:594 #: ../include/global_arrays.php:582 #: ../lib/auth.php:311 msgid "LDAP" msgstr "LDAP" #: ../auth_login.php:605 #: ../user_admin.php:2266 #: ../user_group_admin.php:675 msgid "Realm" msgstr "域" #: ../auth_login.php:621 msgid "Keep me signed in" msgstr "ä¿æŒç™»å½•状æ€" #: ../auth_login.php:627 msgid "Login" msgstr "登录" #: ../auth_login.php:640 msgid "Invalid User Name/Password Please Retype" msgstr "无效的用户å/密ç è¯·é‡æ–°è¾“å…¥" #: ../auth_login.php:643 msgid "User Account Disabled" msgstr "用户被ç¦ç”¨" #: ../auth_profile.php:150 msgid "User Account Details" msgstr "ç”¨æˆ·å¸æˆ·è¯¦æƒ…" #: ../auth_profile.php:161 #: ../include/global_arrays.php:565 #: ../include/global_settings.php:1910 #: ../lib/html.php:1519 #: ../lib/html.php:1541 msgid "Tree View" msgstr "Tree View" #: ../auth_profile.php:165 #: ../include/global_arrays.php:566 #: ../lib/html.php:1526 #: ../lib/html.php:1550 msgid "List View" msgstr "列表视图" #: ../auth_profile.php:169 #: ../include/global_arrays.php:567 #: ../lib/html.php:1533 msgid "Preview View" msgstr "预览查看" #: ../auth_profile.php:182 #: ../include/global_form.php:1411 #: ../user_admin.php:2263 msgid "User Name" msgstr "用户å" #: ../auth_profile.php:183 #: ../include/global_form.php:1412 msgid "The login name for this user." msgstr "登录用户å。" #: ../auth_profile.php:190 #: ../include/global_form.php:1419 #: ../user_admin.php:2264 #: ../user_group_admin.php:675 #: ../utilities.php:764 msgid "Full Name" msgstr "å…¨å" #: ../auth_profile.php:191 #: ../include/global_form.php:1420 msgid "A more descriptive name for this user, that can include spaces or special characters." msgstr "此用户的更具æè¿°æ€§çš„å称,å¯ä»¥åŒ…å«ç©ºæ ¼æˆ–特殊字符。" #: ../auth_profile.php:198 #: ../include/global_form.php:1427 msgid "Email Address" msgstr "电å­é‚®ä»¶åœ°å€" #: ../auth_profile.php:199 msgid "An Email Address you be reached at." msgstr "你能收到的一个电å­é‚®ä»¶åœ°å€ã€‚" #: ../auth_profile.php:206 #: ../auth_profile.php:208 msgid "Clear Private Data" msgstr "清除ç§äººæ•°æ®" #: ../auth_profile.php:207 msgid "Clear Private Data including Column sizing." msgstr "清除ç§äººæ•°æ®ï¼ŒåŒ…括列大å°ã€‚" #: ../auth_profile.php:217 #: ../auth_profile.php:219 msgid "Logout Everywhere" msgstr "注销所有登陆" #: ../auth_profile.php:218 msgid "Clear all your Login Session Tokens." msgstr "æ¸…é™¤æ‰€æœ‰ç™»å½•ä¼šè¯æ ‡è®°ã€‚" #: ../auth_profile.php:239 #: ../user_admin.php:1928 #: ../user_group_admin.php:1649 msgid "User Settings" msgstr "用户设置" #: ../auth_profile.php:296 msgid "Private Data Cleared" msgstr "ç§äººæ•°æ®å·²æ¸…除" #: ../auth_profile.php:296 msgid "Your Private Data has been cleared." msgstr "您的ç§äººèµ„料已被清除。" #: ../auth_profile.php:316 msgid "All your login sessions have been cleared." msgstr "您所有的登录会è¯å·²è¢«æ¸…除。" #: ../auth_profile.php:316 msgid "User Sessions Cleared" msgstr "用户会è¯å·²æ¸…除" #: ../automation_devices.php:31 msgid "Add Device" msgstr "添加设备" #: ../automation_devices.php:39 #: ../automation_devices.php:271 #: ../automation_devices.php:389 #: ../automation_devices.php:399 #: ../automation_devices.php:622 #: ../automation_devices.php:623 #: ../host.php:1390 #: ../lib/api_automation.php:166 #: ../lib/api_automation.php:1021 #: ../lib/html_utility.php:811 msgid "Down" msgstr "æ–­å¼€" #: ../automation_devices.php:40 #: ../automation_devices.php:271 #: ../automation_devices.php:391 #: ../automation_devices.php:401 #: ../automation_devices.php:622 #: ../automation_devices.php:623 #: ../host.php:1389 #: ../lib/api_automation.php:165 #: ../lib/api_automation.php:1020 #: ../lib/html_utility.php:817 msgid "Up" msgstr "èµ·æ¥" #: ../automation_devices.php:90 msgid "Added manually through device automation interface." msgstr "é€šè¿‡è®¾å¤‡è‡ªåŠ¨åŒ–æŽ¥å£æ‰‹åŠ¨æ·»åŠ ã€‚" #: ../automation_devices.php:106 msgid "Added to Cacti" msgstr "添加到Cacti" #: ../automation_devices.php:106 #: ../automation_devices.php:108 #: ../data_sources.php:822 #: ../graph_view.php:619 #: ../graphs.php:1331 #: ../graphs_items.php:304 #: ../include/global_arrays.php:651 #: ../include/global_arrays.php:696 #: ../include/global_arrays.php:1434 #: ../lib/api_automation.php:417 #: ../lib/functions.php:3796 #: ../lib/html.php:1629 #: ../lib/html.php:1659 #: ../lib/html_reports.php:335 #: ../lib/html_tree.php:349 #: ../lib/html_tree.php:377 #: ../utilities.php:1409 msgid "Device" msgstr "设备模æ¿" #: ../automation_devices.php:108 msgid "Not Added to Cacti" msgstr "没有添加到Cacti" #: ../automation_devices.php:177 msgid "Click 'Continue' to add the following Discovered device(s)." msgstr "ç‚¹å‡»â€œç»§ç»­â€æ·»åР以䏋å‘现的设备。" #: ../automation_devices.php:183 #: ../pollers.php:602 msgid "Pollers" msgstr "轮询" #: ../automation_devices.php:187 msgid "Select Template" msgstr "选择模æ¿" #: ../automation_devices.php:193 #: ../automation_templates.php:307 #: ../automation_templates.php:513 msgid "Availability Method" msgstr "å¯ç”¨æ€§æ–¹æ³•" #: ../automation_devices.php:199 msgid "Add Device(s)" msgstr "添加设备" #: ../automation_devices.php:202 msgid "You must select at least one Device." msgstr "您必须至少选择一个设备。" #: ../automation_devices.php:239 #: ../automation_devices.php:529 #: ../host.php:1303 #: ../host.php:1396 #: ../host.php:1489 #: ../include/global_arrays.php:683 #: ../include/global_arrays.php:735 #: ../lib/api_automation.php:172 #: ../lib/api_automation.php:466 #: ../lib/functions.php:2136 #: ../pollers.php:616 #: ../sites.php:483 #: ../tree.php:1567 #: ../user_admin.php:1234 #: ../user_admin.php:2752 #: ../user_group_admin.php:958 #: ../user_group_admin.php:2267 #: ../utilities.php:263 msgid "Devices" msgstr "设备" #: ../automation_devices.php:248 msgid "Device Name" msgstr "设备åç§°" #: ../automation_devices.php:249 msgid "IP" msgstr "IP" #: ../automation_devices.php:250 msgid "SNMP Name" msgstr "SNMPåç§°" #: ../automation_devices.php:251 #: ../include/global_settings.php:1570 msgid "Location" msgstr "ä½ç½®" #: ../automation_devices.php:252 msgid "Contact" msgstr "è”ç³»" #: ../automation_devices.php:253 #: ../include/global_form.php:970 #: ../include/global_form.php:1006 #: ../include/global_form.php:1287 #: ../include/global_form.php:1630 #: ../install/index.php:899 #: ../lib/api_automation.php:269 #: ../lib/api_automation.php:1137 #: ../managers.php:222 #: ../tree.php:647 #: ../user_admin.php:1101 #: ../user_admin.php:1242 #: ../user_group_admin.php:966 #: ../user_group_admin.php:1883 msgid "Description" msgstr "æè¿°" #: ../automation_devices.php:254 #: ../automation_devices.php:499 msgid "OS" msgstr "OS" #: ../automation_devices.php:255 #: ../host.php:1505 #: ../include/global_arrays.php:331 msgid "Uptime" msgstr "正常è¿è¡Œæ—¶é—´" #: ../automation_devices.php:256 #: ../automation_devices.php:514 #: ../utilities.php:1605 msgid "SNMP" msgstr "SNMP" #: ../automation_devices.php:257 #: ../automation_devices.php:484 #: ../automation_graph_rules.php:729 #: ../automation_networks.php:964 #: ../automation_tree_rules.php:721 #: ../data_sources.php:1231 #: ../data_templates.php:915 #: ../host.php:686 #: ../host.php:778 #: ../host.php:1381 #: ../host.php:1503 #: ../lib/api_automation.php:157 #: ../lib/api_automation.php:271 #: ../lib/api_automation.php:560 #: ../lib/api_automation.php:1012 #: ../lib/api_automation.php:1140 #: ../lib/html_reports.php:1384 #: ../managers.php:224 #: ../plugins.php:282 #: ../plugins.php:377 #: ../pollers.php:614 #: ../user_admin.php:1242 #: ../user_group_admin.php:966 msgid "Status" msgstr "状æ€" #: ../automation_devices.php:258 msgid "Last Check" msgstr "上次检查" #: ../automation_devices.php:285 #: ../automation_devices.php:614 msgid "Not Detected" msgstr "没有检测到" #: ../automation_devices.php:303 #: ../host.php:1547 msgid "No Devices Found" msgstr "未找到设备" #: ../automation_devices.php:439 msgid "Discovery Filters" msgstr "å‘现过滤器" #: ../automation_devices.php:454 msgid "Network" msgstr "网络" #: ../automation_devices.php:471 msgid "Reset fields to defaults" msgstr "将字段é‡ç½®ä¸ºé»˜è®¤å€¼" #: ../automation_devices.php:474 #: ../color.php:571 #: ../lib/html_form.php:1128 msgid "Export" msgstr "导出" #: ../automation_devices.php:474 msgid "Export to a file" msgstr "导出到文件" #: ../automation_devices.php:477 #: ../lib/clog_webapi.php:120 #: ../lib/clog_webapi.php:346 #: ../managers.php:749 msgid "Purge" msgstr "清除" #: ../automation_devices.php:477 msgid "Purge Discovered Devices" msgstr "清除å‘现的设备" #: ../automation_networks.php:1030 #: ../automation_snmp.php:705 #: ../automation_snmp.php:706 #: ../automation_snmp.php:707 #: ../automation_snmp.php:708 #: ../automation_snmp.php:709 #: ../automation_snmp.php:710 #: ../lib/html.php:937 #: ../user_admin.php:2278 #: ../utilities.php:406 #: ../utilities.php:792 #: ../utilities.php:2015 #: ../utilities.php:2115 #: ../utilities.php:2118 #: ../utilities.php:2121 #: ../utilities.php:2127 #: ../utilities.php:2358 msgid "N/A" msgstr "N/A" #: ../automation_graph_rules.php:29 #: ../automation_snmp.php:30 #: ../automation_tree_rules.php:29 #: ../cdef.php:30 #: ../color_templates.php:29 #: ../data_templates.php:34 #: ../graph_templates.php:34 #: ../graphs.php:63 #: ../host_templates.php:31 #: ../include/global_arrays.php:1231 #: ../vdef.php:30 msgid "Duplicate" msgstr "Duplicate" #: ../automation_graph_rules.php:30 #: ../automation_networks.php:33 #: ../automation_tree_rules.php:30 #: ../data_sources.php:38 #: ../host.php:39 #: ../include/global_arrays.php:1232 #: ../include/global_settings.php:1145 #: ../links.php:29 #: ../managers.php:29 #: ../managers.php:35 #: ../plugins.php:29 #: ../pollers.php:31 #: ../user_admin.php:30 #: ../user_domains.php:31 #: ../user_domains.php:402 #: ../user_group_admin.php:32 msgid "Enable" msgstr "å¯ç”¨" #: ../automation_graph_rules.php:31 #: ../automation_networks.php:32 #: ../automation_tree_rules.php:31 #: ../data_sources.php:39 #: ../host.php:40 #: ../include/global_arrays.php:1233 #: ../links.php:30 #: ../managers.php:30 #: ../managers.php:34 #: ../plugins.php:30 #: ../pollers.php:30 #: ../user_admin.php:31 #: ../user_domains.php:30 #: ../user_group_admin.php:33 msgid "Disable" msgstr "关闭" #: ../automation_graph_rules.php:251 msgid "Press 'Continue' to delete the following Graph Rules." msgstr "按'ç»§ç»­'删除以下图形规则。" #: ../automation_graph_rules.php:258 msgid "Click 'Continue' to duplicate the following Rule(s). You can optionally change the title format for the new Graph Rules." msgstr "点击“继续â€å¤åˆ¶ä»¥ä¸‹è§„则。 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°å›¾è§„则的标题格å¼ã€‚" #: ../automation_graph_rules.php:260 #: ../automation_tree_rules.php:262 #: ../graphs.php:851 #: ../graphs.php:862 msgid "Title Format" msgstr "标题格å¼" #: ../automation_graph_rules.php:260 #: ../automation_tree_rules.php:262 msgid "rule_name" msgstr "rule_name" #: ../automation_graph_rules.php:266 #: ../automation_tree_rules.php:268 msgid "Click 'Continue' to enable the following Rule(s)." msgstr "点击“继续â€ä»¥å¯ç”¨ä»¥ä¸‹è§„则。" #: ../automation_graph_rules.php:268 #: ../automation_tree_rules.php:270 msgid "Make sure, that those rules have successfully been tested!" msgstr "ç¡®ä¿è¿™äº›è§„åˆ™å·²ç»æˆåŠŸåœ°é€šè¿‡æµ‹è¯•ï¼" #: ../automation_graph_rules.php:274 #: ../automation_tree_rules.php:276 msgid "Click 'Continue' to disable the following Rule(s)." msgstr "点击“继续â€ä»¥ç¦ç”¨ä»¥ä¸‹è§„则。" #: ../automation_graph_rules.php:281 #: ../automation_tree_rules.php:283 msgid "You must select at least one Rule." msgstr "您必须至少选择一个规则。" #: ../automation_graph_rules.php:284 #: ../automation_tree_rules.php:286 msgid "Apply requested action" msgstr "应用请求的æ“作" #: ../automation_graph_rules.php:414 #: ../automation_tree_rules.php:471 msgid "Are You Sure?" msgstr "确定?" #: ../automation_graph_rules.php:414 #, php-format msgid "Are you sure you want to delete the Rule '%s'?" msgstr "您确定è¦åˆ é™¤è§„则'%s'å—?" #: ../automation_graph_rules.php:497 #, php-format msgid "Rule Selection [edit: %s]" msgstr "规则选择[编辑:%s]" #: ../automation_graph_rules.php:503 msgid "Rule Selection [new]" msgstr "规则选择[新建]" #: ../automation_graph_rules.php:513 #: ../automation_graph_rules.php:528 #: ../automation_graph_rules.php:544 #: ../automation_tree_rules.php:379 #: ../automation_tree_rules.php:529 msgid "Don't Show" msgstr "ä¸è¦æ˜¾ç¤º" #: ../automation_graph_rules.php:513 msgid "Rule Details." msgstr "规则细节。" #: ../automation_graph_rules.php:528 msgid "Matching Devices." msgstr "匹é…设备。" #: ../automation_graph_rules.php:544 msgid "Matching Objects." msgstr "匹é…对象。" #: ../automation_graph_rules.php:580 msgid "Device Selection Criteria" msgstr "设备选择标准" #: ../automation_graph_rules.php:586 msgid "Graph Creation Criteria" msgstr "图形创建标准" #: ../automation_graph_rules.php:692 #: ../automation_graph_rules.php:739 #: ../automation_graph_rules.php:846 #: ../include/global_arrays.php:706 #: ../include/global_form.php:1571 #: ../lib/functions.php:2586 msgid "Graph Rules" msgstr "图规则" #: ../automation_graph_rules.php:707 #: ../automation_graph_rules.php:857 #: ../include/global_arrays.php:992 #: ../include/global_form.php:1561 #: ../include/global_form.php:2176 msgid "Data Query" msgstr "æ•°æ®æŸ¥è¯¢" #: ../automation_graph_rules.php:734 #: ../automation_graph_rules.php:859 #: ../automation_networks.php:496 #: ../automation_tree_rules.php:848 #: ../automation_tree_rules.php:866 #: ../data_sources.php:1236 #: ../host.php:1386 #: ../include/global_arrays.php:614 #: ../include/global_form.php:1443 #: ../include/global_settings.php:339 #: ../lib/api_automation.php:162 #: ../lib/api_automation.php:1017 #: ../lib/html_reports.php:1389 #: ../lib/html_reports.php:1482 #: ../lib/html_reports.php:1493 #: ../lib/html_reports.php:1529 #: ../links.php:381 #: ../managers.php:249 #: ../managers.php:628 #: ../user_admin.php:1101 #: ../user_admin.php:1113 #: ../user_admin.php:2265 #: ../user_domains.php:341 #: ../user_domains.php:718 #: ../user_group_admin.php:87 #: ../user_group_admin.php:675 #: ../user_group_admin.php:690 #: ../user_group_admin.php:1887 #: ../utilities.php:2142 msgid "Enabled" msgstr "å¯ç”¨" #: ../automation_graph_rules.php:735 #: ../automation_networks.php:979 #: ../automation_tree_rules.php:866 #: ../data_sources.php:1237 #: ../data_templates.php:934 #: ../host.php:1387 #: ../include/global_arrays.php:613 #: ../include/global_arrays.php:1159 #: ../include/global_arrays.php:1442 #: ../include/global_settings.php:339 #: ../include/global_settings.php:1021 #: ../include/global_settings.php:1035 #: ../include/global_settings.php:1047 #: ../include/global_settings.php:1072 #: ../include/global_settings.php:1086 #: ../include/global_settings.php:1145 #: ../include/global_settings.php:1764 #: ../lib/api_automation.php:163 #: ../lib/api_automation.php:1018 #: ../lib/html_reports.php:1390 #: ../lib/html_reports.php:1529 #: ../lib/html_utility.php:807 #: ../managers.php:249 #: ../managers.php:628 #: ../pollers.php:40 #: ../user_admin.php:1113 #: ../user_domains.php:402 #: ../user_group_admin.php:690 #: ../utilities.php:2142 msgid "Disabled" msgstr "关闭" #: ../automation_graph_rules.php:855 #: ../automation_tree_rules.php:842 msgid "Rule Name" msgstr "规则åç§°" #: ../automation_graph_rules.php:855 msgid "The name of this rule." msgstr "这个规则的å字。" #: ../automation_graph_rules.php:856 msgid "The internal database ID for this rule. Useful in performing debugging and automation." msgstr "此规则的内部数æ®åº“标识。 用于执行调试和自动化。" #: ../automation_graph_rules.php:858 #: ../include/global_form.php:1803 #: ../include/global_form.php:1886 #: ../include/global_form.php:1988 #: ../include/global_form.php:2187 msgid "Graph Type" msgstr "图表类型" #: ../automation_graph_rules.php:881 msgid "No Graph Rules Found" msgstr "找ä¸åˆ°å›¾è§„则" #: ../automation_networks.php:34 msgid "Discover Now" msgstr "ç«‹å³å‘现" #: ../automation_networks.php:35 msgid "Cancel Discovery" msgstr "å–æ¶ˆå‘现" #: /var/www/html/cacti/automation_networks.php:206 #, php-format msgid "ERROR: You must specify the day of the week. Disabling Network %s!." msgstr "错误:您必须指定星期几。 ç¦ç”¨ç½‘络 %s!." #: /var/www/html/cacti/automation_networks.php:212 #, php-format msgid "ERROR: You must specify both the Months and Days of Month. Disabling Network %s!" msgstr "é”™è¯¯ï¼šæ‚¨å¿…é¡»åŒæ—¶æŒ‡å®šæœˆä»½å’Œæœˆä»½çš„天数。 ç¦ç”¨ç½‘络 %s!" #: /var/www/html/cacti/automation_networks.php:218 #, php-format msgid "ERROR: You must specify the Months, Weeks of Months, and Days of Week. Disabling Network %s!" msgstr "错误:您必须指定月份,几个月和几周。 ç¦ç”¨ç½‘络 %s!" #: ../automation_networks.php:215 #, php-format msgid "ERROR: Network '%s' is Invalid." msgstr "错误:网络'%s'无效。" #: ../automation_networks.php:312 msgid "Click 'Continue' to delete the following Network(s)." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹ç½‘络。" #: ../automation_networks.php:319 msgid "Click 'Continue' to enable the following Network(s)." msgstr "点击“继续â€ä»¥å¯ç”¨ä»¥ä¸‹ç½‘络。" #: ../automation_networks.php:326 msgid "Click 'Continue' to disable the following Network(s)." msgstr "点击“继续â€ä»¥ç¦ç”¨ä»¥ä¸‹ç½‘络。" #: ../automation_networks.php:333 msgid "Click 'Continue' to discover the following Network(s)." msgstr "点击“继续â€å‘现以下网络。" #: ../automation_networks.php:340 msgid "Click 'Continue' to cancel on going Network Discovery(s)." msgstr "点击“继续â€ä»¥å–消正在进行的网络å‘现。" #: ../automation_networks.php:347 msgid "You must select at least one Network." msgstr "您必须至少选择一个网络。" #: ../automation_networks.php:378 #: ../automation_networks.php:952 #: ../tree.php:1087 msgid "Manual" msgstr "手动" #: ../automation_networks.php:379 #: ../automation_networks.php:953 #: ../include/global_arrays.php:500 msgid "Daily" msgstr "æ¯æ—¥" #: ../automation_networks.php:380 #: ../automation_networks.php:954 msgid "Weekly" msgstr "æ¯å‘¨" #: ../automation_networks.php:381 #: ../automation_networks.php:955 msgid "Monthly" msgstr "æ¯æœˆä¸€æ¬¡" #: ../automation_networks.php:382 #: ../automation_networks.php:956 msgid "Monthly on Day" msgstr "æ¯æœˆçš„一天" #: ../automation_networks.php:386 #, php-format msgid "Network Discovery Range [edit: %s]" msgstr "网络å‘现范围[编辑: %s]" #: ../automation_networks.php:388 msgid "Network Discovery Range [new]" msgstr "网络å‘现范围[新建]" #: ../automation_networks.php:395 #: ../include/global_form.php:1855 #: ../include/global_form.php:1955 #: ../include/global_settings.php:51 #: ../lib/html_reports.php:30 msgid "General Settings" msgstr "一般设定" #: ../automation_networks.php:400 #: ../automation_snmp.php:645 #: ../data_input.php:468 #: ../data_input.php:502 #: ../data_queries.php:594 #: ../data_queries.php:690 #: ../data_queries.php:910 #: ../data_source_profiles.php:486 #: ../graph_templates.php:423 #: ../include/global_form.php:35 #: ../include/global_form.php:104 #: ../include/global_form.php:154 #: ../include/global_form.php:174 #: ../include/global_form.php:215 #: ../include/global_form.php:339 #: ../include/global_form.php:366 #: ../include/global_form.php:473 #: ../include/global_form.php:930 #: ../include/global_form.php:962 #: ../include/global_form.php:1259 #: ../include/global_form.php:1279 #: ../include/global_form.php:1349 #: ../include/global_form.php:1377 #: ../include/global_form.php:2070 #: ../include/global_form.php:2168 #: ../include/global_form.php:2215 #: ../install/index.php:466 #: ../install/index.php:543 #: ../install/index.php:899 #: ../lib/vdef.php:74 #: ../managers.php:607 #: ../pollers.php:52 #: ../sites.php:40 #: ../user_admin.php:1101 #: ../user_domains.php:317 #: ../utilities.php:466 #: ../utilities.php:2338 msgid "Name" msgstr "åç§°" #: ../automation_networks.php:401 msgid "Give this Network a meaningful name." msgstr "给这个网络一个有æ„义的å字。" #: ../automation_networks.php:404 msgid "New Network Discovery Range" msgstr "新的网络å‘现范围" #: ../automation_networks.php:408 #: ../automation_networks.php:961 #: ../host.php:1330 msgid "Data Collector" msgstr "æ•°æ®æ”¶é›†å™¨" #: ../automation_networks.php:409 #: ../include/global_form.php:1022 msgid "Choose the Cacti Data Collector/Poller to be used to gather data from this Device." msgstr "选择用于从此设备收集数æ®çš„æ”¶é›†æ•°æ®å™¨æˆ–Poller。" #: ../automation_networks.php:416 msgid "Associated Site" msgstr "相关网站" #: ../automation_networks.php:417 msgid "Choose the Cacti Site that you wish to associate discovered Devices with." msgstr "选择您想è¦å°†å‘现的设备与之关è”çš„Cact网站。" #: ../automation_networks.php:425 msgid "Subnet Range" msgstr "å­ç½‘范围" #: ../automation_networks.php:426 msgid "Enter valid Network Ranges separated by commas. You may use an IP address, a Network range such as 192.168.1.0/24 or 192.168.1.0/255.255.255.0, or using wildcards such as 192.168.*.*" msgstr "输入以逗å·åˆ†éš”的有效网络范围。 您å¯ä»¥ä½¿ç”¨IP地å€ï¼Œç½‘络范围(如192.168.1.0/24或192.168.1.0/255.255.255.0),或使用通é…符(如192.168。*。*" #: ../automation_networks.php:435 msgid "Total IP Addresses" msgstr "所有IP地å€" #: ../automation_networks.php:436 msgid "Total addressable IP Addresses in this Network Range." msgstr "此网络范围内的所有å¯å¯»å€IP地å€ã€‚" #: ../automation_networks.php:441 msgid "Alternate DNS Servers" msgstr "备用DNSæœåС噍" #: ../automation_networks.php:442 msgid "A space delimited list of alternate DNS Servers to use for DNS resolution. If blank, the poller OS will be used to resolve DNS names." msgstr "用于DNSè§£æžçš„备用DNSæœåŠ¡å™¨çš„ç©ºæ ¼åˆ†éš”åˆ—è¡¨ã€‚ 如果空白,则使用轮询器æ“作系统æ¥è§£æžDNSå称。" #: ../automation_networks.php:445 msgid "Enter IPs or FQDNs of DNS Servers" msgstr "输入DNSæœåŠ¡å™¨çš„IP或FQDN" #: ../automation_networks.php:449 msgid "Schedule Type" msgstr "计划类型" #: ../automation_networks.php:450 msgid "Define the collection frequency." msgstr "定义收集频率。" #: ../automation_networks.php:457 msgid "Discovery Threads" msgstr "å‘现线程" #: ../automation_networks.php:458 msgid "Define the number of threads to use for discovering this Network Range." msgstr "定义用于å‘现此网络范围的线程数。" #: ../automation_networks.php:461 #, php-format msgid "%d Thread" msgstr "%d 线程" #: ../automation_networks.php:462 #: ../automation_networks.php:463 #: ../automation_networks.php:464 #: ../automation_networks.php:465 #: ../automation_networks.php:466 #: ../automation_networks.php:467 #: ../automation_networks.php:468 #: ../automation_networks.php:469 #: ../automation_networks.php:470 #: ../automation_networks.php:471 #: ../automation_networks.php:472 #: ../include/global_arrays.php:548 #: ../include/global_arrays.php:549 #: ../include/global_arrays.php:550 #: ../include/global_arrays.php:551 #: ../include/global_arrays.php:552 #, php-format msgid "%d Threads" msgstr "%d 线程" #: ../automation_networks.php:478 msgid "Run Limit" msgstr "è¿è¡Œé™åˆ¶" #: ../automation_networks.php:479 msgid "After the selected Run Limit, the discovery process will be terminated." msgstr "在选定的è¿è¡Œé™åˆ¶ä¹‹åŽï¼Œå‘现过程将被终止。" #: ../automation_networks.php:482 #, php-format msgid "%d Minute" msgstr "%d 分钟" #: ../automation_networks.php:483 #: ../automation_networks.php:484 #: ../automation_networks.php:485 #: ../automation_networks.php:486 #: ../data_sources.php:1071 #: ../include/global_arrays.php:490 #: ../include/global_arrays.php:491 #: ../include/global_arrays.php:492 #: ../include/global_arrays.php:493 #: ../include/global_arrays.php:523 #: ../include/global_arrays.php:524 #: ../include/global_arrays.php:525 #: ../include/global_arrays.php:526 #: ../include/global_arrays.php:527 #: ../include/global_arrays.php:528 #: ../include/global_arrays.php:846 #: ../include/global_arrays.php:847 #: ../include/global_arrays.php:1166 #: ../include/global_arrays.php:1170 #: ../include/global_arrays.php:1178 #: ../include/global_arrays.php:1179 #: ../include/global_arrays.php:1201 #: ../include/global_arrays.php:1202 #: ../include/global_arrays.php:1203 #: ../include/global_arrays.php:1204 #: ../include/global_arrays.php:1205 #: ../include/global_arrays.php:1216 #: ../include/global_settings.php:1088 #: ../include/global_settings.php:1089 #: ../include/global_settings.php:1090 #: ../include/global_settings.php:1091 #: ../include/global_settings.php:1092 #: ../include/global_settings.php:1837 #, php-format msgid "%d Minutes" msgstr "%d 分" #: ../automation_networks.php:487 #: ../include/global_arrays.php:1071 #, php-format msgid "%d Hour" msgstr "%då°æ—¶" #: ../automation_networks.php:488 #: ../automation_networks.php:489 #: ../automation_networks.php:490 #: ../data_source_profiles.php:656 #: ../include/global_arrays.php:495 #: ../include/global_arrays.php:496 #: ../include/global_arrays.php:497 #: ../include/global_arrays.php:498 #: ../include/global_arrays.php:499 #: ../include/global_arrays.php:530 #: ../include/global_arrays.php:531 #: ../include/global_arrays.php:532 #: ../include/global_arrays.php:533 #: ../include/global_arrays.php:1072 #: ../include/global_arrays.php:1073 #: ../include/global_arrays.php:1074 #: ../include/global_arrays.php:1075 #: ../include/global_arrays.php:1118 #: ../include/global_arrays.php:1119 #: ../include/global_arrays.php:1120 #: ../include/global_arrays.php:1121 #: ../include/global_arrays.php:1122 #: ../include/global_arrays.php:1139 #: ../include/global_arrays.php:1140 #: ../include/global_arrays.php:1141 #: ../include/global_arrays.php:1142 #: ../include/global_arrays.php:1143 #: ../include/global_settings.php:1094 #: ../include/global_settings.php:1095 #: ../include/global_settings.php:1096 #: ../include/global_settings.php:1097 #, php-format msgid "%d Hours" msgstr "%d æ—¶" #: ../automation_networks.php:497 msgid "Enable this Network Range Enabled." msgstr "å¯ç”¨æ­¤ç½‘络范围已å¯ç”¨ã€‚" #: ../automation_networks.php:502 msgid "Enable NetBIOS" msgstr "å¯ç”¨NetBIOS" #: /var/www/html/cacti/automation_networks.php:524 msgid "Use NetBIOS to attempt to resolve the hostname of up hosts." msgstr "使用NetBIOSå°è¯•è§£æžä¸»æœºçš„主机å。" #: ../automation_networks.php:509 msgid "Automatically Add to Cacti" msgstr "自动添加到Cacti" #: ../automation_networks.php:510 msgid "For any newly discovered Devices that are reachable using SNMP and who match a Device Rule, add them to Cacti." msgstr "对于任何å¯ä»¥ä½¿ç”¨SNMP访问且匹é…设备规则的新å‘现设备,请将其添加到Cacti。" #: ../automation_networks.php:515 msgid "Rerun Data Queries" msgstr "釿–°è¿è¡Œæ•°æ®æŸ¥è¯¢" #: /var/www/html/cacti/automation_networks.php:537 msgid "If a device previously added to Cacti is found, rerun its data queries." msgstr "å¦‚æžœæ‰¾åˆ°å…ˆå‰æ·»åŠ åˆ°Cactiçš„è®¾å¤‡ï¼Œè¯·é‡æ–°è¿è¡Œå…¶æ•°æ®æŸ¥è¯¢ã€‚" #: ../automation_networks.php:521 msgid "Discovery Timing" msgstr "å‘现时机" #: ../automation_networks.php:526 msgid "Starting Date/Time" msgstr "开始日期/æ—¶é—´" #: ../automation_networks.php:527 msgid "What time will this Network discover item start?" msgstr "这个网络å‘现项目什么时候开始?" #: ../automation_networks.php:535 msgid "Rerun Every" msgstr "釿–°è¿è¡Œæ¯ä¸€ä¸ª" #: ../automation_networks.php:536 msgid "Rerun discovery for this Network Range every X." msgstr "æ¯X釿–°è¿è¡Œæ­¤ç½‘络范围的å‘现。" #: ../automation_networks.php:551 msgid "Days of Week" msgstr "星期几" #: ../automation_networks.php:552 #: ../automation_networks.php:610 msgid "What Day(s) of the week will this Network Range be discovered." msgstr "这个网络范围将在一周中的哪一天被å‘现。" #: ../automation_networks.php:554 #: ../automation_networks.php:612 #: ../include/global_arrays.php:1492 msgid "Sunday" msgstr "星期日" #: ../automation_networks.php:555 #: ../automation_networks.php:613 #: ../include/global_arrays.php:1493 msgid "Monday" msgstr "星期一" #: ../automation_networks.php:556 #: ../automation_networks.php:614 #: ../include/global_arrays.php:1494 msgid "Tuesday" msgstr "星期二" #: ../automation_networks.php:557 #: ../automation_networks.php:615 #: ../include/global_arrays.php:1495 msgid "Wednesday" msgstr "星期三" #: ../automation_networks.php:558 #: ../automation_networks.php:616 #: ../include/global_arrays.php:1496 msgid "Thursday" msgstr "星期四" #: ../automation_networks.php:559 #: ../automation_networks.php:617 #: ../include/global_arrays.php:1497 msgid "Friday" msgstr "星期五" #: ../automation_networks.php:560 #: ../automation_networks.php:618 #: ../include/global_arrays.php:1498 msgid "Saturday" msgstr "星期六" #: ../automation_networks.php:567 msgid "Months of Year" msgstr "一年中的月份" #: ../automation_networks.php:568 msgid "What Months(s) of the Year will this Network Range be discovered." msgstr "本年度的哪几个月将会å‘现这个网络范围。" #: ../automation_networks.php:570 #: ../include/global_arrays.php:1462 msgid "January" msgstr "一月" #: ../automation_networks.php:571 #: ../include/global_arrays.php:1463 msgid "February" msgstr "二月" #: ../automation_networks.php:572 #: ../include/global_arrays.php:1464 msgid "March" msgstr "三月" #: ../automation_networks.php:573 #: ../include/global_arrays.php:1465 msgid "April" msgstr "四月" #: ../automation_networks.php:574 #: ../include/global_arrays.php:1466 msgid "May" msgstr "五月" #: ../automation_networks.php:575 #: ../include/global_arrays.php:1467 msgid "June" msgstr "六月" #: ../automation_networks.php:576 #: ../include/global_arrays.php:1468 msgid "July" msgstr "七月" #: ../automation_networks.php:577 #: ../include/global_arrays.php:1469 msgid "August" msgstr "八月" #: ../automation_networks.php:578 #: ../include/global_arrays.php:1470 msgid "September" msgstr "乿œˆ" #: ../automation_networks.php:579 #: ../include/global_arrays.php:1471 msgid "October" msgstr "åæœˆ" #: ../automation_networks.php:580 #: ../include/global_arrays.php:1472 msgid "November" msgstr "å一月" #: ../automation_networks.php:581 #: ../include/global_arrays.php:1473 msgid "December" msgstr "å二月" #: ../automation_networks.php:588 msgid "Days of Month" msgstr "æ¯æœˆçš„几å·" #: ../automation_networks.php:589 msgid "What Day(s) of the Month will this Network Range be discovered." msgstr "本月的哪一天将会å‘现这个网络范围。" #: ../automation_networks.php:590 #: ../automation_networks.php:602 msgid "Last" msgstr "上一个" #: ../automation_networks.php:596 msgid "Week(s) of Month" msgstr "æ¯æœˆçš„第几周" #: ../automation_networks.php:597 msgid "What Week(s) of the Month will this Network Range be discovered." msgstr "本月的第几周将会å‘现这个网络范围。" #: ../automation_networks.php:599 msgid "First" msgstr "第一" #: ../automation_networks.php:600 msgid "Second" msgstr "第二个" #: ../automation_networks.php:601 msgid "Third" msgstr "第三" #: ../automation_networks.php:609 msgid "Day(s) of Week" msgstr "一周几天" #: ../automation_networks.php:625 msgid "Reachability Settings" msgstr "å¯è¾¾æ€§è®¾ç½®" #: ../automation_networks.php:630 #: ../include/global_arrays.php:708 #: ../include/global_form.php:1062 #: ../include/global_form.php:1662 msgid "SNMP Options" msgstr "SNMP的选项" #: ../automation_networks.php:631 msgid "Select the SNMP Options to use for discovery of this Network Range." msgstr "选择用于å‘现此网络范围的SNMP选项。" #: ../automation_networks.php:637 #: ../include/global_form.php:1187 msgid "Ping Method" msgstr "Ping 模å¼" #: ../automation_networks.php:638 msgid "The type of ping packet to send." msgstr "è¦å‘é€çš„ping包的类型。" #: ../automation_networks.php:646 #: ../include/global_form.php:1197 #: ../include/global_settings.php:561 msgid "Ping Port" msgstr "Ping 端å£" #: ../automation_networks.php:648 #: ../include/global_form.php:1199 msgid "TCP or UDP port to attempt connection." msgstr "TCP or UDP port to attempt connection." #: ../automation_networks.php:654 #: ../include/global_form.php:1205 #: ../include/global_settings.php:569 msgid "Ping Timeout Value" msgstr "Ping è¶…æ—¶æ—¶é—´" #: ../automation_networks.php:655 #: ../include/global_form.php:1206 #: ../include/global_settings.php:570 msgid "The timeout value to use for host ICMP and UDP pinging. This host SNMP timeout value applies for SNMP pings." msgstr "用于主机ICMPå’ŒUDP pinging的超时值。此主机SNMP超时值适用于SNMP ping。" #: ../automation_networks.php:663 #: ../include/global_form.php:1214 #: ../include/global_settings.php:577 msgid "Ping Retry Count" msgstr "Ping é‡å¤æ¬¡æ•°" #: ../automation_networks.php:664 #: ../include/global_form.php:1215 msgid "After an initial failure, the number of ping retries Cacti will attempt before failing." msgstr "åˆå§‹å¤±è´¥åŽï¼Œåœ¨å¤±è´¥ä¹‹å‰å°è¯•é‡è¯•Cacti的次数将。" #: ../automation_networks.php:704 msgid "Select the days(s) of the week" msgstr "选择一周中的天数" #: ../automation_networks.php:714 msgid "Select the month(s) of the year" msgstr "选择一年中的月份" #: ../automation_networks.php:724 msgid "Select the day(s) of the month" msgstr "选择月中的一天" #: ../automation_networks.php:734 msgid "Select the week(s) of the month" msgstr "选择月中的周" #: ../automation_networks.php:744 msgid "Select the day(s) of the week" msgstr "选择一周中的æŸä¸€å¤©" #: ../automation_networks.php:817 #: ../automation_networks.php:834 msgid "every X Days" msgstr "æ¯X天" #: ../automation_networks.php:817 #: ../automation_networks.php:834 msgid "every X Weeks" msgstr "æ¯X周" #: ../automation_networks.php:818 msgid "every X Days." msgstr "æ¯X天。" #: ../automation_networks.php:818 #: ../automation_networks.php:835 msgid "every X." msgstr "æ¯X." #: ../automation_networks.php:835 msgid "every X Weeks." msgstr "æ¯X周。" #: ../automation_networks.php:933 msgid "Network Filters" msgstr "网络过滤器" #: ../automation_networks.php:943 #: ../automation_networks.php:1067 #: ../include/global_arrays.php:703 msgid "Networks" msgstr "网络" #: ../automation_networks.php:960 msgid "Network Name" msgstr "网络åå­—" #: ../automation_networks.php:962 msgid "Schedule" msgstr "时间表" #: ../automation_networks.php:963 msgid "Total IPs" msgstr "总IP" #: ../automation_networks.php:964 msgid "The Current Status of this Networks Discovery" msgstr "这个网络å‘现的现状" #: ../automation_networks.php:965 msgid "Pending/Running/Done" msgstr "等待/è¿è¡Œ/完æˆ" #: ../automation_networks.php:965 msgid "Progress" msgstr "进展" #: ../automation_networks.php:966 msgid "Up/SNMP Hosts" msgstr "Up / SNMP主机" #: ../automation_networks.php:967 msgid "Threads" msgstr "线程" #: ../automation_networks.php:968 msgid "Last Runtime" msgstr "上次è¿è¡Œæ—¶é—´" #: ../automation_networks.php:969 msgid "Next Start" msgstr "下一次开始" #: ../automation_networks.php:970 msgid "Last Started" msgstr "最åŽå¼€å§‹" #: ../automation_networks.php:995 #: ../pollers.php:37 #: ../utilities.php:1952 msgid "Running" msgstr "è¿è¡Œ" #: ../automation_networks.php:1015 #: ../pollers.php:38 #: ../utilities.php:1951 msgid "Idle" msgstr "空闲" #: ../automation_networks.php:1036 msgid "No Networks Found" msgstr "找ä¸åˆ°ç½‘络" #: ../graph.php:307 #: ../graph_realtime.php:267 #: ../lib/clog_webapi.php:351 #: ../lib/html_graph.php:319 #: ../lib/html_tree.php:765 #: ../lib/html_tree.php:785 #: ../utilities.php:1020 #: ../utilities.php:1904 msgid "Refresh" msgstr "刷新" #: ../data_sources.php:1067 #: ../include/global_arrays.php:519 #: ../include/global_arrays.php:520 #: ../include/global_arrays.php:521 #: ../include/global_arrays.php:841 #: ../include/global_arrays.php:842 #: ../include/global_arrays.php:843 #: ../include/global_arrays.php:844 #: ../include/global_arrays.php:1160 #: ../include/global_arrays.php:1161 #: ../include/global_arrays.php:1162 #: ../include/global_arrays.php:1163 #: ../include/global_arrays.php:1164 #: ../include/global_arrays.php:1197 #: ../include/global_arrays.php:1198 #: ../include/global_arrays.php:1210 #: ../include/global_arrays.php:1211 #: ../include/global_arrays.php:1212 #: ../include/global_arrays.php:1213 #: ../include/global_arrays.php:1214 #: ../include/global_settings.php:1837 #, php-format msgid "%d Seconds" msgstr "%d ç§’" #: ../automation_networks.php:1085 msgid "Clear Filtered" msgstr "清除筛选" #: ../automation_snmp.php:225 msgid "You must select at least one SNMP Option." msgstr "您必须至少选择一个SNMP选项。" #: ../automation_snmp.php:233 msgid "Click 'Continue' to delete the following SNMP Option(s)." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹SNMP选项。" #: ../automation_snmp.php:240 msgid "Click 'Continue' to duplicate the following SNMP Options. You can optionally change the title format for the new SNMP Options." msgstr "点击“继续â€å¤åˆ¶ä¸‹åˆ—SNMP选项。 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°çš„SNMP选项的标题格å¼ã€‚" #: ../automation_snmp.php:242 msgid "Name Format" msgstr "åç§°æ ¼å¼" #: ../automation_snmp.php:242 msgid "name" msgstr "主机å" #: ../automation_snmp.php:348 msgid "Click 'Continue' to delete the following SNMP Option Item." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹SNMP选项。" #: ../automation_snmp.php:349 msgid "SNMP Option:" msgstr "SNMP选项:" #: ../automation_snmp.php:350 #, php-format msgid "SNMP Version: %s" msgstr "SNMP版本:%s" #: ../automation_snmp.php:351 #, php-format msgid "SNMP Community/Username: %s" msgstr "SNMP连接/用户å:%s" #: ../automation_snmp.php:357 msgid "Remove SNMP Item" msgstr "删除SNMP项目" #: ../automation_snmp.php:416 #, php-format msgid "SNMP Options [edit: %s]" msgstr "SNMP选项[编辑:%s]" #: ../automation_snmp.php:418 msgid "SNMP Options [new]" msgstr "SNMP选项[新建]" #: ../automation_snmp.php:434 #: ../include/global_form.php:1067 #: ../include/global_form.php:1667 msgid "SNMP Version" msgstr "SNMP版本" #: ../automation_snmp.php:435 msgid "Choose the SNMP version for this host." msgstr "选择该主机的SNMP版本。" #: ../automation_snmp.php:443 msgid "SNMP Community String" msgstr "SNMP团体字符串" #: ../automation_snmp.php:444 msgid "Fill in the SNMP read community for this device." msgstr "填写此设备的SNMP读å–社区。" #: /var/www/html/cacti/automation_snmp.php:433 #: /var/www/html/cacti/include/global_form.php:1068 #: /var/www/html/cacti/include/global_form.php:1680 msgid "SNMP Security Level" msgstr "SNMP安全级别" #: /var/www/html/cacti/automation_snmp.php:434 #: /var/www/html/cacti/include/global_form.php:1069 #: /var/www/html/cacti/include/global_form.php:1681 msgid "SNMP v3 Security Level to user for querying the device." msgstr "SNMP v3安全级别供用户查询设备。" #: ../automation_snmp.php:488 #: ../include/global_form.php:1086 #: ../include/global_form.php:1686 msgid "SNMP Username (v3)" msgstr "SNMP 用户å (v3)" #: ../automation_snmp.php:489 #: ../include/global_form.php:1087 #: ../include/global_form.php:1687 msgid "SNMP v3 username for this device." msgstr "此设备的SNMP v3的用户å。" #: ../automation_snmp.php:506 #: ../include/global_form.php:1104 #: ../include/global_form.php:1704 msgid "SNMP Auth Protocol (v3)" msgstr "SNMP 认è¯åè®® (v3)" #: ../automation_snmp.php:507 #: ../include/global_settings.php:499 msgid "Choose the SNMPv3 Authorization Protocol." msgstr "选择SNMPv3的授æƒå议。" #: ../automation_snmp.php:497 #: ../include/global_form.php:1095 msgid "SNMP Password (v3)" msgstr "SNMP å¯†ç  (v3)" #: ../automation_snmp.php:498 msgid "SNMP v3 password for this device." msgstr "此设备的SNMP v3密ç ã€‚" #: ../automation_snmp.php:523 #: ../include/global_form.php:1121 #: ../include/global_form.php:1721 msgid "SNMP Privacy Protocol (v3)" msgstr "SNMP éšç§åè®® (v3)" #: ../automation_snmp.php:524 #: ../include/global_settings.php:513 msgid "Choose the SNMPv3 Privacy Protocol." msgstr "选择SNMPv3çš„éšç§å议。" #: ../automation_snmp.php:514 #: ../include/global_form.php:1112 msgid "SNMP Privacy Passphrase (v3)" msgstr "SNMP éšç§å¯†ç  (v3)" #: ../automation_snmp.php:515 #: ../include/global_form.php:1713 #: ../include/global_settings.php:506 msgid "Choose the SNMPv3 Privacy Passphrase." msgstr "选择SNMPv3çš„éšç§å¯†ç ã€‚" #: ../automation_snmp.php:531 msgid "SNMP Context" msgstr "SNMP的文本" #: ../automation_snmp.php:532 msgid "Enter the SNMP Context to use for this device." msgstr "为此设备输入SNMP相关信æ¯ã€‚" #: ../include/global_form.php:1138 msgid "SNMP Engine ID (v3)" msgstr "SNMP引擎ID(v3)" #: ../include/global_form.php:1139 msgid "Enter the SNMP v3 Engine Id to use for this device. Leave this field empty to use the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "输入用于此设备的SNMP v3引擎ID。 ä¿ç•™æ­¤å­—段为空,以使用æ¯ä¸ªSNMPv3通知接收器定义的SNMP引擎ID。" #: ../automation_snmp.php:452 #: ../include/global_form.php:1147 #: ../include/global_form.php:1737 msgid "SNMP Port" msgstr "SNMP 端å£" #: ../automation_snmp.php:453 msgid "The UDP/TCP Port to poll the SNMP agent on." msgstr "用于轮询SNMP代ç†çš„UDP / TCP端å£ã€‚" #: ../automation_snmp.php:461 #: ../include/global_form.php:1156 #: ../include/global_form.php:1746 msgid "SNMP Timeout" msgstr "SNMP è¶…æ—¶" #: ../automation_snmp.php:462 #: ../include/global_form.php:1157 #: ../include/global_form.php:1747 msgid "The maximum number of milliseconds Cacti will wait for an SNMP response (does not work with php-snmp support)." msgstr "Cacti将等待SNMPå“åº”çš„æœ€å¤§æ¯«ç§’æ•°ï¼ˆä¸æ”¯æŒphp-snmp)。" #: ../automation_snmp.php:470 msgid "SNMP Retries" msgstr "SNMP é‡è¯•" #: ../automation_snmp.php:471 msgid "The maximum number of attempts to reach a device via an SNMP readstring prior to giving up." msgstr "在放弃之å‰é€šè¿‡SNMP读å–字符串连接设备的最大次数。" #: ../automation_snmp.php:479 msgid "Maximum OID's Per Get Request" msgstr "æ¯ä¸ªè¯·æ±‚获å–的最大OID" #: ../automation_snmp.php:480 #: ../include/global_form.php:1166 msgid "Specified the number of OIDs that can be obtained in a single SNMP Get request." msgstr "指定å¯åœ¨å•个SNMP获å–请求中获å–çš„OIDæ•°é‡ã€‚" #: ../automation_snmp.php:544 #: ../include/global_form.php:921 #: ../include/global_form.php:2117 #: ../include/global_form.php:2159 #: ../include/global_form.php:2313 #: ../lib/api_automation.php:1207 #: ../lib/api_automation.php:1269 #: ../lib/api_automation.php:1332 #: ../lib/html_reports.php:399 #: ../lib/html_reports.php:1210 msgid "Sequence" msgstr "排åº" #: ../automation_snmp.php:545 #: ../lib/html_reports.php:400 msgid "Sequence of Item." msgstr "项目顺åºã€‚" #: ../automation_snmp.php:632 #, php-format msgid "SNMP Option Set [edit: %s]" msgstr "SNMP选项集[编辑:%s]" #: ../automation_snmp.php:634 msgid "SNMP Option Set [new]" msgstr "SNMP选项集[新建]" #: ../automation_snmp.php:646 msgid "Fill in the name of this SNMP Option Set." msgstr "填写此SNMP选项集的å称。" #: ../automation_snmp.php:671 #: ../automation_snmp.php:820 msgid "Automation SNMP Options" msgstr "自动化SNMP选项" #: ../automation_snmp.php:674 #: ../cdef.php:584 #: ../lib/api_automation.php:1206 #: ../lib/api_automation.php:1268 #: ../lib/api_automation.php:1331 #: ../lib/html_reports.php:1209 #: ../vdef.php:564 msgid "Item" msgstr "项" #: ../automation_snmp.php:675 #: ../include/auth.php:154 #: ../include/global_settings.php:469 #: ../permission_denied.php:67 #: ../plugins.php:379 msgid "Version" msgstr "版本" #: ../automation_snmp.php:676 #: ../include/global_settings.php:476 msgid "Community" msgstr "团体å" #: ../automation_snmp.php:677 #: ../lib/functions.php:3797 msgid "Port" msgstr "端å£" #: ../automation_snmp.php:678 #: ../include/global_settings.php:518 msgid "Timeout" msgstr "è¶…æ—¶" #: ../automation_snmp.php:679 #: ../include/global_settings.php:534 msgid "Retries" msgstr "é‡è¯•" #: ../automation_snmp.php:680 msgid "Max OIDS" msgstr "最大OIDS" #: ../automation_snmp.php:681 msgid "Auth Username" msgstr "验è¯ç”¨æˆ·å" #: ../automation_snmp.php:682 msgid "Auth Password" msgstr "验è¯å¯†ç " #: ../automation_snmp.php:683 msgid "Auth Protocol" msgstr "身份验è¯åè®®" #: ../automation_snmp.php:684 msgid "Priv Passphrase" msgstr "éšç§å¯†ç " #: ../automation_snmp.php:685 msgid "Priv Protocol" msgstr "éšç§åè®®" #: ../automation_snmp.php:686 msgid "Context" msgstr "Context" #: ../automation_snmp.php:687 #: ../data_queries.php:914 #: ../utilities.php:1600 msgid "Action" msgstr "å¯åЍ" #: ../color_templates.php:93 #: ../lib/api_aggregate.php:1290 #: ../lib/api_aggregate.php:1293 #: ../lib/api_aggregate.php:1297 #: ../lib/html.php:896 #, php-format msgid "Item # %d" msgstr "项 # %d" #: ../automation_snmp.php:700 msgid "none" msgstr "空" #: ../automation_snmp.php:715 #: ../automation_templates.php:545 #: ../cdef.php:607 #: ../color_templates.php:110 #: ../data_queries.php:624 #: ../data_queries.php:722 #: ../lib/api_automation.php:1233 #: ../lib/api_automation.php:1296 #: ../lib/api_automation.php:1360 #: ../lib/html.php:959 #: ../lib/html_reports.php:1284 #: ../lib/html_reports.php:1286 #: ../tree.php:1578 #: ../tree.php:1582 #: ../tree.php:1585 #: ../tree.php:1586 #: ../vdef.php:588 msgid "Move Down" msgstr "下移" #: ../automation_snmp.php:721 #: ../automation_templates.php:551 #: ../cdef.php:613 #: ../color_templates.php:116 #: ../data_queries.php:629 #: ../data_queries.php:727 #: ../lib/api_automation.php:1239 #: ../lib/api_automation.php:1302 #: ../lib/api_automation.php:1366 #: ../lib/html.php:964 #: ../lib/html_reports.php:1286 #: ../lib/html_reports.php:1288 #: ../vdef.php:594 msgid "Move Up" msgstr "上移" #: ../automation_snmp.php:735 msgid "No SNMP Items" msgstr "没有SNMP项目" #: ../automation_snmp.php:770 msgid "Delete SNMP Option Item" msgstr "删除SNMP选项" #: ../automation_snmp.php:834 msgid "SNMP Rules" msgstr "SNMP规则" #: ../automation_snmp.php:923 msgid "SNMP Option Sets" msgstr "SNMP选项集" #: ../automation_snmp.php:932 msgid "SNMP Option Set" msgstr "SNMP选项集" #: ../automation_snmp.php:933 msgid "Networks Using" msgstr "网络使用" #: ../automation_snmp.php:934 msgid "SNMP Entries" msgstr "SNMPæ¡ç›®" #: ../automation_snmp.php:935 msgid "V1 Entries" msgstr "V1æ¡ç›®" #: ../automation_snmp.php:936 msgid "V2 Entries" msgstr "V2æ¡ç›®" #: ../automation_snmp.php:937 msgid "V3 Entries" msgstr "V3æ¡ç›®" #: ../automation_snmp.php:957 msgid "No SNMP Option Sets Found" msgstr "找ä¸åˆ°SNMP选项集" #: ../automation_templates.php:190 msgid "Click 'Continue' to delete the folling Automation Template(s)." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹è‡ªåŠ¨åŒ–æ¨¡æ¿ï¼‰ã€‚" #: ../automation_templates.php:195 msgid "Delete Automation Template(s)" msgstr "删除自动化模æ¿" #: ../automation_templates.php:198 msgid "You must select at least one Automation Template." msgstr "您必须至少选择一个自动化模æ¿ã€‚" #: ../automation_templates.php:300 #: ../include/global_arrays.php:993 #: ../include/global_form.php:1038 #: ../include/global_form.php:1546 #: ../lib/html_reports.php:325 msgid "Device Template" msgstr "设备模æ¿" #: ../automation_templates.php:301 msgid "Select a Device Template that Devices will be matched to." msgstr "选择设备将与之匹é…的设备模æ¿ã€‚" #: ../automation_templates.php:308 msgid "Choose the Availability Method to use for Discovered Devices." msgstr "选择用于å‘现的设备的å¯ç”¨æ€§æ–¹æ³•。" #: ../automation_templates.php:315 #: ../automation_templates.php:514 msgid "System Description Match" msgstr "系统æè¿°åŒ¹é…" #: /var/www/html/cacti/automation_templates.php:288 msgid "This is a unique string that will be matched to a devices sysDescr string to pair it to this Automation Template. Any Perl regular expression can be used in addition to any SQL Where expression." msgstr "这是一个唯一的字符串,它将与设备sysDescr字符串相匹é…,以将其与此自动化模æ¿é…对。 除了任何SQL Where表达å¼ä¹‹å¤–,还å¯ä»¥ä½¿ç”¨ä»»ä½•Perl正则表达å¼ã€‚" #: ../automation_templates.php:322 #: ../automation_templates.php:515 msgid "System Name Match" msgstr "系统å称匹é…" #: ../automation_templates.php:323 msgid "This is a unique string that will be matched to a devices sysName string to pair it to this Automation Template. Any Perl regular expression can be used in addition to any SQL Where expression." msgstr "这是一个唯一的字符串,它将与设备的sysName字符串相匹é…,以便将其与此自动化模æ¿é…对。 除了任何SQL Where表达å¼ä¹‹å¤–,还å¯ä»¥ä½¿ç”¨ä»»ä½•Perl正则表达å¼ã€‚" #: ../automation_templates.php:329 msgid "System OID Match" msgstr "系统 OID 匹é…" #: ../automation_templates.php:330 msgid "This is a unique string that will be matched to a devices sysOid string to pair it to this Automation Template. Any Perl regular expression can be used in addition to any SQL Where expression." msgstr "这是一个唯一的字符串,它将被匹é…到一个设备的sysOid字符串,以将其与该自动化模æ¿é…对。 除了任何SQL Where表达å¼ä¹‹å¤–,还å¯ä»¥ä½¿ç”¨ä»»ä½•Perl正则表达å¼ã€‚" #: ../automation_templates.php:350 #, php-format msgid "Automation Templates [edit: %s]" msgstr "自动化模æ¿[编辑:%s]" #: /var/www/html/cacti/automation_templates.php:329 msgid "Automation Templates for [Deleted Template]" msgstr "[已删除模æ¿]的自动化模æ¿" #: ../automation_templates.php:352 msgid "Automation Templates [new]" msgstr "动化模æ¿[新建]" #: ../automation_templates.php:403 msgid "Device Automation Templates" msgstr "设备自动化模æ¿" #: ../automation_templates.php:512 #: ../data_sources.php:1410 #: ../graphs.php:1789 #: ../user_admin.php:1384 #: ../user_group_admin.php:1109 msgid "Template Name" msgstr "模æ¿åç§°" #: ../automation_templates.php:516 msgid "System ObjectId Match" msgstr "系统ObjectId匹é…" #: ../automation_templates.php:520 #: ../data_queries.php:595 #: ../data_queries.php:691 #: ../links.php:382 #: ../tree.php:1563 msgid "Order" msgstr "命令" #: ../automation_templates.php:530 msgid "Unknown Template" msgstr "未知的模æ¿" #: ../automation_templates.php:565 msgid "No Automation Device Templates Found" msgstr "未找到自动化设备模æ¿" #: ../automation_tree_rules.php:253 msgid "Click 'Continue' to delete the following Rule(s)." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹è§„则。" #: ../automation_tree_rules.php:260 msgid "Click 'Continue' to duplicate the following Rule(s). You can optionally change the title format for the new Rules." msgstr "点击“继续â€å¤åˆ¶ä»¥ä¸‹è§„则。 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°è§„则的标题格å¼ã€‚" #: ../automation_tree_rules.php:379 msgid "Created Trees" msgstr "创建树" #: ../automation_tree_rules.php:471 #, php-format msgid "Are you sure you want to DELETE the Rule '%s'?" msgstr "你确定è¦åˆ é™¤è§„则 '%s'å—?" #: ../automation_tree_rules.php:529 msgid "Eligible Objects" msgstr "åˆæ ¼å¯¹è±¡" #: ../automation_tree_rules.php:542 #, php-format msgid "Tree Rule Selection [edit: %s]" msgstr "树规则选择[编辑:%s]" #: ../automation_tree_rules.php:544 msgid "Tree Rules Selection [new]" msgstr "树规则选择[新建]" #: /var/www/html/cacti/automation_tree_rules.php:595 msgid "Object Selection Criteria" msgstr "对象选择标准" #: /var/www/html/cacti/automation_tree_rules.php:601 msgid "Tree Creation Criteria" msgstr "树创建标准" #: ../automation_tree_rules.php:706 #: ../automation_tree_rules.php:731 #: ../automation_tree_rules.php:833 #: ../include/global_arrays.php:707 #: ../include/global_form.php:1576 #: ../lib/functions.php:2610 msgid "Tree Rules" msgstr "树规则" #: ../automation_tree_rules.php:844 msgid "Hook into Tree" msgstr "钩入树" #: ../automation_tree_rules.php:845 msgid "At Subtree" msgstr "åœ¨å­æ ‘" #: ../automation_tree_rules.php:846 msgid "This Type" msgstr "这个类型" #: ../automation_tree_rules.php:847 msgid "Using Grouping" msgstr "使用分组" #: ../automation_tree_rules.php:856 msgid "ROOT" msgstr "ROOT" #: ../automation_tree_rules.php:872 msgid "No Tree Rules Found" msgstr "找ä¸åˆ°æ ‘规则" #: ../cdef.php:277 msgid "Click 'Continue' to delete the following CDEF." msgid_plural "Click 'Continue' to delete all following CDEFs." msgstr[0] "点击“继续â€åˆ é™¤ä¸‹é¢çš„CDEF。" #: ../cdef.php:282 msgid "Delete CDEF" msgid_plural "Delete CDEFs" msgstr[0] "删除CDEF" #: ../cdef.php:286 msgid "Click 'Continue' to duplicate the following CDEF. You can optionally change the title format for the new CDEF." msgid_plural "Click 'Continue' to duplicate the following CDEFs. You can optionally change the title format for the new CDEFs." msgstr[0] "点击“继续â€å¤åˆ¶ä¸‹é¢çš„CDEF。 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°CDEF的标题格å¼ã€‚" #: ../color_templates.php:238 #: ../data_source_profiles.php:272 #: ../data_templates.php:364 #: ../graph_templates.php:323 #: ../host_templates.php:267 #: ../vdef.php:276 msgid "Title Format:" msgstr "标题格å¼ï¼š" #: ../cdef.php:292 msgid "Duplicate CDEF" msgid_plural "Duplicate CDEFs" msgstr[0] "é‡å¤çš„CDEF" #: ../cdef.php:295 msgid "You must select at least one CDEF." msgstr "You must select at least one CDEF." #: ../cdef.php:337 msgid "Click 'Continue' to delete the following CDEF Item." msgstr "点击“继续â€åˆ é™¤ä¸‹é¢çš„CDEF项目。" #: ../cdef.php:338 #, php-format msgid "CDEF Name: '%s'" msgstr "CDEFå称:'%s'" #: ../cdef.php:345 msgid "Remove CDEF Item" msgstr "删除CDEF项目" #: ../cdef.php:424 #| msgid "Preview" msgid "CDEF Preview" msgstr "CDEF 预览" #: ../cdef.php:430 #, php-format msgid "CDEF Items [edit: %s]" msgstr "CDEF项目[编辑:%s]" #: ../cdef.php:442 msgid "CDEF Item Type" msgstr "CDEF 类型" #: ../cdef.php:443 msgid "Choose what type of CDEF item this is." msgstr "选择这是什么类型的CDEF项目。" #: ../cdef.php:464 msgid "CDEF Item Value" msgstr "CDEF 值" #: ../cdef.php:465 msgid "Enter a value for this CDEF item." msgstr "为 CDEF 输入一个值。" #: ../cdef.php:558 #, php-format msgid "CDEF [edit: %s]" msgstr "CDEF[编辑: %s]" #: ../cdef.php:560 msgid "CDEF [new]" msgstr "CDEF[新建]" #: ../cdef.php:581 #: ../lib/functions.php:1986 msgid "CDEF Items" msgstr "CDEF é …ç›®" #: ../cdef.php:585 #: ../vdef.php:565 msgid "Item Value" msgstr "项目值" #: ../cdef.php:598 #: ../vdef.php:579 #, php-format msgid "Item #%d" msgstr "项 #%d " #: ../cdef.php:657 msgid "Delete CDEF Item" msgstr "删除CDEF项目" #: ../cdef.php:713 #: ../cdef.php:728 #: ../cdef.php:842 #: ../include/global_arrays.php:712 #: ../lib/functions.php:1968 msgid "CDEFs" msgstr "CDEF" #: ../cdef.php:851 msgid "CDEF Name" msgstr "CDEFåç§°" #: ../cdef.php:851 #: ../data_source_profiles.php:847 msgid "The name of this CDEF." msgstr "CDEFçš„å称。" #: ../cdef.php:852 msgid "CDEFs that are in use cannot be Deleted. In use is defined as being referenced by a Graph or a Graph Template." msgstr "正在被图形或图形模æ¿å¼•用的CDEFä¸èƒ½è¢«åˆ é™¤ã€‚" #: ../cdef.php:853 msgid "The number of Graphs using this CDEF." msgstr "使用此CDEF的图的数é‡ã€‚" #: ../cdef.php:854 #: ../color.php:701 #: ../data_input.php:725 #: ../data_queries.php:1156 #: ../data_source_profiles.php:854 #: ../gprint_presets.php:394 #: ../vdef.php:848 msgid "Templates Using" msgstr "使用中的模æ¿" #: ../cdef.php:854 msgid "The number of Graphs Templates using this CDEF." msgstr "使用此CDEF的图形模æ¿çš„æ•°é‡ã€‚" #: ../cdef.php:876 msgid "No CDEFs" msgstr "No CDEFs" #: ../clog.php:33 #: ../clog_user.php:32 msgid "FATAL: YOU DO NO HAVE ACCESS TO THIS AREA OF CACTI" msgstr "失败:你ä¸èƒ½è®¿é—®è¿™ä¸ªåœ°åŒºçš„CACTI" #: ../color.php:170 msgid "Unnamed Color" msgstr "æ— å的颜色" #: ../color.php:187 msgid "Click 'Continue' to delete the following Color" msgid_plural "Click 'Continue' to delete the following Colors" msgstr[0] "点击“继续â€åˆ é™¤ä»¥ä¸‹é¢œè‰²" #: ../color.php:192 msgid "Delete Color" msgid_plural "Delete Colors" msgstr[0] "删除颜色" #: ../color.php:195 msgid "You must select at least one Color." msgstr "您必须至少选择一ç§é¢œè‰²ã€‚" #: ../color.php:351 msgid "Cacti has imported the following items:" msgstr "Cacti导入了以下æ¡ç›®ï¼š" #: ../color.php:365 #: ../color.php:568 msgid "Import Colors" msgstr "导入颜色" #: ../color.php:368 msgid "Import Colors from Local File" msgstr "从本地文件导入颜色" #: ../color.php:369 msgid "Please specify the location of the CSV file containing your Color information." msgstr "è¯·æŒ‡å®šåŒ…å«æ‚¨çš„颜色信æ¯çš„CSV文件的ä½ç½®ã€‚" #: ../color.php:373 #: ../lib/html_form.php:463 msgid "Select a File" msgstr "选择一个文件" #: ../color.php:380 msgid "Overwrite Existing Data?" msgstr "覆盖现有数æ®ï¼Ÿ" #: ../color.php:381 msgid "Should the import process be allowed to overwrite existing data? Please note, this does not mean delete old rows, only update duplicate rows." msgstr "是å¦åº”该å…许导入过程覆盖现有的数æ®ï¼Ÿ 请注æ„ï¼Œè¿™å¹¶ä¸æ„味ç€åˆ é™¤æ—§çš„行,åªä¼šæ›´æ–°é‡å¤çš„行。" #: ../color.php:384 msgid "Allow Existing Rows to be Updated?" msgstr "å…许更新现有的行?" #: ../color.php:389 msgid "Required File Format Notes" msgstr "必需的文件格å¼è¯´æ˜Ž" #: ../color.php:392 msgid "The file must contain a header row with the following column headings." msgstr "该文件必须包å«å…·æœ‰ä»¥ä¸‹åˆ—标题的标题行。" #: ../color.php:394 msgid "name - The Color Name" msgstr "åç§° - 颜色åç§°" #: ../color.php:395 msgid "hex - The Hex Value" msgstr "å六进制 - å六进制值" #: ../color.php:416 #, php-format msgid "Colors [edit: %s]" msgstr "颜色[编辑: %s]" #: ../color.php:418 msgid "Colors [new]" msgstr "颜色[新建]" #: ../color.php:520 #: ../color.php:535 #: ../include/global_arrays.php:714 #: ../lib/functions.php:2034 msgid "Colors" msgstr "颜色" #: ../color.php:553 msgid "Named Colors" msgstr "命å的颜色" #: ../color.php:568 #: ../lib/html_form.php:1126 msgid "Import" msgstr "导入" #: ../color.php:571 msgid "Export Colors" msgstr "导出颜色" #: ../color.php:695 #: ../color_templates.php:74 msgid "Hex" msgstr "å六进制" #: ../color.php:695 msgid "The Hex Value for this Color." msgstr "这个颜色的å六进制值。" #: ../color.php:696 msgid "Color Name" msgstr "颜色åç§°" #: ../color.php:696 msgid "The name of this Color definition." msgstr "此颜色定义的å称。" #: ../color.php:697 msgid "Is this color a named color which are read only." msgstr "è¿™ç§é¢œè‰²æ˜¯åªè¯»çš„命å颜色。" #: ../color.php:697 msgid "Named Color" msgstr "命å的颜色" #: ../color.php:698 #: ../color_templates.php:73 #: ../include/global_arrays.php:700 #: ../include/global_form.php:812 #: ../include/global_form.php:2058 msgid "Color" msgstr "颜色" #: ../color.php:698 msgid "The Color as shown on the screen." msgstr "颜色如å±å¹•上所示。" #: ../color.php:699 msgid "Colors in use cannot be Deleted. In use is defined as being referenced either by a Graph or a Graph Template." msgstr "正在由图形或图形模æ¿å¼•用的颜色ä¸èƒ½è¢«åˆ é™¤ã€‚ " #: ../color.php:700 msgid "The number of Graph using this Color." msgstr "使用此颜色的图形的数é‡ã€‚" #: ../color.php:701 msgid "The number of Graph Templates using this Color." msgstr "使用此颜色的图形模æ¿çš„æ•°é‡ã€‚" #: ../color.php:731 msgid "No Colors Found" msgstr "找ä¸åˆ°é¢œè‰²" #: ../color_templates.php:72 msgid "Color Item" msgstr "颜色项目" #: ../color_templates.php:132 #: ../graph_templates_inputs.php:222 #: ../lib/api_aggregate.php:1349 #: ../lib/html.php:978 msgid "No Items" msgstr "无项目" #: ../color_templates.php:227 msgid "Click 'Continue' to delete the following Color Template" msgid_plural "Click 'Continue' to delete following Color Templates" msgstr[0] "点击“继续â€åˆ é™¤ä»¥ä¸‹é¢œè‰²æ¨¡æ¿" #: ../color_templates.php:232 msgid "Delete Color Template" msgid_plural "Delete Color Templates" msgstr[0] "删除颜色模æ¿" #: ../color_templates.php:236 msgid "Click 'Continue' to duplicate the following Color Template. You can optionally change the title format for the new color template." msgid_plural "Click 'Continue' to duplicate following Color Templates. You can optionally change the title format for the new color templates." msgstr[0] "点击“继续â€å¤åˆ¶ä¸‹é¢çš„颜色模æ¿ã€‚ 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°é¢œè‰²æ¨¡æ¿çš„æ ‡é¢˜æ ¼å¼ã€‚" #: ../color_templates.php:242 msgid "Duplicate Color Template" msgid_plural "Duplicate Color Templates" msgstr[0] "é‡å¤çš„颜色模æ¿" #: ../color_templates.php:245 msgid "You must select at least one Color Template." msgstr "您必须至少选择一个颜色模æ¿ã€‚" #: ../color_templates.php:278 msgid "Color Template Items [new]" msgstr "颜色模æ¿é¡¹ç›®[新建]" #: ../color_templates.php:289 #, php-format msgid "Color Template Items [edit: %s]" msgstr "颜色模æ¿é¡¹ç›®[编辑:%s]" #: ../color_templates.php:322 msgid "Delete Color Item" msgstr "删除颜色项目" #: ../color_templates.php:349 #, php-format msgid "Color Template [edit: %s]" msgstr "颜色模æ¿[编辑:%s]" #: ../color_templates.php:351 msgid "Color Template [new]" msgstr "颜色模æ¿[新建]" #: ../color_templates.php:432 #: ../color_templates.php:445 #: ../lib/functions.php:2508 msgid "Color Templates" msgstr "颜色模æ¿" #: ../color_templates.php:548 msgid "Color Templates that are in use cannot be Deleted. In use is defined as being referenced by an Aggregate Template." msgstr "正在被èšåˆæ¨¡æ¿å¼•用的颜色模æ¿ä¸èƒ½è¢«åˆ é™¤ã€‚ " #: ../color_templates.php:573 msgid "No Color Templates Found" msgstr "没有找到颜色模æ¿" #: ../color_templates_items.php:273 msgid "Click 'Continue' to delete the following Color Template Color." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹é¢œè‰²æ¨¡æ¿é¢œè‰²ã€‚" #: ../color_templates_items.php:274 msgid "Color Name:" msgstr "颜色å称:" #: ../color_templates_items.php:275 msgid "Color Hex:" msgstr "颜色å六进制:" #: ../color_templates_items.php:281 msgid "Remove Color Item" msgstr "删除颜色项目" #: ../color_templates_items.php:339 #, php-format msgid "Color Template Items [edit Report Item: %s]" msgstr "颜色模æ¿é¡¹ç›®[编辑报告项目:%s]" #: ../color_templates_items.php:342 #, php-format msgid "Color Template Items [new Report Item: %s]" msgstr "颜色模æ¿é¡¹ç›®[新建报告项目:%s]" #: ../data_input.php:212 msgid "Click 'Continue' to delete the following Data Input Method" msgid_plural "Click 'Continue' to delete the following Data Input Method" msgstr[0] "点击“继续â€åˆ é™¤ä»¥ä¸‹æ•°æ®è¾“入方法" #: ../data_input.php:218 msgid "Delete Data Input Method" msgid_plural "Delete Data Input Methods" msgstr[0] "删除数æ®è¾“入法" #: ../data_input.php:220 msgid "You must select at least one data input method." msgstr "æ‚¨å¿…é¡»è‡³å°‘é€‰æ‹©ä¸€ç§æ•°æ®è¾“入方å¼ã€‚" #: ../data_input.php:259 msgid "Click 'Continue' to delete the following Data Input Field." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹æ•°æ®è¾“入字段。" #: ../data_input.php:260 #, php-format msgid "Field Name: %s" msgstr "字段åç§°: %s" #: ../data_input.php:261 #, php-format msgid "Friendly Name: %s" msgstr "å‹å¥½åç§°: %s" #: ../data_input.php:267 #: ../host_templates.php:335 #: ../host_templates.php:395 msgid "Remove Data Input Field" msgstr "删除数æ®è¾“入字段" #: ../data_input.php:362 #, php-format msgid "Output Fields [edit: %s]" msgstr "输出字段[编辑:%s]" #: ../data_input.php:363 #: ../include/global_form.php:461 msgid "Output Field" msgstr "Output Field" #: ../data_input.php:365 #, php-format msgid "Input Fields [edit: %s]" msgstr "输入字段[编辑: %s]" #: ../data_input.php:366 msgid "Input Field" msgstr "输入字段" #: ../data_input.php:432 #, php-format msgid "Data Input Methods [edit: %s]" msgstr "æ•°æ®è¾“入方法[编辑: %s]" #: ../data_input.php:434 msgid "Data Input Methods [new]" msgstr "æ•°æ®è¾“入方法[新建]" #: ../data_input.php:444 #: ../include/global_arrays.php:316 msgid "SNMP Get" msgstr "SNMP获å–" #: ../data_input.php:447 #: ../include/global_arrays.php:317 msgid "SNMP Query" msgstr "SNMP查询" #: ../data_input.php:450 #: ../include/global_arrays.php:319 msgid "Script Query" msgstr "脚本查询" #: ../data_input.php:453 #: ../include/global_arrays.php:321 msgid "Script Query - Script Server" msgstr "脚本查询 - 脚本æœåС噍" #: ../data_input.php:466 msgid "Input Fields" msgstr "导入字段" #: ../data_input.php:469 #: ../data_input.php:503 msgid "Field Order" msgstr "字段顺åº" #: ../data_input.php:470 #: ../data_input.php:504 #: ../include/global_form.php:275 msgid "Friendly Name" msgstr "å‹å¥½åç§°" #: ../data_input.php:484 #: ../data_input.php:519 msgid "(Not In Use)" msgstr " (ä¸ä½¿ç”¨)" #: ../data_input.php:496 msgid "No Input Fields" msgstr "无法导入字段" #: ../data_input.php:500 msgid "Output Fields" msgstr "æ•°æ®å­—段" #: ../data_input.php:505 msgid "Update RRA" msgstr "æ›´æ–° RRA" #: ../data_input.php:534 msgid "No Output Fields" msgstr "无输出字段" #: ../data_input.php:556 #: ../host_templates.php:600 msgid "Delete Data Input Field" msgstr "删除数æ®è¾“入字段" #: ../data_input.php:610 #: ../include/global_arrays.php:693 #: ../include/global_arrays.php:861 #: ../lib/functions.php:2172 msgid "Data Input Methods" msgstr "æ•°æ®å¯¼å…¥æ–¹æ³•" #: ../data_input.php:625 #: ../data_input.php:713 msgid "Input Methods" msgstr "输入法" #: ../data_input.php:722 msgid "Data Input Name" msgstr "æ•°æ®è¾“å…¥åç§°" #: ../data_input.php:722 msgid "The name of this Data Input Method." msgstr "此数æ®è¾“入方法的å称。" #: ../data_input.php:723 msgid "Data Inputs that are in use cannot be Deleted. In use is defined as being referenced either by a Data Source or a Data Template." msgstr "æ­£åœ¨ç”±æ•°æ®æºæˆ–æ•°æ®æ¨¡æ¿å¼•用的数æ®è¾“å…¥ä¸èƒ½è¢«åˆ é™¤ã€‚" #: ../data_input.php:724 #: ../data_source_profiles.php:853 #: ../data_templates.php:912 msgid "Data Sources Using" msgstr "æ•°æ®æºä½¿ç”¨" #: ../data_input.php:724 msgid "The number of Data Sources that use this Data Input Method." msgstr "使用此数æ®è¾“å…¥æ–¹æ³•çš„æ•°æ®æºçš„æ•°é‡ã€‚" #: ../data_input.php:725 msgid "The number of Data Templates that use this Data Input Method." msgstr "使用此数æ®è¾“å…¥æ–¹æ³•çš„æ•°æ®æ¨¡æ¿çš„æ•°é‡ã€‚" #: ../data_input.php:726 #: ../data_queries.php:1157 #: ../include/global_arrays.php:985 #: ../include/global_form.php:385 #: ../include/global_form.php:1304 msgid "Data Input Method" msgstr "æ•°æ®å¯¼å…¥æ–¹æ³•" #: ../data_input.php:726 msgid "The method used to gather information for this Data Input Method." msgstr "用于收集此数æ®è¾“入方法信æ¯çš„æ–¹æ³•。" #: ../data_input.php:749 msgid "No Data Input Methods Found" msgstr "没有找到数æ®è¾“入方法" #: ../data_queries.php:316 msgid "Click 'Continue' to delete the following Data Query." msgid_plural "Click 'Continue' to delete following Data Queries." msgstr[0] "点击“继续â€åˆ é™¤ä»¥ä¸‹æ•°æ®æŸ¥è¯¢ã€‚" #: ../data_queries.php:322 msgid "Delete Data Query" msgid_plural "Delete Data Query" msgstr[0] "åˆ é™¤æ•°æ®æŸ¥è¯¢" #: ../data_queries.php:324 msgid "You must select at least one data query." msgstr "æ‚¨å¿…é¡»è‡³å°‘é€‰æ‹©ä¸€ä¸ªæ•°æ®æŸ¥è¯¢ã€‚" #: ../data_queries.php:419 msgid "Click 'Continue' to delete the following Data Query Graph Association." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹æ•°æ®æŸ¥è¯¢å›¾å½¢å…³è”。" #: ../data_queries.php:420 #, php-format msgid "Graph Name: %s" msgstr "图表åç§°: %s" #: ../data_queries.php:426 #: ../vdef.php:333 msgid "Remove VDEF Item" msgstr "删除VDEF项目" #: ../data_queries.php:479 #, php-format msgid "Associated Graph/Data Templates [edit: %s]" msgstr "å…³è”的图形/æ•°æ®æ¨¡æ¿[编辑:%s]" #: ../data_queries.php:502 msgid "Associated Data Templates" msgstr "å…³è”çš„æ•°æ®æ¨¡æ¿" #: ../data_queries.php:520 #, php-format msgid "Data Template - %s" msgstr "æ•°æ®æ¨¡æ¿ - %s" #: ../data_queries.php:550 #: ../data_sources.php:881 #: ../data_templates.php:516 #: ../include/global_arrays.php:698 #: ../include/global_form.php:797 #: ../lib/api_aggregate.php:1215 #: ../lib/html.php:856 msgid "Data Source" msgstr "æ•°æ®æº" #: /var/www/html/cacti/data_queries.php:642 msgid "Suggested Values - Graphs" msgstr "建议值 - 图形" #: ../data_queries.php:596 #: ../data_queries.php:692 msgid "Equation" msgstr "方程" #: ../data_queries.php:647 #: ../data_queries.php:746 msgid "No Suggested Values Found" msgstr "找ä¸åˆ°å»ºè®®çš„值" #: ../data_queries.php:656 #: ../data_queries.php:755 #: ../include/global_form.php:2093 #: ../include/global_form.php:2135 #: ../lib/api_automation.php:1333 #: ../utilities.php:1409 msgid "Field Name" msgstr "字段åç§°" #: ../data_queries.php:662 #: ../data_queries.php:761 msgid "Suggested Value" msgstr "建议值" #: ../data_queries.php:668 #: ../data_queries.php:767 #: ../host.php:762 #: ../host.php:879 #: ../host_templates.php:515 #: ../host_templates.php:569 #: ../lib/html.php:37 #: ../lib/html_filter.php:55 msgid "Add" msgstr "添加" #: ../data_queries.php:668 msgid "Add Graph Title Suggested Name" msgstr "添加图表标题建议的åç§°" #: /var/www/html/cacti/data_queries.php:738 msgid "Suggested Values - Data Sources" msgstr "建议的值 - æ•°æ®æº" #: ../data_queries.php:767 msgid "Add Data Source Name Suggested Name" msgstr "æ·»åŠ æ•°æ®æºå称建议的åç§°" #: ../data_queries.php:874 #, php-format msgid "Data Queries [edit: %s]" msgstr "æ•°æ®æŸ¥è¯¢[编辑:%s]" #: ../data_queries.php:876 msgid "Data Queries [new]" msgstr "æ•°æ®æŸ¥è¯¢[新建]" #: ../data_queries.php:896 msgid "Successfully located XML file" msgstr "æˆåŠŸæ‰¾åˆ°XML文件" #: ../data_queries.php:899 msgid "Could not locate XML file." msgstr "找ä¸åˆ°XML文件。" #: ../data_queries.php:907 #: ../host.php:681 #: ../host_templates.php:466 #: ../lib/functions.php:2226 msgid "Associated Graph Templates" msgstr "å…³è”图形模æ¿" #: ../data_queries.php:911 #: ../graph_templates.php:761 #: ../graphs_new.php:597 #: ../host.php:685 #: ../lib/api_automation.php:563 msgid "Graph Template Name" msgstr "图形模æ¿åç§°" #: ../data_queries.php:913 msgid "Mapping ID" msgstr "映射ID" #: ../data_queries.php:954 msgid "Mapped Graph Templates with Graphs are read only" msgstr "å¸¦å›¾å½¢çš„æ˜ å°„å›¾å½¢æ¨¡æ¿æ˜¯åªè¯»çš„" #: ../data_queries.php:961 msgid "No Graph Templates Defined." msgstr "无图形模æ¿å®šä¹‰ã€‚" #: ../data_queries.php:985 msgid "Delete Associated Graph" msgstr "删除关è”图" #: ../data_queries.php:1039 #: ../data_queries.php:1054 #: ../data_queries.php:1143 #: ../include/global_arrays.php:692 #: ../include/global_arrays.php:862 #: ../lib/api_automation.php:1027 #: ../lib/functions.php:2208 msgid "Data Queries" msgstr "æ•°æ®æŸ¥è¯¢" #: ../data_queries.php:1152 #: ../host.php:776 #: ../utilities.php:1409 msgid "Data Query Name" msgstr "æ•°æ®æŸ¥è¯¢åç§°" #: ../data_queries.php:1152 msgid "The name of this Data Query." msgstr "è¿™ä¸ªæ•°æ®æŸ¥è¯¢çš„å称。" #: ../data_queries.php:1153 #: ../graph_templates.php:762 msgid "The internal ID for this Graph Template. Useful when performing automation or debugging." msgstr "此图表模æ¿çš„内部标识。 执行自动化或调试时很有用。" #: ../data_queries.php:1154 msgid "Data Queries that are in use cannot be Deleted. In use is defined as being referenced by either a Graph or a Graph Template." msgstr "æ­£åœ¨ä½¿ç”¨çš„æ•°æ®æŸ¥è¯¢ä¸èƒ½è¢«åˆ é™¤ã€‚ 在使用中被定义为被图形或图形模æ¿å¼•用。" #: ../data_queries.php:1155 msgid "The number of Graphs using this Data Query." msgstr "ä½¿ç”¨æ­¤æ•°æ®æŸ¥è¯¢çš„图的数é‡ã€‚" #: ../data_queries.php:1156 msgid "The number of Graphs Templates using this Data Query." msgstr "ä½¿ç”¨æ­¤æ•°æ®æŸ¥è¯¢çš„图形模æ¿çš„æ•°é‡ã€‚" #: ../data_queries.php:1157 msgid "The Data Input Method used to collect data for Data Sources associated with this Data Query." msgstr "ç”¨äºŽæ”¶é›†ä¸Žæ­¤æ•°æ®æŸ¥è¯¢å…³è”çš„æ•°æ®æºçš„æ•°æ®çš„æ•°æ®è¾“入方法。" #: ../data_queries.php:1181 msgid "No Data Queries Found" msgstr "æ²¡æœ‰æ‰¾åˆ°æ•°æ®æŸ¥è¯¢" #: ../data_source_profiles.php:261 msgid "Click 'Continue' to delete the following Data Source Profile" msgid_plural "Click 'Continue' to delete following Data Source Profiles" msgstr[0] "点击“继续â€åˆ é™¤ä»¥ä¸‹æ•°æ®æºé…置文件" #: ../data_source_profiles.php:266 msgid "Delete Data Source Profile" msgid_plural "Delete Data Source Profiles" msgstr[0] "åˆ é™¤æ•°æ®æºé…置文件" #: ../data_source_profiles.php:270 msgid "Click 'Continue' to duplicate the following Data Source Profile. You can optionally change the title format for the new Data Source Profile" msgid_plural "Click 'Continue' to duplicate following Data Source Profiles. You can optionally change the title format for the new Data Source Profiles." msgstr[0] "点击“继续â€å¤åˆ¶ä»¥ä¸‹æ•°æ®æºé…置文件。 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°æ•°æ®æºé…置文件的标题格å¼" #: ../data_source_profiles.php:276 msgid "Duplicate Data Source Profile" msgid_plural "Duplicate Date Source Profiles" msgstr[0] "é‡å¤çš„æ•°æ®æºé…置文件" #: ../data_source_profiles.php:279 msgid "You must select at least one Data Source Profile." msgstr "æ‚¨å¿…é¡»è‡³å°‘é€‰æ‹©ä¸€ä¸ªæ•°æ®æºé…置文件。" #: ../data_source_profiles.php:318 msgid "Click 'Continue' to delete the following Data Source Profile RRA." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹æ•°æ®æºé…置文件RRA。" #: ../data_source_profiles.php:319 #, php-format msgid "Profile Name: %s" msgstr "模å—å称:%s" #: ../data_source_profiles.php:325 msgid "Remove Data Source Profile RRA" msgstr "åˆ é™¤æ•°æ®æºé…置文件RRA" #: ../data_source_profiles.php:374 #: ../data_source_profiles.php:384 msgid "Each Insert is New Row" msgstr "æ¯ä¸ªæ’入是新行" #: /var/www/html/cacti/data_source_profiles.php:441 msgid "(Some Elements Read Only)" msgstr "(æŸäº›å…ƒç´ åªè¯»ï¼‰" #: /var/www/html/cacti/data_source_profiles.php:441 #, php-format msgid "RRA [edit: %s %s]" msgstr "RRA [编辑: %s %s]" #: ../data_source_profiles.php:460 #, php-format msgid "Data Source Profile [edit: %s]" msgstr "æ•°æ®æºé…置文件[编辑:%s]" #: ../data_source_profiles.php:462 msgid "Data Source Profile [new]" msgstr "æ•°æ®æºé…置文件[新建]" #: ../data_source_profiles.php:480 msgid "Data Source Profile RRAs (press save to update timespans)" msgstr "æ•°æ®æºé…置文件RRA(按ä¿å­˜æ›´æ–°timespans)" #: ../data_source_profiles.php:482 msgid "Data Source Profile RRAs (Read Only)" msgstr "æ•°æ®æºé…置文件RRAs(åªè¯»ï¼‰" #: /var/www/html/cacti/data_source_profiles.php:556 #: /var/www/html/cacti/include/global_form.php:134 msgid "Data Retention" msgstr "æ•°æ®ä¿ç•™" #: ../include/global_settings.php:731 #: ../lib/html_reports.php:365 msgid "Graph Timespan" msgstr "图形时间跨度" #: ../data_source_profiles.php:488 msgid "Steps" msgstr "跳数" #: ../data_source_profiles.php:489 #: ../graphs_new.php:526 #: ../include/global_form.php:121 #: ../lib/html.php:323 #: ../lib/html_filter.php:73 #: ../lib/rrd.php:2689 #: ../pollers.php:523 #: ../utilities.php:468 #: ../utilities.php:1322 msgid "Rows" msgstr "行数:" #: ../data_source_profiles.php:535 msgid "Select Consolidation Function(s)" msgstr "选择åˆå¹¶åŠŸèƒ½" #: ../data_source_profiles.php:561 msgid "Delete Data Source Profile Item" msgstr "åˆ é™¤æ•°æ®æºé…置文件项目" #: /var/www/html/cacti/data_source_profiles.php:693 #, php-format msgid "%s KBytes per Data Sources and %s Bytes for the Header" msgstr "æ¯ä¸ªæ•°æ®æºçš„%sKBytes和标题的%sKBytes" #: /var/www/html/cacti/data_source_profiles.php:702 #, php-format msgid "%s KBytes per Data Source" msgstr "æ¯ä¸ªæ•°æ®æºçš„%s KBytes" #: ../data_source_profiles.php:621 #: ../include/global_arrays.php:1088 #: ../include/global_settings.php:1027 #, php-format msgid "%d Years" msgstr "%d å¹´" #: ../data_source_profiles.php:621 msgid "1 Year" msgstr "1 å¹´" #: ../data_source_profiles.php:630 #: ../include/global_arrays.php:1082 #: ../rrdcleaner.php:489 #, php-format msgid "%d Month" msgstr "%d 月" #: ../data_source_profiles.php:630 #: ../include/global_arrays.php:1083 #: ../include/global_arrays.php:1084 #: ../include/global_arrays.php:1085 #: ../include/global_arrays.php:1086 #: ../rrdcleaner.php:490 #: ../rrdcleaner.php:491 #: ../rrdcleaner.php:492 #, php-format msgid "%d Months" msgstr "%d 月" #: ../data_source_profiles.php:639 #: ../include/global_arrays.php:1080 #: ../rrdcleaner.php:485 #: ../rrdcleaner.php:486 #, php-format msgid "%d Week" msgstr "%d 周" #: ../data_source_profiles.php:639 #: ../include/global_arrays.php:1081 #: ../rrdcleaner.php:487 #: ../rrdcleaner.php:488 #, php-format msgid "%d Weeks" msgstr "%d 周" #: ../data_source_profiles.php:648 #: ../include/global_arrays.php:1076 #, php-format msgid "%d Day" msgstr "%d 天" #: ../data_source_profiles.php:648 #: ../include/global_arrays.php:1077 #: ../include/global_arrays.php:1078 #: ../include/global_arrays.php:1079 #: ../include/global_settings.php:1022 #: ../include/global_settings.php:1023 #: ../include/global_settings.php:1024 #: ../include/global_settings.php:1025 #: ../include/global_settings.php:1036 #: ../include/global_settings.php:1037 #: ../include/global_settings.php:1038 #: ../include/global_settings.php:1039 #, php-format msgid "%d Days" msgstr "%d 天" #: ../data_source_profiles.php:656 #: ../include/global_arrays.php:494 #: ../include/global_arrays.php:529 #: ../include/global_arrays.php:1117 #: ../include/global_arrays.php:1138 #: ../include/global_arrays.php:1171 #: ../include/global_arrays.php:1180 #: ../include/global_arrays.php:1206 #: ../include/global_settings.php:1093 msgid "1 Hour" msgstr "1æ—¶" #: ../data_source_profiles.php:710 #: ../include/global_arrays.php:869 msgid "Data Source Profiles" msgstr "æ•°æ®æºé…置文件" #: ../data_source_profiles.php:725 #: ../data_source_profiles.php:838 msgid "Profiles" msgstr "é…置文件" #: ../data_source_profiles.php:743 #: ../data_templates.php:794 msgid "Has Data Sources" msgstr "æœ‰æ•°æ®æº" #: ../data_source_profiles.php:847 msgid "Data Source Profile Name" msgstr "æ•°æ®æºé…置文件åç§°" #: ../data_source_profiles.php:848 msgid "Is this the default Profile for all new Data Templates?" msgstr "è¿™æ˜¯æ‰€æœ‰æ–°çš„æ•°æ®æ¨¡æ¿çš„默认é…置文件?" #: ../data_source_profiles.php:849 msgid "Profiles that are in use cannot be Deleted. In use is defined as being referenced by a Data Source or a Data Template." msgstr "æ­£åœ¨ç”±æ•°æ®æºæˆ–æ•°æ®æ¨¡æ¿å¼•用的é…置文件ä¸èƒ½è¢«åˆ é™¤ã€‚" #: ../data_source_profiles.php:850 msgid "Profiles that are in use by Data Sources become read only for now." msgstr "æ•°æ®æºæ­£åœ¨ä½¿ç”¨çš„é…置文件现在å˜ä¸ºåªè¯»ã€‚" #: ../data_source_profiles.php:850 #: ../include/global_form.php:190 msgid "Read Only" msgstr "åªè¯»" #: ../data_source_profiles.php:851 #: ../data_sources.php:1407 #: ../include/global_settings.php:855 msgid "Poller Interval" msgstr "轮询间隔" #: ../data_source_profiles.php:851 msgid "The Polling Frequency for the Profile" msgstr "é…置文件的轮询频率" #: ../data_source_profiles.php:852 #: ../include/global_form.php:52 #: ../include/global_form.php:453 msgid "Heartbeat" msgstr "心跳" #: ../data_source_profiles.php:852 msgid "The Amount of Time, in seconds, without good data before Data is stored as Unknown" msgstr "在数æ®å­˜å‚¨ä¸ºâ€œæœªçŸ¥â€ä¹‹å‰ï¼Œä»¥ç§’为å•ä½çš„æ—¶é—´é‡æ²¡æœ‰è‰¯å¥½çš„æ•°æ®" #: ../data_source_profiles.php:853 msgid "The number of Data Sources using this Profile." msgstr "使用此é…ç½®æ–‡ä»¶çš„æ•°æ®æºçš„æ•°é‡" #: ../data_source_profiles.php:854 msgid "The number of Data Templates using this Profile." msgstr "使用此é…ç½®æ–‡ä»¶çš„æ•°æ®æ¨¡æ¿çš„æ•°é‡ã€‚" #: /var/www/html/cacti/data_source_profiles.php:995 msgid "No Data Source Profiles Found" msgstr "找ä¸åˆ°æ•°æ®æºé…置文件" #: ../data_sources.php:36 #: ../data_sources.php:478 #: ../graphs.php:54 msgid "Change Device" msgstr "更改设备" #: ../data_sources.php:37 #: ../graphs.php:55 msgid "Reapply Suggested Names" msgstr "釿–°ç”³è¯·å»ºè®®çš„åç§°" #: ../data_sources.php:446 msgid "Click 'Continue' to delete the following Data Source" msgid_plural "Click 'Continue' to delete following Data Sources" msgstr[0] "点击“继续â€åˆ é™¤ä»¥ä¸‹æ•°æ®æº" #: ../data_sources.php:450 msgid "The following graph is using these data sources:" msgid_plural "The following graphs are using these data sources:" msgstr[0] "ä»¥ä¸‹å›¾è¡¨ä½¿ç”¨è¿™äº›æ•°æ®æºï¼š" #: ../data_sources.php:459 msgid "Leave the Graph untouched." msgid_plural "Leave all Graphs untouched." msgstr[0] "ä¿æŒå›¾ä¸å˜ã€‚" #: ../data_sources.php:460 msgid "Delete all Graph Items that reference this Data Source." msgid_plural "Delete all Graph Items that reference these Data Sources." msgstr[0] "åˆ é™¤å¼•ç”¨æ­¤æ•°æ®æºçš„æ‰€æœ‰ 图表项。" #: ../data_sources.php:461 msgid "Delete all Graphs that reference this Data Source." msgid_plural "Delete all Graphs that reference these Data Sources." msgstr[0] "åˆ é™¤å¼•ç”¨æ­¤æ•°æ®æºçš„æ‰€æœ‰å›¾è¡¨ã€‚" #: ../data_sources.php:468 msgid "Delete Data Source" msgid_plural "Delete Data Sources" msgstr[0] "åˆ é™¤æ•°æ®æº" #: ../data_sources.php:472 msgid "Choose a new Device for this Data Source and click 'Continue'." msgid_plural "Choose a new Device for these Data Sources and click 'Continue'" msgstr[0] "ä¸ºè¿™ä¸ªæ•°æ®æºé€‰æ‹©ä¸€ä¸ªæ–°çš„设备,然åŽç‚¹å‡»â€œç»§ç»­â€" #: ../data_sources.php:474 msgid "New Device:" msgstr "新设备:" #: ../data_sources.php:482 msgid "Click 'Continue' to enable the following Data Source." msgid_plural "Click 'Continue' to enable all following Data Sources." msgstr[0] "点击“继续â€ä»¥å¯ç”¨ä»¥ä¸‹æ•°æ®æºã€‚" #: ../data_sources.php:487 msgid "Enable Data Source" msgid_plural "Enable Data Sources" msgstr[0] "å¯ç”¨æ•°æ®æº" #: ../data_sources.php:491 msgid "Click 'Continue' to disable the following Data Source." msgid_plural "Click 'Continue' to disable all following Data Sources." msgstr[0] "点击“继续â€ä»¥ç¦ç”¨ä»¥ä¸‹æ•°æ®æºã€‚" #: ../data_sources.php:496 msgid "Disable Data Source" msgid_plural "Disable Data Sources" msgstr[0] "ç¦ç”¨æ•°æ®æº" #: ../data_sources.php:500 msgid "Click 'Continue' to re-apply the suggested name to the following Data Source." msgid_plural "Click 'Continue' to re-apply the suggested names to all following Data Sources." msgstr[0] "点击“继续â€ä»¥å°†å»ºè®®çš„åç§°é‡æ–°åº”ç”¨äºŽä»¥ä¸‹æ•°æ®æº" #: ../data_sources.php:505 msgid "Reapply Suggested Naming to Data Source" msgid_plural "Reapply Suggested Naming to Data Sources" msgstr[0] "釿–°å‘æ•°æ®æºæä¾›å»ºè®®çš„命å" #: ../data_sources.php:514 msgid "You must select at least one data source." msgstr "æ‚¨å¿…é¡»è‡³å°‘é€‰æ‹©ä¸€ä¸ªæ•°æ®æºã€‚" #: ../data_sources.php:572 #: ../data_templates.php:631 #, php-format msgid "Custom Data [data input: %s]" msgstr "自定义数æ®[æ•°æ®è¾“入:%s]" #: ../data_sources.php:605 #, php-format msgid "(From Device: %s)" msgstr "(æ¥è‡ªè®¾å¤‡ï¼š%s)" #: ../data_sources.php:608 msgid "(From Data Template)" msgstr "ï¼ˆä»Žæ•°æ®æ¨¡æ¿ï¼‰" #: ../data_sources.php:609 msgid "Nothing Entered" msgstr "Nothing Entered" #: ../data_sources.php:624 #: ../data_templates.php:684 msgid "No Input Fields for the Selected Data Input Source" msgstr "所选数æ®è¾“å…¥æºæ²¡æœ‰è¾“入字段" #: ../data_sources.php:705 #, php-format msgid "Data Template Selection [edit: %s]" msgstr "æ•°æ®æ¨¡æ¿é€‰æ‹©[编辑:%s]" #: ../data_sources.php:711 msgid "Data Template Selection [new]" msgstr "æ•°æ®æ¨¡æ¿é€‰æ‹©[新建]" #: ../data_sources.php:744 msgid "Turn Off Data Source Debug Mode." msgstr "å…³é—­æ•°æ®æºè°ƒè¯•模å¼ã€‚" #: ../data_sources.php:744 msgid "Turn On Data Source Debug Mode." msgstr "æ‰“å¼€æ•°æ®æºè°ƒè¯•模å¼ã€‚" #: ../data_sources.php:745 msgid "Turn Off Data Source Info Mode." msgstr "å…³é—­æ•°æ®æºä¿¡æ¯æ¨¡å¼ã€‚" #: ../data_sources.php:745 msgid "Turn On Data Source Info Mode." msgstr "æ‰“å¼€æ•°æ®æºä¿¡æ¯æ¨¡å¼ã€‚" #: ../data_sources.php:748 msgid "Edit Data Template." msgstr "ç¼–è¾‘æ•°æ®æ¨¡æ¿ã€‚" #: ../data_sources.php:751 #: ../graphs.php:1294 msgid "Edit Device." msgstr "编辑设备。" #: ../data_sources.php:814 msgid "Selected Data Template" msgstr "é€‰å®šçš„æ•°æ®æ¨¡æ¿" #: ../data_sources.php:815 #, php-format msgid "The name given to this data template. Please note that you may only change Graph Templates to a 100% compatible Graph Template, which means that it includes identical Data Sources." msgstr "ç»™è¿™ä¸ªæ•°æ®æ¨¡æ¿çš„å字。 请注æ„,您åªèƒ½å°†å›¾å½¢æ¨¡æ¿æ›´æ”¹ä¸ºç™¾ä¼šä¹‹ç™¾å…¼å®¹çš„图形模æ¿ï¼Œè¿™æ„味ç€å®ƒåŒ…å«ç›¸åŒçš„æ•°æ®æºã€‚" #: ../data_sources.php:823 msgid "Choose the Device that this Data Source belongs to." msgstr "é€‰æ‹©æ­¤æ•°æ®æºæ‰€å±žçš„设备。" #: ../data_sources.php:869 msgid "Supplemental Data Template Data" msgstr "è¡¥å……æ•°æ®æ¨¡æ¿æ•°æ®" #: ../data_sources.php:871 msgid "Data Source Fields" msgstr "æ•°æ®æºå­—段" #: ../data_sources.php:872 msgid "Data Source Item Fields" msgstr "æ•°æ®æºé¡¹å­—段" #: ../data_sources.php:873 msgid "Custom Data" msgstr "自定义数æ®" #: ../data_sources.php:957 #, php-format msgid "Data Source Item %s" msgstr "æ•°æ®æºçš„项目%s" #: ../data_sources.php:960 msgid "New" msgstr "æ–°" #: ../data_sources.php:1019 msgid "Data Source Debug" msgstr "æ•°æ®æºè°ƒè¯•" #: ../data_sources.php:1039 msgid "RRDtool Tune Info" msgstr "RRDtoolè°ƒè°ä¿¡æ¯" #: ../data_sources.php:1065 msgid "External" msgstr "外部" #: ../data_sources.php:1069 #: ../include/global_arrays.php:522 #: ../include/global_arrays.php:845 #: ../include/global_arrays.php:1165 #: ../include/global_arrays.php:1199 #: ../include/global_arrays.php:1215 #: ../include/global_settings.php:1087 #: ../include/global_settings.php:1837 msgid "1 Minute" msgstr "1 分钟" #: ../data_sources.php:1196 #: ../graphs_items.php:292 #, php-format msgid "Data Sources [%s]" msgstr "æ•°æ®æº [%s]" #: ../data_sources.php:1196 msgid "No Device" msgstr "无设备" #: ../data_sources.php:1235 #: ../data_sources.php:1261 #: ../data_sources.php:1277 #: ../data_templates.php:764 #: ../graph_view.php:781 #: ../graphs_new.php:504 #: ../lib/clog_webapi.php:331 #: ../lib/html_graph.php:395 #: ../lib/html_reports.php:290 #: ../lib/html_tree.php:842 #: ../plugins.php:286 #: ../settings.php:196 #: ../settings.php:213 #: ../settings.php:236 #: ../utilities.php:636 #: ../utilities.php:1000 msgid "All" msgstr "所有" #: ../data_sources.php:1257 #: ../data_templates.php:760 msgid "Profile" msgstr "é…置文件" #: ../data_sources.php:1273 #: ../data_sources.php:1279 msgid "Orphaned" msgstr "孤立的" #: ../data_sources.php:1283 #: ../data_sources.php:1396 #: ../host.php:1502 #: ../include/global_arrays.php:687 #: ../lib/api_automation.php:275 #: ../lib/functions.php:2118 #: ../user_admin.php:1242 #: ../user_group_admin.php:966 #: ../utilities.php:273 msgid "Data Sources" msgstr "æ•°æ®æº" #: ../data_sources.php:1405 #: ../utilities.php:1698 msgid "Data Source Name" msgstr "æ•°æ®æºåç§°" #: ../data_sources.php:1405 msgid "The name of this Data Source. Generally programtically generated from the Data Template definition." msgstr "æ­¤æ•°æ®æºçš„å称。 é€šå¸¸é€šè¿‡æ•°æ®æ¨¡æ¿å®šä¹‰ä»¥ç¼–程方å¼ç”Ÿæˆã€‚" #: ../data_sources.php:1406 msgid "The internal database ID for this Data Source. Useful when performing automation or debugging." msgstr "æ­¤æ•°æ®æºçš„内部数æ®åº“标识。 执行自动化或调试时很有用。" #: ../data_sources.php:1407 msgid "The frequency that data is collected for this Data Source." msgstr "ä¸ºæ­¤æ•°æ®æºæ”¶é›†æ•°æ®çš„频率。" #: ../data_sources.php:1408 msgid "If this Data Source is no long in use by Graphs, it can be Deleted." msgstr "å¦‚æžœæ­¤æ•°æ®æºæ²¡æœ‰è¢«Graphs使用太久,则å¯ä»¥å°†å…¶åˆ é™¤ã€‚" #: ../data_sources.php:1409 #: ../data_templates.php:934 #: ../plugins.php:38 #: ../plugins.php:287 msgid "Active" msgstr "活跃" #: ../data_sources.php:1409 msgid "Whether or not data will be collected for this Data Source. Controlled at the Data Template level." msgstr "æ˜¯å¦æ”¶é›†è¿™ä¸ªæ•°æ®æºçš„æ•°æ®ã€‚ åœ¨æ•°æ®æ¨¡æ¿çº§åˆ«è¿›è¡ŒæŽ§åˆ¶ã€‚" #: ../data_sources.php:1410 msgid "The Data Template that this Data Source was based upon." msgstr "æ­¤æ•°æ®æºåŸºäºŽçš„æ•°æ®æ¨¡æ¿ã€‚" #: ../data_sources.php:1457 msgid "No Data Sources Found" msgstr "æ— æ•°æ®æº" #: ../data_templates.php:35 msgid "Change Profile" msgstr "改å˜é…置文件" #: ../data_templates.php:353 msgid "Click 'Continue' to delete the following Data Template(s). Any data sources attached to these templates will become individual Data Source(s) and all Templating benefits will be removed." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹æ•°æ®æ¨¡æ¿ã€‚ 附加到这些模æ¿çš„ä»»ä½•æ•°æ®æºå°†æˆä¸ºå•ç‹¬çš„æ•°æ®æºï¼Œæ‰€æœ‰æ¨¡æ¿ä¼˜åŠ¿å°†è¢«åˆ é™¤ã€‚" #: ../data_templates.php:358 msgid "Delete Data Template(s)" msgstr "åˆ é™¤æ•°æ®æ¨¡æ¿" #: ../data_templates.php:362 msgid "Click 'Continue' to duplicate the following Data Template(s). You can optionally change the title format for the new Data Template(s)." msgstr "点击“继续â€å¤åˆ¶ä¸‹é¢çš„æ•°æ®æ¨¡æ¿ã€‚ 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°æ•°æ®æ¨¡æ¿çš„æ ‡é¢˜æ ¼å¼ã€‚" #: ../data_templates.php:364 msgid "template_title" msgstr "æ¨¡æ¿æ ‡é¢˜" #: ../data_templates.php:368 msgid "Duplicate Data Template(s)" msgstr "é‡å¤æ•°æ®æ¨¡æ¿" #: ../data_templates.php:372 msgid "Click 'Continue' to change the default Data Source Profile for the following Data Template(s)." msgstr "点击“继续â€ä»¥æ›´æ”¹ä»¥ä¸‹æ•°æ®æ¨¡æ¿çš„é»˜è®¤æ•°æ®æºé…置文件" #: ../data_templates.php:374 msgid "New Data Source Profile" msgstr "æ–°çš„æ•°æ®æºé…置文件" #: ../data_templates.php:380 msgid "NOTE: This change only will affect future Data Sources and does not alter existing Data Sources." msgstr "注:此更改åªä¼šå½±å“未æ¥çš„æ•°æ®æºï¼Œå¹¶ä¸ä¼šæ›´æ”¹çŽ°æœ‰çš„æ•°æ®æºã€‚" #: ../data_templates.php:384 msgid "Change Data Source Profile" msgstr "æ›´æ”¹æ•°æ®æºé…置文件" #: ../data_templates.php:387 msgid "You must select at least one data template." msgstr "æ‚¨å¿…é¡»è‡³å°‘é€‰æ‹©ä¸€ä¸ªæ•°æ®æ¨¡æ¿ã€‚" #: ../data_templates.php:499 #, php-format msgid "Data Templates [edit: %s]" msgstr "æ•°æ®æ¨¡æ¿[编辑:%s]" #: /var/www/html/cacti/data_templates.php:518 msgid "Edit Data Input Method." msgstr "编辑数æ®è¾“入方法。" #: ../data_templates.php:501 msgid "Data Templates [new]" msgstr "æ•°æ®æ¨¡æ¿[新建]" #: ../data_templates.php:527 msgid "This field is always templated." msgstr "这个字段总是模æ¿åŒ–的。" #: /var/www/html/cacti/data_templates.php:563 #: /var/www/html/cacti/data_templates.php:634 #: /var/www/html/cacti/data_templates.php:706 msgid "Check this checkbox if you wish to allow the user to override the value on the right during Data Source creation." msgstr "如果您希望å…è®¸ç”¨æˆ·åœ¨åˆ›å»ºæ•°æ®æºæœŸé—´è¦†ç›–å³ä¾§çš„值,请选中此å¤é€‰æ¡†ã€‚" #: ../data_templates.php:584 #, php-format msgid "Data Source Item [%s]" msgstr "æ•°æ®æºé¡¹ç›®[%s]" #: ../data_templates.php:676 msgid "Value will be derived from the device if this field is left empty." msgstr "如果此字段为空,则值将从设备派生。" #: ../data_templates.php:745 #: ../data_templates.php:776 #: ../data_templates.php:900 #: ../include/global_arrays.php:873 #: ../lib/functions.php:2100 msgid "Data Templates" msgstr "æ•°æ®æ¨¡æ¿" #: ../data_templates.php:909 msgid "Data Template Name" msgstr "æ•°æ®æ¨¡æ¿åç§°" #: ../data_templates.php:909 msgid "The name of this Data Template." msgstr "è¿™ä¸ªæ•°æ®æ¨¡æ¿çš„å字。" #: ../data_templates.php:910 msgid "The internal database ID for this Data Template. Useful when performing automation or debugging." msgstr "æ­¤æ•°æ®æ¨¡æ¿çš„内部数æ®åº“标识。 执行自动化或调试时很有用。" #: ../data_templates.php:911 msgid "Data Templates that are in use cannot be Deleted. In use is defined as being referenced by a Data Source." msgstr "æ­£åœ¨è¢«æ•°æ®æºå¼•ç”¨çš„æ•°æ®æ¨¡æ¿ä¸èƒ½è¢«åˆ é™¤ã€‚" #: ../data_templates.php:912 msgid "The number of Data Sources using this Data Template." msgstr "ä½¿ç”¨æ­¤æ•°æ®æ¨¡æ¿çš„æ•°æ®æºçš„æ•°é‡ã€‚" #: ../data_templates.php:913 msgid "Input Method" msgstr "输入方法" #: ../data_templates.php:913 msgid "The method that is used to place Data into the Data Source RRDfile." msgstr "ç”¨äºŽå°†æ•°æ®æ”¾å…¥æ•°æ®æºRRD文件的方法。" #: ../data_templates.php:914 msgid "Profile Name" msgstr "é…置文件åç§°" #: ../data_templates.php:914 msgid "The default Data Source Profile for this Data Template." msgstr "æ­¤æ•°æ®æ¨¡æ¿çš„é»˜è®¤æ•°æ®æºé…置文件。" #: ../data_templates.php:915 msgid "Data Sources based on Inactive Data Templates will not be updated when the poller runs." msgstr "轮询器è¿è¡Œæ—¶ï¼ŒåŸºäºŽéžæ´»åŠ¨æ•°æ®æ¨¡æ¿çš„æ•°æ®æºå°†ä¸ä¼šæ›´æ–°ã€‚" #: ../data_templates.php:939 msgid "No Data Templates Found" msgstr "找ä¸åˆ°æ•°æ®æ¨¡æ¿" #: ../gprint_presets.php:148 msgid "Click 'Continue' to delete the folling GPRINT Preset(s)." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹GPRINT预设)。" #: ../gprint_presets.php:153 msgid "Delete GPRINT Preset(s)" msgstr "删除GPRINT预设" #: ../gprint_presets.php:156 msgid "You must select at least one GPRINT Preset." msgstr "您必须至少选择一个GPRINT预设。" #: ../gprint_presets.php:185 #, php-format msgid "GPRINT Presets [edit: %s]" msgstr "GPRINT预设[编辑:%s]" #: ../gprint_presets.php:187 msgid "GPRINT Presets [new]" msgstr "GPRINT预设[新建]" #: ../gprint_presets.php:253 #: ../lib/functions.php:1950 msgid "GPRINT Presets" msgstr "GPRINT预设" #: ../gprint_presets.php:268 #: ../gprint_presets.php:381 #: ../include/global_arrays.php:715 msgid "GPRINTs" msgstr "GPRINTs" #: ../gprint_presets.php:390 msgid "GPRINT Preset Name" msgstr "GPRINT预设åç§°" #: ../gprint_presets.php:390 msgid "The name of this GPRINT Preset." msgstr "这个GPRINT预设的å称。" #: ../gprint_presets.php:391 msgid "Format" msgstr "æ ¼å¼" #: ../gprint_presets.php:391 msgid "The GPRINT format string." msgstr "GPRINTæ ¼å¼å­—符串。" #: ../gprint_presets.php:392 msgid "GPRINTs that are in use cannot be Deleted. In use is defined as being referenced by either a Graph or a Graph Template." msgstr "正在被图形或图形模æ¿å¼•用的GPRINTä¸èƒ½è¢«åˆ é™¤ã€‚ " #: ../gprint_presets.php:393 msgid "The number of Graphs using this GPRINT." msgstr "使用此GPRINT的图的数é‡ã€‚" #: ../gprint_presets.php:394 msgid "The number of Graphs Templates using this GPRINT." msgstr "使用此GPRINT的图形模æ¿çš„æ•°é‡ã€‚" #: ../gprint_presets.php:418 msgid "No GPRINT Presets" msgstr "没有GPRINT预设" #: ../graph.php:94 msgid "Viewing Graph" msgstr "查看图形" #: ../graph.php:124 #: ../lib/html.php:292 msgid "Graph Details, Zooming and Debugging Utilities" msgstr "图形细节,缩放和调试实用程åº" #: ../graph.php:125 msgid "CSV Export" msgstr "CSV 导出" #: ../graph.php:126 msgid "Real-time" msgstr "实时的" #: ../graph.php:179 msgid "Utility View" msgstr "实用程åºè§†å›¾" #: ../graph.php:277 msgid "Graph Utility View" msgstr "图形工具视图" #: ../graph.php:290 msgid "Graph Source/Properties" msgstr "图形æº/属性" #: ../graph.php:294 msgid "Graph Data" msgstr "图数æ®" #: ../graph.php:429 msgid "RRDtool Graph Syntax" msgstr "RRDtool图形语法" #: ../graph_realtime.php:195 msgid "Real-time has been disabled by your administrator." msgstr "实时已被您的管ç†å‘˜ç¦ç”¨ã€‚" #: ../graph_realtime.php:202 msgid "The Image Cache Directory does not exist. Please first create it and set permissions and then attempt to open another Real-time graph." msgstr "图åƒç¼“存目录ä¸å­˜åœ¨ã€‚ 请先创建它并设置æƒé™ï¼Œç„¶åŽå°è¯•打开å¦ä¸€ä¸ªå®žæ—¶å›¾ã€‚" #: ../graph_realtime.php:209 msgid "The Image Cache Directory is not writable. Please set permissions and then attempt to open another Real-time graph." msgstr "图åƒç¼“存目录ä¸å¯å†™å…¥ã€‚ 请设置æƒé™ï¼Œç„¶åŽå°è¯•打开å¦ä¸€ä¸ªå®žæ—¶å›¾ã€‚" #: ../graph_realtime.php:224 msgid "Cacti Real-time Graphing" msgstr "Cacti实时图形" #: ../graph_realtime.php:253 #: ../lib/html_graph.php:327 #: ../lib/html_tree.php:773 msgid "Window" msgstr "窗å£" #: ../graph_realtime.php:283 #, php-format msgid "%d seconds left." msgstr " 还有%d秒。" #: ../graph_realtime.php:311 msgid "seconds left." msgstr "还有几秒钟" #: ../graph_templates.php:35 msgid "Resize" msgstr "调整" #: ../graph_templates.php:36 msgid "Sync Graphs" msgstr "åŒæ­¥å›¾" #: ../graph_templates.php:312 msgid "Click 'Continue' to delete the following Graph Template(s). Any Graph(s) associated with the Template(s) will become individual Graph(s)." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹å›¾å½¢æ¨¡æ¿ã€‚ 与模æ¿ç›¸å…³çš„任何图形将æˆä¸ºå•独的图形。" #: ../graph_templates.php:317 msgid "Delete Graph Template(s)" msgstr "删除图形模æ¿" #: ../graph_templates.php:321 msgid "Click 'Continue' to duplicate the following Graph Template(s). You can optionally change the title format for the new Graph Template(s)." msgstr "点击“继续â€å¤åˆ¶ä¸‹é¢çš„图形模æ¿ã€‚ 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°å›¾å½¢æ¨¡æ¿çš„æ ‡é¢˜æ ¼å¼ã€‚" #: ../graph_templates.php:327 msgid "Duplicate Graph Template(s)" msgstr "é‡å¤çš„图形模æ¿" #: ../graph_templates.php:331 msgid "Click 'Continue' to resize the following Graph Template(s) and Graph(s) to the Height and Width below. The defaults below are maintained in Settings." msgstr "点击“继续â€å°†ä¸‹é¢çš„图形模æ¿å’Œå›¾å½¢è°ƒæ•´åˆ°ä¸‹é¢çš„高度和宽度。 下é¢çš„默认设置ä¿å­˜åœ¨è®¾ç½®ä¸­ã€‚" #: ../graph_templates.php:340 #: ../lib/html_reports.php:117 msgid "Graph Height" msgstr "图形高度" #: ../graph_templates.php:342 #: ../lib/html_reports.php:109 msgid "Graph Width" msgstr "图形宽度" #: ../graph_templates.php:347 msgid "Resize Selected Graph Template(s)" msgstr "调整所选图形模æ¿çš„大å°" #: /var/www/html/cacti/graph_templates.php:351 msgid "Click 'Continue' to Synchronize your Graphs with the following Graph Template(s). This function is important if you have Graphs that exist with multiple versions of a Graph Template and wish to make them all common in appearance." msgstr "点击“继续â€ä»¥ä½¿æ‚¨çš„图形与以下图形模æ¿åŒæ­¥ã€‚ 如果图形存在多个图形模æ¿ç‰ˆæœ¬å¹¶å¸Œæœ›ä½¿å…¶åœ¨å¤–观上都很常è§ï¼Œåˆ™æ­¤åŠŸèƒ½éžå¸¸é‡è¦ã€‚" #: ../graph_templates.php:356 msgid "Synchronize Graphs to Graph Template(s)" msgstr "åŒæ­¥å›¾å½¢åˆ°å›¾å½¢æ¨¡æ¿ã€‚" #: ../graph_templates.php:359 msgid "ERROR: You must select at least one graph template." msgstr "错误:您必须至少选择一个图形模æ¿ã€‚" #: ../graph_templates.php:413 #, php-format msgid "Graph Template Items [edit: %s]" msgstr "图表模æ¿é¡¹ç›®[编辑: %s]" #: ../graph_templates.php:420 #: ../lib/functions.php:2070 msgid "Graph Item Inputs" msgstr "图形项输入" #: ../graph_templates.php:446 msgid "No Inputs" msgstr "无法导入" #: ../graph_templates.php:491 #, php-format msgid "Template [edit: %s]" msgstr "模æ¿[编辑:%s]" #: ../graph_templates.php:493 msgid "Template [new]" msgstr "模æ¿[新建]" #: ../graph_templates.php:509 msgid "Graph Template Options" msgstr "图形模æ¿é€‰é¡¹" #: /var/www/html/cacti/graph_templates.php:525 msgid "Check this checkbox if you wish to allow the user to override the value on the right during Graph creation." msgstr "如果您希望在创建图表时å…许用户覆盖å³ä¾§çš„值,请选中此å¤é€‰æ¡†ã€‚" #: ../graph_templates.php:619 #: ../graph_templates.php:634 #: ../graph_templates.php:752 #: ../graphs_new.php:592 #: ../include/global_arrays.php:872 #: ../lib/functions.php:2046 #: ../user_admin.php:1376 #: ../user_group_admin.php:1101 msgid "Graph Templates" msgstr "图形模æ¿" #: ../graph_templates.php:761 msgid "The name of this Graph Template." msgstr "这个图表模æ¿çš„å称。" #: ../graph_templates.php:763 msgid "Graph Templates that are in use cannot be Deleted. In use is defined as being referenced by a Graph." msgstr "正在由Graph引用的图形模æ¿ä¸èƒ½è¢«åˆ é™¤ã€‚ " #: ../graph_templates.php:764 msgid "The number of Graphs using this Graph Template." msgstr "使用此图表模æ¿çš„图的数é‡ã€‚" #: ../graph_templates.php:765 msgid "The default size of the resulting Graphs." msgstr "结果图形的默认大å°ã€‚" #: ../graph_templates.php:766 msgid "Image Format" msgstr "图片格å¼" #: ../graph_templates.php:766 msgid "The default image format for the resulting Graphs." msgstr "生æˆçš„å›¾å½¢çš„é»˜è®¤å›¾åƒæ ¼å¼ã€‚" #: ../graph_templates.php:767 msgid "The vertical label for the resulting Graphs." msgstr "生æˆçš„图形的垂直标签。" #: ../graph_templates.php:767 msgid "Vertical Label" msgstr "垂直标签" #: ../graph_templates.php:793 msgid "No Graph Templates Found" msgstr "找ä¸åˆ°å›¾å½¢æ¨¡æ¿" #: ../graph_templates_inputs.php:145 #, php-format msgid "Graph Item Inputs [edit graph: %s]" msgstr "图表项目输入[编辑图:%s]" #: ../graph_templates_inputs.php:191 msgid "Associated Graph Items" msgstr "å…³è”相关图形" #: ../graph_templates_items.php:99 #: ../graph_templates_items.php:125 #: ../graphs_items.php:118 msgid "Cur:" msgstr "当å‰ï¼š" #: ../graph_templates_items.php:106 #: ../graph_templates_items.php:132 #: ../graphs_items.php:125 msgid "Avg:" msgstr "å¹³å‡ï¼š" #: ../graph_templates_items.php:113 #: ../graph_templates_items.php:146 #: ../graphs_items.php:139 msgid "Max:" msgstr "最大:" #: ../graph_templates_items.php:139 #: ../graphs_items.php:132 msgid "Min:" msgstr "最å°ï¼š" #: ../graph_templates_items.php:391 #, php-format msgid "Graph Template Items [edit graph: %s]" msgstr "图表模æ¿é¡¹ç›®[编辑图:%s]" #: /var/www/html/cacti/graph_templates_items.php:466 msgid "Field Not Templated" msgstr "å­—æ®µä¸æ¨¡æ¿åŒ–" #: ../graph_view.php:242 msgid "YOU DO NOT HAVE RIGHTS FOR TREE VIEW" msgstr "你没有æƒé™æ ‘视图" #: ../graph_view.php:320 msgid "YOU DO NOT HAVE RIGHTS FOR PREVIEW VIEW" msgstr "æ‚¨æ— æƒæŸ¥çœ‹é¢„览" #: ../graph_view.php:326 msgid "Graph Preview Filters" msgstr "图预览过滤器" #: ../graph_view.php:326 msgid "[ Custom Graph List Applied - Filtering from List ]" msgstr "[已应用自定义图表列表 - 从列表中过滤]" #: ../graph_view.php:422 msgid "YOU DO NOT HAVE RIGHTS FOR LIST VIEW" msgstr "您没有æƒé™æŸ¥çœ‹åˆ—表" #: ../graph_view.php:509 msgid "Graph List View Filters" msgstr "图表列表视图过滤器" #: ../graph_view.php:509 msgid "[ Custom Graph List Applied - Filter FROM List ]" msgstr "[自定义图表列表应用 - 过滤器从列表]" #: ../graph_view.php:528 #: ../graph_view.php:770 #: ../graph_view.php:775 #: ../lib/html_graph.php:163 #: ../lib/html_graph.php:384 #: ../lib/html_graph.php:389 #: ../lib/html_tree.php:615 #: ../lib/html_tree.php:831 #: ../lib/html_tree.php:836 msgid "All Graphs & Templates" msgstr "所有图形和模æ¿" #: ../graph_view.php:577 #: ../graph_view.php:654 msgid "View" msgstr "查看图形" #: ../graph_view.php:577 #: ../graph_view.php:654 #: ../include/global_arrays.php:853 #: ../lib/clog_webapi.php:249 msgid "View Graphs" msgstr "查看图形" #: ../graph_view.php:619 msgid "Graph Size" msgstr "图表大å°" #: ../graph_view.php:633 msgid "Aggregated Device" msgstr "èšåˆè®¾å¤‡" #: ../graph_view.php:636 msgid "Non-Device" msgstr "无设备" #: ../graph_view.php:637 msgid "Not Applicable" msgstr "ä¸é€‚用" #: ../include/global_settings.php:1906 #: ../lib/functions.php:1880 msgid "Preview Mode" msgstr "预览模å¼" #: ../graph_view.php:772 #: ../lib/html_graph.php:386 #: ../lib/html_tree.php:833 #: ../settings.php:227 msgid "Templates Selected" msgstr "选择的模æ¿" #: ../include/global_form.php:1787 #: ../include/global_form.php:2046 #: ../links.php:379 msgid "Title" msgstr "标题" #: /var/www/html/cacti/graph_xport.php:123 #: /var/www/html/cacti/graph_xport.php:155 msgid "Start Date" msgstr "开始日期" #: /var/www/html/cacti/graph_xport.php:124 #: /var/www/html/cacti/graph_xport.php:156 msgid "End Date" msgstr "ç»“æŸæ—¥æœŸ" #: ../include/global_form.php:402 msgid "Step" msgstr "跳数" #: /var/www/html/cacti/graph_xport.php:126 #: /var/www/html/cacti/graph_xport.php:158 msgid "Total Rows" msgstr "总行数" #: ../lib/api_automation.php:562 msgid "Graph ID" msgstr "图形ID" #: /var/www/html/cacti/graph_xport.php:128 #: /var/www/html/cacti/graph_xport.php:160 msgid "Host ID" msgstr "主机ID" #: /var/www/html/cacti/graph_xport.php:132 #: /var/www/html/cacti/graph_xport.php:170 msgid "Nth Percentile" msgstr "百分之百" #: /var/www/html/cacti/graph_xport.php:138 #: /var/www/html/cacti/graph_xport.php:180 msgid "Summation" msgstr "åˆè®¡" #: ../utilities.php:231 #: ../utilities.php:766 msgid "Date" msgstr "日期" #: /var/www/html/cacti/graph_xport.php:152 msgid "Download" msgstr "下载" #: /var/www/html/cacti/graph_xport.php:152 msgid "Summary Details" msgstr "总结详情" #: ../graphs.php:49 #: ../graphs.php:845 #: ../lib/functions.php:1920 msgid "Change Graph Template" msgstr "修改图形模æ¿" #: ../graphs.php:56 msgid "Create Aggregate Graph" msgstr "创建èšåˆå›¾" #: ../graphs.php:57 msgid "Create Aggregate from Template" msgstr "从模æ¿åˆ›å»ºèšåˆ" #: ../graphs.php:58 #: ../graphs.php:1094 #: ../host.php:43 msgid "Apply Automation Rules" msgstr "应用自动化规则" #: ../graphs.php:64 #: ../graphs.php:867 msgid "Convert to Graph Template" msgstr "转æ¢ä¸ºå›¾å½¢æ¨¡æ¿" #: ../graphs.php:176 #: ../graphs_new.php:228 #: ../graphs_new.php:244 #, php-format msgid "Created graph: %s" msgstr "创建图表: '%s'" #: ../graphs.php:184 #: ../graphs_new.php:236 #: ../graphs_new.php:252 msgid "ERROR: no Data Source associated. Check Template" msgstr "é”™è¯¯ï¼šæ²¡æœ‰æ•°æ®æºå…³è”。 检查模æ¿" #: ../graphs.php:795 msgid "Click 'Continue' to delete the following Graph(s). Note that if you choose to Delete Data Sources, only those Data Sources not in use elsewhere will also be Deleted." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹å›¾è¡¨ã€‚ 请注æ„ï¼Œå¦‚æžœæ‚¨é€‰æ‹©åˆ é™¤æ•°æ®æºï¼Œåˆ™åªæœ‰é‚£äº›æœªåœ¨åˆ«å¤„ä½¿ç”¨çš„æ•°æ®æºä¹Ÿå°†è¢«åˆ é™¤ã€‚" #: ../graphs.php:799 msgid "The following Data Source(s) are in use by these Graph(s)." msgstr "ä»¥ä¸‹æ•°æ®æºæ­£åœ¨ç”±è¿™äº›å›¾å½¢ä½¿ç”¨" #: ../graphs.php:808 msgid "Delete all Data Source(s) referenced by these Graph(s) that are not in use elsewhere." msgstr "åˆ é™¤è¿™äº›å›¾ä¸­æœªè¢«ä½¿ç”¨çš„æ‰€æœ‰æ•°æ®æºã€‚" #: ../graphs.php:810 msgid "Leave the Data Source(s) untouched." msgstr "ä¿æŒæ•°æ®æºä¸å˜ã€‚" #: ../graphs.php:822 msgid "Choose a Graph Template and click 'Continue' to change the Graph Template for the following Graph(s). Please note, that only compatible Graph Templates will be displayed. Compatible is identified by those having identical Data Sources." msgstr "选择一个图表模æ¿ï¼Œç„¶åŽç‚¹å‡»â€œç»§ç»­â€ä»¥æ›´æ”¹ä»¥ä¸‹å›¾è¡¨çš„图表模æ¿ã€‚ 请注æ„,åªä¼šæ˜¾ç¤ºå…¼å®¹çš„图形模æ¿ã€‚ å…¼å®¹æ€§ç”±å…·æœ‰ç›¸åŒæ•°æ®æºçš„人员标识。" #: ../graphs.php:824 msgid "New Graph Template" msgstr "新的图形模æ¿" #: ../graphs.php:849 msgid "Click 'Continue' to duplicate the following Graph(s). You can optionally change the title format for the new Graph(s)." msgstr "确定è¦åˆ é™¤ä»¥ä¸‹å›¾å½¢ï¼Ÿç‚¹å‡»â€œç»§ç»­â€å¤åˆ¶ä¸‹é¢çš„图表。 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°å›¾å½¢çš„æ ‡é¢˜æ ¼å¼ã€‚" #: ../graphs.php:852 msgid " (1)" msgstr " (1)" #: ../graphs.php:856 msgid "Duplicate Graph(s)" msgstr "é‡å¤å›¾" #: ../graphs.php:860 msgid "Click 'Continue' to convert the following Graph(s) into Graph Template(s). You can optionally change the title format for the new Graph Template(s)." msgstr "点击“继续â€å°†ä»¥ä¸‹å›¾å½¢è½¬æ¢ä¸ºå›¾å½¢æ¨¡æ¿ã€‚ 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°å›¾å½¢æ¨¡æ¿çš„æ ‡é¢˜æ ¼å¼ã€‚" #: ../graphs.php:863 msgid " Template" msgstr "模æ¿" #: ../graphs.php:871 msgid "Click 'Continue' to place the following Graph(s) under the Tree Branch selected below." msgstr "点击“继续â€åœ¨ä¸‹é¢é€‰æ‹©çš„æ ‘åˆ†æ”¯ä¸‹é¢æ”¾ç½®ä»¥ä¸‹å›¾è¡¨ã€‚" #: ../graphs.php:873 msgid "Destination Branch" msgstr "目的地分行" #: ../graphs.php:886 msgid "Choose a new Device for these Graph(s) and click 'Continue'." msgstr "为这些图选择一个新的设备,然åŽç‚¹å‡»â€œç»§ç»­â€ã€‚" #: ../graphs.php:888 msgid "New Device" msgstr "新设备" #: /var/www/html/cacti/graphs.php:925 msgid "Change Graph(s) Associated Device" msgstr "更改关è”设备图" #: ../graphs.php:900 msgid "Click 'Continue' to re-apply suggested naming to the following Graph(s)." msgstr "点击“继续â€é‡æ–°å°†å»ºè®®çš„命å应用于以下图表。" #: ../graphs.php:905 msgid "Reapply Suggested Naming to Graph(s)" msgstr "釿–°å‘å›¾è¡¨é‡æ–°åº”用建议的命å" #: ../graphs.php:921 msgid "Click 'Continue' to create an Aggregate Graph from the selected Graph(s)." msgstr "点击“继续â€ï¼Œä»Žé€‰å®šçš„图形创建一个èšåˆå›¾ã€‚" #: ../graphs.php:928 msgid "The following data sources are in use by these graphs:" msgstr "ä»¥ä¸‹æ•°æ®æºæ­£åœ¨è¢«è¿™äº›å›¾å½¢ä½¿ç”¨ï¼š" #: ../graphs.php:961 msgid "Please confirm" msgstr "请确认" #: ../graphs.php:1029 msgid "Resize Selected Graph(s)" msgstr "调整所选图表的大å°" #: ../graphs.php:1051 msgid "Select the Aggregate Template to use and press 'Continue' to create your Aggregate Graph. Otherwise press 'Cancel' to return." msgstr "选择è¦ä½¿ç”¨çš„èšåˆæ¨¡æ¿ï¼Œç„¶åŽæŒ‰â€œç»§ç»­â€åˆ›å»ºèšåˆå›¾ã€‚ å¦åˆ™æŒ‰'å–æ¶ˆ'返回。" #: ../graphs.php:1072 msgid "Create Aggregate" msgstr "创建èšåˆ" #: ../graphs.php:1076 msgid "There are presently no Aggregate Templates defined for this Graph Template. Please either first create an Aggregate Template for the selected Graphs Graph Template and try again, or simply crease an un-templated Aggregate Graph." msgstr "ç›®å‰æ²¡æœ‰ä¸ºæ­¤å›¾è¡¨æ¨¡æ¿å®šä¹‰çš„èšåˆæ¨¡æ¿ã€‚ 请先为选定的图形图形模æ¿åˆ›å»ºä¸€ä¸ªèšåˆæ¨¡æ¿ï¼Œç„¶åŽå†è¯•一次,或者简å•地折å ä¸€ä¸ªæ²¡æœ‰æ¨¡æ¿çš„èšåˆå›¾å½¢ã€‚" #: ../graphs.php:1077 msgid "Press 'Return' to return and select different Graphs." msgstr "按“返回â€è¿”回并选择ä¸åŒçš„图形。" #: ../graphs.php:1089 msgid "Click 'Continue' to apply Automation Rules to the following Graphs." msgstr "点击“继续â€ä»¥å°†è‡ªåŠ¨åŒ–è§„åˆ™åº”ç”¨äºŽä»¥ä¸‹å›¾å½¢ã€‚" #: ../graphs.php:1105 msgid "You must select at least one Graph." msgstr "您必须至少选择一个图表。" #: ../graphs.php:1245 #, php-format msgid "Graph [edit: %s]" msgstr "图形[编辑:%s]" #: ../graphs.php:1251 msgid "Graph [new]" msgstr "图形[新建]" #: ../graphs.php:1276 msgid "Turn Off Graph Debug Mode." msgstr "关闭图形调试模å¼ã€‚" #: ../graphs.php:1278 msgid "Turn On Graph Debug Mode." msgstr "打开图形调试模å¼ã€‚" #: ../graphs.php:1291 msgid "Edit Graph Template." msgstr "编辑图形模æ¿ã€‚" #: ../graphs.php:1297 msgid "Unlock Graph." msgstr "è§£é”图。" #: ../graphs.php:1299 msgid "Lock Graph." msgstr "é”图。" #: ../graphs.php:1323 msgid "Selected Graph Template" msgstr "选择图形模æ¿" #: ../graphs.php:1324 #, php-format msgid "Choose a Graph Template to apply to this Graph. Please note that you may only change Graph Templates to a 100% compatible Graph Template, which means that it includes identical Data Sources." msgstr "选择一个图表模æ¿åº”用到这个图表。 请注æ„,您åªèƒ½å°†å›¾å½¢æ¨¡æ¿æ›´æ”¹ä¸ºç™¾ä¼šä¹‹ç™¾å…¼å®¹çš„图形模æ¿ï¼Œè¿™æ„味ç€å®ƒåŒ…å«ç›¸åŒçš„æ•°æ®æºã€‚" #: ../graphs.php:1332 msgid "Choose the Device that this Graph belongs to." msgstr "选择该图所属的设备。" #: ../graphs.php:1371 msgid "Supplemental Graph Template Data" msgstr "Supplemental Graph Template Data" #: ../graphs.php:1373 msgid "Graph Fields" msgstr "图形字段" #: ../graphs.php:1374 msgid "Graph Item Fields" msgstr "图形项字段" #: ../graphs.php:1643 #: ../lib/functions.php:1908 msgid "Graph Management" msgstr "图形管ç†" #: ../graphs.php:1787 #: ../include/global_form.php:1859 #: ../lib/html_reports.php:355 #: ../tree.php:681 msgid "Graph Name" msgstr "图表åç§°" #: ../graphs.php:1787 msgid "The Title of this Graph. Generally programatically generated from the Graph Template definition or Suggested Naming rules. The max length of the Title is controlled under Settings->Visual." msgstr "这个图表的标题。 通常以图形模æ¿å®šä¹‰æˆ–建议的命å规则编程å¼ç”Ÿæˆã€‚ 标题的最大长度在“设置†- >“å¯è§†â€ä¸‹è¿›è¡ŒæŽ§åˆ¶ã€‚" #: ../graphs.php:1788 msgid "The internal database ID for this Graph. Useful when performing automation or debugging." msgstr "此图的内部数æ®åº“ID。 执行自动化或调试时很有用。" #: ../graphs.php:1789 msgid "The Graph Template that this Graph was based upon." msgstr "该图所基于的图表模æ¿ã€‚" #: ../graphs.php:1790 msgid "The size of this Graph when not in Preview mode." msgstr "æœªå¤„äºŽâ€œé¢„è§ˆâ€æ¨¡å¼æ—¶æ­¤å›¾å½¢çš„大å°ã€‚" #: ../graphs_items.php:290 msgid "Data Sources [No Device]" msgstr "æ•°æ®æº[无设备]" #: ../graphs_items.php:325 #: ../include/global_arrays.php:984 #: ../include/global_form.php:1556 msgid "Data Template" msgstr "æ•°æ®æ¨¡æ¿" #: ../graphs_items.php:377 #, php-format msgid "Graph Items [graph: %s]" msgstr "图形项目[图形:%s]" #: /var/www/html/cacti/graphs_items.php:440 msgid "Choose the Data Source to associate with this Graph Item." msgstr "选择与此图形项目关è”çš„æ•°æ®æºã€‚" #: ../graphs_new.php:75 msgid "Default Settings Saved" msgstr "默认设置已ä¿å­˜" #: ../graphs_new.php:281 #, php-format msgid "Create Graph from %s" msgstr "创建图形æ¥è‡ªäºŽ '%s'" #: ../graphs_new.php:302 #, php-format msgid "Created %s Graphs from %s" msgstr "创建%s图æ¥è‡ªäºŽ%s" #: ../graphs_new.php:304 #, php-format msgid "Created 1 Graph from %s" msgstr "创建1个图æ¥è‡ªäºŽ '%s'" #: ../graphs_new.php:345 #, php-format msgid "Graph [Template: %s]" msgstr "图形 [模æ¿ï¼š%s]" #: ../graphs_new.php:346 #, php-format msgid "Graph Items [Template: %s]" msgstr "图表项目 [模æ¿ï¼š%s]" #: ../graphs_new.php:351 #, php-format msgid "Data Source [Template: %s]" msgstr "æ•°æ®æº [模æ¿ï¼š%s]" #: ../graphs_new.php:361 #, php-format msgid "Custom Data [Template: %s]" msgstr "è‡ªå®šä¹‰æ•°æ® [模版: %s]" #: ../graphs_new.php:446 #, php-format msgid "New Graphs for [ %s ]" msgstr "新的图形为[ %s ]" #: ../graphs_new.php:449 msgid "New Graphs for [ All Devices ]" msgstr "所有设备的新图" #: ../graphs_new.php:454 msgid "New Graphs for None Host Type" msgstr "无主机类型的新图形" #: /var/www/html/cacti/graphs_new.php:501 #: /var/www/html/cacti/include/global_session.php:103 msgid "Filter Settings Saved" msgstr "过滤器设置ä¿å­˜" #: ../graphs_new.php:500 msgid "Graph Types" msgstr "图表类型" #: ../graphs_new.php:505 msgid "Graph Template Based" msgstr "图形模æ¿åŸºç¡€" #: /var/www/html/cacti/graphs_new.php:565 msgid "Save Filters" msgstr "ä¿å­˜è¿‡æ»¤å™¨" #: ../graphs_new.php:541 msgid "Edit this Device" msgstr "编辑此设备" #: ../graphs_new.php:542 msgid "Create New Device" msgstr "创建新设备" #: ../graphs_new.php:598 #: ../graphs_new.php:880 #: ../user_admin.php:1593 #: ../user_group_admin.php:1316 msgid "Select All" msgstr "选择全部" #: ../lib/html.php:674 #: ../lib/html.php:761 msgid "Select All Rows" msgstr "选择所有行" #: ../graphs_new.php:674 #: ../include/global_arrays.php:679 #: ../include/global_arrays.php:750 #: ../lib/html_form.php:1111 #: ../lib/html_form.php:1124 #: ../tree.php:1025 msgid "Create" msgstr "创建" #: ../graphs_new.php:676 msgid "(Select a graph type to create)" msgstr "(选择è¦åˆ›å»ºçš„图形类型)" #: ../graphs_new.php:760 #, php-format msgid "Data Query [%s]" msgstr "æ•°æ®æŸ¥è¯¢[%s]" #: ../graphs_new.php:876 msgid "From there you can get more information." msgstr "从那里你å¯ä»¥å¾—到更多的信æ¯ã€‚" #: ../graphs_new.php:876 msgid "This Data Query returned 0 rows, perhaps there was a problem executing this Data Query." msgstr "è¿™ä¸ªæ•°æ®æŸ¥è¯¢è¿”回了0è¡Œï¼Œä¹Ÿè®¸æ‰§è¡Œè¿™ä¸ªæ•°æ®æŸ¥è¯¢æœ‰é—®é¢˜ã€‚" #: ../graphs_new.php:876 msgid "You can run this Data Query in debug mode" msgstr "您å¯ä»¥åœ¨è°ƒè¯•模å¼ä¸‹è¿è¡Œæ­¤æ•°æ®æŸ¥è¯¢" #: ../graphs_new.php:919 msgid "Search Returned no Rows." msgstr "æœç´¢æ²¡æœ‰è¿”回行。" #: ../graphs_new.php:924 msgid "Error in data query." msgstr "æ•°æ®æŸ¥è¯¢é”™è¯¯ã€‚" #: ../graphs_new.php:948 msgid "Select a Graph Type to Create" msgstr "选择è¦åˆ›å»ºçš„图形类型" #: ../graphs_new.php:951 msgid "Make selection default" msgstr "使选择默认" #: ../graphs_new.php:951 msgid "Set Default" msgstr "默认设置" #: ../host.php:41 msgid "Change Device Settings" msgstr "更改设备设置" #: ../host.php:42 msgid "Clear Statistics" msgstr "清除统计" #: ../host.php:44 msgid "Sync to Device Template" msgstr "åŒæ­¥åˆ°è®¾å¤‡æ¨¡æ¿" #: ../host.php:376 msgid "Click 'Continue' to enable the following Device(s)." msgstr "点击“继续â€ä»¥å¯ç”¨ä»¥ä¸‹è®¾å¤‡ã€‚" #: ../host.php:381 msgid "Enable Device(s)" msgstr "å¯ç”¨è®¾å¤‡" #: ../host.php:385 msgid "Click 'Continue' to disable the following Device(s)." msgstr "点击“继续â€ä»¥ç¦ç”¨ä»¥ä¸‹è®¾å¤‡ã€‚" #: ../host.php:390 msgid "Disable Device(s)" msgstr "ç¦ç”¨è®¾å¤‡" #: ../host.php:394 msgid "Click 'Continue' to change the Device options below for multiple Device(s). Please check the box next to the fields you want to update, and then fill in the new value." msgstr "ç‚¹å‡»â€œç»§ç»­â€æ›´æ”¹ä¸‹é¢çš„多个设备的设备选项。 è¯·é€‰ä¸­è¦æ›´æ–°çš„字段æ—边的å¤é€‰æ¡†ï¼Œç„¶åŽå¡«å†™æ–°çš„值。" #: ../host.php:417 msgid "Update this Field" msgstr "更新这个字段" #: ../host.php:432 msgid "Change Device(s) SNMP Options" msgstr "更改设备SNMP选项" #: ../host.php:436 msgid "Click 'Continue' to clear the counters for the following Device(s)." msgstr "ç‚¹å‡»â€œç»§ç»­â€æ¸…除以下设备的计数器。" #: ../host.php:441 msgid "Clear Statistics on Device(s)" msgstr "清除设备上的统计信æ¯" #: ../host.php:445 msgid "Click 'Continue' to Synchronize the following Device(s) to their Device Template." msgstr "点击“继续â€ï¼Œå°†ä»¥ä¸‹è®¾å¤‡åŒæ­¥åˆ°ä»–们的设备模æ¿ã€‚" #: ../host.php:450 msgid "Synchronize Device(s)" msgstr "åŒæ­¥è®¾å¤‡" #: ../host.php:454 msgid "Click 'Continue' to delete the following Device(s)." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹è®¾å¤‡ã€‚" #: ../host.php:457 msgid "Leave all Graph(s) and Data Source(s) untouched. Data Source(s) will be disabled however." msgstr "ä¿æŒæ‰€æœ‰å›¾å½¢å’Œæ•°æ®æºä¸å˜ã€‚ æ•°æ®æºå°†è¢«ç¦ç”¨ã€‚" #: ../host.php:458 msgid "Delete all associated Graph(s) and Data Source(s)." msgstr "删除所有关è”çš„å›¾å½¢å’Œæ•°æ®æºã€‚" #: ../host.php:464 msgid "Delete Device(s)" msgstr "删除设备" #: ../host.php:468 msgid "Click 'Continue' to place the following Device(s) under the branch selected below." msgstr "点击“继续â€ï¼Œå°†ä»¥ä¸‹è®¾å¤‡æ”¾ç½®åœ¨ä¸‹é¢é€‰æ‹©çš„分支下。" #: ../host.php:478 msgid "Place Device(s) on Tree" msgstr "将设备放置在树上" #: ../host.php:482 msgid "Click 'Continue' to apply Automation Rules to the following Devices(s)." msgstr "点击“继续â€å°†è‡ªåŠ¨åŒ–è§„åˆ™åº”ç”¨åˆ°ä»¥ä¸‹è®¾å¤‡" #: ../host.php:487 msgid "Run Automation on Device(s)" msgstr "在设备上è¿è¡Œè‡ªåŠ¨åŒ–" #: ../host.php:498 msgid "You must select at least one device." msgstr "您必须至少选择一个设备。" #: ../host.php:598 msgid "Device [new]" msgstr "设备[新建]" #: ../host.php:604 #, php-format msgid "Device [edit: %s]" msgstr "设备[编辑: %s]" #: ../host.php:606 msgid "Disable Device Debug" msgstr "关闭设备调" #: ../host.php:608 msgid "Enable Device Debug" msgstr "å¯ç”¨è®¾å¤‡è°ƒè¯•" #: ../host.php:622 msgid "Create Graphs for this Device" msgstr "为此设备创建图形" #: ../host.php:624 msgid "Data Source List" msgstr "æ•°æ®æºåˆ—表" #: ../host.php:625 msgid "Graph List" msgstr "图表列表" #: ../host.php:631 msgid "Contacting Device" msgstr "è”系设备" #: ../host.php:663 msgid "Data Query Debug Information" msgstr "æ•°æ®æŸ¥è¯¢è°ƒè¯•ä¿¡æ¯" #: ../tree.php:1167 #: ../tree.php:1241 #: ../tree.php:1328 #: ../user_admin.php:29 #: ../user_group_admin.php:31 msgid "Copy" msgstr "å¤åˆ¶" #: ../host.php:666 #: ../templates_import.php:141 msgid "Hide" msgstr "éšè—" #: ../host.php:737 #: ../tree.php:1145 #: ../tree.php:1219 #: ../tree.php:1306 msgid "Edit" msgstr "编辑" #: ../host.php:737 msgid "Is Being Graphed" msgstr "正在被绘制" #: ../host.php:737 msgid "Not Being Graphed" msgstr "Not Being Graphed" #: ../host.php:740 msgid "Delete Graph Template Association" msgstr "删除图形模æ¿å…³è”" #: ../host.php:747 #: ../host_templates.php:493 msgid "No associated graph templates." msgstr "没有相关的图形模æ¿ã€‚" #: ../host.php:756 #: ../host_templates.php:502 msgid "Add Graph Template" msgstr "添加图片模æ¿" #: ../host.php:762 msgid "Add Graph Template to Device" msgstr "å°†å›¾å½¢æ¨¡æ¿æ·»åŠ åˆ°è®¾å¤‡" #: ../host.php:772 #: ../host_templates.php:525 msgid "Associated Data Queries" msgstr "å…³è”æ•°æ®æŸ¥è¯¢" #: ../host.php:777 #: ../host.php:873 msgid "Re-Index Method" msgstr "釿–°ç¼–制索引方法" #: ../host.php:779 #: ../lib/api_automation.php:1212 #: ../lib/api_automation.php:1274 #: ../lib/api_automation.php:1338 #: ../lib/functions.php:1926 #: ../lib/functions.php:1992 #: ../lib/functions.php:2058 #: ../lib/functions.php:2094 #: ../lib/functions.php:2112 #: ../lib/functions.php:2130 #: ../lib/functions.php:2148 #: ../lib/functions.php:2178 #: ../lib/functions.php:2214 #: ../lib/functions.php:2244 #: ../lib/functions.php:2334 #: ../lib/functions.php:2520 #: ../lib/functions.php:2544 #: ../lib/functions.php:2562 #: ../lib/functions.php:2580 #: ../lib/functions.php:2598 #: ../lib/functions.php:2622 #: ../lib/html_reports.php:1216 #: ../links.php:377 #: ../plugins.php:374 msgid "Actions" msgstr "æ“作" #: /var/www/html/cacti/host.php:888 #, php-format msgid " [%d Items, %d Rows]" msgstr " [%d 个项目, %d行]" #: ../host.php:840 msgid "Fail" msgstr "失败" #: ../host.php:840 #: ../lib/functions.php:3811 #: ../lib/functions.php:3816 msgid "Success" msgstr "æˆåŠŸ" #: ../host.php:843 msgid "Reload Query" msgstr "釿–°åŠ è½½æŸ¥è¯¢" #: ../host.php:844 msgid "Verbose Query" msgstr "详细查询" #: ../host.php:845 msgid "Remove Query" msgstr "删除查询" #: ../host.php:851 msgid "No Associated Data Queries." msgstr "没有关è”çš„æ•°æ®æŸ¥è¯¢ã€‚" #: ../host.php:867 #: ../host_templates.php:559 msgid "Add Data Query" msgstr "æ·»åŠ æ•°æ®æŸ¥è¯¢" #: ../host.php:879 msgid "Add Data Query to Device" msgstr "å°†æ•°æ®æŸ¥è¯¢æ·»åŠ åˆ°è®¾å¤‡" #: ../host.php:1014 #: ../include/global_arrays.php:460 msgid "Ping and SNMP Uptime" msgstr "Pingå’ŒSNMP正常è¿è¡Œæ—¶é—´" #: ../host.php:1015 #: ../include/global_arrays.php:462 msgid "SNMP Uptime" msgstr "SNMP正常è¿è¡Œæ—¶é—´" #: ../host.php:1016 #: ../include/global_arrays.php:465 msgid "Ping" msgstr "Ping" #: ../host.php:1017 #: ../include/global_arrays.php:461 msgid "Ping or SNMP Uptime" msgstr "Ping或SNMP正常è¿è¡Œæ—¶é—´" #: ../host.php:1018 #: ../include/global_arrays.php:463 msgid "SNMP Desc" msgstr "SNMPæè¿°" #: ../host.php:1019 msgid "SNMP GetNext" msgstr "SNMP GetNext" #: ../host.php:1312 #: ../include/global_settings.php:441 msgid "Site" msgstr "站点" #: /var/www/html/cacti/host.php:1515 msgid "Export Devices" msgstr "导出设备" #: ../host.php:1388 #: ../lib/api_automation.php:164 #: ../lib/api_automation.php:1019 msgid "Not Up" msgstr "ä¸èµ·æ¥" #: ../host.php:1391 #: ../lib/api_automation.php:167 #: ../lib/api_automation.php:1022 #: ../lib/html_utility.php:814 #: ../pollers.php:41 msgid "Recovering" msgstr "æ¢å¤ä¸­" #: ../host.php:1392 #: ../lib/api_automation.php:168 #: ../lib/api_automation.php:1023 #: ../lib/html_utility.php:823 #: ../plugins.php:166 #: ../utilities.php:2011 msgid "Unknown" msgstr "未知" #: ../host.php:1498 #: ../lib/api_automation.php:557 msgid "Device Description" msgstr "设备æè¿°" #: ../host.php:1498 msgid "The name by which this Device will be referred to." msgstr "该设备将被引用的å称。" #: ../host.php:1499 #: ../include/global_form.php:1013 #: ../include/global_form.php:1638 #: ../lib/api_automation.php:270 #: ../lib/api_automation.php:558 #: ../lib/api_automation.php:809 #: ../lib/api_automation.php:1138 #: ../managers.php:225 #: ../pollers.php:82 #: ../pollers.php:613 #: ../user_admin.php:1242 #: ../user_group_admin.php:966 msgid "Hostname" msgstr "主机å" #: ../host.php:1499 msgid "Either an IP address, or hostname. If a hostname, it must be resolvable by either DNS, or from your hosts file." msgstr "Påœ°å€æˆ–主机å。 如果是主机å,则必须由DNS或主机文件解æžã€‚" #: ../host.php:1500 msgid "The internal database ID for this Device. Useful when performing automation or debugging." msgstr "此设备的内部数æ®åº“ID。 执行自动化或调试时很有用。" #: ../host.php:1501 msgid "The total number of Graphs generated from this Device." msgstr "该设备生æˆçš„图形总数。" #: ../host.php:1502 msgid "The total number of Data Sources generated from this Device." msgstr "此设备生æˆçš„æ•°æ®æºæ€»æ•°ã€‚" #: ../host.php:1503 msgid "The monitoring status of the Device based upon ping results. If this Device is a special type Device, by using the hostname \"localhost\", or due to the setting to not perform an Availability Check, it will always remain Up. When using cmd.php data collector, a Device with no Graphs, is not pinged by the data collector and will remain in an \"Unknown\" state." msgstr "基于ping结果的Device的监视状æ€ã€‚ 如果此设备是特殊类型的设备,则通过使用主机å\"localhost\"æˆ–ç”±äºŽè®¾ç½®ä¸ºä¸æ‰§è¡Œå¯ç”¨æ€§æ£€æŸ¥è€Œå§‹ç»ˆä¿æŒä¸ºâ€œå¯ç”¨â€ã€‚ 当使用cmd.phpæ•°æ®æ”¶é›†å™¨æ—¶ï¼Œæ²¡æœ‰å›¾å½¢çš„设备ä¸è¢«æ•°æ®æ”¶é›†å™¨pingï¼Œå¹¶ä¿æŒåœ¨â€œæœªçŸ¥â€çжæ€ã€‚" #: ../host.php:1504 msgid "In State" msgstr "在状æ€" #: ../host.php:1504 msgid "The amount of time that this Device has been in its current state." msgstr "此设备处于当å‰çжæ€çš„æ—¶é—´ã€‚" #: ../host.php:1505 msgid "The current amount of time that the host has been up." msgstr "主机已ç»å¯åŠ¨çš„æ—¶é—´ã€‚" #: ../host.php:1506 msgid "Poll Time" msgstr "轮询时间" #: ../host.php:1506 msgid "The amount of time it takes to collect data from this Device." msgstr "ä»Žæ­¤è®¾å¤‡æ”¶é›†æ•°æ®æ‰€èŠ±è´¹çš„æ—¶é—´ã€‚" #: ../host.php:1507 msgid "Current (ms)" msgstr "å½“å‰ (ç§’)" #: ../host.php:1507 msgid "The current ping time in milliseconds to reach the Device." msgstr "到达设备的当å‰ping时间(以毫秒为å•ä½ï¼‰ã€‚" #: ../host.php:1508 msgid "Average (ms)" msgstr "å¹³å‡ (ç§’)" #: ../host.php:1508 msgid "The average ping time in milliseconds to reach the Device since the counters were cleared for this Device." msgstr "自从设备清除计数器åŽï¼Œåˆ°è¾¾è®¾å¤‡çš„å¹³å‡ping时间(以毫秒为å•ä½ï¼‰ã€‚" #: ../host.php:1509 msgid "Availability" msgstr "å¯ç”¨æ€§" #: ../host.php:1509 msgid "The availability percentage based upon ping results since the counters were cleared for this Device." msgstr "自从设备清除计数器以æ¥ï¼ŒåŸºäºŽping结果的å¯ç”¨æ€§ç™¾åˆ†æ¯”。" #: ../host_templates.php:32 msgid "Sync Devices" msgstr "åŒæ­¥è®¾å¤‡" #: ../host_templates.php:256 msgid "Click 'Continue' to delete the following Device Template(s)." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹è®¾å¤‡æ¨¡æ¿ã€‚" #: ../host_templates.php:261 msgid "Delete Device Template(s)" msgstr "删除设备模æ¿" #: ../host_templates.php:265 msgid "Click 'Continue' to duplicate the following Device Template(s). Optionally change the title for the new Device Template(s)." msgstr "点击“继续â€å¤åˆ¶ä¸‹é¢çš„设备模æ¿ã€‚ (å¯é€‰ï¼‰æ›´æ”¹æ–°è®¾å¤‡æ¨¡æ¿çš„æ ‡é¢˜ã€‚" #: ../host_templates.php:275 msgid "Duplicate Device Template(s)" msgstr "é‡å¤çš„设备模æ¿" #: ../host_templates.php:279 msgid "Click 'Continue' to Synchronize Devices associated with the selected Device Template(s). Note that this action may take some time depending on the number of Devices mapped to the Device Template." msgstr "点击“继续â€ä»¥åŒæ­¥ä¸Žé€‰å®šè®¾å¤‡æ¨¡æ¿å…³è”的设备。 请注æ„,此æ“作å¯èƒ½éœ€è¦ä¸€äº›æ—¶é—´ï¼Œå…·ä½“å–决于映射到设备模æ¿çš„设备数é‡ã€‚" #: ../host_templates.php:286 msgid "Sync Devices to Device Template(s)" msgstr "å°†è®¾å¤‡åŒæ­¥åˆ°è®¾å¤‡æ¨¡æ¿" #: ../host_templates.php:289 msgid "You must select at least one host template." msgstr "您必须至少选择一个主机模æ¿ã€‚" #: ../host_templates.php:328 msgid "Click 'Continue' to delete the following Graph Template will be disassociated from the Device Template." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹å›¾å½¢æ¨¡æ¿å°†ä»Žè®¾å¤‡æ¨¡æ¿ä¸­åˆ†ç¦»å‡ºæ¥ã€‚" #: ../host_templates.php:329 #, php-format msgid "Graph Template Name: %s" msgstr "图形模æ¿å称:%s" #: ../host_templates.php:388 msgid "Click 'Continue' to delete the following Data Queries will be disassociated from the Device Template." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹æ•°æ®æŸ¥è¯¢å°†ä»Žè®¾å¤‡æ¨¡æ¿ä¸­è§£é™¤å…³è”。" #: ../host_templates.php:389 #, php-format msgid "Data Query Name: %s" msgstr "æ•°æ®æŸ¥è¯¢å称: %s" #: ../host_templates.php:442 #, php-format msgid "Device Templates [edit: %s]" msgstr "设备模æ¿[编辑: %s]" #: ../host_templates.php:444 msgid "Device Templates [new]" msgstr "设备模æ¿[新建]" #: ../host_templates.php:461 msgid "Default Submit Button" msgstr "默认æäº¤æŒ‰é’®" #: ../host_templates.php:515 msgid "Add Graph Template to Device Template" msgstr "å°†å›¾å½¢æ¨¡æ¿æ·»åŠ åˆ°è®¾å¤‡æ¨¡æ¿" #: ../host_templates.php:550 msgid "No associated data queries." msgstr "æ²¡æœ‰ç›¸å…³çš„æ•°æ®æŸ¥è¯¢ã€‚" #: ../host_templates.php:569 msgid "Add Data Query to Device Template" msgstr "å°†æ•°æ®æŸ¥è¯¢æ·»åŠ åˆ°è®¾å¤‡æ¨¡æ¿" #: ../host_templates.php:691 #: ../host_templates.php:706 #: ../host_templates.php:805 #: ../include/global_arrays.php:874 #: ../lib/functions.php:2082 msgid "Device Templates" msgstr "设备模æ¿" #: ../host_templates.php:724 msgid "Has Devices" msgstr "有设备" #: ../host_templates.php:814 #: ../lib/api_automation.php:272 #: ../lib/api_automation.php:559 #: ../lib/api_automation.php:1139 msgid "Device Template Name" msgstr "设备模æ¿åç§°" #: ../host_templates.php:814 msgid "The name of this Device Template." msgstr "此设备模æ¿çš„å称。" #: ../host_templates.php:815 msgid "The internal database ID for this Device Template. Useful when performing automation or debugging." msgstr "此设备模æ¿çš„内部数æ®åº“ID。 执行自动化或调试时很有用。" #: ../host_templates.php:816 msgid "Device Templates in use cannot be Deleted. In use is defined as being referenced by a Device." msgstr "正在使用的设备模æ¿ä¸èƒ½è¢«åˆ é™¤ã€‚ 在使用中被定义为由设备引用。" #: ../host_templates.php:817 msgid "Devices Using" msgstr "设备使用" #: ../host_templates.php:817 msgid "The number of Devices using this Device Template." msgstr "使用此设备模æ¿çš„设备数é‡ã€‚" #: ../host_templates.php:840 msgid "No Device Templates Found" msgstr "未找到设备模æ¿" #: /var/www/html/cacti/include/auth.php:96 msgid "Not Logged In" msgstr "未登录" #: /var/www/html/cacti/include/auth.php:97 msgid "You must be logged in to access this area of Cacti." msgstr "您必须先登录æ‰èƒ½è®¿é—®è¯¥åŒºåŸŸçš„Cacti。" #: /var/www/html/cacti/include/auth.php:101 msgid "FATAL: You must be logged in to access this area of Cacti." msgstr "致命错误:您必须先登录æ‰èƒ½è®¿é—®è¯¥åŒºåŸŸçš„Cacti。" #: ../include/auth.php:115 #: ../include/auth.php:117 #: ../permission_denied.php:30 #: ../permission_denied.php:32 msgid "Login Again" msgstr "釿–°ç™»å½•" #: ../include/auth.php:125 #: ../include/auth.php:146 #: ../permission_denied.php:60 msgid "Permission Denied" msgstr "没有æƒé™" #: ../include/auth.php:148 #: ../permission_denied.php:62 msgid "If you feel that this is an error. Please contact your Cacti Administrator." msgstr "如果你觉得这是一个错误,请è”ç³»Cacti管ç†å‘˜ã€‚" #: ../include/auth.php:148 #: ../permission_denied.php:62 msgid "You are not permitted to access this section of Cacti." msgstr "您ä¸èƒ½è®¿é—®è¿™éƒ¨åˆ†çš„Cacti。" #: ../include/global_arrays.php:88 msgid "Save Successful." msgstr "ä¿å­˜æˆåŠŸã€‚" #: ../include/global_arrays.php:91 msgid "Save Failed." msgstr "ä¿å­˜å¤±è´¥ã€‚" #: ../include/global_arrays.php:94 msgid "Save Failed: Field Input Error (Check Red Fields)." msgstr "ä¿å­˜å¤±è´¥ï¼šå­—段输入错误(检查红色字段)。" #: ../include/global_arrays.php:97 msgid "Passwords do not match, please retype." msgstr "密ç ä¸åŒ¹é…ï¼Œè¯·é‡æ–°è¾“入。" #: ../include/global_arrays.php:100 msgid "You must select at least one field." msgstr "您必须至少选择一个字段。" #: ../include/global_arrays.php:103 msgid "You must have built in user authentication turned on to use this feature." msgstr "æ‚¨å¿…é¡»å·²ç»æ‰“å¼€ç”¨æˆ·èº«ä»½éªŒè¯æ‰èƒ½ä½¿ç”¨æ­¤åŠŸèƒ½ã€‚" #: ../include/global_arrays.php:106 msgid "XML parse error." msgstr "XML 的解æžé”™è¯¯ã€‚" #: /var/www/html/cacti/include/global_arrays.php:136 msgid "Form types dirpath and filepath must point to a valid diretory or file." msgstr "表å•ç±»åž‹ç›®å½•è·¯å¾„å’Œæ–‡ä»¶è·¯å¾„å¿…é¡»æŒ‡å‘æœ‰æ•ˆçš„目录或文件。" #: /var/www/html/cacti/include/global_arrays.php:139 msgid "The Cacti log file must have the extension '.log'" msgstr "Cacti日志文件必须具有扩展å'.log'" #: /var/www/html/cacti/include/global_arrays.php:142 msgid "Data Source does not exist." msgstr "æ•°æ®æºä¸å­˜åœ¨ã€‚" #: ../include/global_arrays.php:109 msgid "Username already in use." msgstr "用户å已被使用。" #: /var/www/html/cacti/include/global_arrays.php:148 msgid "The SNMP v3 Privacy Passphrases to not match" msgstr "SNMPv3éšç§å¯†ç çŸ­è¯­ä¸åŒ¹é…" #: /var/www/html/cacti/include/global_arrays.php:151 msgid "The SNMP v3 Authentication Passwords to not match" msgstr "SNMP v3验è¯å¯†ç ä¸åŒ¹é…" #: ../include/global_arrays.php:112 msgid "XML: Cacti version does not exist." msgstr "XML: Cacti 版本ä¸å­˜åœ¨ã€‚" #: ../include/global_arrays.php:115 msgid "XML: Hash version does not exist." msgstr "XML: Hash 版本ä¸å­˜åœ¨ã€‚" #: ../include/global_arrays.php:118 msgid "XML: Generated with a newer version of Cacti." msgstr "XML: æ­¤xml是用新版本的Cacti生æˆçš„。" #: ../include/global_arrays.php:121 msgid "XML: Cannot locate type code." msgstr "XML:找ä¸åˆ°ç±»åž‹ä»£ç ã€‚" #: ../include/global_arrays.php:124 msgid "Username already exists." msgstr "用户åå·²ç»å­˜åœ¨ã€‚" #: ../include/global_arrays.php:127 msgid "Username change not permitted for designated template or guest user." msgstr "æŒ‡å®šæ¨¡æ¿æˆ–访客用户ä¸å…许更改用户å。" #: ../include/global_arrays.php:130 msgid "User delete not permitted for designated template or guest user." msgstr "用户删除ä¸å…è®¸æŒ‡å®šæ¨¡æ¿æˆ–访客用户。" #: ../include/global_arrays.php:133 msgid "User delete not permitted for designated graph export user." msgstr "用户删除ä¸å…许指定的图形导出用户。" #: ../include/global_arrays.php:136 msgid "Data Template Includes Deleted Data Source Profile. Please resave the Data Template with an existing Data Source Profile." msgstr "æ•°æ®æ¨¡æ¿åŒ…æ‹¬å·²åˆ é™¤çš„æ•°æ®æºé…置文件。 è¯·ä½¿ç”¨çŽ°æœ‰çš„æ•°æ®æºé…ç½®æ–‡ä»¶é‡æ–°ä¿å­˜æ•°æ®æ¨¡æ¿ã€‚" #: ../include/global_arrays.php:139 msgid "Graph Template Includes Deleted GPrint Prefix. Please run Database Repair Script to Identify and/or Correct." msgstr "图表模æ¿åŒ…括已删除的GPrintå‰ç¼€ã€‚ 请è¿è¡Œæ•°æ®åº“ä¿®å¤è„šæœ¬ä»¥è¯†åˆ«å’Œ/或更正。" #: ../include/global_arrays.php:142 msgid "Graph Template Includes Deleted CDEFs. Please run Database Repair Script to Identify and/or Correct." msgstr "图表模æ¿åŒ…括已删除的CDEF。 请è¿è¡Œæ•°æ®åº“ä¿®å¤è„šæœ¬ä»¥è¯†åˆ«å’Œ/或更正。" #: ../include/global_arrays.php:145 msgid "Graph Template Includes Deleted Data Input Method. Please run Database Repair Script to Identify." msgstr "图表模æ¿åŒ…括删除的数æ®è¾“入方法。 请è¿è¡Œæ•°æ®åº“ä¿®å¤è„šæœ¬æ¥è¯†åˆ«" #: ../include/global_arrays.php:148 msgid "Data Template Not Found during Export. Please run Database Repair Script to Identify." msgstr "åœ¨å¯¼å‡ºæœŸé—´æœªæ‰¾åˆ°æ•°æ®æ¨¡æ¿ã€‚ 请è¿è¡Œæ•°æ®åº“ä¿®å¤è„šæœ¬æ¥è¯†åˆ«ã€‚" #: ../include/global_arrays.php:151 msgid "Device Template Not Found during Export. Please run Database Repair Script to Identify." msgstr "在导出期间找ä¸åˆ°è®¾å¤‡æ¨¡æ¿ã€‚ 请è¿è¡Œæ•°æ®åº“ä¿®å¤è„šæœ¬æ¥è¯†åˆ«ã€‚" #: ../include/global_arrays.php:154 msgid "Data Query Not Found during Export. Please run Database Repair Script to Identify." msgstr "åœ¨å¯¼å‡ºæœŸé—´æœªæ‰¾åˆ°æ•°æ®æŸ¥è¯¢ã€‚ 请è¿è¡Œæ•°æ®åº“ä¿®å¤è„šæœ¬æ¥è¯†åˆ«ã€‚" #: ../include/global_arrays.php:157 msgid "Graph Template Not Found during Export. Please run Database Repair Script to Identify." msgstr "在导出期间未找到图表模æ¿ã€‚ 请è¿è¡Œæ•°æ®åº“ä¿®å¤è„šæœ¬æ¥è¯†åˆ«ã€‚" #: ../include/global_arrays.php:160 msgid "Graph not found. Either it has been deleted or your database needs repair." msgstr "没有找到图表。 è¦ä¹ˆå®ƒå·²è¢«åˆ é™¤æˆ–您的数æ®åº“需è¦ä¿®å¤ã€‚" #: ../include/global_arrays.php:163 msgid "SNMPv3 Auth Passphrases must be 8 characters or greater." msgstr "SNMPv3身份验è¯å¯†ç å¿…须是8个字符或更大。" #: ../include/global_arrays.php:166 msgid "Some Graphs not Updated. Unable to Change Device for Data Query based Graphs." msgstr "æŸäº›å›¾è¡¨æœªæ›´æ–°ã€‚ æ— æ³•ä¸ºåŸºäºŽæ•°æ®æŸ¥è¯¢çš„图形更改设备。" #: ../include/global_arrays.php:169 msgid "Unable to Change Device for Data Query based Graphs." msgstr "æ— æ³•ä¸ºåŸºäºŽæ•°æ®æŸ¥è¯¢çš„图形更改设备。" #: /var/www/html/cacti/include/global_arrays.php:214 msgid "Log file specified is not a Cacti log or archive file." msgstr "æŒ‡å®šçš„æ—¥å¿—æ–‡ä»¶ä¸æ˜¯Cacti日志或归档文件。" #: /var/www/html/cacti/include/global_arrays.php:217 msgid "Log file specified was Cacti archive file and was removed." msgstr "指定的日志文件是Cacti归档文件并被删除。" #: ../include/global_arrays.php:172 msgid "Cacti Log purged successfully" msgstr "Cacti日志清除æˆåŠŸ" #: ../include/global_arrays.php:175 msgid "Error: If you force a password change, you must also allow the user to change their password." msgstr "错误:如果您强制更改密ç ï¼Œåˆ™è¿˜å¿…é¡»å…许用户更改其密ç ã€‚" #: ../include/global_arrays.php:178 msgid "Error: You are not allowed to change your password." msgstr "错误:您ä¸èƒ½æ›´æ”¹å¯†ç ã€‚" #: ../include/global_arrays.php:181 msgid "Error: LDAP/AD based password change not supported." msgstr "é”™è¯¯ï¼šä¸æ”¯æŒåŸºäºŽLDAP / ADçš„å¯†ç æ›´æ”¹ã€‚" #: ../include/global_arrays.php:184 msgid "Error: Unable to clear log, no write permissions" msgstr "错误:无法清除日志,没有写入æƒé™" #: ../include/global_arrays.php:187 msgid "Error: Unable to clear log, file does not exist" msgstr "错误:无法清除日志,文件ä¸å­˜åœ¨" #: /var/www/html/cacti/include/global_arrays.php:238 msgid "CSRF Timeout, refreshing page." msgstr "CSRF超时,刷新页é¢ã€‚" #: ../include/global_arrays.php:190 msgid "Invalid Timestamp. Select timestamp in the future." msgstr "无效的时间戳。 选择未æ¥çš„æ—¶é—´æˆ³ã€‚" #: ../include/global_arrays.php:193 msgid "Data Collector(s) Synchronized for Offline Operation" msgstr "æ•°æ®æ”¶é›†å™¨åŒæ­¥ä»¥è¿›è¡Œç¦»çº¿æ“作" #: ../include/global_arrays.php:196 msgid "Data Collector(s) Not found when attempting Synchronization" msgstr "Data Collector(s)å°è¯•åŒæ­¥æ—¶æ‰¾ä¸åˆ°" #: ../include/global_arrays.php:199 msgid "Unable to establish MySQL connection with remote Data Collector." msgstr "æ— æ³•ä¸Žè¿œç¨‹æ•°æ®æ”¶é›†å™¨å»ºç«‹MySQL连接。" #: ../include/global_arrays.php:202 msgid "Data Collector Synchronization must be initiated from the main Cacti server." msgstr "æ•°æ®æ”¶é›†å™¨åŒæ­¥å¿…须从主è¦çš„CactiæœåС噍å¯åŠ¨ã€‚" #: ../include/global_arrays.php:205 msgid "Report Saved" msgstr "报告ä¿å­˜" #: ../include/global_arrays.php:208 msgid "Report Save Failed" msgstr "报告ä¿å­˜å¤±è´¥" #: ../include/global_arrays.php:211 msgid "Report Item Saved" msgstr "å·²ä¿å­˜æŠ¥å‘Šé¡¹ç›®" #: ../include/global_arrays.php:214 msgid "Report Item Save Failed" msgstr "报告项目ä¿å­˜å¤±è´¥" #: /var/www/html/cacti/include/global_arrays.php:268 msgid "Poller Resource Cache Cleared. Main Data Collector will rebuild at the next poller start, and Remote Data Collectors will sync afterwards." msgstr "轮询资æºç¼“存已清除。 ä¸»æ•°æ®æ”¶é›†å™¨å°†åœ¨ä¸‹ä¸€è½®è½®è¯¢å¼€å§‹æ—¶é‡å»ºï¼Œè¿œç¨‹æ•°æ®æ”¶é›†å™¨å°†åœ¨ä¹‹åŽåŒæ­¥ã€‚" #: /var/www/html/cacti/include/global_arrays.php:271 msgid "Unexpected error occurred" msgstr "æ„外的错误å‘生" #: ../include/global_arrays.php:306 #: ../include/global_arrays.php:619 msgid "Function" msgstr "功能" #: ../include/global_arrays.php:307 #: ../include/global_arrays.php:621 msgid "Special Data Source" msgstr "Special Data Source" #: ../include/global_arrays.php:308 #: ../include/global_arrays.php:623 msgid "Custom String" msgstr "自定义字符串" #: ../include/global_arrays.php:660 msgid "Current Graph Item Data Source" msgstr "当å‰å›¾å½¢æ•°æ®æº" #: ../include/global_arrays.php:318 #: ../include/global_arrays.php:325 msgid "Script/Command" msgstr "脚本/命令" #: ../include/global_arrays.php:320 #: ../include/global_arrays.php:326 #: ../utilities.php:1607 msgid "Script Server" msgstr "脚本æœåС噍" #: ../include/global_arrays.php:332 msgid "Index Count" msgstr "索引计数" #: ../include/global_arrays.php:333 msgid "Verify All" msgstr "全部验è¯" #: ../include/global_arrays.php:337 msgid "All Re-Indexing will be manual or managed through scripts or Device Automation." msgstr "æ‰€æœ‰é‡æ–°ç´¢å¼•都将通过脚本或设备自动化进行手动或管ç†ã€‚" #: ../include/global_arrays.php:338 msgid "When the Devices SNMP uptime goes backward, a Re-Index will be performed." msgstr "设备SNMP正常è¿è¡Œæ—¶é—´åŽé€€æ—¶ï¼Œå°†æ‰§è¡Œé‡æ–°ç´¢å¼•" #: ../include/global_arrays.php:339 msgid "When the Data Query index count changes, a Re-Index will be performed." msgstr "å½“æ•°æ®æŸ¥è¯¢ç´¢å¼•è®¡æ•°æ”¹å˜æ—¶ï¼Œå°†æ‰§è¡Œé‡æ–°ç´¢å¼•。" #: ../include/global_arrays.php:340 msgid "Every polling cycle, a Re-Index will be performed. Very expensive." msgstr "æ¯ä¸ªè½®è¯¢å‘¨æœŸéƒ½å°†æ‰§è¡Œé‡æ–°ç´¢å¼•。 éžå¸¸è´¹æ—¶ã€‚" #: ../include/global_arrays.php:344 msgid "SNMP Field Name (Dropdown)" msgstr "SNMP的字段å称(下拉)" #: ../include/global_arrays.php:345 msgid "SNMP Field Value (From User)" msgstr "SNMP的字段值(用户)" #: ../include/global_arrays.php:346 msgid "SNMP Output Type (Dropdown)" msgstr "SNMP的输出类型(下拉)" #: ../include/global_arrays.php:365 #: ../include/global_arrays.php:371 msgid "Normal" msgstr "正常" #: ../include/global_arrays.php:366 msgid "Light" msgstr "Light" #: ../include/global_arrays.php:367 #: ../include/global_arrays.php:372 msgid "Mono" msgstr "Mono" #: ../include/global_arrays.php:376 msgid "North" msgstr "North" #: ../include/global_arrays.php:377 msgid "South" msgstr "å—" #: ../include/global_arrays.php:378 msgid "West" msgstr "West" #: ../include/global_arrays.php:379 msgid "East" msgstr "东" #: ../include/global_arrays.php:384 msgid "Left" msgstr "å·¦" #: ../include/global_arrays.php:385 msgid "Right" msgstr "å³" #: ../include/global_arrays.php:386 msgid "Justified" msgstr "正当" #: ../include/global_arrays.php:387 msgid "Center" msgstr "Center" #: ../include/global_arrays.php:391 msgid "Top -> Down" msgstr "顶部->下" #: ../include/global_arrays.php:392 msgid "Bottom -> Up" msgstr "底部->å‘上" #: ../include/global_arrays.php:396 #: ../tree.php:1129 msgid "Numeric" msgstr "Numeric" #: ../include/global_arrays.php:397 msgid "Timestamp" msgstr "时间戳" #: ../include/global_arrays.php:398 msgid "Duration" msgstr "æŒç»­æ—¶é—´" #: ../include/global_arrays.php:430 msgid "Not In Use" msgstr "ä¸ä½¿ç”¨" #: ../include/global_arrays.php:431 #: ../include/global_arrays.php:432 #: ../include/global_arrays.php:433 #: ../include/global_arrays.php:589 #: ../include/global_arrays.php:590 #, php-format msgid "Version %d" msgstr "版本%d" #: ../include/global_arrays.php:442 msgid "[None]" msgstr "[None]" #: /var/www/html/cacti/include/global_arrays.php:501 msgid "MD5" msgstr "MD5" #: ../include/global_arrays.php:438 msgid "SHA" msgstr "SHA" #: /var/www/html/cacti/include/global_arrays.php:507 msgid "DES" msgstr "DES" #: ../include/global_arrays.php:444 msgid "AES" msgstr "AES" #: ../include/global_arrays.php:453 msgid "Logfile Only" msgstr "仅日志文件" #: ../include/global_arrays.php:454 msgid "Logfile and Syslog/Eventlog" msgstr "日志文件和Syslog/Eventlog" #: ../include/global_arrays.php:455 msgid "Syslog/Eventlog Only" msgstr "Syslog/Eventlog Only" #: ../include/global_arrays.php:464 msgid "SNMP getNext" msgstr "SNMP getNext" #: ../include/global_arrays.php:469 msgid "ICMP Ping" msgstr "ICMP Ping" #: ../include/global_arrays.php:470 msgid "TCP Ping" msgstr "TCP Ping" #: ../include/global_arrays.php:471 msgid "UDP Ping" msgstr "UDP Ping" #: ../include/global_arrays.php:475 msgid "NONE - Syslog Only if Selected" msgstr "æ³¨æ„ - åªæœ‰é€‰æ‹©äº†ç³»ç»Ÿæ—¥å¿—" #: ../include/global_arrays.php:476 msgid "LOW - Statistics and Errors" msgstr "低 - 统计和错误" #: ../include/global_arrays.php:477 msgid "MEDIUM - Statistics, Errors and Results" msgstr "中等 - 统计数æ®ï¼Œé”™è¯¯å’Œç»“æžœ" #: ../include/global_arrays.php:478 msgid "HIGH - Statistics, Errors, Results and Major I/O Events" msgstr "高 - 统计,错误,结果和主è¦I / O事件" #: ../include/global_arrays.php:479 msgid "DEBUG - Statistics, Errors, Results, I/O and Program Flow" msgstr "调试 - 统计,错误,结果,I / Oå’Œç¨‹åºæµç¨‹" #: ../include/global_arrays.php:480 msgid "DEVEL - Developer DEBUG Level" msgstr "DEVEL - å¼€å‘人员DEBUG级别" #: ../include/global_arrays.php:489 msgid "Selected Poller Interval" msgstr "选择轮询时间间隔" #: ../include/global_arrays.php:504 #: ../include/global_arrays.php:505 #: ../include/global_arrays.php:506 #: ../include/global_arrays.php:507 #: ../include/global_arrays.php:538 #: ../include/global_arrays.php:539 #: ../include/global_arrays.php:540 #: ../include/global_arrays.php:541 #, php-format msgid "Every %d Seconds" msgstr "æ¯%dç§’" #: ../include/global_arrays.php:508 #: ../include/global_arrays.php:542 #: ../include/global_arrays.php:556 msgid "Every Minute" msgstr "æ¯åˆ†é’Ÿ" #: ../include/global_arrays.php:509 #: ../include/global_arrays.php:510 #: ../include/global_arrays.php:511 #: ../include/global_arrays.php:512 #: ../include/global_arrays.php:543 #: ../include/global_arrays.php:557 #, php-format msgid "Every %d Minutes" msgstr "æ¯%d分钟" #: ../include/global_arrays.php:513 msgid "Every Hour" msgstr "æ¯éš”䏀尿—¶" #: ../include/global_arrays.php:514 #: ../include/global_arrays.php:515 #: ../include/global_arrays.php:1444 #: ../include/global_arrays.php:1445 #: ../include/global_arrays.php:1446 #: ../include/global_arrays.php:1447 #: ../include/global_arrays.php:1448 #: ../include/global_settings.php:1765 #: ../include/global_settings.php:1766 #, php-format msgid "Every %d Hours" msgstr "æ¯ %då°æ—¶" #: /var/www/html/cacti/include/global_arrays.php:584 msgid "Every %1 Day" msgstr "æ¯%1天" #: ../include/global_arrays.php:1087 #: ../include/global_settings.php:1026 #: ../rrdcleaner.php:493 #, php-format msgid "%d Year" msgstr "%d å¹´" #: ../include/global_arrays.php:547 msgid "1 Thread (default)" msgstr "å•线程 (默认)" #: ../include/global_arrays.php:572 msgid "Builtin Authentication" msgstr "内置认è¯" #: ../include/global_arrays.php:573 msgid "Web Basic Authentication" msgstr "Web基本身份验è¯" #: ../include/global_arrays.php:577 msgid "LDAP Authentication" msgstr "LDAP 验è¯" #: ../include/global_arrays.php:578 msgid "Multiple LDAP/AD Domains" msgstr "多个LDAP / AD域" #: ../include/global_arrays.php:583 msgid "Active Directory" msgstr "Active Directory" #: ../include/global_arrays.php:595 #: ../include/global_settings.php:1324 msgid "SSL" msgstr "SSL" #: ../include/global_arrays.php:596 #: ../include/global_settings.php:1324 msgid "TLS" msgstr "TLS" #: ../include/global_arrays.php:600 msgid "No Searching" msgstr "没有æœç´¢" #: ../include/global_arrays.php:601 msgid "Anonymous Searching" msgstr "åŒ¿åæœç´¢" #: ../include/global_arrays.php:602 msgid "Specific Searching" msgstr "具体æœç´¢" #: ../include/global_arrays.php:615 msgid "Enabled (strict mode)" msgstr "å¯ç”¨ï¼ˆä¸¥æ ¼æ¨¡å¼ï¼‰" #: ../include/global_arrays.php:620 #: ../include/global_form.php:2101 #: ../include/global_form.php:2143 #: ../lib/api_automation.php:1210 #: ../lib/api_automation.php:1272 msgid "Operator" msgstr "æ“作" #: ../include/global_arrays.php:622 msgid "Another CDEF" msgstr "å…¶ä»– CDEF" #: ../include/global_arrays.php:641 msgid "Inherit Parent Sorting" msgstr "继承父排åº" #: ../include/global_arrays.php:642 msgid "Manual Ordering (No Sorting)" msgstr "手动排列 (ä¸æŽ’åˆ—)" #: ../include/global_arrays.php:643 msgid "Alphabetic Ordering" msgstr "å­—æ¯æŽ’åº" #: ../include/global_arrays.php:644 msgid "Natural Ordering" msgstr "自然排åº" #: ../include/global_arrays.php:645 msgid "Numeric Ordering" msgstr "数字排åº" #: ../include/global_arrays.php:649 #: ../lib/rrd.php:2624 msgid "Header" msgstr "头部" #: ../include/global_arrays.php:650 #: ../include/global_arrays.php:697 #: ../include/global_arrays.php:1269 #: ../include/global_arrays.php:1433 #: ../lib/html_tree.php:351 msgid "Graph" msgstr "图形模æ¿" #: ../include/global_arrays.php:656 #: ../tree.php:1295 msgid "Data Query Index" msgstr "æ•°æ®æŸ¥è¯¢ç´¢å¼•" #: ../include/global_arrays.php:661 msgid "Current Graph Item Polling Interval" msgstr "当å‰å›¾å½¢é¡¹ç›®è½®è¯¢é—´éš”" #: ../include/global_arrays.php:662 msgid "All Data Sources (Do not Include Duplicates)" msgstr "æ‰€æœ‰æ•°æ®æºï¼ˆä¸åŒ…括é‡å¤é¡¹ï¼‰" #: ../include/global_arrays.php:663 msgid "All Data Sources (Include Duplicates)" msgstr "æ‰€æœ‰æ•°æ®æº (包å«é‡å¤çš„)" #: ../include/global_arrays.php:664 msgid "All Similar Data Sources (Do not Include Duplicates)" msgstr "æ‰€æœ‰ç±»ä¼¼çš„æ•°æ®æºï¼ˆä¸åŒ…括é‡å¤ï¼‰" #: ../include/global_arrays.php:665 msgid "All Similar Data Sources (Do not Include Duplicates) Polling Interval" msgstr "æ‰€æœ‰ç±»ä¼¼çš„æ•°æ®æºï¼ˆä¸åŒ…括é‡å¤ï¼‰è½®è¯¢é—´éš”" #: ../include/global_arrays.php:666 msgid "All Similar Data Sources (Include Duplicates)" msgstr "æ‰€æœ‰ç±»åž‹çš„æ•°æ®æº(包括é‡å¤)" #: ../include/global_arrays.php:667 msgid "Current Data Source Item: Minimum Value" msgstr "当剿•°æ®æºé¡¹ï¼šæœ€å°å€¼" #: ../include/global_arrays.php:668 msgid "Current Data Source Item: Maximum Value" msgstr "当剿•°æ®æºé¡¹ç›®ï¼šæœ€å¤§å€¼" #: ../include/global_arrays.php:669 msgid "Graph: Lower Limit" msgstr "图形:下é™" #: ../include/global_arrays.php:670 msgid "Graph: Upper Limit" msgstr "图形:上é™" #: ../include/global_arrays.php:671 msgid "Count of All Data Sources (Do not Include Duplicates)" msgstr "æ‰€æœ‰æ•°æ®æºçš„æ•°é‡ï¼ˆä¸åŒ…括é‡å¤é¡¹ï¼‰" #: ../include/global_arrays.php:672 msgid "Count of All Data Sources (Include Duplicates)" msgstr "æ‰€æœ‰æ•°æ®æºï¼ˆåŒ…括é‡å¤çš„)" #: ../include/global_arrays.php:673 msgid "Count of All Similar Data Sources (Do not Include Duplicates)" msgstr "æ‰€æœ‰ç±»ä¼¼æ•°æ®æºï¼ˆä¸åŒ…括é‡å¤ï¼‰" #: ../include/global_arrays.php:674 msgid "Count of All Similar Data Sources (Include Duplicates)" msgstr "æ‰€æœ‰ç±»ä¼¼çš„æ•°æ®æºï¼ˆåŒ…括é‡å¤çš„)" #: ../include/global_arrays.php:680 #: ../lib/html_form_template.php:562 #: ../lib/html_form_template.php:577 msgid "New Graphs" msgstr "新图形" #: ../include/global_arrays.php:682 #: ../include/global_arrays.php:734 #: ../include/global_arrays.php:751 msgid "Management" msgstr "管ç†" #: ../include/global_arrays.php:684 #: ../sites.php:378 #: ../sites.php:393 #: ../sites.php:472 msgid "Sites" msgstr "站点" #: ../include/global_arrays.php:685 #: ../include/global_arrays.php:866 #: ../tree.php:1476 #: ../tree.php:1491 #: ../tree.php:1549 #: ../user_admin.php:1513 #: ../user_admin.php:2926 #: ../user_admin.php:3013 #: ../user_group_admin.php:1235 #: ../user_group_admin.php:2441 msgid "Trees" msgstr "æ ‘" #: ../include/global_arrays.php:688 msgid "Aggregates" msgstr "èšåˆ" #: ../include/global_arrays.php:690 #: ../include/global_arrays.php:737 #: ../include/global_arrays.php:752 msgid "Data Collection" msgstr "æ•°æ®é‡‡é›†" #: ../include/global_arrays.php:691 #: ../include/global_arrays.php:738 #: ../pollers.php:508 msgid "Data Collectors" msgstr "æ•°æ®æ”¶é›†å™¨" #: ../include/global_arrays.php:699 msgid "Aggregate" msgstr "èšåˆ" #: ../include/global_arrays.php:702 #: ../include/global_arrays.php:754 #: ../include/global_settings.php:413 msgid "Automation" msgstr "自动化" #: ../include/global_arrays.php:704 msgid "Discovered Devices" msgstr "å‘现的设备" #: ../include/global_arrays.php:705 msgid "Device Rules" msgstr "设备规则" #: ../include/global_arrays.php:710 #: ../include/global_arrays.php:755 #: ../lib/html_filter.php:178 #: ../lib/html_graph.php:255 #: ../lib/html_tree.php:701 msgid "Presets" msgstr "预置" #: ../include/global_arrays.php:711 msgid "Data Profiles" msgstr "æ•°æ®é…置文件" #: ../include/global_arrays.php:713 #: ../lib/functions.php:2328 #: ../vdef.php:651 #: ../vdef.php:665 #: ../vdef.php:836 msgid "VDEFs" msgstr "VDEFs" #: ../include/global_arrays.php:717 #: ../include/global_arrays.php:756 msgid "Import/Export" msgstr "导入/导出" #: ../include/global_arrays.php:718 #: ../lib/functions.php:2442 #: ../templates_import.php:115 msgid "Import Templates" msgstr "导入模æ¿" #: ../include/global_arrays.php:719 #: ../lib/functions.php:2430 #: ../templates_export.php:94 msgid "Export Templates" msgstr "导出模æ¿" #: ../include/global_arrays.php:721 #: ../include/global_arrays.php:740 #: ../include/global_arrays.php:757 #: ../lib/plugins.php:763 msgid "Configuration" msgstr "系统é…ç½®" #: ../include/global_arrays.php:722 #: ../include/global_arrays.php:741 msgid "Settings" msgstr "设置" #: ../include/global_arrays.php:723 #: ../lib/functions.php:2376 #: ../user_admin.php:2199 #: ../user_admin.php:2254 #: ../user_group_admin.php:667 #: ../user_group_admin.php:2528 msgid "Users" msgstr "用户" #: ../include/global_arrays.php:724 #: ../lib/functions.php:2406 msgid "User Groups" msgstr "用户组" #: ../include/global_arrays.php:725 #: ../lib/functions.php:2394 #: ../user_domains.php:612 #: ../user_domains.php:705 msgid "User Domains" msgstr "用户域" #: ../include/global_arrays.php:727 #: ../include/global_arrays.php:743 #: ../include/global_arrays.php:758 #: ../lib/functions.php:2256 msgid "Utilities" msgstr "实用程åº" #: ../include/global_arrays.php:728 #: ../include/global_arrays.php:744 msgid "System Utilities" msgstr "系统工具" #: ../include/global_arrays.php:729 #: ../include/global_arrays.php:772 #: ../include/global_arrays.php:855 #: ../links.php:90 #: ../links.php:301 #: ../links.php:370 #: ../links.php:483 msgid "External Links" msgstr "外部链接" #: ../include/global_arrays.php:781 msgid "All Lines" msgstr "所有行" #: ../include/global_arrays.php:782 #: ../include/global_arrays.php:783 #: ../include/global_arrays.php:784 #: ../include/global_arrays.php:785 #: ../include/global_arrays.php:786 #: ../include/global_arrays.php:787 #: ../include/global_arrays.php:788 #: ../include/global_arrays.php:789 #: ../include/global_arrays.php:790 #: ../include/global_arrays.php:791 #: ../include/global_arrays.php:792 #: ../include/global_arrays.php:793 #, php-format msgid "%d Lines" msgstr "%d 行" #: ../include/global_arrays.php:848 msgid "Never" msgstr "从ä¸" #: ../include/global_arrays.php:852 msgid "Console Access" msgstr "控制å°è®¿é—®" #: /var/www/html/cacti/include/global_arrays.php:947 msgid "Realtime Graphs" msgstr "实时图" #: ../include/global_arrays.php:854 msgid "Update Profile" msgstr "æ›´æ–°é…置文件" #: ../include/global_arrays.php:857 #: ../user_admin.php:2178 msgid "User Management" msgstr "用户管ç†" #: ../include/global_arrays.php:858 msgid "Settings and Utilities" msgstr "系统工具" #: ../include/global_arrays.php:859 msgid "Automation Settings" msgstr "自动化设置" #: ../include/global_arrays.php:864 msgid "Sites/Devices/Data Sources/Data Collectors" msgstr "ç«™/设备/æ•°æ®æº/æ•°æ®æ”¶é›†å™¨" #: ../include/global_arrays.php:867 msgid "Remove Spikes from Graphs" msgstr "从图中删除尖峰" #: ../include/global_arrays.php:870 msgid "Colors/GPrints/CDEFs/VDEFs" msgstr "颜色/ GPrints/ CDEFs/ VDEFS" #: ../include/global_arrays.php:876 msgid "Export Data" msgstr "导出数æ®" #: ../include/global_arrays.php:877 msgid "Import Data" msgstr "导入数æ®" #: ../include/global_arrays.php:879 #: ../include/global_settings.php:665 msgid "Log Management" msgstr "日志管ç†" #: ../include/global_arrays.php:880 msgid "Log Viewing" msgstr "日志查看" #: ../include/global_arrays.php:882 msgid "Reports Management" msgstr "报告管ç†" #: ../include/global_arrays.php:883 msgid "Reports Creation" msgstr "报告创建" #: ../include/global_arrays.php:981 msgid "CDEF" msgstr "CDEF" #: ../include/global_arrays.php:982 msgid "CDEF Item" msgstr "CDEF项目" #: ../include/global_arrays.php:983 msgid "GPRINT Preset" msgstr "GPRINT预设" #: ../include/global_arrays.php:986 msgid "Data Input Field" msgstr "æ•°æ®è¾“入字段" #: ../include/global_arrays.php:987 #: ../include/global_form.php:394 #: ../include/global_form.php:1613 msgid "Data Source Profile" msgstr "æ•°æ®æºé…置文件" #: ../include/global_arrays.php:988 msgid "Data Template Item" msgstr "æ•°æ®æ¨¡æ¿é¡¹ç›®" #: ../include/global_arrays.php:990 msgid "Graph Template Item" msgstr "图形模æ¿é¡¹" #: ../include/global_arrays.php:991 msgid "Graph Template Input" msgstr "图表模æ¿è¾“å…¥" #: ../include/global_arrays.php:994 msgid "VDEF" msgstr "VDEF" #: ../include/global_arrays.php:995 msgid "VDEF Item" msgstr "VDEF项目" #: ../include/global_arrays.php:1039 msgid "Last Half Hour" msgstr "过去的åŠå°æ—¶" #: ../include/global_arrays.php:1040 msgid "Last Hour" msgstr "最åŽä¸€å°æ—¶" #: ../include/global_arrays.php:1041 #: ../include/global_arrays.php:1042 #: ../include/global_arrays.php:1043 #: ../include/global_arrays.php:1044 #, php-format msgid "Last %d Hours" msgstr "æœ€åŽ %d å°æ—¶" #: ../include/global_arrays.php:1045 msgid "Last Day" msgstr "最åŽä¸€å¤©" #: ../include/global_arrays.php:1046 #: ../include/global_arrays.php:1047 #: ../include/global_arrays.php:1048 #, php-format msgid "Last %d Days" msgstr "æœ€åŽ %d 天" #: ../include/global_arrays.php:1049 msgid "Last Week" msgstr "最åŽä¸€å‘¨" #: ../include/global_arrays.php:1050 #, php-format msgid "Last %d Weeks" msgstr "æœ€åŽ %d 周" #: ../include/global_arrays.php:1051 msgid "Last Month" msgstr "最åŽä¸€æœˆ" #: ../include/global_arrays.php:1052 #: ../include/global_arrays.php:1053 #: ../include/global_arrays.php:1054 #: ../include/global_arrays.php:1055 #, php-format msgid "Last %d Months" msgstr "æœ€åŽ %d 月" #: ../include/global_arrays.php:1056 msgid "Last Year" msgstr "最åŽä¸€å¹´" #: ../include/global_arrays.php:1057 #, php-format msgid "Last %d Years" msgstr "æœ€åŽ %d å¹´" #: ../include/global_arrays.php:1058 msgid "Day Shift" msgstr "白ç­" #: ../include/global_arrays.php:1059 msgid "This Day" msgstr "今天" #: ../include/global_arrays.php:1060 msgid "This Week" msgstr "本周" #: ../include/global_arrays.php:1061 msgid "This Month" msgstr "本月" #: ../include/global_arrays.php:1062 msgid "This Year" msgstr "今年" #: ../include/global_arrays.php:1063 msgid "Previous Day" msgstr "上一天" #: ../include/global_arrays.php:1064 msgid "Previous Week" msgstr "上一周" #: ../include/global_arrays.php:1065 msgid "Previous Month" msgstr "上一月" #: ../include/global_arrays.php:1066 msgid "Previous Year" msgstr "上一年" #: ../include/global_arrays.php:1070 #, php-format msgid "%d Min" msgstr "%d 分" #: ../include/global_arrays.php:1102 msgid "Month Number, Day, Year" msgstr "月数,日,年" #: ../include/global_arrays.php:1103 msgid "Month Name, Day, Year" msgstr "月份å称,日,年" #: ../include/global_arrays.php:1104 msgid "Day, Month Number, Year" msgstr "日,月份编å·ï¼Œå¹´" #: ../include/global_arrays.php:1105 msgid "Day, Month Name, Year" msgstr "日,月份å称,年份" #: ../include/global_arrays.php:1106 msgid "Year, Month Number, Day" msgstr "年,月份编å·ï¼Œæ—¥" #: ../include/global_arrays.php:1107 msgid "Year, Month Name, Day" msgstr "年,月份å称,日" #: ../include/global_arrays.php:1116 msgid "After Boost" msgstr "增强åŽ" #: ../include/global_arrays.php:1126 #: ../include/global_arrays.php:1127 #: ../include/global_arrays.php:1128 #: ../include/global_arrays.php:1129 #: ../include/global_arrays.php:1130 #: ../include/global_arrays.php:1185 #: ../include/global_arrays.php:1186 #: ../include/global_arrays.php:1187 #: ../include/global_arrays.php:1188 #: ../include/global_arrays.php:1189 #, php-format msgid "%d MBytes" msgstr "%d MBytes" #: ../include/global_arrays.php:1131 #: ../include/global_arrays.php:1190 msgid "1 GByte" msgstr "1 GByte" #: ../include/global_arrays.php:1132 #: ../include/global_arrays.php:1191 #, php-format msgid "%s GBytes" msgstr "%s GBytes" #: ../include/global_arrays.php:1133 #: ../include/global_arrays.php:1134 #: ../include/global_arrays.php:1192 #: ../include/global_arrays.php:1193 #, php-format msgid "%d GBytes" msgstr "%d GBytes" #: ../include/global_arrays.php:1147 msgid "2,000 Data Source Items" msgstr "2,000ä¸ªæ•°æ®æºé¡¹ç›®" #: ../include/global_arrays.php:1148 msgid "5,000 Data Source Items" msgstr "5,000ä¸ªæ•°æ®æºé¡¹ç›®" #: ../include/global_arrays.php:1149 msgid "10,000 Data Source Items" msgstr "15,000ä¸ªæ•°æ®æºé¡¹ç›®" #: ../include/global_arrays.php:1150 msgid "15,000 Data Source Items" msgstr "15,000ä¸ªæ•°æ®æºé¡¹ç›®" #: ../include/global_arrays.php:1151 msgid "25,000 Data Source Items" msgstr "25,000ä¸ªæ•°æ®æºé¡¹ç›®" #: ../include/global_arrays.php:1152 msgid "50,000 Data Source Items (Default)" msgstr "50,0002,000ä¸ªæ•°æ®æºé¡¹ç›®ï¼ˆé»˜è®¤ï¼‰" #: ../include/global_arrays.php:1153 msgid "100,000 Data Source Items" msgstr "100,000ä¸ªæ•°æ®æºé¡¹ç›®" #: ../include/global_arrays.php:1154 msgid "200,000 Data Source Items" msgstr "200,000ä¸ªæ•°æ®æºé¡¹ç›®" #: ../include/global_arrays.php:1155 msgid "400,000 Data Source Items" msgstr "400,000 ä¸ªæ•°æ®æºé¡¹ç›®" #: ../include/global_arrays.php:1172 msgid "2 Hours" msgstr "2 æ—¶" #: ../include/global_arrays.php:1173 msgid "4 Hours" msgstr "4 æ—¶" #: ../include/global_arrays.php:1174 msgid "6 Hours" msgstr "6 æ—¶" #: ../include/global_arrays.php:1181 #, php-format msgid "%s Hours" msgstr "%s å°æ—¶" #: ../include/global_arrays.php:1200 #, php-format msgid "%s Minutes" msgstr "%s 分钟" #: ../include/global_arrays.php:1220 msgid "1 Megabyte" msgstr "1 Megabyte" #: ../include/global_arrays.php:1221 #: ../include/global_arrays.php:1222 #: ../include/global_arrays.php:1223 #: ../include/global_arrays.php:1224 #: ../include/global_arrays.php:1225 #: ../include/global_arrays.php:1226 #, php-format msgid "%d Megabytes" msgstr "%d 兆字节" #: ../include/global_arrays.php:1230 msgid "Send Now" msgstr "现在å‘é€" #: ../include/global_arrays.php:1238 msgid "Take Ownership" msgstr "å–得所有æƒ" #: ../include/global_arrays.php:1242 msgid "Inline PNG Image" msgstr "内è”PNG图åƒ" #: ../include/global_arrays.php:1247 msgid "Inline JPEG Image" msgstr "内è”JPEG图åƒ" #: ../include/global_arrays.php:1248 msgid "Inline GIF Image" msgstr "内è”GIF图åƒ" #: ../include/global_arrays.php:1251 msgid "Attached PNG Image" msgstr "附加的PNG图åƒ" #: ../include/global_arrays.php:1254 msgid "Attached JPEG Image" msgstr "附加的JPEG图åƒ" #: ../include/global_arrays.php:1255 msgid "Attached GIF Image" msgstr "附加的GIF 图åƒ" #: ../include/global_arrays.php:1259 msgid "Inline PNG Image, LN Style" msgstr "嵌入的PNG图åƒï¼ŒLNæ ·å¼" #: ../include/global_arrays.php:1261 msgid "Inline JPEG Image, LN Style" msgstr "嵌入的JPEG图åƒï¼ŒLNæ ·å¼" #: ../include/global_arrays.php:1262 msgid "Inline GIF Image, LN Style" msgstr "嵌入的GIF图åƒï¼ŒLNæ ·å¼" #: ../include/global_arrays.php:1267 msgid "Text" msgstr "文本" #: ../include/global_arrays.php:1268 #: ../include/global_form.php:2223 msgid "Tree" msgstr "Tree" #: ../include/global_arrays.php:1270 msgid "Horizontal Rule" msgstr "水平的规则" #: ../include/global_arrays.php:1274 msgid "left" msgstr "å·¦" #: ../include/global_arrays.php:1275 msgid "center" msgstr "居中" #: ../include/global_arrays.php:1276 msgid "right" msgstr "å³" #: ../include/global_arrays.php:1280 msgid "Minute(s)" msgstr "分钟" #: ../include/global_arrays.php:1281 msgid "Hour(s)" msgstr "å°æ—¶" #: ../include/global_arrays.php:1282 msgid "Day(s)" msgstr "天" #: ../include/global_arrays.php:1283 msgid "Week(s)" msgstr "周" #: ../include/global_arrays.php:1284 msgid "Month(s), Day of Month" msgstr "æœˆï¼Œæ¯æœˆæŸä¸€å¤©" #: ../include/global_arrays.php:1285 msgid "Month(s), Day of Week" msgstr "月,星期几" #: ../include/global_arrays.php:1286 msgid "Year(s)" msgstr "å¹´" #: ../include/global_arrays.php:1290 msgid "Keep Graph Types" msgstr "ä¿æŒå›¾å½¢ç±»åž‹" #: ../include/global_arrays.php:1291 msgid "Keep Type and STACK" msgstr "ä¿æŒç±»åž‹å’Œå †æ ˆ" #: ../include/global_arrays.php:1292 msgid "Convert to AREA/STACK Graph" msgstr "转æ¢ä¸ºAREA / STACK图" #: ../include/global_arrays.php:1293 msgid "Convert to LINE1 Graph" msgstr "转æ¢ä¸ºLINE1图表" #: ../include/global_arrays.php:1294 msgid "Convert to LINE2 Graph" msgstr "转æ¢ä¸ºLINE2图表" #: ../include/global_arrays.php:1295 msgid "Convert to LINE3 Graph" msgstr "转æ¢ä¸ºLINE3图表" #: ../include/global_arrays.php:1299 msgid "No Totals" msgstr "没有总计" #: ../include/global_arrays.php:1300 msgid "Print all Legend Items" msgstr "æ‰“å°æ‰€æœ‰å›¾ä¾‹é¡¹ç›®" #: ../include/global_arrays.php:1301 msgid "Print totaling Legend Items Only" msgstr "ä»…æ‰“å°æ€»è®¡å›¾ä¾‹é¡¹ç›®" #: ../include/global_arrays.php:1305 msgid "Total Similar Data Sources" msgstr "æ€»è®¡ç›¸ä¼¼çš„æ•°æ®æº" #: ../include/global_arrays.php:1306 msgid "Total All Data Sources" msgstr "æ€»è®¡æ‰€æœ‰æ•°æ®æº" #: ../include/global_arrays.php:1310 msgid "No Reordering" msgstr "ä¸é‡æ–°æŽ’åº" #: ../include/global_arrays.php:1311 msgid "Data Source, Graph" msgstr "æ•°æ®æºï¼Œå›¾" #: ../include/global_arrays.php:1312 msgid "Graph, Data Source" msgstr "å›¾è¡¨ï¼Œæ•°æ®æº" #: ../include/global_arrays.php:1319 msgid "contains" msgstr "包å«" #: ../include/global_arrays.php:1320 msgid "does not contain" msgstr "ä¸å«" #: ../include/global_arrays.php:1321 msgid "begins with" msgstr "开始于" #: ../include/global_arrays.php:1322 msgid "does not begin with" msgstr "没有开头以" #: ../include/global_arrays.php:1323 msgid "ends with" msgstr "结æŸäºŽ" #: ../include/global_arrays.php:1324 msgid "does not end with" msgstr "没有结æŸä»¥" #: ../include/global_arrays.php:1325 msgid "matches" msgstr "匹é…" #: ../include/global_arrays.php:1326 msgid "does not match with" msgstr "ä¸ç¬¦åˆ" #: ../include/global_arrays.php:1327 msgid "is less than" msgstr "å°äºŽ" #: ../include/global_arrays.php:1328 msgid "is less than or equal" msgstr "å°äºŽæˆ–等于" #: ../include/global_arrays.php:1329 msgid "is greater than" msgstr "大于" #: ../include/global_arrays.php:1330 msgid "is greater than or equal" msgstr "大于或等于" #: ../include/global_arrays.php:1331 msgid "is unknown" msgstr "是未知的" #: ../include/global_arrays.php:1332 msgid "is not unknown" msgstr "并䏿˜¯æœªçŸ¥" #: ../include/global_arrays.php:1333 msgid "is empty" msgstr "是空的" #: ../include/global_arrays.php:1334 msgid "is not empty" msgstr "éžç©º" #: ../include/global_arrays.php:1335 msgid "matches regular expression" msgstr "åŒ¹é…æ­£åˆ™è¡¨è¾¾å¼" #: ../include/global_arrays.php:1336 msgid "does not match regular expression" msgstr "ä¸ç¬¦åˆæ­£åˆ™è¡¨è¾¾å¼" #: ../include/global_arrays.php:1438 msgid "Fixed String" msgstr "固定字符串" #: ../include/global_arrays.php:1443 msgid "Every 1 Hour" msgstr "æ¯1å°æ—¶" #: ../include/global_arrays.php:1449 msgid "Every Day" msgstr "æ¯å¤©" #: ../include/global_arrays.php:1450 msgid "Every Week" msgstr "æ¯å‘¨" #: ../include/global_arrays.php:1451 #: ../include/global_arrays.php:1452 #, php-format msgid "Every %d Weeks" msgstr "æ¯%d周" #: ../include/global_arrays.php:1477 msgctxt "A short textual representation of a month, three letters" msgid "Jan" msgstr "一月" #: ../include/global_arrays.php:1478 msgctxt "A short textual representation of a month, three letters" msgid "Feb" msgstr "二月" #: ../include/global_arrays.php:1479 msgctxt "A short textual representation of a month, three letters" msgid "Mar" msgstr "三月" #: ../include/global_arrays.php:1480 msgctxt "A short textual representation of a month, three letters" msgid "Apr" msgstr "四月" #: ../include/global_arrays.php:1481 msgctxt "A short textual representation of a month, three letters" msgid "May" msgstr "五月" #: ../include/global_arrays.php:1482 msgctxt "A short textual representation of a month, three letters" msgid "Jun" msgstr "六月" #: ../include/global_arrays.php:1483 msgctxt "A short textual representation of a month, three letters" msgid "Jul" msgstr "七月" #: ../include/global_arrays.php:1484 msgctxt "A short textual representation of a month, three letters" msgid "Aug" msgstr "八月" #: ../include/global_arrays.php:1485 msgctxt "A short textual representation of a month, three letters" msgid "Sep" msgstr "乿œˆ" #: ../include/global_arrays.php:1486 msgctxt "A short textual representation of a month, three letters" msgid "Oct" msgstr "åæœˆ" #: ../include/global_arrays.php:1487 msgctxt "A short textual representation of a month, three letters" msgid "Nov" msgstr "å一月" #: ../include/global_arrays.php:1488 msgctxt "A short textual representation of a month, three letters" msgid "Dec" msgstr "å二月" #: ../include/global_arrays.php:1502 msgctxt "A textual representation of a day, three letters" msgid "Sun" msgstr "周日" #: ../include/global_arrays.php:1503 msgctxt "A textual representation of a day, three letters" msgid "Mon" msgstr "星期一" #: ../include/global_arrays.php:1504 msgctxt "A textual representation of a day, three letters" msgid "Tue" msgstr "星期二" #: ../include/global_arrays.php:1505 msgctxt "A textual representation of a day, three letters" msgid "Wed" msgstr "星期三" #: ../include/global_arrays.php:1506 msgctxt "A textual representation of a day, three letters" msgid "Thu" msgstr "星期四" #: ../include/global_arrays.php:1507 msgctxt "A textual representation of a day, three letters" msgid "Fri" msgstr "星期五" #: ../include/global_arrays.php:1508 msgctxt "A textual representation of a day, three letters" msgid "Sat" msgstr "星期六" #: ../include/global_form.php:36 msgid "A useful name for this Data Storage and Polling Profile." msgstr "这个数æ®å­˜å‚¨å’Œè½®è¯¢é…置文件的一个有用的å字。" #: ../include/global_form.php:40 msgid "New Profile" msgstr "æ–°çš„é…置文件" #: ../include/global_form.php:44 msgid "Polling Interval" msgstr "轮询间隔" #: ../include/global_form.php:45 msgid "The frequency that data will be collected from the Data Source?" msgstr "æ•°æ®å°†ä»Žæ•°æ®æºæ”¶é›†çš„频率?" #: /var/www/html/cacti/include/global_form.php:53 msgid "How long can data be missing before RRDtool records unknown data. Increase this value if your Data Source is unstable and you wish to carry forward old data rather than show gaps in your graphs. This value is multiplied by the X-Files Factor to determine the actual amount of time." msgstr "在RRDtool记录未知数æ®ä¹‹å‰æ•°æ®å¯èƒ½ä¼šä¸¢å¤±å¤šä¹…。 å¦‚æžœæ‚¨çš„æ•°æ®æºä¸ç¨³å®šå¹¶ä¸”您希望继承旧数æ®è€Œä¸æ˜¯æ˜¾ç¤ºå›¾è¡¨ä¸­çš„空白,请增加此值。 该值乘以X-Files Factor以确定实际时间é‡ã€‚" #: ../include/global_form.php:63 msgid "X-Files Factor" msgstr "X Files å› å­" #: ../include/global_form.php:64 msgid "The amount of unknown data that can still be regarded as known." msgstr "未知数æ®é‡ä»ç„¶å¯ä»¥è¢«è§†ä¸ºå·²çŸ¥ã€‚" #: ../include/global_form.php:72 msgid "Consolidation Functions" msgstr "åˆå¹¶åŠŸèƒ½" #: ../include/global_form.php:73 #: ../include/global_form.php:105 msgid "How data is to be entered in RRAs." msgstr "如何在RRA中输入数æ®ã€‚" #: ../include/global_form.php:80 msgid "Is this the default storage profile?" msgstr "这是默认的存储é…置文件å—?" #: ../include/global_form.php:86 msgid "RRDfile Size (in Bytes)" msgstr "RRDfile大å°ï¼ˆå­—节)" #: ../include/global_form.php:87 msgid "Based upon the number of Rows in all RRAs and the number of Consolidation Functions selected, the size of this entire in the RRDfile." msgstr "æ ¹æ®æ‰€æœ‰RRA中的行数和所选åˆå¹¶å‡½æ•°çš„æ•°é‡ï¼Œåœ¨RRD文件中显示整个大å°ã€‚" #: ../include/global_form.php:109 msgid "New Profile RRA" msgstr "æ–°çš„é…置文件RRA" #: ../include/global_form.php:113 msgid "Aggregation Level" msgstr "èšåˆçº§åˆ«" #: ../include/global_form.php:114 msgid "The number of samples required prior to filling a row in the RRA specification. The first RRA should always have a value of 1." msgstr "在RRAè§„èŒƒä¸­å¡«å……è¡Œä¹‹å‰æ‰€éœ€çš„æ ·æœ¬æ•°é‡ã€‚ 第一个RRA值应该是1。" #: ../include/global_form.php:122 msgid "How many generations data is kept in the RRA." msgstr "RRA中ä¿å­˜äº†å¤šå°‘代数æ®ã€‚" #: /var/www/html/cacti/include/global_form.php:127 msgid "Default Timespan" msgstr "默认时间跨度" #: /var/www/html/cacti/include/global_form.php:128 msgid "When viewing a Graph based upon the RRA in question, the default Timespan to show for that Graph." msgstr "æ ¹æ®æ‰€è®¨è®ºçš„RRA查看图形时,将显示该图形的默认时间跨度。" #: ../include/global_form.php:131 msgid "Based upon the Aggregation Level, the Rows, and the Polling Interval the amount of data that will be retained in the RRA" msgstr "基于èšé›†çº§åˆ«ï¼Œè¡Œæ•°å’Œè½®è¯¢é—´éš”,将ä¿ç•™åœ¨RRA中的数æ®é‡" #: ../include/global_form.php:136 msgid "RRA Size (in Bytes)" msgstr "RRA大å°ï¼ˆå­—节)" #: ../include/global_form.php:137 msgid "Based upon the number of Rows and the number of Consolidation Functions selected, the size of this RRA in the RRDfile." msgstr "æ ¹æ®è¡Œçš„æ•°é‡å’Œé€‰æ‹©çš„åˆå¹¶å‡½æ•°çš„æ•°é‡ï¼ŒRRR文件中此RRA的大å°ã€‚" #: ../include/global_form.php:155 msgid "A useful name for this CDEF." msgstr "CDEF çš„å称。" #: ../include/global_form.php:175 msgid "The name of this Color." msgstr "这个颜色的å字。" #: ../include/global_form.php:182 msgid "Hex Value" msgstr "16进制" #: ../include/global_form.php:183 msgid "The hex value for this color; valid range: 000000-FFFFFF." msgstr "这个颜色的å六进制值; 有效范围:000000-FFFFFF。" #: ../include/global_form.php:191 msgid "Any named color should be read only." msgstr "任何指定的颜色都应该是åªè¯»çš„。" #: ../include/global_form.php:216 #: ../include/global_form.php:276 msgid "Enter a meaningful name for this data input method." msgstr "为这些数æ®è¾“入方法输入一个有æ„义的å称。" #: ../include/global_form.php:223 msgid "Input Type" msgstr "导入类型" #: ../include/global_form.php:224 msgid "Choose the method you wish to use to collect data for this Data Input method." msgstr "选择您希望用于为此数æ®è¾“入方法收集数æ®çš„æ–¹æ³•。" #: ../include/global_form.php:230 msgid "Input String" msgstr "导入字符串" #: ../include/global_form.php:231 msgid "The data that is sent to the script, which includes the complete path to the script and input sources in <> brackets." msgstr "å‘é€åˆ°è„šæœ¬çš„æ•°æ®åŒ…括脚本和输入æºçš„完整路径 <> 括å·ã€‚" #: ../include/global_form.php:252 #: ../include/global_form.php:263 #, php-format msgid "Field [%s]" msgstr "字段 [%s]" #: ../include/global_form.php:253 #, php-format msgid "Choose the associated field from the %s field." msgstr "从 %s 字段中选择关è”的字段。" #: ../include/global_form.php:264 #, php-format msgid "Enter a name for this %s field. Note: If using name value pairs in your script, for example: NAME:VALUE, it is important that the name match your output field name identically to the script output name or names." msgstr "为此%s字段输入一个å称。 注æ„:如果在脚本中使用å称值对,例如:NAME:VALUE,则å称与输出字段å称与脚本输出å称或å称完全匹é…很é‡è¦ã€‚" #: ../include/global_form.php:283 msgid "Update RRDfile" msgstr "æ›´æ–°RRD文件" #: ../include/global_form.php:284 msgid "Whether data from this output field is to be entered into the RRDfile." msgstr "是å¦å°†æ­¤è¾“出字段的数æ®è¾“入到RRD文件中。" #: ../include/global_form.php:291 msgid "Regular Expression Match" msgstr "正则表达å¼åŒ¹é…" #: ../include/global_form.php:292 msgid "If you want to require a certain regular expression to be matched against input data, enter it here (preg_match format)." msgstr "如果您想è¦å°†æŸä¸ªæ­£åˆ™è¡¨è¾¾å¼ä¸Žè¾“入数æ®è¿›è¡ŒåŒ¹é…,请在此输入(preg_matchæ ¼å¼ï¼‰ã€‚" #: ../include/global_form.php:299 msgid "Allow Empty Input" msgstr "å…许空输入" #: ../include/global_form.php:300 msgid "Check here if you want to allow NULL input in this field from the user." msgstr "如果你想å…许用户在这个字段中输入NULL,请检查这里。" #: ../include/global_form.php:307 msgid "Special Type Code" msgstr "Special Type Code" #: ../include/global_form.php:308 #, php-format msgid "If this field should be treated specially by host templates, indicate so here. Valid keywords for this field are %s" msgstr "如果这个字段应该被主机模æ¿ä¸“门处ç†ï¼Œè¯·åœ¨è¿™é‡ŒæŒ‡å‡ºã€‚ 此字段的有效关键字是%s" #: ../include/global_form.php:340 msgid "The name given to this data template." msgstr "æ•°æ®æ¨¡æ¿çš„å称。" #: /var/www/html/cacti/include/global_form.php:385 msgid "Choose a name for this data source. It can include replacement variables such as |host_description| or |query_fieldName|. For a complete list of supported replacement tags, please see the Cacti documentation." msgstr "ä¸ºæ­¤æ•°æ®æºé€‰æ‹©ä¸€ä¸ªå称。 它å¯ä»¥åŒ…嫿›¿æ¢å˜é‡ï¼Œå¦‚| host_description | 或| query_fieldName |。 有关支æŒçš„æ›¿æ¢æ ‡ç­¾çš„完整列表,请å‚阅Cacti文档。" #: ../include/global_form.php:376 msgid "Data Source Path" msgstr "æ•°æ®æºè·¯å¾„" #: ../include/global_form.php:381 msgid "The full path to the RRDfile." msgstr "RRDfile的完整路径。" #: ../include/global_form.php:390 msgid "The script/source used to gather data for this data source." msgstr "ç”¨äºŽä¸ºæ­¤æ•°æ®æºæ”¶é›†æ•°æ®çš„脚本/æºä»£ç ã€‚" #: ../include/global_form.php:396 #: ../include/global_form.php:1615 msgid "Select the Data Source Profile. The Data Source Profile controls polling interval, the data aggregation, and retention policy for the resulting Data Sources." msgstr "é€‰æ‹©æ•°æ®æºé…置文件。 æ•°æ®æºé…ç½®æ–‡ä»¶æŽ§åˆ¶ç»“æžœæ•°æ®æºçš„轮询间隔,数æ®èšåˆå’Œä¿ç•™ç­–略。" #: ../include/global_form.php:407 msgid "The amount of time in seconds between expected updates." msgstr "预计更新之间的时间(以秒为å•ä½ï¼‰ã€‚" #: ../include/global_form.php:411 msgid "Data Source Active" msgstr "æ•°æ®æºæ¿€æ´»" #: ../include/global_form.php:414 msgid "Whether Cacti should gather data for this data source or not." msgstr "Cacti是å¦åº”è¯¥ä¸ºè¿™ä¸ªæ•°æ®æºæ”¶é›†æ•°æ®ã€‚" #: ../include/global_form.php:422 msgid "Internal Data Source Name" msgstr "å†…éƒ¨æ•°æ®æºåç§°" #: ../include/global_form.php:427 msgid "Choose unique name to represent this piece of data inside of the RRDfile." msgstr "选择唯一的åç§°æ¥è¡¨ç¤ºRRD文件中的这部分数æ®ã€‚" #: ../include/global_form.php:430 msgid "Minimum Value (\"U\" for No Minimum)" msgstr "最å°å€¼ï¼ˆ\"U\" 为最å°å€¼ï¼‰" #: ../include/global_form.php:435 msgid "The minimum value of data that is allowed to be collected." msgstr "å…许收集的数æ®çš„æœ€å°å€¼ã€‚" #: ../include/global_form.php:438 msgid "Maximum Value (\"U\" for No Maximum)" msgstr "最大值(\"U\" 为最大值)" #: ../include/global_form.php:443 msgid "The maximum value of data that is allowed to be collected." msgstr "å…许收集的数æ®çš„æœ€å¤§å€¼ã€‚" #: ../include/global_form.php:446 msgid "Data Source Type" msgstr "æ•°æ®æºç±»åž‹" #: ../include/global_form.php:450 msgid "How data is represented in the RRA." msgstr "æ•°æ®å¦‚何在RRA中表现出æ¥ã€‚" #: ../include/global_form.php:458 msgid "The maximum amount of time that can pass before data is entered as 'unknown'. (Usually 2x300=600)" msgstr "æ•°æ®è¾“入之å‰å¯ä»¥é€šè¿‡çš„æœ€å¤§æ—¶é—´é‡ä¸ºâ€œæœªçŸ¥â€ã€‚ (通常2×300 = 600)" #: ../include/global_form.php:464 msgid "Not Selected" msgstr "Not Selected" #: ../include/global_form.php:465 msgid "When data is gathered, the data for this field will be put into this data source." msgstr "å½“æ”¶é›†æ•°æ®æ—¶ï¼Œè¯¥å­—段的数æ®å°†è¢«æ”¾å…¥è¯¥æ•°æ®æºã€‚" #: ../include/global_form.php:474 msgid "Enter a name for this GPRINT preset, make sure it is something you recognize." msgstr "为此GPRINT预设输入一个å称,确ä¿å®ƒæ˜¯æ‚¨è®¤å¯çš„。" #: ../include/global_form.php:481 msgid "GPRINT Text" msgstr "GPRINT 文本" #: ../include/global_form.php:482 msgid "Enter the custom GPRINT string here." msgstr "输入自定义GPRINT字符串。" #: ../include/global_form.php:500 msgid "Common Options" msgstr "通用选项" #: ../include/global_form.php:505 msgid "Title (--title)" msgstr "标题 (--title)" #: /var/www/html/cacti/include/global_form.php:522 msgid "The name that is printed on the graph. It can include replacement variables such as |host_description| or |query_fieldName|. For a complete list of supported replacement tags, please see the Cacti documentation." msgstr "图表上打å°çš„å称。 它å¯ä»¥åŒ…嫿›¿æ¢å˜é‡ï¼Œå¦‚| host_description | 或| query_fieldName |。 有关支æŒçš„æ›¿æ¢æ ‡ç­¾çš„完整列表,请å‚阅Cacti文档。" #: ../include/global_form.php:514 msgid "Vertical Label (--vertical-label)" msgstr "垂直标签 (--vertical-label)" #: ../include/global_form.php:518 msgid "The label vertically printed to the left of the graph." msgstr "标签垂直打å°åœ¨å›¾å½¢çš„左侧。" #: ../include/global_form.php:522 msgid "Image Format (--imgformat)" msgstr "å›¾åƒæ ¼å¼ï¼ˆ--imgformat)" #: ../include/global_form.php:526 msgid "The type of graph that is generated; PNG, GIF or SVG. The selection of graph image type is very RRDtool dependent." msgstr "生æˆçš„图形的类型; PNG,GIF或SVG。 图形图åƒç±»åž‹çš„选择éžå¸¸ä¾èµ–于RRDtool。" #: ../include/global_form.php:529 msgid "Height (--height)" msgstr "高度 (--height)" #: ../include/global_form.php:533 msgid "The height (in pixels) of the graph area within the graph. This area does not include the legend, axis legends, or title." msgstr "图形内图形区域的高度(以åƒç´ ä¸ºå•ä½ï¼‰ã€‚ 该区域ä¸åŒ…括图例,轴的图例或标题。" #: ../include/global_form.php:537 msgid "Width (--width)" msgstr "宽度 (--width)" #: ../include/global_form.php:541 msgid "The width (in pixels) of the graph area within the graph. This area does not include the legend, axis legends, or title." msgstr "图形内图形区域的宽度(以åƒç´ ä¸ºå•ä½ï¼‰ã€‚ 该区域ä¸åŒ…括图例,轴的图例或标题。" #: ../include/global_form.php:545 msgid "Base Value (--base)" msgstr "Base Value (--base)" #: ../include/global_form.php:549 msgid "Should be set to 1024 for memory and 1000 for traffic measurements." msgstr "内存应该设置为1024,æµé‡æµ‹é‡åº”该设置为1000。" #: ../include/global_form.php:553 msgid "Slope Mode (--slope-mode)" msgstr "æ–œå¡æ¨¡å¼ (--slope-mode)" #: /var/www/html/cacti/include/global_form.php:568 msgid "Using Slope Mode evens out the shape of the graphs at the expense of some on screen resolution." msgstr "使用斜率模å¼ä»¥ç‰ºç‰²æŸäº›å±å¹•åˆ†è¾¨çŽ‡ä¸ºä»£ä»·æ¥æ¶ˆé™¤å›¾å½¢çš„形状。" #: ../include/global_form.php:560 msgid "Scaling Options" msgstr "缩放选项" #: ../include/global_form.php:565 msgid "Auto Scale" msgstr "自动缩放" #: /var/www/html/cacti/include/global_form.php:579 msgid "Auto scale the y-axis instead of defining an upper and lower limit. Note: if this is check both the Upper and Lower limit will be ignored." msgstr "自动缩放yè½´è€Œä¸æ˜¯å®šä¹‰ä¸Šé™å’Œä¸‹é™ã€‚ 注æ„:如果这是检查,上é™å’Œä¸‹é™éƒ½å°†è¢«å¿½ç•¥ã€‚" #: ../include/global_form.php:573 msgid "Auto Scale Options" msgstr "自动缩放选项" #: /var/www/html/cacti/include/global_form.php:586 msgid "Use
    --alt-autoscale to scale to the absolute minimum and maximum
    --alt-autoscale-max to scale to the maximum value, using a given lower limit
    --alt-autoscale-min to scale to the minimum value, using a given upper limit
    --alt-autoscale (with limits) to scale using both lower and upper limits (RRDtool default)
    " msgstr "使用
    --alt-autoscale缩放到ç»å¯¹æœ€å°å€¼å’Œæœ€å¤§å€¼
    --alt-autoscale-max使用给定的下é™å€¼ç¼©æ”¾åˆ°æœ€å¤§å€¼
    --alt-autoscale-min to 缩放至最å°å€¼ï¼Œä½¿ç”¨ç»™å®šä¸Šé™

    - 自动缩放(带有é™åˆ¶ï¼‰ä½¿ç”¨ä¸‹é™å’Œä¸Šé™è¿›è¡Œç¼©æ”¾ï¼ˆRRDtool默认值)
    " #: ../include/global_form.php:584 msgid "Use --alt-autoscale (ignoring given limits)" msgstr "使用--alt-autoscale(忽略给定的é™åˆ¶ï¼‰" #: ../include/global_form.php:588 msgid "Use --alt-autoscale-max (accepting a lower limit)" msgstr "使用--alt-autoscale-max(接å—一个下é™ï¼‰" #: ../include/global_form.php:592 msgid "Use --alt-autoscale-min (accepting an upper limit)" msgstr "使用--alt-autoscale-min(接å—上é™ï¼‰" #: ../include/global_form.php:596 msgid "Use --alt-autoscale (accepting both limits, RRDtool default)" msgstr "使用--alt-autoscale(接å—两个é™åˆ¶ï¼ŒRRDtool默认)" #: ../include/global_form.php:601 msgid "Logarithmic Scaling (--logarithmic)" msgstr "对数标度 (--logarithmic)" #: ../include/global_form.php:605 msgid "Use Logarithmic y-axis scaling" msgstr "使用对数y轴缩放" #: ../include/global_form.php:608 msgid "SI Units for Logarithmic Scaling (--units=si)" msgstr "用于对数标度的SIå•ä½ (--units=si)" #: /var/www/html/cacti/include/global_form.php:617 msgid "Use SI Units for Logarithmic Scaling instead of using exponential notation.
    Note: Linear graphs use SI notation by default." msgstr "使用SIå•ä½è¿›è¡Œå¯¹æ•°æ¯”ä¾‹ç¼©æ”¾è€Œä¸æ˜¯ä½¿ç”¨æŒ‡æ•°ç¬¦å·ã€‚
    注æ„:线性图形默认使用SI符å·ã€‚" #: ../include/global_form.php:615 msgid "Rigid Boundaries Mode (--rigid)" msgstr "刚性边界模å¼(--rigid)" #: ../include/global_form.php:618 msgid "Do not expand the lower and upper limit if the graph contains a value outside the valid range." msgstr "如果图表包å«è¶…出有效范围的值,则ä¸è¦å±•开下é™å’Œä¸Šé™ã€‚" #: ../include/global_form.php:621 msgid "Upper Limit (--upper-limit)" msgstr "ä¸Šé™ (--upper-limit)" #: ../include/global_form.php:625 msgid "The maximum vertical value for the graph." msgstr "图形的最大垂直值。" #: ../include/global_form.php:629 msgid "Lower Limit (--lower-limit)" msgstr "ä¸‹é™ (--lower-limit)" #: ../include/global_form.php:633 msgid "The minimum vertical value for the graph." msgstr "图形的最å°åž‚直值。" #: ../include/global_form.php:637 msgid "Grid Options" msgstr "网格选项" #: ../include/global_form.php:642 msgid "Unit Grid Value (--unit/--y-grid)" msgstr "å•ä½ç½‘格值(--unit/--y-grid)" #: /var/www/html/cacti/include/global_form.php:651 msgid "Sets the exponent value on the Y-axis for numbers. Note: This option is deprecated and replaced by the --y-grid option. In this option, Y-axis grid lines appear at each grid step interval. Labels are placed every label factor lines." msgstr "在Y轴上为数字设置指数值。 注æ„:此选项已弃用,并由--y-grid选项å–代。 在此选项中,Y轴网格线出现在æ¯ä¸ªç½‘格步骤间隔处。 标签放置在æ¯ä¸ªæ ‡ç­¾å› å­çº¿ä¸Šã€‚" #: ../include/global_form.php:652 msgid "Unit Exponent Value (--units-exponent)" msgstr "å•使Œ‡æ•°å€¼ï¼ˆ - å•使Œ‡æ•°ï¼‰" #: /var/www/html/cacti/include/global_form.php:659 msgid "What unit Cacti should use on the Y-axis. Use 3 to display everything in \"k\" or -6 to display everything in \"u\" (micro)." msgstr "Cacti应该在Y轴上使用哪ç§å•ä½ã€‚ 使用3显示“kâ€æˆ–-6中的所有内容,以显示“uâ€ï¼ˆå¾®ï¼‰ä¸­çš„æ‰€æœ‰å†…容。" #: ../include/global_form.php:661 msgid "Unit Length (--units-length <length>)" msgstr "å•ä½é•¿åº¦ (--units-length <length>)" #: /var/www/html/cacti/include/global_form.php:668 msgid "How many digits should RRDtool assume the y-axis labels to be? You may have to use this option to make enough space once you start fiddling with the y-axis labeling." msgstr "RRDtoolå‡è®¾yè½´æ ‡ç­¾åº”è¯¥æœ‰å¤šå°‘ä½æ•°ï¼Ÿ 一旦开始摆弄y轴标签,您å¯èƒ½ä¸å¾—ä¸ä½¿ç”¨æ­¤é€‰é¡¹æ¥ç•™å‡ºè¶³å¤Ÿçš„空间。" #: ../include/global_form.php:670 msgid "No Gridfit (--no-gridfit)" msgstr "没有网格适应 (--no-gridfit)" #: /var/www/html/cacti/include/global_form.php:674 msgid "In order to avoid anti-aliasing blurring effects RRDtool snaps points to device resolution pixels, this results in a crisper appearance. If this is not to your liking, you can use this switch to turn this behavior off.
    Note: Gridfitting is turned off for PDF, EPS, SVG output by default." msgstr "为了é¿å…消除锯齿模糊效果RRDtool将点指å‘设备分辨率åƒç´ ï¼Œè¿™ä¼šå¯¼è‡´å¤–观更加清晰。 如果这ä¸ç¬¦åˆæ‚¨çš„è¦æ±‚,您å¯ä»¥ä½¿ç”¨æ­¤å¼€å…³å…³é—­æ­¤åŠŸèƒ½ã€‚
    注æ„:默认情况下,PDF,EPS,SVG输出关闭了Gridfitting。" #: ../include/global_form.php:678 msgid "Alternative Y Grid (--alt-y-grid)" msgstr "备用Yåæ ‡" #: /var/www/html/cacti/include/global_form.php:680 msgid "The algorithm ensures that you always have a grid, that there are enough but not too many grid lines, and that the grid is metric. This parameter will also ensure that you get enough decimals displayed even if your graph goes from 69.998 to 70.001.
    Note: This parameter may interfere with --alt-autoscale options." msgstr "è¯¥ç®—æ³•ç¡®ä¿æ‚¨å§‹ç»ˆæ‹¥æœ‰ä¸€ä¸ªç½‘æ ¼ï¼Œæœ‰è¶³å¤Ÿä½†ä¸æ˜¯å¤ªå¤šçš„ç½‘æ ¼çº¿ï¼Œå¹¶ä¸”ç½‘æ ¼æ˜¯åº¦é‡æ ‡å‡†ã€‚ æ­¤å‚æ•°è¿˜å¯ä»¥ç¡®ä¿å³ä½¿å›¾è¡¨ä»Ž69.998å˜ä¸º70.001,也å¯ä»¥æ˜¾ç¤ºè¶³å¤Ÿçš„å°æ•°ã€‚
    注æ„ï¼šæ­¤å‚æ•°å¯èƒ½ä¼šå½±å“--alt-autoscale选项。" #: ../include/global_form.php:686 msgid "Axis Options" msgstr "轴选项" #: ../include/global_form.php:691 msgid "Right Axis (--right-axis <scale:shift>)" msgstr "å³è½´ (--right-axis <scale:shift>)" #: /var/www/html/cacti/include/global_form.php:693 msgid "A second axis will be drawn to the right of the graph. It is tied to the left axis via the scale and shift parameters." msgstr "第二个轴将绘制在图形的å³ä¾§ã€‚ 它通过比例和移ä½å‚数绑定到左侧轴。" #: ../include/global_form.php:700 msgid "Right Axis Label (--right-axis-label <string>)" msgstr "å³è½´æ ‡ç­¾ (--right-axis-label <string>)" #: ../include/global_form.php:705 msgid "The label for the right axis." msgstr "å³è½´æ ‡ç­¾ã€‚" #: ../include/global_form.php:708 msgid "Right Axis Format (--right-axis-format <format>)" msgstr "å³è½´æ ¼å¼ (--right-axis-format <format>)" #: /var/www/html/cacti/include/global_form.php:709 #, php-format msgid "By default, the format of the axis labels gets determined automatically. If you want to do this yourself, use this option with the same %lf arguments you know from the PRINT and GPRINT commands." msgstr "默认情况下,轴标签的格å¼ä¼šè‡ªåŠ¨ç¡®å®šã€‚ 如果你想自己åšè¿™ä¸ªï¼Œä½¿ç”¨è¿™ä¸ªé€‰é¡¹å’Œä½ åœ¨PRINTå’ŒGPRINT命令中知é“的%lf傿•°ç›¸åŒã€‚" #: ../include/global_form.php:717 msgid "Right Axis Formatter (--right-axis-formatter <formatname>)" msgstr "å³è½´æ ¼å¼å™¨ (--right-axis-formatter <formatname>)" #: /var/www/html/cacti/include/global_form.php:717 msgid "When you setup the right axis labeling, apply a rule to the data format. Supported formats include \"numeric\" where data is treated as numeric, \"timestamp\" where values are interpreted as UNIX timestamps (number of seconds since January 1970) and expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S\"). See also --units-length and --right-axis-format. Finally \"duration\" where values are interpreted as duration in milliseconds. Formatting follows the rules of valstrfduration qualified PRINT/GPRINT." msgstr "å½“æ‚¨è®¾ç½®æ­£ç¡®çš„è½´æ ‡ç­¾æ—¶ï¼Œå°†è§„åˆ™åº”ç”¨äºŽæ•°æ®æ ¼å¼ã€‚ 支æŒçš„æ ¼å¼åŒ…括将数æ®è§†ä¸ºæ•°å­—的“numericâ€ï¼Œå…¶ä¸­å€¼è¢«è§£é‡Šä¸ºUNIX时间戳(自1970å¹´1月以æ¥çš„秒数)并使用strftimeæ ¼å¼è¡¨ç¤ºï¼ˆç¼ºçœå€¼ä¸ºâ€œï¼…Y-ï¼…m - ï¼…dï¼…H:%M:%S“)。 å¦è§--units-lengthå’Œ--right-axis-format。 最åŽçš„“æŒç»­æ—¶é—´â€ï¼Œå…¶ä¸­çš„值被解释为以毫秒为å•ä½çš„æŒç»­æ—¶é—´ã€‚ æ ¼å¼éµå¾ªvalstrfdurationåˆæ ¼çš„PRINT / GPRINT规则。" #: ../include/global_form.php:728 msgid "Left Axis Formatter (--left-axis-formatter <formatname>)" msgstr "左轴格å¼å™¨ (--left-axis-formatter <formatname>)" #: /var/www/html/cacti/include/global_form.php:725 msgid "When you setup the left axis labeling, apply a rule to the data format. Supported formats include \"numeric\" where data is treated as numeric, \"timestamp\" where values are interpreted as UNIX timestamps (number of seconds since January 1970) and expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S\"). See also --units-length. Finally \"duration\" where values are interpreted as duration in milliseconds. Formatting follows the rules of valstrfduration qualified PRINT/GPRINT." msgstr "å½“æ‚¨è®¾ç½®å·¦è½´æ ‡ç­¾æ—¶ï¼Œå°†è§„åˆ™åº”ç”¨äºŽæ•°æ®æ ¼å¼ã€‚ 支æŒçš„æ ¼å¼åŒ…括将数æ®è§†ä¸ºæ•°å­—的“numericâ€ï¼Œå…¶ä¸­å€¼è¢«è§£é‡Šä¸ºUNIX时间戳(自1970å¹´1月以æ¥çš„秒数)并使用strftimeæ ¼å¼è¡¨ç¤ºï¼ˆç¼ºçœå€¼ä¸ºâ€œï¼…Y-ï¼…m - ï¼…dï¼…H:%M:%S“)。 å¦è¯·å‚阅 - å•ä½é•¿åº¦ã€‚ 最åŽçš„“æŒç»­æ—¶é—´â€ï¼Œå…¶ä¸­çš„值被解释为以毫秒为å•ä½çš„æŒç»­æ—¶é—´ã€‚ æ ¼å¼éµå¾ªvalstrfdurationåˆæ ¼çš„PRINT / GPRINT规则。" #: ../include/global_form.php:739 msgid "Legend Options" msgstr "图例选项" #: ../include/global_form.php:744 msgid "Auto Padding" msgstr "自动填充" #: /var/www/html/cacti/include/global_form.php:736 msgid "Pad text so that legend and graph data always line up. Note: this could cause graphs to take longer to render because of the larger overhead. Also Auto Padding may not be accurate on all types of graphs, consistent labeling usually helps." msgstr "填充文本,以便图例和图形数æ®å§‹ç»ˆæŽ’列。 注æ„:由于较大的开销,这å¯èƒ½ä¼šå¯¼è‡´å›¾å½¢æ¸²æŸ“时间较长。 在所有类型的图表上,自动填充å¯èƒ½ä¸å‡†ç¡®ï¼Œä¸€è‡´çš„æ ‡ç­¾é€šå¸¸æœ‰å¸®åŠ©ã€‚" #: ../include/global_form.php:752 msgid "Dynamic Labels (--dynamic-labels)" msgstr "åŠ¨æ€æ ‡ç­¾ (--dynamic-labels)" #: ../include/global_form.php:755 msgid "Draw line markers as a line." msgstr "画线标记为一æ¡çº¿ã€‚" #: ../include/global_form.php:758 msgid "Force Rules Legend (--force-rules-legend)" msgstr "强制规则图例 (--force-rules-legend)" #: ../include/global_form.php:761 msgid "Force the generation of HRULE and VRULE legends." msgstr "强制生æˆHRULEå’ŒVRULE图例。" #: ../include/global_form.php:764 msgid "Tab Width (--tabwidth <pixels>)" msgstr "标签宽度 (--tabwidth <pixels>)" #: ../include/global_form.php:769 msgid "By default the tab-width is 40 pixels, use this option to change it." msgstr "默认情况下,制表符宽度是40åƒç´ ï¼Œä½¿ç”¨è¿™ä¸ªé€‰é¡¹æ¥æ”¹å˜å®ƒã€‚" #: ../include/global_form.php:772 msgid "Legend Position (--legend-position=<position>)" msgstr "图例ä½ç½® (--legend-position=<position>)" #: ../include/global_form.php:776 msgid "Place the legend at the given side of the graph." msgstr "将图例放在图表的给定侧。" #: ../include/global_form.php:779 msgid "Legend Direction (--legend-direction=<direction>)" msgstr "å›¾ä¾‹æ–¹å‘ (--legend-direction=<direction>)" #: ../include/global_form.php:783 msgid "Place the legend items in the given vertical order." msgstr "æŒ‰ç…§ç»™å®šçš„åž‚ç›´é¡ºåºæ”¾ç½®å›¾ä¾‹é¡¹ç›®ã€‚" #: ../include/global_form.php:790 #: ../lib/api_aggregate.php:1216 #: ../lib/html.php:857 msgid "Graph Item Type" msgstr "图形项类型" #: ../include/global_form.php:794 msgid "How data for this item is represented visually on the graph." msgstr "这个项目的数æ®å¦‚何在图形上直观地表示出æ¥ã€‚" #: ../include/global_form.php:809 msgid "The data source to use for this graph item." msgstr "The data source to use for this graph item." #: ../include/global_form.php:816 msgid "The color to use for the legend." msgstr "用于图例的颜色。" #: ../include/global_form.php:819 msgid "Opacity/Alpha Channel" msgstr "ä¸é€æ˜Žåº¦/ Alpha通é“" #: ../include/global_form.php:823 msgid "The opacity/alpha channel of the color." msgstr "颜色的ä¸é€æ˜Žåº¦/ Alpha通é“。" #: ../include/global_form.php:826 #: ../lib/rrd.php:2688 msgid "Consolidation Function" msgstr "åˆå¹¶åŠŸèƒ½" #: ../include/global_form.php:830 msgid "How data for this item is represented statistically on the graph." msgstr "如何在图表上统计表示该项目的数æ®ã€‚" #: ../include/global_form.php:833 msgid "CDEF Function" msgstr "CDEF 功能" #: ../include/global_form.php:838 msgid "A CDEF (math) function to apply to this item on the graph or legend." msgstr "CDEF(math)函数应用于图形或图例上的这个项目。" #: ../include/global_form.php:841 msgid "VDEF Function" msgstr "VDEF Function" #: ../include/global_form.php:846 msgid "A VDEF (math) function to apply to this item on the graph legend." msgstr "VDEF(math)函数应用于图形图例上的这个项目。" #: ../include/global_form.php:849 msgid "Shift Data" msgstr "ç­æ¬¡æ•°æ®" #: ../include/global_form.php:852 msgid "Offset your data on the time axis (x-axis) by the amount specified in the 'value' field." msgstr "在时间轴(x轴)上将数æ®å移“值â€å­—段中指定的数é‡ã€‚" #: ../include/global_form.php:855 #: ../lib/rrd.php:2658 #: ../utilities.php:2338 msgid "Value" msgstr "值" #: /var/www/html/cacti/include/global_form.php:847 msgid "[HRULE|VRULE]: The value of the graph item.
    [TICK]: The fraction for the tick line.
    [SHIFT]: The time offset in seconds." msgstr "[HRULE | VRULE]:图形项目的值。
    [TICK]:刻度线的分数。[SHIFT]:以秒为å•ä½çš„æ—¶é—´åç§»é‡ã€‚" #: ../include/global_form.php:865 msgid "GPRINT Type" msgstr "GPRINT 类型" #: /var/www/html/cacti/include/global_form.php:854 msgid "If this graph item is a GPRINT, you can optionally choose another format here. You can define additional types under \"GPRINT Presets\"." msgstr "如果此图项是GPRINT,则å¯ä»¥åœ¨æ­¤é€‰æ‹©å¦ä¸€ç§æ ¼å¼ã€‚ 您å¯ä»¥åœ¨â€œGPRINT预设â€ä¸‹å®šä¹‰å…¶ä»–类型。" #: ../include/global_form.php:873 msgid "Text Alignment (TEXTALIGN)" msgstr "文本对é½ï¼ˆTEXTALIGN)" #: /var/www/html/cacti/include/global_form.php:862 msgid "All subsequent legend line(s) will be aligned as given here. You may use this command multiple times in a single graph. This command does not produce tabular layout.
    Note: You may want to insert a <HR> on the preceding graph item.
    Note: A <HR> on this legend line will obsolete this setting!" msgstr "所有åŽç»­çš„图例行将按照此处给出的方å¼å¯¹é½ã€‚ 您å¯ä»¥åœ¨å•个图表中多次使用此命令。 此命令ä¸ä¼šç”Ÿæˆè¡¨æ ¼å¼å¸ƒå±€ã€‚注æ„:您å¯èƒ½éœ€è¦æ’入&lt; HR&gt; 在å‰é¢çš„图形项目中。
    注æ„: A&lt; HR&gt; 在这个传奇线上会过时这个设置ï¼" #: ../include/global_form.php:883 msgid "Text Format" msgstr "Text Format" #: ../include/global_form.php:888 msgid "Text that will be displayed on the legend for this graph item." msgstr "将显示在图形项目的图例上的文本。" #: ../include/global_form.php:891 msgid "Insert Hard Return" msgstr "æ’入硬æ¢è¡Œ" #: ../include/global_form.php:894 msgid "Forces the legend to the next line after this item." msgstr "在这个项目之åŽå¼ºåˆ¶å›¾ä¾‹åˆ°ä¸‹ä¸€è¡Œã€‚" #: ../include/global_form.php:897 msgid "Line Width (decimal)" msgstr "线宽(å进制)" #: ../include/global_form.php:902 msgid "In case LINE was chosen, specify width of line here. You must include a decimal precision, for example 2.00" msgstr "如果选择了LINE,请在此指定线的宽度。 您必须包å«ä¸€ä¸ªå°æ•°ç²¾åº¦ï¼Œä¾‹å¦‚2.00" #: ../include/global_form.php:905 msgid "Dashes (dashes[=on_s[,off_s[,on_s,off_s]...]])" msgstr "虚线(破折å·[=on_s[,off_s[,on_s,off_s]...]])" #: ../include/global_form.php:910 msgid "The dashes modifier enables dashed line style." msgstr "破折å·ä¿®é¥°ç¬¦å¯ç”¨è™šçº¿æ ·å¼ã€‚" #: ../include/global_form.php:913 msgid "Dash Offset (dash-offset=offset)" msgstr "å移(Dash-offset = offset)" #: ../include/global_form.php:918 msgid "The dash-offset parameter specifies an offset into the pattern at which the stroke begins." msgstr "åç§»é‡å‚数指定了破æŸå¼€å§‹çš„åç§»é‡ã€‚" #: ../include/global_form.php:931 msgid "The name given to this graph template." msgstr "æ•°æ®æ¨¡æ¿çš„å称。" #: ../include/global_form.php:938 msgid "Multiple Instances" msgstr "多个实例" #: ../include/global_form.php:939 msgid "Check this checkbox if there can be more than one Graph of this type per Device." msgstr "如果æ¯ä¸ªè®¾å¤‡å¯ä»¥æœ‰å¤šä¸ªæ­¤ç±»åž‹çš„图表,请选中此å¤é€‰æ¡†ã€‚" #: ../include/global_form.php:963 msgid "Enter a name for this graph item input, make sure it is something you recognize." msgstr "为这个图形项目输入一个å字,确定它是你认识的东西。" #: ../include/global_form.php:971 msgid "Enter a description for this graph item input to describe what this input is used for." msgstr "输入此图形项目输入的æè¿°ä»¥æè¿°æ­¤è¾“入的用途。" #: ../include/global_form.php:978 msgid "Field Type" msgstr "字段类型" #: ../include/global_form.php:979 msgid "How data is to be represented on the graph." msgstr "æ•°æ®å¦‚何在图表中表示。" #: ../include/global_form.php:1002 msgid "General Device Options" msgstr "一般设备选项" #: ../include/global_form.php:1007 msgid "Give this host a meaningful description." msgstr "给这个主机一个有æ„义的æè¿°ã€‚" #: ../include/global_form.php:1014 #: ../include/global_form.php:1639 msgid "Fully qualified hostname or IP address for this device." msgstr "æ­¤è®¾å¤‡çš„åˆæ³•ä¸»æœºåæˆ–者IP地å€ã€‚" #: ../include/global_form.php:1021 msgid "Poller Association" msgstr "轮询信æ¯" #: ../include/global_form.php:1029 msgid "Device Site Association" msgstr "设备节点的选择" #: ../include/global_form.php:1030 msgid "What Site is this Device associated with." msgstr "此设备与哪个网站相关è”。" #: ../include/global_form.php:1039 msgid "Choose the Device Template to use to define the default Graph Templates and Data Queries associated with this Device." msgstr "选择设备模æ¿ç”¨äºŽå®šä¹‰ä¸Žæ­¤è®¾å¤‡å…³è”的默认图形模æ¿å’Œæ•°æ®æŸ¥è¯¢ã€‚" #: ../include/global_form.php:1046 msgid "Number of Collection Threads" msgstr "采集线程数" #: ../include/global_form.php:1047 msgid "The number of concurrent threads to use for polling this device. This applies to the Spine poller only." msgstr "用于轮询此设备的并å‘线程数。 这仅适用于Spine轮询器。" #: ../include/global_form.php:1054 msgid "Disable Device" msgstr "关闭设备" #: ../include/global_form.php:1055 msgid "Check this box to disable all checks for this host." msgstr "选中此å¤é€‰æ¡†æ¥ç¦ç”¨è¯¥è®¾å¤‡çš„æ‰€æœ‰æ£€æŸ¥ã€‚" #: ../include/global_form.php:1068 #: ../include/global_form.php:1668 msgid "Choose the SNMP version for this device." msgstr "为此设备选择SNMP版本å·ã€‚" #: ../include/global_form.php:1076 #: ../include/global_form.php:1676 msgid "SNMP Community" msgstr "SNMP的团体å" #: ../include/global_form.php:1077 #: ../include/global_form.php:1677 msgid "SNMP read community for this device." msgstr "此设备的SNMP团体å。" #: ../include/global_form.php:1105 msgid "Choose the SNMPv3 authentication protocol." msgstr "选择SNMPv3认è¯å议。" #: ../include/global_form.php:1096 msgid "SNMP v3 authentication pass phrase for this device." msgstr "此设备的SNMP v3验è¯å¯†ç ã€‚" #: ../include/global_form.php:1122 msgid "Choose the SNMPv3 privacy protocol." msgstr "选择SNMP v3çš„éšç§å议。" #: ../include/global_form.php:1113 msgid "Choose the SNMPv3 privacy passphrase." msgstr "选择SNMPv3çš„éšç§å¯†ç ã€‚" #: ../include/global_form.php:1129 msgid "SNMP Context (v3)" msgstr "SNMP上下文(v3)" #: ../include/global_form.php:1130 msgid "Enter the SNMP v3 context to use for this device." msgstr "输入用于此设备的SNMP v3上下文。" #: ../include/global_form.php:1148 msgid "Enter the UDP port number to use for SNMP (default is 161)." msgstr "输入用于SNMPçš„UDP端å£å·ï¼ˆé»˜è®¤å€¼ä¸º161)。" #: ../include/global_form.php:1165 msgid "Maximum OIDs Per Get Request" msgstr "æ¯ä¸ªè¯·æ±‚çš„èŽ·å–æœ€å¤§OIDæ•°" #: ../include/global_form.php:1174 msgid "Availability/Reachability Options" msgstr "å¯ç”¨æ€§/å¯è¾¾æ€§é€‰é¡¹" #: ../include/global_form.php:1178 #: ../include/global_settings.php:547 msgid "Downed Device Detection" msgstr "设备检测失败" #: ../include/global_form.php:1179 #: ../include/global_settings.php:548 msgid "The method Cacti will use to determine if a host is available for polling.
    NOTE: It is recommended that, at a minimum, SNMP always be selected." msgstr "Cacti将使用该方法æ¥ç¡®å®šä¸»æœºæ˜¯å¦å¯ç”¨äºŽè½®è¯¢ã€‚
    注æ„:建议至少选择SNMP。" #: ../include/global_form.php:1188 msgid "The type of ping packet to sent.
    NOTE: ICMP on Linux/UNIX requires root privileges." msgstr "è¦å‘é€çš„ping包的类型。
    注æ„:Linux / UNIX上的ICMP需è¦rootæƒé™ã€‚" #: ../include/global_form.php:1225 #: ../include/global_form.php:1763 msgid "Additional Options" msgstr "其他选项" #: ../include/global_form.php:1229 #: ../include/global_form.php:1768 #: ../pollers.php:70 msgid "Notes" msgstr "注释" #: ../include/global_form.php:1230 #: ../include/global_form.php:1769 msgid "Enter notes to this host." msgstr "为此主机输入注释。" #: ../include/global_form.php:1237 msgid "External ID" msgstr "外部ID" #: ../include/global_form.php:1238 msgid "External ID for linking Cacti data to external monitoring systems." msgstr "用于将Cactiæ•°æ®é“¾æŽ¥åˆ°å¤–部监控系统的外部ID。" #: ../include/global_form.php:1260 msgid "A useful name for this host template." msgstr "这个主机模æ¿çš„一个有用的å字。" #: ../include/global_form.php:1280 msgid "A name for this data query." msgstr "æ•°æ®æŸ¥è¯¢å称。" #: ../include/global_form.php:1288 msgid "A description for this data query." msgstr "è¿™ä¸ªæ•°æ®æŸ¥è¯¢çš„æè¿°ã€‚" #: ../include/global_form.php:1295 msgid "XML Path" msgstr "XML 路径" #: ../include/global_form.php:1296 msgid "The full path to the XML file containing definitions for this data query." msgstr "åŒ…å«æ­¤æ•°æ®æŸ¥è¯¢å®šä¹‰çš„XML文件的完整路径。" #: ../include/global_form.php:1305 msgid "Choose the input method for this Data Query. This input method defines how data is collected for each Device associated with the Data Query." msgstr "ä¸ºæ­¤æ•°æ®æŸ¥è¯¢é€‰æ‹©è¾“入方法。 æ­¤è¾“å…¥æ³•å®šä¹‰äº†å¦‚ä½•ä¸ºä¸Žæ•°æ®æŸ¥è¯¢å…³è”çš„æ¯ä¸ªè®¾å¤‡æ”¶é›†æ•°æ®ã€‚" #: ../include/global_form.php:1324 msgid "Choose the Graph Template to use for this Data Query Graph Template item." msgstr "é€‰æ‹©ç”¨äºŽæ­¤æ•°æ®æŸ¥è¯¢å›¾å½¢æ¨¡æ¿é¡¹ç›®çš„图形模æ¿ã€‚" #: ../include/global_form.php:1350 msgid "A name for this associated graph." msgstr "这个关è”图的å称。" #: ../include/global_form.php:1378 msgid "A useful name for this graph tree." msgstr "图形树的å称。" #: ../include/global_form.php:1385 #: ../include/global_form.php:2281 #: ../lib/api_automation.php:1334 #: ../tree.php:1279 msgid "Sorting Type" msgstr "æŽ’åºæ–¹å¼" #: ../include/global_form.php:1386 #: ../include/global_form.php:2282 msgid "Choose how items in this tree will be sorted." msgstr "选择此树中的项目如何排åºã€‚" #: ../include/global_form.php:1392 msgid "Publish" msgstr "å‘布" #: ../include/global_form.php:1393 msgid "Should this Tree be published for users to access?" msgstr "该树是å¦åº”该å‘布给用户访问?" #: ../include/global_form.php:1428 msgid "An Email Address where the User can be reached." msgstr "用户å¯ä»¥é€è¾¾çš„电å­é‚®ä»¶åœ°å€ã€‚" #: ../include/global_form.php:1436 msgid "Enter the password for this user twice. Remember that passwords are case sensitive!" msgstr "输入两次此用户的密ç ã€‚请记ä½ï¼Œå¯†ç åŒºåˆ†å¤§å°å†™ï¼" #: ../include/global_form.php:1444 #: ../user_group_admin.php:88 msgid "Determines if user is able to login." msgstr "确定用户是å¦èƒ½å¤Ÿç™»å½•。" #: ../include/global_form.php:1450 #: ../tree.php:1561 msgid "Locked" msgstr "é”定" #: ../include/global_form.php:1451 msgid "Determines if the user account is locked." msgstr "ç¡®å®šç”¨æˆ·å¸æˆ·æ˜¯å¦è¢«é”定。" #: ../include/global_form.php:1456 msgid "Account Options" msgstr "账户选项" #: ../include/global_form.php:1458 msgid "Set any user account specific options here." msgstr "åœ¨è¿™é‡Œè®¾ç½®ä»»ä½•ç”¨æˆ·å¸æˆ·ç‰¹å®šé€‰é¡¹ã€‚" #: ../include/global_form.php:1462 msgid "Must Change Password at Next Login" msgstr "下次登录时必须更改密ç " #: ../include/global_form.php:1474 msgid "Maintain Custom Graph and User Settings" msgstr "维护自定义图形和用户设置" #: ../include/global_form.php:1481 msgid "Graph Options" msgstr "图形æ“作" #: ../include/global_form.php:1483 msgid "Set any graph specific options here." msgstr "在这里设置任何图形特定选项。" #: ../include/global_form.php:1487 msgid "User Has Rights to Tree View" msgstr "ç”¨æˆ·æœ‰æƒæŸ¥çœ‹çš„图形树" #: ../include/global_form.php:1493 msgid "User Has Rights to List View" msgstr "ç”¨æˆ·æœ‰æƒæŸ¥çœ‹çš„列表" #: ../include/global_form.php:1499 msgid "User Has Rights to Preview View" msgstr "ç”¨æˆ·æœ‰æƒæŸ¥çœ‹çš„预览图" #: ../include/global_form.php:1506 #: ../user_group_admin.php:130 msgid "Login Options" msgstr "登录设定" #: ../include/global_form.php:1509 msgid "What to do when this user logs in." msgstr "当这个用户登录时åšä»€ä¹ˆã€‚" #: ../include/global_form.php:1514 msgid "Show the page that user pointed their browser to." msgstr "æ˜¾ç¤ºç”¨æˆ·æŒ‡å‘æµè§ˆå™¨çš„页é¢ã€‚" #: ../include/global_form.php:1518 msgid "Show the default console screen." msgstr "控制å°é»˜è®¤æ˜¾ç¤º" #: ../include/global_form.php:1522 msgid "Show the default graph screen." msgstr "图形默认显示" #: ../include/global_form.php:1528 #: ../utilities.php:765 msgid "Authentication Realm" msgstr "认è¯åŸŸ" #: ../include/global_form.php:1529 msgid "Only used if you have LDAP or Web Basic Authentication enabled. Changing this to a non-enabled realm will effectively disable the user." msgstr "仅在å¯ç”¨äº†LDAP或Web基本身份验è¯çš„æƒ…况下使用。 将其更改为未å¯ç”¨çš„领域将有效地ç¦ç”¨ç”¨æˆ·ã€‚" #: ../include/global_form.php:1584 msgid "Import Template from Local File" msgstr "从本地文件导入模æ¿" #: ../include/global_form.php:1585 msgid "If the XML file containing template data is located on your local machine, select it here." msgstr "å¦‚æžœåŒ…å«æ¨¡æ¿æ•°æ®çš„XML文件ä½äºŽæœ¬åœ°è®¡ç®—机上,请在此处选择它。" #: ../include/global_form.php:1590 msgid "Import Template from Text" msgstr "从文本导入模æ¿" #: ../include/global_form.php:1591 msgid "If you have the XML file containing template data as text, you can paste it into this box to import it." msgstr "å¦‚æžœæ‚¨å°†åŒ…å«æ¨¡æ¿æ•°æ®çš„XML文件作为文本,则å¯ä»¥å°†å…¶ç²˜è´´åˆ°æ­¤æ¡†ä¸­ä»¥å¯¼å…¥å®ƒã€‚" #: ../include/global_form.php:1599 msgid "Preview Import Only" msgstr "仅预览导入" #: ../include/global_form.php:1601 msgid "If checked, Cacti will not import the template, but rather compare the imported Template to the existing Template data. If you are acceptable of the change, you can them import." msgstr "如果选中,Cactiå°†ä¸ä¼šå¯¼å…¥æ¨¡æ¿ï¼Œè€Œæ˜¯å°†å¯¼å…¥çš„æ¨¡æ¿ä¸ŽçŽ°æœ‰æ¨¡æ¿æ•°æ®è¿›è¡Œæ¯”较。 如果你å¯ä»¥æŽ¥å—çš„å˜åŒ–,你å¯ä»¥å¯¼å…¥ã€‚" #: ../include/global_form.php:1606 msgid "Remove Orphaned Graph Items" msgstr "删除孤立的图形项目" #: ../include/global_form.php:1608 msgid "If checked, Cacti will delete any Graph Items from both the Graph Template and associated Graphs that are not included in the imported Graph Template." msgstr "如果选中,Cacti将删除图表模æ¿å’Œå…³è”图表中未包å«åœ¨å¯¼å…¥çš„图表模æ¿ä¸­çš„任何图表项目。" #: ../include/global_form.php:1625 msgid "General SNMP Entity Options" msgstr "常规SNMP实体选项" #: ../include/global_form.php:1631 msgid "Give this SNMP entity a meaningful description." msgstr "给这个SNMP实体一个有æ„义的æè¿°ã€‚" #: ../include/global_form.php:1646 msgid "Disable SNMP Notification Receiver" msgstr "ç¦ç”¨SNMP通知接收器" #: ../include/global_form.php:1647 msgid "Check this box if you temporary do not want to send SNMP notifications to this host." msgstr "å¦‚æžœæ‚¨æš‚æ—¶ä¸æƒ³å‘此主机å‘é€SNMP通知,请选中此框。" #: ../include/global_form.php:1654 msgid "Maximum Log Size" msgstr "æ—¥å¿—å¤§å°æœ€å¤§å€¼" #: ../include/global_form.php:1655 msgid "Maximum number of day's notification log entries for this receiver need to be stored." msgstr "需è¦å­˜å‚¨æ­¤æŽ¥æ”¶å™¨çš„一天通知日志æ¡ç›®çš„æœ€å¤§æ•°é‡ã€‚" #: ../include/global_form.php:1705 msgid "Choose the SNMPv3 Authorization Protocol.
    Note: SHA authentication support is only available if you have OpenSSL installed." msgstr "选择SNMPv3授æƒå议。
    注æ„ï¼šåªæœ‰å®‰è£…了OpenSSL,SHAè®¤è¯æ”¯æŒæ‰å¯ç”¨ã€‚" #: ../include/global_form.php:1695 msgid "SNMP Auth Password (v3)" msgstr "SNMP身份验è¯å¯†ç ï¼ˆv3)" #: ../include/global_form.php:1696 msgid "SNMP v3 user password for this device." msgstr "此设备的SNMP v3的用户å。" #: ../include/global_form.php:1722 msgid "Choose the SNMPv3 Privacy Protocol.
    Note: DES/AES encryption support is only available if you have OpenSSL installed." msgstr "选择SNMPv3éšç§å议。
    注æ„ï¼šåªæœ‰å®‰è£…了OpenSSL,DES / AESåŠ å¯†æ”¯æŒæ‰å¯ç”¨ã€‚" #: ../include/global_form.php:1712 msgid "SNMP Privacy Password (v3)" msgstr "SNMP éšç§å¯†ç  (v3)" #: ../include/global_form.php:1728 msgid "SNMP Engine ID" msgstr "SNMP引擎ID" #: ../include/global_form.php:1729 msgid "Defines the unique SNMP Engine ID to identify this peer. Following format will be recommended:
    FlexibleLength+Enterprise(8000) + IANA-Cacti(5d75) + MAC-Following(03) + YOUR-MAC-ADDRESS(e.g.:D89D67287B00).
    Per default the locally administrated MAC 02-FF-FF-FF-FF-FF will be used." msgstr "定义唯一的SNMP引擎IDæ¥æ ‡è¯†è¯¥å¯¹ç­‰ã€‚ 以下格å¼å°†æŽ¨è:
    FlexibleLength + Enterprise(8000)+ IANA-Cacti(5d75)+ MAC-Following(03)+ YOUR-MAC-ADDRESS(例如:D89D67287B00)。默认情况下,本地管ç†çš„MAC 将使用02-FF-FF-FF-FF-FF。" #: ../include/global_form.php:1738 msgid "The UDP port to be used for SNMP traps. Typically, 162." msgstr "è¦ç”¨äºŽSNMP陷阱的UDP端å£ã€‚ 通常情况下,162。" #: ../include/global_form.php:1754 msgid "SNMP Message Type" msgstr "SNMP消æ¯ç±»åž‹" #: ../include/global_form.php:1755 msgid "SNMP traps are always unacknowledged. To send out acknowledged SNMP notifications, formally called \"INFORMS\", SNMPv2 or above will be required." msgstr "SNMP陷阱始终未被确认。 è¦å‘é€ç¡®è®¤çš„SNMP通知,正å¼å为 \"INFORMS\",SNMPv2或更高版本将是必需的。" #: ../include/global_form.php:1788 msgid "The new Title of the aggregated Graph." msgstr "èšåˆå›¾çš„æ–°æ ‡é¢˜ã€‚" #: ../include/global_form.php:1795 #: ../include/global_form.php:1878 #: ../include/global_form.php:1980 msgid "Prefix" msgstr "å‰ç¼€" #: ../include/global_form.php:1796 msgid "A Prefix for all GPRINT lines to distinguish e.g. different hosts." msgstr "所有GPRINT行的å‰ç¼€ï¼Œä»¥åŒºåˆ†ä¾‹å¦‚ ä¸åŒçš„主机。" #: ../include/global_form.php:1804 #: ../include/global_form.php:1887 #: ../include/global_form.php:1989 msgid "Use this Option to create e.g. STACKed graphs.
    AREA/STACK: 1st graph keeps AREA/STACK items, others convert to STACK
    LINE1: all items convert to LINE1 items
    LINE2: all items convert to LINE2 items
    LINE3: all items convert to LINE3 items" msgstr "使用此选项æ¥åˆ›å»ºä¾‹å¦‚ STACKED图表。
    AREA/STACK: 第一个图表ä¿ç•™ AREA/STACK项目, 其他转æ¢ä¸ºSTACK
    LINE1:所有项目都转æ¢ä¸ºLINE1项目
    LINE2:所有项目都转æ¢ä¸ºLINE2项目
    LINE3: 全部 项目转æ¢ä¸ºLINE3项目" #: ../include/global_form.php:1815 #: ../include/global_form.php:1898 #: ../include/global_form.php:2000 msgid "Totaling" msgstr "总计" #: ../include/global_form.php:1816 #: ../include/global_form.php:1899 #: ../include/global_form.php:2001 msgid "Please check those Items that shall be totaled in the \"Total\" column, when selecting any totaling option here." msgstr "在这里选择任何总计选项时,请检查在 \"总计\" æ ä¸­åº”汇总的项目。" #: ../include/global_form.php:1823 #: ../include/global_form.php:1907 #: ../include/global_form.php:2009 msgid "Total Type" msgstr "总类型" #: ../include/global_form.php:1824 #: ../include/global_form.php:1908 #: ../include/global_form.php:2010 msgid "Which type of totaling shall be performed." msgstr "应该执行哪ç§ç±»åž‹çš„æ€»å’Œã€‚" #: ../include/global_form.php:1831 #: ../include/global_form.php:1916 #: ../include/global_form.php:2018 msgid "Prefix for GPRINT Totals" msgstr "GPRINT汇总的å‰ç¼€" #: ../include/global_form.php:1832 #: ../include/global_form.php:1917 #: ../include/global_form.php:2019 msgid "A Prefix for all totaling GPRINT lines." msgstr "所有总计 GPRINT行的å‰ç¼€ã€‚" #: ../include/global_form.php:1839 #: ../include/global_form.php:1924 #: ../include/global_form.php:2026 msgid "Reorder Type" msgstr "釿–°æŽ’åºç±»åž‹" #: ../include/global_form.php:1840 #: ../include/global_form.php:1925 #: ../include/global_form.php:2027 msgid "Reordering of Graphs." msgstr "å›¾çš„é‡æ–°æŽ’åºã€‚" #: ../include/global_form.php:1860 msgid "Please name this Aggregate Graph." msgstr "请命å这个èšåˆå›¾ã€‚" #: ../include/global_form.php:1867 msgid "Propagation Enabled" msgstr "ä¼ æ’­å·²å¯ç”¨" #: ../include/global_form.php:1868 msgid "Is this to carry the template?" msgstr "这是模æ¿å—?" #: ../include/global_form.php:1874 msgid "Aggregate Graph Settings" msgstr "èšåˆå›¾è¡¨è®¾ç½®" #: ../include/global_form.php:1879 #: ../include/global_form.php:1981 msgid "A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may use both Host as well as Data Query replacement variables in this prefix." msgstr "所有GPRINT行的å‰ç¼€ï¼Œä»¥åŒºåˆ†ä¾‹å¦‚ ä¸åŒçš„主机。 您å¯ä»¥åœ¨æ­¤å‰ç¼€ä¸­åŒæ—¶ä½¿ç”¨ä¸»æœºä»¥åŠæ•°æ®æŸ¥è¯¢æ›¿æ¢å˜é‡ã€‚" #: ../include/global_form.php:1959 msgid "Aggregate Template Name" msgstr "èšåˆæ¨¡æ¿åç§°" #: ../include/global_form.php:1960 msgid "Please name this Aggregate Template." msgstr "请命å这个èšåˆæ¨¡æ¿ã€‚" #: ../include/global_form.php:1967 msgid "Source Graph Template" msgstr "æºå›¾æ¨¡æ¿" #: ../include/global_form.php:1968 msgid "The Graph Template that this Aggregate Template is based upon." msgstr "该èšåˆæ¨¡æ¿æ‰€åŸºäºŽçš„图形模æ¿ã€‚" #: ../include/global_form.php:1976 msgid "Aggregate Template Settings" msgstr "èšåˆæ¨¡æ¿è®¾ç½®" #: ../include/global_form.php:2050 msgid "The name of this Color Template." msgstr "这个颜色模æ¿çš„å称。" #: ../include/global_form.php:2061 msgid "A nice Color" msgstr "一个ä¸é”™çš„颜色" #: ../include/global_form.php:2071 msgid "A useful name for this Template." msgstr "这个模æ¿çš„一个有用的å字。" #: ../include/global_form.php:2085 #: ../include/global_form.php:2127 #: ../lib/api_automation.php:1208 #: ../lib/api_automation.php:1270 msgid "Operation" msgstr "æ“作" #: ../include/global_form.php:2086 #: ../include/global_form.php:2128 msgid "Logical operation to combine rules." msgstr "逻辑æ“作æ¥ç»„åˆè§„则。" #: ../include/global_form.php:2094 #: ../include/global_form.php:2136 msgid "The Field Name that shall be used for this Rule Item." msgstr "应该用于此规则项目的字段å称。" #: ../include/global_form.php:2102 #: ../include/global_form.php:2144 msgid "Operator." msgstr "æ“作员" #: ../include/global_form.php:2109 #: ../include/global_form.php:2151 #: ../include/global_form.php:2297 msgid "Matching Pattern" msgstr "åŒ¹é…æ¨¡å¼" #: ../include/global_form.php:2110 #: ../include/global_form.php:2152 msgid "The Pattern to be matched against." msgstr "è¦åŒ¹é…的模å¼ã€‚" #: ../include/global_form.php:2118 #: ../include/global_form.php:2160 #: ../include/global_form.php:2314 msgid "Sequence." msgstr "åºåˆ—。" #: ../include/global_form.php:2169 #: ../include/global_form.php:2216 msgid "A useful name for this Rule." msgstr "这个规则的一个有用的å字。" #: ../include/global_form.php:2177 msgid "Choose a Data Query to apply to this rule." msgstr "é€‰æ‹©ä¸€ä¸ªæ•°æ®æŸ¥è¯¢æ¥åº”用到这个规则。" #: ../include/global_form.php:2188 msgid "Choose any of the available Graph Types to apply to this rule." msgstr "选择任何å¯ç”¨çš„图表类型以应用于此规则。" #: ../include/global_form.php:2203 #: ../include/global_form.php:2261 msgid "Enable Rule" msgstr "å¯ç”¨è§„则" #: ../include/global_form.php:2204 #: ../include/global_form.php:2262 msgid "Check this box to enable this rule." msgstr "选中此框以å¯ç”¨æ­¤è§„则。" #: ../include/global_form.php:2224 msgid "Choose a Tree for the new Tree Items." msgstr "为新的树项目选择一棵树。" #: ../include/global_form.php:2231 msgid "Leaf Item Type" msgstr "Leafå­é¡¹ç›®ç±»åž‹" #: ../include/global_form.php:2232 msgid "The Item Type that shall be dynamically added to the tree." msgstr "é¡¹ç›®ç±»åž‹åº”è¯¥è¢«åŠ¨æ€æ·»åŠ åˆ°æ ‘ä¸­ã€‚" #: ../include/global_form.php:2239 msgid "Graph Grouping Style" msgstr "图形分组风格" #: ../include/global_form.php:2240 msgid "Choose how graphs are grouped when drawn for this particular host on the tree." msgstr "选择在树上为此特定主机绘制图形时如何分组。" #: ../include/global_form.php:2250 msgid "Optional: Sub-Tree Item" msgstr "å¯é€‰ï¼šå­æ ‘项目" #: ../include/global_form.php:2251 msgid "Choose a Sub-Tree Item to hook in.
    Make sure, that it is still there when this rule is executed!" msgstr "é€‰æ‹©è¦æ’å…¥çš„å­æ ‘项目。
    ç¡®ä¿æ‰§è¡Œæ­¤è§„则时ä»ç„¶å­˜åœ¨ï¼" #: ../include/global_form.php:2272 msgid "Header Type" msgstr "标题类型" #: ../include/global_form.php:2273 msgid "Choose an Object to build a new Sub-header." msgstr "é€‰æ‹©ä¸€ä¸ªå¯¹è±¡æ¥æž„å»ºä¸€ä¸ªæ–°çš„å­æ ‡é¢˜ã€‚" #: ../include/global_form.php:2289 msgid "Propagate Changes" msgstr "传播更改" #: ../include/global_form.php:2290 msgid "Propagate all options on this form (except for 'Title') to all child 'Header' items." msgstr "将此表å•上的所有选项(“标题â€é™¤å¤–ï¼‰ä¼ æ’­ç»™æ‰€æœ‰å­æ ‡é¢˜é¡¹ç›®ã€‚" #: ../include/global_form.php:2298 msgid "The String Pattern (Regular Expression) to match against.
    Enclosing '/' must NOT be provided!" msgstr "字符串模å¼ï¼ˆæ­£åˆ™è¡¨è¾¾å¼ï¼‰åŒ¹é…。
    '/'一定 ä¸åŒ…å«ï¼" #: ../include/global_form.php:2305 msgid "Replacement Pattern" msgstr "æ›¿æ¢æ¨¡å¼" #: ../include/global_form.php:2306 msgid "The Replacement String Pattern for use as a Tree Header.
    Refer to a Match by e.g. \\${1} for the first match!" msgstr "第一个匹é…çš„\\${1}用作树标题的替æ¢å­—符串模å¼ã€‚ " #: ../include/global_languages.php:592 msgid " T" msgstr " T" #: ../include/global_languages.php:594 msgid " G" msgstr " G" #: ../include/global_languages.php:596 msgid " M" msgstr " M" #: ../include/global_languages.php:598 msgid " K" msgstr " K" #: ../include/global_session.php:91 #: ../lib/html_filter.php:66 msgid "Enter a search term" msgstr "输入一个æœç´¢è¯" #: ../include/global_session.php:92 msgid "Enter a regular expression" msgstr "输入正则表达å¼" #: /var/www/html/cacti/include/global_session.php:101 msgid "No file selected" msgstr "没有选择文件" #: ../lib/html.php:294 msgid "Time Graph View" msgstr "时间图表视图" #: /var/www/html/cacti/include/global_session.php:104 #: /var/www/html/cacti/include/global_session.php:116 msgid "SpikeKill Results" msgstr "SpikeKill结果" #: /var/www/html/cacti/include/global_session.php:106 msgid "Click to view just this Graph in Realtime" msgstr "点击å³å¯å®žæ—¶æŸ¥çœ‹æ­¤å›¾è¡¨" #: /var/www/html/cacti/include/global_session.php:107 msgid "Click again to take this Graph out of Realtime" msgstr "冿¬¡ç‚¹å‡»å¯å°†æ­¤å›¾è¡¨ä»ŽRealtime中删除" #: /var/www/html/cacti/include/global_session.php:111 msgid "Cacti Home" msgstr "Cacti之家" #: /var/www/html/cacti/include/global_session.php:112 msgid "Cacti Project Page" msgstr "Cacti项目页é¢" #: /var/www/html/cacti/include/global_session.php:113 msgid "Cacti Community Forum" msgstr "Cacti 社区论å›" #: /var/www/html/cacti/include/global_session.php:114 msgid "Report a bug" msgstr "报告错误" msgid "Click to Show/Hide Filter" msgstr "点击以显示/éšè—过滤器" msgid "Clear Current Filter" msgstr "清除当å‰è¿‡æ»¤å™¨" #: /var/www/html/cacti/include/global_session.php:119 msgid "Clipboard" msgstr "剪贴æ¿" #: /var/www/html/cacti/include/global_session.php:120 msgid "Clipboard ID" msgstr "剪贴æ¿ID" #: /var/www/html/cacti/include/global_session.php:121 msgid "Copy operation is unavailable at this time" msgstr "å¤åˆ¶æ“作目å‰ä¸å¯ç”¨" #: /var/www/html/cacti/include/global_session.php:122 msgid "Failed to find data to copy!" msgstr "无法找到è¦å¤åˆ¶çš„æ•°æ®ï¼" #: /var/www/html/cacti/include/global_session.php:123 msgid "Clipboard has been updated" msgstr "剪贴æ¿å·²æ›´æ–°" #: /var/www/html/cacti/include/global_session.php:124 msgid "Sorry, your clipboard could not be updated at this time" msgstr "对ä¸èµ·ï¼Œæ‚¨çš„剪贴æ¿ç›®å‰æ— æ³•æ›´æ–°" #: /var/www/html/cacti/include/global_session.php:128 msgid "Passphrase length meets 8 character minimum" msgstr "密ç é•¿åº¦è‡³å°‘满足8个字符" #: /var/www/html/cacti/include/global_session.php:129 msgid "Passphrase too short" msgstr "密ç å¤ªçŸ­" #: /var/www/html/cacti/include/global_session.php:130 msgid "Passphrase matches but too short" msgstr "密ç çŸ­è¯­åŒ¹é…,但太短" #: /var/www/html/cacti/include/global_session.php:131 msgid "Passphrase too short and not matching" msgstr "密ç å¤ªçŸ­è€Œä¸åŒ¹é…" #: /var/www/html/cacti/include/global_session.php:132 msgid "Passphrases match" msgstr "å£ä»¤åŒ¹é…" #: /var/www/html/cacti/include/global_session.php:133 msgid "Passphrases do not match" msgstr "密ç ä¸åŒ¹é…" #: /var/www/html/cacti/include/global_session.php:134 msgid "Sorry, we could not process your last action" msgstr "对ä¸èµ·ï¼Œæˆ‘ä»¬æ— æ³•å¤„ç†æ‚¨æœ€åŽçš„æ“ä½œ" #: /var/www/html/cacti/include/global_session.php:135 msgid "Error:" msgstr "错误:" #: /var/www/html/cacti/include/global_session.php:136 msgid "Reason:" msgstr "原因:" #: /var/www/html/cacti/include/global_session.php:137 msgid "Action failed" msgstr "æ“作失败" #: /var/www/html/cacti/include/global_session.php:138 msgid "The response to the last action was unexpected" msgstr "对最åŽä¸€æ¬¡è¡ŒåŠ¨çš„å›žåº”æ˜¯æ„外的" #: ../include/global_settings.php:38 #: ../include/global_settings.php:836 #: ../include/global_settings.php:940 #: ../include/global_settings.php:1565 #: ../managers.php:39 #: ../user_admin.php:1921 #: ../user_group_admin.php:1642 msgid "General" msgstr "一般" #: ../include/global_settings.php:39 msgid "Paths" msgstr "路径" #: ../include/global_settings.php:40 msgid "Device Defaults" msgstr "设备默认值" #: ../include/global_settings.php:41 #: ../include/global_settings.php:449 msgid "Poller" msgstr "Poller" #: ../include/global_settings.php:42 msgid "Data Storage" msgstr "æ•°æ®å­˜å‚¨" #: ../include/global_settings.php:43 msgid "Visual" msgstr "外观" #: ../include/global_settings.php:44 #: ../lib/functions.php:3800 #: ../lib/functions.php:3805 msgid "Authentication" msgstr "认è¯" #: ../include/global_settings.php:45 msgid "Data Source Statistics" msgstr "æ•°æ®æºç»Ÿè®¡" #: ../include/global_settings.php:46 msgid "Performance" msgstr "性能" #: ../include/global_settings.php:47 msgid "Spikes" msgstr "å°–å³°" #: ../include/global_settings.php:48 msgid "Mail/Reporting/DNS" msgstr "邮件/报告/ DNS" #: ../include/global_settings.php:52 msgid "Time Spanning/Shifting" msgstr "时间跨越/转移" #: ../include/global_settings.php:53 msgid "Graph Thumbnail Settings" msgstr "图表缩略图设置" #: ../include/global_settings.php:54 msgid "Tree Settings" msgstr "树设置" #: ../include/global_settings.php:55 msgid "Graph Fonts" msgstr "图形字体" #: ../include/global_settings.php:85 msgid "Required Tool Paths" msgstr "所需工具的路径" #: ../include/global_settings.php:90 msgid "snmpwalk Binary Path" msgstr "snmpwalk 路径" #: ../include/global_settings.php:91 msgid "The path to your snmpwalk binary." msgstr "snmpwalk 的路径。" #: ../include/global_settings.php:96 msgid "snmpget Binary Path" msgstr "snmpget 路径" #: ../include/global_settings.php:97 msgid "The path to your snmpget binary." msgstr "snmpget 路径。" #: ../include/global_settings.php:102 msgid "snmpbulkwalk Binary Path" msgstr "snmpbulkwalk 路径" #: ../include/global_settings.php:103 msgid "The path to your snmpbulkwalk binary." msgstr "snmpbulkwalk 路径。" #: ../include/global_settings.php:108 msgid "snmpgetnext Binary Path" msgstr "snmpgetnext 路径" #: ../include/global_settings.php:109 msgid "The path to your snmpgetnext binary." msgstr "snmpgetnext 的路径。" #: ../include/global_settings.php:114 msgid "snmptrap Binary Path" msgstr "snmptrap二进制路径" #: ../include/global_settings.php:115 msgid "The path to your snmptrap binary." msgstr "snmptrap二进制文件的路径。" #: ../include/global_settings.php:120 msgid "RRDtool Binary Path" msgstr "RRDtool 二进制路径" #: ../include/global_settings.php:121 msgid "The path to the rrdtool binary." msgstr "rrdtool 路径。" #: ../include/global_settings.php:126 msgid "PHP Binary Path" msgstr "PHP 路径" #: ../include/global_settings.php:127 msgid "The path to your PHP binary file (may require a php recompile to get this file)." msgstr "ä½ çš„PHP执行文件的路径(å¯èƒ½éœ€è¦ä¸€ä¸ªPHP釿–°ç¼–译æ¥èŽ·å¾—è¿™ä¸ªæ–‡ä»¶ï¼‰ã€‚" #: ../include/global_settings.php:132 msgid "Logging" msgstr "记录" #: ../include/global_settings.php:137 msgid "Cacti Log Path" msgstr "Cacti 日志文件路径" #: ../include/global_settings.php:138 msgid "The path to your Cacti log file (if blank, defaults to /log/cacti.log)" msgstr "Cacti日志文件的路径(如果为空,则默认为 /log/cacti.log)" #: /var/www/html/cacti/include/global_settings.php:153 msgid "Rotate the Cacti Log" msgstr "分割Cacti日志" #: /var/www/html/cacti/include/global_settings.php:154 msgid "This option will rotate the Cacti Log periodically." msgstr "此选项将定期轮æ¢Cacti日志。" #: /var/www/html/cacti/include/global_settings.php:159 msgid "Rotation Frequency" msgstr "分割频率" #: /var/www/html/cacti/include/global_settings.php:160 msgid "At what frequency would you like to rotate your logs?" msgstr "您想以什么频率旋转日志?" #: ../include/global_settings.php:150 msgid "Log Retention" msgstr "日志ä¿ç•™" #: /var/www/html/cacti/include/global_settings.php:167 msgid "How many log files do you wish to retain? Use 0 to never remove any logs. (0-365)" msgstr "您希望ä¿ç•™å¤šå°‘个日志文件? 使用0æ°¸ä¸åˆ é™¤ä»»ä½•日志。(0-365)" #: ../include/global_settings.php:157 msgid "Alternate Poller Path" msgstr "备用poller路径" #: ../include/global_settings.php:162 msgid "Spine Binary File Location" msgstr "Spine二进制文件ä½ç½®" #: ../include/global_settings.php:163 msgid "The path to Spine binary." msgstr "Spine 路径。" #: ../include/global_settings.php:168 msgid "Spine Config File Path" msgstr "Spineé…置文件路径" #: ../include/global_settings.php:169 msgid "The path to Spine configuration file. By default, in the cwd of spine, or /etc if not specified." msgstr "Spineé…置文件的路径。 默认情况下,在Spineçš„cwd或/ etc中,如果没有指定。" #: ../include/global_settings.php:174 #: ../lib/functions.php:2238 #: ../rrdcleaner.php:296 msgid "RRD Cleaner" msgstr "RRD清除" #: ../include/global_settings.php:179 msgid "RRDfile Auto Clean" msgstr "RRD文件自动清ç†" #: ../include/global_settings.php:180 msgid "Automatically Delete, Archive, or Delete RRDfiles when removed from Cacti" msgstr "从Cacti中删除时,自动删除,存档或删除RRD文件" #: ../include/global_settings.php:185 msgid "RRDfile Auto Clean Method" msgstr "RRDæ–‡ä»¶è‡ªåŠ¨æ¸…ç†æ–¹æ³•" #: ../include/global_settings.php:186 msgid "The method used to Clean RRDfiles from Cacti after their deletion." msgstr "删除åŽç”¨äºŽä»ŽCacti清除RRD文件的方法。" #: ../include/global_settings.php:192 msgid "Archive directory" msgstr "存档目录" #: ../include/global_settings.php:193 msgid "This is the directory where RRDfiles are moved for Archive" msgstr "这是存档中RRD文件移动的目录" #: ../include/global_settings.php:201 msgid "Event Logging" msgstr "事件日志记录" #: ../include/global_settings.php:206 msgid "Log Destination" msgstr "日志目标" #: ../include/global_settings.php:207 msgid "How will Cacti handle event logging." msgstr "Cacti如何处ç†äº‹ä»¶æ—¥å¿—。" #: ../include/global_settings.php:213 msgid "Web Events" msgstr "Web 事件" #: ../include/global_settings.php:214 msgid "What Cacti website messages should be placed in the log." msgstr "什么Cacti的网站消æ¯åº”放在日志中。" #: ../include/global_settings.php:219 msgid "SNMP Messages" msgstr "SNMP消æ¯" #: ../include/global_settings.php:223 msgid "Graph Syntax" msgstr "图形语法" #: ../include/global_settings.php:227 msgid "Developer Mode" msgstr "å¼€å‘者模å¼" #: ../include/global_settings.php:233 msgid "Log Settings" msgstr "日志设置" #: ../include/global_settings.php:238 msgid "Generic Log Level" msgstr "通用日志级别" #: ../include/global_settings.php:239 msgid "What level of detail do you want sent to the log file. WARNING: Leaving in any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "你想è¦å‘é€åˆ°æ—¥å¿—文件的细节级别。 è­¦å‘Šï¼šå¦‚æžœå¤„äºŽâ€œæ— â€æˆ–“低â€çжæ€ï¼Œå¯èƒ½ä¼šè¿…速耗尽ç£ç›˜ç©ºé—´ã€‚" #: ../include/global_settings.php:245 msgid "Selective File Debug" msgstr "选择性文件调试" #: ../include/global_settings.php:246 msgid "Select which files you wish to place in Debug mode regardless of the Generic Log Level setting. Any files selected will be treated as they are in Debug mode." msgstr "无论通用日志级别设置如何,请选择您希望在调试模å¼ä¸‹æ”¾ç½®å“ªäº›æ–‡ä»¶ã€‚ 任何选中的文件将被视为处于调试模å¼ã€‚" #: ../include/global_settings.php:252 msgid "Selective Plugin Debug" msgstr "选择性æ’件调试" #: ../include/global_settings.php:253 msgid "Select which Plugins you wish to place in Debug mode regardless of the Generic Log Level setting. Any files used by this plugin will be treated as they are in Debug mode." msgstr "无论“通用日志级别â€è®¾ç½®å¦‚何,选择希望在调试模å¼ä¸‹æ”¾ç½®å“ªäº›æ’件。 这个æ’件使用的任何文件将被视为处于调试模å¼ã€‚" #: ../include/global_settings.php:259 msgid "Selective Device Debug" msgstr "选择性设备调试" #: ../include/global_settings.php:260 msgid "A comma delimited list of Device ID's that you wish to be in Debug mode during data collection. This Debug level is only in place during the Cacti polling process." msgstr "åœ¨æ•°æ®æ”¶é›†æœŸé—´ï¼Œæ‚¨å¸Œæœ›å¤„于调试模å¼çš„设备ID的逗å·åˆ†éš”列表。 此调试级别仅在Cacti轮询过程中适用。" #: ../include/global_settings.php:267 msgid "Poller Syslog/Eventlog Selection" msgstr "轮询系统日志/事件日志" #: ../include/global_settings.php:268 msgid "If you are using the Syslog/Eventlog, What Cacti poller messages should be placed in the Syslog/Eventlog." msgstr "如果使用Syslog / Eventlog,则应在Syslog / Eventlog中放置什么Cacti轮询器消æ¯ã€‚" #: ../include/global_settings.php:273 msgid "Statistics" msgstr "统计" #: ../include/global_settings.php:277 #: ../lib/clog_webapi.php:333 #: ../utilities.php:1002 msgid "Warnings" msgstr "警告" #: ../include/global_settings.php:281 #: ../lib/clog_webapi.php:334 #: ../utilities.php:1003 msgid "Errors" msgstr "错误" #: ../include/global_settings.php:287 msgid "Other Defaults" msgstr "Other Defaults" #: ../include/global_settings.php:292 msgid "Has Graphs/Data Sources Checked" msgstr "有图形/æ•°æ®æºæ£€æŸ¥" #: ../include/global_settings.php:293 msgid "Should the Has Graphs and Has Data Sources be Checked by Default." msgstr "å¦‚æžœæœ‰å›¾å’Œæ•°æ®æºé»˜è®¤æƒ…况下被检查。" #: ../include/global_settings.php:298 msgid "Graph Template Image Format" msgstr "图表模æ¿å›¾åƒæ ¼å¼" #: ../include/global_settings.php:299 msgid "The default Image Format to be used for all new Graph Templates." msgstr "用于所有新图形模æ¿çš„é»˜è®¤å›¾åƒæ ¼å¼ã€‚" #: ../include/global_settings.php:305 msgid "Graph Template Height" msgstr "图表模æ¿é«˜åº¦" #: ../include/global_settings.php:306 #: ../include/global_settings.php:314 msgid "The default Graph Width to be used for all new Graph Templates." msgstr "用于所有新图形模æ¿çš„默认图形宽度。" #: ../include/global_settings.php:313 msgid "Graph Template Width" msgstr "图表模æ¿å®½åº¦" #: ../include/global_settings.php:321 msgid "Language Support" msgstr "语言支æŒ" #: ../include/global_settings.php:322 msgid "Choose 'enabled' to allow the localization of Cacti. The strict mode requires that the requested language will also be supported by all plugins being installed at your system. If that's not the fact everything will be displayed in English." msgstr "选择“å¯ç”¨â€ä»¥å…许Cacti的本地化。 严格模å¼è¦æ±‚您的系统上安装的所有æ’ä»¶ä¹Ÿæ”¯æŒæ‰€éœ€çš„语言。 å¦‚æžœè¿™ä¸æ˜¯äº‹å®žï¼Œæ‰€æœ‰çš„东西都会以英文显示。" #: ../include/global_settings.php:328 msgid "Language" msgstr "语言" #: ../include/global_settings.php:329 msgid "Default language for this system." msgstr "系统默认语言。" #: ../include/global_settings.php:335 msgid "Auto Language Detection" msgstr "自动检测语言" #: ../include/global_settings.php:336 msgid "Allow to automatically determine the 'default' language of the user and provide it at login time if that language is supported by Cacti. If disabled, the default language will be in force until the user elects another language." msgstr "å…许自动确定用户的“默认â€è¯­è¨€ï¼Œå¦‚æžœCacti支æŒè¯¥è¯­è¨€ï¼Œåˆ™åœ¨ç™»å½•æ—¶æä¾›è¯¥è¯­è¨€ã€‚ 如果ç¦ç”¨ï¼Œé»˜è®¤è¯­è¨€å°†æœ‰æ•ˆï¼Œç›´åˆ°ç”¨æˆ·é€‰æ‹©å¦ä¸€ç§è¯­è¨€ã€‚" #: ../include/global_settings.php:342 #: ../include/global_settings.php:1819 msgid "Date Display Format" msgstr "日期显示格å¼" #: ../include/global_settings.php:343 msgid "The System default date format to use in Cacti." msgstr "在Cacti中使用的系统默认日期格å¼ã€‚" #: ../include/global_settings.php:349 #: ../include/global_settings.php:1826 msgid "Date Separator" msgstr "日期分隔符" #: ../include/global_settings.php:350 msgid "The System default date separator to be used in Cacti." msgstr "在Cacti中使用的系统默认日期分隔符。" #: ../include/global_settings.php:356 msgid "Other Settings" msgstr "其他设置" #: ../include/global_settings.php:361 #: ../utilities.php:258 msgid "RRDtool Version" msgstr "RRDTool 的版本" #: ../include/global_settings.php:362 msgid "The version of RRDtool that you have installed." msgstr "您已安装的RRDtool的版本。" #: ../include/global_settings.php:368 msgid "Graph Permission Method" msgstr "图表æƒé™æ–¹æ³•" #: ../include/global_settings.php:369 msgid "There are two methods for determining a User's Graph Permissions. The first is 'Permissive'. Under the 'Permissive' setting, a User only needs access to either the Graph, Device or Graph Template to gain access to the Graphs that apply to them. Under 'Restrictive', the User must have access to the Graph, the Device, and the Graph Template to gain access to the Graph." msgstr "æœ‰ä¸¤ç§æ–¹æ³•å¯ä»¥ç¡®å®šç”¨æˆ·çš„图形æƒé™ã€‚ 首先是“宽容â€ã€‚ 在“å…许â€è®¾ç½®ä¸‹ï¼Œç”¨æˆ·åªéœ€è¦è®¿é—®â€œå›¾å½¢â€ï¼Œâ€œè®¾å¤‡â€æˆ–“图形模æ¿â€å³å¯è®¿é—®é€‚用于其的图形。 在“é™åˆ¶â€ä¸‹ï¼Œç”¨æˆ·å¿…须有æƒè®¿é—®å›¾è¡¨ï¼Œè®¾å¤‡å’Œå›¾è¡¨æ¨¡æ¿æ‰èƒ½è®¿é—®å›¾è¡¨ã€‚" #: /var/www/html/cacti/include/global_settings.php:389 msgid "Permissive" msgstr "宽容" #: /var/www/html/cacti/include/global_settings.php:389 msgid "Restrictive" msgstr "é™åˆ¶æ€§" #: ../include/global_settings.php:376 msgid "Graph/Data Source Creation Method" msgstr "图/æ•°æ®æºåˆ›å»ºæ–¹æ³•" #: ../include/global_settings.php:377 msgid "If set to Simple, Graphs and Data Sources can only be created from New Graphs. If Advanced, legacy Graph and Data Source creation is supported." msgstr "如果设置为“简å•â€ï¼Œåˆ™åªèƒ½ä»Žæ–°å›¾å½¢åˆ›å»ºå›¾å½¢å’Œæ•°æ®æºã€‚ å¦‚æžœæ˜¯é«˜çº§ï¼Œåˆ™æ”¯æŒæ—§ç‰ˆå›¾å½¢å’Œæ•°æ®æºåˆ›å»ºã€‚" #: /var/www/html/cacti/include/global_settings.php:396 msgid "Advanced" msgstr "高级" #: /var/www/html/cacti/include/global_settings.php:396 msgid "Simple" msgstr "简å•" #: ../include/global_settings.php:382 msgid "Show Form/Setting Help Inline" msgstr "在线显示表å•/设置帮助" #: ../include/global_settings.php:383 msgid "When checked, Form and Setting Help will be show inline. Otherwise it will be presented when hovering over the help button." msgstr "选中åŽï¼Œè¡¨æ ¼å’Œè®¾ç½®å¸®åŠ©å°†å†…è”æ˜¾ç¤ºã€‚ å¦åˆ™ï¼Œå½“鼠标悬åœåœ¨å¸®åŠ©æŒ‰é’®ä¸Šæ—¶ï¼Œä¼šæ˜¾ç¤ºå®ƒã€‚" #: ../include/global_settings.php:388 msgid "Deletion Verification" msgstr "删除验è¯" #: ../include/global_settings.php:389 msgid "Prompt user before item deletion." msgstr "åœ¨åˆ é™¤é¡¹ç›®ä¹‹å‰æç¤ºç”¨æˆ·ã€‚" #: ../include/global_settings.php:394 msgid "Hide Cacti Console" msgstr "éšè—Cacti控制å°" #: ../include/global_settings.php:395 msgid "For use with Cacti's External Link Support. Using this setting, you can replace the Cacti Console with your own page." msgstr "与Cacti的外部链接支æŒä¸€èµ·ä½¿ç”¨ã€‚ 使用此设置,您å¯ä»¥å°†CactiæŽ§åˆ¶å°æ›¿æ¢ä¸ºæ‚¨è‡ªå·±çš„页é¢ã€‚" #: ../include/global_settings.php:401 msgid "Enable Drag-N-Drop" msgstr "å¯ç”¨æ‹–放å¼N-Drop" #: ../include/global_settings.php:402 msgid "Some of Cacti's interfaces support Drag-N-Drop. If checked this option will be enabled. Note: For visually impaired user, this option may be disabled." msgstr "一些Cactiçš„æŽ¥å£æ”¯æŒDrag-N-Drop。 如果选中此选项将被å¯ç”¨ã€‚ 注æ„:对于视障用户,此选项å¯èƒ½è¢«ç¦ç”¨ã€‚" #: ../include/global_settings.php:407 msgid "Force Connections over HTTPS" msgstr "通过HTTPS强制连接" #: /var/www/html/cacti/include/global_settings.php:425 msgid "When checked, any attempts to access Cacti will be redirected to HTTPS to ensure high security." msgstr "选中åŽï¼Œä»»ä½•访问Cactiçš„å°è¯•都将被é‡å®šå‘到HTTPS以确ä¿é«˜å®‰å…¨æ€§ã€‚" #: ../include/global_settings.php:419 msgid "Enable Automatic Graph Creation" msgstr "å¯ç”¨è‡ªåŠ¨å›¾å½¢åˆ›å»º" #: ../include/global_settings.php:420 msgid "When disabled, Cacti Automation will not actively create any Graph.This is useful when adjusting Host settings so as to avoid creating new Graphs each time you save an object. Invoking Automation Rules manually will still be possible." msgstr "ç¦ç”¨æ—¶ï¼ŒCacti自动化ä¸ä¼šä¸»åŠ¨åˆ›å»ºä»»ä½•å›¾å½¢ã€‚è¿™åœ¨è°ƒæ•´ä¸»æœºè®¾ç½®æ—¶éžå¸¸æœ‰ç”¨ï¼Œä»¥é¿å…æ¯æ¬¡ä¿å­˜å¯¹è±¡æ—¶éƒ½åˆ›å»ºæ–°çš„图形。 手动调用自动化规则ä»ç„¶æ˜¯å¯èƒ½çš„。" #: ../include/global_settings.php:427 msgid "Enable Automatic Tree Item Creation" msgstr "å¯ç”¨è‡ªåŠ¨æ ‘é¡¹ç›®åˆ›å»º" #: ../include/global_settings.php:428 msgid "When disabled, Cacti Automation will not actively create any Tree Item.This is useful when adjusting Host or Graph settings so as to avoid creating new Tree Entries each time you save an object. Invoking Rules manually will still be possible." msgstr "ç¦ç”¨æ—¶ï¼ŒCacti 自动化ä¸ä¼šä¸»åŠ¨åˆ›å»ºä»»ä½•æ ‘é¡¹ç›®ã€‚è¿™åœ¨è°ƒæ•´ä¸»æœºæˆ–å›¾å½¢è®¾ç½®æ—¶éžå¸¸æœ‰ç”¨ï¼Œä»¥é¿å…æ¯æ¬¡ä¿å­˜å¯¹è±¡æ—¶éƒ½åˆ›å»ºæ–°çš„æ ‘æ¡ç›®ã€‚ 手动调用规则ä»ç„¶æ˜¯å¯èƒ½çš„。" #: ../include/global_settings.php:436 msgid "General Defaults" msgstr "一般默认值" #: ../include/global_settings.php:442 msgid "The default Site for all new Devices." msgstr "所有新设备的默认网站。" #: ../include/global_settings.php:450 msgid "The default Poller for all new Devices." msgstr "所有新设备的默认轮询器。" #: /var/www/html/cacti/include/global_settings.php:474 msgid "Device Threads" msgstr "设备线程" #: /var/www/html/cacti/include/global_settings.php:475 msgid "The default number of Device Threads. This is only applicable when using the spine Data Collector." msgstr "设备线程的默认数é‡ã€‚ è¿™ä»…é€‚ç”¨äºŽä½¿ç”¨è„ŠæŸ±æ•°æ®æ”¶é›†å™¨çš„æƒ…况。" #: ../include/global_settings.php:457 msgid "Re-index Method for Data Queries" msgstr "æ•°æ®æŸ¥è¯¢çš„釿–°ç´¢å¼•方法" #: ../include/global_settings.php:458 msgid "The default Re-index Method to use for all Data Queries." msgstr "ç”¨äºŽæ‰€æœ‰æ•°æ®æŸ¥è¯¢çš„é»˜è®¤é‡æ–°ç´¢å¼•方法。" #: ../include/global_settings.php:464 msgid "SNMP Defaults" msgstr "SNMP的默认值" #: ../include/global_settings.php:470 msgid "Default SNMP version for all new hosts." msgstr "所有新设备的默认SNMP版本。" #: ../include/global_settings.php:477 msgid "Default SNMP read community for all new hosts." msgstr "所有新设备的默认SNMP团体å。" #: /var/www/html/cacti/include/global_settings.php:507 msgid "Security Level" msgstr "安全级别" #: /var/www/html/cacti/include/global_settings.php:508 msgid "The SNMP v3 Security Level." msgstr "SNMP v3安全级别。" #: ../include/global_settings.php:483 msgid "Username (v3)" msgstr "用户å (v3)" #: ../include/global_settings.php:484 msgid "The SNMP v3 Username for polling hosts." msgstr "轮询主机的SNMP v3用户å。" #: ../include/global_settings.php:498 msgid "Auth Protocol (v3)" msgstr "身份验è¯åè®® (v3)" #: ../include/global_settings.php:490 msgid "Password (v3)" msgstr "å¯†ç  (v3)" #: ../include/global_settings.php:491 msgid "The SNMP v3 Password for polling hosts." msgstr "用于轮询主机的SNMP v3密ç ã€‚" #: ../include/global_settings.php:512 msgid "Privacy Protocol (v3)" msgstr "éšç§åè®® (v3)" #: ../include/global_settings.php:505 msgid "Privacy Passphrase (v3)" msgstr "éšç§å¯†ç  (v3)" #: ../include/global_settings.php:526 msgid "Port Number" msgstr "端å£å·" #: ../include/global_settings.php:527 msgid "Default UDP port to be used for SNMP Calls. Typically, 161." msgstr "用于SNMP请求的默认UDP端å£ã€‚ 通常,161。" #: ../include/global_settings.php:519 msgid "Default SNMP timeout in milli-seconds." msgstr "默认SNMP超时(以毫秒为å•ä½ï¼‰ã€‚" #: ../include/global_settings.php:535 msgid "The number of times the SNMP poller will attempt to reach the host before failing." msgstr "SNMP轮询器å°è¯•在å‘生故障之å‰åˆ°è¾¾ä¸»æœºçš„æ¬¡æ•°ã€‚" #: ../include/global_settings.php:542 msgid "Availability/Reachability" msgstr "å¯ç”¨æ€§/å¯è¾¾æ€§" #: ../include/global_settings.php:554 msgid "Ping Type" msgstr "Ping 类型" #: ../include/global_settings.php:555 msgid "The type of ping packet to send.
    NOTE: ICMP requires that the Cacti Service ID have root privileges in UNIX/Linux." msgstr "è¦å‘é€çš„ping包的类型。
    注æ„:ICMPè¦æ±‚CactiæœåŠ¡ID在UNIX / Linux中具有rootæƒé™" #: ../include/global_settings.php:562 msgid "When choosing either TCP or UDP Ping, which port should be checked for availability of the host prior to polling." msgstr "在选择TCP或UDP Pingæ—¶ï¼Œåº”åœ¨è½®è¯¢ä¹‹å‰æ£€æŸ¥ä¸»æœºçš„å¯ç”¨æ€§ã€‚" #: ../include/global_settings.php:578 msgid "The number of times Cacti will attempt to ping a host before failing." msgstr "在å‘生故障之å‰ï¼ŒCacti会å°è¯•ping主机的次数。" #: ../include/global_settings.php:585 msgid "Up/Down Settings" msgstr "UP/DOWN设定" #: ../include/global_settings.php:590 msgid "Failure Count" msgstr "错误次数" #: ../include/global_settings.php:591 msgid "The number of polling intervals a host must be down before logging an error and reporting host as down." msgstr "在记录错误并将主机报告为关闭之å‰ï¼Œä¸»æœºå¿…须关闭的轮询间隔数。" #: ../include/global_settings.php:598 msgid "Recovery Count" msgstr "æ¢å¤è®¡æ•°" #: ../include/global_settings.php:599 msgid "The number of polling intervals a host must remain up before returning host to an up status and issuing a notice." msgstr "在主机æ¢å¤åˆ°æ­£å¸¸çжæ€å¹¶å‘出通知之å‰ï¼Œä¸»æœºå¿…é¡»ä¿æŒçš„轮询间隔的数é‡ã€‚" #: ../include/global_settings.php:608 msgid "Theme Settings" msgstr "主题设置" #: ../include/global_settings.php:613 #: ../include/global_settings.php:764 #: ../include/global_settings.php:1792 msgid "Theme" msgstr "主题" #: ../include/global_settings.php:614 #: ../include/global_settings.php:1793 msgid "Please select one of the available Themes to skin your Cacti with." msgstr "请选择其中一个å¯ç”¨ä¸»é¢˜æ¥ä¸ºæ‚¨çš„Cactiæä¾›çš®è‚¤ã€‚" #: ../include/global_settings.php:620 msgid "Table Settings" msgstr "表格设置" #: ../include/global_settings.php:625 msgid "Rows Per Page" msgstr "æ¯é¡µè¡Œ" #: ../include/global_settings.php:626 msgid "The default number of rows to display on for a table." msgstr "è¦åœ¨è¡¨ä¸Šæ˜¾ç¤ºçš„默认行数。" #: /var/www/html/cacti/include/global_settings.php:681 msgid "Autocomplete Enabled" msgstr "自动完æˆå·²å¯ç”¨" #: /var/www/html/cacti/include/global_settings.php:682 msgid "In very large systems, select lists can slow the user interface significantly. If this option is enabled, Cacti will use autocomplete callbacks to populate the select list systematically. Note: autocomplete is forcibly disabled on the Classic theme." msgstr "在éžå¸¸å¤§çš„系统中,选择列表会显ç€å‡æ…¢ç”¨æˆ·ç•Œé¢ã€‚ 如果å¯ç”¨æ­¤é€‰é¡¹ï¼ŒCacti将使用自动完æˆå›žè°ƒç³»ç»Ÿåœ°å¡«å……选择列表。 注æ„:ç»å…¸ä¸»é¢˜å¼ºåˆ¶ç¦ç”¨è‡ªåŠ¨å®ŒæˆåŠŸèƒ½ã€‚" #: /var/www/html/cacti/include/global_settings.php:690 msgid "Autocomplete Rows" msgstr "自动完æˆè¡Œ" #: /var/www/html/cacti/include/global_settings.php:691 msgid "The default number of rows to return from an autocomplete based select pattern match." msgstr "从基于自动完æˆçš„选择模å¼åŒ¹é…返回的默认行数。" #: ../include/global_settings.php:632 msgid "Graph/Data Source/Data Query Settings" msgstr "图表/æ•°æ®æº/æ•°æ®æŸ¥è¯¢è®¾ç½®" #: ../include/global_settings.php:637 msgid "Maximum Title Length" msgstr "标题长度最大值" #: ../include/global_settings.php:638 msgid "The maximum allowable Graph or Data Source titles." msgstr "最大å…è®¸çš„å›¾å½¢æˆ–æ•°æ®æºæ ‡é¢˜ã€‚" #: ../include/global_settings.php:645 msgid "Data Source Field Length" msgstr "æ•°æ®æºå­—段长度" #: ../include/global_settings.php:646 msgid "The maximum Data Query field length." msgstr "æœ€å¤§æ•°æ®æŸ¥è¯¢å­—段长度。" #: ../include/global_settings.php:653 msgid "Graph Creation" msgstr "图形创建" #: ../include/global_settings.php:658 msgid "Default Graph Type" msgstr "默认图形类型" #: ../include/global_settings.php:659 msgid "When creating graphs, what Graph Type would you like pre-selected?" msgstr "在创建图表时,您想è¦é¢„先选择哪ç§å›¾è¡¨ç±»åž‹ï¼Ÿ" #: ../include/global_settings.php:662 msgid "All Types" msgstr "所有类型" #: ../include/global_settings.php:662 msgid "By Template/Data Query" msgstr "通过模æ¿/æ•°æ®æŸ¥è¯¢" #: ../include/global_settings.php:670 msgid "Default Log Tail Lines" msgstr "默认的日志尾线" #: ../include/global_settings.php:671 msgid "Default number of lines of the Cacti log file to tail." msgstr "Cacti日志文件的行的缺çœè¡Œæ•°ã€‚" #: ../include/global_settings.php:677 msgid "Maximum number of rows per page" msgstr "æ¯é¡µçš„æœ€å¤§è¡Œæ•°" #: ../include/global_settings.php:678 msgid "User defined number of lines for the CLOG to tail when selecting 'All lines'." msgstr "åœ¨é€‰æ‹©â€œæ‰€æœ‰è¡Œâ€æ—¶ï¼Œç”¨æˆ·å®šä¹‰çš„CLOG尾部行数。" #: ../include/global_settings.php:685 msgid "Log Tail Refresh" msgstr "日志结尾刷新" #: ../include/global_settings.php:686 msgid "How often do you want the Cacti log display to update." msgstr "您希望多久更新一次Cacti日志显示。" #: ../include/global_settings.php:692 msgid "RRDtool Graph Watermark" msgstr "RRDtool图水å°" #: ../include/global_settings.php:697 msgid "Watermark Text" msgstr "æ°´å°æ–‡æœ¬" #: /var/www/html/cacti/include/global_settings.php:763 msgid "Text placed at the bottom center of every Graph." msgstr "文本放置在æ¯ä¸ªå›¾å½¢çš„底部中心。" #: ../include/global_settings.php:705 msgid "Log Viewer Settings" msgstr "日志查看器设置" #: ../include/global_settings.php:710 msgid "Exclusion Regex" msgstr "排除正则表达å¼" #: /var/www/html/cacti/include/global_settings.php:776 msgid "Any strings that match this regex will be excluded from the user display. For example, if you want to exclude all log lines that include the words 'Admin' or 'Login' you would type '(Admin || Login)'" msgstr "任何匹é…这个正则表达å¼çš„字符串将被排除在用户显示之外。 ä¾‹å¦‚ï¼Œå¦‚æžœæ‚¨æƒ³è¦æŽ’é™¤åŒ…å«â€œç®¡ç†â€æˆ–“登录â€å­—样的所有日志行,您å¯ä»¥é”®å…¥'(Admin || Login)'" #: ../include/global_settings.php:720 msgid "Real-time Graphs" msgstr "实时图表" #: ../include/global_settings.php:725 msgid "Enable Real-time Graphing" msgstr "å¯ç”¨å®žæ—¶å›¾å½¢" #: ../include/global_settings.php:726 msgid "When an option is checked, users will be able to put Cacti into Real-time mode." msgstr "当一个选项被选中时,用户将能够将Cacti设置为实时模å¼ã€‚" #: ../include/global_settings.php:732 msgid "This timespan you wish to see on the default graph." msgstr "您希望在默认图表上看到这个时间段。" #: ../include/global_settings.php:738 #: ../utilities.php:1893 msgid "Refresh Interval" msgstr "刷新间隔" #: ../include/global_settings.php:739 msgid "This is the time between graph updates." msgstr "这是图形更新之间的时间。" #: ../include/global_settings.php:745 msgid "Cache Directory" msgstr "缓存目录" #: /var/www/html/cacti/include/global_settings.php:809 msgid "This is the location, on the web server where the RRDfiles and PNG files will be cached. This cache will be managed by the poller. Make sure you have the correct read and write permissions on this folder" msgstr "这是RRD文件和PNG文件将被缓存的WebæœåŠ¡å™¨ä¸Šçš„ä½ç½®ã€‚ 该缓存将由轮询器管ç†ã€‚ ç¡®ä¿æ‚¨å¯¹æ­¤æ–‡ä»¶å¤¹å…·æœ‰æ­£ç¡®çš„读写æƒé™" #: ../include/global_settings.php:755 msgid "RRDtool Graph Font Control" msgstr "RRDtool图形字体控制" #: ../include/global_settings.php:760 msgid "Font Selection Method" msgstr "字体选择方法" #: ../include/global_settings.php:761 msgid "How do you wish fonts to be handled by default?" msgstr "你希望如何默认处ç†å­—体?" #: ../include/global_settings.php:764 msgid "System" msgstr "System" #: ../include/global_settings.php:767 msgid "Default Font" msgstr "默认字体" #: ../include/global_settings.php:768 msgid "When not using Theme based font control, the Pangon font-config font name to use for all Graphs. Optionally, you may leave blank and control font settings on a per object basis." msgstr "当ä¸ä½¿ç”¨åŸºäºŽä¸»é¢˜çš„字体控制时,用于所有图形的Pangon font-config字体å称。 或者,您å¯ä»¥ä¿ç•™ç©ºç™½å¹¶ä»¥æ¯ä¸ªå¯¹è±¡ä¸ºåŸºç¡€æŽ§åˆ¶å­—体设置。" #: ../include/global_settings.php:770 #: ../include/global_settings.php:785 #: ../include/global_settings.php:800 #: ../include/global_settings.php:815 #: ../include/global_settings.php:830 msgid "Enter Valid Font Config Value" msgstr "输入有效的字体é…置值" #: ../include/global_settings.php:774 #: ../include/global_settings.php:1977 msgid "Title Font Size" msgstr "标题字体大å°" #: ../include/global_settings.php:775 #: ../include/global_settings.php:1978 msgid "The size of the font used for Graph Titles" msgstr "图形标题使用的字体的大å°" #: ../include/global_settings.php:782 msgid "Title Font Setting" msgstr "标题字体设置" #: ../include/global_settings.php:783 msgid "The font to use for Graph Titles. Enter either a valid True Type Font file or valid Pango font-config value." msgstr "用于图形标题的字体。 输入有效的True Type字体文件或有效的Pango font-config值。" #: ../include/global_settings.php:789 #: ../include/global_settings.php:1990 msgid "Legend Font Size" msgstr "图例字体大å°" #: ../include/global_settings.php:790 #: ../include/global_settings.php:1991 msgid "The size of the font used for Graph Legend items" msgstr "图例中使用的字体大å°" #: ../include/global_settings.php:797 msgid "Legend Font Setting" msgstr "图例字体设置" #: ../include/global_settings.php:798 msgid "The font to use for Graph Legends. Enter either a valid True Type Font file or valid Pango font-config value." msgstr "用于Graph Legends的字体。 输入有效的True Type字体文件或有效的Pango font-config值。" #: ../include/global_settings.php:804 #: ../include/global_settings.php:2003 msgid "Axis Font Size" msgstr "轴的字体大å°" #: ../include/global_settings.php:805 #: ../include/global_settings.php:2004 msgid "The size of the font used for Graph Axis" msgstr "Graph 轴使用的字体的大å°" #: ../include/global_settings.php:812 msgid "Axis Font Setting" msgstr "轴的字体设置" #: ../include/global_settings.php:813 msgid "The font to use for Graph Axis items. Enter either a valid True Type Font file or valid Pango font-config value." msgstr "用于Graph Axis项目的字体。 输入有效的True Type字体文件或有效的Pango font-config值。" #: ../include/global_settings.php:819 #: ../include/global_settings.php:2016 msgid "Unit Font Size" msgstr "å•ä½å­—体大å°" #: ../include/global_settings.php:820 #: ../include/global_settings.php:2017 msgid "The size of the font used for Graph Units" msgstr "用于图形å•ä½çš„字体的大å°" #: ../include/global_settings.php:827 msgid "Unit Font Setting" msgstr "å•ä½å­—体设置" #: ../include/global_settings.php:828 msgid "The font to use for Graph Unit items. Enter either a valid True Type Font file or valid Pango font-config value." msgstr "用于Graph Unit项目的字体。 输入有效的True Type字体文件或有效的Pango font-config值。" #: ../include/global_settings.php:841 msgid "Data Collection Enabled" msgstr "æ•°æ®æ”¶é›†å·²å¯ç”¨" #: ../include/global_settings.php:842 msgid "If you wish to stop the polling process completely, uncheck this box." msgstr "å¦‚æžœæ‚¨å¸Œæœ›å®Œå…¨åœæ­¢è½®è¯¢è¿‡ç¨‹ï¼Œè¯·å–消选中此框。" #: ../include/global_settings.php:848 msgid "Poller Type" msgstr "轮询类型" #: ../include/global_settings.php:849 msgid "The poller type to use. This setting will take effect at next polling interval." msgstr "è¦ä½¿ç”¨çš„轮询器类型。 此设置将在下一个轮询间隔生效。" #: ../include/global_settings.php:856 msgid "" "The polling interval in use. This setting will effect how often RRDfiles are checked and updated.\n" "\t\t\tNOTE: If you change this value, you must re-populate the poller cache. Failure to do so, may result in lost data." msgstr "" "正在使用的轮询间隔。 此设置将影å“RRD文件检查和更新的频率。\n" "\t\t\t注æ„ï¼šå¦‚æžœæ›´æ”¹æ­¤å€¼ï¼Œåˆ™å¿…é¡»é‡æ–°å¡«å……轮询缓存。 如果ä¸è¿™æ ·åšï¼Œå¯èƒ½ä¼šå¯¼è‡´æ•°æ®ä¸¢å¤±" #: ../include/global_settings.php:863 msgid "Cron Interval" msgstr "Croné—´éš”" #: ../include/global_settings.php:864 msgid "The cron interval in use. You need to set this setting to the interval that your cron or scheduled task is currently running." msgstr "正在使用的cron间隔。 您需è¦å°†æ­¤è®¾ç½®è®¾ç½®ä¸ºæ‚¨çš„cronæˆ–è®¡åˆ’ä»»åŠ¡å½“å‰æ­£åœ¨è¿è¡Œçš„æ—¶é—´é—´éš”。" #: ../include/global_settings.php:870 msgid "Maximum Concurrent Poller Processes" msgstr "最大并å‘轮询过程" #: ../include/global_settings.php:871 msgid "The number of concurrent processes to execute. Using a higher number when using cmd.php will improve performance. Performance improvements in spine are best resolved with the threads parameter" msgstr "è¦æ‰§è¡Œçš„å¹¶å‘进程数。 使用cmd.php时使用更高的数字å¯ä»¥æé«˜æ€§èƒ½ã€‚ ä½¿ç”¨çº¿ç¨‹å‚æ•°å¯ä»¥æœ€å¥½åœ°è§£å†³è„ŠæŸ±çš„æ€§èƒ½æ”¹è¿›é—®é¢˜" #: ../include/global_settings.php:878 msgid "Balance Process Load" msgstr "平衡过程负è·" #: ../include/global_settings.php:879 msgid "If you choose this option, Cacti will attempt to balance the load of each poller process by equally distributing poller items per process." msgstr "如果您选择此选项,则Cactiå°†å°è¯•通过平å‡åˆ†é…æ¯ä¸ªè¿›ç¨‹çš„轮询器项目æ¥å¹³è¡¡æ¯ä¸ªè½®è¯¢å™¨è¿›ç¨‹çš„负载。" #: ../include/global_settings.php:884 msgid "Disable increasing OID Check" msgstr "ç¦ç”¨å¢žåŠ çš„OID检查" #: ../include/global_settings.php:885 msgid "Controls disabling check for increasing OID while walking OID tree." msgstr "控制在行走OIDæ ‘æ—¶ç¦ç”¨å¢žåŠ OID的检查。" #: /var/www/html/cacti/include/global_settings.php:951 msgid "SNMP Bulkwalk Fetch Size" msgstr "SNMP Bulkwalk抓å–大å°" #: /var/www/html/cacti/include/global_settings.php:952 msgid "How many OID's should be returned per snmpbulkwalk request? For Devices with large SNMP trees, increasing this size will increase re-index performance over a WAN." msgstr "æ¯ä¸ªsnmpbulkwalk请求应该返回多少个OID? 对于具有大型SNMP树的设备,增大此大å°å°†å¢žåŠ WANä¸Šçš„é‡æ–°ç´¢å¼•性能。" #: ../include/global_settings.php:890 msgid "Spine Specific Execution Parameters" msgstr "Spineç‰¹å®šæ‰§è¡Œå‚æ•°" #: ../include/global_settings.php:895 msgid "Invalid Data Logging" msgstr "无效的数æ®è®°å½•" #: ../include/global_settings.php:896 msgid "How would you like Spine output errors logged? The options are: 'Detailed' which is similar to cmd.php logging; 'Summary' which provides the number of output errors per host; and 'None', which does not provide error counts." msgstr "你想如何记录Spine输出错误? 选项是:'详细',类似于cmd.php日志记录; æä¾›æ¯å°ä¸»æœºè¾“出错误数é‡çš„“摘è¦â€ 和“无â€ï¼Œä¸æä¾›é”™è¯¯è®¡æ•°ã€‚" #: ../include/global_settings.php:901 #: ../utilities.php:193 msgid "Summary" msgstr "概è¦" #: ../include/global_settings.php:902 msgid "Detailed" msgstr "详细" #: ../include/global_settings.php:906 msgid "Maximum Threads per Process" msgstr "æ¯ä¸ªè¿›ç¨‹çš„æœ€å¤§çº¿ç¨‹æ•°" #: ../include/global_settings.php:907 msgid "The maximum threads allowed per process. Using a higher number when using Spine will improve performance." msgstr "æ¯ä¸ªè¿›ç¨‹å…许的最大线程数。 使用Spine时使用更高的数字å¯ä»¥æé«˜æ€§èƒ½ã€‚" #: ../include/global_settings.php:914 msgid "Number of PHP Script Servers" msgstr "Number of PHP Script Servers" #: ../include/global_settings.php:915 msgid "The number of concurrent script server processes to run per Spine process. Settings between 1 and 10 are accepted. This parameter will help if you are running several threads and script server scripts." msgstr "æ¯ä¸ªSpine进程è¿è¡Œçš„å¹¶å‘脚本æœåŠ¡å™¨è¿›ç¨‹çš„æ•°é‡ã€‚ 1å’Œ10之间的设置被接å—。 如果您正在è¿è¡Œå¤šä¸ªçº¿ç¨‹å’Œè„šæœ¬æœåŠ¡å™¨è„šæœ¬ï¼Œæ­¤å‚æ•°å°†æœ‰æ‰€å¸®åŠ©ã€‚" #: ../include/global_settings.php:922 msgid "Script and Script Server Timeout Value" msgstr "脚本和脚本æœåŠ¡å™¨è¶…æ—¶å€¼" #: ../include/global_settings.php:923 msgid "The maximum time that Cacti will wait on a script to complete. This timeout value is in seconds" msgstr "Cacti将等待脚本完æˆçš„æœ€é•¿æ—¶é—´ã€‚ 此超时值以秒为å•ä½" #: ../include/global_settings.php:930 msgid "The Maximum SNMP OIDs Per SNMP Get Request" msgstr "æ¯ä¸ªSNMP获å–请求的最大SNMP OIDæ•°" #: ../include/global_settings.php:931 msgid "The maximum number of SNMP get OIDs to issue per snmpbulkwalk request. Increasing this value speeds poller performance over slow links. The maximum value is 100 OIDs. Decreasing this value to 0 or 1 will disable snmpbulkwalk" msgstr "SNMP的最大数é‡èŽ·å¾—æ¯ä¸ªsnmpbulkwalk请求å‘出的OID。 增加此值å¯ä»¥åŠ å¿«æ…¢é€Ÿé“¾æŽ¥ä¸Šçš„è½®è¯¢å™¨æ€§èƒ½ã€‚ 最大值是100个OID。 将此值å‡å°åˆ°0或1å°†ç¦ç”¨snmpbulkwalk" #: ../include/global_settings.php:945 msgid "Authentication Method" msgstr "è®¤è¯æ–¹æ³•" #: ../include/global_settings.php:946 msgid "
    None - No authentication will be used, all users will have full access.

    Built-in Authentication - Cacti handles user authentication, which allows you to create users and give them rights to different areas within Cacti.

    Web Basic Authentication - Authentication is handled by the web server. Users can be added or created automatically on first login if the Template User is defined, otherwise the defined guest permissions will be used.

    LDAP Authentication - Allows for authentication against a LDAP server. Users will be created automatically on first login if the Template User is defined, otherwise the defined guest permissions will be used. If PHPs LDAP module is not enabled, LDAP Authentication will not appear as a selectable option.

    Multiple LDAP/AD Domain Authentication - Allows administrators to support multiple disparate groups from different LDAP/AD directories to access Cacti resources. Just as LDAP Authentication, the PHP LDAP module is required to utilize this method.
    " msgstr "
    æ—  - ä¸ä½¿ç”¨èº«ä»½éªŒè¯ï¼Œæ‰€æœ‰ç”¨æˆ·å°†æ‹¥æœ‰å®Œå…¨è®¿é—®æƒé™ã€‚

    å†…ç½®èº«ä»½éªŒè¯ - Cacti处ç†ç”¨æˆ·èº«ä»½éªŒè¯ï¼Œæ‚¨åˆ›å»ºç”¨æˆ·å¹¶å°†æƒé™æŽˆäºˆCacti中的ä¸åŒåŒºåŸŸã€‚

    WebåŸºç¡€è®¤è¯ - 认è¯ç”±WebæœåС噍处ç†ã€‚如果定义了模æ¿ç”¨æˆ·ï¼Œåˆ™å¯ä»¥åœ¨é¦–次登录时自动添加或创建用户,å¦åˆ™å°†ä½¿ç”¨å®šä¹‰çš„访客æƒé™ã€‚

    LDAPè®¤è¯ - å…许针对LDAPæœåŠ¡å™¨è¿›è¡Œè®¤è¯ã€‚如果定义了模æ¿ç”¨æˆ·ï¼Œå°†åœ¨ç¬¬ä¸€æ¬¡ç™»å½•时自动创建用户,å¦åˆ™å°†ä½¿ç”¨å®šä¹‰çš„访客æƒé™ã€‚如果未å¯ç”¨PHP LDAP模å—,则LDAP身份验è¯å°†ä¸ä¼šæ˜¾ç¤ºä¸ºå¯é€‰é€‰é¡¹ã€‚

    多个LDAP / ADåŸŸèº«ä»½éªŒè¯ - å…许管ç†å‘˜æ”¯æŒæ¥è‡ªä¸åŒLDAP / AD的多个ä¸åŒç»„目录æ¥è®¿é—®Cacti资æºã€‚正如LDAP身份验è¯ä¸€æ ·ï¼ŒPHP LDAP模å—也需è¦ä½¿ç”¨æ­¤æ–¹æ³•。
    " #: ../include/global_settings.php:952 msgid "Support Authentication Cookies" msgstr "支æŒèº«ä»½éªŒè¯Cookieè¯" #: ../include/global_settings.php:953 msgid "If a user authenticates and selects 'Keep me signed in', an authentication cookie will be created on the user's computer allowing that user to stay logged in. The authentication cookie expires after 90 days of non-use." msgstr "如果用户进行身份验è¯å¹¶é€‰æ‹©â€œä¿æŒæˆ‘的登录状æ€â€ï¼Œåˆ™ä¼šåœ¨ç”¨æˆ·çš„计算机上创建一个身份验è¯Cookie,以å…è®¸è¯¥ç”¨æˆ·ä¿æŒç™»å½•状æ€ã€‚身份验è¯Cookie在90天ä¸ä½¿ç”¨åŽå³å¤±æ•ˆã€‚" #: ../include/global_settings.php:958 msgid "Special Users" msgstr "特殊用户" #: ../include/global_settings.php:963 msgid "Guest User" msgstr "æ¥å®¾ç”¨æˆ·" #: ../include/global_settings.php:964 msgid "The name of the guest user for viewing graphs; is 'No User' by default." msgstr "访客用户查看图表的åç§°; 默认情况下是 'No User'。" #: ../include/global_settings.php:966 #: ../include/global_settings.php:974 #: ../user_domains.php:335 msgid "No User" msgstr "没有用户" #: ../include/global_settings.php:971 #: ../user_domains.php:331 msgid "User Template" msgstr "用户模æ¿" #: /var/www/html/cacti/include/global_settings.php:1052 msgid "The name of the user that Cacti will use as a template for new Web Basic and LDAP users; is 'guest' by default." msgstr "Cacti将用作新Web Basicå’ŒLDAP用户的模æ¿çš„用户åç§°; 默认为'guest'。" #: ../include/global_settings.php:979 msgid "Local Account Complexity Requirements" msgstr "æœ¬åœ°è´¦æˆ·çš„å¤æ‚æ€§è¦æ±‚" #: ../include/global_settings.php:984 msgid "Minimum Length" msgstr "最å°é•¿åº¦" #: ../include/global_settings.php:985 msgid "This is minimal length of allowed passwords." msgstr "这是å…许的密ç çš„æœ€å°é•¿åº¦ã€‚" #: ../include/global_settings.php:992 msgid "Require Mix Case" msgstr "éœ€è¦æ··åˆæ¡ˆä¾‹" #: ../include/global_settings.php:993 msgid "This will require new passwords to contains both lower and upper-case characters." msgstr "è¿™å°†è¦æ±‚新密ç åŒ…å«å°å†™å’Œå¤§å†™å­—符。" #: ../include/global_settings.php:998 msgid "Require Number" msgstr "需è¦å·ç " #: ../include/global_settings.php:999 msgid "This will require new passwords to contain at least 1 numerical character." msgstr "è¿™å°†éœ€è¦æ–°çš„密ç è‡³å°‘包å«1个数字字符。" #: ../include/global_settings.php:1004 msgid "Require Special Character" msgstr "需è¦ç‰¹æ®Šçš„字符" #: ../include/global_settings.php:1005 msgid "This will require new passwords to contain at least 1 special character." msgstr "è¿™å°†éœ€è¦æ–°çš„密ç è‡³å°‘包å«ä¸€ä¸ªç‰¹æ®Šå­—符。" #: ../include/global_settings.php:1010 msgid "Force Complexity Upon Old Passwords" msgstr "强制旧密ç çš„夿‚性" #: ../include/global_settings.php:1011 msgid "This will require all old passwords to also meet the new complexity requirements upon login. If not met, it will force a password change." msgstr "è¿™å°†è¦æ±‚所有旧密ç åœ¨ç™»å½•æ—¶ä¹Ÿç¬¦åˆæ–°çš„夿‚æ€§è¦æ±‚。 如果ä¸ç¬¦åˆï¼Œå°†å¼ºåˆ¶æ›´æ”¹å¯†ç ã€‚" #: ../include/global_settings.php:1016 msgid "Expire Inactive Accounts" msgstr "è¿‡æœŸä¸æ´»è·ƒçš„叿ˆ·" #: ../include/global_settings.php:1017 msgid "This is maximum number of days before inactive accounts are disabled. The Admin account is excluded from this policy." msgstr "这是åœç”¨éžæ´»åЍ叿ˆ·å‰çš„æœ€é•¿å¤©æ•°ã€‚ 管ç†å‘˜å¸æˆ·è¢«æŽ’除在此政策之外。" #: ../include/global_settings.php:1030 msgid "Expire Password" msgstr "到期密ç " #: ../include/global_settings.php:1031 msgid "This is maximum number of days before a password is set to expire." msgstr "密ç è®¾ç½®ä¸ºè¿‡æœŸä¹‹å‰çš„æœ€é•¿å¤©æ•°ã€‚" #: ../include/global_settings.php:1042 msgid "Password History" msgstr "历å²å¯†ç " #: ../include/global_settings.php:1043 msgid "Remember this number of old passwords and disallow re-using them." msgstr "è®°ä½è¿™ä¸ªæ—§å¯†ç çš„æ•°é‡ï¼Œä¸å…è®¸é‡æ–°ä½¿ç”¨å®ƒä»¬ã€‚" #: ../include/global_settings.php:1048 msgid "1 Change" msgstr "1 更改" #: ../include/global_settings.php:1049 #: ../include/global_settings.php:1050 #: ../include/global_settings.php:1051 #: ../include/global_settings.php:1052 #: ../include/global_settings.php:1053 #: ../include/global_settings.php:1054 #: ../include/global_settings.php:1055 #: ../include/global_settings.php:1056 #: ../include/global_settings.php:1057 #: ../include/global_settings.php:1058 #: ../include/global_settings.php:1059 #, php-format msgid "%d Changes" msgstr "%d å˜åŒ–" #: ../include/global_settings.php:1062 msgid "Account Locking" msgstr "叿ˆ·é”定" #: ../include/global_settings.php:1067 msgid "Lock Accounts" msgstr "é”å®šå¸æˆ·" #: ../include/global_settings.php:1068 msgid "Lock an account after this many failed attempts in 1 hour." msgstr "在1å°æ—¶å†…å°è¯•多次失败åŽé”å®šä¸€ä¸ªå¸æˆ·ã€‚" #: ../include/global_settings.php:1073 msgid "1 Attempt" msgstr "1å°è¯•" #: ../include/global_settings.php:1074 #: ../include/global_settings.php:1075 #: ../include/global_settings.php:1076 #: ../include/global_settings.php:1077 #: ../include/global_settings.php:1078 #, php-format msgid "%d Attempts" msgstr "%d å°è¯•" #: ../include/global_settings.php:1081 msgid "Auto Unlock" msgstr "自动解é”" #: ../include/global_settings.php:1082 msgid "An account will automatically be unlocked after this many minutes. Even if the correct password is entered, the account will not unlock until this time limit has been met. Max of 1440 minutes (1 Day)" msgstr "在这么多分钟åŽï¼Œå¸æˆ·å°†è‡ªåŠ¨è§£é”。 å³ä½¿è¾“入了正确的密ç ï¼Œè¯¥å¸æˆ·ä¹Ÿä¸ä¼šè§£é”,直到达到这个时间é™åˆ¶ã€‚ 最大1440分钟(1天)" #: ../include/global_arrays.php:534 #: ../include/global_settings.php:1098 msgid "1 Day" msgstr "1 天" #: ../include/global_settings.php:1101 msgid "LDAP General Settings" msgstr "LDAP 一般设定" #: ../include/global_settings.php:1105 #: ../user_domains.php:358 msgid "Server" msgstr "サーãƒãƒ¼" #: ../include/global_settings.php:1106 msgid "The DNS hostname or IP address of the server." msgstr "æœåŠ¡å™¨çš„DNSä¸»æœºåæˆ–IP地å€ã€‚" #: ../include/global_settings.php:1111 #: ../user_domains.php:366 msgid "Port Standard" msgstr "ç«¯å£æ ‡å‡†" #: ../include/global_settings.php:1112 msgid "TCP/UDP port for Non-SSL communications." msgstr "用于éžSSL通信的TCP / UDP端å£ã€‚" #: ../include/global_settings.php:1119 #: ../user_domains.php:375 msgid "Port SSL" msgstr "SSL 端å£" #: ../include/global_settings.php:1120 #: ../user_domains.php:376 msgid "TCP/UDP port for SSL communications." msgstr "TCP/UDP port for SSL communications." #: ../include/global_settings.php:1127 #: ../user_domains.php:384 msgid "Protocol Version" msgstr "å议版本" #: ../include/global_settings.php:1128 #: ../user_domains.php:385 msgid "Protocol Version that the server supports." msgstr "å议版本的æœåŠ¡å™¨æ”¯æŒã€‚" #: ../include/global_settings.php:1134 #: ../user_domains.php:391 msgid "Encryption" msgstr "加密" #: ../include/global_settings.php:1135 #: ../user_domains.php:392 msgid "Encryption that the server supports. TLS is only supported by Protocol Version 3." msgstr "æœåŠ¡å™¨æ”¯æŒçš„加密。 TLSä»…å—å议版本3的支æŒã€‚" #: ../include/global_settings.php:1141 #: ../user_domains.php:398 msgid "Referrals" msgstr "Referrals" #: ../include/global_settings.php:1142 #: ../user_domains.php:399 msgid "Enable or Disable LDAP referrals. If disabled, it may increase the speed of searches." msgstr "å¯ç”¨æˆ–ç¦ç”¨LDAP引è。 如果ç¦ç”¨ï¼Œå¯èƒ½ä¼šå¢žåŠ æœç´¢é€Ÿåº¦ã€‚" #: ../include/global_settings.php:1148 #: ../user_domains.php:405 msgid "Mode" msgstr "模å¼" #: ../include/global_settings.php:1149 msgid "Mode which cacti will attempt to authenticate against the LDAP server.
    No Searching - No Distinguished Name (DN) searching occurs, just attempt to bind with the provided Distinguished Name (DN) format.

    Anonymous Searching - Attempts to search for username against LDAP directory via anonymous binding to locate the user's Distinguished Name (DN).

    Specific Searching - Attempts search for username against LDAP directory via Specific Distinguished Name (DN) and Specific Password for binding to locate the user's Distinguished Name (DN)." msgstr "模å¼ï¼šcactiå°†å°è¯•对LDAPæœåŠ¡å™¨è¿›è¡Œèº«ä»½éªŒè¯ã€‚
    䏿œç´¢ 没有å¯åˆ†è¾¨å称(DN)æœç´¢ï¼Œåªæ˜¯å°è¯•使用æä¾›çš„专有å称(DN)格å¼è¿›è¡Œç»‘定。

    åŒ¿åæœç´¢- å°è¯•通过匿å绑定æœç´¢LDAP目录的用户å以找到用户的专有å称(DN)。

    特定æœç´¢ - å°è¯•通过特定专有å称(DNï¼‰å’Œç‰¹å®šå¯†ç æœç´¢LDAP目录的用户å以进行绑定以找到用户的专有å称(DN)。" #: ../include/global_settings.php:1155 #: ../user_domains.php:412 msgid "Distinguished Name (DN)" msgstr "å¯åˆ†è¾¨å称(DN)" #: ../include/global_settings.php:1156 #: ../user_domains.php:413 msgid "Distinguished Name syntax, such as for windows: \"<username>@win2kdomain.local\" or for OpenLDAP: \"uid=<username>,ou=people,dc=domain,dc=local\". \"<username>\" is replaced with the username that was supplied at the login prompt. This is only used when in \"No Searching\" mode." msgstr "å¯åˆ†è¾¨å称语法,例如windows: \"<username>@win2kdomain.local\"或OpenLDAP \"uid=<username>,ou=people,dc=domain,dc=local\". \"<username>\" 被在登录æç¤ºç¬¦å¤„æä¾›çš„ç”¨æˆ·åæ›¿æ¢ã€‚ è¿™ä»…åœ¨â€œä¸æœç´¢â€æ¨¡å¼ä¸‹ä½¿ç”¨ã€‚" #: ../include/global_settings.php:1161 #: ../user_domains.php:419 msgid "Require Group Membership" msgstr "需求æˆå‘˜" #: ../include/global_settings.php:1162 #: ../user_domains.php:420 msgid "Require user to be member of group to authenticate. Group settings must be set for this to work, enabling without proper group settings will cause authentication failure." msgstr "è¦æ±‚用户æˆä¸ºç»„çš„æˆå‘˜è¿›è¡Œèº«ä»½éªŒè¯ã€‚ 组设置必须设置为这个工作,å¯ç”¨æ²¡æœ‰é€‚当的组设置将导致身份验è¯å¤±è´¥ã€‚" #: ../include/global_settings.php:1167 #: ../user_domains.php:425 msgid "LDAP Group Settings" msgstr "LDAP 组设定" #: ../include/global_settings.php:1171 #: ../user_domains.php:429 msgid "Group Distinguished Name (DN)" msgstr "组å¯åˆ†è¾¨å称(DN)" #: ../include/global_settings.php:1172 #: ../user_domains.php:430 msgid "Distinguished Name of the group that user must have membership." msgstr "用户必须具有æˆå‘˜èµ„格的组的å¯åˆ†è¾¨å称。" #: ../include/global_settings.php:1177 #: ../user_domains.php:436 msgid "Group Member Attribute" msgstr "组æˆå‘˜å±žæ€§" #: ../include/global_settings.php:1178 #: ../user_domains.php:437 msgid "Name of the attribute that contains the usernames of the members." msgstr "åŒ…å«æˆå‘˜ç”¨æˆ·å的属性å称。" #: ../include/global_settings.php:1183 #: ../user_domains.php:443 msgid "Group Member Type" msgstr "组æˆå‘˜ç±»åž‹" #: ../include/global_settings.php:1184 #: ../user_domains.php:444 msgid "Defines if users use full Distinguished Name or just Username in the defined Group Member Attribute." msgstr "定义用户是å¦åœ¨å®šä¹‰çš„组æˆå‘˜å±žæ€§ä¸­ä½¿ç”¨å®Œæ•´ä¸“有å称或用户å。" #: ../include/global_settings.php:1187 msgid "Distinguished Name" msgstr "专有åç§°" #: ../include/global_settings.php:1190 #: ../user_domains.php:450 msgid "LDAP Specific Search Settings" msgstr "LDAP 具体的æœç´¢è®¾ç½®" #: ../include/global_settings.php:1194 #: ../user_domains.php:454 msgid "Search Base" msgstr "æœç´¢åŸºç¡€" #: ../include/global_settings.php:1195 msgid "Search base for searching the LDAP directory, such as 'dc=win2kdomain,dc=local' or 'ou=people,dc=domain,dc=local'." msgstr "用于æœç´¢LDAP目录的æœç´¢åº“,如 'dc=win2kdomain,dc=local' 或 'ou=people,dc=domain,dc=local'." #: ../include/global_settings.php:1200 #: ../user_domains.php:461 msgid "Search Filter" msgstr "æœç´¢è¿‡æ»¤å™¨" #: ../include/global_settings.php:1201 msgid "Search filter to use to locate the user in the LDAP directory, such as for windows: '(&(objectclass=user)(objectcategory=user)(userPrincipalName=<username>*))' or for OpenLDAP: '(&(objectClass=account)(uid=<username>))'. '<username>' is replaced with the username that was supplied at the login prompt. " msgstr "用于在LDAP目录中找到用户的æœç´¢è¿‡æ»¤å™¨ï¼Œä¾‹å¦‚用于Windows的: '(&(objectclass=user)(objectcategory=user)(userPrincipalName=<username>*))' 或者用于OpenLDAP: '(&(objectClass=account)(uid=<username>))'. '<用户å>' 被在登录æç¤ºç¬¦å¤„æä¾›çš„ç”¨æˆ·åæ›¿æ¢ã€‚" #: ../include/global_settings.php:1206 #: ../user_domains.php:468 msgid "Search Distinguished Name (DN)" msgstr "æœç´¢ä¸“有å称(DN)" #: ../include/global_settings.php:1207 #: ../user_domains.php:469 msgid "Distinguished Name for Specific Searching binding to the LDAP directory." msgstr "特定æœç´¢çš„å¯åˆ†è¾¨å称绑定到LDAP目录。" #: ../include/global_settings.php:1212 #: ../user_domains.php:475 msgid "Search Password" msgstr "查询密ç " #: ../include/global_settings.php:1213 #: ../user_domains.php:476 msgid "Password for Specific Searching binding to the LDAP directory." msgstr "特定æœç´¢çš„密ç ç»‘定到LDAP目录。" #: ../include/global_settings.php:1220 msgid "URL Linking" msgstr "URL链接" #: ../include/global_settings.php:1225 msgid "Server Base URL" msgstr "æœåŠ¡å™¨æ ¹URL" #: ../include/global_settings.php:1226 msgid "This is a the server location that will be used for links to the Cacti site." msgstr "这是一个æœåС噍ä½ç½®ï¼Œå°†ç”¨äºŽé“¾æŽ¥åˆ°Cacti网站。" #: ../include/global_settings.php:1233 msgid "Emailing Options
    Send a Test Email
    " msgstr "电å­é‚®ä»¶é€‰é¡¹
    å‘逿µ‹è¯•电å­é‚®ä»¶
    " #: ../include/global_settings.php:1237 msgid "Test Email" msgstr "测试邮件" #: ../include/global_settings.php:1238 msgid "This is a Email account used for sending a test message to ensure everything is working properly." msgstr "这是一个电å­é‚®ä»¶å¸æˆ·ç”¨äºŽå‘逿µ‹è¯•消æ¯ï¼Œä»¥ç¡®ä¿ä¸€åˆ‡å·¥ä½œæ­£å¸¸ã€‚" #: ../include/global_settings.php:1243 msgid "Mail Services" msgstr "邮件æœåŠ¡" #: ../include/global_settings.php:1244 msgid "Which mail service to use in order to send mail" msgstr "使用哪ç§é‚®ä»¶æœåŠ¡å‘é€é‚®ä»¶" #: ../include/global_settings.php:1246 #: ../include/global_settings.php:1247 msgid "PHP Mail() Function" msgstr "PHP Mail() 函数" #: ../include/global_settings.php:1247 #: ../lib/functions.php:3788 msgid "SMTP" msgstr "SMTP" #: ../include/global_settings.php:1247 #: ../lib/functions.php:3783 msgid "Sendmail" msgstr "Sendmail" #: ../include/global_settings.php:1250 msgid "Ping Mail Server" msgstr "Ping邮件æœåС噍" #: ../include/global_settings.php:1251 msgid "Ping the Mail Server before sending test Email?" msgstr "在å‘逿µ‹è¯•电å­é‚®ä»¶ä¹‹å‰Ping邮件æœåŠ¡å™¨ï¼Ÿ" #: ../include/global_settings.php:1257 #: ../lib/html_reports.php:186 msgid "From Email Address" msgstr "æ¥æºç”µå­é‚®ä»¶åœ°å€" #: ../include/global_settings.php:1258 msgid "This is the Email address that the Email will appear from." msgstr "这是电å­é‚®ä»¶å°†æ˜¾ç¤ºçš„电å­é‚®ä»¶åœ°å€ã€‚" #: ../include/global_settings.php:1263 #: ../lib/html_reports.php:178 msgid "From Name" msgstr "æ¥æºåå­—" #: ../include/global_settings.php:1264 msgid "This is the actual name that the Email will appear from." msgstr "这是电å­é‚®ä»¶å°†æ˜¾ç¤ºçš„实际å称。" #: ../include/global_settings.php:1269 msgid "Word Wrap" msgstr "å•è¯åŒ…装" #: ../include/global_settings.php:1270 msgid "This is how many characters will be allowed before a line in the Email is automatically word wrapped. (0 = Disabled)" msgstr "这是在电å­é‚®ä»¶ä¸­çš„一行被自动æ¢è¡Œä¹‹å‰å…许多少个字符。 (0 =ç¦ç”¨ï¼‰" #: ../include/global_settings.php:1277 msgid "Sendmail Options" msgstr "Sendmail选项" #: ../include/global_settings.php:1282 #: ../lib/functions.php:3783 msgid "Sendmail Path" msgstr "Sendmail路径" #: ../include/global_settings.php:1283 msgid "This is the path to sendmail on your server. (Only used if Sendmail is selected as the Mail Service)" msgstr "这是您的æœåŠ¡å™¨ä¸Šçš„sendmail路径。 (仅在选择Sendmail作为邮件æœåŠ¡æ—¶ä½¿ç”¨ï¼‰" #: ../include/global_settings.php:1289 msgid "SMTP Options" msgstr "SMTP选项" #: ../include/global_settings.php:1294 msgid "SMTP Hostname" msgstr "SMTP主机å" #: ../include/global_settings.php:1295 msgid "This is the hostname/IP of the SMTP Server you will send the Email to. For failover, separate your hosts using a semi-colon." msgstr "这是您将å‘é€ç”µå­é‚®ä»¶åˆ°çš„SMTPæœåŠ¡å™¨çš„ä¸»æœºå/ IP。 对于故障转移,请使用分å·åˆ†éš”主机。" #: ../include/global_settings.php:1301 msgid "SMTP Port" msgstr "SMTP端å£" #: ../include/global_settings.php:1302 msgid "The port on the SMTP Server to use." msgstr "SMTPæœåŠ¡å™¨ä¸Šä½¿ç”¨çš„ç«¯å£ã€‚" #: ../include/global_settings.php:1309 msgid "SMTP Username" msgstr "SMTP用户å" #: ../include/global_settings.php:1310 msgid "The username to authenticate with when sending via SMTP. (Leave blank if you do not require authentication.)" msgstr "通过SMTPå‘逿—¶ç”¨äºŽè¿›è¡Œèº«ä»½éªŒè¯çš„用户å。 (如果您ä¸éœ€è¦éªŒè¯ï¼Œè¯·ç•™ç©ºç™½ã€‚)" #: ../include/global_settings.php:1315 msgid "SMTP Password" msgstr "SMTP密ç " #: ../include/global_settings.php:1316 msgid "The password to authenticate with when sending via SMTP. (Leave blank if you do not require authentication.)" msgstr "通过SMTPå‘逿—¶è¿›è¡Œèº«ä»½éªŒè¯çš„密ç ã€‚ (如果您ä¸éœ€è¦éªŒè¯ï¼Œè¯·ç•™ç©ºç™½ã€‚)" #: ../include/global_settings.php:1321 msgid "SMTP Security" msgstr "SMTP安全" #: ../include/global_settings.php:1322 msgid "The encryption method to use for the Email." msgstr "用于电å­é‚®ä»¶çš„加密方法。" #: ../include/global_settings.php:1328 msgid "SMTP Timeout" msgstr "SMTPè¶…æ—¶" #: ../include/global_settings.php:1329 msgid "Please enter the SMTP timeout in seconds." msgstr "请输入SMTP在几秒钟内超时。" #: ../include/global_settings.php:1336 msgid "Reporting Presets" msgstr "报告预设" #: ../include/global_settings.php:1341 msgid "Default Graph Image Format" msgstr "é»˜è®¤å›¾å½¢å›¾åƒæ ¼å¼" #: ../include/global_settings.php:1342 msgid "When creating a new report, what image type should be used for the inline graphs." msgstr "在创建新报告时,应使用哪ç§å›¾åƒç±»åž‹ä½œä¸ºåµŒå…¥å¼å›¾å½¢ã€‚" #: ../include/global_settings.php:1348 msgid "Maximum E-Mail Size" msgstr "最大电å­é‚®ä»¶å¤§å°" #: ../include/global_settings.php:1349 msgid "The maximum size of the E-Mail message including all attachements." msgstr "电å­é‚®ä»¶çš„æœ€å¤§å¤§å°ï¼ŒåŒ…括所有附件。" #: ../include/global_settings.php:1355 msgid "Poller Logging Level for Cacti Reporting" msgstr "Cacti报告的轮询日志记录级别" #: ../include/global_settings.php:1356 msgid "What level of detail do you want sent to the log file. WARNING: Leaving in any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "你想è¦å‘é€åˆ°æ—¥å¿—文件的细节级别。 è­¦å‘Šï¼šå¦‚æžœå¤„äºŽâ€œæ— â€æˆ–“低â€çжæ€ï¼Œå¯èƒ½ä¼šè¿…速耗尽ç£ç›˜ç©ºé—´ã€‚" #: ../include/global_settings.php:1362 msgid "Enable Lotus Notes (R) tweak" msgstr "å¯ç”¨Lotus Notes调整" #: ../include/global_settings.php:1363 msgid "Enable code tweak for specific handling of Lotus Notes Mail Clients." msgstr "å¯ç”¨ä»£ç è°ƒæ•´ï¼Œä¸ºè¿›è¡Œç‰¹å®šçš„Lotus Notes邮件客户端处ç†ã€‚" #: ../include/global_settings.php:1368 msgid "DNS Options" msgstr "DNS选项" #: ../include/global_settings.php:1373 msgid "Primary DNS IP Address" msgstr "主DNSçš„IP地å€" #: ../include/global_settings.php:1374 msgid "Enter the primary DNS IP Address to utilize for reverse lookups." msgstr "输入用于å呿Ÿ¥æ‰¾çš„主è¦DNS IP地å€ã€‚" #: ../include/global_settings.php:1380 msgid "Secondary DNS IP Address" msgstr "备用DNS IP地å€" #: ../include/global_settings.php:1381 msgid "Enter the secondary DNS IP Address to utilize for reverse lookups." msgstr "输入辅助DNS IP地å€ä»¥ç”¨äºŽå呿Ÿ¥æ‰¾ã€‚" #: ../include/global_settings.php:1387 msgid "DNS Timeout" msgstr "DNSè¶…æ—¶" #: ../include/global_settings.php:1388 msgid "Please enter the DNS timeout in milliseconds. Cacti uses a PHP based DNS resolver." msgstr "请输入以毫秒为å•ä½çš„DNS超时。 Cacti使用基于PHPçš„DNSè§£æžå™¨ã€‚" #: ../include/global_settings.php:1397 msgid "Data Sources Statistics" msgstr "æ•°æ®æ¥æºç»Ÿè®¡" #: ../include/global_settings.php:1402 msgid "Enable Data Source Statistics Collection" msgstr "å¯ç”¨æ•°æ®æºç»Ÿè®¡ä¿¡æ¯æ”¶é›†" #: ../include/global_settings.php:1403 msgid "Should Data Source Statistics be collected for this Cacti system?" msgstr "应该收集这个Cactiç³»ç»Ÿçš„æ•°æ®æºç»Ÿè®¡æ•°æ®å—?" #: ../include/global_settings.php:1408 msgid "Daily Update Frequency" msgstr "æ¯æ—¥æ›´æ–°é¢‘率" #: ../include/global_settings.php:1409 msgid "How frequent should Daily Stats be updated?" msgstr "æ¯æ—¥ç»Ÿè®¡åº”该多频ç¹ä¸€æ¬¡æ›´æ–°ï¼Ÿ" #: ../include/global_settings.php:1415 msgid "Hourly Average Window" msgstr "å°æ—¶å¹³å‡çª—å£" #: /var/www/html/cacti/include/global_settings.php:1496 msgid "The number of consecutive hours that represent the hourly average. Keep in mind that a setting too high can result in very large memory tables" msgstr "ä»£è¡¨å°æ—¶å¹³å‡æ•°çš„è¿žç»­å°æ—¶æ•°ã€‚ 请记ä½ï¼Œè®¾ç½®è¿‡é«˜å¯èƒ½ä¼šå¯¼è‡´éžå¸¸å¤§çš„内存表" #: ../include/global_settings.php:1423 msgid "Maintenance Time" msgstr "维护时间" #: ../include/global_settings.php:1424 msgid "What time of day should Weekly, Monthly, and Yearly Data be updated? Format is HH:MM [am/pm]" msgstr "æ¯å‘¨ï¼Œæ¯æœˆå’Œæ¯å¹´çš„æ•°æ®ä¼šåœ¨ä»€ä¹ˆæ—¶é—´æ›´æ–°ï¼Ÿ æ ¼å¼æ˜¯HH:MM [am / pm]" #: ../include/global_settings.php:1431 msgid "Memory Limit for Data Source Statistics Data Collector" msgstr "æ•°æ®æºç»Ÿè®¡æ•°æ®æ”¶é›†å™¨çš„内存é™åˆ¶" #: ../include/global_settings.php:1432 msgid "The maximum amount of memory for the Cacti Poller and Data Source Statistics Poller" msgstr "Cactiè½®è¯¢å™¨å’Œæ•°æ®æºç»Ÿè®¡è½®è¯¢å™¨çš„æœ€å¤§å†…å­˜é‡" #: ../include/global_settings.php:1438 msgid "Debugging" msgstr "调试" #: ../include/global_settings.php:1450 msgid "Enable Partial Reference Data Retrieve" msgstr "å¯ç”¨éƒ¨åˆ†å‚è€ƒæ•°æ®æ£€ç´¢" #: /var/www/html/cacti/include/global_settings.php:1523 msgid "If using a large system, it may be beneficial for you to only gather data as needed during Cacti poller passes. If you check this box, Data Source Statistics will gather data this way." msgstr "如果使用大型系统,在Cacti轮询过程中仅根æ®éœ€è¦æ”¶é›†æ•°æ®å¯èƒ½ä¼šæœ‰æ‰€å¸®åŠ©ã€‚ å¦‚æžœé€‰ä¸­æ­¤æ¡†ï¼Œæ•°æ®æºç»Ÿè®¡å°†ä»¥è¿™ç§æ–¹å¼æ”¶é›†æ•°æ®ã€‚" #: ../include/global_settings.php:1459 msgid "On-demand RRD Update Settings" msgstr "按需RRD更新设置" #: ../include/global_settings.php:1464 msgid "Enable On-demand RRD Updating" msgstr "å¯ç”¨æŒ‰éœ€RRDæ›´æ–°" #: ../include/global_settings.php:1465 msgid "Should Boost enable on demand RRD updating in Cacti? If you disable, this change will not take effect until after the next polling cycle." msgstr "在Cactiå¯ç”¨å¢žå¼ºRRD更新? 如果ç¦ç”¨ï¼Œæ­¤æ›´æ”¹å°†åœ¨ä¸‹ä¸€ä¸ªè½®è¯¢å‘¨æœŸä¹‹åŽæ‰ç”Ÿæ•ˆã€‚" #: ../include/global_settings.php:1470 msgid "System Level RRD Updater" msgstr "系统级RRD更新程åº" #: ../include/global_settings.php:1471 msgid "Before RRD On-demand Update Can be Cleared, a poller run must always pass" msgstr "在RRD按需更新å¯ä»¥æ¸…除之å‰ï¼Œå¿…须始终通过轮询器è¿è¡Œ" #: ../include/global_settings.php:1476 msgid "How Often Should Boost Update All RRDs" msgstr "多久如何增强更新所有RRD" #: ../include/global_settings.php:1477 msgid "When you enable boost, your RRD files are only updated when they are requested by a user, or when this time period elapses." msgstr "å¯ç”¨boostæ—¶ï¼Œåªæœ‰åœ¨ç”¨æˆ·è¯·æ±‚或者ç»è¿‡äº†è¿™æ®µæ—¶é—´åŽï¼Œæ‰ä¼šæ›´æ–°RRD文件。" #: ../include/global_settings.php:1484 msgid "Maximum Records" msgstr "最大记录" #: ../include/global_settings.php:1485 msgid "If the boost output table exceeds this size, in records, an update will take place." msgstr "如果增强输出表超出此大å°ï¼Œåˆ™è®°å½•中将进行更新。" #: ../include/global_settings.php:1492 msgid "Maximum Data Source Items Per Pass" msgstr "æ¯æ¬¡é€šè¿‡çš„æœ€å¤§æ•°æ®æºé¡¹ç›®æ•°" #: /var/www/html/cacti/include/global_settings.php:1564 msgid "To optimize performance, the boost RRD updater needs to know how many Data Source Items should be retrieved in one pass. Please be careful not to set too high as graphing performance during major updates can be compromised. If you encounter graphing or polling slowness during updates, lower this number. The default value is 50000." msgstr "为了优化性能,boost RRD更新程åºéœ€è¦çŸ¥é“åº”è¯¥åœ¨ä¸€æ¬¡ä¼ é€’ä¸­æ£€ç´¢å¤šå°‘ä¸ªæ•°æ®æºé¡¹ç›®ã€‚ 请注æ„ä¸è¦è®¾ç½®å¤ªé«˜ï¼Œå› ä¸ºåœ¨é‡å¤§æ›´æ–°æœŸé—´çš„图形性能å¯èƒ½ä¼šå—到影å“。 如果您在更新期间é‡åˆ°å›¾å½¢æˆ–轮询迟缓,请é™ä½Žæ­¤æ•°å­—。 默认值是50000。" #: ../include/global_settings.php:1502 msgid "Maximum Argument Length" msgstr "æœ€å¤§å‚æ•°é•¿åº¦" #: /var/www/html/cacti/include/global_settings.php:1571 msgid "When boost sends update commands to RRDtool, it must not exceed the operating systems Maximum Argument Length. This varies by operating system and kernel level. For example: Windows 2000 <= 2048, FreeBSD <= 65535, Linux 2.6.22-- <= 131072, Linux 2.6.23++ unlimited" msgstr "当boostå‘RRDtoolå‘逿›´æ–°å‘½ä»¤æ—¶ï¼Œå®ƒä¸èƒ½è¶…过æ“作系统的Maximum Argument Length。 è¿™å–决于æ“作系统和内核级别。 例如:Windows 2000 <= 2048,FreeBSD <= 65535,Linux 2.6.22-- <= 131072,Linux 2.6.23 ++ unlimited" #: ../include/global_settings.php:1512 msgid "Memory Limit for Boost and Poller" msgstr "增强和轮询的内存é™åˆ¶çš„" #: ../include/global_settings.php:1513 msgid "The maximum amount of memory for the Cacti Poller and Boosts Poller" msgstr "Cacti Poller和增强 Poller的最大内存é‡" #: ../include/global_settings.php:1519 msgid "Maximum RRD Update Script Run Time" msgstr "最大RRD更新脚本è¿è¡Œæ—¶é—´" #: /var/www/html/cacti/include/global_settings.php:1586 msgid "The maximum boot poller run time allowed prior to boost issuing warning messages relative to possible hardware/software issues preventing proper updates." msgstr "相对于å¯èƒ½çš„硬件/软件问题,æå‰å‘布警告消æ¯ä¹‹å‰å…许的最大å¯åŠ¨è½®è¯¢å™¨è¿è¡Œæ—¶é—´ï¼Œä»Žè€Œé˜²æ­¢æ­£ç¡®æ›´æ–°ã€‚" #: ../include/global_settings.php:1527 msgid "Enable direct population of poller_output_boost table" msgstr "å¯ç”¨poller_output_boost表的直接填充" #: ../include/global_settings.php:1528 msgid "Enables direct insert of records into poller output boost with results in a 25% time reduction in each poll cycle." msgstr "å…许将记录直接æ’入到轮询器输出增强中,从而使æ¯ä¸ªè½®è¯¢å‘¨æœŸçš„æ—¶é—´ç¼©çŸ­25%。" #: ../include/global_settings.php:1533 #: ../utilities.php:2139 msgid "Image Caching" msgstr "图åƒç¼“å­˜" #: ../include/global_settings.php:1538 msgid "Enable Image Caching" msgstr "å¯ç”¨å›¾åƒç¼“å­˜" #: ../include/global_settings.php:1539 msgid "Should image caching be enabled?" msgstr "应该å¯ç”¨å›¾åƒç¼“å­˜å—?" #: ../include/global_settings.php:1544 msgid "Location for Image Files" msgstr "å›¾åƒæ–‡ä»¶çš„ä½ç½®" #: ../include/global_settings.php:1545 msgid "Specify the location where Boost should place your image files. These files will be automatically purged by the poller when they expire." msgstr "æŒ‡å®šå¢žå¼ºåº”æ”¾ç½®å›¾åƒæ–‡ä»¶çš„ä½ç½®ã€‚ 这些文件在到期时将被轮询器自动清除。" #: ../include/global_settings.php:1551 msgid "Process Interlocking" msgstr "过程è”é”" #: ../include/global_settings.php:1556 msgid "Boost Debug Log" msgstr "增强调试日志" #: ../include/global_settings.php:1557 msgid "If this field is non-blank, Boost will log RRDupdate output from the boost\tpoller process." msgstr "å¦‚æžœæ­¤å­—æ®µä¸æ˜¯ç©ºç™½ï¼Œåˆ™å¢žå¼ºå°†è®°å½•增强\tpoller进程的RRDupdate输出。" #: ../include/global_settings.php:1571 msgid "Choose if RRDs will be stored locally or being handled by an external RRDtool proxy server." msgstr "选择是å¦å°†RRD存储在本地或由外部RRDtoolä»£ç†æœåС噍处ç†ã€‚" #: ../include/global_settings.php:1574 #: ../include/global_settings.php:1582 msgid "RRDtool Proxy Server" msgstr "RRDtoolä»£ç†æœåС噍" #: ../include/global_settings.php:1577 msgid "Structured RRD Path (/host_id/local_data_id.rrd)" msgstr "结构化RRD路径(/host_id/local_data_id.rrd)" #: ../include/global_settings.php:1578 msgid "Use a separate subfolder for each hosts RRD files." msgstr "为æ¯ä¸ªä¸»æœºRRD文件使用一个å•ç‹¬çš„å­æ–‡ä»¶å¤¹ã€‚" #: ../include/global_settings.php:1587 #: ../include/global_settings.php:1619 msgid "Proxy Server" msgstr "ä»£ç†æœåС噍" #: ../include/global_settings.php:1588 msgid "The DNS hostname or IP address of the RRDtool proxy server." msgstr "RRDtoolä»£ç†æœåŠ¡å™¨çš„DNSä¸»æœºåæˆ–IP地å€ã€‚" #: ../include/global_settings.php:1593 #: ../include/global_settings.php:1625 msgid "Proxy Port Number" msgstr "代ç†ç«¯å£å·" #: ../include/global_settings.php:1594 msgid "TCP port for encrypted communication." msgstr "用于加密通信的TCP端å£ã€‚" #: ../include/global_settings.php:1601 #: ../include/global_settings.php:1633 #: ../utilities.php:248 msgid "RSA Fingerprint" msgstr "RSA指纹" #: ../include/global_settings.php:1602 msgid "The fingerprint of the current public RSA key the proxy is using. This is required to establish a trusted connection." msgstr "ä»£ç†æ­£åœ¨ä½¿ç”¨çš„当å‰å…¬å…±RSA密钥的指纹。 这是建立å¯ä¿¡è¿žæŽ¥æ‰€å¿…需的。" #: ../include/global_settings.php:1609 msgid "RRDtool Proxy Server - Backup" msgstr "RRDtoolä»£ç†æœåС噍 - 备份" #: ../include/global_settings.php:1614 msgid "Load Balancing" msgstr "è´Ÿè½½å‡è¡¡" #: ../include/global_settings.php:1615 msgid "If both main and backup proxy are receivable this option allows to spread all requests against RRDtool." msgstr "如果主代ç†å’Œå¤‡ä»½ä»£ç†å‡å¯æŽ¥æ”¶ï¼Œåˆ™æ­¤é€‰é¡¹å…许传播针对RRDtool的所有请求。" #: ../include/global_settings.php:1620 msgid "The DNS hostname or IP address of the RRDtool backup proxy server if proxy is running in MSR mode." msgstr "如果代ç†è¿è¡Œåœ¨MSR模å¼ä¸‹ï¼ŒRRDtoolå¤‡ä»½ä»£ç†æœåŠ¡å™¨çš„DNSä¸»æœºåæˆ–IP地å€ã€‚" #: ../include/global_settings.php:1626 msgid "TCP port for encrypted communication with the backup proxy." msgstr "TCP端å£ç”¨äºŽä¸Žå¤‡ä»½ä»£ç†è¿›è¡ŒåŠ å¯†é€šä¿¡ã€‚" #: ../include/global_settings.php:1634 msgid "The fingerprint of the current public RSA key the backup proxy is using. This required to establish a trusted connection." msgstr "å¤‡ä»½ä»£ç†æ­£åœ¨ä½¿ç”¨çš„当å‰å…¬å…±RSA密钥的指纹。 这需è¦å»ºç«‹ä¸€ä¸ªå¯ä¿¡çš„连接。" #: ../include/global_settings.php:1643 msgid "Spike Kill Settings" msgstr "去除波峰设置" #: ../include/global_settings.php:1648 msgid "Removal Method" msgstr "去除方法" #: /var/www/html/cacti/include/global_settings.php:1714 msgid "There are two removal methods. The first, Standard Deviation, will remove any sample that is X number of standard deviations away from the average of samples. The second method, Variance, will remove any sample that is X% more than the Variance average. The Variance method takes into account a certain number of 'outliers'. Those are exceptional samples, like the spike, that need to be excluded from the Variance Average calculation." msgstr "有两ç§åˆ é™¤æ–¹æ³•。 第一个标准å差将移除è·ç¦»æ ·å“å¹³å‡å€¼X个标准å差的任何样å“。 ç¬¬äºŒç§æ–¹æ³•Variance将删除比方差平å‡å€¼å¤šX%的样本。 方差方法考虑了一定数é‡çš„“异常值â€ã€‚ 这些都是特殊样本,如峰值,需è¦ä»Žæ–¹å·®å¹³å‡å€¼è®¡ç®—中排除。" #: ../include/global_settings.php:1656 msgid "Standard Deviation" msgstr "标准åå·®" #: ../include/global_settings.php:1656 msgid "Variance Based w/Outliers Removed" msgstr "基于差异基于W /异常值删除" #: ../include/global_settings.php:1659 #: ../lib/html.php:1719 msgid "Replacement Method" msgstr "æ›¿æ¢æ–¹æ³•" #: /var/www/html/cacti/include/global_settings.php:1721 msgid "There are three replacement methods. The first method replaces the spike with the the average of the data source in question. The second method replaces the spike with a 'NaN'. The last replaces the spike with the last known good value found." msgstr "æœ‰ä¸‰ç§æ›¿æ¢æ–¹æ³•。 ç¬¬ä¸€ç§æ–¹æ³•ç”¨æ‰€è®¨è®ºçš„æ•°æ®æºçš„å¹³å‡å€¼æ›¿æ¢å³°å€¼ã€‚ ç¬¬äºŒç§æ–¹æ³•是用'NaN'代替尖峰。 最åŽç”¨å·²çŸ¥çš„æœ€åŽä¸€ä¸ªå·²çŸ¥è‰¯å¥½å€¼ä»£æ›¿å³°å€¼ã€‚" #: ../include/global_settings.php:1665 #: ../lib/html.php:1720 msgid "Average" msgstr "å¹³å‡" #: ../include/global_settings.php:1665 #: ../lib/html.php:1722 msgid "Last Known Good" msgstr "最åŽä¸€ä¸ªå¥½çš„" #: ../include/global_settings.php:1665 msgid "NaN's" msgstr "NaN's" #: ../include/global_settings.php:1668 msgid "Number of Standard Deviations" msgstr "标准差的数é‡" #: /var/www/html/cacti/include/global_settings.php:1728 msgid "Any value that is this many standard deviations above the average will be excluded. A good number will be dependent on the type of data to be operated on. We recommend a number no lower than 5 Standard Deviations." msgstr "任何高于平å‡å€¼çš„æ ‡å‡†å·®éƒ½ä¼šè¢«æŽ’除。 一个好的数字将å–å†³äºŽè¦æ“作的数æ®ç±»åž‹ã€‚ 我们推è一个ä¸ä½ŽäºŽ5个标准å差的数字。" #: ../include/global_settings.php:1675 #: ../include/global_settings.php:1676 #: ../include/global_settings.php:1677 #: ../include/global_settings.php:1678 #: ../include/global_settings.php:1679 #: ../include/global_settings.php:1680 #: ../include/global_settings.php:1681 #: ../include/global_settings.php:1682 #: ../include/global_settings.php:1683 #: ../include/global_settings.php:1684 #, php-format msgid "%d Standard Deviations" msgstr "%d 标准åå·®" #: ../include/global_settings.php:1688 #: ../lib/html.php:1731 msgid "Variance Percentage" msgstr "差异百分比" #: /var/www/html/cacti/include/global_settings.php:1746 #, php-format msgid "This value represents the percentage above the adjusted sample average once outliers have been removed from the sample. For example, a Variance Percentage of 100% on an adjusted average of 50 would remove any sample above the quantity of 100 from the graph." msgstr "该值表示一旦从样本中去除异常值åŽï¼Œé«˜äºŽè°ƒæ•´æ ·æœ¬å¹³å‡å€¼çš„百分比。 例如,调整åŽå¹³å‡å€¼ä¸º50的方差百分比为100%将从图表中移除数é‡è¶…过100的样本。" #: ../include/global_settings.php:1710 msgid "Variance Number of Outliers" msgstr "差异离群数é‡" #: /var/www/html/cacti/include/global_settings.php:1766 msgid "This value represents the number of high and low average samples will be removed from the sample set prior to calculating the Variance Average. If you choose an outlier value of 5, then both the top and bottom 5 averages are removed." msgstr "该值表示在计算方差平å‡å€¼ä¹‹å‰å°†ä»Žæ ·æœ¬é›†ä¸­ç§»é™¤çš„é«˜å¹³å‡æ ·æœ¬å’Œä½Žå¹³å‡æ ·æœ¬çš„æ•°é‡ã€‚ 如果选择5的离群值,那么顶部和底部的5å‡å€¼éƒ½å°†è¢«ç§»é™¤ã€‚" #: ../include/global_settings.php:1717 #: ../include/global_settings.php:1718 #: ../include/global_settings.php:1719 #: ../include/global_settings.php:1720 #: ../include/global_settings.php:1721 #: ../include/global_settings.php:1722 #: ../include/global_settings.php:1723 #: ../include/global_settings.php:1724 #, php-format msgid "%d High/Low Samples" msgstr "%d 高/低样例" #: ../include/global_settings.php:1728 msgid "Max Kills Per RRA" msgstr "æ¯ä¸ªRRAçš„æœ€å¤§æ€æ­»æ•°" #: ../include/global_settings.php:1729 msgid "This value represents the maximum number of spikes to remove from a Graph RRA." msgstr "此值表示从图形RRA中删除的最大尖峰数。" #: ../include/global_settings.php:1733 #: ../include/global_settings.php:1734 #: ../include/global_settings.php:1735 #: ../include/global_settings.php:1736 #: ../include/global_settings.php:1737 #: ../include/global_settings.php:1738 #: ../include/global_settings.php:1739 #: ../include/global_settings.php:1740 #, php-format msgid "%d Samples" msgstr "%d æ ·å“" #: ../include/global_settings.php:1744 msgid "RRDfile Backup Directory" msgstr "RRD文件备份目录" #: ../include/global_settings.php:1745 msgid "" "If this directory is not empty, then your original RRDfiles will be backed\n" "\t\t\tup to this location." msgstr "" "å¦‚æžœè¿™ä¸ªç›®å½•ä¸æ˜¯ç©ºçš„,那么你的原始RRD文件将被备份\n" "\t\t\t到这个ä½ç½®." #: ../include/global_settings.php:1753 msgid "Batch Spike Kill Settings" msgstr "批é‡åŽ»æŽ‰å°–å³°è®¾ç½®" #: ../include/global_settings.php:1758 msgid "Removal Schedule" msgstr "去除时间表" #: ../include/global_settings.php:1759 msgid "" "Do you wish to periodically remove spikes from your graphs? If so, select the frequency\n" "\t\t\tbelow." msgstr "" "你是å¦å¸Œæœ›å®šæœŸä»Žå›¾å½¢ä¸­åˆ é™¤å°–峰? 如果是,请选择频率\n" "\t\t\t如下." #: ../include/global_settings.php:1767 msgid "Once a Day" msgstr "一天一次" #: ../include/global_settings.php:1768 msgid "Every Other Day" msgstr "æ¯ä¸ªå¦ä¸€å¤©" #: ../include/global_settings.php:1772 msgid "Base Time" msgstr "基准时间" #: /var/www/html/cacti/include/global_settings.php:1826 msgid "The Base Time for Spike removal to occur. For example, if you use '12:00am' and you choose once per day, the batch removal would begin at approximately midnight every day." msgstr "Spike删除的基准时间å‘生。 例如,如果您使用'12:00am'并且æ¯å¤©é€‰æ‹©ä¸€æ¬¡ï¼Œåˆ™æ‰¹é‡ç§»é™¤å°†åœ¨æ¯å¤©å¤§çº¦åˆå¤œå¼€å§‹ã€‚" #: ../include/global_settings.php:1781 msgid "Graph Templates to Spike Kill" msgstr "图形模æ¿è‡³å°–æ³¢æ€" #: ../include/global_settings.php:1783 msgid "When performing batch spike removal, only the templates selected below will be acted on." msgstr "åœ¨æ‰§è¡Œæ‰¹æ¬¡å°–å³°æ¸…é™¤æ—¶ï¼Œåªæœ‰ä¸‹é¢é€‰æ‹©çš„æ¨¡æ¿æ‰ä¼šèµ·ä½œç”¨ã€‚" #: ../include/global_settings.php:1799 msgid "Default View Mode" msgstr "默认显示方å¼" #: ../include/global_settings.php:1800 msgid "Which Graph mode you want displayed by default when you first visit the Graphs page?" msgstr "您首次访问“图形â€é¡µé¢æ—¶ï¼Œé»˜è®¤æ˜¾ç¤ºå“ªç§å›¾å½¢æ¨¡å¼ï¼Ÿ" #: ../include/global_settings.php:1806 msgid "User Language" msgstr "用户语言" #: ../include/global_settings.php:1807 msgid "Defines the preferred GUI language." msgstr "定义首选的GUI语言。" #: ../include/global_settings.php:1813 msgid "Show Graph Title" msgstr "显示图形标题" #: ../include/global_settings.php:1814 msgid "Display the graph title on the page so that it may be searched using the browser." msgstr "在页é¢ä¸Šæ˜¾ç¤ºå›¾æ ‡ï¼Œä»¥ä¾¿ä½¿ç”¨æµè§ˆå™¨è¿›è¡Œæœç´¢ã€‚" #: /var/www/html/cacti/include/global_settings.php:1871 msgid "Hide Disabled" msgstr "éšè—å·²ç¦ç”¨" #: /var/www/html/cacti/include/global_settings.php:1872 msgid "Hide Disabled Devices and Graphs from Disabled Devices." msgstr "从ç¦ç”¨çš„设备中éšè—ç¦ç”¨çš„设备和图形。" #: ../include/global_settings.php:1820 msgid "The date format to use in Cacti." msgstr "在Cacti中使用的日期格å¼ã€‚" #: ../include/global_settings.php:1827 msgid "The date separator to be used in Cacti." msgstr "在Cacti中使用的日期分隔符。" #: ../include/global_settings.php:1833 msgid "Page Refresh" msgstr "页é¢åˆ·æ–°" #: ../include/global_settings.php:1834 msgid "The number of seconds between automatic page refreshes." msgstr "自动页é¢åˆ·æ–°ä¹‹é—´çš„秒数。" #: ../include/global_settings.php:1840 msgid "Preview Graphs Per Page" msgstr "æ¯é¡µé¢„览图形" #: ../include/global_settings.php:1841 #: ../include/global_settings.php:1956 msgid "The number of graphs to display on one page in preview mode." msgstr "在预览模å¼ä¸‹æ˜¾ç¤ºåœ¨ä¸€é¡µä¸Šçš„图表数é‡ã€‚" #: ../include/global_settings.php:1849 msgid "Default Time Range" msgstr "默认时间范围" #: ../include/global_settings.php:1850 msgid "The default RRA to use in rare occasions." msgstr "在æžå°‘数情况下使用的默认RRA。" #: ../include/global_settings.php:1856 msgid "Default Graph View Timespan" msgstr "默认图形查看时间跨度" #: ../include/global_settings.php:1857 msgid "The default timespan you wish to be displayed when you display graphs" msgstr "显示图形时希望显示的默认时间范围" #: ../include/global_settings.php:1863 msgid "Default Graph View Timeshift" msgstr "默认图形查看时间平移" #: ../include/global_settings.php:1864 msgid "The default timeshift you wish to be displayed when you display graphs" msgstr "显示图形时希望显示的默认时间平移" #: ../include/global_settings.php:1870 msgid "Allow Graph to extend to Future" msgstr "å…许图片延伸到将æ¥" #: ../include/global_settings.php:1871 msgid "When displaying Graphs, allow Graph Dates to extend 'to future'" msgstr "显示图形时,å…许图形日期延长到“将æ¥â€" #: ../include/global_settings.php:1876 msgid "First Day of the Week" msgstr "本周的第一天" #: ../include/global_settings.php:1877 msgid "The first Day of the Week for weekly Graph Displays" msgstr "æ¯å‘¨å›¾è¡¨æ˜¾ç¤ºçš„第一天" #: ../include/global_settings.php:1883 msgid "Start of Daily Shift" msgstr "æ¯æ—¥è½®ç­å¼€å§‹" #: ../include/global_settings.php:1884 msgid "Start Time of the Daily Shift." msgstr "æ¯æ—¥ç­æ¬¡çš„开始时间。" #: ../include/global_settings.php:1891 msgid "End of Daily Shift" msgstr "æ¯æ—¥ç­æ¬¡ç»“æŸ" #: ../include/global_settings.php:1892 msgid "End Time of the Daily Shift." msgstr "æ¯æ—¥ç­æ¬¡çš„ç»“æŸæ—¶é—´ã€‚" #: ../include/global_settings.php:1901 msgid "Thumbnail Sections" msgstr "缩略图" #: ../include/global_settings.php:1902 msgid "Which portions of Cacti display Thumbnails by default." msgstr "Cacti的哪个部分默认显示缩略图。" #: ../include/global_settings.php:1916 msgid "Preview Thumbnail Columns" msgstr "预览缩略图列" #: ../include/global_settings.php:1917 msgid "The number of columns to use when displaying Thumbnail graphs in Preview mode." msgstr "ä»¥é¢„è§ˆæ¨¡å¼æ˜¾ç¤ºç¼©ç•¥å›¾æ—¶è¦ä½¿ç”¨çš„列数。" #: ../include/global_settings.php:1920 #: ../include/global_settings.php:1927 #: ../lib/html_graph.php:231 #: ../lib/html_graph.php:232 #: ../lib/html_graph.php:233 #: ../lib/html_graph.php:234 #: ../lib/html_graph.php:235 #: ../lib/html_tree.php:677 #: ../lib/html_tree.php:678 #: ../lib/html_tree.php:679 #: ../lib/html_tree.php:680 #: ../lib/html_tree.php:681 #, php-format msgid "%d Columns" msgstr "%d 列" #: ../include/global_settings.php:1920 #: ../include/global_settings.php:1927 msgid "1 Column" msgstr "1列" #: ../include/global_settings.php:1923 msgid "Tree View Thumbnail Columns" msgstr "树视图缩略图列" #: ../include/global_settings.php:1924 msgid "The number of columns to use when displaying Thumbnail graphs in Tree mode." msgstr "ä»¥æ ‘çŠ¶æ¨¡å¼æ˜¾ç¤ºç¼©ç•¥å›¾æ—¶ä½¿ç”¨çš„列数。" #: ../include/global_settings.php:1930 msgid "Thumbnail Height" msgstr "缩略图高度" #: ../include/global_settings.php:1931 msgid "The height of Thumbnail graphs in pixels." msgstr "缩略图图形的高度(以åƒç´ ä¸ºå•ä½ï¼‰ã€‚" #: ../include/global_settings.php:1938 msgid "Thumbnail Width" msgstr "缩略图宽度" #: ../include/global_settings.php:1939 msgid "The width of Thumbnail graphs in pixels." msgstr "缩略图图形的宽度(以åƒç´ ä¸ºå•ä½ï¼‰ã€‚" #: ../include/global_settings.php:1948 msgid "Default Tree" msgstr "默认图形树" #: ../include/global_settings.php:1949 msgid "The default graph tree to use when displaying graphs in tree mode." msgstr "在树状模å¼ä¸‹æ˜¾ç¤ºå›¾å½¢æ—¶ä½¿ç”¨çš„默认图形树。" #: ../include/global_settings.php:1955 msgid "Graphs Per Page" msgstr "图表æ¯é¡µ" #: ../include/global_settings.php:1962 msgid "Expand Devices" msgstr "展开设备" #: ../include/global_settings.php:1963 msgid "Choose whether to expand the Graph Templates and Data Queries used by a Device on Tree." msgstr "选择是å¦å±•开在树上使用的设备图形模æ¿å’Œæ•°æ®æŸ¥è¯¢ã€‚" #: ../include/global_settings.php:1970 msgid "Use Custom Fonts" msgstr "使用自定义字体" #: ../include/global_settings.php:1971 msgid "Choose whether to use your own custom fonts and font sizes or utilize the system defaults." msgstr "选择是使用自己的自定义字体和字体大å°è¿˜æ˜¯ä½¿ç”¨ç³»ç»Ÿé»˜è®¤å€¼ã€‚" #: ../include/global_settings.php:1984 msgid "Title Font File" msgstr "标题字体" #: ../include/global_settings.php:1985 msgid "The font file to use for Graph Titles" msgstr "图形标题使用的字体文件" #: ../include/global_settings.php:1997 msgid "Legend Font File" msgstr "图例字体文件" #: ../include/global_settings.php:1998 msgid "The font file to be used for Graph Legend items" msgstr "图形图例的字体" #: ../include/global_settings.php:2010 msgid "Axis Font File" msgstr "轴的字体文件" #: ../include/global_settings.php:2011 msgid "The font file to be used for Graph Axis items" msgstr "用于Graph Axis项目的字体文件" #: ../include/global_settings.php:2023 msgid "Unit Font File" msgstr "å•ä½å­—体" #: ../include/global_settings.php:2024 msgid "The font file to be used for Graph Unit items" msgstr "图形组的字体" #: ../index.php:64 #, php-format msgid "You are now logged into
    Cacti. You can follow these basic steps to get started." msgstr "您现在已ç»ç™»å½•到 Cacti。 您å¯ä»¥æŒ‰ç…§è¿™äº›åŸºæœ¬æ­¥éª¤å¼€å§‹ã€‚" #: ../index.php:67 #, php-format msgid "Create devices for network" msgstr "为网络创建设备" #: ../index.php:68 #, php-format msgid "Create graphs for your new devices" msgstr "为您的新设备创建图表 " #: ../index.php:69 #, php-format msgid "View your new graphs" msgstr "查看您的新图" #: ../index.php:78 msgid "Offline" msgstr "离线" #: ../index.php:78 msgid "Online" msgstr "在线" #: ../index.php:78 msgid "Recovery" msgstr "æ¢å¤" #: ../index.php:78 msgid "Remote Data Collector Status:" msgstr "è¿œç¨‹æ•°æ®æ”¶é›†å™¨çжæ€ï¼š" #: ../index.php:80 msgid "Number of Offline Records:" msgstr "离线记录数é‡ï¼š" #: /var/www/html/cacti/index.php:85 msgid "NOTE: You are logged into a Remote Data Collector. When 'online', you will be able to view and control much of the Main Cacti Web Site just as if you were logged into it. Also, it's important to note that Remote Data Collectors are required to use the Cacti's Performance Boosting Services 'On Demand Updating' feature, and we always recommend using Spine. When the Remote Data Collector is 'offline', the Remote Data Collectors Web Site will contain much less information. However, it will cache all updates until the Main Cacti Database and Web Server are reachable. Then it will dump it's Boost table output back to the Main Cacti Database for updating." msgstr "注æ„ï¼šæ‚¨å·²ç™»å½•åˆ°è¿œç¨‹æ•°æ®æ”¶é›†å™¨ã€‚ 当'在线'时,您将能够查看和控制大部分主è¦çš„Cactiç½‘ç«™ï¼Œå°±åƒæ‚¨ç™»å½•该网站一样。 此外,é‡è¦çš„æ˜¯è¦æ³¨æ„ï¼Œè¿œç¨‹æ•°æ®æ”¶é›†å™¨éœ€è¦ä½¿ç”¨Cacti的性能增强æœåŠ¡'按需更新'功能,并且我们始终建议使用Spine。 å½“è¿œç¨‹æ•°æ®æ”¶é›†å™¨'离线'æ—¶ï¼Œè¿œç¨‹æ•°æ®æ”¶é›†å™¨ç½‘ç«™å°†åŒ…å«æ›´å°‘的信æ¯ã€‚ 但是,它将缓存所有更新,直到主Cactiæ•°æ®åº“å’ŒWebæœåС噍å¯è¾¾ã€‚ ç„¶åŽå®ƒä¼šå°†å®ƒçš„转储表输出转储回主Cactiæ•°æ®åº“进行更新。" #: ../index.php:90 msgid "NOTE: None of the Core Cacti Plugins, to date, have been re-designed to work with Remote Data Collectors. Therefore, Plugins such as MacTrack, and HMIB, which require direct access to devices will not work with Remote Data Collectors at this time. However, plugins such as Thold will work so long as the Remote Data Collector is in 'online' mode." msgstr "注æ„: 迄今为止,Core Cactiæ’ä»¶éƒ½æ²¡æœ‰é‡æ–°è®¾è®¡ä¸ºå¯ä¸ŽRemote Data Collector一起使用。 因此,需è¦ç›´æŽ¥è®¿é—®è®¾å¤‡çš„æ’ä»¶ï¼ˆå¦‚MacTrackå’ŒHMIBï¼‰ç›®å‰æ— æ³•ä¸Žè¿œç¨‹æ•°æ®æ”¶é›†å™¨é…åˆä½¿ç”¨ã€‚ 但是,åªè¦è¿œç¨‹æ•°æ®æ”¶é›†å™¨å¤„äºŽâ€œè”æœºâ€æ¨¡å¼ï¼ŒTholdç­‰æ’ä»¶å°±å¯ä»¥å·¥ä½œã€‚" #: ../install/index.php:51 #: ../install/index.php:56 #: ../install/index.php:61 #: ../install/index.php:302 #: ../lib/html_utility.php:820 msgid "Error" msgstr "错误" #: ../install/index.php:53 #, php-format msgid "This installation is already up-to-date. Click here to use Cacti." msgstr "è¿™ä¸ªå®‰è£…å·²ç»æ˜¯æœ€æ–°çš„了。 点击此处 以使用Cacti。" #: ../install/index.php:58 #, php-format msgid "You are attempting to install Cacti %s onto a 0.6.x database. To continue, you must create a new database, import \"cacti.sql\" into it, and update \"include/config.php\" to point to the new database." msgstr "您正试图将Cacti%s 安装到0.6.xæ•°æ®åº“中。 è¦ç»§ç»­ï¼Œæ‚¨å¿…须创建一个新的数æ®åº“,导入\"cacti.sql\"到它,并更新\"include/config.php\"æŒ‡å‘æ–°çš„æ•°æ®åº“。" #: ../install/index.php:63 #, php-format msgid "You have created a new database, but have not yet imported the 'cacti.sql' file. At the command line, execute the following to continue:

    mysql -u %s -p %s < cacti.sql

    This error may also be generated if the cacti database user does not have correct permissions on the Cacti database. Please ensure that the Cacti database user has the ability to SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, DROP, INDEX on the Cacti database." msgstr "您已ç»åˆ›å»ºäº†ä¸€ä¸ªæ–°çš„æ•°æ®åº“,但尚未导入“cacti.sqlâ€æ–‡ä»¶ã€‚ 在命令行中,执行以下命令以继续:

    mysql -u %s -p %s < cacti.sql

    这个错误也å¯èƒ½æ˜¯ 如果cactiæ•°æ®åº“用户在Cactiæ•°æ®åº“上没有正确的æƒé™ï¼Œåˆ™ä¼šç”Ÿæˆã€‚ 请确ä¿Cactiæ•°æ®åº“用户具有在Cactiæ•°æ®åº“上进行SELECT,INSERT,DELETE,UPDATE,CREATE,ALTER,DROP,INDEXçš„æƒé™ã€‚" #: ../install/index.php:65 #, php-format msgid "In Cacti %s, you must also import MySQL TimeZone information into MySQL and grant the Cacti user SELECT access to the mysql.time_zone_name table" msgstr "在Cacti %s中,您还必须将MySQL TimeZoneä¿¡æ¯å¯¼å…¥MySQL,并授予Cacti用户对mysql.time_zone_name表的访问æƒé™" #: ../install/index.php:68 msgid "On Linux/UNIX, do the following:" msgstr "在Linux / UNIX上,执行以下æ“作:" #: ../install/index.php:68 msgid "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" msgstr "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" #: ../install/index.php:70 msgid "On Windows, you must follow the instructions here Time zone description table. Once that is complete, you can issue the following command to grant the Cacti user access to the tables:" msgstr "在Windows上,您必须按照 时区æè¿°è¡¨ä¸­çš„说明进行æ“作。 一旦完æˆï¼Œæ‚¨å¯ä»¥å‘å‡ºä»¥ä¸‹å‘½ä»¤æ¥æŽˆäºˆCacti用户访问表的æƒé™ï¼š" #: ../install/index.php:72 #, php-format msgid "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" msgstr "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" #: /var/www/html/cacti/install/index.php:87 msgid "Begin" msgstr "开始" #: ../install/index.php:682 #: ../install/index.php:698 #: ../lib/html.php:342 msgid "Next" msgstr "下一步" #: ../install/index.php:707 msgid "Upgrade" msgstr "å‡çº§" #: /var/www/html/cacti/install/index.php:116 #: /var/www/html/cacti/install/index.php:133 msgid "Downgrade" msgstr "下å¡" #: ../install/index.php:304 #, php-format msgid "Invalid Cacti version %1$s, cannot upgrade to %2$s" msgstr "无效的Cacti版本 %1$s, 无法å‡çº§åˆ° %2$s" #: /var/www/html/cacti/install/index.php:382 msgid "Cacti Server Installation/Upgrade" msgstr "CactiæœåŠ¡å™¨å®‰è£…/å‡çº§" #: ../install/index.php:410 msgid "Cacti Installation Wizard" msgstr "Cacti 安装å‘导" #: ../utilities.php:238 msgid "Cacti Version" msgstr "Cacti 版本" #: ../install/index.php:418 msgid "License Agreement" msgstr "许å¯åè®®" #: ../install/index.php:420 msgid "Thanks for taking the time to download and install Cacti, the complete graphing solution for your network. Before you can start making cool graphs, there are a few pieces of data that Cacti needs to know." msgstr "感谢您抽出时间下载并安装Cacti,这是您网络的完整制图解决方案。 在你开始制作很酷的图表之å‰ï¼ŒCacti需è¦çŸ¥é“一些数æ®ã€‚" #: ../install/index.php:421 #, php-format msgid "Make sure you have read and followed the required steps needed to install Cacti before continuing. Install information can be found for Unix and Win32-based operating systems." msgstr "ç¡®ä¿æ‚¨å·²é˜…读并éµå¾ªå®‰è£…Cacti所需的步骤,然åŽå†ç»§ç»­ã€‚ å¯ä»¥åœ¨ Unix 和基于 Win32 çš„æ“作系统上找到安装信æ¯ã€‚" #: /var/www/html/cacti/install/index.php:414 #, php-format msgid "Note: This process will guide you through the steps for upgrading from version '%s'. " msgstr "注æ„:此过程将指导您完æˆä»Žç‰ˆæœ¬ '%s' å‡çº§çš„æ­¥éª¤ã€‚" #: ../install/index.php:422 #, php-format msgid "Also, if this is an upgrade, be sure to reading the Upgrade information file." msgstr "å¦å¤–,如果这是å‡çº§ï¼Œè¯·åŠ¡å¿…é˜…è¯»å‡çº§ä¿¡æ¯æ–‡ä»¶ã€‚" #: ../install/index.php:423 msgid "Cacti is licensed under the GNU General Public License, you must agree to its provisions before continuing:" msgstr "Cactiæ ¹æ®GNU通用公共许å¯è¯è¿›è¡Œè®¸å¯ï¼Œæ‚¨å¿…é¡»åŒæ„其规定,然åŽå†ç»§ç»­ï¼š" #: /var/www/html/cacti/install/index.php:422 msgid "This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details." msgstr "这个程åºçš„å‘布希望它会有用,但没有任何担ä¿; 甚至没有适销性或针对特定用途的适用性的暗示ä¿è¯ã€‚ 有关更多详细信æ¯ï¼Œè¯·å‚阅GNU通用公共许å¯è¯ã€‚" #: /var/www/html/cacti/install/index.php:424 msgid "Accept GPL License Agreement" msgstr "接å—GPL许å¯åè®®" #: ../install/index.php:441 msgid "Pre-installation Checks" msgstr "预安装检查" #: /var/www/html/cacti/install/index.php:431 msgid "Location checks" msgstr "ä½ç½®æ£€æŸ¥" #: ../install/index.php:447 #: ../install/index.php:451 #: ../install/index.php:630 #: ../install/index.php:638 msgid "ERROR:" msgstr "错误:" #: /var/www/html/cacti/install/index.php:479 msgid "Please update config.php with the correct relative URI location of Cacti (url_path)." msgstr "请使用正确的Cacti相对URIä½ç½®ï¼ˆurl_path)更新config.php。" #: /var/www/html/cacti/install/index.php:481 msgid "Your Cacti configuration has the relative correct path (url_path) in config.php." msgstr "您的Cactié…置在config.php中具有相对正确的路径(url_path)。" #: ../install/index.php:442 msgid "MySQL TimeZone Support" msgstr "MySQL时区支æŒ" #: ../install/index.php:447 msgid "Your MySQL TimeZone database is not populated. Please populate this database before proceeding." msgstr "您的MySQL TimeZoneæ•°æ®åº“未被填充。 请在继续之å‰å¡«å…¥æ­¤æ•°æ®åº“。" #: ../install/index.php:451 msgid "Your Cacti database login account does not have access to the MySQL TimeZone database. Please provide the Cacti database account \"select\" access to the \"time_zone_name\" table in the \"mysql\" database, and populate MySQL's TimeZone information before proceeding." msgstr "您的Cactiæ•°æ®åº“ç™»å½•å¸æˆ·æ— æƒè®¿é—®MySQL TimeZoneæ•°æ®åº“。 请æä¾›Cactiæ•°æ®åº“叿ˆ·å¯¹ \"mysql\" æ•°æ®åº“中 \"time_zone_name\" 表的 \"select\" 访问æƒï¼Œå¹¶åœ¨ç»§ç»­ä¹‹å‰å¡«å……MySQLçš„TimeZoneä¿¡æ¯ã€‚" #: ../install/index.php:456 msgid "Your Cacti database account has access to the MySQL TimeZone database and that database is populated with global TimeZone information." msgstr "您的Cactiæ•°æ®åº“叿ˆ·å¯ä»¥è®¿é—®MySQL TimeZoneæ•°æ®åº“,并且该数æ®åº“使用全çƒTimeZoneä¿¡æ¯å¡«å……。" #: /var/www/html/cacti/install/index.php:501 msgid "PHP Timezone Support" msgstr "PHP时区支æŒ" #: /var/www/html/cacti/install/index.php:504 msgid "Your Web Servers PHP Timezone settings have not been set. Please edit php.ini and uncomment the 'date.timezone' setting and set it to the Web Servers Timezone per the PHP installation instructions prior to installing Cacti." msgstr "您的WebæœåС噍PHP时区设置尚未设置。 在安装Cacti之å‰ï¼Œè¯·ç¼–辑php.iniå¹¶å–æ¶ˆæ³¨é‡Š'date.timezone'设置,并根æ®PHP安装说明将其设置为WebæœåŠ¡å™¨æ—¶åŒºã€‚" #: /var/www/html/cacti/install/index.php:507 msgid "Your Web Servers PHP is properly setup with a Timezone." msgstr "您的WebæœåС噍PHP使用时区正确设置。" #: ../install/index.php:459 msgid "Required PHP Module Support" msgstr "必需的PHPæ¨¡å—æ”¯æŒ" #: ../install/index.php:461 msgid "Cacti requires several PHP Modules to be installed to work properly. If any of these are not installed, you will be unable to continue the installation until corrected. In addition, for optimal system performance Cacti should be run with certain MySQL system variables set. Please follow the MySQL recommendations at your discretion. Always seek the MySQL documentation if you have any questions." msgstr "Cacti需è¦å®‰è£…好几个PHPæ¨¡å—æ‰èƒ½æ­£å¸¸å·¥ä½œã€‚ 如果其中任何一个没有安装,您将无法继续安装,直到更正。 å¦å¤–,为了获得最佳的系统性能,Cacti应该使用特定的MySQL系统å˜é‡æ¥è¿è¡Œã€‚ è¯·æ ¹æ®æ‚¨çš„æ„æ„¿éµå¾ªMySQL建议。 如果您有任何问题,请务必查阅MySQL文档。" #: ../install/index.php:463 msgid "The following PHP extensions are mandatory, and MUST be installed before continuing your Cacti install." msgstr "以下PHP扩展是强制性的,必须在继续安装Cacti之å‰å®‰è£…。" #: ../install/index.php:465 msgid "Required PHP Modules" msgstr "所需的PHP模å—" #: ../install/index.php:466 #: ../install/index.php:543 #: ../plugins.php:41 #: ../plugins.php:288 #: ../utilities.php:415 msgid "Installed" msgstr "安装" #: ../install/index.php:466 msgid "Required" msgstr "è¦æ±‚" #: ../install/index.php:468 #: ../utilities.php:387 msgid "PHP Version" msgstr "PHP 版本" #: ../install/index.php:533 msgid "Optional PHP Module Support" msgstr "å¯é€‰çš„PHPæ¨¡å—æ”¯æŒ" #: ../install/index.php:535 msgid "The following PHP extensions are recommended, and should be installed before continuing your Cacti install." msgstr "建议使用以下PHP扩展,在继续安装Cacti之å‰åº”该安装。" #: ../install/index.php:542 msgid "Optional Modules" msgstr "å¯é€‰æ¨¡å—" #: ../install/index.php:543 msgid "Optional" msgstr "å¯é€‰çš„" #: ../install/index.php:553 msgid "These MySQL performance tuning settings will help your Cacti system perform better without issues for a longer time." msgstr "这些MySQL性能调整设置将帮助您的Cacti系统在更长的时间内è¿è¡Œå¾—更好。" #: ../install/index.php:555 msgid "Recommended MySQL System Variable Settings" msgstr "推èçš„MySQL系统å˜é‡è®¾ç½®" #: ../install/index.php:560 msgid "Installation Type" msgstr "安装类型" #: ../install/index.php:565 #, php-format msgid "Upgrade from %s to %s" msgstr "从%s 到 %så‡çº§" #: /var/www/html/cacti/install/index.php:625 msgid "WARNING - If you are upgrading from a previous version please close all Cacti browser sessions and clear cache before continuing. Additionally, after this script is complete, you will also have to refresh your page to load updated JavaScript so that the Cacti pages render properly. In Firefox and IE, you simply press F5. In Chrome, you may have to clear your browser cache for the Cacti web site." msgstr "警告 - 如果您è¦ä»Žä»¥å‰çš„版本å‡çº§ï¼Œè¯·å…³é—­æ‰€æœ‰Cactiæµè§ˆå™¨ä¼šè¯å¹¶æ¸…除缓存,然åŽå†ç»§ç»­ã€‚ 此外,在此脚本完æˆä¹‹åŽï¼Œæ‚¨è¿˜å¿…é¡»åˆ·æ–°é¡µé¢æ‰èƒ½åŠ è½½æ›´æ–°çš„JavaScript,以便Cacti页颿­£ç¡®å‘ˆçŽ°ã€‚ 在Firefoxå’ŒIE中,åªéœ€æŒ‰F5å³å¯ã€‚ 在Chrome中,您å¯èƒ½å¿…须清除Cacti网站的æµè§ˆå™¨ç¼“存。" #: /var/www/html/cacti/install/index.php:628 #, php-format msgid "Downgrade from %s to %s" msgstr "从%sé™çº§ä¸º%s" #: /var/www/html/cacti/install/index.php:629 msgid "WARNING - Appears you are downgrading to a previous version. Database changes made for the newer version will not be reversed and could cause issues." msgstr "警告 - 显示您正在é™çº§åˆ°ä»¥å‰çš„版本。 对较新版本所åšçš„æ•°æ®åº“更改ä¸ä¼šè¢«é€†è½¬ï¼Œå¹¶ä¸”å¯èƒ½ä¼šå¯¼è‡´é—®é¢˜ã€‚" #: ../install/index.php:569 msgid "Please select the type of installation" msgstr "请选择安装类型" #: ../install/index.php:571 msgid "Installation options:" msgstr "安装选项:" #: ../install/index.php:574 msgid "Choose this for the Primary site." msgstr "为主站点选择此项。" #: ../install/index.php:574 #: ../install/index.php:580 msgid "New Primary Server" msgstr "æ–°çš„ä¸»è¦æœåС噍" #: ../install/index.php:575 #: ../install/index.php:581 msgid "New Remote Poller" msgstr "新的远程轮询器" #: ../install/index.php:575 msgid "Remote Pollers are used to access networks that are not readily accessible to the Primary site." msgstr "远程轮询器用于访问主站点无法访问的网络。" #: ../install/index.php:585 msgid "The following information has been determined from Cacti's configuration file. If it is not correct, please edit \"include/config.php\" before continuing." msgstr "以下信æ¯å·²ç»ä»ŽCactiçš„é…置文件中确定。 å¦‚æžœä¸æ­£ç¡®ï¼Œè¯·åœ¨ç»§ç»­ä¹‹å‰ç¼–辑 \"include/config.php\" 。" #: ../install/index.php:589 msgid "Local Cacti database connection information" msgstr "本地Cactiæ•°æ®åº“连接信æ¯" #: ../install/index.php:591 #: ../install/index.php:620 #, php-format msgid "Database: %s" msgstr "æ•°æ®åº“:%s" #: ../install/index.php:592 #: ../install/index.php:621 #, php-format msgid "Database User: %s" msgstr "æ•°æ®åº“用户:%s" #: ../install/index.php:593 #: ../install/index.php:622 #, php-format msgid "Database Hostname: %s" msgstr "æ•°æ®åº“主机å称:%s" #: ../install/index.php:594 #: ../install/index.php:623 #, php-format msgid "Port: %s" msgstr "端å£:%s" #: ../install/index.php:595 #: ../install/index.php:624 #, php-format msgid "Server Operating System Type: %s" msgstr "æœåС噍æ“作系统类型:%s" #: ../install/index.php:618 #: ../install/index.php:627 msgid "Remote Poller Cacti database connection information" msgstr "远程轮询Cactiæ•°æ®åº“连接信æ¯" #: /var/www/html/cacti/install/index.php:679 msgid "Your config.php file must be writable by the web server during install in order to configure the Remote poller. Once installation is complete, you must set this file to Read Only to prevent possible security issues." msgstr "安装期间,您的config.php文件必须å¯ç”±WebæœåŠ¡å™¨å†™å…¥ï¼Œä»¥é…置远程轮询器。 安装完æˆåŽï¼Œæ‚¨å¿…须将此文件设置为åªè¯»ä»¥é˜²æ­¢å¯èƒ½çš„安全问题。" #: /var/www/html/cacti/install/index.php:684 msgid "Your Remote Cacti Poller information has not been included in your config.php file. Please review the config.php.dist, and set the variables: $rdatabase_default, $rdatabase_username, etc. These variables must be set and point back to your Primary Cacti database server. Correct this and try again." msgstr "您的远程Cacti轮询信æ¯å°šæœªåŒ…å«åœ¨æ‚¨çš„config.php文件中。 请查看config.php.dist,并设置å˜é‡ï¼š $ rdatabase_default,$ rdatabase_username 等。必须设置这些å˜é‡å¹¶æŒ‡å‘您的主Cactiæ•°æ®åº“æœåŠ¡å™¨ã€‚ 纠正这一点,然åŽå†è¯•一次。" #: ../install/index.php:644 msgid "The variables that must be set include the following:" msgstr "必须设置的å˜é‡åŒ…括以下内容:" #: ../install/index.php:655 msgid "You must also set the $poller_id variable in the config.php." msgstr "您还必须在config.php中设置$poller_idå˜é‡ã€‚" #: /var/www/html/cacti/install/index.php:699 msgid "Once you have the variables set in the config.php file, you must also grant the $rdatabase_username access to the Cacti database. Follow the same procedure you would with any other Cacti install. You may then press the 'Test Connection' button. If the test is successful you will be able to proceed and complete the install." msgstr "一旦在config.php文件中设置了å˜é‡ï¼Œæ‚¨è¿˜å¿…须将$ rdatabase_username访问æƒé™æŽˆäºˆCactiæ•°æ®åº“。 éµå¾ªä¸Žå…¶ä»–任何Cacti安装相åŒçš„æ­¥éª¤ã€‚ ç„¶åŽæ‚¨å¯ä»¥æŒ‰ä¸‹'测试连接'按钮。 如果测试æˆåŠŸï¼Œæ‚¨å°†èƒ½å¤Ÿç»§ç»­å¹¶å®Œæˆå®‰è£…。" #: ../install/index.php:720 msgid "Remote Database: " msgstr "远程数æ®åº“:" #: ../install/index.php:731 msgid "Critical Binary Locations and Versions" msgstr "关键的执行程åºä½ç½®å’Œç‰ˆæœ¬" #: ../install/index.php:733 msgid "Make sure all of these values are correct before continuing." msgstr "在继续之å‰ç¡®ä¿æ‰€æœ‰è¿™äº›å€¼éƒ½æ˜¯æ­£ç¡®çš„。" #: ../install/index.php:791 msgid "Directory Permission Checks" msgstr "目录æƒé™æ£€æŸ¥" #: ../install/index.php:793 msgid "Please ensure the directory permissions below are correct before proceeding. During the install, these directories need to be owned by the Web Server user. These permission changes are required to allow the Installer to install Device Template packages which include XML and script files that will be placed in these directories. If you choose not to install the packages, there is an 'install_package.php' cli script that can be used from the command line after the install is complete." msgstr "在继续之å‰ï¼Œè¯·ç¡®ä¿ä»¥ä¸‹ç›®å½•æƒé™æ˜¯æ­£ç¡®çš„。 在安装过程中,这些目录需è¦ç”±WebæœåŠ¡å™¨ç”¨æˆ·æ‹¥æœ‰ã€‚ 这些æƒé™æ›´æ”¹æ˜¯å¿…需的,以å…许安装程åºå®‰è£…包å«å°†æ”¾ç½®åœ¨è¿™äº›ç›®å½•中的XML和脚本文件的设备模æ¿åŒ…。 如果您选择ä¸å®‰è£…软件包,则在安装完æˆåŽï¼Œä¼šæœ‰ä¸€ä¸ªå¯ä»Žå‘½ä»¤è¡Œä½¿ç”¨çš„“install_package.phpâ€cli脚本。" #: ../install/index.php:796 msgid "After the install is complete, you can make some of these directories read only to increase security." msgstr "安装完æˆåŽï¼Œæ‚¨å¯ä»¥ä½¿è¿™äº›ç›®å½•中的æŸäº›åªè¯»ï¼Œä»¥æé«˜å®‰å…¨æ€§ã€‚" #: ../install/index.php:798 msgid "These directories will be required to stay read writable after the install so that the Cacti remote synchronization process can update them as the Main Cacti Web Site changes" msgstr "在安装åŽï¼Œè¿™äº›ç›®å½•å°†è¢«è¦æ±‚ä¿æŒå¯è¯»å†™çжæ€ï¼Œä»¥ä¾¿Cactiè¿œç¨‹åŒæ­¥è¿‡ç¨‹å¯ä»¥åœ¨ä¸»Cacti网站更改时更新它们" #: ../install/index.php:829 msgid "Required Writable at Install Time Only" msgstr "仅在安装时需è¦å¯å†™" #: /var/www/html/cacti/install/index.php:871 #: /var/www/html/cacti/install/index.php:881 #: /var/www/html/cacti/install/index.php:891 #, php-format msgid "

    %s is Writable

    " msgstr "

    %s 是 å¯å†™å…¥

    " #: /var/www/html/cacti/install/index.php:873 #: /var/www/html/cacti/install/index.php:883 #: /var/www/html/cacti/install/index.php:893 #, php-format msgid "

    %s is Not Writable

    " msgstr "

    %s 是 ä¸å¯å†™å…¥

    " #: ../install/index.php:839 #: ../install/index.php:849 msgid "Required Writable after Install Complete" msgstr "安装完æˆåŽéœ€è¦å†™å…¥" #: ../install/index.php:862 #, php-format msgid "Make sure your webserver has read and write access to the entire folder structure.
    Example: chown -R apache.apache %s/resource/" msgstr "ç¡®ä¿æ‚¨çš„网络æœåŠ¡å™¨å…·æœ‰å¯¹æ•´ä¸ªæ–‡ä»¶å¤¹ç»“æž„çš„è¯»å†™æƒé™ã€‚例如:chown -R apache.apache %s / resource /" #: ../install/index.php:863 msgid "For SELINUX-users make sure that you have the correct permissions or set 'setenforce 0' temporarily." msgstr "对于SELINUXç”¨æˆ·ï¼Œè¯·ç¡®ä¿æ‚¨æ‹¥æœ‰æ­£ç¡®çš„设置或暂时设置“setenforce 0â€ã€‚" #: ../install/index.php:865 msgid "Check Permissions" msgstr "检查æƒé™" #: ../install/index.php:867 msgid "All folders are writable" msgstr "所有文件夹都是å¯å†™çš„" #: ../install/index.php:873 msgid "If you are installing packages, once the packages are installed, you should change the scripts directory back to read only as this presents some exposure to the web site." msgstr "如果您正在安装软件包,一旦安装了软件包,您应该将脚本目录更改为åªè¯»ï¼Œå› ä¸ºè¿™ä¼šæš´éœ²ç»™ç½‘站。" #: ../install/index.php:873 #: ../install/index.php:879 #: ../install/index.php:915 msgid "NOTE:" msgstr "注æ„:" #: /var/www/html/cacti/install/index.php:918 msgid "For remote pollers, it is critical that the paths that you will be updating frequently, including the plugins, scripts, and resources paths have read/write access as the data collector will have to update these paths from the main web server content." msgstr "å¯¹äºŽè¿œç¨‹è½®è¯¢å™¨è€Œè¨€ï¼Œé¢‘ç¹æ›´æ–°çš„路径(包括æ’件,脚本和资æºè·¯å¾„)具有读å–/写入访问æƒè‡³å…³é‡è¦ï¼Œå› ä¸ºæ•°æ®æ”¶é›†å™¨å¿…须从主è¦WebæœåŠ¡å™¨å†…å®¹æ›´æ–°è¿™äº›è·¯å¾„ã€‚" #: ../install/index.php:889 msgid "Template Setup" msgstr "模æ¿è®¾ç½®" #: ../install/index.php:891 msgid "Please select the Device Templates that you wish to use after the Install. If you Operating System is Windows, you need to ensure that you select the 'Windows Device' Template. If your Operating System is Linux/UNIX, make sure you select the 'Local Linux Machine' Device Template." msgstr "请在安装åŽé€‰æ‹©æ‚¨æƒ³è¦ä½¿ç”¨çš„设备模æ¿ã€‚ 如果您的æ“作系统是Windows,则需è¦ç¡®ä¿é€‰æ‹©â€œWindowsè®¾å¤‡â€æ¨¡æ¿ã€‚ 如果您的æ“作系统是Linux / UNIX,请确ä¿é€‰æ‹©â€œæœ¬åœ°Linux机器â€è®¾å¤‡æ¨¡æ¿ã€‚" #: ../install/index.php:893 msgid "Device Templates allow you to monitor and graph a vast assortment of data within Cacti. After you select the desired Device Templates, press 'Finish' and the installation will complete. Please be patient on this step, as the importation of the Device Templates can take a few minutes." msgstr "设备模æ¿å…许您监视和绘制Cactiå†…çš„å¤§é‡æ•°æ®ã€‚ 选择所需的设备模æ¿åŽï¼ŒæŒ‰'完æˆ',安装完æˆã€‚ 请è€å¿ƒç­‰å¾…,因为输入设备模æ¿å¯èƒ½éœ€è¦å‡ åˆ†é’Ÿçš„æ—¶é—´ã€‚" #: ../install/index.php:899 #: ../plugins.php:378 msgid "Author" msgstr "作者" #: ../install/index.php:899 msgid "Homepage" msgstr "主页" #: ../install/index.php:917 msgid "Press 'Finish' to complete the installation process after selecting your Device Templates." msgstr "选择设备模æ¿åŽæŒ‰'完æˆ'完æˆå®‰è£…过程。" #: ../install/index.php:921 msgid "Upgrade Results" msgstr "å‡çº§ç»“æžœ" #: ../install/index.php:928 msgid "[Fail]" msgstr "[失败]" #: ../install/index.php:929 msgid "[Success]" msgstr "[æˆåŠŸ]" #: ../install/index.php:930 msgid "[Skipped]" msgstr "[跳过]" #: ../install/index.php:934 msgid "Database upgrade completed!" msgstr "æ•°æ®åº“å‡çº§å®Œæˆï¼" #: /var/www/html/cacti/install/index.php:974 msgid "Version: " msgstr "版本:" #: ../install/index.php:955 msgid "One or more of the SQL queries needed to upgraded your Cacti installation has failed. Please see below for more details. Your Cacti MySQL user must have SELECT, INSERT, UPDATE, DELETE, ALTER, CREATE, and DROP permissions. You should try executing the failed queries as \"root\" to ensure that you do not have a permissions problem." msgstr "å‡çº§æ‚¨çš„Cacti安装所需的一个或多个SQL查询失败。 请å‚阅下é¢çš„æ›´å¤šç»†èŠ‚ã€‚ 您的Cacti MySQL用户必须具有 SELECT,INSERT,UPDATE,DELETE,ALTER,CREATEå’ŒDROP æƒé™ã€‚ 您应该å°è¯•执行失败的查询作为\"root\"ä»¥ç¡®ä¿æ‚¨æ²¡æœ‰æƒé™é—®é¢˜ã€‚" #: ../install/index.php:955 #: ../utilities.php:2010 #: ../utilities.php:2011 #: ../utilities.php:2014 #: ../utilities.php:2015 msgid "WARNING:" msgstr "警告:" #: ../install/index.php:960 msgid "No database action needed." msgstr "ä¸éœ€è¦æ•°æ®åº“æ“作。" #: ../install/index.php:965 msgid "Important Upgrade Notice" msgstr "é‡è¦å‡çº§é€šçŸ¥" #: ../install/index.php:966 msgid "Before you continue with the installation, you must update your /etc/crontab file to point to poller.php instead of cmd.php." msgstr "在继续安装之å‰ï¼Œæ‚¨å¿…须必须更新您的/etc /crontab æ–‡ä»¶ä»¥æŒ‡å‘ poller.php è€Œä¸æ˜¯ cmd.PHP的。" #: ../install/index.php:967 msgid "See the sample crontab entry below with the change made in red. Your crontab line will look slightly different based upon your setup." msgstr "请å‚阅下é¢çš„示例crontabæ¡ç›®ï¼Œå¹¶ä»¥çº¢è‰²è¿›è¡Œæ›´æ”¹ã€‚ æ ¹æ®æ‚¨çš„设置,您的crontab行看起æ¥ä¼šç•¥æœ‰ä¸åŒã€‚" #: ../install/index.php:969 msgid "Once you have made this change, please click Finish to continue." msgstr "一旦你åšäº†è¿™ä¸ªæ”¹å˜ï¼Œè¯·ç‚¹å‡»å®Œæˆç»§ç»­ã€‚" #: ../install/index.php:976 msgctxt "Dialog: previous" msgid "Previous" msgstr "上一步" #: ../install/index.php:977 msgctxt "Dialog: complete" msgid "Finish" msgstr "结æŸ" #: ../install/index.php:978 msgctxt "Dialog: test connection" msgid "Test Connection" msgstr "测试连接" #: ../install/index.php:978 msgid "Test remote database connection" msgstr "测试远程数æ®åº“连接" #: /var/www/html/cacti/install/index.php:1039 #: /var/www/html/cacti/install/index.php:1041 #: /var/www/html/cacti/install/index.php:1043 msgid "Finish" msgstr "结æŸ" #: ../lib/aggregate.php:42 msgid "Display Graphs from this Aggregate" msgstr "显示æ¥è‡ªè¯¥èšé›†çš„图形" #: ../lib/api_aggregate.php:1101 msgid "The Graphs chosen for the Aggregate Graph below represent Graphs from multiple Graph Templates. Aggregate does not support creating Aggregate Graphs from multiple Graph Templates." msgstr "为下é¢çš„èšåˆå›¾é€‰æ‹©çš„图形表示æ¥è‡ªå¤šä¸ªå›¾å½¢æ¨¡æ¿çš„图形。 èšåˆä¸æ”¯æŒä»Žå¤šä¸ªå›¾å½¢æ¨¡æ¿åˆ›å»ºèšåˆå›¾ã€‚" #: ../lib/api_aggregate.php:1102 #: ../lib/api_aggregate.php:1121 msgid "Press 'Return' to return and select different Graphs" msgstr "按'返回'返回并选择ä¸åŒçš„图形" #: ../lib/api_aggregate.php:1120 msgid "The Graphs chosen for the Aggregate Graph do not use Graph Templates. Aggregate does not support creating Aggregate Graphs from non-templated graphs." msgstr "为èšåˆå›¾é€‰æ‹©çš„图形ä¸ä½¿ç”¨å›¾å½¢æ¨¡æ¿ã€‚ èšåˆä¸æ”¯æŒä»Žéžæ¨¡æ¿å›¾åˆ›å»ºèšåˆå›¾ã€‚" #: ../lib/api_aggregate.php:1210 #: ../lib/functions.php:1932 msgid "Graph Items" msgstr "图形项" #: ../lib/api_aggregate.php:1210 #: ../lib/functions.php:2064 msgid "Graph Template Items" msgstr "图形模æ¿é¡¹" #: ../lib/api_aggregate.php:1214 #: ../lib/html.php:855 msgid "Graph Item" msgstr "图形项" #: ../lib/api_aggregate.php:1217 #: ../lib/html.php:858 msgid "CF Type" msgstr "CF 类型" #: ../lib/api_aggregate.php:1218 #: ../lib/html.php:860 msgid "Item Color" msgstr "项目颜色" #: ../lib/api_aggregate.php:1219 msgid "Color Template" msgstr "颜色模æ¿" #: ../lib/api_aggregate.php:1220 msgid "Skip" msgstr "跳过" #: /var/www/html/cacti/lib/api_aggregate.php:1372 msgid "Aggregate Items are not modifyable" msgstr "èšåˆé¡¹ç›®ä¸å¯ä¿®æ”¹" #: /var/www/html/cacti/lib/api_aggregate.php:1383 msgid "Aggregate Items are not editable" msgstr "èšåˆé¡¹ç›®ä¸å¯ç¼–辑" #: ../lib/api_automation.php:124 msgid "Matching Devices" msgstr "匹é…设备" #: ../lib/api_automation.php:139 #: ../lib/api_automation.php:994 #: ../lib/html_reports.php:268 #: ../lib/html_reports.php:1211 #: ../lib/html_reports.php:1481 #: ../lib/html_reports.php:1492 #: ../lib/rrd.php:2653 #: ../utilities.php:301 #: ../utilities.php:2338 msgid "Type" msgstr "Type" #: ../lib/api_automation.php:299 msgid "No Matching Devices" msgstr "没有匹é…的设备" #: ../lib/api_automation.php:408 #: ../lib/api_automation.php:674 #: ../lib/api_automation.php:799 msgid "Matching Objects" msgstr "匹é…对象" #: ../lib/api_automation.php:689 msgid "Objects" msgstr "对象" #: /var/www/html/cacti/lib/api_automation.php:753 msgid "Not Found" msgstr "未找到" #: ../lib/api_automation.php:760 msgid "A blue font color indicates that the rule will be applied to the objects in question. Other objects will not be subject to the rule." msgstr "è“色的字体颜色表示该规则将应用于所讨论的对象。 其他物体将ä¸å—制于规则。" #: ../lib/api_automation.php:760 #, php-format msgid "Matching Objects [ %s ]" msgstr "匹é…对象 [ %s ]" #: ../lib/api_automation.php:810 msgid "Device Status" msgstr "设备状æ€" #: ../lib/api_automation.php:832 msgid "There are no Objects that match this rule." msgstr "æ²¡æœ‰ç¬¦åˆæ­¤è§„则的对象。" #: ../lib/api_automation.php:876 msgid "Error in data query" msgstr "æ•°æ®æŸ¥è¯¢å‡ºé”™" #: ../lib/api_automation.php:980 msgid "Matching Items" msgstr "匹é…项目" #: ../lib/api_automation.php:1142 msgid "Resulting Branch" msgstr "结果分支" #: ../lib/api_automation.php:1181 msgid "No Items Found" msgstr "未找到任何项目" #: ../lib/api_automation.php:1209 #: ../lib/api_automation.php:1271 msgid "Field" msgstr "域" #: ../lib/api_automation.php:1211 #: ../lib/api_automation.php:1273 msgid "Pattern" msgstr "模å¼" #: /var/www/html/cacti/lib/api_automation.php:1254 #: /var/www/html/cacti/lib/api_automation.php:1316 #: /var/www/html/cacti/lib/api_automation.php:1380 #, php-format msgid "Item#%d" msgstr "项目#%d" #: ../lib/api_automation.php:1254 msgid "No Device Selection Criteria" msgstr "没有设备选择标准" #: ../lib/api_automation.php:1316 msgid "No Graph Creation Criteria" msgstr "没有图形创建标准" #: ../lib/api_automation.php:1335 msgid "Propagate Change" msgstr "宣传改å˜" #: ../lib/api_automation.php:1336 msgid "Search Pattern" msgstr "æœç´¢æ¨¡å¼" #: ../lib/api_automation.php:1337 msgid "Replace Pattern" msgstr "æ›¿æ¢æ¨¡å¼" #: ../lib/api_automation.php:1381 msgid "No Tree Creation Criteria" msgstr "无树创建标准" #: /var/www/html/cacti/lib/api_automation.php:1872 #: /var/www/html/cacti/lib/api_automation.php:1922 msgid "Device Match Rule" msgstr "设备匹é…规则" #: /var/www/html/cacti/lib/api_automation.php:1887 msgid "Create Graph Rule" msgstr "创建图规则" #: /var/www/html/cacti/lib/api_automation.php:1926 msgid "Graph Match Rule" msgstr "图匹é…规则" #: /var/www/html/cacti/lib/api_automation.php:1951 msgid "Create Tree Rule (Device)" msgstr "创建树规则(设备)" #: /var/www/html/cacti/lib/api_automation.php:1955 msgid "Create Tree Rule (Graph)" msgstr "创建树规则(图)" #: ../lib/api_automation.php:1941 #, php-format msgid "Rule Item [edit rule item for %s: %s]" msgstr "规则项目[编辑规则项目 %s: %s]" #: ../lib/api_automation.php:1943 #, php-format msgid "Rule Item [new rule item for %s: %s]" msgstr "规则项目[新的规则项目%s: %s]" #: ../lib/api_automation.php:2634 msgid "Added by Cacti Automation" msgstr "ç”±Cacti自动化添加" #: /var/www/html/cacti/lib/api_device.php:407 msgid "ERROR: Failed to connect to remote collector." msgstr "错误:无法连接到远程收集器。" #: ../lib/api_device.php:398 msgid "Device is Disabled" msgstr "设备已ç¦ç”¨" #: ../lib/api_device.php:399 msgid "Device Availability Check Bypassed" msgstr "设备å¯ç”¨æ€§æ£€æµ‹æ—è·¯" #: ../lib/api_device.php:406 msgid "SNMP Information" msgstr "SNMPä¿¡æ¯" #: ../lib/api_device.php:410 msgid "SNMP not in use" msgstr "SNMP未被使用" #: ../lib/api_device.php:418 #: ../lib/api_device.php:422 #: ../lib/api_device.php:434 msgid "SNMP error" msgstr "SNMP错误" #: /var/www/html/cacti/lib/api_device.php:435 msgid "Session" msgstr "会è¯" #: ../lib/api_device.php:441 msgid "System:" msgstr "系统:" #: ../lib/api_device.php:447 msgid "Uptime:" msgstr "è¿è¡Œæ—¶é—´ï¼š" #: ../lib/api_device.php:448 msgid "days" msgstr "天" #: ../lib/api_device.php:448 msgid "hours" msgstr "å°æ—¶" #: ../lib/api_device.php:448 msgid "minutes" msgstr "分钟" #: ../lib/api_device.php:449 msgid "Hostname:" msgstr "主机å:" #: ../lib/api_device.php:450 msgid "Location:" msgstr "ä½ç½®ï¼š" #: ../lib/api_device.php:451 msgid "Contact:" msgstr "è”系:" #: ../lib/api_device.php:480 #: ../lib/functions.php:3814 #: ../lib/functions.php:3816 #: ../lib/functions.php:3820 msgid "Ping Results" msgstr "Ping 结果" #: ../lib/api_device.php:485 msgid "No Ping or SNMP Availability Check in Use" msgstr "ä¸ä½¿ç”¨Ping或SNMPå¯ç”¨æ€§æ£€æŸ¥" #: ../lib/auth.php:312 msgid "Web Basic" msgstr "Web Basic" #: ../lib/html_reports.php:293 msgid "Branch:" msgstr "分支:" #: ../lib/html_reports.php:299 #: ../lib/html_tree.php:593 msgid "Device:" msgstr "设备:" #: /var/www/html/cacti/lib/auth.php:1915 #, php-format msgid "Password must be at least %d characters!" msgstr "密ç å¿…é¡»è‡³å°‘åŒ…å« %d 个字符ï¼" #: /var/www/html/cacti/lib/auth.php:1921 msgid "Your password must contain at least 1 numerical character!" msgstr "您的密ç å¿…须至少包å«1个数字字符ï¼" #: /var/www/html/cacti/lib/auth.php:1925 msgid "Your password must contain a mix of lower case and upper case characters!" msgstr "您的密ç å¿…须包å«å°å†™å­—æ¯å’Œå¤§å†™å­—æ¯çš„æ··åˆå½¢å¼ï¼" #: /var/www/html/cacti/lib/auth.php:1931 msgid "Your password must contain at least 1 special character!" msgstr "您的密ç å¿…须至少包å«1个特殊字符ï¼" #: /var/www/html/cacti/lib/clog_webapi.php:193 msgid "Click 'Continue' to purge the Log File.


    Note: If logging is set to both Cacti and Syslog, the log information will remain in Syslog." msgstr "å•击“继续â€ä»¥æ¸…除日志文件。


    注æ„:如果将日志记录设置为Cactiå’ŒSyslog,则日志信æ¯å°†ä¿ç•™åœ¨Syslog中。" #: ../utilities.php:1015 msgid "Purge Log" msgstr "清除日志" #: ../lib/clog_webapi.php:156 #: ../utilities.php:975 msgid "Log Filters" msgstr "日志过滤器" #: /var/www/html/cacti/lib/clog_webapi.php:240 msgid " - Admin Filter in Affect" msgstr "- 管ç†è¿‡æ»¤å™¨çš„å½±å“" #: /var/www/html/cacti/lib/clog_webapi.php:242 msgid " - No Admin Filter in Affect" msgstr "- 没有管ç†è¿‡æ»¤å™¨çš„å½±å“" #: /var/www/html/cacti/lib/clog_webapi.php:245 msgid " - Admin View" msgstr "- 管ç†å‘˜è§†å›¾" #: ../lib/clog_webapi.php:183 #, php-format msgid "Log [Total Lines: %d %s - Additional Filter in Affect]" msgstr "日志[总行数:%d %s - å½±å“中的其他过滤器]" #: ../lib/clog_webapi.php:185 #, php-format msgid "Log [Total Lines: %d %s - No Other Filter in Affect]" msgstr "日志[总行数:%d %s - 没有其他筛选器的影å“]" #: ../lib/clog_webapi.php:195 #: ../utilities.php:1084 #: ../utilities.php:1403 #: ../utilities.php:1611 #: ../utilities.php:1691 #: ../utilities.php:2332 #: ../utilities.php:2542 msgid "Entries" msgstr "项" #: /var/www/html/cacti/lib/clog_webapi.php:341 #: /var/www/html/cacti/utilities.php:1013 msgid "File" msgstr "文件" #: ../lib/clog_webapi.php:311 #: ../utilities.php:984 msgid "Tail Lines" msgstr "尾行" #: ../lib/clog_webapi.php:332 #: ../utilities.php:1001 msgid "Stats" msgstr "状æ€" #: ../lib/clog_webapi.php:335 #: ../utilities.php:1004 msgid "Debug" msgstr "调试" #: ../lib/clog_webapi.php:336 #: ../utilities.php:1005 msgid "SQL Calls" msgstr "SQL调用" #: ../lib/clog_webapi.php:367 #: ../utilities.php:1032 msgid "Display Order" msgstr "显示顺åº" #: ../lib/clog_webapi.php:371 #: ../utilities.php:1036 msgid "Newest First" msgstr "最新的优先" #: ../lib/clog_webapi.php:372 #: ../utilities.php:1037 msgid "Oldest First" msgstr "最早的优先" #: /var/www/html/cacti/lib/data_query.php:225 #: /var/www/html/cacti/lib/data_query.php:375 msgid "Error parsing XML file into an array." msgstr "å°†XML文件解æžä¸ºæ•°ç»„时出错。" #: /var/www/html/cacti/lib/data_query.php:237 #: /var/www/html/cacti/lib/data_query.php:382 #, php-format msgid "Invalid field <index_order>%s</index_order>" msgstr "无效字段 <index_order>%s</index_order>" #: /var/www/html/cacti/lib/data_query.php:238 #: /var/www/html/cacti/lib/data_query.php:383 msgid "Must contain <direction>input</direction> or <direction>input-output</direction> fields only" msgstr "å¿…é¡»åŒ…å« <direction>input</direction> or <direction>input-output</direction>字段" #: /var/www/html/cacti/lib/data_query.php:249 #, php-format msgid "Executing script for num of indexes '%s'" msgstr "为索引 '%s' 执行脚本" #: /var/www/html/cacti/lib/data_query.php:251 #, php-format msgid "Found number of indexes: %s" msgstr "å‘现索引数é‡ï¼š %s" #: /var/www/html/cacti/lib/data_query.php:267 #, php-format msgid "Executing script for list of indexes '%s', Index Count: %s" msgstr "为索引 '%s'列表执行脚本,索引计数: %s" #: /var/www/html/cacti/lib/data_query.php:269 msgid "Click to show Data Query output for 'index'" msgstr "点击以显示'索引'çš„æ•°æ®æŸ¥è¯¢è¾“出" #: /var/www/html/cacti/lib/data_query.php:272 #, php-format msgid "Found index: %s" msgstr "找到索引: %s" #: /var/www/html/cacti/lib/data_query.php:285 #, php-format msgid "Click to show Data Query output for sfield '%s'" msgstr "ç‚¹å‡»æ˜¾ç¤ºæ•°æ®æŸ¥è¯¢è¾“出的字段 '%s'" #: /var/www/html/cacti/lib/data_query.php:289 #, php-format msgid "Executing script query '%s'" msgstr "执行脚本查询 '%s'" #: /var/www/html/cacti/lib/data_query.php:298 #, php-format msgid "Found item [%s='%s'] index: %s" msgstr "找到项目 [%s='%s']索引: %s" #: /var/www/html/cacti/lib/data_query.php:369 #, php-format msgid "Invalid host_id: %s" msgstr "无效的 host_id: %s" #: /var/www/html/cacti/lib/data_query.php:394 msgid "Failed to load SNMP session." msgstr "无法加载SNMP会è¯ã€‚" #: /var/www/html/cacti/lib/data_query.php:403 #, php-format msgid "Executing SNMP get for num of indexes @ '%s' Index Count: %s" msgstr "执行SNMP获å–ç´¢å¼•æ•°é‡ @ '%s' 索引计数: %s" #: /var/www/html/cacti/lib/data_query.php:405 msgid "<oid_num_indexes> missing in XML file, 'Index Count Changed' emulated by counting oid_index entries" msgstr "<oid_num_indexes> 在XML文件中缺少'通过计数oid_indexæ¡ç›®æ¥æ¨¡æ‹Ÿ'索引计数已更改'" #: /var/www/html/cacti/lib/data_query.php:411 #, php-format msgid "Executing SNMP walk for list of indexes @ '%s' Index Count: %s" msgstr "对索引列表执行SNMPé历 @ '%s' 索引计数: %s" #: /var/www/html/cacti/lib/data_query.php:415 msgid "No SNMP data returned" msgstr "没有返回SNMPæ•°æ®" #: /var/www/html/cacti/lib/data_query.php:420 #, php-format msgid "Index found at OID: '%s' value: '%s'" msgstr "在OID处找到的索引: '%s' 值: '%s'" #: /var/www/html/cacti/lib/data_query.php:433 #, php-format msgid "index_parse at OID: '%s' results: '%s'" msgstr "OID处的index_parse: '%s' 结果: '%s'" #: /var/www/html/cacti/lib/data_query.php:451 #, php-format msgid "Fixing wrong 'method' field for '%s' since 'rewrite_index' or 'oid_suffix' is defined" msgstr "ä¿®å¤ '%s' 错误的'方法'字段,因为定义了'rewrite_index'或'oid_suffix'" #: /var/www/html/cacti/lib/data_query.php:458 #, php-format msgid "Inserting index data for field '%s' [value='%s']" msgstr "æ’入字段 '%s'çš„ç´¢å¼•æ•°æ® [value='%s']" #: /var/www/html/cacti/lib/data_query.php:463 #, php-format msgid "Located input field '%s' [get]" msgstr "ä½äºŽè¾“å…¥æ '%s' [get]" #: /var/www/html/cacti/lib/data_query.php:472 #, php-format msgid "Found OID rewrite rule: 's/%s/%s/'" msgstr "找到OIDé‡å†™è§„则: 's/%s/%s/'" #: /var/www/html/cacti/lib/data_query.php:483 #, php-format msgid "oid_rewrite at OID: '%s' new OI: '%s'" msgstr "OID处的oid_rewrite: '%s' æ–°çš„OI: '%s'" #: /var/www/html/cacti/lib/data_query.php:504 #, php-format msgid "Executing SNMP get for data @ '%s' [value='%s']" msgstr "为数æ®@ '%s' [value='%s']执行SNMP抓å–" #: /var/www/html/cacti/lib/data_query.php:514 #, php-format msgid "Field '%s' %s" msgstr "字段 '%s' %s" #: /var/www/html/cacti/lib/data_query.php:549 #, php-format msgid "Executing SNMP get for %s oids" msgstr "为%s oids执行SNMP获å–" #: /var/www/html/cacti/lib/data_query.php:585 #, php-format msgid "Got SNMP get result for data @ '%s' [value='%s'] (index: %s)" msgstr "èŽ·å¾—æ•°æ® @'%s'çš„SNMP获å–结果 [value='%s'] (index: %s)" #: /var/www/html/cacti/lib/data_query.php:614 #, php-format msgid "Executing SNMP get for data @ '%s' [value='$value']" msgstr "为数æ®@ '%s' [value='$value'] 执行SNMP抓å–" #: /var/www/html/cacti/lib/data_query.php:620 #, php-format msgid "Click to show Data Query output for field '%s'" msgstr "点击以显示字段'%s'çš„æ•°æ®æŸ¥è¯¢è¾“出" #: /var/www/html/cacti/lib/data_query.php:622 #, php-format msgid "Located input field '%s' [walk]" msgstr "ä½äºŽè¾“å…¥æ '%s' [walk]" #: /var/www/html/cacti/lib/data_query.php:642 #, php-format msgid "Executing SNMP walk for data @ '%s'" msgstr "为数æ®@'%s'执行SNMP walk" #: /var/www/html/cacti/lib/data_query.php:691 #, php-format msgid "Found item [%s='%s'] index: %s [from %s]" msgstr "找到的项目 [%s='%s'] 索引: %s [æ¥è‡ª %s]" #: /var/www/html/cacti/lib/data_query.php:729 #, php-format msgid "Found OCTET STRING '%s' decoded value: '%s'" msgstr "找到 OCTET STRING '%s' è§£ç å€¼: '%s'" #: /var/www/html/cacti/lib/data_query.php:735 #, php-format msgid "Found item [%s='%s'] index: %s [from regexp oid parse]" msgstr "找到项目 [%s='%s'] 索引: %s [æ¥è‡ª regexp oid parse]" #: ../lib/functions.php:676 #, php-format msgid "Error %s is not readable" msgstr "错误%sä¸å¯è¯»" #: ../lib/functions.php:1818 #: ../lib/functions.php:1823 msgid "Logged in as" msgstr "当å‰ç™»å½•用户为:" #: ../lib/functions.php:1818 msgid "Login as Regular User" msgstr "以普通用户身份登录" #: ../lib/functions.php:1818 msgid "guest" msgstr "guest" #: ../lib/functions.php:1825 msgid "Edit Profile" msgstr "编辑个人资料" #: ../lib/functions.php:1827 msgid "Logout" msgstr "退出" #: ../lib/functions.php:1844 #: ../lib/functions.php:1850 msgid "User Profile (Edit)" msgstr "用户资料(编辑)" #: ../lib/functions.php:1862 #: ../lib/functions.php:1868 msgid "Tree Mode" msgstr "树模å¼" #: ../lib/functions.php:1874 msgid "List Mode" msgstr "列表模å¼" #: ../lib/functions.php:1896 #: ../lib/functions.php:1902 #: ../lib/functions.php:2756 #: ../lib/html.php:1299 #: ../lib/html.php:1371 #: ../links.php:344 #: ../user_admin.php:1653 #: ../user_group_admin.php:1374 msgid "Console" msgstr "控制å°" #: ../lib/functions.php:1914 #: ../lib/functions.php:1956 #: ../lib/functions.php:1974 #: ../lib/functions.php:2028 #: ../lib/functions.php:2040 #: ../lib/functions.php:2052 #: ../lib/functions.php:2088 #: ../lib/functions.php:2106 #: ../lib/functions.php:2124 #: ../lib/functions.php:2142 #: ../lib/functions.php:2160 #: ../lib/functions.php:2184 #: ../lib/functions.php:2220 #: ../lib/functions.php:2340 #: ../lib/functions.php:2364 #: ../lib/functions.php:2382 #: ../lib/functions.php:2400 #: ../lib/functions.php:2412 #: ../lib/functions.php:2514 #: ../lib/functions.php:2538 #: ../lib/functions.php:2556 #: ../lib/functions.php:2574 #: ../lib/functions.php:2592 #: ../lib/functions.php:2616 msgid "(Edit)" msgstr "(编辑)" #: ../lib/functions.php:1938 msgid "Create New Graphs" msgstr "创建新图形" #: ../lib/functions.php:1944 msgid "Create Graphs from Data Query" msgstr "ä»Žæ•°æ®æŸ¥è¯¢åˆ›å»ºå›¾å½¢" #: ../lib/functions.php:1962 #: ../lib/functions.php:1980 #: ../lib/functions.php:2076 #: ../lib/functions.php:2166 #: ../lib/functions.php:2190 #: ../lib/functions.php:2346 msgid "(Remove)" msgstr "(删除)" #: ../lib/functions.php:1998 #: ../lib/functions.php:2004 #: ../lib/functions.php:2010 #: ../lib/functions.php:2016 #: ../lib/functions.php:2280 msgid "View Cacti Log" msgstr "查看Cacti日志" #: ../lib/functions.php:2022 msgid "Graph Trees" msgstr "图形树" #: ../lib/functions.php:2154 msgid "Round Robin Archives" msgstr "循环档案" #: ../lib/functions.php:2196 msgid "Data Input Fields" msgstr "æ•°æ®å¯¼å…¥é¡¹" #: ../lib/functions.php:2202 #: ../lib/functions.php:2232 msgid "(Remove Item)" msgstr "(除去项目)" #: ../lib/functions.php:2250 msgid "List unused Files" msgstr "列出未使用的文件" #: ../lib/functions.php:2262 #: ../lib/functions.php:2274 #: ../utilities.php:1780 msgid "View Poller Cache" msgstr "查看Poller缓存" #: ../lib/functions.php:2268 #: ../utilities.php:1784 msgid "View Data Query Cache" msgstr "æŸ¥çœ‹æ•°æ®æŸ¥è¯¢ç¼“å­˜" #: ../lib/functions.php:2286 #: ../utilities.php:1168 msgid "Clear Cacti Log" msgstr "清除Cacti日志" #: ../lib/functions.php:2292 #: ../utilities.php:1773 msgid "View User Log" msgstr "查看用户登录日志" #: ../lib/functions.php:2298 msgid "Clear User Log" msgstr "清除用户日志" #: ../lib/functions.php:2304 #: ../utilities.php:1764 msgid "Technical Support" msgstr "技术支æŒ" #: ../lib/functions.php:2310 #: ../utilities.php:1877 msgid "Boost Status" msgstr "增强状æ€" #: ../lib/functions.php:2316 msgid "View SNMP Agent Cache" msgstr "查看SNMP代ç†ç¼“å­˜" #: ../lib/functions.php:2322 msgid "View SNMP Agent Notification Log" msgstr "查看SNMP代ç†é€šçŸ¥æ—¥å¿—" #: ../lib/functions.php:2352 msgid "VDEF Items" msgstr "VDEF Items" #: ../lib/functions.php:2358 msgid "View SNMP Notification Receivers" msgstr "查看SNMP通知接收器" #: ../lib/functions.php:2370 msgid "Cacti Settings" msgstr "Cacti 设置" #: /var/www/html/cacti/lib/functions.php:2525 msgid "External Link" msgstr "外部链接" #: ../lib/functions.php:2388 #: ../lib/functions.php:2418 msgid "(Action)" msgstr "(å¯åŠ¨ï¼‰" #: ../lib/functions.php:2436 msgid "Export Results" msgstr "导出结果" #: ../lib/functions.php:2448 #: ../lib/functions.php:2478 #: ../lib/html.php:1320 #: ../lib/html.php:1322 #: ../lib/html.php:1396 msgid "Reporting" msgstr "报告" #: ../lib/functions.php:2454 #: ../lib/functions.php:2484 msgid "Report Add" msgstr "报告添加" #: ../lib/functions.php:2460 #: ../lib/functions.php:2490 msgid "Report Delete" msgstr "报告删除" #: ../lib/functions.php:2466 #: ../lib/functions.php:2496 msgid "Report Edit" msgstr "报告编辑" #: ../lib/functions.php:2472 #: ../lib/functions.php:2502 msgid "Report Edit Item" msgstr "报告编辑项目" #: ../lib/functions.php:2526 msgid "Color Template Items" msgstr "颜色模æ¿é¡¹ç›®" #: ../lib/functions.php:2568 msgid "Aggregate Items" msgstr "èšåˆé¡¹ç›®" #: ../lib/functions.php:2604 msgid "Graph Rule Items" msgstr "图规则项目" #: ../lib/functions.php:2628 msgid "Tree Rule Items" msgstr "树规则项目" #: ../lib/functions.php:2713 msgid "Leaf" msgstr "Leaf" #: ../lib/functions.php:2727 msgid "Non Query Based" msgstr "Non Query Based" #: ../lib/functions.php:3435 msgid "Mailer Error: No TO address set!!
    If using the Test Mail link, please set the Alert e-mail setting." msgstr "邮件程åºé”™è¯¯ï¼šæ²¡æœ‰ 至 地å€è®¾ç½®!!如果使用邮件测试 链接,请设置 报警邮件 设置。" #: ../lib/functions.php:3747 #, php-format msgid "Authentication failed: %s" msgstr "验è¯å¤±è´¥ï¼š %s" #: ../lib/functions.php:3751 #, php-format msgid "HELO failed: %s" msgstr "HELO失败:%s" #: ../lib/functions.php:3754 #, php-format msgid "Connect failed: %s" msgstr "连接失败: %s" #: ../lib/functions.php:3757 msgid "SMTP error: " msgstr "SMTP错误:" #: ../lib/functions.php:3770 msgid "This is a test message generated from Cacti. This message was sent to test the configuration of your Mail Settings." msgstr "这是从Cacti生æˆçš„æµ‹è¯•消æ¯ã€‚ å‘逿­¤é‚®ä»¶æ˜¯ä¸ºäº†æµ‹è¯•您的邮件设置的é…置。" #: ../lib/functions.php:3771 msgid "Your email settings are currently set as follows" msgstr "您的电å­é‚®ä»¶è®¾ç½®ç›®å‰è®¾ç½®å¦‚下" #: ../lib/functions.php:3772 msgid "Method" msgstr "方法" #: ../lib/functions.php:3774 msgid "Checking Configuration...
    " msgstr "检查é…ç½®...
    " #: ../lib/functions.php:3781 msgid "PHP's Mailer Class" msgstr "PHP的邮件类" #: ../lib/functions.php:3787 msgid "Method: SMTP" msgstr "方法:SMTP" #: ../lib/functions.php:3802 msgid "Not Shown for Security Reasons" msgstr "由于安全原因没有显示" #: ../lib/functions.php:3803 msgid "Security" msgstr "安全" #: ../lib/functions.php:3811 msgid "Ping Results:" msgstr "Ping结果:" #: ../lib/functions.php:3820 msgid "Bypassed" msgstr "Bypassed" #: ../lib/functions.php:3828 msgid "Creating Message Text..." msgstr "åˆ›å»ºæ¶ˆæ¯æ–‡æœ¬..." #: ../lib/functions.php:3831 msgid "Sending Message..." msgstr "正在å‘逿¶ˆæ¯..." #: ../lib/functions.php:3835 msgid "Cacti Test Message" msgstr "Cacti 测试消æ¯" #: ../lib/functions.php:3837 msgid "Success!" msgstr "æˆåŠŸï¼" #: ../lib/functions.php:3840 msgid "Message Not Sent due to ping failure." msgstr "由于ping失败,邮件未å‘é€ã€‚" #: ../lib/html.php:233 msgid "Data Query:" msgstr "æ•°æ®æŸ¥è¯¢ï¼š" #: ../lib/html.php:293 msgid "CSV Export of Graph Data" msgstr "CSVæ•°æ®å¯¼å‡º" #: ../lib/html.php:296 msgid "Click to view just this Graph in Real-time" msgstr "点击å³å¯å®žæ—¶æŸ¥çœ‹æ­¤å›¾" #: ../lib/html.php:299 msgid "Kill Spikes in Graphs" msgstr "æ€æ­»å›¾ä¸­çš„å°–å³°" #: ../lib/html.php:336 msgid "Previous" msgstr "上一页" #: ../lib/html.php:339 #, php-format msgid "%d to %d of %s [ %s ]" msgstr " %s [ %s ] 中 %d 到 %d" #: ../lib/html.php:348 #, php-format msgid "All %d %s" msgstr "全部 %d %s" #: ../lib/html.php:354 #, php-format msgid "No %s Found" msgstr "找ä¸åˆ°%s" #: ../lib/html.php:859 msgid "Alpha %" msgstr "alpha %" #: ../lib/html.php:900 msgid "No Task" msgstr "没有任务" #: ../lib/html.php:1144 msgid "Choose an action" msgstr "选择一个动作" #: ../lib/html.php:1154 msgid "Execute Action" msgstr "执行æ“作" #: ../managers.php:41 #: ../managers.php:227 msgid "Logs" msgstr "日志" #: ../lib/html.php:1721 msgid "Nan's" msgstr "Nan's" #: ../lib/html.php:1725 msgid "Standard Deviations" msgstr "标准åå·®" #: ../lib/html.php:1727 #, php-format msgid "%s Standard Deviations" msgstr "%s 标准åå·®" #: ../lib/html.php:1737 msgid "Variance Outliers" msgstr "差异异常值" #: ../lib/html.php:1739 #, php-format msgid "%d Outliers" msgstr "%d 异常值" #: ../lib/html.php:1743 msgid "Kills Per RRA" msgstr "æ€æ­»æ¯ä¸ªRRA" #: ../lib/html.php:1745 #, php-format msgid "%d Spikes" msgstr "%d å°–å³°" #: ../lib/html.php:1752 msgid "Remove StdDev" msgstr "删除标准设置" #: ../lib/html.php:1753 msgid "Remove Variance" msgstr "消除差异" #: ../lib/html.php:1754 msgid "Gap Fill Range" msgstr "å·®è·å¡«å……范围" #: ../lib/html.php:1755 msgid "Float Range" msgstr "浮动范围" #: ../lib/html.php:1756 msgid "Dry Run StdDev" msgstr "å¹²è¿è¡Œæ ‡å‡†è®¾ç½®" #: ../lib/html.php:1757 msgid "Dry Run Variance" msgstr "å¹²è¿è¡Œå·®å¼‚" #: ../lib/html.php:1758 msgid "Dry Run Gap Fill Range" msgstr "å¹²è¿è¡Œé—´éš™å¡«å……范围" #: ../lib/html.php:1759 msgid "Dry Run Float Range" msgstr "å¹²è¿è¡Œæµ®åŠ¨èŒƒå›´" #: ../lib/html_filter.php:82 msgid "Apply filter to table" msgstr "将过滤器应用于表" #: ../lib/html_filter.php:87 msgid "Reset filter to default values" msgstr "将过滤器é‡ç½®ä¸ºé»˜è®¤å€¼" #: ../lib/html_form.php:509 msgid "File Found" msgstr "找到文件" #: ../lib/html_form.php:511 msgid "Path is a Directory and not a File" msgstr "è·¯å¾„æ˜¯ä¸€ä¸ªç›®å½•è€Œä¸æ˜¯æ–‡ä»¶" #: ../lib/html_form.php:515 msgid "File is Not Found" msgstr "文件未找到" #: ../lib/html_form.php:518 msgid "Enter a valid file path" msgstr "输入有效的文件路径" #: ../lib/html_form.php:554 msgid "Directory Found" msgstr "找到目录" #: ../lib/html_form.php:556 msgid "Path is a File and not a Directory" msgstr "è·¯å¾„æ˜¯ä¸€ä¸ªæ–‡ä»¶ï¼Œè€Œä¸æ˜¯ä¸€ä¸ªç›®å½•" #: ../lib/html_form.php:560 msgid "Directory is Not found" msgstr "目录未找到" #: ../lib/html_form.php:563 msgid "Enter a valid directory path" msgstr "输入一个有效的目录路径" #: /var/www/html/cacti/lib/html_form.php:1040 #, php-format msgid "Cacti Color (%s)" msgstr "Cacti 颜色 (%s)" #: ../lib/html_form.php:1056 msgid "NO FONT VERIFICATION POSSIBLE" msgstr "å¯èƒ½æ²¡æœ‰å­—体验è¯" #: ../lib/html_form_template.php:562 #: ../lib/html_form_template.php:577 #, php-format msgid "Data Query Data Sources must be created through %s" msgstr "æ•°æ®æŸ¥è¯¢æ•°æ®æºå¿…须通过%s创建" #: ../lib/html_graph.php:197 #: ../lib/html_tree.php:649 msgid "Save the current Graphs, Columns, Thumbnail, Preset, and Timeshift preferences to your profile" msgstr "将当å‰çš„图形,列,缩略图,预设和时间å移首选项ä¿å­˜åˆ°æ‚¨çš„é…置文件" #: ../lib/html_graph.php:226 #: ../lib/html_tree.php:672 msgid "Columns" msgstr "列" #: ../lib/html_graph.php:230 #: ../lib/html_tree.php:676 #, php-format msgid "%d Column" msgstr "%d 列" #: ../lib/html_graph.php:239 #: ../lib/html_reports.php:125 #: ../lib/html_tree.php:685 msgid "Thumbnails" msgstr "缩略图" #: ../lib/html_graph.php:261 #: ../lib/html_tree.php:707 msgid "Custom" msgstr "自定义" #: ../lib/html_graph.php:282 #: ../lib/html_reports.php:1479 #: ../lib/html_reports.php:1490 #: ../lib/html_tree.php:728 msgid "From" msgstr "从" #: ../lib/html_graph.php:288 #: ../lib/html_tree.php:734 msgid "Start Date Selector" msgstr "开始日期选择器" #: ../lib/html_graph.php:291 #: ../lib/html_reports.php:1480 #: ../lib/html_reports.php:1491 #: ../lib/html_tree.php:737 msgid "To" msgstr "至" #: ../lib/html_graph.php:297 #: ../lib/html_tree.php:743 msgid "End Date Selector" msgstr "ç»“æŸæ—¥æœŸé€‰æ‹©å™¨" #: ../lib/html_graph.php:300 #: ../lib/html_tree.php:746 msgid "Shift Time Backward" msgstr "å‘åŽç§»åŠ¨æ—¶é—´" #: ../lib/html_graph.php:303 #: ../lib/html_tree.php:749 msgid "Define Shifting Interval" msgstr "定义移动间隔" #: ../lib/html_graph.php:316 #: ../lib/html_tree.php:762 msgid "Shift Time Forward" msgstr "å‘å‰ç§»åŠ¨æ—¶é—´" #: ../lib/html_graph.php:319 #: ../lib/html_tree.php:765 msgid "Refresh selected time span" msgstr "刷新选定的时间跨度" #: ../lib/html_graph.php:322 #: ../lib/html_tree.php:768 msgid "Return to the default time span" msgstr "返回到默认的时间跨度" #: ../lib/html_graph.php:339 msgid "Interval" msgstr "é—´éš”" #: ../lib/html_graph.php:351 #: ../lib/html_tree.php:797 msgid "Stop" msgstr "åœæ­¢" #: /var/www/html/cacti/lib/html_graph.php:423 #: /var/www/html/cacti/lib/html_tree.php:881 #: /var/www/html/cacti/settings.php:284 #: /var/www/html/cacti/settings.php:303 #: /var/www/html/cacti/settings.php:352 msgid "Enter keyword" msgstr "输入关键字" #: ../lib/html_reports.php:35 #: ../lib/html_reports.php:1474 msgid "Report Name" msgstr "报告åç§°" #: ../lib/html_reports.php:37 msgid "New Report" msgstr "新报告" #: ../lib/html_reports.php:38 msgid "Give this Report a descriptive Name" msgstr "给这个报告一个æè¿°æ€§çš„åå­—" #: ../lib/html_reports.php:43 msgid "Enable Report" msgstr "å¯ç”¨æŠ¥å‘Š" #: ../lib/html_reports.php:46 msgid "Check this box to enable this Report." msgstr "选中此框以å¯ç”¨æ­¤æŠ¥å‘Šã€‚" #: ../lib/html_reports.php:51 msgid "Output Formatting" msgstr "输出格å¼" #: ../lib/html_reports.php:56 msgid "Use Custom Format HTML" msgstr "使用自定义格å¼HTML" #: ../lib/html_reports.php:59 msgid "Check this box if you want to use custom html and CSS for the report." msgstr "如果您想为报告使用自定义HTMLå’ŒCSS,请选中此框。" #: ../lib/html_reports.php:64 msgid "Format File to Use" msgstr "æ ¼å¼åŒ–文件以使用" #: ../lib/html_reports.php:67 msgid "" "Choose the custom html wrapper and CSS file to use. This file contains both html and CSS to wrap around your report.\n" "\t\tIf it contains more than simply CSS, you need to place a special tag inside of the file. This format tag will be replaced by the report content. These files are located in the 'formats' directory." msgstr "" "选择è¦ä½¿ç”¨çš„自定义html包装器和CSS文件。 此文件包å«htmlå’ŒCSS以环绕您的报告。\n" "\t\t如果它包å«çš„ä¸ä»…仅是CSS,则需è¦åœ¨æ–‡ä»¶ä¸­æ”¾ç½®ä¸€ä¸ªç‰¹æ®Šçš„æ ‡è®°ã€‚ è¿™ä¸ªæ ¼å¼æ ‡ç­¾å°†è¢«æŠ¥å‘Šå†…容替æ¢ã€‚ 这些文件ä½äºŽâ€œæ ¼å¼â€ç›®å½•中。" #: ../lib/html_reports.php:73 msgid "Default Text Font Size" msgstr "默认文本字体大å°" #: ../lib/html_reports.php:74 msgid "Defines the default font size for all text in the report including the Report Title." msgstr "定义报告中所有文本(包括报告标题)的默认字体大å°ã€‚" #: ../lib/html_reports.php:81 msgid "Default Object Alignment" msgstr "默认对象对é½" #: ../lib/html_reports.php:82 msgid "Defines the default Alignment for Text and Graphs." msgstr "å®šä¹‰æ–‡æœ¬å’Œå›¾å½¢çš„é»˜è®¤å¯¹é½æ–¹å¼ã€‚" #: ../lib/html_reports.php:89 msgid "Graph Linked" msgstr "图表链接" #: ../lib/html_reports.php:92 msgid "Should the Graphs be linked back to the Cacti site?" msgstr "图表是å¦åº”该链接到Cacti网站?" #: ../lib/html_reports.php:96 msgid "Graph Settings" msgstr "图形设定" #: ../lib/html_reports.php:101 msgid "Graph Columns" msgstr "图表专æ " #: ../lib/html_reports.php:105 msgid "The number of Graph columns." msgstr "图表列的数é‡ã€‚" #: ../lib/html_reports.php:113 msgid "The Graph width in pixels." msgstr "图形宽度(以åƒç´ ä¸ºå•ä½ï¼‰" #: ../lib/html_reports.php:121 msgid "The Graph height in pixels." msgstr "图形高度(以åƒç´ ä¸ºå•ä½ï¼‰ã€‚" #: ../lib/html_reports.php:128 msgid "Should the Graphs be rendered as Thumbnails?" msgstr "图表是å¦åº”呈现为缩略图?" #: ../lib/html_reports.php:132 msgid "Email Frequency" msgstr "电å­é‚®ä»¶é¢‘率" #: ../lib/html_reports.php:137 msgid "Next Timestamp for Sending Mail Report" msgstr "下一个å‘é€é‚®ä»¶æŠ¥å‘Šçš„æ—¶é—´æˆ³" #: ../lib/html_reports.php:138 msgid "Start time for [first|next] mail to take place. All future mailing times will be based upon this start time. A good example would be 2:00am. The time must be in the future. If a fractional time is used, say 2:00am, it is assumed to be in the future." msgstr "开始时间[first | next]邮件å‘生。 所有未æ¥çš„邮寄时间将基于这个开始时间。 ä¸€ä¸ªå¾ˆå¥½çš„ä¾‹å­æ˜¯å‡Œæ™¨2点。 时间必须在未æ¥ã€‚ 如果使用了一个分数时间,比如凌晨2点,那么å‡å®šæ˜¯åœ¨å°†æ¥ã€‚" #: ../lib/html_reports.php:146 msgid "Report Interval" msgstr "报告间隔" #: ../lib/html_reports.php:147 msgid "Defines a Report Frequency relative to the given Mailtime above." msgstr "定义相对于上é¢ç»™å®šMailtime的报告频率" #: ../lib/html_reports.php:148 msgid "e.g. 'Week(s)' represents a weekly Reporting Interval." msgstr "例如 “周â€ä»£è¡¨æ¯å‘¨æŠ¥å‘Šé—´éš”。" #: ../lib/html_reports.php:155 msgid "Interval Frequency" msgstr "间隔频率" #: ../lib/html_reports.php:156 msgid "Based upon the Timespan of the Report Interval above, defines the Frequency within that Interval." msgstr "基于以上报告间隔的时间跨度,定义该间隔内的频率。" #: ../lib/html_reports.php:157 msgid "e.g. If the Report Interval is 'Month(s)', then '2' indicates Every '2 Month(s) from the next Mailtime.' Lastly, if using the Month(s) Report Intervals, the 'Day of Week' and the 'Day of Month' are both calculated based upon the Mailtime you specify above." msgstr "例如 如果报告间隔是'月',那么'2'表示æ¥è‡ªä¸‹ä¸€ä¸ªé‚®ä»¶æ—¶é—´çš„æ¯ä¸ª'2个月'。 最åŽï¼Œå¦‚果使用月份报告间隔,则“上周日期â€å’Œâ€œä¸Šä¸ªæœˆçš„上下文â€å‡æ ¹æ®æ‚¨åœ¨ä¸Šé¢æŒ‡å®šçš„邮件时间进行计算。" #: ../lib/html_reports.php:165 msgid "Email Sender/Receiver Details" msgstr "电å­é‚®ä»¶å‘件人/收件人详细信æ¯" #: ../lib/html_reports.php:170 msgid "Subject" msgstr "主题" #: ../lib/html_reports.php:172 msgid "Cacti Report" msgstr "Cacti 报告" #: ../lib/html_reports.php:173 msgid "This value will be used as the default Email subject. The report name will be used if left blank." msgstr "这个值将被用作默认的Email主题。 如果留空,报告å称将被使用。" #: ../lib/html_reports.php:181 msgid "This Name will be used as the default E-mail Sender" msgstr "æ­¤å称将用作默认电å­é‚®ä»¶å‘件人" #: ../lib/html_reports.php:189 msgid "This Address will be used as the E-mail Senders address" msgstr "此地å€å°†ç”¨ä½œç”µå­é‚®ä»¶å‘件人地å€" #: ../lib/html_reports.php:194 msgid "To Email Address(es)" msgstr "å‘é€åˆ°ç”µå­é‚®ä»¶åœ°å€" #: ../lib/html_reports.php:200 msgid "Please separate multiple addresses by comma (,)" msgstr "请用逗å·ï¼ˆï¼Œï¼‰åˆ†éš”多个地å€" #: ../lib/html_reports.php:205 msgid "BCC Address(es)" msgstr "BCC地å€" #: ../lib/html_reports.php:211 msgid "Blind carbon copy. Please separate multiple addresses by comma (,)" msgstr "盲目的抄é€ã€‚ 请用逗å·ï¼ˆï¼Œï¼‰åˆ†éš”多个地å€" #: ../lib/html_reports.php:216 msgid "Image attach type" msgstr "图åƒé™„加类型" #: ../lib/html_reports.php:219 msgid "Select one of the given Types for the Image Attachments" msgstr "为图åƒé™„件选择一ç§ç»™å®šçš„类型" #: ../lib/html_reports.php:271 msgid "Item Type to be added." msgstr "è¦æ·»åŠ çš„é¡¹ç›®ç±»åž‹ã€‚" #: ../lib/html_reports.php:277 msgid "Graph Tree" msgstr "图形树" #: ../lib/html_reports.php:281 msgid "Select a Tree to use." msgstr "选择一个树æ¥ä½¿ç”¨ã€‚" #: ../lib/html_reports.php:287 msgid "Graph Tree Branch" msgstr "图树分支" #: ../lib/html_reports.php:291 msgid "Select a Tree Branch to use." msgstr "选择一个树分支æ¥ä½¿ç”¨ã€‚" #: ../lib/html_reports.php:309 msgid "Cascade to Branches" msgstr "级è”到分支" #: ../lib/html_reports.php:312 msgid "Should all children branch Graphs be rendered?" msgstr "是å¦åº”该渲染所有å­åˆ†æ”¯å›¾å½¢ï¼Ÿ" #: ../lib/html_reports.php:316 msgid "Graph Name Regular Expression" msgstr "图忭£åˆ™è¡¨è¾¾å¼" #: ../lib/html_reports.php:319 msgid "A Perl compatible regular expression (REGEXP) used to select graphs to include from the tree." msgstr "一个Perl兼容的正则表达å¼ï¼ˆREGEXP),用于从树中选择è¦åŒ…å«çš„图形。" #: ../lib/html_reports.php:329 msgid "Select a Device Template to use." msgstr "选择è¦ä½¿ç”¨çš„设备模æ¿ã€‚" #: ../lib/html_reports.php:338 msgid "Select a Device to specify a Graph" msgstr "é€‰æ‹©ä¸€ä¸ªè®¾å¤‡æ¥æŒ‡å®šä¸€ä¸ªå›¾" #: ../lib/html_reports.php:348 msgid "Select a Graph Template for the host" msgstr "为主机选择一个图形模æ¿" #: ../lib/html_reports.php:358 msgid "The Graph to use for this report item." msgstr "用于此报表项目的图表。" #: ../lib/html_reports.php:368 msgid "Graph End Time is always set to Cacti's schedule." msgstr "å›¾è¡¨ç»“æŸæ—¶é—´å§‹ç»ˆè®¾ç½®ä¸ºCacti的时间表。" #: ../lib/html_reports.php:369 msgid "Graph Start Time equals Graph End Time minus given timespan" msgstr "å›¾å¼€å§‹æ—¶é—´ç­‰äºŽå›¾è¡¨ç»“æŸæ—¶é—´å‡åŽ»ç»™å®šçš„æ—¶é—´è·¨åº¦" #: ../lib/html_reports.php:374 #: ../lib/html_reports.php:1214 msgid "Alignment" msgstr "对é½" #: ../lib/html_reports.php:377 msgid "Alignment of the Item" msgstr "项目对é½" #: ../lib/html_reports.php:382 msgid "Fixed Text" msgstr "固定文本" #: ../lib/html_reports.php:385 msgid "Enter descriptive Text" msgstr "输入æè¿°æ€§æ–‡å­—" #: ../lib/html_reports.php:390 #: ../lib/html_reports.php:1215 msgid "Font Size" msgstr "字体大å°" #: ../lib/html_reports.php:394 msgid "Font Size of the Item" msgstr "项目的字体大å°" #: ../lib/html_reports.php:457 msgid "Date/Time moved to the same time Tomorrow" msgstr "日期/时间移到明天åŒä¸€æ—¶é—´" #: ../lib/html_reports.php:640 msgid "You must select at least one Report." msgstr "您必须至少选择一个报告。" #: ../lib/html_reports.php:648 msgid "Click 'Continue' to delete the following Report(s)." msgstr "点击“继续â€åˆ é™¤ä»¥ä¸‹æŠ¥å‘Šã€‚" #: ../lib/html_reports.php:655 msgid "Click 'Continue' to take ownership of the following Report(s)." msgstr "点击“继续â€å³å¯èŽ·å¾—ä»¥ä¸‹æŠ¥å‘Šçš„æ‰€æœ‰æƒã€‚" #: ../lib/html_reports.php:662 msgid "Click 'Continue' to duplicate the following Report(s). You may optionally change the title for the new Reports" msgstr "点击“继续â€å¤åˆ¶ä¸‹é¢çš„æŠ¥å‘Šã€‚ 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°æŠ¥å‘Šçš„æ ‡é¢˜" #: ../lib/html_reports.php:664 msgid "Name Format:" msgstr "åç§°æ ¼å¼ï¼š" #: ../lib/html_reports.php:674 msgid "Click 'Continue' to enable the following Report(s)." msgstr "点击“继续â€ä»¥å¯ç”¨ä»¥ä¸‹æŠ¥å‘Šã€‚" #: ../lib/html_reports.php:676 msgid "Please be certain that those Report(s) have successfully been tested first!" msgstr "请确定这些报告已æˆåŠŸé€šè¿‡æµ‹è¯•ï¼" #: ../lib/html_reports.php:682 msgid "Click 'Continue' to disable the following Reports." msgstr "点击“继续â€ä»¥ç¦ç”¨ä»¥ä¸‹æŠ¥å‘Šã€‚" #: ../lib/html_reports.php:689 msgid "Click 'Continue' to send the following Report(s) now." msgstr "点击“继续â€ç«‹å³å‘é€ä»¥ä¸‹æŠ¥å‘Šã€‚" #: ../lib/html_reports.php:735 #, php-format msgid "Unable to send Report '%d'. Please set destination e-mail addresses" msgstr "无法å‘é€æŠ¥å‘Š'%d'。 请设置目标电å­é‚®ä»¶åœ°å€" #: ../lib/html_reports.php:740 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail subject" msgstr "无法å‘é€æŠ¥å‘Š '%s'。 请设置电å­é‚®ä»¶ä¸»é¢˜" #: ../lib/html_reports.php:745 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail From Name" msgstr "无法å‘é€æŠ¥å‘Š '%s'。 请设置电å­é‚®ä»¶çš„æ¥è‡ªçš„å§“å" #: ../lib/html_reports.php:750 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail from address" msgstr "无法å‘é€æŠ¥å‘Š '%s'。 请设置电å­é‚®ä»¶æ¥æºåœ°å€" #: ../lib/html_reports.php:806 #, php-format msgid "Report Item [edit Report: %s]" msgstr "报告项目[编辑报告:%s]" #: ../lib/html_reports.php:808 #, php-format msgid "Report Item [new Report: %s]" msgstr "报告项目[新报告:%s]" #: ../lib/html_reports.php:1059 #: ../user_admin.php:1937 #, php-format msgid "[edit: %s]" msgstr "[编辑: %s]" #: ../lib/html_reports.php:1060 msgid "Events" msgstr "事件" #: ../lib/html_reports.php:1062 #: ../lib/import.php:1803 #: ../user_admin.php:1939 msgid "[new]" msgstr "[新建]" #: ../lib/html_reports.php:1094 msgid "Send Report" msgstr "å‘é€æŠ¥å‘Š" #: ../lib/html_reports.php:1172 msgid "Scheduled Events" msgstr "计划的事件" #: ../lib/html_reports.php:1183 msgid "Report Preview" msgstr "报告预览" #: ../lib/html_reports.php:1212 msgid "Item Details" msgstr "项目细节" #: ../lib/html_reports.php:1213 msgid "Timespan" msgstr "时间跨度" #: ../lib/html_reports.php:1252 msgid "(All Branches)" msgstr "(所有分支)" #: ../lib/html_reports.php:1254 msgid "(Current Branch)" msgstr "(当å‰åˆ†æ”¯ï¼‰" #: ../lib/html_reports.php:1297 msgid "No Report Items" msgstr "没有报告项目" #: ../lib/html_reports.php:1371 msgid "Administrator Level" msgstr "管ç†å‘˜çº§åˆ«" #: ../lib/html_reports.php:1371 #, php-format msgid "Reports [%s]" msgstr "报告[%s]" #: ../lib/html_reports.php:1371 msgid "User Level" msgstr "用户级别" #: ../lib/html_reports.php:1466 msgid "Reports" msgstr "报告" #: ../lib/html_reports.php:1475 #: ../tree.php:1562 msgid "Owner" msgstr "所有者" #: ../lib/html_reports.php:1476 #: ../lib/html_reports.php:1487 msgid "Frequency" msgstr "频率" #: ../lib/html_reports.php:1477 #: ../lib/html_reports.php:1488 msgid "Last Run" msgstr "上次è¿è¡Œ" #: ../lib/html_reports.php:1478 #: ../lib/html_reports.php:1489 msgid "Next Run" msgstr "下一次è¿è¡Œ" #: ../lib/html_reports.php:1486 msgid "Report Title" msgstr "报告标题" #: ../lib/html_reports.php:1517 msgid "Report Disabled - No Owner" msgstr "报告已ç¦ç”¨ - 没有所有者" #: /var/www/html/cacti/lib/html_reports.php:1564 msgid "Every" msgstr "æ¯" #: ../lib/html_reports.php:1527 msgid "Multiple" msgstr "多个" #: ../lib/html_reports.php:1528 msgid "Invalid" msgstr "无效" #: ../lib/html_reports.php:1535 msgid "No Reports Found" msgstr "没有å‘现报告" #: ../lib/html_tree.php:580 #: ../lib/html_tree.php:583 #: ../lib/html_tree.php:586 msgid "Graph Template:" msgstr "图形模æ¿ï¼š" #: ../lib/html_tree.php:591 #: ../lib/reports.php:886 msgid "Tree:" msgstr "树:" #: ../lib/html_tree.php:592 #: ../lib/reports.php:891 msgid "Leaf:" msgstr "剩下:" #: ../lib/html_tree.php:596 msgid "Applied" msgstr "应用" #: ../lib/html_tree.php:596 msgid "Filter" msgstr "过滤" #: ../lib/html_tree.php:596 msgid "Graph Filters" msgstr "图表过滤器" #: ../lib/html_tree.php:642 msgid "Set/Refresh Filter" msgstr "设置/刷新过滤器" #: /var/www/html/cacti/lib/html_utility.php:229 msgid "Selected" msgstr "选" #: ../lib/html_utility.php:419 #: ../lib/html_utility.php:635 #, php-format msgid "The search term \"%s\" is not valid. Error is %s" msgstr "æœç´¢å­—è¯ \"%s\"无效。 错误是%s" #: ../lib/html_utility.php:766 msgid "There was an internal error!" msgstr "有一个内部错误ï¼" #: ../lib/html_utility.php:767 msgid "Backtrack limit was exhausted!" msgstr "回溯æžé™å·²ç»è€—å°½ï¼" #: ../lib/html_utility.php:768 msgid "Recursion limit was exhausted!" msgstr "递归é™åˆ¶å·²ç»è€—å°½ï¼" #: ../lib/html_utility.php:769 msgid "Bad UTF-8 error!" msgstr "UTF-8错误ï¼" #: ../lib/html_utility.php:770 msgid "Bad UTF-8 offset error!" msgstr "UTF-8å移错误ï¼" #: /var/www/html/cacti/lib/html_validate.php:50 #, php-format msgid "Validation error for variable %s with a value of %s. See backtrace below for more details." msgstr "å˜é‡ %s 的验è¯é”™è¯¯å€¼ä¸º %s. 有关更多详细信æ¯ï¼Œè¯·å‚阅下é¢çš„回溯。" #: /var/www/html/cacti/lib/html_validate.php:57 msgid "Validation Error" msgstr "验è¯é”™è¯¯" #: ../lib/import.php:229 msgid "written" msgstr "写入" #: ../lib/import.php:231 msgid "could not open" msgstr "打ä¸å¼€" #: ../lib/import.php:237 msgid "not exists" msgstr "ä¸å­˜åœ¨" #: ../lib/import.php:240 #: ../lib/import.php:244 msgid "not writable" msgstr "ä¸å¯å†™" #: ../lib/import.php:246 msgid "writable" msgstr "å¯å†™" #: /var/www/html/cacti/lib/import.php:1637 msgid "Unknown Field" msgstr "未知字段" #: ../lib/import.php:1764 msgid "Import Preview Results" msgstr "导入预览结果" #: ../lib/import.php:1764 msgid "Import Results" msgstr "导入结果" #: ../lib/import.php:1768 msgid "Cacti would make the following changes if the Package was imported:" msgstr "如果导入包,Cactiå°†åšå‡ºä»¥ä¸‹æ›´æ”¹ï¼š" #: ../lib/import.php:1770 msgid "Cacti has imported the following items for the Package:" msgstr "Cacti å·²ç»ä¸ºåŒ…引用了以下æ¡ç›®ï¼š" #: ../lib/import.php:1773 msgid "Package Files" msgstr "包文件" #: ../lib/import.php:1777 msgid "[preview] " msgstr "[预览]" #: ../lib/import.php:1782 msgid "Cacti would make the following changes if the Template was imported:" msgstr "如果导入模æ¿ï¼ŒCactiå°†åšå‡ºä»¥ä¸‹æ›´æ”¹ï¼š" #: ../lib/import.php:1784 msgid "Cacti has imported the following items for the Template:" msgstr "Cacti已为模æ¿å¯¼å…¥ä»¥ä¸‹é¡¹ç›®ï¼š" #: ../lib/import.php:1793 msgid "[success]" msgstr " [æˆåŠŸ]" #: ../lib/import.php:1795 msgid "[fail]" msgstr "[失败]" #: ../lib/import.php:1797 msgid "[preview]" msgstr "[预览]" #: ../lib/import.php:1801 msgid "[updated]" msgstr "[æ›´æ–°]" #: ../lib/import.php:1805 msgid "[unchanged]" msgstr "[ä¸å˜]" #: ../lib/import.php:1841 msgid "Found Dependency:" msgstr "查找ä¾èµ–:" #: ../lib/import.php:1843 msgid "Unmet Dependency:" msgstr "Unmet Dependency:" #: ../lib/ldap.php:197 #: ../lib/ldap.php:376 msgid "PHP LDAP not enabled" msgstr "PHP LDAP未å¯ç”¨" #: ../lib/ldap.php:204 #: ../lib/ldap.php:384 msgid "No username defined" msgstr "没有定义用户å" #: ../lib/ldap.php:232 msgid "Protocol Error, Unable to set version" msgstr "å议错误,无法设置版本" #: ../lib/ldap.php:243 #: ../lib/ldap.php:448 msgid "Unable to set referrals option" msgstr "无法设置引è选项" #: ../lib/ldap.php:255 #: ../lib/ldap.php:461 msgid "Protocol Error, unable to start TLS communications" msgstr "å议错误,无法å¯åЍTLS通信" #: ../lib/ldap.php:294 #: ../lib/ldap.php:313 msgid "Authentication Success" msgstr "è®¤è¯æˆåŠŸ" #: ../lib/ldap.php:297 msgid "Insufficient access" msgstr "访问ä¸è¶³" #: ../lib/ldap.php:304 msgid "Group DN could not be found to compare" msgstr "找ä¸åˆ°ç»„DN" #: ../lib/ldap.php:321 #: ../lib/ldap.php:505 msgid "Protocol Error" msgstr "å议错误" #: ../lib/ldap.php:325 msgid "Authentication Failure" msgstr "验è¯å¤±è´¥" #: ../lib/ldap.php:329 #: ../lib/ldap.php:515 msgid "Insufficient Access" msgstr "访问ä¸è¶³" #: ../lib/ldap.php:333 #: ../lib/ldap.php:520 msgid "Unable to Connect to Server" msgstr "无法连接到æœåС噍" #: ../lib/ldap.php:337 #: ../lib/ldap.php:525 msgid "Connection Timeout" msgstr "连接超时" #: ../lib/ldap.php:341 #: ../lib/ldap.php:530 msgid "General Bind Error, LDAP result:" msgstr "一般绑定错误,LDAP结果:" #: ../lib/ldap.php:347 msgid "Unable to Create LDAP Object" msgstr "无法创建LDAP对象" #: ../lib/ldap.php:400 #: ../lib/ldap.php:479 msgid "User found" msgstr "用户找到" #: ../lib/ldap.php:407 msgid "Specific DN and Password required" msgstr "需è¦ç‰¹å®šçš„DN和密ç " #: ../lib/ldap.php:436 msgid "Protocol Error, unable to set version" msgstr "å议错误,无法设置版本" #: ../lib/ldap.php:485 msgid "More than one matching user found" msgstr "找到多个匹é…用户" #: /var/www/html/cacti/lib/ldap.php:508 msgid "Unable to find user from DN" msgstr "无法从DN中找到用户" #: ../lib/ldap.php:490 #: ../lib/ldap.php:496 msgid "Unable to find users DN" msgstr "无法找到用户DN" #: ../lib/ldap.php:510 msgid "Invalid Credentials" msgstr "无效è¯ä»¶" #: ../lib/ldap.php:537 msgid "Unable to create LDAP connection object" msgstr "无法创建LDAP连接对象" #: ../lib/ping.php:130 msgid "ICMP Ping timed out" msgstr "ICMP Pingè¶…æ—¶" #: ../lib/ping.php:199 #: ../lib/ping.php:217 #, php-format msgid "ICMP Ping Success (%s ms)" msgstr "ICMP PingæˆåŠŸ (%s ms)" #: ../lib/ping.php:204 #: ../lib/ping.php:222 msgid "ICMP ping Timed out" msgstr "ICMP pingè¶…æ—¶" #: ../lib/ping.php:229 #: ../lib/ping.php:431 #: ../lib/ping.php:536 msgid "Destination address not specified" msgstr "ç›®çš„åœ°åœ°å€æœªæŒ‡å®š" #: ../lib/ping.php:326 #: ../lib/ping.php:446 msgid "default" msgstr "默认" #: /var/www/html/cacti/lib/ping.php:357 #: /var/www/html/cacti/lib/ping.php:366 #: /var/www/html/cacti/lib/ping.php:494 #: /var/www/html/cacti/lib/ping.php:503 msgid "Please upgrade to PHP 5.5.4+ for IPv6 support!" msgstr "请å‡çº§åˆ°PHP 5.5.4+以支æŒIPv6ï¼" #: ../lib/ping.php:378 #, php-format msgid "UDP ping error: %s" msgstr "UDP ping错误:%s" #: ../lib/ping.php:412 #, php-format msgid "UDP Ping Success (%s ms)" msgstr "UDP PingæˆåŠŸ (%s ms)" #: /var/www/html/cacti/lib/ping.php:526 #, php-format msgid "TCP ping: socket_connect(), reason: %s" msgstr "TCP ping:socket_connect(),原因: %s" #: ../lib/ping.php:500 #, php-format msgid "TCP ping: socket_select() failed, reason: %s" msgstr "TCP ping:socket_select()失败,原因:%s" #: ../lib/ping.php:515 #, php-format msgid "TCP Ping Success (%s ms)" msgstr "TCP PingæˆåŠŸ(%s ms)" #: ../lib/ping.php:525 msgid "TCP ping timed out" msgstr "TCP pingè¶…æ—¶" #: ../lib/ping.php:552 msgid "Ping not performed due to setting." msgstr "由于设置Pingä¸èƒ½æ‰§è¡Œã€‚" #: ../lib/plugins.php:479 #, php-format msgid "Plugin %s is required for %s, and it is not installed." msgstr "ä»¶%s是%s所必需的,并未安装。" #: ../lib/plugins.php:486 msgid "Plugin cannot be installed." msgstr "æ’件无法安装。" #: ../lib/plugins.php:763 #: ../lib/plugins.php:770 #: ../plugins.php:267 msgid "Plugin Management" msgstr "æ’件管ç†" #: /var/www/html/cacti/lib/plugins.php:790 #: /var/www/html/cacti/lib/plugins.php:796 #, php-format msgid "Requires: Cacti >= %s" msgstr "需è¦ï¼šCacti >= %s" #: /var/www/html/cacti/lib/plugins.php:793 msgid "Legacy Plugin" msgstr "旧版æ’ä»¶" #: ../lib/reports.php:896 msgid "Host:" msgstr "主机:" #: ../lib/reports.php:901 msgid "Graph:" msgstr "图形:" #: ../lib/reports.php:1002 msgid "(No Graph Template)" msgstr "(无图形模æ¿ï¼‰" #: ../lib/reports.php:1421 msgid "Add to Report" msgstr "添加到报告" #: ../lib/reports.php:1439 msgid "Choose the Report to associate these graphs with. The defaults for alignment will be used for each graph in the list below." msgstr "选择报告以将这些图表与之关è”。 对é½çš„默认值将用于下é¢åˆ—表中的æ¯ä¸ªå›¾å½¢ã€‚" #: ../lib/reports.php:1441 msgid "Report:" msgstr "报告:" #: ../lib/reports.php:1448 msgid "Graph Timespan:" msgstr "图形时间跨度:" #: ../lib/reports.php:1451 msgid "Graph Alignment:" msgstr "图形对é½ï¼š" #: ../lib/reports.php:1533 #, php-format msgid "Created Report Graph Item '%s'" msgstr "创建报表图项 '%s'" #: ../lib/reports.php:1535 #, php-format msgid "Failed Adding Report Graph Item '%s' Already Exists" msgstr "添加已存在报表图形项目'%s'失败" #: ../lib/reports.php:1538 #, php-format msgid "Skipped Report Graph Item '%s' Already Exists" msgstr "跳过已存在的报告图项目 '%s'" #: ../lib/rrd.php:2414 #, php-format msgid "Required RRD step size is '%s'" msgstr "所需的RRD步长为'%s'" #: ../lib/rrd.php:2452 #, php-format msgid "Type for Data Source '%s' should be '%s'" msgstr "æ•°æ®æº'%s' 的类型应该是'%s' " #: ../lib/rrd.php:2457 #, php-format msgid "Heartbeat for Data Source '%s' should be '%s'" msgstr "æ•°æ®æº'%s' 的心跳应该是'%s' " #: ../lib/rrd.php:2465 #, php-format msgid "RRD minimum for Data Source '%s' should be '%s'" msgstr "æ•°æ®æº'%s'çš„RRD最å°å€¼åº”为'%s'" #: ../lib/rrd.php:2489 #, php-format msgid "RRD maximum for Data Source '%s' should be '%s'" msgstr "æ•°æ®æº'%s'çš„RRD最大值应为'%s'" #: ../lib/rrd.php:2499 #, php-format msgid "DS '%s' missing in RRDfile" msgstr " RRD文件中缺少DS '%s' " #: ../lib/rrd.php:2508 #, php-format msgid "DS '%s' missing in Cacti definition" msgstr "DS'%s' 在Cacti定义中缺失" #: ../lib/rrd.php:2525 #: ../lib/rrd.php:2526 #, php-format msgid "Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "Cacti RRA'%s'具有与'%s'相åŒçš„CF /步数(%s,%s)" #: ../lib/rrd.php:2540 #: ../lib/rrd.php:2541 #, php-format msgid "File RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "文件RRA '%s'具有相åŒçš„CF/步(%s,%s)为'%s'" #: ../lib/rrd.php:2572 #, php-format msgid "XFF for cacti RRA id '%s' should be '%s'" msgstr "XAFçš„cacti RRA id'%s' '应该是'%s'" #: ../lib/rrd.php:2576 #, php-format msgid "Number of rows for Cacti RRA id '%s' should be '%s'" msgstr "Cacti RRA id'%s'的行数应该是'%s'" #: ../lib/rrd.php:2592 #, php-format msgid "RRA '%s' missing in RRDfile" msgstr "在RRDfile中缺少RRA '%s'" #: ../lib/rrd.php:2601 #, php-format msgid "RRA '%s' missing in Cacti definition" msgstr "在Cacti定义中缺少RRA'%s' " #: ../lib/rrd.php:2620 msgid "RRD File Information" msgstr "RRD文件信æ¯" #: ../lib/rrd.php:2652 msgid "Data Source Items" msgstr "æ•°æ®æºçš„项目" #: ../lib/rrd.php:2654 msgid "Minimal Heartbeat" msgstr "最å°å¿ƒè·³" #: ../lib/rrd.php:2655 msgid "Min" msgstr "最å°" #: ../lib/rrd.php:2656 msgid "Max" msgstr "最大" #: ../lib/rrd.php:2657 msgid "Last DS" msgstr "上一个 DS" #: ../lib/rrd.php:2659 msgid "Unknown Sec" msgstr "未知" #: ../lib/rrd.php:2687 msgid "Round Robin Archive" msgstr "循环存档" #: ../lib/rrd.php:2690 msgid "Cur Row" msgstr "Cur Row" #: ../lib/rrd.php:2691 msgid "PDP per Row" msgstr "æ¯è¡ŒPDP" #: ../lib/rrd.php:2692 msgid "X Files Factor" msgstr "X Files Factor" #: ../lib/rrd.php:2693 msgid "CDP Prep Value (0)" msgstr "CDP 预设值(0)" #: ../lib/rrd.php:2694 msgid "CDP Unknown Data points (0)" msgstr "CDP未知数æ®ç‚¹ï¼ˆ0)" #: ../lib/rrd.php:2771 #, php-format msgid "rename %s to %s" msgstr "å°†%sé‡å‘½å为%s" #: ../lib/rrd.php:2821 msgid "Error while parsing the XML of rrdtool dump" msgstr "è§£æžrrdtool转储的XML时出错" #: ../lib/rrd.php:2853 #: ../lib/rrd.php:2908 #: ../lib/rrd.php:2964 #, php-format msgid "ERROR while writing XML file: %s" msgstr "写入XML文件时出错:%s" #: ../lib/rrd.php:2864 #: ../lib/rrd.php:2919 #, php-format msgid "ERROR: RRDfile %s not writeable" msgstr "错误:RRD文件%s ä¸å¯å†™å…¥" #: ../lib/rrd.php:2891 #: ../lib/rrd.php:2947 msgid "Error while parsing the XML of RRDtool dump" msgstr "è§£æžRRDtool转储的XML时出错" #: ../lib/rrd.php:3180 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) removed from RRD file\n" msgstr "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) 从RRD文件中删除\n" #: ../lib/rrd.php:3214 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) adding to RRD file\n" msgstr "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f)添加到RRD文件\n" #: /var/www/html/cacti/lib/rrd.php:3376 msgid "Unknown RRDtool Error" msgstr "未知的RRDtool错误" #: /var/www/html/cacti/lib/utility.php:686 msgid "MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions to choose. Make sure you run the very latest release though which fixes a long standing low level networking issue that was causing spine many issues with reliability." msgstr "MySQL 5.6+å’ŒMariaDB 10.0+都是很棒的版本,并且是éžå¸¸å¥½çš„版本å¯ä¾›é€‰æ‹©ã€‚ ç¡®ä¿ä½ è¿è¡Œçš„æ˜¯æœ€æ–°çš„版本,虽然它修å¤äº†ä¸€ä¸ªé•¿æœŸå­˜åœ¨çš„低层网络问题,导致许多å¯é æ€§é—®é¢˜ã€‚" #: ../lib/utility.php:654 #: ../lib/utility.php:692 #, php-format msgid "It is recommended that you enable InnoDB in any %s version greater than 5.1." msgstr "建议您在任何版本大于5.1çš„%s版本中å¯ç”¨InnoDB。" #: /var/www/html/cacti/lib/utility.php:711 msgid "When using Cacti with languages other than English, it is important to use the utf8_general_ci collation type as some characters take more than a single byte. If you are first just now installing Cacti, stop, make the changes and start over again. If your Cacti has been running and is in production, see the internet for instructions on converting your databases and tables if you plan on supporting other languages." msgstr "当将Cacti与英语以外的其他语言一起使用时,使用utf8_general_ci排åºè§„则类型éžå¸¸é‡è¦ï¼Œå› ä¸ºæŸäº›å­—符的å–值䏿­¢ä¸€ä¸ªå­—节。 如果你是第一个刚刚安装Cactiçš„äººï¼Œè¯·åœæ­¢ï¼Œè¿›è¡Œæ›´æ”¹å¹¶é‡æ–°å¼€å§‹ã€‚ 如果您的Cactiå·²ç»è¿è¡Œå¹¶ä¸”正在投入生产,请å‚阅互è”网了解如果您计划支æŒå…¶ä»–è¯­è¨€ï¼Œè¯·è½¬æ¢æ•°æ®åº“和表格。" #: /var/www/html/cacti/lib/utility.php:717 msgid "When using Cacti with languages other than English, it is important to use the utf8 character set as some characters take more than a single byte. If you are first just now installing Cacti, stop, make the changes and start over again. If your Cacti has been running and is in production, see the internet for instructions on converting your databases and tables if you plan on supporting other languages." msgstr "当使用除英语以外的语言的Cacti时,使用utf8字符集éžå¸¸é‡è¦ï¼Œå› ä¸ºæŸäº›å­—符需è¦å¤šä¸ªå­—节。 如果你是第一个刚刚安装Cactiçš„äººï¼Œè¯·åœæ­¢ï¼Œè¿›è¡Œæ›´æ”¹å¹¶é‡æ–°å¼€å§‹ã€‚ 如果您的Cactiå·²ç»è¿è¡Œå¹¶ä¸”正在投入生产,请å‚阅互è”网了解如果您计划支æŒå…¶ä»–è¯­è¨€ï¼Œè¯·è½¬æ¢æ•°æ®åº“和表格。" #: /var/www/html/cacti/lib/utility.php:741 msgid "When using Cacti with languages other than English, it is important to use the utf8mb4_unicode_ci collation type as some characters take more than a single byte." msgstr "当将Cacti与英语以外的其他语言一起使用时,使用utf8mb4_unicode_ci排åºè§„则类型éžå¸¸é‡è¦ï¼Œå› ä¸ºæŸäº›å­—符的å–值䏿­¢ä¸€ä¸ªå­—节。" #: /var/www/html/cacti/lib/utility.php:747 msgid "When using Cacti with languages other than English, it is important ot use the utf8mb4 character set as some characters take more than a single byte." msgstr "å°†Cacti与英语以外的语言一起使用时,使用utf8mb4字符集éžå¸¸é‡è¦ï¼Œå› ä¸ºæŸäº›å­—符需è¦å¤šä¸ªå­—节。" #: /var/www/html/cacti/lib/utility.php:756 #, php-format msgid "Depending on the number of logins and use of spine data collector, %s will need many connections. The calculation for spine is: total_connections = total_processes * (total_threads + script_servers + 1), then you must leave headroom for user connections, which will change depending on the number of concurrent login accounts." msgstr "æ ¹æ®ç™»å½•æ¬¡æ•°å’Œä½¿ç”¨è„ŠæŸ±æ•°æ®æ”¶é›†å™¨ï¼Œï¼…s将需è¦è®¸å¤šè¿žæŽ¥ã€‚ spine的计算是:total_connections = total_processes *(total_threads + script_servers + 1),那么您必须留下用于用户连接的空间,这将根æ®å¹¶å‘ç™»å½•å¸æˆ·çš„æ•°é‡è€Œæ”¹å˜ã€‚" #: /var/www/html/cacti/lib/utility.php:761 #, php-format msgid "If using the Cacti Performance Booster and choosing a memory storage engine, you have to be careful to flush your Performance Booster buffer before the system runs out of memory table space. This is done two ways, first reducing the size of your output column to just the right size. This column is in the tables poller_output, and poller_output_boost. The second thing you can do is allocate more memory to memory tables. We have arbitrarily chosen a recommended value of 10% of system memory, but if you are using SSD disk drives, or have a smaller system, you may ignore this recommendation or choose a different storage engine. You may see the expected consumption of the Performance Booster tables under Console -> System Utilities -> View Boost Status." msgstr "如果使用Cacti Performance Booster并选择内存存储引擎,则在系统内存表空间用完之å‰ï¼Œå¿…é¡»å°å¿ƒåˆ·æ–°Performance Booster缓冲区。 è¿™é€šè¿‡ä¸¤ç§æ–¹å¼å®Œæˆï¼Œé¦–先将输出列的大å°å‡å°åˆ°åˆé€‚的大å°ã€‚ 此列ä½äºŽè¡¨poller_outputå’Œpoller_output_boost中。 ä½ å¯ä»¥åšçš„ç¬¬äºŒä»¶äº‹æ˜¯åˆ†é…æ›´å¤šçš„内存到内存表中。 我们已ç»ä»»æ„选择了系统内存10%的建议值,但是如果您使用的是SSDç£ç›˜é©±åŠ¨å™¨ï¼Œæˆ–è€…ç³»ç»Ÿè¾ƒå°ï¼Œåˆ™å¯ä»¥å¿½ç•¥æ­¤å»ºè®®æˆ–选择其他存储引擎。 您å¯ä»¥åœ¨Console - > System Utilities - > View Boost Status下看到Performance Booster表的预期消耗é‡ã€‚" #: /var/www/html/cacti/lib/utility.php:766 msgid "Keeping the table cache larger means less file open/close operations when using innodb_file_per_table." msgstr "使用innodb_file_per_tableæ—¶ï¼Œä¿æŒè¡¨ç¼“å­˜çš„å¤§å°æ„å‘³ç€æ›´å°‘的文件打开/关闭æ“作。" #: /var/www/html/cacti/lib/utility.php:771 msgid "With Remote polling capabilities, large amounts of data will be synced from the main server to the remote pollers. Therefore, keep this value at or above 16M." msgstr "é€šè¿‡è¿œç¨‹è½®è¯¢åŠŸèƒ½ï¼Œå¤§é‡æ•°æ®å°†ä»Žä¸»æœåŠ¡å™¨åŒæ­¥åˆ°è¿œç¨‹è½®è¯¢å™¨ã€‚ å› æ­¤ï¼Œè¯·å°†æ­¤å€¼ä¿æŒåœ¨16M或以上。" #: /var/www/html/cacti/lib/utility.php:776 msgid "When executing subqueries, having a larger temporary table size, keep those temporary tables in memory." msgstr "执行具有较大临时表大å°çš„å­æŸ¥è¯¢æ—¶ï¼Œè¯·å°†è¿™äº›ä¸´æ—¶è¡¨ä¿å­˜åœ¨å†…存中。" #: /var/www/html/cacti/lib/utility.php:781 msgid "When performing joins, if they are below this size, they will be kept in memory and never written to a temporary file." msgstr "在执行连接时,如果它们低于此大å°ï¼Œå®ƒä»¬å°†è¢«ä¿å­˜åœ¨å†…存中,并且ä¸ä¼šå†™å…¥ä¸´æ—¶æ–‡ä»¶ã€‚" #: /var/www/html/cacti/lib/utility.php:786 #, php-format msgid "When using InnoDB storage it is important to keep your table spaces separate. This makes managing the tables simpler for long time users of %s. If you are running with this currently off, you can migrate to the per file storage by enabling the feature, and then running an alter statement on all InnoDB tables." msgstr "使用InnoDBå­˜å‚¨æ—¶ï¼Œä¿æŒè¡¨ç©ºé—´æ˜¯åˆ†å¼€çš„。 这使得对%s的长时间用户管ç†è¡¨æ ¼å˜å¾—更简å•。 如果您正在使用此功能è¿è¡Œï¼Œåˆ™å¯ä»¥å¯ç”¨è¯¥åŠŸèƒ½ï¼Œç„¶åŽåœ¨æ‰€æœ‰InnoDB表上è¿è¡Œalter语å¥ï¼Œä»Žè€Œè¿ç§»åˆ°æ¯ä¸ªæ–‡ä»¶å­˜å‚¨ã€‚" #: /var/www/html/cacti/lib/utility.php:791 #, php-format msgid "InnoDB will hold as much tables and indexes in system memory as is possible. Therefore, you should make the innodb_buffer_pool large enough to hold as much of the tables and index in memory. Checking the size of the /var/lib/mysql/cacti directory will help in determining this value. We are recommending 25% of your systems total memory, but your requirements will vary depending on your systems size." msgstr "InnoDB将在系统内存中ä¿å­˜å°½å¯èƒ½å¤šçš„表和索引。 因此,你应该让innodb_buffer_pool大到足以容纳内存中的表和索引。 检查/ var / lib / mysql / cacti目录的大å°å°†æœ‰åŠ©äºŽç¡®å®šæ­¤å€¼ã€‚ 我们建议您的系统总内存的25ï¼…ï¼Œä½†æ˜¯æ‚¨çš„è¦æ±‚会因系统大å°è€Œå¼‚。" #: /var/www/html/cacti/lib/utility.php:796 #, php-format msgid "With modern SSD type storage, this operation actually degrades the disk more rapidly and adds a 50% overhead on all write operations." msgstr "使用现代SSD类型的存储器,此æ“作实际上会更快速地é™ä½Žç£ç›˜ï¼Œå¹¶åœ¨æ‰€æœ‰å†™å…¥æ“作中增加50%的开销。" #: ../lib/utility.php:792 msgid "This is where metadata is stored. If you had a lot of tables, it would be useful to increase this." msgstr "这是元数æ®å­˜å‚¨çš„地方。 如果你有很多表格,那么增加这个值会很有用。" #: /var/www/html/cacti/lib/utility.php:806 msgid "Rogue queries should not for the database to go offline to others. Kill these queries before they kill your system." msgstr "æ¶æ„查询ä¸åº”该让数æ®åº“脱机给其他人。 åœ¨æ€æ­»ä½ çš„ç³»ç»Ÿä¹‹å‰æ€æ­»è¿™äº›æŸ¥è¯¢ã€‚" #: /var/www/html/cacti/lib/utility.php:815 #, php-format msgid "Setting this value to 2 means that you will flush all transactions every second rather than at commit. This allows %s to perform writing less often." msgstr "将此值设置为2æ„å‘³ç€æ‚¨å°†æ¯ç§’åˆ·æ–°æ‰€æœ‰äº‹åŠ¡ï¼Œè€Œä¸æ˜¯åœ¨æäº¤æ—¶åˆ·æ–°ã€‚ 这使得%så¯ä»¥å‡å°‘写入次数。" #: /var/www/html/cacti/lib/utility.php:820 msgid "With modern SSD type storage, having multiple io threads is advantageous for applications with high io characteristics." msgstr "采用现代SSD类型的存储器,具有多个IO线程对于具有高IO特性的应用是有利的。" #: ../lib/utility.php:822 #, php-format msgid "As of %s %s, the you can control how often %s flushes transactions to disk. The default is 1 second, but in high I/O systems setting to a value greater than 1 can allow disk I/O to be more sequential" msgstr "从 %s %s开始,您å¯ä»¥æŽ§åˆ¶ %s将交易刷新到ç£ç›˜çš„频率。 默认值是1秒,但是在高I/O系统中设置为大于1的值å¯ä»¥å…许ç£ç›˜I/O更有åº" #: /var/www/html/cacti/lib/utility.php:833 msgid "With modern SSD type storage, having multiple read io threads is advantageous for applications with high io characteristics." msgstr "采用现代SSD类型的存储器,具有多个读å–IO线程对于具有高IO特性的应用是有利的。" #: /var/www/html/cacti/lib/utility.php:838 msgid "With modern SSD type storage, having multiple write io threads is advantageous for applications with high io characteristics." msgstr "采用现代SSD类型的存储器,具有多个写入IO线程对于具有高IO特性的应用是有利的。" #: /var/www/html/cacti/lib/utility.php:843 #, php-format msgid "%s will divide the innodb_buffer_pool into memory regions to improve performance. The max value is 64. When your innodb_buffer_pool is less than 1GB, you should use the pool size divided by 128MB. Continue to use this equation upto the max of 64." msgstr "%s会将innodb_buffer_pool分æˆå†…存区域以æé«˜æ€§èƒ½ã€‚ 最大值是64.当你的innodb_buffer_poolå°äºŽ1GB时,你应该使用池大å°é™¤ä»¥128MB。 继续使用这个等å¼ï¼Œæœ€å¤§å€¼ä¸º64。" #: ../lib/utility.php:846 #, php-format msgid "%s Tuning" msgstr "%s 调整" #: ../lib/utility.php:846 msgid "Documentation" msgstr "文档" #: ../lib/utility.php:846 msgid "Note: Many changes below require a database restart" msgstr "注æ„:下é¢çš„许多更改需è¦é‡æ–°å¯åŠ¨æ•°æ®åº“" #: /var/www/html/cacti/lib/utility.php:855 msgid "Variable" msgstr "å˜é‡" #: /var/www/html/cacti/lib/utility.php:856 msgid "Current Value" msgstr "当å‰å€¼" #: /var/www/html/cacti/lib/utility.php:857 msgid "Recommended Value" msgstr "推è值" #: /var/www/html/cacti/lib/utility.php:858 msgid "Comments" msgstr "注释" #: ../lib/vdef.php:75 msgid "A useful name for this VDEF." msgstr "VDEF çš„å称。" #: ../links.php:191 msgid "Click 'Continue' to Enable the following Page(s)." msgstr "点击“继续â€ä»¥å¯ç”¨ä»¥ä¸‹é¡µé¢ã€‚" #: ../links.php:196 msgid "Enable Page(s)" msgstr "å¯ç”¨ç½‘页" #: ../links.php:200 msgid "Click 'Continue' to Disable the following Page(s)." msgstr "点击“继续â€ä»¥ç¦ç”¨ä»¥ä¸‹é¡µé¢ã€‚" #: ../links.php:205 msgid "Disable Page(s)" msgstr "ç¦ç”¨é¡µé¢" #: ../links.php:209 msgid "Click 'Continue' to Delete the following Page(s)." msgstr "点击“继续â€åˆ é™¤ä¸‹é¢çš„页é¢ã€‚" #: ../links.php:214 msgid "Delete Page(s)" msgstr "删除页é¢" #: ../links.php:217 msgid "You must select at least one page." msgstr "您必须至少选择一个页é¢ã€‚" #: ../links.php:315 msgid "Links" msgstr "链接" #: ../links.php:328 msgid "Apply Filter" msgstr "应用过滤器" #: ../links.php:331 msgid "Reset filters" msgstr "é‡ç½®è¿‡æ»¤å™¨" #: ../links.php:345 #: ../links.php:508 #: ../user_admin.php:1654 #: ../user_group_admin.php:1375 msgid "Top Tab" msgstr "顶部选项å¡" #: ../links.php:346 #: ../user_admin.php:1655 #: ../user_group_admin.php:1376 msgid "Bottom Console" msgstr "底部控制å°" #: ../links.php:347 #: ../user_admin.php:1656 #: ../user_group_admin.php:1377 msgid "Top Console" msgstr "顶级控制å°" #: ../links.php:378 msgid "Page" msgstr "页" #: ../links.php:380 #: ../links.php:500 #: ../links.php:505 msgid "Style" msgstr "æ ·å¼" #: ../links.php:392 msgid "Edit Page" msgstr "编辑页é¢" #: ../links.php:395 msgid "View Page" msgstr "查看页é¢" #: ../links.php:419 msgid "Sort for Ordering" msgstr "æŽ’åºæŽ’åº" #: ../links.php:428 msgid "No Pages Found" msgstr "找ä¸åˆ°ç½‘页" #: ../links.php:509 msgid "Console Menu" msgstr "控制å°èœå•" #: ../links.php:510 msgid "Bottom of Console Page" msgstr "控制å°é¡µé¢åº•部" #: ../links.php:511 msgid "Top of Console Page" msgstr "控制å°é¡µé¢é¡¶éƒ¨" #: ../links.php:513 msgid "Where should this page appear?" msgstr "这个页é¢åº”该在哪里出现?" #: ../links.php:517 msgid "Console Menu Section" msgstr "控制å°èœå•部分" #: ../links.php:520 msgid "Under which Console heading should this item appear? (All External Link menus will appear between Configuration and Utilities)" msgstr "è¿™ä¸ªé¡¹ç›®å‡ºçŽ°åœ¨å“ªä¸ªæŽ§åˆ¶å°æ ‡é¢˜ä¸‹ï¼Ÿ (所有外部链接èœå•将出现在é…置和实用程åºä¹‹é—´ï¼‰" #: ../links.php:524 msgid "New Console Section" msgstr "新的控制å°éƒ¨åˆ†" #: ../links.php:527 msgid "If you don't like any of the choices above, type a new title in here." msgstr "如果您ä¸å–œæ¬¢ä¸Šè¿°ä»»ä½•选项,请在此输入新的标题。" #: ../links.php:531 msgid "Tab/Menu Name" msgstr "标签/èœå•åç§°" #: ../links.php:534 msgid "The text that will appear in the tab or menu." msgstr "将出现在标签或èœå•中的文字。" #: ../links.php:538 msgid "Content File/URL" msgstr "内容文件/ URL" #: ../links.php:542 msgid "Web URL Below" msgstr "网å€åœ¨ä¸‹é¢" #: ../links.php:543 msgid "The file that contains the content for this page. This file needs to be in the Cacti 'include/content/' directory." msgstr "åŒ…å«æ­¤é¡µé¢å†…容的文件。 这个文件需è¦åœ¨Cactiçš„'include/content/'目录下。" #: ../links.php:547 msgid "Web URL Location" msgstr "网å€URLä½ç½®" #: ../links.php:549 msgid "The valid URL to use for this external link. Must include the type, for example http://www.cacti.net. Note that many websites do not allow them to be embedded in an iframe from a foreign site, and therefore External Linking may not work." msgstr "用于此外部链接的有效网å€ã€‚ 必须包å«ç±»åž‹ï¼Œä¾‹å¦‚http://www.cacti.net。 请注æ„,许多网站ä¸å…许将它们嵌入到æ¥è‡ªå¤–部网站的iframe中,因此外部链接å¯èƒ½ä¸èµ·ä½œç”¨ã€‚" #: ../links.php:567 #, php-format msgid "External Links [edit: %s]" msgstr "外部链接[编辑: %s]" #: ../links.php:569 msgid "External Links [new]" msgstr "外部链接[新建]" #: /var/www/html/cacti/logout.php:46 #: /var/www/html/cacti/logout.php:82 msgid "Logout of Cacti" msgstr "注销Cacti" #: ../logout.php:70 #: ../logout.php:119 msgid "Automatic Logout" msgstr "自动注销" #: ../logout.php:72 #: ../logout.php:121 msgid "You have been logged out of Cacti due to a session timeout." msgstr "由于会è¯è¶…æ—¶ï¼Œæ‚¨å·²ç»æ³¨é”€äº†Cacti。" #: ../logout.php:73 #: ../logout.php:122 #, php-format msgid "Please close your browser or %sLogin Again%s" msgstr "请关闭æµè§ˆå™¨æˆ–%s冿¬¡ç™»å½•%s" #: ../managers.php:40 #: ../managers.php:226 msgid "Notifications" msgstr "通知" #: ../managers.php:141 #: ../utilities.php:1821 msgid "SNMP Notification Receivers" msgstr "SNMP通知接收器" #: ../managers.php:156 #: ../managers.php:231 #: ../managers.php:539 #: ../managers.php:793 msgid "Receivers" msgstr "接收器" #: ../managers.php:223 msgid "Id" msgstr "Id" #: ../managers.php:257 msgid "No SNMP Notification Receivers" msgstr "没有SNMP通知接收器" #: ../managers.php:288 #, php-format msgid "SNMP Notification Receiver [edit: %s]" msgstr "SNMP通知接收器[编辑: %s]" #: ../managers.php:290 msgid "SNMP Notification Receiver [new]" msgstr "SNMP通知接收器[新建]" #: ../managers.php:518 #: ../managers.php:607 #: ../utilities.php:2263 #: ../utilities.php:2338 msgid "MIB" msgstr "MIB" #: ../managers.php:607 #: ../utilities.php:1409 #: ../utilities.php:2338 msgid "OID" msgstr "OID" #: ../managers.php:607 msgid "Kind" msgstr "ç§ç±»" #: ../managers.php:607 #: ../utilities.php:2338 msgid "Max-Access" msgstr "最大æƒé™" #: ../managers.php:607 msgid "Monitored" msgstr "监控" #: ../managers.php:634 msgid "No SNMP Notifications" msgstr "没有SNMP通知" #: ../managers.php:730 #: ../utilities.php:2516 msgid "Severity" msgstr "严é‡" #: ../managers.php:749 #: ../utilities.php:2559 msgid "Purge Notification Log" msgstr "清除通知日志" #: ../managers.php:797 #: ../utilities.php:2613 msgid "Time" msgstr "Time" #: ../managers.php:797 #: ../utilities.php:2613 msgid "Notification" msgstr "通知" #: ../managers.php:797 #: ../utilities.php:2613 msgid "Varbinds" msgstr "å˜é‡ç»‘定" #: ../managers.php:803 msgid "Severity Level" msgstr "严é‡çº§åˆ«" #: ../managers.php:821 #: ../utilities.php:2635 msgid "No SNMP Notification Log Entries" msgstr "没有SNMP通知日志æ¡ç›®" #: ../managers.php:998 msgid "Click 'Continue' to delete the following Notification Receiver" msgid_plural "Click 'Continue' to delete following Notification Receiver" msgstr[0] "点击“继续â€åˆ é™¤ä»¥ä¸‹é€šçŸ¥æŽ¥æ”¶å™¨" #: ../managers.php:1000 msgid "Click 'Continue' to enable the following Notification Receiver" msgid_plural "Click 'Continue' to enable following Notification Receiver" msgstr[0] "点击“继续â€ä»¥å¯ç”¨ä»¥ä¸‹é€šçŸ¥æŽ¥æ”¶å™¨" #: ../managers.php:1002 msgid "Click 'Continue' to disable the following Notification Receiver" msgid_plural "Click 'Continue' to disable following Notification Receiver" msgstr[0] "点击“继续â€ä»¥ç¦ç”¨ä»¥ä¸‹é€šçŸ¥æŽ¥æ”¶å™¨" #: /var/www/html/cacti/managers.php:1005 #, php-format msgid "%s Notification Receivers" msgstr "%s通知接者" #: /var/www/html/cacti/managers.php:1007 msgid "You must select at least one Notification Receiver." msgstr "您必须至少选择一个通知接收方。" #: ../managers.php:1059 msgid "Click 'Continue' to forward the following Notification Objects to this Notification Receiver." msgstr "点击“继续â€å°†ä»¥ä¸‹é€šçŸ¥å¯¹è±¡è½¬å‘给此通知接收方。" #: ../managers.php:1060 msgid "Click 'Continue' to disable forwarding the following Notification Objects to this Notification Receiver." msgstr "点击“继续â€ä»¥ç¦ç”¨å°†ä»¥ä¸‹é€šçŸ¥å¯¹è±¡è½¬å‘给此通知接收器。" #: ../managers.php:1069 msgid "Disable Notification Objects" msgstr "ç¦ç”¨é€šçŸ¥å¯¹è±¡" #: ../managers.php:1071 msgid "You must select at least one notification object." msgstr "您必须至少选择一个通知对象。" #: ../plugins.php:28 msgid "Install" msgstr "安装" #: ../plugins.php:31 msgid "Uninstall" msgstr "å¸è½½" #: ../plugins.php:36 msgid "Not Compatible" msgstr "ä¸å…¼å®¹" #: ../plugins.php:37 #: ../plugins.php:291 #: ../utilities.php:417 msgid "Not Installed" msgstr "未安装" #: ../plugins.php:39 msgid "Awaiting Configuration" msgstr "等待é…ç½®" #: ../plugins.php:40 msgid "Awaiting Upgrade" msgstr "等待å‡çº§" #: ../plugins.php:167 msgid "Not Stated" msgstr "没有说明" #: ../plugins.php:289 msgid "Active/Installed" msgstr "å¯åЍ/安装" #: ../plugins.php:290 msgid "Configuration Issues" msgstr "é…置问题" #: ../plugins.php:295 #: ../plugins.php:365 msgid "Plugins" msgstr "æ’ä»¶" #: ../plugins.php:374 msgid "Actions available include 'Install', 'Activate', 'Disable', 'Enable', 'Uninstall'." msgstr "å¯ç”¨çš„æ“ä½œåŒ…æ‹¬â€œå®‰è£…â€ï¼Œâ€œæ¿€æ´»â€ï¼Œâ€œç¦ç”¨â€ï¼Œâ€œå¯ç”¨â€ï¼Œâ€œå¸è½½â€ã€‚" #: ../plugins.php:375 msgid "Plugin Name" msgstr "æ’ä»¶åç§°" #: ../plugins.php:375 msgid "The name for this Plugin. The name is controlled by the directory it resides in." msgstr "这个æ’ä»¶çš„å字。 该å称由它所在的目录控制。" #: ../plugins.php:376 msgid "A description that the Plugins author has given to the Plugin." msgstr "æ’件作者给æ’ä»¶çš„æè¿°ã€‚" #: ../plugins.php:376 msgid "Plugin Description" msgstr "æ’件说明" #: ../plugins.php:377 msgid "The status of this Plugin." msgstr "这个æ’件的状æ€ã€‚" #: ../plugins.php:378 msgid "The author of this Plugin." msgstr "这个æ’件的作者。" #: ../plugins.php:379 msgid "The version of this Plugin." msgstr "这个æ’件的版本。" #: ../plugins.php:380 msgid "Load Order" msgstr "加载顺åº" #: ../plugins.php:380 msgid "The load order of the Plugin. You can change the load order by first sorting by it, then moving a Plugin either up or down." msgstr "æ’件的加载顺åºã€‚ 您å¯ä»¥å…ˆé€šè¿‡æŽ’åºæ¥æ›´æ”¹åŠ è½½é¡ºåºï¼Œç„¶åŽå‘上或å‘下移动æ’件。" #: ../plugins.php:406 msgid "No Plugins Found" msgstr "没有找到æ’ä»¶" #: ../plugins.php:424 msgid "ERROR: Directory Missing" msgstr "错误:目录缺失" #: /var/www/html/cacti/plugins.php:443 #, php-format msgid "Not Compatible, %s" msgstr "ä¸å…¼å®¹, %s" #: ../plugins.php:434 msgid "Order Before Previous Plugin" msgstr "放在å‰ä¸€ä¸ªæ’件之å‰" #: ../plugins.php:439 msgid "Order After Next Plugin" msgstr "放在下一个æ’ä»¶åŽ" #: ../plugins.php:463 msgid "Install Plugin" msgstr "安装æ’ä»¶" #: ../plugins.php:467 #: ../plugins.php:471 #: ../plugins.php:474 msgid "Uninstall Plugin" msgstr "å¸è½½æ’ä»¶" #: ../plugins.php:468 msgid "Disable Plugin" msgstr "ç¦ç”¨æ’ä»¶" #: ../plugins.php:475 msgid "Enable Plugin" msgstr "å¯ç”¨æ’ä»¶" #: ../plugins.php:478 msgid "Plugin is not compatible" msgstr "æ’ä»¶ä¸å…¼å®¹" #: ../pollers.php:32 msgid "Full Sync" msgstr "å®Œå…¨åŒæ­¥" #: ../pollers.php:36 msgid "New/Idle" msgstr "æ–°/空闲" #: ../pollers.php:39 msgid "Unknown/Down" msgstr "未知/æ–­å¼€" #: ../pollers.php:48 msgid "Data Collector Information" msgstr "æ•°æ®æ”¶é›†å™¨ä¿¡æ¯" #: ../pollers.php:53 msgid "The primary name for this Data Collector." msgstr "æ­¤æ•°æ®æ”¶é›†å™¨çš„主å称。" #: ../pollers.php:56 msgid "New Data Collector" msgstr "æ–°çš„æ•°æ®æ”¶é›†å™¨" #: ../pollers.php:61 msgid "Web Site Hostname" msgstr "网站主机å" #: ../pollers.php:62 msgid "The hostname for Data Collector. It may have to be a Fully Qualified Domain name for the remote Pollers to contact it for activities such as re-indexing, Real-time graphing, etc." msgstr "Data Collector的主机å。 它å¯èƒ½å¿…é¡»æ˜¯ä¸€ä¸ªå®Œå…¨åˆæ ¼çš„域å,以便远程轮询者è”ç³»å®ƒè¿›è¡Œé‡æ–°ç´¢å¼•,实时制图等活动。" #: ../pollers.php:71 msgid "Notes for this Data Collectors Database." msgstr "æ­¤æ•°æ®æ”¶é›†å™¨æ•°æ®åº“的注æ„事项。" #: ../pollers.php:78 msgid "Remote Database Connection" msgstr "远程数æ®åº“连接" #: ../pollers.php:83 msgid "The hostname for the remote database server." msgstr "远程数æ®åº“æœåŠ¡å™¨çš„ä¸»æœºå。" #: ../pollers.php:91 msgid "Remote Database Name" msgstr "远程数æ®åº“åç§°" #: ../pollers.php:92 msgid "The name of the remote database." msgstr "远程数æ®åº“çš„å称。" #: ../pollers.php:100 msgid "Remote Database User" msgstr "远程数æ®åº“用户" #: ../pollers.php:101 msgid "The user name to use to connect to the remote database." msgstr "用于连接到远程数æ®åº“的用户å。" #: ../pollers.php:109 msgid "Remote Database Password" msgstr "远程数æ®åº“密ç " #: ../pollers.php:110 msgid "The user password to use to connect to the remote database." msgstr "用于连接到远程数æ®åº“的用户密ç ã€‚" #: ../pollers.php:118 msgid "Remote Database Port" msgstr "远程数æ®åº“端å£" #: ../pollers.php:119 msgid "The TCP port to use to connect to the remote database." msgstr "用于连接到远程数æ®åº“çš„TCP端å£ã€‚" #: ../pollers.php:127 msgid "Remote Database SSL" msgstr "远程数æ®åº“SSL" #: ../pollers.php:128 msgid "If the remote database uses SSL to connect, check the checkbox below." msgstr "如果远程数æ®åº“使用SSL进行连接,请选中下é¢çš„å¤é€‰æ¡†ã€‚" #: ../pollers.php:283 msgid "Click 'Continue' to delete the following Data Collector. Note, all devices will be disassociated from this Data Collector and mapped back to the Main Cacti Data Collector." msgid_plural "Click 'Continue' to delete all following Data Collectors. Note, all devices will be disassociated from these Data Collectors and mapped back to the Main Cacti Data Collector." msgstr[0] "点击“继续â€åˆ é™¤ä»¥ä¸‹æ•°æ®æ”¶é›†å™¨ã€‚ 请注æ„ï¼Œæ‰€æœ‰è®¾å¤‡éƒ½å°†ä»Žæ­¤æ•°æ®æ”¶é›†å™¨å–消关è”并映射回主Cactiæ•°æ®æ”¶é›†å™¨ã€‚" #: ../pollers.php:288 msgid "Delete Data Collector" msgid_plural "Delete Data Collectors" msgstr[0] "åˆ é™¤æ•°æ®æ”¶é›†å™¨" #: ../pollers.php:292 msgid "Click 'Continue' to disable the following Data Collector." msgid_plural "Click 'Continue' to disable the following Data Collectors." msgstr[0] "点击“继续â€ä»¥ç¦ç”¨ä»¥ä¸‹æ•°æ®æ”¶é›†å™¨ã€‚" #: ../pollers.php:297 msgid "Disable Data Collector" msgid_plural "Disable Data Collectors" msgstr[0] "ç¦ç”¨æ•°æ®æ”¶é›†å™¨" #: ../pollers.php:301 msgid "Click 'Continue' to enable the following Data Collector." msgid_plural "Click 'Continue' to enable the following Data Collectors." msgstr[0] "点击“继续â€ä»¥å¯ç”¨ä»¥ä¸‹æ•°æ®æ”¶é›†å™¨ã€‚" #: ../pollers.php:306 #: ../pollers.php:315 msgid "Enable Data Collector" msgid_plural "Enable Data Collectors" msgstr[0] "å¯ç”¨æ•°æ®æ”¶é›†å™¨" #: ../pollers.php:310 msgid "Click 'Continue' to Synchronize the Remote Data Collector for Offline Operation." msgid_plural "Click 'Continue' to Synchronize the Remote Data Collectors for Offline Operation." msgstr[0] "å•击“继续â€ä»¥åŒæ­¥è¿œç¨‹æ•°æ®æ”¶é›†å™¨è¿›è¡Œç¦»çº¿æ“作。" #: ../pollers.php:318 #: ../sites.php:283 msgid "You must select at least one Site." msgstr "您必须至少选择一个站点。" #: ../pollers.php:351 #: ../sites.php:316 #, php-format msgid "Site [edit: %s]" msgstr "站点[编辑: %s]" #: ../pollers.php:353 #: ../sites.php:318 msgid "Site [new]" msgstr "站点[新建]" #: ../pollers.php:379 msgid "Remote Data Collectors must be able to communicate to the Main Data Collector, and vice versa. Use this button to verify that the Main Data Collector can communicate to this Remote Data Collector." msgstr "è¿œç¨‹æ•°æ®æ”¶é›†å™¨å¿…é¡»èƒ½å¤Ÿä¸Žä¸»æ•°æ®æ”¶é›†å™¨é€šä¿¡ï¼Œå之亦然。 使用此按钮验è¯ä¸»æ•°æ®æ”¶é›†å™¨æ˜¯å¦å¯ä»¥ä¸Žæ­¤è¿œç¨‹æ•°æ®æ”¶é›†å™¨è¿›è¡Œé€šä¿¡ã€‚" #: ../pollers.php:387 msgid "Test Connection" msgstr "测试连接" #: ../pollers.php:387 msgid "Test Database Connection" msgstr "测试数æ®åº“连接" #: /var/www/html/cacti/pollers.php:523 msgid "Collectors" msgstr "收集器" #: ../pollers.php:611 msgid "Collector Name" msgstr "收集器的åå­—" #: ../pollers.php:611 msgid "The Name of this Data Collector." msgstr "è¿™ä¸ªæ•°æ®æ”¶é›†å™¨çš„å称。" #: ../pollers.php:612 msgid "The unique id associated with this Data Collector." msgstr "ä¸Žæ­¤æ•°æ®æ”¶é›†å™¨å…³è”的唯一ID。" #: ../pollers.php:613 msgid "The Hostname where the Data Collector is running." msgstr "æ•°æ®æ”¶é›†å™¨æ­£åœ¨è¿è¡Œçš„主机å。" #: ../pollers.php:614 msgid "The Status of this Data Collector." msgstr "è¿™ä¸ªæ•°æ®æ”¶é›†å™¨çš„状æ€ã€‚" #: ../pollers.php:615 msgid "Polling Time" msgstr "轮询时间" #: ../pollers.php:615 msgid "The last data collection time for this Data Collector." msgstr "æ­¤æ•°æ®æ”¶é›†å™¨çš„æœ€åŽä¸€æ¬¡æ•°æ®æ”¶é›†æ—¶é—´ã€‚" #: ../pollers.php:616 msgid "The number of Devices associated with this Data Collector." msgstr "ä¸Žæ­¤æ•°æ®æ”¶é›†å™¨å…³è”的设备数é‡ã€‚" #: ../pollers.php:617 msgid "SNMP Gets" msgstr "SNMP获å–" #: ../pollers.php:617 msgid "The number of SNMP gets associated with this Collector." msgstr "SNMP的数é‡ä¸Žæ­¤æ”¶é›†å™¨ç›¸å…³è”。" #: ../pollers.php:618 msgid "Scripts" msgstr "脚本" #: ../pollers.php:618 msgid "The number of script calls associated with this Data Collector." msgstr "ä¸Žæ­¤æ•°æ®æ”¶é›†å™¨å…³è”的脚本调用次数。" #: ../pollers.php:619 msgid "Servers" msgstr "æœåС噍" #: ../pollers.php:619 msgid "The number of script server calls associated with this Data Collector." msgstr "ä¸Žæ­¤æ•°æ®æ”¶é›†å™¨å…³è”的脚本æœåŠ¡å™¨è°ƒç”¨çš„æ•°é‡ã€‚" #: ../pollers.php:620 msgid "Last Finished" msgstr "最åŽå®Œæˆ" #: ../pollers.php:620 msgid "The last time this Data Collector completed." msgstr "æ•°æ®æ”¶é›†å™¨æœ€åŽä¸€æ¬¡å®Œæˆæ—¶é—´ã€‚" #: ../pollers.php:621 msgid "Last Update" msgstr "æœ€åŽæ›´æ–°" #: ../pollers.php:621 msgid "The last time this Data Collector checked in with the main Cacti site." msgstr "è¿™ä¸ªæ•°æ®æ”¶é›†å™¨æœ€åŽä¸€æ¬¡ä¸Žä¸»è¦çš„Cacti站点签入。" #: ../pollers.php:656 msgid "No Data Collectors Found" msgstr "找ä¸åˆ°æ•°æ®æ”¶é›†å™¨" #: ../rrdcleaner.php:30 #: ../tree.php:31 msgctxt "dropdown action" msgid "Delete" msgstr "删除" #: ../rrdcleaner.php:31 msgctxt "dropdown action" msgid "Archive" msgstr "归档顺åº" #: /var/www/html/cacti/rrdcleaner.php:338 msgid "RRD Files" msgstr "RRD文件" #: ../rrdcleaner.php:347 msgid "RRD File Name" msgstr "RRD文件å" #: ../rrdcleaner.php:348 msgid "DS Name" msgstr "DSåç§°" #: ../rrdcleaner.php:349 msgid "DS ID" msgstr "DS ID" #: ../rrdcleaner.php:350 msgid "Template ID" msgstr "模æ¿ID" #: ../rrdcleaner.php:352 msgid "Last Modified" msgstr "上一次更改" #: ../rrdcleaner.php:353 msgid "Size [KB]" msgstr "大å°[KB]" #: ../rrdcleaner.php:364 #: ../rrdcleaner.php:365 msgid "Deleted" msgstr "删除" #: ../rrdcleaner.php:373 msgid "No unused RRD Files" msgstr "没有未使用的RRD文件" #: ../rrdcleaner.php:395 msgid "Total Size [MB]:" msgstr "总大å°[MB]:" #: ../rrdcleaner.php:397 msgid "Last Scan:" msgstr "上次扫æï¼š" #: ../rrdcleaner.php:481 msgid "Time Since Update" msgstr "自更新以æ¥çš„æ—¶é—´" #: ../rrdcleaner.php:497 msgid "RRDfiles" msgstr "RRDfiles" #: ../rrdcleaner.php:512 #: ../user_domains.php:642 #: ../user_group_admin.php:1827 #: ../user_group_admin.php:2182 #: ../user_group_admin.php:2288 #: ../user_group_admin.php:2375 #: ../user_group_admin.php:2462 #: ../user_group_admin.php:2549 msgctxt "filter: use" msgid "Go" msgstr "å¯åЍ" #: ../rrdcleaner.php:515 #: ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 #: ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 #: ../user_group_admin.php:2465 msgctxt "filter: reset" msgid "Clear" msgstr "清除" #: ../rrdcleaner.php:518 msgid "Rescan" msgstr "釿–°æ‰«æ" #: ../rrdcleaner.php:521 msgid "Delete All" msgstr "删除所有" #: ../rrdcleaner.php:521 msgid "Delete All Unknown RRDfiles" msgstr "删除所有未知的RRD文件" #: ../rrdcleaner.php:522 msgid "Archive All" msgstr "归档所有" #: ../rrdcleaner.php:522 msgid "Archive All Unknown RRDfiles" msgstr "存档所有未知的RRD文件" #: ../settings.php:138 #, php-format msgid "Cacti Settings (%s)" msgstr "Cacti 设置(%s)" #: ../settings.php:191 msgid "Select Plugin(s)" msgstr "选择æ’ä»¶" #: ../settings.php:193 msgid "Plugins Selected" msgstr "æ’件选择" #: ../settings.php:208 msgid "Select File(s)" msgstr "选择文件" #: ../settings.php:210 msgid "Files Selected" msgstr "选择的文件" #: ../settings.php:225 msgid "Select Template(s)" msgstr "选择模æ¿" #: ../settings.php:230 msgid "All Templates Selected" msgstr "所有模æ¿è¢«é€‰ä¸­" #: ../settings.php:281 msgid "Poller Interval must be less than Cron Interval" msgstr "轮询间隔必须å°äºŽCroné—´éš”" #: ../settings.php:303 msgid "Test Email Results" msgstr "测试电å­é‚®ä»¶ç»“æžœ" #: ../sites.php:35 msgid "Site Information" msgstr "站点信æ¯" #: ../sites.php:41 msgid "The primary name for the Site." msgstr "网站的主è¦å称。" #: ../sites.php:44 msgid "New Site" msgstr "新站点" #: ../sites.php:49 msgid "Address1" msgstr "地å€1" #: ../sites.php:50 msgid "The primary address for the Site." msgstr "网站的主è¦åœ°å€ã€‚" #: ../sites.php:52 msgid "Enter the Site Address" msgstr "输入网站地å€" #: ../sites.php:58 msgid "Address2" msgstr "地å€2" #: ../sites.php:59 msgid "Additional address information for the Site." msgstr "本网站的其他地å€ä¿¡æ¯ã€‚" #: ../sites.php:61 msgid "Additional Site Address information" msgstr "其他网站地å€ä¿¡æ¯" #: ../sites.php:67 #: ../sites.php:484 msgid "City" msgstr "城市" #: ../sites.php:68 msgid "The city or locality for the Site." msgstr "该网站的城市或地点。" #: ../sites.php:70 msgid "Enter the City or Locality" msgstr "输入城市或地点" #: ../sites.php:76 #: ../sites.php:485 msgid "State" msgstr "状æ€" #: ../sites.php:77 msgid "The state for the Site." msgstr "网站的状æ€ã€‚" #: ../sites.php:79 msgid "Enter the state" msgstr "输入状æ€" #: ../sites.php:85 msgid "Postal/Zip Code" msgstr "邮政编ç " #: ../sites.php:86 msgid "The postal or zip code for the Site." msgstr "è¯¥ç½‘ç«™çš„é‚®æ”¿ç¼–ç æˆ–邮政编ç ã€‚" #: ../sites.php:88 msgid "Enter the postal code" msgstr "输入邮政编ç " #: ../sites.php:94 #: ../sites.php:486 msgid "Country" msgstr "国家" #: ../sites.php:95 msgid "The country for the Site." msgstr "该网站的国家。" #: ../sites.php:97 msgid "Enter the country" msgstr "输入国家" #: ../sites.php:103 msgid "TimeZone" msgstr "时区" #: ../sites.php:104 msgid "The TimeZone for the Site." msgstr "网站的时区。" #: ../sites.php:110 msgid "Latitude" msgstr "纬度" #: ../sites.php:111 msgid "The Latitude for this Site." msgstr "本网站的纬度。" #: ../sites.php:113 msgid "example 38.889488" msgstr "例如38.889488" #: ../sites.php:119 msgid "Longitude" msgstr "ç»åº¦" #: ../sites.php:120 msgid "The Longitude for this Site." msgstr "本网站的ç»åº¦ã€‚" #: ../sites.php:122 msgid "example -77.0374678" msgstr "例如-77.0374678" #: ../sites.php:128 msgid "Site Notes" msgstr "网站注释" #: ../sites.php:131 msgid "Additional area use for random notes related to this Site." msgstr "ä¸Žæœ¬ç½‘ç«™ç›¸å…³çš„éšæœºå¤‡æ³¨çš„é¢å¤–区域使用。" #: ../sites.php:134 msgid "Enter some useful information about the Site." msgstr "输入一些有关本网站的有用信æ¯ã€‚" #: ../sites.php:139 msgid "Alternate Name" msgstr "备用å" #: ../sites.php:140 msgid "Used for cases where a Site has an alternate named used to describe it" msgstr "用 用于æè¿°äºŽç½‘站的替代åç§°" #: ../sites.php:142 msgid "If the Site is known by another name enter it here." msgstr "å‡å¦‚本网站有其他å称,请在此处输入。" #: ../sites.php:275 msgid "Click 'Continue' to delete the following Site. Note, all devices will be disassociated from this site." msgid_plural "Click 'Continue' to delete all following Sites. Note, all devices will be disassociated from this site." msgstr[0] "点击“继续â€åˆ é™¤ä»¥ä¸‹ç½‘站。 请注æ„,所有设备将从本网站解除关è”。" #: ../sites.php:280 msgid "Delete Site" msgid_plural "Delete Sites" msgstr[0] "删除站点" #: ../sites.php:481 msgid "Site Name" msgstr "站点åç§°" #: ../sites.php:481 msgid "The name of this Site." msgstr "本网站的å称。" #: ../sites.php:482 msgid "The unique id associated with this Site." msgstr "与此网站关è”的唯一ID。" #: ../sites.php:483 msgid "The number of Devices associated with this Site." msgstr "与本网站相关的设备数é‡ã€‚" #: ../sites.php:484 msgid "The City associated with this Site." msgstr "与本网站相关的城市。" #: ../sites.php:485 msgid "The State associated with this Site." msgstr "与本网站有关的国家。" #: ../sites.php:486 msgid "The Country associated with this Site." msgstr "与本网站相关的国家/地区。" #: ../sites.php:504 msgid "No Sites Found" msgstr "找ä¸åˆ°ç«™ç‚¹" #: ../spikekill.php:37 #, php-format msgid "FATAL: Spike Kill method '%s' is Invalid\n" msgstr "致命:尖峰消除方法'%s'无效\n" #: ../spikekill.php:81 msgid "FATAL: Spike Kill Not Allowed\n" msgstr "致命:ä¸å…许尖峰消除\n" #: ../templates_export.php:68 msgid "WARNING: Export Errors Encountered. Refresh Browser Window for Details!" msgstr "警告:é‡åˆ°å¯¼å‡ºé”™è¯¯ã€‚ 刷新æµè§ˆå™¨çª—壿Ÿ¥çœ‹ç»†èŠ‚ï¼" #: ../templates_export.php:101 msgid "What would you like to export?" msgstr "What would you like to export?" #: /var/www/html/cacti/templates_export.php:110 msgid "Select the Template type that you wish to export from Cacti." msgstr "选择您希望从Cacti导出的模æ¿ç±»åž‹ã€‚" #: /var/www/html/cacti/templates_export.php:120 msgid "Device Template to Export" msgstr "è¦å¯¼å‡ºçš„设备模æ¿" #: /var/www/html/cacti/templates_export.php:121 msgid "Choose the Template to export to XML." msgstr "选择模æ¿å¯¼å‡ºä¸ºXML。" #: ../templates_export.php:144 #: ../templates_export.php:148 msgid "Include Dependencies" msgstr "ä¾èµ–性" #: ../templates_export.php:145 msgid "Some templates rely on other items in Cacti to function properly. It is highly recommended that you select this box or the resulting import may fail." msgstr "有些模æ¿ä¾èµ–于Cacti中的其他项目æ‰èƒ½æ­£å¸¸å·¥ä½œã€‚ 强烈建议您选择此框或导致导入å¯èƒ½å¤±è´¥ã€‚" #: ../templates_export.php:154 msgid "Output Format" msgstr "输出方法" #: ../templates_export.php:155 msgid "Choose the format to output the resulting XML file in." msgstr "选择格å¼ä»¥è¾“出结果XML文件。" #: ../templates_export.php:159 msgid "Output to the Browser (within Cacti)" msgstr "输出到æµè§ˆå™¨ (Cacti内)" #: ../templates_export.php:160 msgid "Output to the Browser (raw XML)" msgstr "输出到æµè§ˆå™¨ï¼ˆåŽŸå§‹XML)" #: ../templates_export.php:161 msgid "Save File Locally" msgstr "局部ä¿å­˜æ–‡ä»¶" #: ../templates_export.php:130 #, php-format msgid "Available Templates [%s]" msgstr "å¯ç”¨æ¨¡æ¿[%s]" #: /var/www/html/cacti/templates_import.php:115 msgid "Import Template" msgstr "导入模æ¿" #: ../tree.php:32 msgctxt "dropdown action" msgid "Publish" msgstr "å‘布" #: ../tree.php:33 msgctxt "dropdown action" msgid "Un Publish" msgstr "å–æ¶ˆå‘布" #: ../tree.php:258 msgctxt "ordering of tree items" msgid "inherit" msgstr "继承" #: ../tree.php:261 msgctxt "ordering of tree items" msgid "manual" msgstr "手工" #: ../tree.php:264 msgctxt "ordering of tree items" msgid "alpha" msgstr "alpha" #: ../tree.php:267 msgctxt "ordering of tree items" msgid "natural" msgstr "自然" #: ../tree.php:270 msgctxt "ordering of tree items" msgid "numeric" msgstr "æ•°å­—" #: ../tree.php:485 msgid "Click 'Continue' to delete the following Tree." msgid_plural "Click 'Continue' to delete following Trees." msgstr[0] "点击“继续â€åˆ é™¤ä¸‹é¢çš„æ ‘。" #: ../tree.php:490 msgid "Delete Tree" msgid_plural "Delete Trees" msgstr[0] "删除树" #: ../tree.php:494 msgid "Click 'Continue' to publish the following Tree." msgid_plural "Click 'Continue' to publish following Trees." msgstr[0] "点击“继续â€å‘布以下树。" #: ../tree.php:499 msgid "Publish Tree" msgid_plural "Publish Trees" msgstr[0] "å‘布树" #: ../tree.php:503 msgid "Click 'Continue' to un-publish the following Tree." msgid_plural "Click 'Continue' to un-publish following Trees." msgstr[0] "点击“继续â€ä»¥å–消å‘布以下树。" #: ../tree.php:508 msgid "Un-publish Tree" msgid_plural "Un-publish Trees" msgstr[0] "å–æ¶ˆå‘布树" #: ../tree.php:511 msgid "You must select at least one Tree." msgstr "您必须至少选择一棵树。" #: ../tree.php:554 #, php-format msgid "Trees [edit: %s]" msgstr "æ ‘[编辑: %s]" #: ../tree.php:566 msgid "Trees [new]" msgstr "æ ‘[新建]" #: ../tree.php:592 msgid "Edit Tree" msgstr "编辑树" #: ../tree.php:592 msgid "To Edit this tree, you must first lock it by pressing the Edit Tree button." msgstr "è¦ç¼–辑这个树,你必须先按下编辑树按钮æ¥é”定它。" #: ../tree.php:595 msgid "Add Root Branch" msgstr "添加根分支" #: ../tree.php:595 msgid "Finish Editing Tree" msgstr "完æˆç¼–辑树" #: ../tree.php:595 #, php-format msgid "This tree has been locked for Editing on %1$s by %2$s." msgstr "此树已被%2$sé”定在%1$s 上进行编辑。" #: ../tree.php:601 msgid "To edit the tree, you must first unlock it and then lock it as yourself" msgstr "è¦ç¼–辑树,您必须先解é”,然åŽä¸ºè‡ªå·±å°†å…¶é”定" #: ../tree.php:617 msgid "Tree Items" msgstr "Tree Items" #: ../tree.php:625 msgid "Available Devices" msgstr "å¯ç”¨è®¾å¤‡" #: ../tree.php:660 msgid "Available Graphs" msgstr "å¯ç”¨çš„图形" #: /var/www/html/cacti/tree.php:846 #: /var/www/html/cacti/tree.php:1059 msgid "New Node" msgstr "新节点" #: ../tree.php:1039 msgid "Rename" msgstr "改å" #: ../tree.php:1066 msgid "Branch Sorting" msgstr "分支排åº" #: ../tree.php:1073 msgid "Inherit" msgstr "继承" #: ../tree.php:1101 msgid "Alphabetic" msgstr "拼音" #: ../tree.php:1115 msgid "Natural" msgstr "自然" #: ../tree.php:1152 #: ../tree.php:1226 #: ../tree.php:1313 msgid "Cut" msgstr "剪切" #: ../tree.php:1185 msgid "Paste" msgstr "粘贴" #: /var/www/html/cacti/tree.php:1653 msgid "Add Tree" msgstr "添加树" msgid "Sort Trees Ascending" msgstr "å‡åºæŽ’åºæ ‘" msgid "Sort Trees Descending" msgstr "é™åºæŽ’åºæ ‘" #: ../tree.php:1558 msgid "The name by which this Tree will be referred to as." msgstr "这棵树将被称为的å字。" #: ../tree.php:1558 #: ../user_admin.php:1521 #: ../user_group_admin.php:1243 msgid "Tree Name" msgstr "æ ‘å" #: ../tree.php:1559 msgid "The internal database ID for this Tree. Useful when performing automation or debugging." msgstr "此树的内部数æ®åº“ID。 执行自动化或调试时很有用。" #: ../tree.php:1560 msgid "Published" msgstr "å‘布" #: ../tree.php:1560 msgid "Unpublished Trees cannot be viewed from the Graph tab" msgstr "未å‘å¸ƒçš„æ ‘æ— æ³•ä»Žå›¾è¡¨é€‰é¡¹å¡æŸ¥çœ‹" #: ../tree.php:1561 msgid "A Tree must be locked in order to be edited." msgstr "树必须被é”定æ‰èƒ½è¢«ç¼–辑。" #: ../tree.php:1562 msgid "The original author of this Tree." msgstr "这个树的原始作者。" #: ../tree.php:1563 msgid "To change the order of the trees, first sort by this column, press the up or down arrows once they appear." msgstr "è¦æ”¹å˜æ ‘的顺åºï¼Œé¦–先按这个列排åºï¼Œä¸€æ—¦å‡ºçŽ°å°±æŒ‰å‘上或å‘下的箭头。" #: ../tree.php:1564 msgid "Last Edited" msgstr "最åŽç¼–辑" #: ../tree.php:1564 msgid "The date that this Tree was last edited." msgstr "这棵树上次编辑的日期。" #: ../tree.php:1565 msgid "Edited By" msgstr "编辑者" #: ../tree.php:1565 msgid "The last user to have modified this Tree." msgstr "最åŽä¸€ä¸ªä¿®æ”¹äº†è¿™æ£µæ ‘的用户。" #: ../tree.php:1566 msgid "Branches" msgstr "分支" #: ../tree.php:1566 msgid "The total number of Branches in this Tree." msgstr "这棵树的分支总数。" #: ../tree.php:1567 msgid "The total number of individual Devices in this Tree." msgstr "此树中å•个设备的总数。" #: ../tree.php:1568 msgid "The total number of individual Graphs in this Tree." msgstr "此树中å•个图的总数。" #: ../tree.php:1608 msgid "No Trees Found" msgstr "找ä¸åˆ°æ ‘" #: ../user_admin.php:32 msgid "Batch Copy" msgstr "批é‡å¤åˆ¶" #: ../user_admin.php:345 msgid "Click 'Continue' to delete the selected User(s)." msgstr "点击“继续â€åˆ é™¤é€‰å®šçš„用户。" #: ../user_admin.php:350 msgid "Delete User(s)" msgstr "删除用户" #: ../user_admin.php:360 msgid "Click 'Continue' to copy the selected User to a new User below." msgstr "点击“继续â€å°†é€‰å®šçš„用户å¤åˆ¶åˆ°ä¸‹é¢çš„æ–°ç”¨æˆ·ã€‚" #: ../user_admin.php:365 msgid "Template Username:" msgstr "Template Username:" #: ../user_admin.php:370 msgid "Username:" msgstr "用户å:" #: ../user_admin.php:377 msgid "Full Name:" msgstr "å…¨å:" #: ../user_admin.php:384 msgid "Realm:" msgstr "域:" #: ../user_admin.php:390 msgid "Copy User" msgstr "å¤åˆ¶ç”¨æˆ·" #: ../user_admin.php:396 msgid "Click 'Continue' to enable the selected User(s)." msgstr "点击“继续â€å¯ç”¨é€‰å®šçš„用户。" #: ../user_admin.php:401 msgid "Enable User(s)" msgstr "å¯ç”¨ç”¨æˆ·" #: ../user_admin.php:407 msgid "Click 'Continue' to disable the selected User(s)." msgstr "点击“继续â€ä»¥ç¦ç”¨é€‰å®šçš„用户。" #: ../user_admin.php:412 msgid "Disable User(s)" msgstr "ç¦ç”¨ç”¨æˆ·" #: ../user_admin.php:420 msgid "Click 'Continue' to overwrite the User(s) settings with the selected template User settings and permissions. The original users Full Name, Password, Realm and Enable status will be retained, all other fields will be overwritten from Template User." msgstr "点击“继续â€ï¼Œç”¨é€‰å®šçš„æ¨¡æ¿ç”¨æˆ·è®¾ç½®å’Œæƒé™è¦†ç›–用户设置。 原始用户全å,密ç ï¼Œé¢†åŸŸå’Œå¯ç”¨çжæ€å°†è¢«ä¿ç•™ï¼Œæ‰€æœ‰å…¶ä»–字段将被模æ¿ç”¨æˆ·è¦†ç›–。" #: ../user_admin.php:423 msgid "Template User:" msgstr "Template User:" #: ../user_admin.php:429 msgid "User(s) to update:" msgstr "è¦æ›´æ–°çš„用户:" #: ../user_admin.php:434 msgid "Reset User(s) Settings" msgstr "é‡ç½®ç”¨æˆ·è®¾ç½®" #: ../user_admin.php:437 msgid "You must select at least one user." msgstr "您必须至少选择一个用户。" #: ../user_admin.php:812 #: ../user_group_admin.php:728 msgid "Allow" msgstr "å…许" #: ../user_admin.php:813 #: ../user_group_admin.php:729 msgid "Deny" msgstr "æ‹’ç»" #: ../user_admin.php:838 msgid "Note: System Graph Policy is 'Permissive' meaning the User must have access to at least one of Graph, Device, or Graph Template to gain access to the Graph" msgstr "注æ„:系统图策略是“å…许â€ï¼Œå³ç”¨æˆ·å¿…须有æƒè®¿é—®å›¾å½¢ï¼Œè®¾å¤‡æˆ–图形模版中的至少一个æ‰èƒ½è®¿é—®å›¾" #: ../user_admin.php:840 msgid "Note: System Graph Policy is 'Restrictive' meaning the User must have access to the Graph, Device, and Graph Template to gain access to the Graph" msgstr "注æ„:系统图策略是“é™åˆ¶æ€§â€ï¼Œè¿™æ„味ç€ç”¨æˆ·å¿…须有æƒè®¿é—®å›¾å½¢ï¼Œè®¾å¤‡å’Œå›¾å½¢æ¨¡æ¿æ‰èƒ½è®¿é—®å›¾å½¢" #: ../user_admin.php:844 #: ../user_group_admin.php:745 msgid "Default Graph Policy" msgstr "默认图形策略" #: ../user_admin.php:849 msgid "Default Graph Policy for this User" msgstr "此用户的默认图策略" #: ../user_group_admin.php:755 #: ../user_group_admin.php:896 #: ../user_group_admin.php:1044 #: ../user_group_admin.php:1185 msgid "Update" msgstr "æ›´æ–°" #: ../user_admin.php:1006 #: ../user_admin.php:1242 #: ../user_admin.php:1384 #: ../user_admin.php:1521 #: ../user_group_admin.php:821 #: ../user_group_admin.php:966 #: ../user_group_admin.php:1109 #: ../user_group_admin.php:1243 msgid "Effective Policy" msgstr "有效的策略" #: ../user_admin.php:1020 #: ../user_group_admin.php:847 msgid "No Matching Graphs Found" msgstr "找ä¸åˆ°åŒ¹é…的图形" #: ../user_admin.php:1035 #: ../user_admin.php:1041 #: ../user_admin.php:1287 #: ../user_admin.php:1293 #: ../user_admin.php:1426 #: ../user_admin.php:1432 #: ../user_admin.php:1562 #: ../user_admin.php:1568 #: ../user_group_admin.php:862 #: ../user_group_admin.php:868 #: ../user_group_admin.php:1010 #: ../user_group_admin.php:1016 #: ../user_group_admin.php:1151 #: ../user_group_admin.php:1157 #: ../user_group_admin.php:1283 #: ../user_group_admin.php:1289 msgid "Revoke Access" msgstr "å–æ¶ˆè®¿é—®" #: ../user_admin.php:1036 #: ../user_admin.php:1040 #: ../user_admin.php:1288 #: ../user_admin.php:1292 #: ../user_admin.php:1427 #: ../user_admin.php:1431 #: ../user_admin.php:1563 #: ../user_admin.php:1567 #: ../user_group_admin.php:62 #: ../user_group_admin.php:863 #: ../user_group_admin.php:867 #: ../user_group_admin.php:1011 #: ../user_group_admin.php:1015 #: ../user_group_admin.php:1152 #: ../user_group_admin.php:1156 #: ../user_group_admin.php:1284 #: ../user_group_admin.php:1288 msgid "Grant Access" msgstr "授予访问æƒé™" #: ../user_admin.php:1093 #: ../user_admin.php:2646 #: ../user_group_admin.php:1812 #: ../user_group_admin.php:1872 msgid "Groups" msgstr "组" #: ../user_admin.php:1101 #: ../user_admin.php:1110 msgid "Member" msgstr "æˆå‘˜" #: ../user_admin.php:1101 msgid "Policies (Graph/Device/Template)" msgstr "策略(图表/设备/模æ¿ï¼‰" #: ../user_admin.php:1110 #: ../user_group_admin.php:688 msgid "Non Member" msgstr "éžæˆå‘˜" #: ../user_admin.php:1112 #: ../user_admin.php:2299 #: ../user_admin.php:2300 #: ../user_admin.php:2301 #: ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 #: ../user_group_admin.php:1906 msgid "ALLOW" msgstr "å…许" #: ../user_admin.php:1112 #: ../user_admin.php:2299 #: ../user_admin.php:2300 #: ../user_admin.php:2301 #: ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 #: ../user_group_admin.php:1906 msgid "DENY" msgstr "æ‹’ç»" #: ../user_admin.php:1118 msgid "No Matching User Groups Found" msgstr "找ä¸åˆ°åŒ¹é…的用户组" #: ../user_admin.php:1132 msgid "Assign Membership" msgstr "åˆ†é…æˆå‘˜èµ„æ ¼" #: ../user_admin.php:1133 msgid "Remove Membership" msgstr "删除会员" #: ../user_admin.php:1149 #: ../user_group_admin.php:886 msgid "Default Device Policy" msgstr "默认设备策略" #: ../user_admin.php:1154 msgid "Default Device Policy for this User" msgstr "此用户的默认设备策略" #: ../user_admin.php:1253 #: ../user_admin.php:1261 #: ../user_admin.php:1395 #: ../user_admin.php:1403 #: ../user_admin.php:1532 #: ../user_admin.php:1540 #: ../user_group_admin.php:832 #: ../user_group_admin.php:840 #: ../user_group_admin.php:977 #: ../user_group_admin.php:985 #: ../user_group_admin.php:1120 #: ../user_group_admin.php:1128 #: ../user_group_admin.php:1254 #: ../user_group_admin.php:1262 msgid "Access Granted" msgstr "授予访问æƒé™" #: ../user_admin.php:1255 #: ../user_admin.php:1259 #: ../user_admin.php:1397 #: ../user_admin.php:1401 #: ../user_admin.php:1534 #: ../user_admin.php:1538 #: ../user_group_admin.php:834 #: ../user_group_admin.php:838 #: ../user_group_admin.php:979 #: ../user_group_admin.php:983 #: ../user_group_admin.php:1122 #: ../user_group_admin.php:1126 #: ../user_group_admin.php:1256 #: ../user_group_admin.php:1260 msgid "Access Restricted" msgstr "访问å—é™" #: ../user_admin.php:1272 #: ../user_group_admin.php:996 msgid "No Matching Devices Found" msgstr "找ä¸åˆ°åŒ¹é…的设备" #: ../user_admin.php:1310 #: ../user_group_admin.php:1034 msgid "Default Graph Template Policy" msgstr "默认图形模æ¿ç­–ç•¥" #: ../user_admin.php:1315 msgid "Default Graph Template Policy for this User" msgstr "此用户的默认图形模æ¿ç­–ç•¥" #: ../user_admin.php:1384 #: ../user_group_admin.php:1109 msgid "Total Graphs" msgstr "总图数" #: ../user_admin.php:1411 #: ../user_group_admin.php:1136 msgid "No Matching Graph Templates Found" msgstr "找ä¸åˆ°åŒ¹é…的图形模æ¿" #: ../user_admin.php:1449 #: ../user_group_admin.php:1175 msgid "Default Tree Policy" msgstr "默认树策略" #: ../user_admin.php:1454 msgid "Default Tree Policy for this User" msgstr "此用户的默认树策略" #: ../user_admin.php:1547 #: ../user_group_admin.php:1269 msgid "No Matching Trees Found" msgstr "找ä¸åˆ°åŒ¹é…的树" #: ../user_admin.php:1592 #: ../user_group_admin.php:1315 msgid "User Permissions" msgstr "用户æƒé™" #: ../user_admin.php:1659 #: ../user_group_admin.php:1380 msgid "External Link Permissions" msgstr "外部链接æƒé™" #: ../user_admin.php:1716 #: ../user_group_admin.php:1437 msgid "Plugin Permissions" msgstr "æ’ä»¶æƒé™" #: ../user_admin.php:1772 msgid "Legacy 1.x Plugins" msgstr "Legacy 1.xæ’ä»¶" #: ../user_admin.php:1807 #: ../user_group_admin.php:1528 #, php-format msgid "User Settings %s" msgstr "用户设置 %s" #: ../user_admin.php:1922 #: ../user_group_admin.php:1644 msgid "Permissions" msgstr "æƒé™" #: ../user_admin.php:1923 msgid "Group Membership" msgstr "组æˆå‘˜" #: ../user_admin.php:1924 #: ../user_group_admin.php:1645 msgid "Graph Perms" msgstr "图形æƒé™" #: ../user_admin.php:1925 #: ../user_group_admin.php:1646 msgid "Device Perms" msgstr "设备æƒé™" #: ../user_admin.php:1926 #: ../user_group_admin.php:1647 msgid "Template Perms" msgstr "æ¨¡æ¿æƒé™" #: ../user_admin.php:1927 #: ../user_group_admin.php:1648 msgid "Tree Perms" msgstr "æ ‘æƒé™" #: ../user_admin.php:1969 #, php-format msgid "User Management %s" msgstr "ç”¨æˆ·ç®¡ç† %s" #: ../user_admin.php:2001 msgid "Password Too Short" msgstr "密ç å¤ªçŸ­" #: ../user_admin.php:2006 msgid "Password Validation Passes" msgstr "密ç éªŒè¯é€šè¡Œè¯" #: ../user_admin.php:2020 msgid "Passwords do Not Match" msgstr "密ç ä¸åŒ¹é…" #: ../user_admin.php:2023 msgid "Passwords Match" msgstr "密ç åŒ¹é…" #: ../user_admin.php:2267 #: ../user_group_admin.php:1884 msgid "Graph Policy" msgstr "图策略" #: ../user_admin.php:2268 #: ../user_group_admin.php:1885 msgid "Device Policy" msgstr "设备策略" #: ../user_admin.php:2269 #: ../user_group_admin.php:1886 msgid "Template Policy" msgstr "模æ¿ç­–ç•¥" #: ../user_admin.php:2270 msgid "Last Login" msgstr "上次登录" #: ../user_admin.php:2291 msgid "Unavailable" msgstr "ä¸å¯ç”¨" #: ../user_admin.php:2307 msgid "No Users Found" msgstr "未找到相应的用户" #: ../user_admin.php:2522 #: ../user_group_admin.php:2124 #, php-format msgid "Graph Permissions %s" msgstr "图表æƒé™ %s" #: ../user_admin.php:2577 #: ../user_admin.php:2664 msgid "Show All" msgstr "显示所有" #: ../user_admin.php:2631 #, php-format msgid "Group Membership %s" msgstr "组æˆå‘˜ %s" #: ../user_admin.php:2719 #: ../user_group_admin.php:2234 #, php-format msgid "Devices Permission %s" msgstr "设备æƒé™ %s" #: ../user_admin.php:2770 #: ../user_admin.php:2857 #: ../user_admin.php:2944 #: ../user_group_admin.php:2179 #: ../user_group_admin.php:2285 #: ../user_group_admin.php:2372 #: ../user_group_admin.php:2459 msgid "Show Exceptions" msgstr "显示例外" #: ../user_admin.php:2824 #: ../user_group_admin.php:2339 #, php-format msgid "Template Permission %s" msgstr "æ¨¡æ¿æƒé™ %s" #: ../user_admin.php:2911 #: ../user_admin.php:2998 #: ../user_group_admin.php:2426 #, php-format msgid "Tree Permission %s" msgstr "æ ‘æƒé™ %s" #: ../user_admin.php:3031 msgid "Show Exceptions<" msgstr "显示异常<" #: ../user_domains.php:222 msgid "Click 'Continue' to delete the following User Domain." msgid_plural "Click 'Continue' to delete following User Domains." msgstr[0] "点击“继续â€åˆ é™¤ä¸‹åˆ—用户域。" #: ../user_domains.php:227 msgid "Delete User Domain" msgid_plural "Delete User Domains" msgstr[0] "删除用户域" #: ../user_domains.php:231 msgid "Click 'Continue' to disable the following User Domain." msgid_plural "Click 'Continue' to disable following User Domains." msgstr[0] "点击“继续â€ä»¥ç¦ç”¨ä»¥ä¸‹ç”¨æˆ·åŸŸã€‚" #: ../user_domains.php:236 msgid "Disable User Domain" msgid_plural "Disable User Domains" msgstr[0] "ç¦ç”¨ç”¨æˆ·åŸŸ" #: ../user_domains.php:240 msgid "Click 'Continue' to enable the following User Domain." msgstr "点击“继续â€ä»¥å¯ç”¨ä»¥ä¸‹ç”¨æˆ·åŸŸã€‚" #: ../user_domains.php:245 msgid "Enabled User Domain" msgid_plural "Enable User Domains" msgstr[0] "å¯ç”¨ç”¨æˆ·åŸŸ" #: ../user_domains.php:249 msgid "Click 'Continue' to make the following the following User Domain the default one." msgstr "点击“继续â€ï¼Œå°†ä»¥ä¸‹ç”¨æˆ·åŸŸè®¾ä¸ºé»˜è®¤åŸŸã€‚" #: ../user_domains.php:254 msgid "Make Selected Domain Default" msgstr "使选定的域默认" #: ../user_domains.php:257 msgid "You must select at least one User Domain." msgstr "您必须至少选择一个用户域。" #: ../user_domains.php:308 #, php-format msgid "User Domain [edit: %s]" msgstr "用户域[编辑:%s]" #: ../user_domains.php:310 msgid "User Domain [new]" msgstr "用户域[新建]" #: ../user_domains.php:318 msgid "Enter a meaningful name for this domain. This will be the name that appears in the Login Realm during login." msgstr "为此域输入一个有æ„义的å称。 这将是在登录时出现在登录域中的å称。" #: ../user_domains.php:324 msgid "Domains Type" msgstr "域类型" #: ../user_domains.php:325 msgid "Choose what type of domain this is." msgstr "选择这是什么类型的域。" #: ../user_domains.php:332 msgid "The name of the user that Cacti will use as a template for new user accounts." msgstr "Cactiå°†ç”¨ä½œæ–°ç”¨æˆ·å¸æˆ·çš„æ¨¡æ¿çš„用户å称。" #: ../user_domains.php:342 msgid "If this checkbox is checked, users will be able to login using this domain." msgstr "如果选中此å¤é€‰æ¡†ï¼Œç”¨æˆ·å°†èƒ½å¤Ÿä½¿ç”¨æ­¤åŸŸè¿›è¡Œç™»å½•。" #: ../user_domains.php:359 msgid "The dns hostname or ip address of the server." msgstr "æœåŠ¡å™¨çš„DNSä¸»æœºåæˆ–IP地å€ã€‚" #: ../user_domains.php:367 msgid "TCP/UDP port for Non SSL communications." msgstr "TCP/UDP port for Non SSL communications." #: ../user_domains.php:406 msgid "Mode which cacti will attempt to authenticate against the LDAP server.
    No Searching - No Distinguished Name (DN) searching occurs, just attempt to bind with the provided Distinguished Name (DN) format.

    Anonymous Searching - Attempts to search for username against LDAP directory via anonymous binding to locate the users Distinguished Name (DN).

    Specific Searching - Attempts search for username against LDAP directory via Specific Distinguished Name (DN) and Specific Password for binding to locate the users Distinguished Name (DN)." msgstr "模å¼ï¼šcactiå°†å°è¯•对LDAPæœåŠ¡å™¨è¿›è¡Œèº«ä»½éªŒè¯ã€‚
    䏿œç´¢ - 没有å¯åˆ†è¾¨å称(DN)æœç´¢ï¼Œåªæ˜¯å°è¯•使用æä¾›çš„专有å称(DN)格å¼è¿›è¡Œç»‘定。

    åŒ¿åæœç´¢ - å°è¯•通过匿å绑定æœç´¢LDAP目录的用户å以找到用户å¯åˆ†è¾¨å称(DN)。

    特定æœç´¢ - å°è¯•通过特定专有å称(DNï¼‰å’Œç‰¹å®šå¯†ç æœç´¢LDAP目录的用户å以进行绑定以找到用户专有å称(DN)。" #: ../user_domains.php:455 msgid "Search base for searching the LDAP directory, such as \"dc=win2kdomain,dc=local\" or \"ou=people,dc=domain,dc=local\"." msgstr "用于æœç´¢LDAP目录的æœç´¢åº“,例如 \"dc=win2kdomain,dc=local\" or \"ou=people,dc=domain,dc=local\"." #: ../user_domains.php:462 msgid "Search filter to use to locate the user in the LDAP directory, such as for windows: \"(&(objectclass=user)(objectcategory=user)(userPrincipalName=<username>*))\" or for OpenLDAP: \"(&(objectClass=account)(uid=<username>))\". \"<username>\" is replaced with the username that was supplied at the login prompt." msgstr "æœç´¢è¿‡æ»¤å™¨ç”¨äºŽåœ¨LDAP目录中找到用户,例如用于Windows: \"(&(objectclass=user)(objectcategory=user)(userPrincipalName=<username>*))\" 或OpenLDAP: \"(&(objectClass=account)(uid=<username>))\". \"<username>\" 被在登录æç¤ºç¬¦å¤„æä¾›çš„ç”¨æˆ·åæ›¿æ¢ã€‚" #: ../user_domains.php:501 msgid "Domain Properties" msgstr "域属性" #: ../user_domains.php:627 msgid "Domains" msgstr "域" #: ../user_domains.php:714 msgid "Domain Name" msgstr "域å" #: ../user_domains.php:715 msgid "Domain Type" msgstr "域类型" #: ../user_domains.php:717 msgid "Effective User" msgstr "有效的用户" #: ../user_domains.php:730 msgid "None Selected" msgstr "未选择" #: ../user_domains.php:736 msgid "No User Domains Found" msgstr "没有找到用户域" #: ../user_group_admin.php:39 #: ../user_group_admin.php:58 msgid "Defer to the Users Setting" msgstr "按照用户设置" #: ../user_group_admin.php:43 msgid "Show the Page that the User pointed their browser to" msgstr "æ˜¾ç¤ºç”¨æˆ·æŒ‡å‘æµè§ˆå™¨çš„页é¢" #: ../user_group_admin.php:47 msgid "Show the Console" msgstr "显示控制å°" #: ../user_group_admin.php:51 msgid "Show the default Graph Screen" msgstr "显示默认的图形å±å¹•" #: ../user_group_admin.php:66 msgid "Restrict Access" msgstr "é™åˆ¶è®¿é—®" #: ../user_group_admin.php:73 #: ../user_group_admin.php:1881 msgid "Group Name" msgstr "组的åå­—" #: ../user_group_admin.php:74 msgid "The name of this Group." msgstr "这个组的å字。" #: ../user_group_admin.php:80 msgid "Group Description" msgstr "组æè¿°" #: ../user_group_admin.php:81 msgid "A more descriptive name for this group, that can include spaces or special characters." msgstr "这个组的更具æè¿°æ€§çš„å称,å¯ä»¥åŒ…å«ç©ºæ ¼æˆ–特殊字符。" #: ../user_group_admin.php:93 msgid "General Group Options" msgstr "一般组选项" #: ../user_group_admin.php:95 msgid "Set any user account-specific options here." msgstr "åœ¨è¿™é‡Œè®¾ç½®ä»»ä½•ç”¨æˆ·å¸æˆ·ç‰¹å®šçš„选项。" #: ../user_group_admin.php:99 msgid "Allow Users of this Group to keep custom User Settings" msgstr "å…许此用户组用户使用自定义的用户设置" #: ../user_group_admin.php:106 msgid "Tree Rights" msgstr "æ ‘æƒåˆ©" #: ../user_group_admin.php:108 msgid "Should Users of this Group have access to the Tree?" msgstr "该组的用户是å¦å¯ä»¥è®¿é—®è¯¥æ ‘?" #: ../user_group_admin.php:114 msgid "Graph List Rights" msgstr "图表列表æƒåˆ©" #: ../user_group_admin.php:116 msgid "Should Users of this Group have access to the Graph List?" msgstr "该组的用户是å¦å¯ä»¥è®¿é—®å›¾è¡¨åˆ—表?" #: ../user_group_admin.php:122 msgid "Graph Preview Rights" msgstr "图预览æƒé™" #: ../user_group_admin.php:124 msgid "Should Users of this Group have access to the Graph Preview?" msgstr "该组的用户是å¦å¯ä»¥è®¿é—®å›¾å½¢é¢„览?" #: ../user_group_admin.php:133 msgid "What to do when a User from this User Group logs in." msgstr "当此用户组中的用户登录时该怎么åšã€‚" #: ../user_group_admin.php:441 msgid "Click 'Continue' to delete the following User Group" msgid_plural "Click 'Continue' to delete following User Groups" msgstr[0] "点击“继续â€åˆ é™¤ä¸‹åˆ—用户组" #: ../user_group_admin.php:446 msgid "Delete User Group" msgid_plural "Delete User Groups" msgstr[0] "删除用户组" #: ../user_group_admin.php:454 msgid "Click 'Continue' to Copy the following User Group to a new User Group." msgid_plural "Click 'Continue' to Copy following User Groups to new User Groups." msgstr[0] "点击“继续â€å°†ä¸‹åˆ—用户组å¤åˆ¶åˆ°æ–°çš„用户组。" #: ../user_group_admin.php:460 msgid "Group Prefix:" msgstr "组å‰ç¼€ï¼š" #: ../user_group_admin.php:461 msgid "New Group" msgstr "新组" #: ../user_group_admin.php:465 msgid "Copy User Group" msgid_plural "Copy User Groups" msgstr[0] "å¤åˆ¶ç”¨æˆ·ç»„" #: ../user_group_admin.php:471 msgid "Click 'Continue' to enable the following User Group." msgid_plural "Click 'Continue' to enable following User Groups." msgstr[0] "点击“继续â€ä»¥å¯ç”¨ä»¥ä¸‹ç”¨æˆ·ç»„。" #: ../user_group_admin.php:476 msgid "Enable User Group" msgid_plural "Enable User Groups" msgstr[0] "å¯ç”¨ç”¨æˆ·ç»„" #: ../user_group_admin.php:482 msgid "Click 'Continue' to disable the following User Group." msgid_plural "Click 'Continue' to disable following User Groups." msgstr[0] "点击“继续â€ä»¥ç¦ç”¨ä»¥ä¸‹ç”¨æˆ·ç»„。" #: ../user_group_admin.php:487 msgid "Disable User Group" msgid_plural "Disable User Groups" msgstr[0] "ç¦ç”¨ç”¨æˆ·ç»„" #: ../user_group_admin.php:490 msgid "You must select at least one Group." msgstr "您必须至少选择一个组。" #: ../user_group_admin.php:675 msgid "Login Name" msgstr "登录å" #: ../user_group_admin.php:675 msgid "Membership" msgstr "会å‹" #: ../user_group_admin.php:686 msgid "Group Member" msgstr "组æˆå‘˜" #: ../user_group_admin.php:696 msgid "No Matching Group Members Found" msgstr "找ä¸åˆ°åŒ¹é…的群组æˆå‘˜" #: ../user_group_admin.php:710 msgid "Add to Group" msgstr "添加到组" #: ../user_group_admin.php:711 msgid "Remove from Group" msgstr "从组中删除" #: ../user_group_admin.php:750 #: ../user_group_admin.php:891 msgid "Default Graph policy for this User Group" msgstr "此用户组的默认图策略" #: ../user_group_admin.php:1039 msgid "Default Graph Template policy for this User Group" msgstr "此用户组的默认图形模æ¿ç­–ç•¥" #: ../user_group_admin.php:1180 msgid "Default Tree policy for this User Group" msgstr "此用户组的默认树策略" #: ../user_group_admin.php:1643 #: ../user_group_admin.php:1882 msgid "Members" msgstr "æˆå‘˜" #: ../user_group_admin.php:1655 #, php-format msgid "User Group Management [edit: %s]" msgstr "用户组管ç†[编辑:%s]" #: ../user_group_admin.php:1657 msgid "User Group Management [new]" msgstr "用户组管ç†[新建]" #: ../user_group_admin.php:1791 msgid "User Group Management" msgstr "用户组管ç†" #: ../user_group_admin.php:1912 msgid "No User Groups Found" msgstr "找ä¸åˆ°ç”¨æˆ·ç»„" #: ../user_group_admin.php:2513 #, php-format msgid "User Membership %s" msgstr "用户æˆå‘˜ %s" #: ../user_group_admin.php:2546 msgid "Show Members" msgstr "显示æˆå‘˜" #: ../user_group_admin.php:2552 msgctxt "filter reset" msgid "Clear" msgstr "清除" #: ../utilities.php:164 msgid "NET-SNMP Not Installed or its paths are not set. Please install if you wish to monitor SNMP enabled devices." msgstr "未安装NET-SNMP或其路径未设置。 如果您希望监视å¯ç”¨SNMP的设备,请安装。" #: ../utilities.php:170 msgid "Configuration Settings" msgstr "é…置设置" #: ../utilities.php:170 #, php-format msgid "ERROR: Installed RRDtool version does not match configured version.
    Please visit the %s and select the correct RRDtool Utility Version." msgstr "错误:已安装的RRDtool版本与é…置版本ä¸åŒ¹é…。
    请访问 %s并选择正确的RRDtool Utility版本。" #: ../utilities.php:174 #, php-format msgid "ERROR: RRDtool 1.2.x+ does not support the GIF images format, but %d\" graph(s) and/or templates have GIF set as the image format." msgstr "错误:RRDtool 1.2.x +䏿”¯æŒGIFå›¾åƒæ ¼å¼ï¼Œä½† %d\"图形和/或模æ¿å°†GIFè®¾ç½®ä¸ºå›¾åƒæ ¼å¼ã€‚" #: ../utilities.php:194 msgid "Database" msgstr "æ•°æ®åº“" #: ../utilities.php:195 msgid "PHP Info" msgstr "PHP Info" #: ../utilities.php:202 #, php-format msgid "Technical Support [%s]" msgstr "æŠ€æœ¯æ”¯æŒ [%s]" #: ../utilities.php:229 msgid "General Information" msgstr "一般信æ¯" #: ../utilities.php:243 msgid "Cacti OS" msgstr "Cacti OS" #: ../utilities.php:253 msgid "NET-SNMP Version" msgstr "NET-SNMP版本" #: ../utilities.php:281 #: ../utilities.php:314 #, php-format msgid "Total: %s" msgstr "总: %s" #: ../utilities.php:288 msgid "Poller Information" msgstr "轮询信æ¯" #: ../utilities.php:311 #, php-format msgid "Action[%s]" msgstr "æ“作[%s]" #: ../utilities.php:316 msgid "No items to poll" msgstr "没有项目轮询" #: ../utilities.php:322 msgid "Concurrent Processes" msgstr "å¹¶å‘进程" #: ../utilities.php:327 msgid "Max Threads" msgstr "最大线程" #: ../utilities.php:332 msgid "PHP Servers" msgstr "PHPæœåС噍" #: ../utilities.php:337 msgid "Script Timeout" msgstr "脚本超时" #: ../utilities.php:342 msgid "Max OID" msgstr "Max OID" #: ../utilities.php:347 msgid "Last Run Statistics" msgstr "上次è¿è¡Œç»Ÿè®¡" #: ../utilities.php:355 msgid "System Memory" msgstr "系统内存" #: ../utilities.php:384 msgid "PHP Information" msgstr "PHP的信æ¯" #: ../utilities.php:391 msgid "PHP Version 5.5.0+ is recommended due to strong password hashing support." msgstr "ç”±äºŽå¼ºå¤§çš„å¯†ç æ•£åˆ—支æŒï¼Œå»ºè®®ä½¿ç”¨PHP版本5.5.0以上的版本。" #: ../utilities.php:396 msgid "PHP OS" msgstr "PHP OS" #: ../utilities.php:401 msgid "PHP uname" msgstr "PHP uname" #: ../utilities.php:412 msgid "PHP SNMP" msgstr "PHP SNMP" #: ../utilities.php:447 msgid "You've set memory limit to 'unlimited'." msgstr "您已将内存é™åˆ¶è®¾ç½®ä¸ºâ€œunlimitedâ€ã€‚" #: ../utilities.php:449 #, php-format msgid "It is highly suggested that you alter you php.ini memory_limit to %s or higher." msgstr "强烈建议您将php.iniçš„memory_limit改为%s或更高。" #: ../utilities.php:450 msgid "This suggested memory value is calculated based on the number of data source present and is only to be used as a suggestion, actual values may vary system to system based on requirements." msgstr "è¿™ä¸ªå»ºè®®çš„å†…å­˜å€¼æ˜¯æ ¹æ®æ•°æ®æºçš„æ•°é‡æ¥è®¡ç®—çš„ï¼Œåªæ˜¯ä½œä¸ºä¸€ä¸ªå»ºè®®ï¼Œæ ¹æ®éœ€è¦ï¼Œå®žé™…值å¯èƒ½ä¼šéšç³»ç»Ÿçš„ä¸åŒè€Œä¸åŒã€‚" #: ../utilities.php:458 msgid "MySQL Table Information - Sizes in KBytes" msgstr "MySQLè¡¨ä¿¡æ¯ - 以KB为å•ä½çš„大å°" #: ../utilities.php:467 msgid "Engine" msgstr "引擎" #: ../utilities.php:469 msgid "Avg Row Length" msgstr "å¹³å‡è¡Œé•¿åº¦" #: ../utilities.php:470 msgid "Data Length" msgstr "æ•°æ®é•¿åº¦" #: ../utilities.php:471 msgid "Index Length" msgstr "索引长度" #: ../utilities.php:472 msgid "Collation" msgstr "校验" #: ../utilities.php:473 msgid "Comment" msgstr "评论" #: ../utilities.php:491 msgid "Unable to retrieve table status" msgstr "无法检索表格状æ€" #: ../utilities.php:497 msgid "PHP Module Information" msgstr "PHP的模å—ä¿¡æ¯" #: ../utilities.php:623 msgid "User Login History" msgstr "用户登录历å²" #: ../utilities.php:632 #: ../utilities.php:763 msgid "User" msgstr "User" #: ../utilities.php:637 msgid "Deleted/Invalid" msgstr "删除/无效" #: ../utilities.php:650 #: ../utilities.php:767 msgid "Result" msgstr "结果" #: ../utilities.php:655 msgid "Success - Pswd" msgstr "æˆåŠŸ - Pswd" #: ../utilities.php:656 msgid "Success - Token" msgstr "æˆåŠŸ - 令牌" #: ../utilities.php:657 msgid "Failed" msgstr "失败" #: ../utilities.php:661 msgid "Attempts" msgstr "å°è¯•" #: ../utilities.php:676 #: ../utilities.php:1009 #: ../utilities.php:1337 #: ../utilities.php:1584 #: ../utilities.php:2293 #: ../utilities.php:2557 #: ../vdef.php:686 msgctxt "Button: use filter settings" msgid "Go" msgstr "è¿è¡Œ" #: ../utilities.php:679 #: ../utilities.php:1012 #: ../utilities.php:1340 #: ../utilities.php:1587 #: ../utilities.php:2296 #: ../utilities.php:2558 #: ../vdef.php:689 msgctxt "Button: reset filter settings" msgid "Clear" msgstr "清除" #: ../utilities.php:682 #: ../utilities.php:1015 #: ../utilities.php:2559 msgctxt "Button: delete all table entries" msgid "Purge" msgstr "清除" #: ../utilities.php:682 msgid "Purge User Log" msgstr "清除用户日志" #: ../utilities.php:756 msgid "User Logins" msgstr "用户登录" #: ../utilities.php:768 msgid "IP Address" msgstr "IP地å€" #: ../utilities.php:784 msgid "(User Removed)" msgstr "用户删除" #: ../utilities.php:1072 #, php-format msgid "Log [Total Lines: %d - Non-Matching Items Hidden]" msgstr "日志[总行数:%d - éšè—çš„ä¸åŒ¹é…项目]" #: ../utilities.php:1074 #, php-format msgid "Log [Total Lines: %d - All Items Shown]" msgstr "日志[总行数:%d - 显示的所有项目]" #: ../utilities.php:1173 #, php-format msgid "%s - WEBUI: Cacti Log Cleared from Web Management Interface." msgstr "%s - WEBUI:从Web管ç†ç•Œé¢æ¸…除Cacti日志。" #: ../utilities.php:1175 msgid "Cacti Log Cleared" msgstr "Cacti 日志清除" #: ../utilities.php:1177 msgid "Error: Unable to clear log, no write permissions." msgstr "错误:无法清除日志,没有写入æƒé™ã€‚" #: ../utilities.php:1180 msgid "Error: Unable to clear log, file does not exist." msgstr "错误:无法清除日志,文件ä¸å­˜åœ¨ã€‚" #: ../utilities.php:1273 msgid "Data Query Cache Items" msgstr "æ•°æ®æŸ¥è¯¢ç¼“存项目" #: ../utilities.php:1289 msgid "Query Name" msgstr "查询åç§°" #: ../utilities.php:1409 msgid "Field Value" msgstr "字段值" #: ../utilities.php:1409 msgid "Index" msgstr "索引" #: ../utilities.php:1545 msgid "Poller Cache Items" msgstr "轮询缓存项目" #: ../utilities.php:1606 msgid "Script" msgstr "脚本" #: ../utilities.php:1722 #: ../utilities.php:1727 msgid "SNMP Version:" msgstr "SNMP版本:" #: ../utilities.php:1723 msgid "Community:" msgstr "团体å:" #: ../utilities.php:1724 #: ../utilities.php:1728 msgid "OID:" msgstr "OID:" #: ../utilities.php:1728 msgid "User:" msgstr "用户å:" #: ../utilities.php:1731 msgid "Script:" msgstr "脚本:" #: ../utilities.php:1733 msgid "Script Server:" msgstr "脚本æœåŠ¡å™¨ï¼š" #: ../utilities.php:1746 msgid "RRD:" msgstr "RRD:" #: ../utilities.php:1767 msgid "Cacti technical support page. Used by developers and technical support persons to assist with issues in Cacti. Includes checks for common configuration issues." msgstr "Cacti技术支æŒé¡µé¢ã€‚ 由开å‘人员和技术支æŒäººå‘˜ç”¨æ¥å助处ç†ä»™äººæŽŒä¸­çš„问题。 包括检查常è§çš„é…置问题。" #: ../utilities.php:1769 msgid "Log Administration" msgstr "日志管ç†" #: ../utilities.php:1771 msgid "The Cacti Log stores statistic, error and other message depending on system settings. This information can be used to identify problems with the poller and application." msgstr "Cacti Logæ ¹æ®ç³»ç»Ÿè®¾ç½®å­˜å‚¨ç»Ÿè®¡ä¿¡æ¯ï¼Œé”™è¯¯ä¿¡æ¯å’Œå…¶ä»–ä¿¡æ¯ã€‚ 这些信æ¯å¯ä»¥ç”¨æ¥è¯†åˆ«è½®è¯¢å™¨å’Œåº”用程åºçš„问题。" #: ../utilities.php:1775 msgid "Allows Administrators to browse the user log. Administrators can filter and export the log as well." msgstr "å…许管ç†å‘˜æµè§ˆç”¨æˆ·æ—¥å¿—。 管ç†å‘˜ä¹Ÿå¯ä»¥è¿‡æ»¤å’Œå¯¼å‡ºæ—¥å¿—。" #: ../utilities.php:1779 msgid "Poller Cache Administration" msgstr "轮询缓存管ç†" #: ../utilities.php:1782 msgid "This is the data that is being passed to the poller each time it runs. This data is then in turn executed/interpreted and the results are fed into the RRDfiles for graphing or the database for display." msgstr "è¿™æ˜¯æ¯æ¬¡è¿è¡Œæ—¶ä¼ é€’给轮询器的数æ®ã€‚ ç„¶åŽä¾æ¬¡æ‰§è¡Œ/解释这些数æ®ï¼Œå¹¶å°†ç»“果输入到RRD文件中进行绘图或显示数æ®åº“。" #: ../utilities.php:1786 msgid "The Data Query Cache stores information gathered from Data Query input types. The values from these fields can be used in the text area of Graphs for Legends, Vertical Labels, and GPRINTS as well as in CDEF's." msgstr "æ•°æ®æŸ¥è¯¢ç¼“å­˜å­˜å‚¨ä»Žæ•°æ®æŸ¥è¯¢è¾“入类型收集的信æ¯ã€‚ æ¥è‡ªè¿™äº›å­—段的值å¯ä»¥åœ¨å›¾å½¢çš„图例,垂直标签和GPRINTS以åŠCDEF中使用。" #: ../utilities.php:1788 msgid "Rebuild Poller Cache" msgstr "é‡å»ºè½®è¯¢ç¼“å­˜" #: /tmp/cacti_package.12750/cacti-1.1.34/utilities.php:1863 msgid "The Poller Cache will be re-generated if you select this option. Use this option only in the event of a database crash if you are experiencing issues after the crash and have already run the database repair tools. Alternatively, if you are having problems with a specific Device, simply re-save that Device to rebuild its Poller Cache. There is also a command line interface equivalent to this command that is recommended for large systems. NOTE: On large systems, this command may take several minutes to hours to complete and therefore should not be run from the Cacti UI. You can simply run 'php -q cli/rebuild_poller_cache.php --help' at the command line for more information." msgstr "å¦‚æžœæ‚¨é€‰æ‹©æ­¤é€‰é¡¹ï¼Œåˆ™å°†é‡æ–°ç”Ÿæˆè½®è¯¢ç¼“存。如果在崩溃åŽé‡åˆ°é—®é¢˜å¹¶ä¸”å·²ç»è¿è¡Œæ•°æ®åº“ä¿®å¤å·¥å…·ï¼Œåˆ™åªæœ‰åœ¨å‘生数æ®åº“崩溃的情况下æ‰ä½¿ç”¨æ­¤é€‰é¡¹;或者,如果您é‡åˆ°é—®é¢˜ 使用特定的设备,åªéœ€é‡æ–°ä¿å­˜è¯¥è®¾å¤‡ä»¥é‡å»ºå…¶è½®è¯¢ç¼“å­˜å³å¯ã€‚还有一个与此命令等效的命令行界é¢ï¼Œå»ºè®®ç”¨äºŽå¤§åž‹ç³»ç»Ÿã€‚注æ„:在大型系统 ,这个命令å¯èƒ½éœ€è¦å‡ åˆ†é’Ÿåˆ°å‡ ä¸ªå°æ—¶æ‰èƒ½å®Œæˆï¼Œå› æ­¤ä¸åº”该从Cacti UIè¿è¡Œã€‚您å¯ä»¥åœ¨å‘½ä»¤è¡Œè¿è¡Œ'php -q cli / rebuild_poller_cache.php --help'ä»¥èŽ·å–æ›´å¤šä¿¡æ¯ã€‚" #: /tmp/cacti_package.12750/cacti-1.1.34/utilities.php:1865 msgid "Rebuild Resource Cache" msgstr "é‡å»ºèµ„æºç¼“å­˜" #: /tmp/cacti_package.12750/cacti-1.1.34/utilities.php:1867 msgid "When operating multiple Data Collectors in Cacti, Cacti will attempt to maintain state for key files on all Data Collectors. This includes all core, non-install related website and plugin files. When you force a Resource Cache rebild, Cacti will clear the local Resource Cache, and then rebuild it at the next scheduled poller start. This will trigger all Remote Data Collectors to recheck their website and plugin files for consistency." msgstr "当在Cacti中è¿è¡Œå¤šä¸ªæ•°æ®æ”¶é›†å™¨æ—¶ï¼ŒCactiå°†å°è¯•ç»´æŠ¤æ‰€æœ‰æ•°æ®æ”¶é›†å™¨ä¸Šçš„密钥文件的状æ€ï¼ŒåŒ…括所有核心的éžå®‰è£…相关网站和æ’件文件当您强制é‡ç½®èµ„æºç¼“存时,Cacti将清除本地 资æºç¼“存,然åŽåœ¨ä¸‹ä¸€ä¸ªè®¡åˆ’的轮询器å¯åŠ¨æ—¶é‡å»ºå®ƒï¼Œè¿™å°†è§¦å‘æ‰€æœ‰è¿œç¨‹æ•°æ®æ”¶é›†å™¨é‡æ–°æ£€æŸ¥å…¶ç½‘站和æ’件文件的一致性。" #: ../utilities.php:1794 msgid "Boost Utilities" msgstr "增强Utilities" #: ../utilities.php:1795 msgid "View Boost Status" msgstr "查看增强状æ€" #: ../utilities.php:1797 msgid "This menu pick allows you to view various boost settings and statistics associated with the current running Boost configuration." msgstr "通过此èœå•,您å¯ä»¥æŸ¥çœ‹ä¸Žå½“å‰è¿è¡Œçš„增强é…置相关的å„ç§å‡åŽ‹è®¾ç½®å’Œç»Ÿè®¡ä¿¡æ¯ã€‚" #: ../utilities.php:1801 msgid "RRD Utilities" msgstr "RRD实用程åº" #: ../utilities.php:1802 msgid "RRDfile Cleaner" msgstr "RRDfile清ç†ç¨‹åº" #: ../utilities.php:1804 msgid "When you delete Data Sources from Cacti, the corresponding RRDfiles are not removed automatically. Use this utility to facilitate the removal of these old files." msgstr "从Cactiä¸­åˆ é™¤æ•°æ®æºæ—¶ï¼Œç›¸åº”çš„RRD文件ä¸ä¼šè‡ªåŠ¨åˆ é™¤ã€‚ ä½¿ç”¨æ­¤å®žç”¨ç¨‹åºæ¥å¸®åŠ©åˆ é™¤è¿™äº›æ—§æ–‡ä»¶ã€‚" #: ../utilities.php:1808 msgid "SNMPAgent Utilities" msgstr "SNMPAgent实用程åº" #: ../utilities.php:1809 msgid "View SNMPAgent Cache" msgstr "查看SNMPAgent缓存" #: ../utilities.php:1811 msgid "This shows all objects being handled by the SNMPAgent." msgstr "这显示了SNMPAgent处ç†çš„æ‰€æœ‰å¯¹è±¡ã€‚" #: ../utilities.php:1813 msgid "Rebuild SNMPAgent Cache" msgstr "é‡å»ºSNMPAgent缓存" #: ../utilities.php:1815 msgid "The SNMP cache will be cleared and re-generated if you select this option. Note that it takes another poller run to restore the SNMP cache completely." msgstr "如果您选择此选项,SNMPç¼“å­˜å°†è¢«æ¸…é™¤å¹¶é‡æ–°ç”Ÿæˆã€‚ 请注æ„,它需è¦å¦ä¸€ä¸ªè½®è¯¢å™¨æ‰èƒ½å®Œå…¨æ¢å¤SNMP缓存" #: ../utilities.php:1817 msgid "View SNMPAgent Notification Log" msgstr "查看SNMPAgent通知日志" #: ../utilities.php:1819 msgid "This menu pick allows you to view the latest events SNMPAgent has handled in relation to the registered notification receivers." msgstr "通过此èœå•,您å¯ä»¥æŸ¥çœ‹SNMPAgent处ç†çš„与注册的通知接收方有关的最新事件。" #: ../utilities.php:1823 msgid "Allows Administrators to maintain SNMP notification receivers." msgstr "å…许管ç†å‘˜ç»´æŠ¤SNMP通知接收者。" #: ../utilities.php:1829 msgid "Cacti System Utilities" msgstr "Cacti 系统工具" #: ../utilities.php:1953 msgid "Overrun Warning" msgstr "è¶…é™è­¦å‘Š" #: ../utilities.php:1954 msgid "Timed Out" msgstr "è¶…æ—¶" #: ../utilities.php:1955 msgid "Other" msgstr "å…¶ä»–" #: ../utilities.php:1957 msgid "Never Run" msgstr "从没有è¿è¡Œ" #: ../utilities.php:2010 msgid "Cannot open directory" msgstr "无法打开目录" #: ../utilities.php:2014 msgid "Directory Does NOT Exist!!" msgstr "目录ä¸å­˜åœ¨ï¼" #: ../utilities.php:2021 msgid "Current Boost Status" msgstr "当å‰å¢žå¼ºçжæ€" #: ../utilities.php:2024 msgid "Boost On-demand Updating:" msgstr "增强按需更新:" #: ../utilities.php:2027 msgid "Total Data Sources:" msgstr "æ€»æ•°æ®æ¥æºï¼š" #: ../utilities.php:2031 msgid "Pending Boost Records:" msgstr "等待增强记录:" #: ../utilities.php:2034 msgid "Archived Boost Records:" msgstr "存档的增强记录:" #: ../utilities.php:2037 msgid "Total Boost Records:" msgstr "总增强记录:" #: ../utilities.php:2041 msgid "Boost Storage Statistics" msgstr "增强存储统计" #: ../utilities.php:2045 msgid "Database Engine:" msgstr "æ•°æ®åº“引擎:" #: ../utilities.php:2049 msgid "Current Boost Table(s) Size:" msgstr "ç›®å‰çš„增强表尺寸:" #: ../utilities.php:2053 msgid "Avg Bytes/Record:" msgstr "å¹³å‡å­—节/记录:" #: ../utilities.php:2081 #, php-format msgid "%d Bytes" msgstr "%d Bytes" #: ../utilities.php:2081 msgid "Max Record Length:" msgstr "最大记录长度:" #: ../utilities.php:2087 #: ../utilities.php:2088 msgid "Unlimited" msgstr "æ— é™" #: ../utilities.php:2093 msgid "Max Allowed Boost Table Size:" msgstr "最大å…许增强表大å°ï¼š" #: ../utilities.php:2097 msgid "Estimated Maximum Records:" msgstr "预计最大记录数:" #: ../utilities.php:2100 msgid "Runtime Statistics" msgstr "è¿è¡Œæ—¶ç»Ÿè®¡" #: ../utilities.php:2103 msgid "Last Start Time:" msgstr "上次开始时间:" #: ../utilities.php:2106 msgid "Last Run Duration:" msgstr "上次è¿è¡Œæ—¶é—´ï¼š" #: ../utilities.php:2107 #, php-format msgid "%d minutes" msgstr "%d 分" #: ../utilities.php:2107 #, php-format msgid "%d seconds" msgstr "%d ç§’" #: ../utilities.php:2108 #, php-format msgid "%0.2f percent of update frequency)" msgstr "%0.2f 更新频率的)" #: ../utilities.php:2112 msgid "RRD Updates:" msgstr "RRD更新:" #: ../utilities.php:2115 #: ../utilities.php:2121 msgid "MBytes" msgstr "MBytes" #: ../utilities.php:2115 msgid "Peak Poller Memory:" msgstr "峰值轮询内存:" #: ../utilities.php:2118 msgid "Detailed Runtime Timers:" msgstr "详细的è¿è¡Œæ—¶é—´å®šæ—¶å™¨ï¼š" #: ../utilities.php:2121 msgid "Max Poller Memory Allowed:" msgstr "å…许的最大轮询内存:" #: ../utilities.php:2124 msgid "Run Time Configuration" msgstr "è¿è¡Œæ—¶é—´é…ç½®" #: ../utilities.php:2127 msgid "Update Frequency:" msgstr "更新频率:" #: ../utilities.php:2130 msgid "Next Start Time:" msgstr "下一个开始时间:" #: ../utilities.php:2133 msgid "Maximum Records:" msgstr "最大记录:" #: ../utilities.php:2133 msgid "Records" msgstr "记录" #: ../utilities.php:2136 msgid "Maximum Allowed Runtime:" msgstr "最大å…许è¿è¡Œæ—¶é—´ï¼š" #: ../utilities.php:2142 msgid "Image Caching Status:" msgstr "图åƒç¼“存状æ€ï¼š" #: ../utilities.php:2145 msgid "Cache Directory:" msgstr "缓存目录:" #: ../utilities.php:2148 msgid "Cached Files:" msgstr "缓存文件:" #: ../utilities.php:2151 msgid "Cached Files Size:" msgstr "缓存文件大å°ï¼š" #: ../utilities.php:2248 msgid "SNMPAgent Cache" msgstr "SNMP Agent缓存" #: ../utilities.php:2278 msgid "OIDs" msgstr "OIDs" #: ../utilities.php:2358 msgid "Column Data" msgstr "列数æ®" #: ../utilities.php:2358 msgid "Scalar" msgstr "纯é‡" #: ../utilities.php:2501 msgid "SNMPAgent Notification Log" msgstr "SNMPAgent通知日志" #: ../utilities.php:2529 #: ../utilities.php:2613 msgid "Receiver" msgstr "接收器" #: ../utilities.php:2605 msgid "Log Entries" msgstr "日志æ¡ç›®" #: ../utilities.php:2620 #, php-format msgid "Severity Level: %s" msgstr "严é‡çº§åˆ«ï¼š %s" #: ../vdef.php:265 msgid "Click 'Continue' to delete the following VDEF." msgid_plural "Click 'Continue' to delete following VDEFs." msgstr[0] "点击“继续â€åˆ é™¤ä»¥ä¸‹VDEF。" #: ../vdef.php:270 msgid "Delete VDEF" msgid_plural "Delete VDEFs" msgstr[0] "删除 VDEF" #: ../vdef.php:274 msgid "Click 'Continue' to duplicate the following VDEF. You can optionally change the title format for the new VDEF." msgid_plural "Click 'Continue' to duplicate following VDEFs. You can optionally change the title format for the new VDEFs." msgstr[0] "点击“继续â€å¤åˆ¶ä¸‹é¢çš„VDEF。 您å¯ä»¥é€‰æ‹©æ›´æ”¹æ–°VDEF的标题格å¼ã€‚" #: ../vdef.php:280 msgid "Duplicate VDEF" msgid_plural "Duplicate VDEFs" msgstr[0] "é‡å¤VDEF" #: ../vdef.php:283 msgid "You must select at least one VDEF." msgstr "You must select at least one VDEF." #: ../vdef.php:325 msgid "Click 'Continue' to delete the following VDEF's." msgstr "点击“继续â€åˆ é™¤ä¸‹é¢çš„VDEF。" #: ../vdef.php:385 #| msgid "Preview" msgid "VDEF Preview" msgstr "VDEF预览" #: ../vdef.php:390 #, php-format msgid "VDEF Items [edit: %s]" msgstr "VDEF项目[编辑:%s]" #: ../vdef.php:392 msgid "VDEF Items [new]" msgstr "VDEF项目[新建]" #: ../vdef.php:408 msgid "Choose what type of VDEF item this is." msgstr "选择这是什么类型的VDEF项目。" #: ../vdef.php:408 msgid "VDEF Item Type" msgstr "VDEF Item Type" #: ../vdef.php:430 msgid "Enter a value for this VDEF item." msgstr "为 VDEF 输入一个值。" #: ../vdef.php:430 msgid "VDEF Item Value" msgstr "VDEF Item Value" #: ../vdef.php:535 #, php-format msgid "VDEFs [edit: %s]" msgstr "VDEFs[编辑: %s]" #: ../vdef.php:537 msgid "VDEFs [new]" msgstr "VDEFs[新建]" #: ../vdef.php:600 #: ../vdef.php:639 msgid "Delete VDEF Item" msgstr "删除此VDEF项目" #: ../vdef.php:845 msgid "The name of this VDEF." msgstr "VDEFçš„å称。" #: ../vdef.php:845 msgid "VDEF Name" msgstr "VDEFå…¨å" #: ../vdef.php:846 msgid "VDEFs that are in use cannot be Deleted. In use is defined as being referenced by a Graph or a Graph Template." msgstr "正在由图形或图形模æ¿å¼•用的VDEFä¸èƒ½è¢«åˆ é™¤ã€‚ " #: ../vdef.php:847 msgid "The number of Graphs using this VDEF." msgstr "使用此VDEF的图的数é‡ã€‚" #: ../vdef.php:848 msgid "The number of Graphs Templates using this VDEF." msgstr "使用此VDEF的图形模æ¿çš„æ•°é‡ã€‚" #: ../vdef.php:871 msgid "No VDEFs" msgstr "没有VDEF's" #: ../aggregate_graphs.php:633 #: ../graph.php:431 #: ../graphs.php:1398 msgid "RRDTool Command:" msgstr "RRDTool 命令:" #: ../aggregate_graphs.php:635 #: ../graph.php:434 #: ../graphs.php:1400 msgid "RRDTool Says:" msgstr "RRDTool 说:" #: ../automation_networks.php:185 #, php-format msgid "ERROR: You must specificy the day of the week. Disabling Network %s!." msgstr "错误:您必须指定星期几。 ç¦ç”¨ç½‘络%s!." #: ../automation_networks.php:191 #, php-format msgid "ERROR: You must specificy both the Months and Days of Month. Disabling Network %s!." msgstr "é”™è¯¯ï¼šæ‚¨å¿…é¡»åŒæ—¶æŒ‡å®šâ€œæœˆä»½â€å’Œâ€œæœˆä»½çš„天数â€ã€‚ ç¦ç”¨ç½‘络%s!." #: ../automation_networks.php:197 #, php-format msgid "ERROR: You must specificy the Months, Weeks of Months, and Days of Week. Disabling Network %s!." msgstr "é”™è¯¯ï¼šæ‚¨å¿…é¡»æŒ‡å®šæœˆï¼Œæ¯æœˆç¬¬å‡ å‘¨å’Œæ˜ŸæœŸå‡ ã€‚ ç¦ç”¨ç½‘络%s !." #: ../automation_networks.php:503 msgid "Use NetBIOS to attempt to result the hostname of up hosts." msgstr "使用NetBIOSæ¥å°è¯•标志主机的主机å。" #: ../automation_networks.php:516 msgid "If a device, previously added to Cacti, is found, rerun its data queries." msgstr "å¦‚æžœæ‰¾åˆ°ä»¥å‰æ·»åŠ åˆ°Cactiçš„è®¾å¤‡ï¼Œè¯·é‡æ–°è¿è¡Œå…¶æ•°æ®æŸ¥è¯¢ã€‚" #: ../automation_templates.php:316 msgid "This is a unique string that will be matched to a devices sysDescr string to pair it to this Discovery Template. Any Perl regular expression can be used in addition to any SQL Where expression." msgstr "这是一个唯一的字符串,它将与设备sysDescr字符串匹é…,以将其与å‘现模æ¿é…对。 除了任何SQL Where表达å¼ä¹‹å¤–,还å¯ä»¥ä½¿ç”¨ä»»ä½•Perl正则表达å¼ã€‚" #: ../data_queries.php:585 msgid "Suggested Values - Graph Names" msgstr "建议的值 - 图表åç§°" #: ../data_queries.php:678 msgid "Suggested Values - Data Source Names" msgstr "建议的值 - æ•°æ®æºåç§°" #: ../data_source_profiles.php:393 #, php-format msgid "RRA [edit: %s]" msgstr "RRA [编辑: %s]" #: ../data_source_profiles.php:487 msgid "Effective Timespan" msgstr "有效时间跨度" #: ../data_source_profiles.php:886 msgid "No Data Source Profiles" msgstr "æ²¡æœ‰æ•°æ®æºé…置文件" #: ../data_sources.php:700 #, php-format msgid "Data Source %d does not exist." msgstr "æ•°æ®æº%dä¸å­˜åœ¨ã€‚" #: ../data_templates.php:531 #: ../data_templates.php:603 #: ../data_templates.php:671 msgid "Use Per-Data Source Value (Ignore this Value)" msgstr "ä½¿ç”¨æ¯æ•°æ®æºå€¼ï¼ˆå¿½ç•¥æ­¤å€¼ï¼‰" #: ../graph_templates.php:351 msgid "Click 'Continue' to Synchronize your Graphs the following Graph Template(s). This function is important if you have Graphs that exist with multiple versions of a Graph Template and wish to make them all common in appearance." msgstr "点击“继续â€ä»¥åŒæ­¥ä½ çš„图表下é¢çš„图形模æ¿ã€‚ 如果您的图形存在多个图形模æ¿ç‰ˆæœ¬ï¼Œå¹¶ä¸”希望使它们在外观上通用,则此功能éžå¸¸é‡è¦ã€‚" #: ../graph_templates.php:524 msgid "Use Per-Graph Value (Ignore this Value)" msgstr "使用æ¯å›¾è¡¨å€¼ï¼ˆå¿½ç•¥æ­¤å€¼ï¼‰" #: ../include/global_arrays.php:437 msgid "MD5 (default)" msgstr "MD5 (默认)" #: ../include/global_arrays.php:443 msgid "DES (default)" msgstr "DES (默认)" #: ../include/global_form.php:53 msgid "" "How long can data be missing before RRDtool records unknown data. \n" "\t\t\tIncrease this value if your Data Source is unstable and you wish to carry forward \n" "\t\t\told data rather than show gaps in your graphs. This value is multiplied by the\n" "\t\t\tX-Files Factor to determine the actual amount of time." msgstr "" "在RRDtool记录未知数æ®ä¹‹å‰æ•°æ®å¯èƒ½ä¼šä¸¢å¤±å¤šä¹…。\n" "\t\t\tå¦‚æžœæ‚¨çš„æ•°æ®æºä¸ç¨³å®šå¹¶ä¸”希望继续å‰è¿›ï¼Œè¯·å¢žåŠ æ­¤å€¼\n" "\t\t\t告诉数æ®ï¼Œè€Œä¸æ˜¯åœ¨å›¾è¡¨ä¸­æ˜¾ç¤ºç©ºç™½ã€‚ 这个值乘以\n" "\t\t\tX-Fileså› ç´ æ¥ç¡®å®šå®žé™…的时间é‡ã€‚" #: ../include/global_form.php:130 msgid "Effective Retention" msgstr "有效的ä¿ç•™" #: ../include/global_form.php:371 msgid "" "Choose a name for this data source. It can include replacement variables such as |host_description| or |query_fieldName|.\n" " For a complete list of supported replacement tags, please see the Cacti documentation." msgstr "" "ä¸ºæ­¤æ•°æ®æºé€‰æ‹©ä¸€ä¸ªå称。 它å¯ä»¥åŒ…嫿›¿æ¢å˜é‡ï¼Œå¦‚| host_description | 或| query_fieldName |。\n" "             有关支æŒçš„æ›¿æ¢æ ‡ç­¾çš„完整列表,请å‚阅Cacti文档。" #: ../include/global_form.php:509 msgid "" "The name that is printed on the graph. It can include replacement variables such as |host_description| or |query_fieldName|.\n" "\t\t\tFor a complete list of supported replacement tags, please see the Cacti documentation." msgstr "" "打å°åœ¨å›¾è¡¨ä¸Šçš„å称。 它å¯ä»¥åŒ…嫿›¿æ¢å˜é‡ï¼Œå¦‚| host_description | 或| query_fieldName |。\n" "\t\t\t有关支æŒçš„æ›¿æ¢æ ‡ç­¾çš„完整列表,请å‚阅Cacti文档。" #: ../include/global_form.php:556 msgid "" "Using Slope Mode evens out the shape of the graphs at the expense of\n" "\t\t\tsome on screen resolution." msgstr "使用斜率模å¼ä¸ºä»£ä»·è§£å†³å›¾å½¢å½¢çŠ¶è¶…è¿‡å±å¹•" #: ../include/global_form.php:568 msgid "" "Auto scale the y-axis instead of defining an upper and lower limit. Note: if this is check both the\n" "\t\t\tUpper and Lower limit will be ignored." msgstr "" "自动缩放yè½´ï¼Œè€Œä¸æ˜¯å®šä¹‰ä¸Šé™å’Œä¸‹é™ã€‚ 注æ„:如果选中\n" "\t\t\t上é™å’Œä¸‹é™å°†è¢«å¿½ç•¥ã€‚" #: ../include/global_form.php:576 msgid "" "Use
    \n" "\t\t\t--alt-autoscale to scale to the absolute minimum and maximum
    \n" "\t\t\t--alt-autoscale-max to scale to the maximum value, using a given lower limit
    \n" "\t\t\t--alt-autoscale-min to scale to the minimum value, using a given upper limit
    \n" "\t\t\t--alt-autoscale (with limits) to scale using both lower and upper limits (RRDtool default)
    " msgstr "" "使用
    \n" "\t\t\t--alt-autoscale å¯ä»¥ç¼©æ”¾åˆ°ç»å¯¹æœ€å°å€¼å’Œæœ€å¤§å€¼
    \n" "\t\t\t--alt-autoscale-max ä½¿ç”¨ç»™å®šçš„ä¸‹é™æ¥ç¼©æ”¾åˆ°æœ€å¤§å€¼
    \n" "\t\t\t--alt-autoscale-min 使用给定的上é™å€¼ç¼©æ”¾åˆ°æœ€å°å€¼
    \n" "\t\t\t--alt-autoscale (with limits) (有é™åˆ¶ï¼‰ä½¿ç”¨ä¸‹é™å’Œä¸Šé™è¿›è¡Œç¼©æ”¾ï¼ˆRRDtool默认值)
    " #: ../include/global_form.php:611 msgid "" "Use SI Units for Logarithmic Scaling instead of using exponential notation.
    \n" "\t\t\tNote: Linear graphs use SI notation by default." msgstr "" "使用SIå•ä½è¿›è¡Œå¯¹æ•°æ ‡åº¦ï¼Œè€Œä¸æ˜¯ä½¿ç”¨æŒ‡æ•°æ ‡è®°ã€‚
    \n" "\t\t\t注æ„:线性图表默认情况下使用SI表示法。" #: ../include/global_form.php:646 msgid "" "Sets the exponent value on the Y-axis for numbers. Note: This option is\n" "\t\t\tdeprecated and replaced by the --y-grid option. In this option, Y-axis grid lines appear\n" "\t\t\tat each grid step interval. Labels are placed every label factor lines." msgstr "" "在Y轴上为数字设置指数值。 注æ„:这个选项是\n" "\t\t\t弃用了 并用--y-grid选项替æ¢ã€‚ 在此选项中,Y轴网格线出现\n" "\t\t\tæ¯ä¸ªç½‘格的步骤间隔。 标签放置在æ¯ä¸ªæ ‡ç­¾å› å­çº¿ä¸Šã€‚" #: ../include/global_form.php:656 msgid "" "What unit cacti should use on the Y-axis. Use 3 to display everything in \"k\" or -6\n" "\t\t\tto display everything in \"u\" (micro)." msgstr "" " cacti应该在Y轴上使用什么å•ä½ã€‚ 使用3显示 \"k\" 或 -6\n" "\t\t\t\"u\" (微).显示所有内容。" #: ../include/global_form.php:666 msgid "" "How many digits should RRDtool assume the y-axis labels to be? You may have to use this \n" "\t\t\toption to make enough space once you start fiddling with the y-axis labeling." msgstr "" "RRDtoolå‡è®¾yè½´æ ‡ç­¾åº”è¯¥æœ‰å¤šå°‘ä½æ•°ï¼Ÿ 您å¯èƒ½å¿…é¡»ä½¿ç”¨æ­¤å‚æ•° \n" "\t\t\t当您开始设置y轴标签时,è¦è…¾å‡ºè¶³å¤Ÿçš„空间。" #: ../include/global_form.php:673 msgid "" "In order to avoid anti-aliasing blurring effects RRDtool snaps points to device \n" "\t\t\tresolution pixels, this results in a crisper appearance. If this is not to your liking, you can \n" "\t\t\tuse this switch to turn this behavior off.
    Note: Gridfitting is turned off for PDF, EPS, SVG output by default." msgstr "" "为了é¿å…消除锯齿模糊效果,RRDtool将点指å‘设备分辨率åƒç´  \n" "\t\t\t这会导致外观更清晰。 如果这ä¸ç¬¦åˆä½ çš„喜好,你å¯ä»¥ \n" "\t\t\t使用此开关关闭此行为。
    注æ„:默认情况下,PDF,EPS,SVG输出关闭了Gridfitting。" #: ../include/global_form.php:681 msgid "" "The algorithm ensures that you always have a grid, that there are enough but not too many grid lines, \n" "\t\t\tand that the grid is metric. This parameter will also ensure that you get enough decimals displayed \n" "\t\t\teven if your graph goes from 69.998 to 70.001.
    Note: This parameter may interfere with --alt-autoscale options." msgstr "" "è¯¥ç®—æ³•ç¡®ä¿æ‚¨æ€»æ˜¯æœ‰ä¸€ä¸ªç½‘æ ¼ï¼Œæœ‰è¶³å¤Ÿçš„ä½†ä¸æ˜¯å¤ªå¤šçš„网格线, \n" "\t\t\t并且网格是公制的。 è¯¥å‚æ•°è¿˜å°†ç¡®ä¿æ˜¾ç¤ºè¶³å¤Ÿçš„å°æ•°ä½æ•°\n" "\t\t\t如果您的图形从69.998å˜ä¸º70.001,则为å分。
    注æ„ï¼šæ­¤å‚æ•°å¯èƒ½ä¼šå¹²æ‰°--alt-autoscale选项。" #: ../include/global_form.php:696 msgid "" "A second axis will be drawn to the right of the graph. It is tied to the left axis via the \n" "\t\t\tscale and shift parameters." msgstr "第二个轴将被绘制在图形的å³ä¾§ã€‚ 它通过scale和移ä½å‚数。绑在左边的轴上" #: ../include/global_form.php:713 #, php-format msgid "" "By default, the format of the axis labels gets determined automatically. \n" "\t\t\tIf you want to do this yourself, use this option with the same %lf arguments you know from the PRINT and GPRINT commands." msgstr "" "默认情况下,轴标签的格å¼è‡ªåŠ¨ç¡®å®šã€‚ \n" "\t\t\t如果您想自己执行此æ“作,请使用与PRINTå’ŒGPRINT命令中相åŒçš„%lf傿•°ç›¸åŒçš„选项。" #: ../include/global_form.php:722 msgid "" "When you setup the right axis labeling, apply a rule to the data format. Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S\"). See also --units-length and --right-axis-format. Finally\n" "\t\t\t\"duration\" where values are interpreted as duration in milliseconds. Formatting follows the rules of valstrfduration qualified PRINT/GPRINT." msgstr "" "å½“æ‚¨è®¾ç½®æ­£ç¡®çš„è½´æ ‡ç­¾æ—¶ï¼Œå°†è§„åˆ™åº”ç”¨äºŽæ•°æ®æ ¼å¼ã€‚ 支æŒçš„æ ¼å¼åŒ…括 \"numeric\" 其中\n" "\t\t\tdata被视为数值, \"timestamp\" 中的值被解释为UNIX时间戳(自1970å¹´1月以æ¥çš„秒数)\n" "\t\t\t使用strftimeæ ¼å¼è¡¨ç¤ºï¼ˆé»˜è®¤æ˜¯\"%Y-%m-%d %H:%M:%S\"). å¦è§--units-lengthå’Œ--right-axis-format。最åŽ\n" "\t\t\t\"duration\" 其中值被解释为以毫秒为å•ä½çš„æŒç»­æ—¶é—´ã€‚ æ ¼å¼éµå¾ªvalstrfrationåˆæ ¼PRINT / GPRINT的规则" #: ../include/global_form.php:733 msgid "" "When you setup the left axis labeling, apply a rule to the data format. Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S\"). See also --units-length. Finally \"duration\" where values\n" "\t\t\tare interpreted as duration in milliseconds. Formatting follows the rules of valstrfduration qualified PRINT/GPRINT." msgstr "" "è®¾ç½®å·¦è½´æ ‡ç­¾æ—¶ï¼Œå°†è§„åˆ™åº”ç”¨äºŽæ•°æ®æ ¼å¼ã€‚ 支æŒçš„æ ¼å¼åŒ…括\"numeric\",其中\n" "\t\t\tdata被视为数值, \"timestamp\"中的值被解释为UNIX时间戳(自1970å¹´1月以æ¥çš„秒数)\n" "\t\t\t使用strftimeæ ¼å¼è¡¨ç¤ºï¼ˆé»˜è®¤æ˜¯\"%Y-%m-%d %H:%M:%S\")。 å¦è¯·å‚阅 - å•ä½é•¿åº¦ã€‚ 最åŽâ€œæŒç»­æ—¶é—´â€\n" "\t\t\t在哪里值解释为æŒç»­æ—¶é—´ä»¥æ¯«ç§’为å•ä½ã€‚ æ ¼å¼éµå¾ªvalstrfrationåˆæ ¼PRINT / GPRINT的规则。" #: ../include/global_form.php:747 msgid "" "Pad text so that legend and graph data always line up. Note: this could cause\n" "\t\t\tgraphs to take longer to render because of the larger overhead. Also Auto Padding may not\n" "\t\t\tbe accurate on all types of graphs, consistent labeling usually helps." msgstr "" "å¡«å……æ–‡æœ¬ï¼Œä½¿å›¾ä¾‹å’Œå›¾å½¢æ•°æ®æ€»æ˜¯æŽ’队。 注æ„:这å¯èƒ½ä¼šå¯¼è‡´ç”±äºŽè¾ƒå¤§çš„开销\n" "\t\t\t绘图需è¦è¾ƒé•¿çš„æ—¶é—´æ¥æ¸²æŸ“。 å¦å¤–自动填充å¯èƒ½ä¸åœ¨æ‰€æœ‰ç±»åž‹çš„图表上都是准确的\n" "\t\t\t一致的标签通常是有帮助的" #: ../include/global_form.php:860 msgid "" "[HRULE|VRULE]: The value of the graph item.
    \n" "\t\t\t[TICK]: The fraction for the tick line.
    \n" "\t\t\t[SHIFT]: The time offset in seconds." msgstr "" "[HRULE|VRULE]: 图表项目的值。
    \n" "\t\t\t[TICK]: 刻度线的分数。
    \n" "\t\t\t[SHIFT]: 以秒为å•ä½çš„æ—¶é—´åç§»é‡ã€‚" #: ../include/global_form.php:869 msgid "" "If this graph item is a GPRINT, you can optionally choose another format\n" "\t\t\there. You can define additional types under \"GPRINT Presets\"." msgstr "" "如果此图项是GPRINT,则å¯ä»¥é€‰æ‹©å¦ä¸€ç§æ ¼å¼\n" "您å¯ä»¥åœ¨ \"GPRINT Presets\"下定义其他类型。" #: ../include/global_form.php:878 msgid "" "All subsequent legend line(s) will be aligned as given here. You may use this command multiple times in a single graph.\n" "\t\t\tThis command does not produce tabular layout.
    Note: You may want to insert a <HR> on the preceding graph item.
    \n" "\t\t\tNote: A <HR> on this legend line will obsolete this setting!" msgstr "" "所有åŽç»­çš„图例行将按照此处给出的方å¼å¯¹é½ã€‚ 您å¯ä»¥åœ¨å•个图表中多次使用此命令。\n" "\t\t\t此命令ä¸ä¼šç”Ÿæˆè¡¨æ ¼å¼å¸ƒå±€ã€‚
    注æ„: 您å¯èƒ½éœ€è¦æ’å…¥<HR> 在å‰é¢çš„图表项上。
    \n" "\t\t\t注æ„:A <HR> 在这个传奇线上会过时这个设置ï¼" #: ../include/global_form.php:1566 msgid "Discovery Rules" msgstr "å‘现规则" #: ../include/global_settings.php:144 msgid "Rotate the Cacti Log Nightly" msgstr "æ¯æ™šè½¬å­˜Cacti日志" #: ../include/global_settings.php:145 msgid "This will rotate the Cacti Log every night at midnight." msgstr "è¿™å°†æ¯æ™šåœ¨åˆå¤œæ—‹è½¬ Cacti 日志。" #: ../include/global_settings.php:151 msgid "The number of days to retain old logs. Use 0 to never remove any logs. (0-365)" msgstr "ä¿ç•™æ—§æ—¥å¿—的天数。 使用0æ°¸ä¸åˆ é™¤ä»»ä½•日志。(0-365)" #: ../include/global_settings.php:408 msgid "When checked, any attempts to access Cacti will be redirected to HTTPS to insure high security." msgstr "选中åŽï¼Œä»»ä½•访问Cactiçš„å°è¯•都将é‡å®šå‘到HTTPS以确ä¿é«˜åº¦å®‰å…¨ã€‚" #: ../include/global_settings.php:698 msgid "Test to place at the bottom center of every Graph." msgstr "测试放置在æ¯ä¸ªå›¾å½¢çš„底部中心。" #: ../include/global_settings.php:711 msgid "" "Any strings that match this regex will be excluded from the user display.\n" "\t\t\t\tFor example, if you want to exclude all log lines that include the words 'Admin' or 'Login'\n" "\t\t\t\tyou would type '(Admin || Login)'" msgstr "" "任何匹é…这个正则表达å¼çš„字符串将被排除在用户显示之外。\n" "\t\t\t\tä¾‹å¦‚ï¼Œå¦‚æžœæ‚¨è¦æŽ’é™¤åŒ…å«â€œç®¡ç†â€æˆ–“登录â€å­—样的所有日志行\n" "\t\t\t\t你应该输入'(Admin || Login)'" #: ../include/global_settings.php:746 msgid "" "This is the location, on the web server where the RRDfiles and PNG files will be cached.\n" "\t\t\tThis cache will be managed by the poller.\n" "\t\t\tMake sure you have the correct read and write permissions on this folder" msgstr "" "这是在RRD文件和PNG文件将被缓存的WebæœåŠ¡å™¨ä¸Šçš„ä½ç½®ã€‚\n" "\t\t\t此缓存将由轮询器管ç†ã€‚\n" "\t\t\t确认您对此文件夹有正确的读写æƒé™" #: ../include/global_settings.php:972 msgid "The name of the user that cacti will use as a template for new Web Basic and LDAP users; is 'guest' by default." msgstr "cacti将用作新的Web Basicå’ŒLDAP用户的模æ¿çš„用户的åç§°; 是默认的 'guest' 。" #: ../include/global_settings.php:1416 msgid "" "The number of consecutive hours that represent the hourly\n" "\t\t\taverage. Keep in mind that a setting too high can result in very large memory tables" msgstr "" "代表æ¯å°æ—¶çš„å¹³å‡è¿žç»­å°æ—¶æ•°\n" "\t\t\t请记ä½ï¼Œè®¾ç½®å¤ªé«˜ä¼šå¯¼è‡´éžå¸¸å¤§çš„内存表" #: ../include/global_settings.php:1443 msgid "Enable Single RRDtool Pipe" msgstr "å¯ç”¨å•RRDtool管é“" #: ../include/global_settings.php:1444 msgid "" "Using a single pipe will speed the RRDtool process by 10x. However, RRDtool crashes\n" "\t\t\tproblems can occur. Disable this setting if you need to find a bad RRDfile." msgstr "" "使用å•个管é“将加速RRDtool过程10å€ã€‚ 但是,RRDtool崩溃å¯èƒ½ä¼šå‘生。\n" "\t\t\tå¦‚æžœæ‚¨éœ€è¦æŸ¥æ‰¾é”™è¯¯çš„RRD文件,请ç¦ç”¨æ­¤è®¾ç½®ã€‚" #: ../include/global_settings.php:1451 msgid "" "If using a large system, it may be beneficial for you to only gather data as needed\n" "\t\t\tduring Cacti poller passes. If you check this box, Data Source Statistics will gather data this way." msgstr "" "如果使用大型系统,则åªéœ€æ ¹æ®éœ€è¦æ”¶é›†æ•°æ®è°ƒæ•´Cacti轮询器å¯èƒ½ä¼šæœ‰æ‰€å¸®åŠ©\n" "\t\t\t å¦‚æžœé€‰ä¸­æ­¤æ¡†ï¼Œæ•°æ®æºç»Ÿè®¡å°†ä»¥è¿™ç§æ–¹å¼æ”¶é›†æ•°æ®ã€‚" #: ../include/global_settings.php:1493 msgid "" "To optimize performance, the boost RRD updater needs to know how many Data Source Items\n" "\t\t\tshould be retrieved in one pass. Please be careful not to set too high as graphing performance during\n" "\t\t\tmajor updates can be compromised. If you encounter graphing or polling slowness during updates, lower this\n" "\t\t\tnumber. The default value is 50000." msgstr "" "为了优化性能,增强 RRD更新程åºéœ€è¦çŸ¥é“æœ‰å¤šå°‘ä¸ªæ•°æ®æºé¡¹\n" "\t\t\t应该一次检索。 在最é‡è¦çš„æ›´æ–°å¯èƒ½ä¼šå—åˆ°å½±å“æœŸé—´ï¼Œè¯·æ³¨æ„ä¸è¦å°†å›¾å½¢è®¾ç½®å¾—太高\n" "\t\t\t 如果在更新过程中é‡åˆ°å›¾å½¢æˆ–轮询迟缓,请é™ä½Žæ•°å€¼\n" "\t\t\t 默认值是50000。" #: ../include/global_settings.php:1503 msgid "" "When boost sends update commands to RRDtool, it must not exceed the operating systems\n" "\t\t\tMaximum Argument Length. This varies by operating system and kernel level. For example:\n" "\t\t\tWindows 2000 <= 2048, FreeBSD <= 65535, Linux 2.6.22-- <= 131072, Linux 2.6.23++ unlimited" msgstr "" "当å‘RRDtoolå‘é€å¢žå¼ºæ›´æ–°å‘½ä»¤æ—¶ï¼Œå®ƒä¸èƒ½è¶…过æ“作系统\n" "\t\t\tæœ€å¤§å‚æ•°é•¿åº¦ã€‚ è¿™å–决于æ“作系统和内核级别。 例如:\n" "\t\t\tWindows 2000 <= 2048, FreeBSD <= 65535, Linux 2.6.22-- <= 131072, Linux 2.6.23++ unlimited" #: ../include/global_settings.php:1520 msgid "" "The maximum boot poller run time allowed prior to boost issuing warning\n" "\t\t\tmessages relative to possible hardware/software issues preventing proper updates." msgstr "" "å…许最大å¯åŠ¨è½®è¯¢å™¨è¿è¡Œæ—¶é—´æå‰å‘出警告\n" "\t\t\t相对于å¯èƒ½çš„硬件/软件问题的消æ¯ï¼Œé˜»æ­¢é€‚当的更新。" #: ../include/global_settings.php:1649 msgid "" "There are two removal methods. The first, Standard Deviation, will remove any\n" "\t\t\tsample that is X number of standard deviations away from the average of samples. The second method,\n" "\t\t\tVariance, will remove any sample that is X% more than the Variance average. The Variance method takes\n" "\t\t\tinto account a certain number of 'outliers'. Those are exceptional samples, like the spike, that need\n" "\t\t\tto be excluded from the Variance Average calculation." msgstr "" "æœ‰ä¸¤ç§æ¸…除方法。 首先,标准å差将删除任何标准åå·®\n" "\t\t\t这是è·ç¦»æ ·æœ¬å¹³å‡å€¼çš„X个标准å差。 ç¬¬äºŒç§æ–¹æ³•\n" "\t\t\tVariance将删除任何比方差平å‡å€¼å¤šX%的样本。 方差方法采用\n" "\t\t\t记录一定数é‡çš„“异常值â€ã€‚ 这些都是特殊的样å“,如尖峰,需è¦\n" "\t\t\t从方差平å‡å€¼è®¡ç®—中排除。" #: ../include/global_settings.php:1660 msgid "" "There are three replacement methods. The first method replaces the spike with the\n" "\t\t\tthe average of the data source in question. The second method replaces the spike with a 'NaN'.\n" "\t\t\tThe last replaces the spike with the last known good value found." msgstr "" "æœ‰ä¸‰ç§æ›¿æ¢æ–¹æ³•。 ç¬¬ä¸€ç§æ–¹æ³•æ˜¯ç”¨æœ‰é—®é¢˜çš„æ•°æ®æºçš„å¹³å‡å€¼ã€‚æ¥ä»£æ›¿å°–å³°\n" "\t\t\tç¬¬äºŒç§æ–¹æ³•是用“NaNâ€ä»£æ›¿å°–峰。\n" "\t\t\t最åŽç”¨å·²çŸ¥çš„æœ€åŽä¸€ä¸ªå¥½å€¼ä»£æ›¿å°–峰。" #: ../include/global_settings.php:1669 msgid "" "Any value that is this many standard deviations above the average will be excluded.\n" "\t\t\tA good number will be dependent on the type of data to be operated on. We recommend a number no lower\n" "\t\t\tthan 5 Standard Deviations." msgstr "" "任何高于平å‡å€¼çš„æ ‡å‡†å差都将被排除。\n" "\t\t\t一个好的数字将å–å†³äºŽè¦æ“作的数æ®ç±»åž‹ã€‚ 我们推è一个ä¸ä½ŽäºŽ5标准å差的数字" #: ../include/global_settings.php:1689 #, php-format msgid "" "This value represents the percentage above the adjusted sample average once outliers\n" "\t\t\thave been removed from the sample. For example, a Variance Percentage of 100% on an adjusted average of 50\n" "\t\t\twould remove any sample above the quantity of 100 from the graph." msgstr "" "这个值表示调整åŽçš„æ ·æœ¬å¹³å‡å€¼è¶…出离群点的百分比\\n" "\t\t\tå·²ç»ä»Žæ ·æœ¬ä¸­åˆ é™¤äº†ã€‚ 例如,调整åŽçš„å¹³å‡å€¼ä¸º50的方差百分比为100ï¼…\n" "\t\t\t将从图表中删除数é‡è¶…过100的任何样å“。" #: ../include/global_settings.php:1711 msgid "" "This value represents the number of high and low average samples will be removed from the\n" "\t\t\tsample set prior to calculating the Variance Average. If you choose an outlier value of 5, then both the top\n" "\t\t\tand bottom 5 averages are removed." msgstr "" "è¿™ä¸ªæ•°å€¼è¡¨ç¤ºå°†ä»Žæ ·æœ¬ä¸­ç§»é™¤çš„é«˜å’Œä½Žå¹³å‡æ ·æœ¬çš„æ•°é‡\n" "\t\t\t在计算方差平å‡å€¼ä¹‹å‰è®¾ç½®ï¼Œå¦‚果选择5的离群值,那么最大\n" "\t\t\t和最å°5ä¸ªå¹³å‡æ•°è¢«åˆ é™¤" #: ../include/global_settings.php:1773 msgid "" "The Base Time for Spike removal to occur. For example, if you use '12:00am' and you choose\n" "\t\t\tonce per day, the batch removal would begin at approximately midnight every day." msgstr "" "Spike删除的基准å‘生时间。 例如,如果您使用“12:00amâ€ï¼Œå¹¶é€‰æ‹©\n" "\t\t\tæ¯å¤©å¤§çº¦åœ¨åˆå¤œæ—¶åˆ†å¼€å§‹æ‰¹é‡æ¸…除。" #: ../index.php:85 msgid "NOTE: You are logged into a Remote Data Collector. When 'online', you will be able to view and control much of the Main Cacti Web Site just as if you were logged into it. Also, it's important to note that Remote Data Collectors are required to use the Cacti's Performance Boosting Services 'On Demand Updating' feature, and we always recommend using Spine. When the Remote Data Collector is 'offline', the Remote Data Collectos Web Site will contain much less information. However, it will cache all updates until the Main Cacti Database and Web Server are reachable. Then it will dump it's Boost table output back to the Main Cacti Database for updating." msgstr "注æ„: æ‚¨å·²ç™»å½•åˆ°è¿œç¨‹æ•°æ®æ”¶é›†å™¨ã€‚ 当 '在线', 时,您将能够查看和控制大部分主è¦çš„Cactiç½‘ç«™ï¼Œå°±åƒæ‚¨ç™»å½•了该网站一样。 å¦å¤–ï¼Œéœ€è¦æ³¨æ„çš„æ˜¯ï¼Œè¿œç¨‹æ•°æ®æ”¶é›†å™¨éœ€è¦ä½¿ç”¨Cacti的性能增强æœåŠ¡ “按需更新â€åŠŸèƒ½ï¼Œè€Œä¸”æˆ‘ä»¬å§‹ç»ˆå»ºè®®ä½¿ç”¨Spine。 å½“è¿œç¨‹æ•°æ®æ”¶é›†å™¨ '离线'æ—¶ï¼Œè¿œç¨‹æ•°æ®æ”¶é›†å™¨ç½‘ç«™å°†åŒ…å«æ›´å°‘的信æ¯ã€‚ 但是,它将缓存所有更新,直到主 Cactiæ•°æ®åº“å’ŒWebæœåС噍å¯åˆ°è¾¾ã€‚ ç„¶åŽå®ƒä¼šæŠŠå®ƒçš„增强表输出转储回主Cactiæ•°æ®åº“进行更新。" #: ../install/index.php:566 msgid "WARNING - If you are upgrading from a previous version please close all Cacti browser sessions and clear cache before continuing" msgstr "警告 - 如果您从以å‰çš„版本å‡çº§ï¼Œè¯·å…³é—­æ‰€æœ‰Cactiæµè§ˆå™¨ä¼šè¯å¹¶æ¸…除缓存,然åŽå†ç»§ç»­" #: ../install/index.php:630 msgid "" "Your config.php file must be writable by\n" "\t\t\t\t\t\t\t\t\t\tthe web server during install in order to configure the Remote poller. Once\n" "\t\t\t\t\t\t\t\t\t\tinstallation is complete, you must set this file to Read Only to prevent\n" "\t\t\t\t\t\t\t\t\t\tpossible security issues." msgstr "" "ä½ çš„config.php文件必须是å¯å†™çš„\n" "\t\t\t\t\t\t\t\t\t\t安装过程中的WebæœåŠ¡å™¨ï¼Œä»¥é…置远程轮询器。一旦\n" "\t\t\t\t\t\t\t\t\t\tinstallation完æˆåŽï¼Œæ‚¨å¿…须将此文件设置为åªè¯»ä»¥é˜²æ­¢\n" "\t\t\t\t\t\t\t\t\t\tå¯èƒ½çš„安全问题。" #: ../install/index.php:638 msgid "" "Your Remote Cacti Poller information has not\n" "\t\t\t\t\t\t\t\t\t\tbeen included in your config.php file. Please review the config.php.dist, and\n" "\t\t\t\t\t\t\t\t\t\tset the variables: $rdatabase_default, $rdatabase_username, etc.\n" "\t\t\t\t\t\t\t\t\t\tThese variables must be set and point back to your Primary Cacti database server.\n" "\t\t\t\t\t\t\t\t\t\tCorrect this and try again." msgstr "" "您的远程Cactiè½®è¯¢ä¿¡æ¯æ²¡æœ‰\n" "\t\t\t\t\t\t\t\t\t\t将其包å«åœ¨æ‚¨çš„config.php文件中。 请查看config.php.distå’Œ\n" "\t\t\t\t\t\t\t\t\t\t设置å˜é‡ï¼š$rdatabase_default,$rdatabase_username等。\n" "\t\t\t\t\t\t\t\t\t\t必须设置这些å˜é‡å¹¶å°†å…¶æŒ‡å‘您的主è¦Cactiæ•°æ®åº“æœåŠ¡å™¨ã€‚\n" "\t\t\t\t\t\t\t\t\t\t更正这个,然åŽå†è¯•一次。" #: ../install/index.php:657 msgid "" "Once you have the variables set in the config.php file, you must also\n" "\t\t\t\t\t\t\t\t\t\tgrant the $rdatabase_username access to the Cacti database. Follow the same procedure you would with\n" "\t\t\t\t\t\t\t\t\t\tany other Cacti install. You may then press the 'Test Connection' button. If the test is\n" "\t\t\t\t\t\t\t\t\t\tsuccessful you will be able to proceed and complete the install." msgstr "" "一旦你在config.php文件中设置了å˜é‡ï¼Œä½ ä¹Ÿå¿…é¡»\n" "\t\t\t\t\t\t\t\t\t\tå°†rdatabase_usernameè®¿é—®æƒæŽˆäºˆCactiæ•°æ®åº“。 按照与\n" "相åŒçš„æ­¥éª¤è¿›è¡Œæ“作\t\t\t\t\t\t\t\t\t\tå…¶ä»–Cacti安装。 ç„¶åŽæ‚¨å¯ä»¥æŒ‰â€œæµ‹è¯•è¿žæŽ¥â€æŒ‰é’®ã€‚ 如果测试是\n" "\t\t\t\t\t\t\t\t\t\tæˆåŠŸï¼Œæ‚¨å°†èƒ½å¤Ÿç»§ç»­å¹¶å®Œæˆå®‰è£…。" #: ../install/index.php:832 #: ../install/index.php:842 #: ../install/index.php:852 msgid "Writable" msgstr "å¯å†™" #: ../install/index.php:834 #: ../install/index.php:844 #: ../install/index.php:854 msgid "Not Writable" msgstr "ä¸å¯å†™å…¥" #: ../install/index.php:879 msgid "" "For remote pollers, it is critical that\n" "\t\t\t\t\t\t\t\tthe paths that you will be updating frequently, including the plugins, scripts,\n" "\t\t\t\t\t\t\t\tand resources paths have read/write access as the data collector will have to\n" "\t\t\t\t\t\t\t\tupdate these paths from the main web server content." msgstr "" "对于远程轮询者æ¥è¯´ï¼Œå…³é”®æ˜¯\n" "\t\t\t\t\t\t\t\t您将ç»å¸¸æ›´æ–°çš„路径,包括æ’件,脚本\n" "\t\t\t\t\t\t\t\t资æºè·¯å¾„具有读/写访问æƒé™ï¼Œå› ä¸ºæ•°æ®æ”¶é›†å™¨å¿…é¡»\n" "\t\t\t\t\t\t\t\t更新这些从主网页æœåŠ¡å™¨å†…å®¹çš„è·¯å¾„ã€‚" #: ../install/index.php:977 msgctxt "Dialog: go to the next page" msgid "Next" msgstr "下一步" #: ../lib/clog_webapi.php:124 msgid "Click 'Continue' to purge the Cacti log file.


    Note: If logging is set to Cacti and Syslog, the log information will remain in Syslog." msgstr "å•击“继续â€ä»¥æ¸…除Cacti日志文件。


    注æ„:如果将日志记录设置为Cactiå’ŒSyslog,则日志信æ¯å°†ä¿ç•™åœ¨Syslog中。" #: ../lib/clog_webapi.php:130 msgid "Purge cacti.log" msgstr "清除cacti.log" #: ../lib/clog_webapi.php:327 #: ../utilities.php:996 msgid "Message Type" msgstr "消æ¯ç±»åž‹" #: ../lib/html.php:1329 #: ../lib/html.php:1331 #: ../lib/html.php:1407 msgid "Cacti Log" msgstr "Cacti日志" #: ../lib/ping.php:356 msgid "PHP version does not support IPv6" msgstr "PHPç‰ˆæœ¬ä¸æ”¯æŒIPv6" #: ../lib/ping.php:476 msgid "PHP binary does not support IPv6" msgstr "PHPè¿è¡Œç¨‹åºä¸æ”¯æŒIPv6" #: ../lib/rrd.php:2862 #, php-format msgid "Added Data Source(s) to RRDfile: %s" msgstr "å°†æ•°æ®æºæ·»åŠ åˆ°RRDfile:%s" #: ../lib/rrd.php:2917 #, php-format msgid "Deleted RRA(s) from RRDfile: %s" msgstr "从RRDfile中删除了RRA:%s" #: ../lib/rrd.php:2973 #, php-format msgid "Deleted rra(s) from rrd file: %s" msgstr "从rrd文件中删除了rra:%s" #: ../lib/rrd.php:2975 #, php-format msgid "ERROR: RRD file %s not writeable" msgstr "错误:RRD文件 %sä¸å¯å†™å…¥" #: ../lib/utility.php:640 msgid "" "MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions to choose. Make sure you\n" "\t\t\t\trun the very latest release though which fixes a long standing low level networking\n" "\t\t\t\tissue that was casuing spine many issues with reliability." msgstr "" "MySQL 5.6+å’ŒMariaDB 10.0+都是很棒的版本,并且是éžå¸¸å¥½çš„版本å¯ä¾›é€‰æ‹©ã€‚ ç¡®ä¿ä½ \n" "\t\t\t\tè¿è¡Œæœ€æ–°ç‰ˆæœ¬è™½ç„¶ä¿®å¤äº†ä¸€ä¸ªé•¿æœŸçš„低级è”网\n" "\t\t\t\t组织会导致许多问题的å¯é æ€§ã€‚" #: ../lib/utility.php:667 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8_general_ci collation type as some characters take more than a single byte. \n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting other languages." msgstr "" "当使用除英语以外的语言的Cacti时,使用å分é‡è¦\n" "\t\t\t\t\tutf8_general_ci排åºè§„则类型,因为一些字符需è¦å¤šä¸ªå•个字节 \n" "\t\t\t\t\t如果您刚刚安装Cactiï¼Œè¯·åœæ­¢å¹¶è¿›è¡Œæ›´æ”¹å¹¶é‡æ–°å¼€å§‹ã€‚\n" "\t\t\t\t\t如果您的Cactiå·²ç»è¿è¡Œå¹¶æ­£åœ¨æŠ•入生产,请å‚阅互è”网了解相关说明\n" "\t\t\t\t\t如果您计划支æŒå…¶ä»–语言,则å¯ä»¥è½¬æ¢æ‚¨çš„æ•°æ®åº“和表。" #: ../lib/utility.php:677 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8 character set as some characters take more than a single byte.\n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting other languages." msgstr "" "使用除英语以外的语言的Cacti时,é‡è¦çš„æ˜¯ä½¿ç”¨\n" "\t\t\t\t\t utf8 字符集,因为æŸäº›å­—符需è¦å¤šäºŽä¸€ä¸ªå­—节。\n" "\t\t\t\t\t如果您刚刚安装Cactiï¼Œè¯·åœæ­¢å¹¶è¿›è¡Œæ›´æ”¹å¹¶é‡æ–°å¼€å§‹ã€‚\n" "\t\t\t\t\t如果您的Cactiå·²ç»è¿è¡Œå¹¶æ­£åœ¨æŠ•入生产,请å‚阅互è”网了解相关说明\n" "\t\t\t\t\t如果您计划支æŒå…¶ä»–语言,则å¯ä»¥è½¬æ¢æ‚¨çš„æ•°æ®åº“和表。" #: ../lib/utility.php:705 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8mb4_unicode_ci collation type as some characters take more than a single byte." msgstr "" "使用除英语以外的语言的Cacti时,é‡è¦çš„æ˜¯ä½¿ç”¨\n" "\t\t\t\t\t utf8mb4_unicode_ci 排åºè§„则类型,因为有些字符需è¦å¤šäºŽä¸€ä¸ªå­—节。" #: ../lib/utility.php:712 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8mb4 character set as some characters take more than a single byte." msgstr "" "使用除英语以外的语言的Cacti时,é‡è¦çš„æ˜¯ä½¿ç”¨\n" "\t\t\t\t\tutf8mb4字符集,因为一些字符需è¦å¤šä¸ªå•个字节。" #: ../lib/utility.php:722 #, php-format msgid "" "Depending on the number of logins and use of spine data collector, \n" "\t\t\t\t%s will need many connections. The calculation for spine is:\n" "\t\t\t\ttotal_connections = total_processes * (total_threads + script_servers + 1), then you\n" "\t\t\t\tmust leave headroom for user connections, which will change depending on the number of\n" "\t\t\t\tconcurrent login accounts." msgstr "" "æ ¹æ®ç™»å½•æ¬¡æ•°å’Œä½¿ç”¨è„ŠæŸ±æ•°æ®æ”¶é›†å™¨ï¼Œ \n" "\t\t\t\t%s 将需è¦è®¸å¤šè¿žæŽ¥ã€‚ 脊柱的计算是:\n" "\t\t\t\ttotal_connections = total_processes * (total_threads + script_servers + 1), 那么你\n" "\t\t\t\t留下用户连接的空间,这将根æ®å¹¶å‘ç™»å½•å¸æˆ·çš„æ•°é‡è€Œæ”¹å˜\n" "\t\t\t\t" #: ../lib/utility.php:731 #, php-format msgid "" "If using the Cacti Performance Booster and choosing a memory storage engine,\n" "\t\t\t\tyou have to be careful to flush your Performance Booster buffer before the system runs\n" "\t\t\t\tout of memory table space. This is done two ways, first reducing the size of your output\n" "\t\t\t\tcolumn to just the right size. This column is in the tables poller_output, \n" "\t\t\t\tand poller_output_boost. The second thing you can do is allocate more memory to memory\n" "\t\t\t\ttables. We have arbitrarily chosen a recommended value of 10% of system memory, but \n" "\t\t\t\tif you are using SSD disk drives, or have a smaller system, you may ignore this recommendation\n" "\t\t\t\tor choose a different storage engine. You may see the expected consumption of the \n" "\t\t\t\tPerformance Booster tables under Console -> System Utilities -> View Boost Status." msgstr "" "如果使用Cacti Performance 增强器并选择内存存储引擎,\n" "\t\t\t\t在系统è¿è¡Œä¹‹å‰ï¼Œå¿…é¡»å°å¿ƒåˆ·æ–°Performance 增强器缓冲区\n" "\t\t\t\t超出内存表空间。 è¿™æ˜¯é€šè¿‡ä¸¤ç§æ–¹å¼å®Œæˆçš„,首先å‡å°‘输出的大å°\n" "\t\t\t\tåˆ—åªæ˜¯æ­£ç¡®çš„大å°ã€‚ 此列ä½äºŽè¡¨poller_outputå’Œpoller_output_boost中 \n" "\t\t\t\t ä½ å¯ä»¥åšçš„第二件事是将更多的内存分é…给内存表\n" "\t\t\t\t我们已ç»ä»»æ„选择了10%系统内存的推è值,但是\n" "\t\t\t\t如果您使用SSDç£ç›˜é©±åŠ¨å™¨ï¼Œæˆ–è€…ä½¿ç”¨è¾ƒå°çš„系统,则应该会忽略此建议\n" "\t\t\t\t选择ä¸åŒçš„存储引擎。 您å¯èƒ½ä¼šçœ‹åˆ°é€‰æ‹©ä¸åŒçš„存储引擎。 您å¯èƒ½ä¼šçœ‹åˆ°\n" "\t\t\t\tåœ¨â€œæŽ§åˆ¶å° - >ç³»ç»Ÿå®žç”¨ç¨‹åº - >查看增强状æ€â€ä¸‹çš„“性能增强器表â€" #: ../lib/utility.php:744 msgid "" "Keeping the table cache larger means less file open/close operations when\n" "\t\t\t\tusing innodb_file_per_table." msgstr "" "ä¿æŒè¡¨æ ¼ç¼“å­˜çš„å¤§å°æ„å‘³ç€æ›´å°‘的文件打开/关闭æ“作\n" "\t\t\t\t使用innodb_file_per_table" #: ../lib/utility.php:750 msgid "" "With Remote polling capabilities, large amounts of data \n" "\t\t\t\twill be synced from the main server to the remote pollers. \n" "\t\t\t\tTherefore, keep this value at or above 16M." msgstr "" "使用远程轮询功能,大é‡çš„æ•°æ® \n" "\t\t\t\t从主æœåŠ¡å™¨åŒæ­¥åˆ°è¿œç¨‹è½®è¯¢å™¨ã€‚ \n" "\t\t\t\tå› æ­¤ï¼Œè¯·å°†æ­¤å€¼ä¿æŒåœ¨16M或以上." #: ../lib/utility.php:757 msgid "" "When executing subqueries, having a larger temporary table size, \n" "\t\t\t\tkeep those temporary tables in memory." msgstr "" "执行具有较大临时表大å°çš„å­æŸ¥è¯¢æ—¶ï¼Œ\n" "\t\t\t\tä¿å­˜è¿™äº›ä¸´æ—¶è¡¨åœ¨å†…存中。" #: ../lib/utility.php:763 msgid "" "When performing joins, if they are below this size, they will \n" "\t\t\t\tbe kept in memory and never written to a temporary file." msgstr "" "在进行连接时,如果它们å°äºŽè¿™ä¸ªå°ºå¯¸ï¼Œä»–们会l\n" "\t\t\t\tä¿å­˜åœ¨å†…存中,永远ä¸è¦å†™å…¥ä¸´æ—¶æ–‡ä»¶ã€‚" #: ../lib/utility.php:769 #, php-format msgid "" "When using InnoDB storage it is important to keep your table spaces\n" "\t\t\t\tseparate. This makes managing the tables simpler for long time users of %s.\n" "\t\t\t\tIf you are running with this currently off, you can migrate to the per file storage\n" "\t\t\t\tby enabling the feature, and then running an alter statement on all InnoDB tables." msgstr "" "使用InnoDB存储时,ä¿ç•™è¡¨ç©ºé—´æ˜¯å¾ˆé‡è¦çš„\n" "\t\t\t\tseparate. 这使得对于%s的长时间用户管ç†è¡¨æ ¼å˜å¾—更简å•。\n" "\t\t\t\tI如果您正在使用此功能,则å¯ä»¥è¿ç§»åˆ°æ¯ä¸ªæ–‡ä»¶å­˜å‚¨\n" "\t\t\t\tå¯ç”¨è¯¥åŠŸèƒ½ï¼Œç„¶åŽåœ¨æ‰€æœ‰InnoDB表上è¿è¡Œalter语å¥ã€‚" #: ../lib/utility.php:777 #, php-format msgid "" "InnoDB will hold as much tables and indexes in system memory as is possible.\n" "\t\t\t\tTherefore, you should make the innodb_buffer_pool large enough to hold as much\n" "\t\t\t\tof the tables and index in memory. Checking the size of the /var/lib/mysql/cacti\n" "\t\t\t\tdirectory will help in determining this value. We are recommending 25% of your systems\n" "\t\t\t\ttotal memory, but your requirements will vary depending on your systems size." msgstr "" "InnoDB将在系统内存中ä¿å­˜å°½å¯èƒ½å¤šçš„表和索引。\n" "\t\t\t\t因此,您应该使innodb_buffer_pool足够大以容纳\n" "\t\t\t\t内存中的表和索引。 检查 /var/lib/mysql/cacti的大å°\n" "\t\t\t\t目录将有助于确定此值。 æˆ‘ä»¬æŽ¨èæ‚¨çš„系统的25% \n" "\t\t\t\tæ€»å†…å­˜ï¼Œä½†æ˜¯æ‚¨çš„è¦æ±‚会因您的系统大å°è€Œæœ‰æ‰€ä¸åŒã€‚" #: ../lib/utility.php:786 #, php-format msgid "" "With modern SSD type storage, this operation actually degrades the disk\n" "\t\t\t\tmore rapidly and adds a 50% overhead on all write operations." msgstr "使用现代SSD类型的存储器,该æ“作实际上会é™ä½Žç£ç›˜çš„æ€§èƒ½\t\t\t\t更加迅速,并在所有写入æ“作上增加了 50%的开销。" #: ../lib/utility.php:797 msgid "" "Rogue queries should not for the database to go offline to others. Kill these\n" "\t\t\t\tqueries before they kill your system." msgstr "" "æµæ°“查询ä¸åº”该让数æ®åº“脱机给其他人。 æ€æ­»è¿™äº›æŸ¥è¯¢\n" "åœ¨ä»–ä»¬æ€æ­»ä½ çš„系统之å‰ï¼Œä¸è¦å†æŸ¥è¯¢ã€‚" #: ../lib/utility.php:807 #, php-format msgid "" "Setting this value to 2 means that you will flush all transactions every\n" "\t\t\t\tsecond rather than at commit. This allows %s to perform writing less often." msgstr "将此值设置为2æ„å‘³ç€æ‚¨å°†æ¯ä¸ª\t\t\t\t秒刷新所有事务这使得%så¯ä»¥å‡å°‘写入次数。" #: ../lib/utility.php:813 msgid "" "With modern SSD type storage, having multiple io threads is advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" "使用现代SSD类型的存储器,具有多个io线程对\n" "\t\t\t\t\t应用程åºä¸Žé«˜io特å¾ã€‚" #: ../lib/utility.php:827 msgid "" "With modern SSD type storage, having multiple read io threads is advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" "对于现代SSD类型的存储,具有多个读å–IO线程对于\n" "\t\t\t\t\t应用程åºä¸Žé«˜io特å¾ã€‚" #: ../lib/utility.php:833 msgid "" "With modern SSD type storage, having multiple write io threads is advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" "使用现代SSD类型的存储器,具有多个写入IO线程对\n" "\t\t\t\t\t应用程åºä¸Žé«˜io特å¾ã€‚" #: ../lib/utility.php:839 #, php-format msgid "" "%s will divide the innodb_buffer_pool into memory regions to improve performance.\n" "\t\t\t\t\tThe max value is 64. When your innodb_buffer_pool is less than 1GB, you should use the pool size\n" "\t\t\t\t\tdivided by 128MB. Continue to use this equation upto the max of 64." msgstr "" "%s 会将innodb_buffer_pool分æˆå†…存区域以æé«˜æ€§èƒ½ã€‚\n" "\t\t\t\t\t最大值为64.当您的innodb_buffer_poolå°äºŽ1GB时,您应该使用池大å°\n" "\t\t\t\t\t分æˆ128MB。 继续使用这个方程达到64的最大值。" #: ../templates_export.php:134 #, php-format msgid "%s to Export" msgstr "导出 %s" #: ../templates_export.php:135 msgid "Choose the exact item to export to XML." msgstr "选择è¦å¯¼å‡ºåˆ°XML的确切项目。" #: ../utilities.php:1765 msgid "Tecnical Support" msgstr "技术支æŒ" #: ../utilities.php:1790 msgid "The poller cache will be cleared and re-generated if you select this option. Sometimes host/data source data can get out of sync with the cache in which case it makes sense to clear the cache and start over." msgstr "å¦‚æžœé€‰æ‹©æ­¤é€‰é¡¹ï¼Œè½®è¯¢ç¼“å­˜å°†è¢«æ¸…é™¤å¹¶é‡æ–°ç”Ÿæˆã€‚ 有时主机/æ•°æ®æºæ•°æ®å¯èƒ½ä¸Žç¼“å­˜ä¸åŒæ­¥ï¼Œåœ¨è¿™ç§æƒ…å†µä¸‹æ¸…é™¤ç¼“å­˜å¹¶é‡æ–°å¼€å§‹æ˜¯æœ‰æ„义的。" msgid "Guest Account" msgstr "Guest 用户" msgid "High Collection Rate" msgstr "高收集率" #~ msgid "Host" #~ msgstr "主机" #~ msgid "XML file parsed ok." #~ msgstr "XML æ–‡ä»¶è§£æžæˆåŠŸã€‚" #, fuzzy #~ msgid "edit" #~ msgstr "[編集: " #, fuzzy #~ msgid "new" #~ msgstr "[新建]" #, fuzzy #~ msgid "Graph Template Selection [edit: %s]" #~ msgstr "图形模æ¿é€‰é¡¹" #, fuzzy #~ msgid "Graph Template Selection [new]" #~ msgstr "图形模æ¿é€‰é¡¹" #, fuzzy #~ msgid "Report Details" #~ msgstr "导出数æ®" #, fuzzy #~ msgid "Plugin Management (Cacti Version: %s)" #~ msgstr "æ’件管ç†" #~ msgid "Graph Export" #~ msgstr "图形导出" #~ msgid "" #~ " changes both SNMP version and timeout for all devices related to the " #~ "device template id of 7" #~ msgstr "所有设备模æ¿éƒ½ä¸Žè¯¥è®¾å¤‡çš„SNMP版本和超时有关" #~ msgid "" #~ " changes the SNMP community string for all (matching) devices from " #~ "'public' to 'secret' using a custom delimiter of '#'" #~ msgstr "从public到sevret,使用自定义分隔符‘#’æ¥åˆ†é𔿉€æœ‰è®¾å¤‡çš„SNMP团体å。" #~ msgid " 1) Create the Structured Path, if Necessary" #~ msgstr " 1) 如果有必è¦ï¼Œåˆ›å»ºæ­¤ç»“构路径" #~ msgid " 1) Disables the Cacti Poller" #~ msgstr " 1) 关闭 Cacti 轮询" #~ msgid " 1) Enable Structured Paths in the Console (Settings->Paths)" #~ msgstr " 1) 在控制å°ä¸Šå¼€å¯ç»“构路径 (设置->路径)" #~ msgid " 1) Re-enable the Cacti Poller" #~ msgstr " 1) 釿–°å¼€å¯ Cacti 轮询" #~ msgid " lists all available data queries" #~ msgstr "列出所有å¯ç”¨çš„æ•°æ®æŸ¥è¯¢" #~ msgid " Failed" #~ msgstr "ä¿å­˜å¤±è´¥" #~ msgid " Successful" #~ msgstr "ä¿å­˜æˆåŠŸ" #~ msgid "%d Graphs" #~ msgstr "%d 图片" #~ msgid "%d Rows" #~ msgstr "%d 行" #~ msgid "' does not exist." #~ msgstr "'ä¸å­˜åœ¨" #~ msgid "ACCESS DENIED" #~ msgstr "æ‹’ç»è®¿é—®" #~ msgid "Accessible" #~ msgstr "å…许访问" #~ msgid "Add Data Query:" #~ msgstr "æ·»åŠ æ•°æ®æŸ¥è¯¢ï¼š" #~ msgid "Add Graph Template:" #~ msgstr "添加图片模æ¿" #~ msgid "Allow Graph Export" #~ msgstr "å…许图形输出" #~ msgid "Amman" #~ msgstr "Amman" #~ msgid "Arctic" #~ msgstr "æ“作" #~ msgid "Are you sure you want to add the following Data Query:" #~ msgstr "ç¡®å®šæ·»åŠ ä»¥ä¸‹æ•°æ®æŸ¥è¯¢ï¼Ÿ" #~ msgid "Are you sure you want to delete the CDEF" #~ msgstr "确定删除此CDEF ?" #~ msgid "Are you sure you want to delete the Data Query Graph" #~ msgstr "ç¡®å®šåˆ é™¤æ­¤æ•°æ®æŸ¥è¯¢å›¾ç‰‡ï¼Ÿ" #~ msgid "Are you sure you want to delete the device" #~ msgstr "确定删除此设备?" #~ msgid "Are you sure you want to delete the device item" #~ msgstr "确定删除此设备组?" #~ msgid "Are you sure you want to delete the field" #~ msgstr "确定删除此域?" #~ msgid "Are you sure you want to delete the following RRAs?" #~ msgstr "确定删除以下 RRAs ?" #~ msgid "Are you sure you want to delete the following X-Axis Presets?" #~ msgstr "确定删除以下预设 X-Axis ?" #~ msgid "Are you sure you want to delete the graph item" #~ msgstr "确定删除此图形组?" #~ msgid "Are you sure you want to delete the header item" #~ msgstr "确定删除此头项目?" #~ msgid "Are you sure you want to delete the input item" #~ msgstr " 确定删除此输入组?" #~ msgid "Are you sure you want to delete the tree" #~ msgstr "确定删除此树?" #~ msgid "Arrow" #~ msgstr "箭头" #~ msgid "Asuncion" #~ msgstr "Asuncion" #~ msgid "Athens" #~ msgstr "æ“作" #~ msgid "Atikokan" #~ msgstr "æ“作" #~ msgid "Available for RRDTool 1.2.x and above" #~ msgstr "RRDTool 1.2.x 或以上å¯ç”¨" #~ msgid "Azores" #~ msgstr "追加:" #~ msgid "Belem" #~ msgstr "领域" #~ msgid "Belize" #~ msgstr "Belize" #~ msgid "Berlin" #~ msgstr "Berlin" #~ msgid "Bermuda" #~ msgstr "Bermuda" #~ msgid "Blue:" #~ msgstr "值:" #~ msgid "Bogota" #~ msgstr "Bogota" #~ msgid "Brussels" #~ msgstr "Brussels" #~ msgid "Builtin\tAuthentication" #~ msgstr "内置认è¯" #~ msgid "CDEF Title" #~ msgstr "CDEF 标题" #~ msgid "CDEF's" #~ msgstr "CDEF's" #~ msgid "Cacti System Log Size and Control" #~ msgstr "Cacti 系统日志大å°å’ŒæŽ§åˆ¶" #~ msgid "Cacti User Copy Utility" #~ msgstr "Cacti 用户å¤åˆ¶å·¥å…·" #~ msgid "Cacti Variables" #~ msgstr "Cacti Variables" #~ msgid "Cairo" #~ msgstr "Cairo" #~ msgid "Canary" #~ msgstr "Canary" #~ msgid "Cancun" #~ msgstr "Cancun" #~ msgid "Canvas" #~ msgstr "Canvas" #~ msgid "Cayenne" #~ msgstr "Cayenne" #~ msgid "Cayman" #~ msgstr "Cayman" #~ msgid "Chagos" #~ msgstr "Chagos" #~ msgid "Chongqing" #~ msgstr "é‡åº†" #~ msgid "Choose the parent for this header/graph." #~ msgstr "Choose the parent for this header/graph." #~ msgid "" #~ "Choose what type of device, device template this is. The device template " #~ "will govern what kinds of data should be gathered from this type of " #~ "device." #~ msgstr "" #~ "为此类型的设备选择适åˆçš„它的设备模æ¿ï¼Œæ­¤æ¨¡æ¿èƒ½å¤Ÿç®¡ç†æ”¶é›†æ­¤ç±»è®¾å¤‡çš„相关数æ®" #~ "的其他模æ¿ã€‚" #~ msgid "Classic (export every x times)" #~ msgstr "ç»å…¸(æ¯x时间输出)" #~ msgid "Cocos" #~ msgstr "Cocos" #~ msgid "Colombo" #~ msgstr "Colombo" #~ msgid "Color Actions" #~ msgstr "颜色æ“作" #~ msgid "Comoro" #~ msgstr "Comoro" #~ msgid "Conakry" #~ msgstr "Conakry" #~ msgid "Confirm" #~ msgstr "确认" #~ msgid "Convert to Data Source Template" #~ msgstr "转æ¢ä¸ºæ•°æ®æºæ¨¡æ¿" #~ msgid "Create:" #~ msgstr "创建:" #~ msgid "Current:" #~ msgstr "当å‰ï¼š" #~ msgid "Currie" #~ msgstr "Currie" #~ msgid "Custom Legend" #~ msgstr "自定义图例" #~ msgid "DB Processes" #~ msgstr "æ•°æ®åº“过程" #~ msgid "Darwin" #~ msgstr "Darwin" #~ msgid "Data Query Graph Rows" #~ msgstr "æ•°æ®æŸ¥è¯¢å›¾å½¢è¡Œæ•°" #~ msgid "Data Source Template Active" #~ msgstr "æ•°æ®æºæ¨¡æ¿æ´»è·ƒ" #~ msgid "Data Source Templates" #~ msgstr "æ•°æ®æºæ¨¡æ¿" #~ msgid "Data Source: %d" #~ msgstr "æ•°æ®æºæ¨¡æ¿: %d" #~ msgid "Davis" #~ msgstr "Davis" #~ msgid "Default Dropdown Selector" #~ msgstr "默认下拉选择" #~ msgid "Default Language" #~ msgstr "默认语言" #~ msgid "Default RRA" #~ msgstr "默认RRA" #~ msgid "Default RRDtool 1.2.x++ Fonts" #~ msgstr "RRDtool 1.2.x++ 默认字体" #~ msgid "Default RRDtool Colortags" #~ msgstr "RRDTool 1.2 默认颜色" #~ msgid "Denver" #~ msgstr "Denver" #~ msgid "Descending" #~ msgstr "é™åº" #~ msgid "Device Group Style:" #~ msgstr "设备组风格:" #~ msgid "Device Node Id" #~ msgstr "设备节点ID" #~ msgid "Device Template:" #~ msgstr "设备模æ¿ï¼š" #~ msgid "Disable Graph Export" #~ msgstr "关闭图形导出" #~ msgid "Douala" #~ msgstr "Douala" #~ msgid "Dushanbe" #~ msgstr "Dushanbe" #~ msgid "ERROR: FILE NOT FOUND" #~ msgstr "错误:文件没找到" #~ msgid "ERROR: Failed to add this device" #~ msgstr "错误:无法添加此设备" #~ msgid "ERROR: Invalid Graph Template item id (%s)" #~ msgstr "错误:无效的图形模æ¿é¡¹ç›®ç¼–å·(%s)" #~ msgid "ERROR: Invalid SNMP Authentication Protocol: (%s)" #~ msgstr "错误:无效的SNMP认è¯å议:(%s)" #~ msgid "ERROR: Invalid SNMP Privacy Protocol: (%s)" #~ msgstr "错误:无效的SNMPéšç§å议: (%s)" #~ msgid "ERROR: No valid graph template given" #~ msgstr "错误:没有有效的图形模æ¿" #~ msgid "ERROR: This user id does not exist (%s)" #~ msgstr "错误:此用户IDä¸å­˜åœ¨(%s)" #~ msgid "ERROR: Unknown Graph Template ID (%d)\n" #~ msgstr "错误:未知的图形模æ¿ID项目(%d)\n" #~ msgid "Edit (Graph Permissions)" #~ msgstr "编辑 (图形æƒé™)" #~ msgid "Edit (Graph Settings)" #~ msgstr "编辑 (图形设定)" #~ msgid "Edit (Realm Permissions)" #~ msgstr "编辑(域æƒé™ï¼‰" #~ msgid "Edit Host" #~ msgstr "编辑主机" #~ msgid "Efate" #~ msgstr "Efate" #~ msgid "End" #~ msgstr "结æŸ" #~ msgid "Enter a name for this |arg1:| field." #~ msgstr "为 |arg1:| 输入一个å称。" #~ msgid "Event Count" #~ msgstr "事件数" #~ msgid "Event Log Emailing" #~ msgstr "通过电å­é‚®ä»¶å‘é€äº‹ä»¶æ—¥å¿—" #~ msgid "Expand Tree devices" #~ msgstr "展开设备树" #~ msgid "Export Every x Times" #~ msgstr "导出æ¯xæ—¶é—´" #~ msgid "Export Method" #~ msgstr "导出方法" #~ msgid "FTP Host" #~ msgstr "FTP 主机" #~ msgid "FTP Options" #~ msgstr "FTP 选项" #~ msgid "FTP User" #~ msgstr "FTP 用户å" #~ msgid "Field [|arg1:|]" #~ msgstr "字段 [|arg2:|]" #~ msgid "Fields" #~ msgstr "字段" #~ msgid "Font" #~ msgstr "字体" #~ msgid "Font Render Mode" #~ msgstr "字体渲染模å¼" #~ msgid "For cg graphs:" #~ msgstr "CG图形:" #~ msgid "For ds graphs:" #~ msgstr "DS图形:" #~ msgid "Found Dependency: " #~ msgstr "查找ä¾èµ–:" #~ msgid "Found type" #~ msgstr "查找类型" #~ msgid "Frame" #~ msgstr "框架" #~ msgid "From Host:" #~ msgstr "从主机:" #~ msgid "Full Size Mode" #~ msgstr "全尺寸模å¼" #~ msgid "Funafuti" #~ msgstr "Funafuti" #~ msgid "German" #~ msgstr "German" #~ msgid "Graph Color Tags" #~ msgstr "图形的颜色标签" #~ msgid "Graph Export Messages" #~ msgstr "图形导出信æ¯" #~ msgid "Graph Legend Item#2" #~ msgstr "图例#2" #~ msgid "Graph Legend Item#3" #~ msgstr "图例#3" #~ msgid "Graph Legend Item#4" #~ msgstr "图例#4" #~ msgid "Graph Permissions (By Device)" #~ msgstr "图形æƒé™ (设备)" #~ msgid "Graph Permissions (By Graph Template)" #~ msgstr "图形æƒé™ (图形模æ¿)" #~ msgid "Graph Permissions (By Graph)" #~ msgstr "图形æƒé™ (图形)" #~ msgid "Graph Render Mode" #~ msgstr "图形渲染模å¼" #~ msgid "Graph Template Cacti Specifics" #~ msgstr "图形模æ¿ç»†èŠ‚" #~ msgid "Graph Template Color" #~ msgstr "图形模æ¿é¢œè‰²" #~ msgid "Graph Template Labels" #~ msgstr "å›¾å½¢æ¨¡æ¿æ ‡ç­¾" #~ msgid "Graph Template Right Axis Settings" #~ msgstr "图形模æ¿å³è½´è®¾ç½®" #~ msgid "Graph Thumbnails" #~ msgstr "图形缩略图" #~ msgid "Graph Tree Items" #~ msgstr "图形树项" #~ msgid "Graph node options:" #~ msgstr "图形节点选项:" #~ msgid "Graph: Shift End Time" #~ msgstr "图形:åç§»ç»“æŸæ—¶é—´" #~ msgid "Graphs/Page:" #~ msgstr "图形/页:" #~ msgid "Greek" #~ msgstr "Greek" #~ msgid "Green:" #~ msgstr "绿色:" #~ msgid "Grid" #~ msgstr "æ ¼å­" #~ msgid "Grid Dash" #~ msgstr "网格划线" #~ msgid "Guest user \"" #~ msgstr "æ¥å®¾ç”¨æˆ· \"" #~ msgid "Header node options:" #~ msgstr "Header node options:" #~ msgid "Height" #~ msgstr "Height" #~ msgid "Help" #~ msgstr "帮助" #~ msgid "Hobart" #~ msgstr "Hobart" #~ msgid "Hong Kong" #~ msgstr "香港" #~ msgid "Host Id" #~ msgstr "主机ID" #~ msgid "Hosts" #~ msgstr "主机" #~ msgid "Id of Tree" #~ msgstr "æ•°ID" #~ msgid "Id of Tree|Node" #~ msgstr "æ•°|节点ID" #~ msgid "Image" #~ msgstr "图片" #~ msgid "Import RRA Settings" #~ msgstr "RRA 导入设定" #~ msgid "Informational" #~ msgstr "ä¿¡æ¯" #~ msgid "Interlaced" #~ msgstr "交错" #~ msgid "Item Filter" #~ msgstr "项目筛选" #~ msgid "Known Graph Templates: (id, name)" #~ msgstr "已知图形模æ¿ï¼š (id, name)" #~ msgid "Known Trees: (id, sort method, name)" #~ msgstr "已知树:(id, sort method, name)" #~ msgid "Label Format" #~ msgstr "Label æ ¼å¼" #~ msgid "Language Information" #~ msgstr "语言信æ¯" #~ msgid "Legend" #~ msgstr "图例" #~ msgid "Legend Position" #~ msgstr "图例ä½ç½®" #~ msgid "Lisbon" #~ msgstr "Lisbon" #~ msgid "List" #~ msgstr "列表" #~ msgid "List View Mode" #~ msgstr "列表视图模å¼" #~ msgid "List graph" #~ msgstr "列表图" #~ msgid "Lists all available Device Templates" #~ msgstr "列出所有å¯ç”¨çš„设备模æ¿" #~ msgid "Log Control Mechanism" #~ msgstr "登录控制机制" #~ msgid "Log File Destination" #~ msgstr "日志文件地å€" #~ msgid "Log File Filters" #~ msgstr "日志文件过滤" #~ msgid "Marquesas" #~ msgstr "Marquesas" #~ msgid "Mendoza" #~ msgstr "Mendoza" #~ msgid "Merge (default)" #~ msgstr "åˆå¹¶ (默认)" #~ msgid "Midway" #~ msgstr "中途" #~ msgid "Minimum" #~ msgstr "最å°" #~ msgid "Minimum Value" #~ msgstr "最å°å€¼" #~ msgid "Monaco" #~ msgstr "Monaco" #~ msgid "Moncton" #~ msgstr "Moncton" #~ msgid "Monterrey" #~ msgstr "Monterrey" #~ msgid "Montreal" #~ msgstr "Montreal" #~ msgid "MySQL Process Information" #~ msgstr "MySQL的进程信æ¯" #~ msgid "NOTE: Updating Data Query ID " #~ msgstr "注æ„ï¼šæ›´æ–°æ•°æ®æŸ¥è¯¢ID" #~ msgid "Ndjamena" #~ msgstr "Ndjamena" #~ msgid "New Full Name:" #~ msgstr "新的全å:" #~ msgid "New Host:" #~ msgstr "新主机:" #~ msgid "New Realm:" #~ msgstr "New Realm:" #~ msgid "New User: %s" #~ msgstr "新用户:%s" #~ msgid "New Username:" #~ msgstr "新用户å:" #~ msgid "Niamey" #~ msgstr "Niamey" #~ msgid "No Associated Graph Templates." #~ msgstr "没有关è”的图形模æ¿ã€‚" #~ msgid "No Host" #~ msgstr "无主机" #~ msgid "No Language Files Loaded." #~ msgstr "没有语言文件加载。" #~ msgid "No RRAs" #~ msgstr "æ—  RRAs" #~ msgid "No Trees" #~ msgstr "没有树" #~ msgid "No Users" #~ msgstr "没有用户" #~ msgid "No X-Axis Preset Items" #~ msgstr "没有 X-Axis 预置项目" #~ msgid "Node" #~ msgstr "节点" #~ msgid "Node options:" #~ msgstr "节点æ“作:" #~ msgid "Nome" #~ msgstr "Nome" #~ msgid "None (Not Recommended)" #~ msgstr "空 (䏿ލè)" #~ msgid "North Dakota" #~ msgstr "North Dakota" #~ msgid "Not Defined" #~ msgstr "Not Defined" #~ msgid "Note:" #~ msgstr "Note:" #~ msgid "Note: " #~ msgstr "Note: " #~ msgid "Noumea" #~ msgstr "Noumea" #~ msgid "PHP SNMP Support:" #~ msgstr "PHP SNMP Support:" #~ msgid "PNG Output OK" #~ msgstr "PNG 输出 OK" #~ msgid "Palau" #~ msgstr "Palau" #~ msgid "Palme" #~ msgstr "Palme" #~ msgid "Palmer" #~ msgstr "Palmer" #~ msgid "Parent Item" #~ msgstr "父项" #~ msgid "Parent Node Id" #~ msgstr "父节点ID" #~ msgid "Paris" #~ msgstr "Paris" #~ msgid "Password for the remote ftp account (leave empty for blank)." #~ msgstr "远程FTP叿ˆ·ï¼ˆå¯†ç ç•™ç©ºç™½ç©ºï¼‰ã€‚" #~ msgid "Password:" #~ msgstr "密ç ï¼š" #~ msgid "Perth" #~ msgstr "Perth" #~ msgid "Poller Errors" #~ msgstr "轮询错误" #~ msgid "Poller Statistics" #~ msgstr "轮询统计" #~ msgid "Ponape" #~ msgstr "Ponape" #~ msgid "Port of Spain" #~ msgstr "Port of Spain" #~ msgid "Porto Velho" #~ msgstr "Porto Velho" #~ msgid "Portuguese" #~ msgstr "Portuguese" #~ msgid "Portuguese (Brazil)" #~ msgstr "Portuguese (Brazil)" #~ msgid "Prague" #~ msgstr "Prague" #~ msgid "Presentation Method" #~ msgstr "演示方法" #~ msgid "Presets:" #~ msgstr "预置:" #~ msgid "Qatar" #~ msgstr "Qatar" #~ msgid "Query Id" #~ msgstr "查询ID" #~ msgid "Query Name:" #~ msgstr "查询å称:" #~ msgid "RPN for a COMPUTE DS Item Type (RRDTool 1.2.x and above)" #~ msgstr "é€†æ³¢å…°è¡¨è¾¾å¼ (RRDTool 1.2.x 或以上)" #~ msgid "RRA Id" #~ msgstr "RRA Id" #~ msgid "RRAs" #~ msgstr "RRA" #~ msgid "RRD Info Mode" #~ msgstr "RRDçš„ä¿¡æ¯æ¨¡å¼" #~ msgid "RRDTool Default Font Path" #~ msgstr "RRDtool的默认字体路径" #~ msgid "RRDTool Utility Version" #~ msgstr "RRDtool的实用工具版本" #~ msgid "Re-Index Method:" #~ msgstr "釿–°ç¼–制索引方法:" #~ msgid "Recife" #~ msgstr "Recife" #~ msgid "Red:" #~ msgstr "红:" #~ msgid "Refresh:" #~ msgstr "刷新:" #~ msgid "Require SSL Encryption" #~ msgstr "需è¦SSL加密" #~ msgid "Resolute" #~ msgstr "Resolute" #~ msgid "Reunion" #~ msgstr "Reunion" #~ msgid "Riga" #~ msgstr "Riga" #~ msgid "Right Axis" #~ msgstr "å³è½´" #~ msgid "Right Axis Format" #~ msgstr "å³è½´æ ¼å¼" #~ msgid "Right Axis Label" #~ msgstr "å³è½´æ ‡ç­¾" #~ msgid "Row" #~ msgstr "行" #~ msgid "Running data query" #~ msgstr "è¿è¡Œæ•°æ®æŸ¥è¯¢" #~ msgid "SNMP Utility Version" #~ msgstr "SNMP的实际版本" #~ msgid "Salta" #~ msgstr "Salta" #~ msgid "Santarem" #~ msgstr "Santarem" #~ msgid "Select a Graph Hierarchy" #~ msgstr "选择一个图形层" #~ msgid "ShadeA" #~ msgstr "ShadeA" #~ msgid "ShadeB" #~ msgstr "ShadeB" #~ msgid "Showing Rows" #~ msgstr "显示行" #~ msgid "Singapore" #~ msgstr "Singapore" #~ msgid "Site:" #~ msgstr "站点:" #~ msgid "Sort Children Type:" #~ msgstr "Sort Children Type:" #~ msgid "Sort Field" #~ msgstr "Sort Field" #~ msgid "Sort Method" #~ msgstr "Sort Method" #~ msgid "St Kitts" #~ msgstr "St Kitts" #~ msgid "Stanley" #~ msgstr "Stanley" #~ msgid "Status:" #~ msgstr "状æ€ï¼š" #~ msgid "Swift Current" #~ msgstr "Swift Current" #~ msgid "Syslog Server" #~ msgstr "Syslog Server" #~ msgid "System Log Settings" #~ msgstr "System Log Settings" #~ msgid "Tabulator Width" #~ msgstr "Tabulator Width" #~ msgid "Taipei" #~ msgstr "Taipei" #~ msgid "Tehran" #~ msgstr "Tehran" #~ msgid "Tell City" #~ msgstr "Tell City" #~ msgid "Tell_City" #~ msgstr "Tell_City" #~ msgid "Template user '" #~ msgstr "Template user '" #~ msgid "The Device Template to Refresh" #~ msgstr "The Device Template to Refresh" #~ msgid "The number of rows to display on a single page for data sources." #~ msgstr "æ¯é¡µæ˜¾ç¤ºæ•°æ®æºçš„行数。" #~ msgid "The size of the font used for Graph Watermarks" #~ msgstr "图形水å°ä¸­ä½¿ç”¨çš„字体大å°" #~ msgid "Timing" #~ msgstr "Timing" #~ msgid "Tirane" #~ msgstr "Tirane" #~ msgid "To disable the following devices, press the \"yes\" button below." #~ msgstr "è¦ç¦ç”¨ä¸€ä¸‹è®¾å¤‡ï¼Œè¯·ç‚¹å‡» \"yes\" 按钮。" #~ msgid "To enable the following devices, press the \"yes\" button below." #~ msgstr "è¦å¯ç”¨ä¸€ä¸‹è®¾å¤‡ï¼Œè¯·ç‚¹å‡» \"yes\" 按钮。" #~ msgid "Tree Isolation" #~ msgstr "Tree Isolation" #~ msgid "Tree Item Value" #~ msgstr "Tree Item Value" #~ msgid "Tree Presentation" #~ msgstr "Tree Presentation" #~ msgid "Tree View (Dual Pane)" #~ msgstr "Tree View (Dual Pane)" #~ msgid "Tree View (Single Pane)" #~ msgstr "Tree View (Single Pane)" #~ msgid "Tree View Mode" #~ msgstr "Tree View Mode" #~ msgid "Tree options:" #~ msgstr "Tree options:" #~ msgid "Try --list-graph-templates" #~ msgstr "Try --list-graph-templates" #~ msgid "Tunis" #~ msgstr "Tunis" #~ msgid "Type:" #~ msgstr "类型:" #~ msgid "Unmet Dependency: " #~ msgstr "Unmet Dependency: " #~ msgid "Update CDEF's and VDEF's" #~ msgstr "Update CDEF's and VDEF's" #~ msgid "Update Data Sources" #~ msgstr "æ›´æ–°æ•°æ®æº" #~ msgid "Update Graphs" #~ msgstr "更新图形" #~ msgid "Update Re-Index Method" #~ msgstr "Update Re-Index Method" #~ msgid "Update System Trees" #~ msgstr "Update System Trees" #~ msgid "Updated graph-id: (%d)" #~ msgstr "Updated graph-id: (%d)" #~ msgid "Upper Limit" #~ msgstr "上é™" #~ msgid "Use passive mode" #~ msgstr "使用被动模å¼" #~ msgid "User Administration" #~ msgstr "用户管ç†" #~ msgid "User Name:" #~ msgstr "用户å:" #~ msgid "User copied..." #~ msgstr "å¤åˆ¶ç”¨æˆ·" #~ msgid "Using System Defaults" #~ msgstr "使用系统默认值" #~ msgid "VDEF Title" #~ msgstr "VDEF Title" #~ msgid "VDEF's" #~ msgstr "VDEF's" #~ msgid "Vaduz" #~ msgstr "Vaduz" #~ msgid "Valid Device Templates: (id, name)" #~ msgstr "Valid Device Templates: (id, name)" #~ msgid "Version 2" #~ msgstr "版本 2" #~ msgid "Version 3" #~ msgstr "版本 3" #~ msgid "View User Log File" #~ msgstr "查看用户登录日志" #~ msgid "Viewing Graph Properties" #~ msgstr "查看图片属性" #~ msgid "Vostok" #~ msgstr "Vostok" #~ msgid "WARNING: Function does not exist\n" #~ msgstr "警告:函数ä¸å­˜åœ¨\n" #~ msgid "Warning" #~ msgstr "警告" #~ msgid "Watermark Font File" #~ msgstr "æ°´å°å­—体" #~ msgid "Watermark Font Size" #~ msgstr "æ°´å°å­—体大å°" #~ msgid "Width" #~ msgstr "Width" #~ msgid "Would you like to copy this user?" #~ msgstr "Would you like to copy this user?" #~ msgid "X Grid" #~ msgstr "X Grid" #~ msgid "X-Axis Items" #~ msgstr "X-Axis Items" #~ msgid "X-Axis Presets" #~ msgstr "X-Axis Presets" #~ msgid "Y Grid" #~ msgstr "Y Grid" #~ msgid "Yerevan" #~ msgstr "Yerevan" #~ msgid "" #~ "You must first select a Data Input Method. Please select 'Return' to " #~ "return to the previous menu." #~ msgstr "您必须先选择一个数æ®å¯¼å…¥æ–¹æ³•。按“返回â€é”®è¿”回上一个èœå•。" #~ msgid "" #~ "You must first select a Data Query. Please select 'Return' to return to " #~ "the previous menu." #~ msgstr "æ‚¨å¿…é¡»å…ˆé€‰æ‹©ä¸€ä¸ªæ•°æ®æŸ¥è¯¢ã€‚按“返回â€é”®è¿”回上一个èœå•。" #~ msgid "" #~ "You must first select a Data Source Template. Please select 'Return' to " #~ "return to the previous menu." #~ msgstr "æ‚¨å¿…é¡»å…ˆé€‰æ‹©ä¸€ä¸ªæ•°æ®æºæ¨¡æ¿ã€‚按“返回â€é”®è¿”回上一个èœå•。" #~ msgid "" #~ "You must first select a Data Source. Please select 'Return' to return to " #~ "the previous menu." #~ msgstr "æ‚¨å¿…é¡»å…ˆé€‰æ‹©ä¸€ä¸ªæ•°æ®æºã€‚按“返回â€é”®è¿”回上一个èœå•。" #~ msgid "" #~ "You must first select a Device Template. Please select 'Return' to " #~ "return to the previous menu." #~ msgstr "您必须先选择一个设备模æ¿ã€‚按“返回â€é”®è¿”回上一个èœå•。" #~ msgid "" #~ "You must first select a Device. Please select 'Return' to return to the " #~ "previous menu." #~ msgstr "您必须先选择一个设备。按“返回â€é”®è¿”回上一个èœå•。" #~ msgid "" #~ "You must first select a Graph Template. Please select 'Return' to return " #~ "to the previous menu." #~ msgstr "您必须先选择一个图形模æ¿ã€‚按“返回â€é”®è¿”回上一个èœå•。" #~ msgid "" #~ "You must first select a Graph. Please select 'Return' to return to the " #~ "previous menu." #~ msgstr "您必须先选择一个图形。按“返回â€é”®è¿”回上一个èœå•。" #~ msgid "" #~ "You must first select a Poller. Please select 'Return' to return to the " #~ "previous menu." #~ msgstr "您必须先选择一个轮询。按“返回â€é”®è¿”回上一个èœå•。" #~ msgid "Zoom Graph" #~ msgstr "Zoom Graph" #~ msgid "Zooming Graph" #~ msgstr "Zooming Graph" #~ msgid "[device:" #~ msgstr "[device:" #~ msgid "[device: " #~ msgstr "[device: " #~ msgid "[edit graph: " #~ msgstr "[edit graph: " #~ msgid "_Sep_" #~ msgstr "_Sep_" #~ msgid "and select the correct RRDTool Utility Version." #~ msgstr "and select the correct RRDTool Utility Version." #~ msgid "denotes the device template to be used" #~ msgstr "denotes the device template to be used" #~ msgid "device" #~ msgstr "device" #~ msgid "direction" #~ msgstr "direction" #~ msgid "disabled" #~ msgstr "disabled" #~ msgid "general" #~ msgstr "general" #~ msgid "graph" #~ msgstr "graph" #~ msgid "graph_export.csv" #~ msgstr "graph_export.csv" #~ msgid "mode" #~ msgstr "mode" #~ msgid "on:off" #~ msgstr "on:off" #~ msgid "pixels" #~ msgstr "pixels" #~ msgid "poller" #~ msgstr "poller" #~ msgid "position" #~ msgstr "position" #~ msgid "snmp authentication protocol for snmpv3" #~ msgstr "snmp authentication protocol for snmpv3" #~ msgid "snmp privacy passphrase for snmpv3" #~ msgstr "snmp privacy passphrase for snmpv3" #~ msgid "snmp privacy protocol for snmpv3" #~ msgstr "snmp privacy protocol for snmpv3" #~ msgid "snmp timeout" #~ msgstr "snmp timeout" #~ msgid "snmp version" #~ msgstr "snmp version" #~ msgid "string" #~ msgstr "string" #~ msgid "tree" #~ msgstr "tree" cacti-1.1.38/locales/po/cacti.pot0000664000175000017500000232452713264740214016144 0ustar tromantroman# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-15 17:13-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:115 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2581 msgid "About Cacti" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:35 #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:73 #: /tmp/cacti_package.2719/cacti-1.1.38/logout.php:60 #, php-format msgid "Version %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:42 msgid "" "Cacti is designed to be a complete graphing solution based on the RRDtool's " "framework. Its goal is to make a network administrator's job easier by " "taking care of all the necessary details necessary to create meaningful " "graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:44 #, php-format msgid "" "Please see the official %sCacti website%s for information, support, and " "updates." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:46 msgid "Cacti Developers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:58 msgid "Thanks" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:61 #, php-format msgid "" "A very special thanks to %sTobi Oetiker%s, the creator of %sRRDtool%s and " "the very popular %sMRTG%s." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:64 msgid "The users of Cacti" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:65 msgid "" "Especially anyone who has taken the time to create an issue report, or " "otherwise help fix a Cacti related problems. Also to anyone who has " "contributed to supporting Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:70 msgid "License" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:72 msgid "Cacti is licensed under the GNU GPL:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:74 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:441 msgid "" "This program is free software; you can redistribute it and/or modify it " "under the terms of the GNU General Public License as published by the Free " "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/about.php:76 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:40 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:32 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:31 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:683 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:32 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:644 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:28 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:28 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:122 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:525 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:564 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:728 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:828 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1052 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:597 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:35 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:971 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:33 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:607 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:28 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:33 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:440 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:44 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:38 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:477 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:534 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1360 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1277 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1339 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1403 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1064 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1137 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1331 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:28 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:28 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:28 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1217 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1370 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1430 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:28 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:29 msgid "Delete" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:41 msgid "Migrate Aggregate to use a Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:42 msgid "Create New Aggregate from Aggregates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:46 msgid "Associate with Aggregate" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:47 msgid "Disassociate with Aggregate" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:80 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:128 #, php-format msgid "Place on a Tree (%s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:318 msgid "Click 'Continue' to delete the following Aggregate Graph(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:323 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:384 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:409 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:418 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:427 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:438 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:312 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:199 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:289 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:385 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:254 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:338 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:166 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:286 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:282 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:293 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:345 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:192 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:232 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:242 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates_items.php:264 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:218 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:269 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:352 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:506 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:280 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:290 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:341 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:479 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:489 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:498 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:507 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:516 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:522 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:363 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:373 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:389 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:153 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:317 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:327 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:347 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:356 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:858 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:874 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:885 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:896 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:911 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:925 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:934 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1060 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1103 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1125 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1133 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1584 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:387 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:396 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:444 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:453 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:462 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:476 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:490 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:499 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:507 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:261 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:275 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:286 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:334 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:390 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:202 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1136 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1148 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1159 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:214 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:196 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:205 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:214 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1005 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1062 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:483 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:288 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:297 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:306 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:315 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:291 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:625 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:634 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:643 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:340 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:380 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:391 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:402 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:424 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:227 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:236 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:245 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:254 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:446 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:465 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:476 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:487 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:270 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:280 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:332 msgid "Cancel" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:323 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:384 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:409 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:418 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:427 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:438 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:312 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:199 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:289 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:377 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:229 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:339 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:166 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:286 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:282 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:293 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:346 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:192 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:232 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:242 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates_items.php:265 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:218 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:270 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:352 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:507 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:280 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:290 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:342 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:479 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:489 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:498 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:507 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:516 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:522 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:363 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:373 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:389 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:153 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:317 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:327 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:347 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:356 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:858 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:874 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:885 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:896 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:911 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:925 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:934 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1060 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1103 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1125 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1133 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:387 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:396 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:444 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:453 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:462 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:476 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:490 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:499 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:507 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:261 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:275 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:286 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:335 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:391 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:203 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:704 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:214 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:196 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:205 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:214 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1005 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1062 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:288 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:297 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:306 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:315 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:291 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:625 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:634 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:643 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:340 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:380 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:391 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:402 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:424 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:227 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:236 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:245 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:254 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:446 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:465 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:476 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:487 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:270 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:280 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:333 msgid "Continue" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:323 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:384 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:409 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:858 msgid "Delete Graph(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:349 msgid "" "The selected Aggregate Graphs represent elements from more than one Graph " "Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:350 msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, they must only be using one Graph Template. Please press " "'Return' and then select only Aggregate Graph that utilize the same Graph " "Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:355 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:395 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:442 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:316 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:332 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:457 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:467 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:203 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:287 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:386 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:254 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:170 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:284 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:297 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:196 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:246 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:221 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:355 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:294 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:526 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:393 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:157 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:360 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1062 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1112 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1115 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1138 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:511 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:290 #: /tmp/cacti_package.2719/cacti-1.1.38/include/auth.php:139 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1157 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:212 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:218 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1008 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1065 #: /tmp/cacti_package.2719/cacti-1.1.38/permission_denied.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/permission_denied.php:32 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:319 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:295 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:647 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:429 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:258 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:491 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:284 msgid "Return" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:368 msgid "" "Click 'Continue' and the following Aggregate Graph(s) will be migrated to " "use the Aggregate Template that you choose below." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:374 msgid "Aggregate Template:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:388 msgid "" "There are currently no Aggregate Templates defined for the selected Legacy " "Aggregates." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:389 #, php-format msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, first create an Aggregate Template for the Graph Template '%s'." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:390 msgid "Please press 'Return' to continue." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:401 msgid "" "Click 'Continue' to combine the following Aggregate Graph(s) into a single " "Aggregate Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:406 msgid "Aggregate Name:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:407 msgid "New Aggregate" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:413 msgid "" "Click 'Continue' to associate the following Graph(s) with the Aggregate " "Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:418 msgid "Associate Graph(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:422 msgid "" "Click 'Continue' to disassociate the following Graph(s) from the Aggregate." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:427 msgid "Dis-Associate Graph(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:431 msgid "" "Click 'Continue' to place the following Aggregate Graph(s) under the Tree " "Branch." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:433 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:482 msgid "Destination Branch:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:438 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:911 msgid "Place Graph(s) on Tree" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:441 msgid "You must select at least one graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:476 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1171 msgid "Graph Items [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:492 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1202 #, php-format msgid "Graph Items [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:565 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:572 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1100 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1105 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1144 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1793 msgid "Details" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:566 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:916 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1100 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1191 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:319 msgid "Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:567 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:573 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1694 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1100 msgid "Preview" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:631 msgid "Turn Off Graph Debug Mode" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:633 msgid "Turn On Graph Debug Mode" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:639 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:903 msgid "Show Item Details" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:645 #, php-format msgid "Aggregate Preview [%s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:657 #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:526 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1438 msgid "RRDtool Command:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:659 #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:529 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1440 msgid "RRDtool Says:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:684 #, php-format msgid "Aggregate Graph %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:821 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1020 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1305 msgid "Total" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:825 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1022 msgid "All Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:848 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1454 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1453 msgid "Graph Configuration" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:898 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:554 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:569 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:585 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:379 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:529 msgid "Show" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:900 msgid "Hide Item Details" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1020 msgid "Matching Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1029 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1357 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:538 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:448 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:747 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1098 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1142 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:787 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:392 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:715 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:750 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:529 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:443 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:660 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1154 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:832 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1283 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:793 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:262 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:629 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:544 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:854 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1737 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:576 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1519 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:696 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:141 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:469 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:699 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1019 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:474 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_filter.php:63 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:198 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:416 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1418 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:124 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:636 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:898 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:309 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:150 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:494 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:726 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:327 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:517 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:475 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:342 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:361 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:410 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:398 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:768 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:803 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1679 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2207 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2545 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2652 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2738 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2841 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2926 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:3011 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:621 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1827 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2152 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2260 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2363 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2448 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2533 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:699 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1122 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1410 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1688 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2363 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2614 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:683 msgid "Search" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1035 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1132 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1385 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:552 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:415 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:585 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:639 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1743 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1827 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1583 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:801 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:982 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:281 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:1997 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1427 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1429 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1508 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:204 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:687 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:1096 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1763 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:986 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1230 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2573 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:813 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:966 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2180 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:281 msgid "Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1039 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1389 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:554 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:533 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:789 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1108 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:797 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:402 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:735 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:760 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:539 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:457 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:670 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1164 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:842 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:963 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1319 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:819 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:272 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:639 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:589 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1747 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:586 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1544 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:706 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:76 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:184 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:479 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:709 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1062 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1438 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:319 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:160 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:504 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:350 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:527 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:501 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:408 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1689 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2217 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2577 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2662 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2766 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2851 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2936 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:3021 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:32 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:631 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:714 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1837 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2184 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2288 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2373 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2458 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2543 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:677 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1420 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1709 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2388 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2650 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:693 msgid "Default" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1052 msgid "Part of Aggregate" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1057 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1401 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:575 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:469 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:801 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1142 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:809 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:414 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:747 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:778 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:563 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:477 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:682 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1176 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:860 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1274 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:837 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:290 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:657 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:601 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1728 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:565 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1509 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:724 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:196 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:460 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:721 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1074 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:422 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1249 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_filter.php:81 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:185 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1449 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:674 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:329 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:172 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:516 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:746 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:362 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:539 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:420 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1701 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2229 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2595 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2680 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2784 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2869 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2954 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:3039 msgid "Go" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1057 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1401 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:469 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:809 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:414 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:778 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:563 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:682 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1176 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:860 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1274 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:837 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:290 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:657 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:601 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1728 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:565 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1509 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:724 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:185 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:172 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:516 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:746 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:362 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:539 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:420 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1701 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2229 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2595 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2680 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2784 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2869 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2954 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:3039 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:643 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1849 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2202 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2306 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2391 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2476 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2561 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:689 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1074 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1401 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1679 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2400 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2662 msgid "Set/Refresh Filters" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1058 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1402 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:576 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:470 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:802 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1143 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:810 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:415 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:748 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:779 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:564 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:478 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:683 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1177 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:861 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1275 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:838 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:291 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:658 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:602 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1729 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:566 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1510 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:725 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:197 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:461 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:722 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1075 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:423 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_filter.php:86 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:186 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:302 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1450 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:675 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:785 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:330 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:173 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:517 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:747 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:363 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:540 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:421 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1702 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2230 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2596 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2681 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2785 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2870 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2955 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:3040 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:644 msgid "Clear" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1058 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1402 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:810 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:415 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:779 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:564 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:683 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1177 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:861 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1275 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:838 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:291 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:658 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:602 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1729 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:566 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1510 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:725 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:186 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:675 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:173 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:517 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:747 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:363 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:540 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:421 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1702 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2230 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2596 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2681 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2785 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2870 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2955 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:3040 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:644 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1850 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2203 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2307 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2392 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2477 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2562 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:690 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1075 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1402 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1680 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2401 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2663 msgid "Clear Filters" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1137 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1465 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:645 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1089 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:569 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:994 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:821 msgid "Graph Title" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1138 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1466 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:900 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:841 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1260 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1438 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:947 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:765 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1837 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1577 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:813 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:280 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:613 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:494 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1754 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:994 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1089 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1230 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1374 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1511 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:675 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:821 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:966 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1109 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1243 msgid "ID" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1139 msgid "Included in Aggregate" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1140 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1468 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:768 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1839 msgid "Size" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1156 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:899 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:725 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:727 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:569 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:783 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1280 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:1003 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:1004 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1482 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1483 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:967 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:413 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:786 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:832 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:414 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:694 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1341 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:571 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:599 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1791 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1792 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2298 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:729 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1917 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:890 msgid "No" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1156 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:899 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:725 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:727 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:569 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:783 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1280 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:1002 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:1003 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:1004 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1482 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1483 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:967 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:413 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:786 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:832 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:414 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:693 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1341 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:570 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:571 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:598 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:599 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1791 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1792 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2296 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:727 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:729 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1915 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:890 msgid "Yes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1162 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1858 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:596 msgid "No Graphs Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1348 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1456 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2707 msgid "Aggregate Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1363 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1238 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:551 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1703 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1490 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:457 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:441 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:153 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:642 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:351 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2551 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2744 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2158 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2266 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1649 msgid "Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1367 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:458 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:488 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:503 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:518 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:757 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:779 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:725 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1242 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1707 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:330 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1459 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1477 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1494 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1529 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:151 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:169 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:428 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:445 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1029 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1047 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1768 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1789 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1428 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:483 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:736 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2555 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2748 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2162 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2270 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:666 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1371 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1653 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1698 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2373 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2624 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2637 msgid "Any" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1368 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1480 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:910 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:911 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:448 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:660 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:853 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:835 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1243 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1468 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:969 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:818 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:358 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1365 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1374 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1708 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:331 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:443 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1092 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1103 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1460 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1495 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:406 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:459 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:542 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:685 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:708 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1444 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:402 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:708 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:716 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:724 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:762 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:769 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:795 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:824 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:832 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1014 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1023 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2091 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2133 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:461 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:469 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:477 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:987 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1411 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:152 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:429 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:446 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:584 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1030 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1769 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1787 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:320 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:380 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:337 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:389 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:401 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:410 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:420 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:862 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:335 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:354 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:380 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2556 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2749 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2163 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2271 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1654 msgid "None" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1465 msgid "The title for the Aggregate Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1466 msgid "The internal database identifier for this object" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1467 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1093 msgid "Aggregate Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1467 msgid "The Aggregate Template that this Aggregate Graphs is based upon" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_graphs.php:1486 msgid "No Aggregate Graphs Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_items.php:346 msgid "Override Values for Graph Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_items.php:357 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1485 msgid "Override this Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:307 msgid "Click 'Continue' to Delete the following Aggregate Graph Template(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:312 msgid "Delete Color Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:315 msgid "You must select at least one Aggregate Graph Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:351 #, php-format msgid "Aggregate Template [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:353 msgid "Aggregate Template [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:531 #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:630 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2689 msgid "Aggregate Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:544 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:398 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:481 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:553 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:810 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:868 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:929 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2847 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2369 msgid "Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:570 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:773 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:558 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:472 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1310 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:285 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:652 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:706 msgid "Has Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:639 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:550 msgid "Template Title" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:640 msgid "" "Aggregate Templates that are in use can not be Deleted. In use is defined " "as being referenced by an Aggregate." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:640 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:882 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:702 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:551 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:765 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1261 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:964 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1440 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:948 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:394 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:766 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:814 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:872 msgid "Deletable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:641 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:883 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:703 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1014 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1262 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:395 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:767 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:873 msgid "Graphs Using" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:642 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:645 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:770 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1106 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1317 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1545 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:406 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1452 msgid "Graph Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/aggregate_templates.php:664 msgid "No Aggregate Templates Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:106 msgid "You cannot use a previously entered password!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:113 msgid "Your new passwords do not match, please retype." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:120 msgid "Your current password is not correct. Please try again." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:127 msgid "" "Your new password cannot be the same as the old password. Please try again." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:221 msgid "Forced password change" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:225 msgid "Password requirements include:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:229 #, php-format msgid "Must be at least %d characters in length" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:233 msgid "Must include mixed case" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:237 msgid "Must include at least 1 number" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:241 msgid "Must include at least 1 special character" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:245 #, php-format msgid "Cannot be reused for %d password changes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:255 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:308 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1462 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:1967 msgid "Change Password" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:314 msgid "Please enter your current password and your new
    Cacti password." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:319 msgid "Current password" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:323 msgid "New password" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:327 msgid "Confirm new password" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:331 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:436 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:467 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:567 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1154 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1163 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:188 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:677 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:304 msgid "Save" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_changepassword.php:340 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:705 #, php-format msgid "Version %1$s | %2$s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:50 msgid "" "Web Basic Authentication configured, but no username was passed from the web " "server. Please make sure you have authentication enabled on the web server." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:113 #, php-format msgid "" "%s authenticated by Web Server, but both Template and Guest Users are not " "defined in Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:133 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:430 #, php-format msgid "LDAP Search Error: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:159 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:494 #, php-format msgid "LDAP Error: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:231 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:484 #, php-format msgid "Template user %s does not exist." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:253 #, php-format msgid "Guest user %s does not exist." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:289 msgid "Access Denied, user account disabled." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:380 msgid "Access Denied, please contact you Cacti Administrator." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:408 msgid "Cacti" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:595 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:155 msgid "Login to Cacti" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:607 msgid "User Login" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:619 msgid "Enter your Username and Password below" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:625 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:628 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1274 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4002 msgid "Username" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:633 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1429 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4003 msgid "Password" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:645 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1635 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:338 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:360 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:371 msgid "Local" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:649 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:696 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:372 msgid "LDAP" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:660 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2279 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:675 msgid "Realm" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:677 msgid "Keep me signed in" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:683 msgid "Login" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:696 msgid "Invalid User Name/Password Please Retype" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_login.php:699 msgid "User Account Disabled" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:187 msgid "User Account Details" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:198 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:679 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:108 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1964 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1654 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1676 msgid "Tree View" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:202 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:680 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:109 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1661 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1685 msgid "List View" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:206 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:681 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:110 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1668 msgid "Preview View" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:219 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1405 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2276 msgid "User Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:220 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1406 msgid "The login name for this user." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:227 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1413 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2277 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:675 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:773 msgid "Full Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:228 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1414 msgid "" "A more descriptive name for this user, that can include spaces or special " "characters." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:235 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1421 msgid "Email Address" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:236 msgid "An Email Address you be reached at." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:243 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:245 msgid "Clear Private Data" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:244 msgid "Clear Private Data including Column sizing." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:254 #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:256 msgid "Logout Everywhere" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:255 msgid "Clear all your Login Session Tokens." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:276 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1940 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1671 msgid "User Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:333 msgid "Private Data Cleared" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:333 msgid "Your Private Data has been cleared." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:353 msgid "All your login sessions have been cleared." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/auth_profile.php:353 msgid "User Sessions Cleared" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:31 msgid "Add Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:39 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:271 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:389 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:399 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:621 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:622 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1534 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:174 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1052 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:852 msgid "Down" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:40 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:271 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:391 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:401 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:621 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:622 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1533 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:173 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1051 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:858 msgid "Up" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:90 msgid "Added manually through device automation interface." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:106 msgid "Added to Cacti" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:106 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:108 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:833 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:645 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1370 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:766 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:811 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1560 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:424 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3997 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1764 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1794 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:396 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1504 msgid "Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:108 msgid "Not Added to Cacti" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:177 msgid "Click 'Continue' to add the following Discovered device(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:183 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:603 msgid "Pollers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:187 msgid "Select Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:193 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:279 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:491 msgid "Availability Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:199 msgid "Add Device(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:202 msgid "You must select at least one Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:239 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:529 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1446 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1540 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1640 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:798 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:850 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:180 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:269 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:475 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:558 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1161 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2287 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:617 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:495 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1762 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1222 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2762 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:958 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2284 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:276 msgid "Devices" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:248 msgid "Device Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:249 msgid "IP" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:250 msgid "SNMP Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:251 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1631 msgid "Location" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:252 msgid "Contact" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:253 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:952 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:988 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1281 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1624 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:930 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:276 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1168 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:216 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:782 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1089 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1230 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:966 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1903 msgid "Description" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:254 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:499 msgid "OS" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:255 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1607 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:407 msgid "Uptime" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:256 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:514 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1699 msgid "SNMP" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:257 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:484 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:775 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1001 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:721 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1263 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:952 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:727 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:826 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1525 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1595 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:165 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:278 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:568 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1043 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1171 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1424 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:218 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:333 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:425 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:615 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1230 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:966 msgid "Status" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:258 msgid "Last Check" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:285 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:613 msgid "Not Detected" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:303 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1683 msgid "No Devices Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:439 msgid "Discovery Filters" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:454 msgid "Network" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:470 msgid "Reset fields to defaults" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:475 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:570 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1511 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1169 msgid "Export" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:475 msgid "Export to a file" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:476 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:193 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:424 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:748 msgid "Purge" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:476 msgid "Purge Discovered Devices" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_devices.php:643 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1067 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:661 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:662 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:663 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:664 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:665 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:666 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1031 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2291 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:419 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:801 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2117 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2214 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2222 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2225 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2228 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2234 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2463 msgid "N/A" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:34 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:34 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:63 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:31 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1357 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:30 msgid "Duplicate" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:33 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:38 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:39 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1358 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1232 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:35 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:31 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:31 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:402 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:32 msgid "Enable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:31 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:32 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:31 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:39 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:40 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1359 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:34 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:31 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:33 msgid "Disable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:256 msgid "Press 'Continue' to delete the following Graph Rules." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:263 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Graph Rules." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:265 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:262 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:880 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:891 msgid "Title Format" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:265 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:262 msgid "rule_name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:271 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:268 msgid "Click 'Continue' to enable the following Rule(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:273 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:270 msgid "Make sure, that those rules have successfully been tested!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:279 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:276 msgid "Click 'Continue' to disable the following Rule(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:286 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:283 msgid "You must select at least one Rule." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:289 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:286 msgid "Apply requested action" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:419 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:471 msgid "Are You Sure?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:419 #, php-format msgid "Are you sure you want to delete the Rule '%s'?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:538 #, php-format msgid "Rule Selection [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:544 msgid "Rule Selection [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:554 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:569 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:585 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:379 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:529 msgid "Don't Show" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:554 msgid "Rule Details." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:569 msgid "Matching Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:585 msgid "Matching Objects." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:625 msgid "Device Selection Criteria" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:631 msgid "Graph Creation Criteria" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:738 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:785 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:890 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:821 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2743 msgid "Graph Rules" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:753 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:901 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1109 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1555 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2170 msgid "Data Query" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:780 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:903 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:919 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:523 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:726 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:846 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:864 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1268 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1530 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:729 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1437 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:355 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:170 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1048 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1429 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1521 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1532 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1568 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:380 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:243 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:598 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1089 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1101 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2278 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:341 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:716 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:87 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:675 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:690 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1907 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2249 msgid "Enabled" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:781 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:919 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1016 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:727 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:864 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1269 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:971 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1531 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:728 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1285 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1568 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:355 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1108 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1122 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1134 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1159 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1173 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1232 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1813 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:171 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1049 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1430 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1568 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:848 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:243 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:598 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:40 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1101 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:402 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:690 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2249 msgid "Disabled" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:899 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:840 msgid "Rule Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:899 msgid "The name of this rule." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:900 msgid "" "The internal database ID for this rule. Useful in performing debugging and " "automation." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:902 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1809 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1888 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1986 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2181 msgid "Graph Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_graph_rules.php:925 msgid "No Graph Rules Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:34 msgid "Discover Now" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:35 msgid "Cancel Discovery" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:208 #, php-format msgid "ERROR: You must specify the day of the week. Disabling Network %s!." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:214 #, php-format msgid "" "ERROR: You must specify both the Months and Days of Month. Disabling " "Network %s!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:220 #, php-format msgid "" "ERROR: You must specify the Months, Weeks of Months, and Days of Week. " "Disabling Network %s!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:238 #, php-format msgid "ERROR: Network '%s' is Invalid." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:337 msgid "Click 'Continue' to delete the following Network(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:344 msgid "Click 'Continue' to enable the following Network(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:351 msgid "Click 'Continue' to disable the following Network(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:358 msgid "Click 'Continue' to discover the following Network(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:361 msgid "Run discover in debug mode" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:367 msgid "Click 'Continue' to cancel on going Network Discovery(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:374 msgid "You must select at least one Network." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:405 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:989 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1253 msgid "Manual" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:406 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:990 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:589 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1582 msgid "Daily" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:407 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:991 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1583 msgid "Weekly" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:408 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:992 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1584 msgid "Monthly" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:409 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:993 msgid "Monthly on Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:413 #, php-format msgid "Network Discovery Range [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:415 msgid "Network Discovery Range [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:422 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1857 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1953 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:50 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:30 msgid "General Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:427 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:602 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:498 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:537 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:682 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:780 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1012 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:562 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:423 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:35 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:101 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:158 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:178 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:219 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:343 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:380 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:486 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:912 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:944 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1253 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1273 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1343 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1371 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2064 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2162 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2207 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:531 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:594 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:930 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/vdef.php:74 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:562 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:52 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:40 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1089 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:317 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:479 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2443 msgid "Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:428 msgid "Give this Network a meaningful name." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:431 msgid "New Network Discovery Range" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:435 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:998 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1473 msgid "Data Collector" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:436 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1004 msgid "" "Choose the Cacti Data Collector/Poller to be used to gather data from this " "Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:443 msgid "Associated Site" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:444 msgid "" "Choose the Cacti Site that you wish to associate discovered Devices with." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:452 msgid "Subnet Range" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:453 msgid "" "Enter valid Network Ranges separated by commas. You may use an IP address, " "a Network range such as 192.168.1.0/24 or 192.168.1.0/255.255.255.0, or " "using wildcards such as 192.168.*.*" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:462 msgid "Total IP Addresses" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:463 msgid "Total addressable IP Addresses in this Network Range." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:468 msgid "Alternate DNS Servers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:469 msgid "" "A space delimited list of alternate DNS Servers to use for DNS resolution. " "If blank, the poller OS will be used to resolve DNS names." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:472 msgid "Enter IPs or FQDNs of DNS Servers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:476 msgid "Schedule Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:477 msgid "Define the collection frequency." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:484 msgid "Discovery Threads" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:485 msgid "Define the number of threads to use for discovering this Network Range." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:488 #, php-format msgid "%d Thread" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:489 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:490 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:491 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:492 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:493 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:494 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:495 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:496 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:497 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:498 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:499 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:662 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:663 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:664 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:665 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:666 #, php-format msgid "%d Threads" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:505 msgid "Run Limit" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:506 msgid "After the selected Run Limit, the discovery process will be terminated." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:509 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1129 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:614 #, php-format msgid "%d Minute" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:510 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:511 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:512 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:513 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1130 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1131 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1100 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:579 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:580 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:581 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:582 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:615 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:616 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:617 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:618 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:619 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:620 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:962 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:963 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1292 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1296 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1304 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1305 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1327 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1328 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1329 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1330 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1331 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1342 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1175 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1176 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1177 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1178 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1179 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1891 #, php-format msgid "%d Minutes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:514 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:621 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:631 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1196 #, php-format msgid "%d Hour" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:515 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:516 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:517 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:769 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:584 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:585 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:586 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:587 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:588 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:622 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:623 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:624 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:625 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:632 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:633 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:634 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:635 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1197 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1198 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1199 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1200 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1244 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1245 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1246 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1247 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1248 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1265 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1266 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1267 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1268 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1269 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1181 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1182 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1183 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1184 #, php-format msgid "%d Hours" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:524 msgid "Enable this Network Range." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:529 msgid "Enable NetBIOS" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:530 msgid "Use NetBIOS to attempt to resolve the hostname of up hosts." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:536 msgid "Automatically Add to Cacti" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:537 msgid "" "For any newly discovered Devices that are reachable using SNMP and who match " "a Device Rule, add them to Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:542 msgid "Rerun Data Queries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:543 msgid "If a device previously added to Cacti is found, rerun its data queries." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:548 msgid "Discovery Timing" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:553 msgid "Starting Date/Time" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:554 msgid "What time will this Network discover item start?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:562 msgid "Rerun Every" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:563 msgid "Rerun discovery for this Network Range every X." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:578 msgid "Days of Week" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:579 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:637 msgid "What Day(s) of the week will this Network Range be discovered." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:581 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:639 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1624 msgid "Sunday" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:582 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:640 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1625 msgid "Monday" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:583 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:641 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1626 msgid "Tuesday" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:584 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:642 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1627 msgid "Wednesday" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:585 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:643 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1628 msgid "Thursday" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:586 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:644 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1629 msgid "Friday" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:587 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:645 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1630 msgid "Saturday" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:594 msgid "Months of Year" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:595 msgid "What Months(s) of the Year will this Network Range be discovered." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:597 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1594 msgid "January" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:598 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1595 msgid "February" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:599 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1596 msgid "March" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:600 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1597 msgid "April" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:601 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1598 msgid "May" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:602 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1599 msgid "June" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:603 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1600 msgid "July" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:604 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1601 msgid "August" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:605 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1602 msgid "September" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:606 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1603 msgid "October" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:607 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1604 msgid "November" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:608 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1605 msgid "December" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:615 msgid "Days of Month" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:616 msgid "What Day(s) of the Month will this Network Range be discovered." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:617 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:629 msgid "Last" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:623 msgid "Week(s) of Month" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:624 msgid "What Week(s) of the Month will this Network Range be discovered." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:626 msgid "First" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:627 msgid "Second" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:628 msgid "Third" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:636 msgid "Day(s) of Week" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:652 msgid "Reachability Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:657 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:823 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1045 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1656 msgid "SNMP Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:658 msgid "Select the SNMP Options to use for discovery of this Network Range." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:664 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1181 msgid "Ping Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:665 msgid "The type of ping packet to send." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:673 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1191 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:617 msgid "Ping Port" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:675 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1193 msgid "TCP or UDP port to attempt connection." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:681 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1199 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:625 msgid "Ping Timeout Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:682 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1200 msgid "" "The timeout value to use for host ICMP and UDP pinging. This host SNMP " "timeout value applies for SNMP pings." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:690 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1208 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:633 msgid "Ping Retry Count" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:691 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1209 msgid "" "After an initial failure, the number of ping retries Cacti will attempt " "before failing." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:731 msgid "Select the days(s) of the week" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:741 msgid "Select the month(s) of the year" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:751 msgid "Select the day(s) of the month" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:761 msgid "Select the week(s) of the month" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:771 msgid "Select the day(s) of the week" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:844 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:861 msgid "every X Days" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:844 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:861 msgid "every X Weeks" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:845 msgid "every X Days." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:845 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:862 msgid "every X." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:862 msgid "every X Weeks." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:970 msgid "Network Filters" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:980 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1104 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:818 msgid "Networks" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:997 msgid "Network Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:999 msgid "Schedule" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1000 msgid "Total IPs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1001 msgid "The Current Status of this Networks Discovery" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1002 msgid "Pending/Running/Done" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1002 msgid "Progress" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1003 msgid "Up/SNMP Hosts" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1004 msgid "Threads" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1005 msgid "Last Runtime" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1006 msgid "Next Start" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1007 msgid "Last Started" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1032 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:37 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2054 msgid "Running" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1052 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:38 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2053 msgid "Idle" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1073 msgid "No Networks Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1119 #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:354 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_realtime.php:242 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:454 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:301 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:784 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:803 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1106 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2006 msgid "Refresh" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1125 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1126 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1127 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1128 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1096 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:577 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:611 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:612 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:613 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:957 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:958 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:959 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:960 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1286 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1287 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1288 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1289 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1290 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1323 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1324 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1336 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1337 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1338 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1339 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1340 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1891 #, php-format msgid "%d Seconds" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_networks.php:1143 msgid "Clear Filtered" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:226 msgid "You must select at least one SNMP Option." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:234 msgid "Click 'Continue' to delete the following SNMP Option(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:241 msgid "" "Click 'Continue' to duplicate the following SNMP Options. You can optionally " "change the title format for the new SNMP Options." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:243 msgid "Name Format" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:243 msgid "name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:330 msgid "Click 'Continue' to delete the following SNMP Option Item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:331 msgid "SNMP Option:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:332 #, php-format msgid "SNMP Version: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:333 #, php-format msgid "SNMP Community/Username: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:339 msgid "Remove SNMP Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:397 #, php-format msgid "SNMP Options [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:399 msgid "SNMP Options [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:415 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1049 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1661 msgid "SNMP Version" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:416 msgid "Choose the SNMP version for this host." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:424 msgid "SNMP Community String" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:425 msgid "Fill in the SNMP read community for this device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:433 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1068 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1680 msgid "SNMP Security Level" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:434 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1069 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1681 msgid "SNMP v3 Security Level to user for querying the device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:443 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1078 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1690 msgid "SNMP Username (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:444 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1079 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1691 msgid "SNMP v3 username for this device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:452 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1087 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1699 msgid "SNMP Auth Protocol (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:453 msgid "Choose the SNMPv3 Authorization Protocol." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:461 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1096 msgid "SNMP Password (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:462 msgid "SNMP v3 password for this device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:470 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1105 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1717 msgid "SNMP Privacy Protocol (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:471 msgid "Choose the SNMPv3 Privacy Protocol." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:479 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1114 msgid "SNMP Privacy Passphrase (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:480 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1727 msgid "Choose the SNMPv3 Privacy Passphrase." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:488 msgid "SNMP Context" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:489 msgid "Enter the SNMP Context to use for this device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:497 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1132 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:566 msgid "SNMP Engine ID (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:498 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1133 msgid "" "Enter the SNMP v3 Engine Id to use for this device. Leave this field empty " "to use the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:506 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1141 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1743 msgid "SNMP Port" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:507 msgid "The UDP/TCP Port to poll the SNMP agent on." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:515 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1150 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1752 msgid "SNMP Timeout" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:516 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1151 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1753 msgid "" "The maximum number of milliseconds Cacti will wait for an SNMP response " "(does not work with php-snmp support)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:524 msgid "SNMP Retries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:525 msgid "" "The maximum number of attempts to reach a device via an SNMP readstring " "prior to giving up." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:533 msgid "Maximum OID's Per Get Request" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:534 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1160 msgid "" "Specified the number of OIDs that can be obtained in a single SNMP Get " "request." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:546 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:903 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2111 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2153 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2304 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1238 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1300 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1362 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:460 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1250 msgid "Sequence" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:547 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:461 msgid "Sequence of Item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:589 #, php-format msgid "SNMP Option Set [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:591 msgid "SNMP Option Set [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:603 msgid "Fill in the name of this SNMP Option Set." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:628 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:778 msgid "Automation SNMP Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:631 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:605 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1237 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1299 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1361 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1249 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:579 msgid "Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:632 #: /tmp/cacti_package.2719/cacti-1.1.38/include/auth.php:162 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:500 #: /tmp/cacti_package.2719/cacti-1.1.38/permission_denied.php:52 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:428 msgid "Version" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:633 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:507 msgid "Community" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:634 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3998 msgid "Port" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:635 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:582 msgid "Timeout" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:636 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:590 msgid "Retries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:637 msgid "Max OIDS" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:638 msgid "Auth Username" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:639 msgid "Auth Password" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:640 msgid "Auth Protocol" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:641 msgid "Priv Passphrase" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:642 msgid "Priv Protocol" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:643 msgid "Context" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:644 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1016 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1694 msgid "Action" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:654 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:93 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1375 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1378 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1383 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:990 #, php-format msgid "Item # %d" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:656 msgid "none" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:671 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:523 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:632 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:110 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:714 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:814 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1264 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1326 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1390 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1053 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1324 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1326 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1776 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1783 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:608 msgid "Move Down" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:677 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:529 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:638 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:116 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:719 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:819 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1270 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1332 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1396 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1058 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1326 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1328 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1780 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1784 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:614 msgid "Move Up" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:691 msgid "No SNMP Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:727 msgid "Delete SNMP Option Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:793 msgid "SNMP Rules" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:885 msgid "SNMP Option Sets" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:894 msgid "SNMP Option Set" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:895 msgid "Networks Using" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:896 msgid "SNMP Entries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:897 msgid "V1 Entries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:898 msgid "V2 Entries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:899 msgid "V3 Entries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_snmp.php:919 msgid "No SNMP Option Sets Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:161 msgid "Click 'Continue' to delete the folling Automation Template(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:166 msgid "Delete Automation Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:169 msgid "You must select at least one Automation Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:272 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1110 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1020 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1540 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:386 msgid "Device Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:273 msgid "Select a Device Template that Devices will be matched to." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:280 msgid "Choose the Availability Method to use for Discovered Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:287 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:492 msgid "System Description Match" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:288 msgid "" "This is a unique string that will be matched to a devices sysDescr string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:294 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:493 msgid "System Name Match" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:295 msgid "" "This is a unique string that will be matched to a devices sysName string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:301 msgid "System OID Match" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:302 msgid "" "This is a unique string that will be matched to a devices sysOid string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:327 #, php-format msgid "Automation Templates [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:329 msgid "Automation Templates for [Deleted Template]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:332 msgid "Automation Templates [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:383 msgid "Device Automation Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:490 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1442 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1838 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1374 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1109 msgid "Template Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:494 msgid "System ObjectId Match" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:498 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:683 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:781 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:381 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1758 msgid "Order" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:508 msgid "Unknown Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_templates.php:543 msgid "No Automation Device Templates Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:253 msgid "Click 'Continue' to delete the following Rule(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:260 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Rules." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:379 msgid "Created Trees" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:471 #, php-format msgid "Are you sure you want to DELETE the Rule '%s'?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:529 msgid "Eligible Objects" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:542 #, php-format msgid "Tree Rule Selection [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:544 msgid "Tree Rules Selection [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:595 msgid "Object Selection Criteria" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:601 msgid "Tree Creation Criteria" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:706 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:731 #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:831 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:822 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2767 msgid "Tree Rules" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:842 msgid "Hook into Tree" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:843 msgid "At Subtree" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:844 msgid "This Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:845 msgid "Using Grouping" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:854 msgid "ROOT" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/automation_tree_rules.php:870 msgid "No Tree Rules Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:277 msgid "Click 'Continue' to delete the following CDEF." msgid_plural "Click 'Continue' to delete all following CDEFs." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:282 msgid "Delete CDEF" msgid_plural "Delete CDEFs" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:286 msgid "" "Click 'Continue' to duplicate the following CDEF. You can optionally change " "the title format for the new CDEF." msgid_plural "" "Click 'Continue' to duplicate the following CDEFs. You can optionally change " "the title format for the new CDEFs." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:288 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:238 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:286 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:369 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:323 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:267 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:276 msgid "Title Format:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:293 msgid "Duplicate CDEF" msgid_plural "Duplicate CDEFs" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:296 msgid "You must select at least one CDEF." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:338 msgid "Click 'Continue' to delete the following CDEF Item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:339 #, php-format msgid "CDEF Name: '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:346 msgid "Remove CDEF Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:431 msgid "CDEF Preview" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:442 #, php-format msgid "CDEF Items [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:455 msgid "CDEF Item Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:456 msgid "Choose what type of CDEF item this is." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:462 msgid "CDEF Item Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:463 msgid "Enter a value for this CDEF item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:579 #, php-format msgid "CDEF [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:581 msgid "CDEF [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:602 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2137 msgid "CDEF Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:606 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:580 msgid "Item Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:623 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:599 #, php-format msgid "Item #%d" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:683 msgid "Delete CDEF Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:741 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:756 #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:872 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:827 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2119 msgid "CDEFs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:881 msgid "CDEF Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:881 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:962 msgid "The name of this CDEF." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:882 msgid "" "CDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:883 msgid "The number of Graphs using this CDEF." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:884 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:704 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:767 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1263 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:969 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:396 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:874 msgid "Templates Using" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:884 msgid "The number of Graphs Templates using this CDEF." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/cdef.php:906 msgid "No CDEFs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/clog.php:33 #: /tmp/cacti_package.2719/cacti-1.1.38/clog_user.php:32 msgid "FATAL: YOU DO NO HAVE ACCESS TO THIS AREA OF CACTI" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:170 msgid "Unnamed Color" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:187 msgid "Click 'Continue' to delete the following Color" msgid_plural "Click 'Continue' to delete the following Colors" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:192 msgid "Delete Color" msgid_plural "Delete Colors" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:195 msgid "You must select at least one Color." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:351 msgid "Cacti has imported the following items:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:365 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:569 msgid "Import Colors" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:368 msgid "Import Colors from Local File" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:369 msgid "" "Please specify the location of the CSV file containing your Color " "information." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:373 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:471 msgid "Select a File" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:380 msgid "Overwrite Existing Data?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:381 msgid "" "Should the import process be allowed to overwrite existing data? Please " "note, this does not mean delete old rows, only update duplicate rows." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:384 msgid "Allow Existing Rows to be Updated?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:389 msgid "Required File Format Notes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:392 msgid "The file must contain a header row with the following column headings." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:394 msgid "name - The Color Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:395 msgid "hex - The Hex Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:416 #, php-format msgid "Colors [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:418 msgid "Colors [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:520 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:535 #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:689 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:829 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2185 msgid "Colors" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:552 msgid "Named Colors" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:569 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1167 msgid "Import" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:570 msgid "Export Colors" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:698 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:74 msgid "Hex" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:698 msgid "The Hex Value for this Color." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:699 msgid "Color Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:699 msgid "The name of this Color definition." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:700 msgid "Is this color a named color which are read only." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:700 msgid "Named Color" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:701 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:73 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:815 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:799 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2052 msgid "Color" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:701 msgid "The Color as shown on the screen." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:702 msgid "" "Colors in use cannot be Deleted. In use is defined as being referenced " "either by a Graph or a Graph Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:703 msgid "The number of Graph using this Color." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:704 msgid "The number of Graph Templates using this Color." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color.php:734 msgid "No Colors Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:72 msgid "Color Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:132 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates_inputs.php:227 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1435 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1072 msgid "No Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:227 msgid "Click 'Continue' to delete the following Color Template" msgid_plural "Click 'Continue' to delete following Color Templates" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:232 msgid "Delete Color Template" msgid_plural "Delete Color Templates" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:236 msgid "" "Click 'Continue' to duplicate the following Color Template. You can " "optionally change the title format for the new color template." msgid_plural "" "Click 'Continue' to duplicate following Color Templates. You can optionally " "change the title format for the new color templates." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:242 msgid "Duplicate Color Template" msgid_plural "Duplicate Color Templates" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:245 msgid "You must select at least one Color Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:278 msgid "Color Template Items [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:289 #, php-format msgid "Color Template Items [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:323 msgid "Delete Color Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:353 #, php-format msgid "Color Template [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:355 msgid "Color Template [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:436 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:449 #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:541 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2665 msgid "Color Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:551 msgid "" "Color Templates that are in use cannot be Deleted. In use is defined as " "being referenced by an Aggregate Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates.php:576 msgid "No Color Templates Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates_items.php:257 msgid "Click 'Continue' to delete the following Color Template Color." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates_items.php:258 msgid "Color Name:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates_items.php:259 msgid "Color Hex:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates_items.php:265 msgid "Remove Color Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates_items.php:321 #, php-format msgid "Color Template Items [edit Report Item: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/color_templates_items.php:324 #, php-format msgid "Color Template Items [new Report Item: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:212 msgid "Click 'Continue' to delete the following Data Input Method" msgid_plural "Click 'Continue' to delete the following Data Input Method" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:218 msgid "Delete Data Input Method" msgid_plural "Delete Data Input Methods" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:220 msgid "You must select at least one data input method." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:262 msgid "Click 'Continue' to delete the following Data Input Field." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:263 #, php-format msgid "Field Name: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:264 #, php-format msgid "Friendly Name: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:270 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:335 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:391 msgid "Remove Data Input Field" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:368 msgid "" "This script appears to have no input values, therefore there is nothing to " "add." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:374 #, php-format msgid "Output Fields [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:375 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:474 msgid "Output Field" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:377 #, php-format msgid "Input Fields [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:378 msgid "Input Field" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:457 #, php-format msgid "Data Input Methods [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:461 msgid "Data Input Methods [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:471 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:392 msgid "SNMP Get" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:474 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:393 msgid "SNMP Query" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:477 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:395 msgid "Script Query" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:480 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:397 msgid "Script Query - Script Server" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:495 msgid "Input Fields" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:499 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:538 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:279 msgid "Friendly Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:500 msgid "Field Order" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:522 msgid "(Not In Use)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:531 msgid "No Input Fields" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:535 msgid "Output Fields" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:539 msgid "Update RRA" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:570 msgid "No Output Fields" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:593 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:593 msgid "Delete Data Input Field" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:651 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:808 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:978 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2323 msgid "Data Input Methods" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:666 #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:755 msgid "Input Methods" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:764 msgid "Data Input Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:764 msgid "The name of this Data Input Method." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:765 msgid "" "Data Inputs that are in use cannot be Deleted. In use is defined as being " "referenced either by a Data Source or a Data Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:766 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:968 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:949 msgid "Data Sources Using" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:766 msgid "The number of Data Sources that use this Data Input Method." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:767 msgid "The number of Data Templates that use this Data Input Method." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:768 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1264 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1102 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:398 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1298 msgid "Data Input Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:768 msgid "The method used to gather information for this Data Input Method." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_input.php:791 msgid "No Data Input Methods Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:346 msgid "Click 'Continue' to delete the following Data Query." msgid_plural "Click 'Continue' to delete following Data Queries." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:352 msgid "Delete Data Query" msgid_plural "Delete Data Query" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:354 msgid "You must select at least one data query." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:500 msgid "Click 'Continue' to delete the following Data Query Graph Association." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:501 #, php-format msgid "Graph Name: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:507 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:333 msgid "Remove VDEF Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:565 #, php-format msgid "Associated Graph/Data Templates [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:589 msgid "Associated Data Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:607 #, php-format msgid "Data Template - %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:637 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:896 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:547 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:439 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:813 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:784 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1299 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:950 msgid "Data Source" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:672 msgid "Suggested Values - Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:684 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:782 msgid "Equation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:737 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:838 msgid "No Suggested Values Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:746 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:847 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2087 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2129 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1363 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1504 msgid "Field Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:752 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:853 msgid "Suggested Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:758 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:859 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:810 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:927 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:507 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:561 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:62 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_filter.php:55 msgid "Add" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:758 msgid "Add Graph Title Suggested Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:768 msgid "Suggested Values - Data Sources" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:859 msgid "Add Data Source Name Suggested Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:976 #, php-format msgid "Data Queries [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:978 msgid "Data Queries [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:998 msgid "Successfully located XML file" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1001 msgid "Could not locate XML file." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1009 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:722 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:458 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2377 msgid "Associated Graph Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1013 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:764 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:643 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:726 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:571 msgid "Graph Template Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1015 msgid "Mapping ID" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1056 msgid "Mapped Graph Templates with Graphs are read only" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1063 msgid "No Graph Templates Defined." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1088 msgid "Delete Associated Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1145 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1160 #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1250 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:807 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:979 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1058 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2359 msgid "Data Queries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1259 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:824 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1504 msgid "Data Query Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1259 msgid "The name of this Data Query." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1260 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:765 msgid "" "The internal ID for this Graph Template. Useful when performing automation " "or debugging." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1261 msgid "" "Data Queries that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1262 msgid "The number of Graphs using this Data Query." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1263 msgid "The number of Graphs Templates using this Data Query." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1264 msgid "" "The Data Input Method used to collect data for Data Sources associated with " "this Data Query." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_queries.php:1288 msgid "No Data Queries Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:275 msgid "Click 'Continue' to delete the following Data Source Profile" msgid_plural "Click 'Continue' to delete following Data Source Profiles" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:280 msgid "Delete Data Source Profile" msgid_plural "Delete Data Source Profiles" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:284 msgid "" "Click 'Continue' to duplicate the following Data Source Profile. You can " "optionally change the title format for the new Data Source Profile" msgid_plural "" "Click 'Continue' to duplicate following Data Source Profiles. You can " "optionally change the title format for the new Data Source Profiles." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:290 msgid "Duplicate Data Source Profile" msgid_plural "Duplicate Date Source Profiles" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:293 msgid "You must select at least one Data Source Profile." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:335 msgid "Click 'Continue' to delete the following Data Source Profile RRA." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:336 #, php-format msgid "Profile Name: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:342 msgid "Remove Data Source Profile RRA" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:403 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:422 msgid "Each Insert is New Row" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:441 msgid "(Some Elements Read Only)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:441 #, php-format msgid "RRA [edit: %s %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:536 #, php-format msgid "Data Source Profile [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:538 msgid "Data Source Profile [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:556 msgid "Data Source Profile RRAs (press save to update timespans)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:558 msgid "Data Source Profile RRAs (Read Only)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:563 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:134 msgid "Data Retention" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:564 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:801 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:426 msgid "Graph Timespan" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:565 msgid "Steps" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:566 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:582 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:118 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:391 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_filter.php:73 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2741 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:481 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1416 msgid "Rows" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:619 msgid "Select Consolidation Function(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:646 msgid "Delete Data Source Profile Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:711 #, php-format msgid "%s KBytes per Data Sources and %s Bytes for the Header" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:720 #, php-format msgid "%s KBytes per Data Source" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:734 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:648 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1213 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1114 #, php-format msgid "%d Years" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:734 msgid "1 Year" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:743 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:642 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1207 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:489 #, php-format msgid "%d Month" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:743 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:643 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:644 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:645 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:646 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1208 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1209 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1210 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1211 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:490 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:491 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:492 #, php-format msgid "%d Months" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:752 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:639 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1205 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:485 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:486 #, php-format msgid "%d Week" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:752 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:640 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:641 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1206 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:487 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:488 #, php-format msgid "%d Weeks" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:761 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:626 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:636 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1201 #, php-format msgid "%d Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:761 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:627 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:637 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:638 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1202 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1203 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1204 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1109 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1110 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1111 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1112 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1123 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1124 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1125 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1126 #, php-format msgid "%d Days" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:769 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:583 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1243 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1264 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1297 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1306 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1332 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1180 msgid "1 Hour" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:823 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:986 msgid "Data Source Profiles" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:838 #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:953 msgid "Profiles" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:855 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:832 msgid "Has Data Sources" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:962 msgid "Data Source Profile Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:963 msgid "Is this the default Profile for all new Data Templates?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:964 msgid "" "Profiles that are in use cannot be Deleted. In use is defined as being " "referenced by a Data Source or a Data Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:965 msgid "Profiles that are in use by Data Sources become read only for now." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:965 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:194 msgid "Read Only" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:966 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1439 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:923 msgid "Poller Interval" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:966 msgid "The Polling Frequency for the Profile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:967 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:52 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:466 msgid "Heartbeat" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:967 msgid "" "The Amount of Time, in seconds, without good data before Data is stored as " "Unknown" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:968 msgid "The number of Data Sources using this Profile." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:969 msgid "The number of Data Templates using this Profile." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_source_profiles.php:1013 msgid "No Data Source Profiles Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:36 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:489 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:54 msgid "Change Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:37 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:55 msgid "Reapply Suggested Names" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:457 msgid "Click 'Continue' to delete the following Data Source" msgid_plural "Click 'Continue' to delete following Data Sources" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:461 msgid "The following graph is using these data sources:" msgid_plural "The following graphs are using these data sources:" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:470 msgid "Leave the Graph untouched." msgid_plural "Leave all Graphs untouched." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:471 msgid "" "Delete all Graph Items that reference this Data Source." msgid_plural "" "Delete all Graph Items that reference these Data Sources." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:472 msgid "Delete all Graphs that reference this Data Source." msgid_plural "" "Delete all Graphs that reference these Data Sources." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:479 msgid "Delete Data Source" msgid_plural "Delete Data Sources" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:483 msgid "Choose a new Device for this Data Source and click 'Continue'." msgid_plural "Choose a new Device for these Data Sources and click 'Continue'" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:485 msgid "New Device:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:493 msgid "Click 'Continue' to enable the following Data Source." msgid_plural "Click 'Continue' to enable all following Data Sources." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:498 msgid "Enable Data Source" msgid_plural "Enable Data Sources" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:502 msgid "Click 'Continue' to disable the following Data Source." msgid_plural "Click 'Continue' to disable all following Data Sources." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:507 msgid "Disable Data Source" msgid_plural "Disable Data Sources" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:511 msgid "" "Click 'Continue' to re-apply the suggested name to the following Data Source." msgid_plural "" "Click 'Continue' to re-apply the suggested names to all following Data " "Sources." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:516 msgid "Reapply Suggested Naming to Data Source" msgid_plural "Reapply Suggested Naming to Data Sources" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:525 msgid "You must select at least one data source." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:583 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:667 #, php-format msgid "Custom Data [data input: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:616 #, php-format msgid "(From Device: %s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:619 msgid "(From Data Template)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:620 msgid "Nothing Entered" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:635 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:723 msgid "No Input Fields for the Selected Data Input Source" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:716 #, php-format msgid "Data Template Selection [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:722 msgid "Data Template Selection [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:755 msgid "Turn Off Data Source Debug Mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:755 msgid "Turn On Data Source Debug Mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:756 msgid "Turn Off Data Source Info Mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:756 msgid "Turn On Data Source Info Mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:759 msgid "Edit Data Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:762 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1333 msgid "Edit Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:825 msgid "Selected Data Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:826 #, php-format msgid "" "The name given to this data template. Please note that you may only change " "Graph Templates to a 100% compatible Graph Template, which means that it " "includes identical Data Sources." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:834 msgid "Choose the Device that this Data Source belongs to." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:884 msgid "Supplemental Data Template Data" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:886 msgid "Data Source Fields" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:887 msgid "Data Source Item Fields" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:888 msgid "Custom Data" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:957 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1099 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1949 #, php-format msgid "[edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:986 #, php-format msgid "Data Source Item %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:989 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:620 msgid "New" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1048 msgid "Data Source Debug" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1068 msgid "RRDtool Tune Info" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1094 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:970 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:410 msgid "External" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1098 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:578 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:961 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1291 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1325 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1341 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1174 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1891 msgid "1 Minute" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1228 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:311 #, php-format msgid "Data Sources [%s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1228 msgid "No Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1267 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1293 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1309 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:803 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:817 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:542 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:436 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:379 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:347 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:861 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:337 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:334 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:353 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:379 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:648 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1088 msgid "All" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1289 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:799 msgid "Profile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1305 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1311 msgid "Orphaned" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1315 #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1428 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1589 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:802 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:282 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2269 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1230 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:966 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:286 msgid "Data Sources" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1437 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1791 msgid "Data Source Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1437 msgid "" "The name of this Data Source. Generally programtically generated from the " "Data Template definition." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1438 msgid "" "The internal database ID for this Data Source. Useful when performing " "automation or debugging." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1439 msgid "The frequency that data is collected for this Data Source." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1440 msgid "If this Data Source is no long in use by Graphs, it can be Deleted." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1441 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:971 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:37 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:338 msgid "Active" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1441 msgid "" "Whether or not data will be collected for this Data Source. Controlled at " "the Data Template level." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1442 msgid "The Data Template that this Data Source was based upon." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_sources.php:1489 msgid "No Data Sources Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:35 msgid "Change Profile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:358 msgid "" "Click 'Continue' to delete the following Data Template(s). Any data sources " "attached to these templates will become individual Data Source(s) and all " "Templating benefits will be removed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:363 msgid "Delete Data Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:367 msgid "" "Click 'Continue' to duplicate the following Data Template(s). You can " "optionally change the title format for the new Data Template(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:369 msgid "template_title" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:373 msgid "Duplicate Data Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:377 msgid "" "Click 'Continue' to change the default Data Source Profile for the following " "Data Template(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:379 msgid "New Data Source Profile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:385 msgid "" "NOTE: This change only will affect future Data Sources and does not alter " "existing Data Sources." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:389 msgid "Change Data Source Profile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:392 msgid "You must select at least one data template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:504 #, php-format msgid "Data Templates [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:523 msgid "Edit Data Input Method." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:532 msgid "Data Templates [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:564 msgid "This field is always templated." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:568 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:639 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:711 msgid "" "Check this checkbox if you wish to allow the user to override the value on " "the right during Data Source creation." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:620 #, php-format msgid "Data Source Item [%s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:704 msgid "Value will be derived from the device if this field is left empty." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:784 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:815 #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:937 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:990 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2251 msgid "Data Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:946 msgid "Data Template Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:946 msgid "The name of this Data Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:947 msgid "" "The internal database ID for this Data Template. Useful when performing " "automation or debugging." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:948 msgid "" "Data Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Data Source." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:949 msgid "The number of Data Sources using this Data Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:950 msgid "Input Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:950 msgid "The method that is used to place Data into the Data Source RRDfile." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:951 msgid "Profile Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:951 msgid "The default Data Source Profile for this Data Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:952 msgid "" "Data Sources based on Inactive Data Templates will not be updated when the " "poller runs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/data_templates.php:976 msgid "No Data Templates Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:148 msgid "Click 'Continue' to delete the folling GPRINT Preset(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:153 msgid "Delete GPRINT Preset(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:156 msgid "You must select at least one GPRINT Preset." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:185 #, php-format msgid "GPRINT Presets [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:187 msgid "GPRINT Presets [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:253 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2101 msgid "GPRINT Presets" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:268 #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:383 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:830 msgid "GPRINTs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:392 msgid "GPRINT Preset Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:392 msgid "The name of this GPRINT Preset." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:393 msgid "Format" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:393 msgid "The GPRINT format string." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:394 msgid "" "GPRINTs that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:395 msgid "The number of Graphs using this GPRINT." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:396 msgid "The number of Graphs Templates using this GPRINT." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/gprint_presets.php:420 msgid "No GPRINT Presets" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:95 msgid "Viewing Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:130 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:354 msgid "Graph Details, Zooming and Debugging Utilities" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:131 msgid "CSV Export" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:132 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:360 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:362 msgid "Click to view just this Graph in Real-time" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:222 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:105 msgid "Utility View" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:324 msgid "Graph Utility View" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:337 msgid "Graph Source/Properties" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:341 msgid "Graph Data" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph.php:524 msgid "RRDtool Graph Syntax" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_realtime.php:194 msgid "Real-time has been disabled by your administrator." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_realtime.php:201 msgid "" "The Image Cache Directory does not exist. Please first create it and set " "permissions and then attempt to open another Real-time graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_realtime.php:208 msgid "" "The Image Cache Directory is not writable. Please set permissions and then " "attempt to open another Real-time graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_realtime.php:219 msgid "Cacti Real-time Graphing" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_realtime.php:228 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:310 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:791 msgid "Window" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_realtime.php:258 #, php-format msgid "%d seconds left." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_realtime.php:285 msgid "seconds left." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:35 msgid "Resize" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:36 msgid "Sync Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:312 msgid "" "Click 'Continue' to delete the following Graph Template(s). Any Graph(s) " "associated with the Template(s) will become individual Graph(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:317 msgid "Delete Graph Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:321 msgid "" "Click 'Continue' to duplicate the following Graph Template(s). You can " "optionally change the title format for the new Graph Template(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:327 msgid "Duplicate Graph Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:331 msgid "" "Click 'Continue' to resize the following Graph Template(s) and Graph(s) to " "the Height and Width below. The defaults below are maintained in Settings." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:340 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:117 msgid "Graph Height" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:342 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:109 msgid "Graph Width" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:347 msgid "Resize Selected Graph Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:351 msgid "" "Click 'Continue' to Synchronize your Graphs with the following Graph " "Template(s). This function is important if you have Graphs that exist with " "multiple versions of a Graph Template and wish to make them all common in " "appearance." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:356 msgid "Synchronize Graphs to Graph Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:359 msgid "ERROR: You must select at least one graph template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:413 #, php-format msgid "Graph Template Items [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:420 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2221 msgid "Graph Item Inputs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:446 msgid "No Inputs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:491 #, php-format msgid "Template [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:493 msgid "Template [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:509 msgid "Graph Template Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:525 msgid "" "Check this checkbox if you wish to allow the user to override the value on " "the right during Graph creation." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:620 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:635 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:755 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:638 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:989 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2197 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1366 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1101 msgid "Graph Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:764 msgid "The name of this Graph Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:766 msgid "" "Graph Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:767 msgid "The number of Graphs using this Graph Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:768 msgid "The default size of the resulting Graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:769 msgid "Image Format" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:769 msgid "The default image format for the resulting Graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:770 msgid "The vertical label for the resulting Graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:770 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:121 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:154 msgid "Vertical Label" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates.php:796 msgid "No Graph Templates Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates_inputs.php:145 #, php-format msgid "Graph Item Inputs [edit graph: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates_inputs.php:191 msgid "Associated Graph Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates_items.php:99 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates_items.php:125 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:140 msgid "Cur:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates_items.php:106 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates_items.php:132 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:147 msgid "Avg:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates_items.php:113 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates_items.php:146 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:161 msgid "Max:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates_items.php:139 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:154 msgid "Min:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_templates_items.php:405 #, php-format msgid "Graph Template Items [edit graph: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:253 msgid "YOU DO NOT HAVE RIGHTS FOR TREE VIEW" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:335 msgid "YOU DO NOT HAVE RIGHTS FOR PREVIEW VIEW" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:343 msgid "Graph Preview Filters" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:343 msgid "[ Custom Graph List Applied - Filtering from List ]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:442 msgid "YOU DO NOT HAVE RIGHTS FOR LIST VIEW" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:536 msgid "Graph List View Filters" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:536 msgid "[ Custom Graph List Applied - Filter FROM List ]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:555 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:806 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:811 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:157 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:368 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:373 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:646 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:850 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:855 msgid "All Graphs & Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:603 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:680 msgid "View" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:603 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:680 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:969 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:657 msgid "View Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:645 msgid "Graph Size" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:659 msgid "Aggregated Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:662 msgid "Non-Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:663 msgid "Not Applicable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:754 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1960 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2021 msgid "Preview Mode" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_view.php:808 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:370 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:852 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:370 msgid "Templates Selected" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:120 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:153 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1793 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2040 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1572 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:378 msgid "Title" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:123 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:155 msgid "Start Date" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:124 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:156 msgid "End Date" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:125 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:157 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:415 msgid "Step" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:126 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:158 msgid "Total Rows" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:127 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:159 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:570 msgid "Graph ID" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:128 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:160 msgid "Host ID" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:132 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:170 msgid "Nth Percentile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:138 #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:180 msgid "Summation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:144 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:244 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:775 msgid "Date" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:152 msgid "Download" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graph_xport.php:152 msgid "Summary Details" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:49 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:874 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2071 msgid "Change Graph Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:56 msgid "Create Aggregate Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:57 msgid "Create Aggregate from Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:58 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1125 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:43 msgid "Apply Automation Rules" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:64 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:896 msgid "Convert to Graph Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:176 #, php-format msgid "Created graph: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:184 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:253 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:269 msgid "ERROR: no Data Source associated. Check Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:835 msgid "" "Click 'Continue' to delete the following Graph(s). Note that if you choose " "to Delete Data Sources, only those Data Sources not in use elsewhere will " "also be Deleted." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:839 msgid "The following Data Source(s) are in use by these Graph(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:848 msgid "" "Delete all Data Source(s) referenced by these Graph(s) that are not in use " "elsewhere." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:850 msgid "Leave the Data Source(s) untouched." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:862 msgid "" "Choose a Graph Template and click 'Continue' to change the Graph Template " "for the following Graph(s). Please note, that only compatible Graph " "Templates will be displayed. Compatible is identified by those having " "identical Data Sources." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:864 msgid "New Graph Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:878 msgid "" "Click 'Continue' to duplicate the following Graph(s). You can optionally " "change the title format for the new Graph(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:881 msgid " (1)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:885 msgid "Duplicate Graph(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:889 msgid "" "Click 'Continue' to convert the following Graph(s) into Graph Template(s). " "You can optionally change the title format for the new Graph Template(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:892 msgid " Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:900 msgid "" "Click 'Continue' to place the following Graph(s) under the Tree Branch " "selected below." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:902 msgid "Destination Branch" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:915 msgid "Choose a new Device for these Graph(s) and click 'Continue'." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:917 msgid "New Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:925 msgid "Change Graph(s) Associated Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:929 msgid "" "Click 'Continue' to re-apply suggested naming to the following Graph(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:934 msgid "Reapply Suggested Naming to Graph(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:950 msgid "" "Click 'Continue' to create an Aggregate Graph from the selected Graph(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:959 msgid "The following data sources are in use by these graphs:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:992 msgid "Please confirm" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1060 msgid "Resize Selected Graph(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1082 msgid "" "Select the Aggregate Template to use and press 'Continue' to create your " "Aggregate Graph. Otherwise press 'Cancel' to return." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1103 msgid "Create Aggregate" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1107 msgid "" "There are presently no Aggregate Templates defined for this Graph Template. " "Please either first create an Aggregate Template for the selected Graphs " "Graph Template and try again, or simply crease an un-templated Aggregate " "Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1108 msgid "Press 'Return' to return and select different Graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1120 msgid "Click 'Continue' to apply Automation Rules to the following Graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1136 msgid "You must select at least one Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1284 #, php-format msgid "Graph [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1290 msgid "Graph [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1315 msgid "Turn Off Graph Debug Mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1317 msgid "Turn On Graph Debug Mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1330 msgid "Edit Graph Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1336 msgid "Unlock Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1338 msgid "Lock Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1362 msgid "Selected Graph Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1363 #, php-format msgid "" "Choose a Graph Template to apply to this Graph. Please note that you may " "only change Graph Templates to a 100% compatible Graph Template, which means " "that it includes identical Data Sources." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1371 msgid "Choose the Device that this Graph belongs to." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1411 msgid "Supplemental Graph Template Data" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1413 msgid "Graph Fields" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1414 msgid "Graph Item Fields" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1693 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2059 msgid "Graph Management" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1836 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1861 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:416 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:816 msgid "Graph Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1836 msgid "" "The Title of this Graph. Generally programatically generated from the Graph " "Template definition or Suggested Naming rules. The max length of the Title " "is controlled under Settings->Visual." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1837 msgid "" "The internal database ID for this Graph. Useful when performing automation " "or debugging." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1838 msgid "The Graph Template that this Graph was based upon." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs.php:1839 msgid "The size of this Graph when not in Preview mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:309 msgid "Data Sources [No Device]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:326 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1101 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1550 msgid "Data Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:399 #, php-format msgid "Graph Items [graph: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_items.php:440 msgid "Choose the Data Source to associate with this Graph Item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:79 msgid "Default Settings Saved" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:245 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:261 #, php-format msgid "Created: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:302 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:328 #, php-format msgid "Create Graph from %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:326 #, php-format msgid "Create %s Graphs from %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:363 #, php-format msgid "Graph [Template: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:365 #, php-format msgid "Graph Items [Template: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:370 #, php-format msgid "Data Source [Template: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:380 #, php-format msgid "Custom Data [Template: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:465 #, php-format msgid "New Graphs for [ %s ]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:468 msgid "New Graphs for [ All Devices ]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:473 msgid "New Graphs for None Host Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:503 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:103 msgid "Filter Settings Saved" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:538 msgid "Graph Types" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:543 msgid "Graph Template Based" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:567 msgid "Save Filters" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:600 msgid "Edit this Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:601 msgid "Create New Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:644 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:938 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:829 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1583 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1316 msgid "Select All" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:644 #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:938 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:742 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:829 msgid "Select All Rows" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:731 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:794 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:865 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1152 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1165 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1191 msgid "Create" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:733 msgid "(Select a graph type to create)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:817 #, php-format msgid "Data Query [%s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:934 msgid "From there you can get more information." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:934 msgid "" "This Data Query returned 0 rows, perhaps there was a problem executing this " "Data Query." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:934 msgid "You can run this Data Query in debug mode" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:977 msgid "Search Returned no Rows." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:982 msgid "Error in data query." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:1006 msgid "Select a Graph Type to Create" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:1009 msgid "Make selection default" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/graphs_new.php:1009 msgid "Set Default" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:41 msgid "Change Device Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:42 msgid "Clear Statistics" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:44 msgid "Sync to Device Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:382 msgid "Click 'Continue' to enable the following Device(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:387 msgid "Enable Device(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:391 msgid "Click 'Continue' to disable the following Device(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:396 msgid "Disable Device(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:400 msgid "" "Click 'Continue' to change the Device options below for multiple Device(s). " "Please check the box next to the fields you want to update, and then fill in " "the new value." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:427 msgid "Update this Field" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:444 msgid "Change Device(s) SNMP Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:448 msgid "Click 'Continue' to clear the counters for the following Device(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:453 msgid "Clear Statistics on Device(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:457 msgid "" "Click 'Continue' to Synchronize the following Device(s) to their Device " "Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:462 msgid "Synchronize Device(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:466 msgid "Click 'Continue' to delete the following Device(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:469 msgid "" "Leave all Graph(s) and Data Source(s) untouched. Data Source(s) will be " "disabled however." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:470 msgid "Delete all associated Graph(s) and Data Source(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:476 msgid "Delete Device(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:480 msgid "" "Click 'Continue' to place the following Device(s) under the branch selected " "below." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:490 msgid "Place Device(s) on Tree" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:494 msgid "Click 'Continue' to apply Automation Rules to the following Devices(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:499 msgid "Run Automation on Device(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:510 msgid "You must select at least one device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:636 msgid "Device [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:642 #, php-format msgid "Device [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:644 msgid "Disable Device Debug" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:646 msgid "Enable Device Debug" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:659 msgid "Create Graphs for this Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:661 msgid "Data Source List" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:662 msgid "Graph List" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:668 msgid "Contacting Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:701 msgid "Data Query Debug Information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:705 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3277 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1333 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1407 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1494 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:29 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:31 msgid "Copy" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:706 #: /tmp/cacti_package.2719/cacti-1.1.38/templates_import.php:141 msgid "Hide" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:785 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1311 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1385 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1472 msgid "Edit" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:785 msgid "Is Being Graphed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:785 msgid "Not Being Graphed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:788 msgid "Delete Graph Template Association" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:795 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:485 msgid "No associated graph templates." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:804 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:494 msgid "Add Graph Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:810 msgid "Add Graph Template to Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:820 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:517 msgid "Associated Data Queries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:825 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:921 msgid "Re-Index Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:827 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1243 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1305 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1368 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2077 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2143 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2209 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2245 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2263 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2281 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2299 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2329 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2365 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2395 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2485 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2677 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2701 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2719 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2737 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2755 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2779 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1256 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:376 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:422 msgid "Actions" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:888 #, php-format msgid " [%d Items, %d Rows]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:888 msgid "Fail" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:888 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4012 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4017 msgid "Success" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:891 msgid "Reload Query" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:892 msgid "Verbose Query" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:893 msgid "Remove Query" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:899 msgid "No Associated Data Queries." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:915 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:551 msgid "Add Data Query" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:927 msgid "Add Data Query to Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1093 #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1106 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:548 msgid "Ping" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1104 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:543 msgid "Ping and SNMP Uptime" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1105 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:545 msgid "SNMP Uptime" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1107 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:544 msgid "Ping or SNMP Uptime" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1108 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:546 msgid "SNMP Desc" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1109 msgid "SNMP GetNext" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1455 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:465 msgid "Site" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1511 msgid "Export Devices" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1532 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:172 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1050 msgid "Not Up" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1535 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:175 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1053 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:855 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:41 msgid "Recovering" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1536 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:176 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1054 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:864 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:179 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:183 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:202 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2113 msgid "Unknown" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1565 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:565 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1792 msgid "Device Description" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1568 msgid "The name by which this Device will be referred to." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1571 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:995 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1632 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:277 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:566 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:840 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1169 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:219 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:82 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:614 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1230 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:966 msgid "Hostname" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1574 msgid "" "Either an IP address, or hostname. If a hostname, it must be resolvable by " "either DNS, or from your hosts file." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1580 msgid "" "The internal database ID for this Device. Useful when performing automation " "or debugging." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1586 msgid "The total number of Graphs generated from this Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1592 msgid "The total number of Data Sources generated from this Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1598 msgid "" "The monitoring status of the Device based upon ping results. If this Device " "is a special type Device, by using the hostname \"localhost\", or due to the " "setting to not perform an Availability Check, it will always remain Up. " "When using cmd.php data collector, a Device with no Graphs, is not pinged by " "the data collector and will remain in an \"Unknown\" state." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1601 msgid "In State" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1604 msgid "The amount of time that this Device has been in its current state." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1610 msgid "The current amount of time that the host has been up." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1613 msgid "Poll Time" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1616 msgid "The amount of time it takes to collect data from this Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1619 msgid "Current (ms)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1622 msgid "The current ping time in milliseconds to reach the Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1625 msgid "Average (ms)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1628 msgid "" "The average ping time in milliseconds to reach the Device since the counters " "were cleared for this Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1631 msgid "Availability" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host.php:1634 msgid "" "The availability percentage based upon ping results since the counters were " "cleared for this Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:32 msgid "Sync Devices" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:256 msgid "Click 'Continue' to delete the following Device Template(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:261 msgid "Delete Device Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:265 msgid "" "Click 'Continue' to duplicate the following Device Template(s). Optionally " "change the title for the new Device Template(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:275 msgid "Duplicate Device Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:279 msgid "" "Click 'Continue' to Synchronize Devices associated with the selected Device " "Template(s). Note that this action may take some time depending on the " "number of Devices mapped to the Device Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:286 msgid "Sync Devices to Device Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:289 msgid "You must select at least one host template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:328 msgid "" "Click 'Continue' to delete the following Graph Template will be " "disassociated from the Device Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:329 #, php-format msgid "Graph Template Name: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:384 msgid "" "Click 'Continue' to delete the following Data Queries will be disassociated " "from the Device Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:385 #, php-format msgid "Data Query Name: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:434 #, php-format msgid "Device Templates [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:436 msgid "Device Templates [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:453 msgid "Default Submit Button" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:507 msgid "Add Graph Template to Device Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:542 msgid "No associated data queries." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:561 msgid "Add Data Query to Device Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:687 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:702 #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:803 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:991 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2233 msgid "Device Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:719 msgid "Has Devices" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:812 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:279 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:567 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1170 msgid "Device Template Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:812 msgid "The name of this Device Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:813 msgid "" "The internal database ID for this Device Template. Useful when performing " "automation or debugging." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:814 msgid "" "Device Templates in use cannot be Deleted. In use is defined as being " "referenced by a Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:815 msgid "Devices Using" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:815 msgid "The number of Devices using this Device Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/host_templates.php:838 msgid "No Device Templates Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/auth.php:96 msgid "Not Logged In" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/auth.php:97 msgid "You must be logged in to access this area of Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/auth.php:101 msgid "FATAL: You must be logged in to access this area of Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/auth.php:139 #: /tmp/cacti_package.2719/cacti-1.1.38/include/auth.php:141 #: /tmp/cacti_package.2719/cacti-1.1.38/permission_denied.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/permission_denied.php:32 msgid "Login Again" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/auth.php:147 #: /tmp/cacti_package.2719/cacti-1.1.38/include/auth.php:154 #: /tmp/cacti_package.2719/cacti-1.1.38/permission_denied.php:38 #: /tmp/cacti_package.2719/cacti-1.1.38/permission_denied.php:45 msgid "Permission Denied" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/auth.php:156 #: /tmp/cacti_package.2719/cacti-1.1.38/permission_denied.php:47 msgid "" "If you feel that this is an error. Please contact your Cacti Administrator." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/auth.php:156 #: /tmp/cacti_package.2719/cacti-1.1.38/permission_denied.php:47 msgid "You are not permitted to access this section of Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:119 msgid "Save Successful." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:122 msgid "Save Failed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:125 msgid "Save Failed due to field input errors (Check red fields)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:128 msgid "Passwords do not match, please retype." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:131 msgid "You must select at least one field." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:134 msgid "" "You must have built in user authentication turned on to use this feature." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:137 msgid "XML parse error." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:140 msgid "" "The directory highlighted does not exist. Please enter a valid directory." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:143 msgid "The Cacti log file must have the extension '.log'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:146 msgid "Data Source does not exist." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:149 msgid "Username already in use." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:152 msgid "The SNMP v3 Privacy Passphrases do not match" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:155 msgid "The SNMP v3 Authentication Passphrases do not match" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:158 msgid "XML: Cacti version does not exist." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:161 msgid "XML: Hash version does not exist." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:164 msgid "XML: Generated with a newer version of Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:167 msgid "XML: Cannot locate type code." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:170 msgid "Username already exists." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:173 msgid "Username change not permitted for designated template or guest user." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:176 msgid "User delete not permitted for designated template or guest user." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:179 msgid "User delete not permitted for designated graph export user." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:182 msgid "" "Data Template includes deleted Data Source Profile. Please resave the Data " "Template with an existing Data Source Profile." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:185 msgid "" "Graph Template includes deleted GPrint Prefix. Please run database repair " "script to identify and/or correct." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:188 msgid "" "Graph Template includes deleted CDEFs. Please run database repair script to " "identify and/or correct." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:191 msgid "" "Graph Template includes deleted Data Input Method. Please run database " "repair script to identify." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:194 msgid "" "Data Template not found during Export. Please run database repair script to " "identify." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:197 msgid "" "Device Template not found during Export. Please run database repair script " "to identify." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:200 msgid "" "Data Query not found during Export. Please run database repair script to " "identify." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:203 msgid "" "Graph Template not found during Export. Please run database repair script " "to identify." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:206 msgid "" "Graph not found. Either it has been deleted or your database needs repair." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:209 msgid "SNMPv3 Auth Passphrases must be 8 characters or greater." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:212 msgid "" "Some Graphs not updated. Unable to change device for Data Query based Graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:215 msgid "Unable to change device for Data Query based Graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:218 msgid "" "Some settings not saved. Check messages below. Check red fields for errors." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:221 msgid "The file highlighted does not exist. Please enter a valid file name." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:224 msgid "All User Settings have been returned to their default values." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:227 msgid "" "Suggested Field Name was not entered. Please enter a field name and try " "again." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:230 msgid "" "Suggested Value was not entered. Please enter a suggested value and try " "again." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:233 msgid "Log file specified is not a Cacti log or archive file." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:236 msgid "Log file specified was Cacti archive file and was removed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:239 msgid "Cacti log purged successfully" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:242 msgid "" "If you force a password change, you must also allow the user to change their " "password." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:245 msgid "You are not allowed to change your password." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:248 msgid "LDAP/AD based password change not supported." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:251 msgid "Unable to clear log, no write permissions" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:254 msgid "Unable to clear log, file does not exist" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:257 msgid "CSRF Timeout, refreshing page." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:260 msgid "Invalid timestamp. Select timestamp in the future." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:263 msgid "Data Collector(s) synchronized for offline operation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:266 msgid "Data Collector(s) not found when attempting synchronization" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:269 msgid "Unable to establish MySQL connection with remote Data Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:272 msgid "" "Data Collector synchronization must be initiated from the main Cacti server." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:275 msgid "Report Saved" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:278 msgid "Report Save Failed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:281 msgid "Report Item Saved" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:284 msgid "Report Item Save Failed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:287 msgid "" "Poller Resource Cache cleared. Main Data Collector will rebuild at the next " "poller start, and Remote Data Collectors will sync afterwards." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:290 msgid "Unexpected error occurred" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:382 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:734 msgid "Function" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:383 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:736 msgid "Special Data Source" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:384 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:738 msgid "Custom String" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:388 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:775 msgid "Current Graph Item Data Source" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:394 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:401 msgid "Script/Command" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:396 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:402 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1701 msgid "Script Server" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:408 msgid "Index Count" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:409 msgid "Verify All" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:413 msgid "" "All Re-Indexing will be manual or managed through scripts or Device " "Automation." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:414 msgid "" "When the Devices SNMP uptime goes backward, a Re-Index will be performed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:415 msgid "When the Data Query index count changes, a Re-Index will be performed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:416 msgid "Every polling cycle, a Re-Index will be performed. Very expensive." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:420 msgid "SNMP Field Name (Dropdown)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:421 msgid "SNMP Field Value (From User)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:422 msgid "SNMP Output Type (Dropdown)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:441 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:447 msgid "Normal" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:442 msgid "Light" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:443 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:448 msgid "Mono" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:452 msgid "North" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:453 msgid "South" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:454 msgid "West" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:455 msgid "East" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:460 msgid "Left" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:461 msgid "Right" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:462 msgid "Justified" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:463 msgid "Center" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:467 msgid "Top -> Down" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:468 msgid "Bottom -> Up" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:472 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1295 msgid "Numeric" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:473 msgid "Timestamp" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:474 msgid "Duration" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:512 msgid "Not In Use" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:513 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:514 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:515 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:703 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:704 #, php-format msgid "Version %d" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:519 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:525 msgid "[None]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:520 msgid "MD5" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:521 msgid "SHA" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:526 msgid "DES" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:527 msgid "AES" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:536 msgid "Logfile Only" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:537 msgid "Logfile and Syslog/Eventlog" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:538 msgid "Syslog/Eventlog Only" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:547 msgid "SNMP getNext" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:552 msgid "ICMP Ping" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:553 msgid "TCP Ping" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:554 msgid "UDP Ping" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:558 msgid "NONE - Syslog Only if Selected" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:559 msgid "LOW - Statistics and Errors" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:560 msgid "MEDIUM - Statistics, Errors and Results" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:561 msgid "HIGH - Statistics, Errors, Results and Major I/O Events" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:562 msgid "DEBUG - Statistics, Errors, Results, I/O and Program Flow" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:563 msgid "DEVEL - Developer DEBUG Level" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:576 msgid "Selected Poller Interval" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:593 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:594 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:595 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:596 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:652 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:653 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:654 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:655 #, php-format msgid "Every %d Seconds" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:597 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:656 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:670 msgid "Every Minute" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:598 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:599 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:600 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:601 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:657 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:671 #, php-format msgid "Every %d Minutes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:602 msgid "Every Hour" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:603 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:604 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:605 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:606 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1570 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1571 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1572 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1573 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1574 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1814 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1815 #, php-format msgid "Every %d Hours" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:607 msgid "Every %1 Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:647 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1212 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1113 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:493 #, php-format msgid "%d Year" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:661 msgid "1 Thread (default)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:686 msgid "Builtin Authentication" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:687 msgid "Web Basic Authentication" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:691 msgid "LDAP Authentication" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:692 msgid "Multiple LDAP/AD Domains" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:697 msgid "Active Directory" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:709 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1411 msgid "SSL" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:710 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1411 msgid "TLS" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:714 msgid "No Searching" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:715 msgid "Anonymous Searching" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:716 msgid "Specific Searching" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:730 msgid "Enabled (strict mode)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:735 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2095 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2137 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1241 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1303 msgid "Operator" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:737 msgid "Another CDEF" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:756 msgid "Inherit Parent Sorting" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:757 msgid "Manual Ordering (No Sorting)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:758 msgid "Alphabetic Ordering" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:759 msgid "Natural Ordering" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:760 msgid "Numeric Ordering" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:764 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2676 msgid "Header" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:765 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:812 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1395 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1559 msgid "Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:771 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1461 msgid "Data Query Index" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:776 msgid "Current Graph Item Polling Interval" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:777 msgid "All Data Sources (Do not Include Duplicates)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:778 msgid "All Data Sources (Include Duplicates)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:779 msgid "All Similar Data Sources (Do not Include Duplicates)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:780 msgid "All Similar Data Sources (Do not Include Duplicates) Polling Interval" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:781 msgid "All Similar Data Sources (Include Duplicates)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:782 msgid "Current Data Source Item: Minimum Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:783 msgid "Current Data Source Item: Maximum Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:784 msgid "Graph: Lower Limit" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:785 msgid "Graph: Upper Limit" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:786 msgid "Count of All Data Sources (Do not Include Duplicates)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:787 msgid "Count of All Data Sources (Include Duplicates)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:788 msgid "Count of All Similar Data Sources (Do not Include Duplicates)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:789 msgid "Count of All Similar Data Sources (Include Duplicates)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:795 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form_template.php:569 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form_template.php:584 msgid "New Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:797 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:849 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:866 msgid "Management" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:799 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:389 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:404 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:484 msgid "Sites" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:800 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:983 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1670 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1685 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1744 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1503 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2932 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:3017 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1235 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2454 msgid "Trees" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:803 msgid "Aggregates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:805 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:852 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:867 msgid "Data Collection" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:806 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:853 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:508 msgid "Data Collectors" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:814 msgid "Aggregate" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:817 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:869 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:429 msgid "Automation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:819 msgid "Discovered Devices" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:820 msgid "Device Rules" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:825 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:870 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_filter.php:178 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:247 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:730 msgid "Presets" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:826 msgid "Data Profiles" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:828 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2479 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:675 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:689 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:862 msgid "VDEFs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:832 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:871 msgid "Import/Export" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:833 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2599 msgid "Import Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:834 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2587 #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:159 msgid "Export Templates" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:836 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:855 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:872 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/plugins.php:769 msgid "Configuration" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:837 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:856 msgid "Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:838 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2533 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2213 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2267 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:667 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2539 msgid "Users" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:839 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2563 msgid "User Groups" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:840 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2551 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:612 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:703 msgid "User Domains" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:842 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:858 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:873 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2407 msgid "Utilities" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:843 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:859 msgid "System Utilities" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:844 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:874 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:888 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:972 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:90 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:301 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:369 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:482 msgid "External Links" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:897 msgid "All Lines" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:898 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:899 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:900 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:901 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:902 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:903 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:904 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:905 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:906 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:907 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:908 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:909 #, php-format msgid "%d Lines" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:964 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1563 msgid "Never" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:968 msgid "Console Access" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:970 msgid "Realtime Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:971 msgid "Update Profile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:974 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2192 msgid "User Management" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:975 msgid "Settings and Utilities" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:976 msgid "Automation Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:981 msgid "Sites/Devices/Data Sources/Data Collectors" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:984 msgid "Remove Spikes from Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:987 msgid "Colors/GPrints/CDEFs/VDEFs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:993 msgid "Export Data" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:994 msgid "Import Data" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:996 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:737 msgid "Log Management" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:997 msgid "Log Viewing" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:999 msgid "Reports Management" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1000 msgid "Reports Creation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1098 msgid "CDEF" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1099 msgid "CDEF Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1100 msgid "GPRINT Preset" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1103 msgid "Data Input Field" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1104 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:407 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1607 msgid "Data Source Profile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1105 msgid "Data Template Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1107 msgid "Graph Template Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1108 msgid "Graph Template Input" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1111 msgid "VDEF" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1112 msgid "VDEF Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1164 msgid "Last Half Hour" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1165 msgid "Last Hour" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1166 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1167 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1168 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1169 #, php-format msgid "Last %d Hours" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1170 msgid "Last Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1171 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1172 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1173 #, php-format msgid "Last %d Days" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1174 msgid "Last Week" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1175 #, php-format msgid "Last %d Weeks" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1176 msgid "Last Month" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1177 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1178 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1179 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1180 #, php-format msgid "Last %d Months" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1181 msgid "Last Year" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1182 #, php-format msgid "Last %d Years" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1183 msgid "Day Shift" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1184 msgid "This Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1185 msgid "This Week" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1186 msgid "This Month" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1187 msgid "This Year" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1188 msgid "Previous Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1189 msgid "Previous Week" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1190 msgid "Previous Month" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1191 msgid "Previous Year" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1195 #, php-format msgid "%d Min" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1227 msgid "Month Number, Day, Year" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1228 msgid "Month Name, Day, Year" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1229 msgid "Day, Month Number, Year" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1230 msgid "Day, Month Name, Year" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1231 msgid "Year, Month Number, Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1232 msgid "Year, Month Name, Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1242 msgid "After Boost" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1252 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1253 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1254 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1255 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1256 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1311 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1312 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1313 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1314 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1315 #, php-format msgid "%d MBytes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1257 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1316 msgid "1 GByte" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1258 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1317 #, php-format msgid "%s GBytes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1259 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1260 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1318 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1319 #, php-format msgid "%d GBytes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1273 msgid "2,000 Data Source Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1274 msgid "5,000 Data Source Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1275 msgid "10,000 Data Source Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1276 msgid "15,000 Data Source Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1277 msgid "25,000 Data Source Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1278 msgid "50,000 Data Source Items (Default)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1279 msgid "100,000 Data Source Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1280 msgid "200,000 Data Source Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1281 msgid "400,000 Data Source Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1298 msgid "2 Hours" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1299 msgid "4 Hours" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1300 msgid "6 Hours" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1307 #, php-format msgid "%s Hours" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1326 #, php-format msgid "%s Minutes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1346 msgid "1 Megabyte" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1347 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1348 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1349 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1350 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1351 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1352 #, php-format msgid "%d Megabytes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1356 msgid "Send Now" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1364 msgid "Take Ownership" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1368 msgid "Inline PNG Image" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1373 msgid "Inline JPEG Image" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1374 msgid "Inline GIF Image" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1377 msgid "Attached PNG Image" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1380 msgid "Attached JPEG Image" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1381 msgid "Attached GIF Image" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1385 msgid "Inline PNG Image, LN Style" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1387 msgid "Inline JPEG Image, LN Style" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1388 msgid "Inline GIF Image, LN Style" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1393 msgid "Text" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1394 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2215 msgid "Tree" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1396 msgid "Horizontal Rule" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1400 msgid "left" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1401 msgid "center" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1402 msgid "right" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1406 msgid "Minute(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1407 msgid "Hour(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1408 msgid "Day(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1409 msgid "Week(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1410 msgid "Month(s), Day of Month" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1411 msgid "Month(s), Day of Week" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1412 msgid "Year(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1416 msgid "Keep Graph Types" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1417 msgid "Keep Type and STACK" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1418 msgid "Convert to AREA/STACK Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1419 msgid "Convert to LINE1 Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1420 msgid "Convert to LINE2 Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1421 msgid "Convert to LINE3 Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1425 msgid "No Totals" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1426 msgid "Print all Legend Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1427 msgid "Print totaling Legend Items Only" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1431 msgid "Total Similar Data Sources" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1432 msgid "Total All Data Sources" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1436 msgid "No Reordering" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1437 msgid "Data Source, Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1438 msgid "Graph, Data Source" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1445 msgid "contains" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1446 msgid "does not contain" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1447 msgid "begins with" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1448 msgid "does not begin with" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1449 msgid "ends with" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1450 msgid "does not end with" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1451 msgid "matches" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1452 msgid "does not match with" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1453 msgid "is less than" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1454 msgid "is less than or equal" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1455 msgid "is greater than" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1456 msgid "is greater than or equal" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1457 msgid "is unknown" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1458 msgid "is not unknown" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1459 msgid "is empty" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1460 msgid "is not empty" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1461 msgid "matches regular expression" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1462 msgid "does not match regular expression" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1564 msgid "Fixed String" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1569 msgid "Every 1 Hour" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1575 msgid "Every Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1576 msgid "Every Week" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1577 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1578 #, php-format msgid "Every %d Weeks" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1609 msgctxt "A short textual representation of a month, three letters" msgid "Jan" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1610 msgctxt "A short textual representation of a month, three letters" msgid "Feb" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1611 msgctxt "A short textual representation of a month, three letters" msgid "Mar" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1612 msgctxt "A short textual representation of a month, three letters" msgid "Apr" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1613 msgctxt "A short textual representation of a month, three letters" msgid "May" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1614 msgctxt "A short textual representation of a month, three letters" msgid "Jun" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1615 msgctxt "A short textual representation of a month, three letters" msgid "Jul" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1616 msgctxt "A short textual representation of a month, three letters" msgid "Aug" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1617 msgctxt "A short textual representation of a month, three letters" msgid "Sep" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1618 msgctxt "A short textual representation of a month, three letters" msgid "Oct" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1619 msgctxt "A short textual representation of a month, three letters" msgid "Nov" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1620 msgctxt "A short textual representation of a month, three letters" msgid "Dec" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1634 msgctxt "A textual representation of a day, three letters" msgid "Sun" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1635 msgctxt "A textual representation of a day, three letters" msgid "Mon" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1636 msgctxt "A textual representation of a day, three letters" msgid "Tue" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1637 msgctxt "A textual representation of a day, three letters" msgid "Wed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1638 msgctxt "A textual representation of a day, three letters" msgid "Thu" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1639 msgctxt "A textual representation of a day, three letters" msgid "Fri" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_arrays.php:1640 msgctxt "A textual representation of a day, three letters" msgid "Sat" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:36 msgid "A useful name for this Data Storage and Polling Profile." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:40 msgid "New Profile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:44 msgid "Polling Interval" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:45 msgid "The frequency that data will be collected from the Data Source?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:53 msgid "" "How long can data be missing before RRDtool records unknown data. Increase " "this value if your Data Source is unstable and you wish to carry forward old " "data rather than show gaps in your graphs. This value is multiplied by the " "X-Files Factor to determine the actual amount of time." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:60 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2744 msgid "X-Files Factor" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:61 msgid "The amount of unknown data that can still be regarded as known." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:69 msgid "Consolidation Functions" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:70 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:102 msgid "How data is to be entered in RRAs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:77 msgid "Is this the default storage profile?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:83 msgid "RRDfile Size (in Bytes)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:84 msgid "" "Based upon the number of Rows in all RRAs and the number of Consolidation " "Functions selected, the size of this entire in the RRDfile." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:106 msgid "New Profile RRA" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:110 msgid "Aggregation Level" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:111 msgid "" "The number of samples required prior to filling a row in the RRA " "specification. The first RRA should always have a value of 1." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:119 msgid "How many generations data is kept in the RRA." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:127 msgid "Default Timespan" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:128 msgid "" "When viewing a Graph based upon the RRA in question, the default Timespan to " "show for that Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:135 msgid "" "Based upon the Aggregation Level, the Rows, and the Polling Interval the " "amount of data that will be retained in the RRA" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:140 msgid "RRA Size (in Bytes)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:141 msgid "" "Based upon the number of Rows and the number of Consolidation Functions " "selected, the size of this RRA in the RRDfile." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:159 msgid "A useful name for this CDEF." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:179 msgid "The name of this Color." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:186 msgid "Hex Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:187 msgid "The hex value for this color; valid range: 000000-FFFFFF." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:195 msgid "Any named color should be read only." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:220 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:280 msgid "Enter a meaningful name for this data input method." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:227 msgid "Input Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:228 msgid "" "Choose the method you wish to use to collect data for this Data Input method." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:234 msgid "Input String" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:235 msgid "" "The data that is sent to the script, which includes the complete path to the " "script and input sources in <> brackets." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:256 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:267 #, php-format msgid "Field [%s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:257 #, php-format msgid "Choose the associated field from the %s field." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:268 #, php-format msgid "" "Enter a name for this %s field. Note: If using name value pairs in your " "script, for example: NAME:VALUE, it is important that the name match your " "output field name identically to the script output name or names." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:287 msgid "Update RRDfile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:288 msgid "Whether data from this output field is to be entered into the RRDfile." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:295 msgid "Regular Expression Match" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:296 msgid "" "If you want to require a certain regular expression to be matched against " "input data, enter it here (preg_match format)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:303 msgid "Allow Empty Input" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:304 msgid "Check here if you want to allow NULL input in this field from the user." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:311 msgid "Special Type Code" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:312 #, php-format msgid "" "If this field should be treated specially by host templates, indicate so " "here. Valid keywords for this field are %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:344 msgid "The name given to this data template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:385 msgid "" "Choose a name for this data source. It can include replacement variables " "such as |host_description| or |query_fieldName|. For a complete list of " "supported replacement tags, please see the Cacti documentation." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:389 msgid "Data Source Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:394 msgid "The full path to the RRDfile." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:403 msgid "The script/source used to gather data for this data source." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:409 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1609 msgid "" "Select the Data Source Profile. The Data Source Profile controls polling " "interval, the data aggregation, and retention policy for the resulting Data " "Sources." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:420 msgid "The amount of time in seconds between expected updates." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:424 msgid "Data Source Active" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:427 msgid "Whether Cacti should gather data for this data source or not." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:435 msgid "Internal Data Source Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:440 msgid "" "Choose unique name to represent this piece of data inside of the RRDfile." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:443 msgid "Minimum Value (\"U\" for No Minimum)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:448 msgid "The minimum value of data that is allowed to be collected." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:451 msgid "Maximum Value (\"U\" for No Maximum)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:456 msgid "The maximum value of data that is allowed to be collected." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:459 msgid "Data Source Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:463 msgid "How data is represented in the RRA." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:471 msgid "" "The maximum amount of time that can pass before data is entered as " "'unknown'. (Usually 2x300=600)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:477 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:235 msgid "Not Selected" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:478 msgid "" "When data is gathered, the data for this field will be put into this data " "source." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:487 msgid "" "Enter a name for this GPRINT preset, make sure it is something you recognize." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:494 msgid "GPRINT Text" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:495 msgid "Enter the custom GPRINT string here." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:513 msgid "Common Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:518 msgid "Title (--title)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:522 msgid "" "The name that is printed on the graph. It can include replacement variables " "such as |host_description| or |query_fieldName|. For a complete list of " "supported replacement tags, please see the Cacti documentation." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:526 msgid "Vertical Label (--vertical-label)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:530 msgid "The label vertically printed to the left of the graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:534 msgid "Image Format (--imgformat)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:538 msgid "" "The type of graph that is generated; PNG, GIF or SVG. The selection of " "graph image type is very RRDtool dependent." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:541 msgid "Height (--height)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:545 msgid "" "The height (in pixels) of the graph area within the graph. This area does " "not include the legend, axis legends, or title." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:549 msgid "Width (--width)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:553 msgid "" "The width (in pixels) of the graph area within the graph. This area does not " "include the legend, axis legends, or title." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:557 msgid "Base Value (--base)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:561 msgid "Should be set to 1024 for memory and 1000 for traffic measurements." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:565 msgid "Slope Mode (--slope-mode)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:568 msgid "" "Using Slope Mode evens out the shape of the graphs at the expense of some on " "screen resolution." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:571 msgid "Scaling Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:576 msgid "Auto Scale" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:579 msgid "" "Auto scale the y-axis instead of defining an upper and lower limit. Note: if " "this is check both the Upper and Lower limit will be ignored." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:583 msgid "Auto Scale Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:586 msgid "" "Use
    --alt-autoscale to scale to the absolute minimum and maximum
    --" "alt-autoscale-max to scale to the maximum value, using a given lower limit " "
    --alt-autoscale-min to scale to the minimum value, using a given upper " "limit
    --alt-autoscale (with limits) to scale using both lower and upper " "limits (RRDtool default)
    " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:590 msgid "Use --alt-autoscale (ignoring given limits)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:594 msgid "Use --alt-autoscale-max (accepting a lower limit)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:598 msgid "Use --alt-autoscale-min (accepting an upper limit)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:602 msgid "Use --alt-autoscale (accepting both limits, RRDtool default)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:607 msgid "Logarithmic Scaling (--logarithmic)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:611 msgid "Use Logarithmic y-axis scaling" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:614 msgid "SI Units for Logarithmic Scaling (--units=si)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:617 msgid "" "Use SI Units for Logarithmic Scaling instead of using exponential notation." "
    Note: Linear graphs use SI notation by default." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:620 msgid "Rigid Boundaries Mode (--rigid)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:623 msgid "" "Do not expand the lower and upper limit if the graph contains a value " "outside the valid range." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:626 msgid "Upper Limit (--upper-limit)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:630 msgid "The maximum vertical value for the graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:634 msgid "Lower Limit (--lower-limit)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:638 msgid "The minimum vertical value for the graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:642 msgid "Grid Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:647 msgid "Unit Grid Value (--unit/--y-grid)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:651 msgid "" "Sets the exponent value on the Y-axis for numbers. Note: This option is " "deprecated and replaced by the --y-grid option. In this option, Y-axis grid " "lines appear at each grid step interval. Labels are placed every label " "factor lines." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:655 msgid "Unit Exponent Value (--units-exponent)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:659 msgid "" "What unit Cacti should use on the Y-axis. Use 3 to display everything in \"k" "\" or -6 to display everything in \"u\" (micro)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:663 msgid "Unit Length (--units-length <length>)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:668 msgid "" "How many digits should RRDtool assume the y-axis labels to be? You may have " "to use this option to make enough space once you start fiddling with the y-" "axis labeling." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:671 msgid "No Gridfit (--no-gridfit)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:674 msgid "" "In order to avoid anti-aliasing blurring effects RRDtool snaps points to " "device resolution pixels, this results in a crisper appearance. If this is " "not to your liking, you can use this switch to turn this behavior off." "
    Note: Gridfitting is turned off for PDF, EPS, SVG " "output by default." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:677 msgid "Alternative Y Grid (--alt-y-grid)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:680 msgid "" "The algorithm ensures that you always have a grid, that there are enough but " "not too many grid lines, and that the grid is metric. This parameter will " "also ensure that you get enough decimals displayed even if your graph goes " "from 69.998 to 70.001.
    Note: This parameter may " "interfere with --alt-autoscale options." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:683 msgid "Axis Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:688 msgid "Right Axis (--right-axis <scale:shift>)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:693 msgid "" "A second axis will be drawn to the right of the graph. It is tied to the " "left axis via the scale and shift parameters." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:696 msgid "Right Axis Label (--right-axis-label <string>)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:701 msgid "The label for the right axis." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:704 msgid "Right Axis Format (--right-axis-format <format>)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:709 #, php-format msgid "" "By default, the format of the axis labels gets determined automatically. If " "you want to do this yourself, use this option with the same %lf arguments " "you know from the PRINT and GPRINT commands." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:712 msgid "Right Axis Formatter (--right-axis-formatter <formatname>)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:717 msgid "" "When you setup the right axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where data is treated as numeric, " "\"timestamp\" where values are interpreted as UNIX timestamps (number of " "seconds since January 1970) and expressed using strftime format (default is " "\"%Y-%m-%d %H:%M:%S\"). See also --units-length and --right-axis-format. " "Finally \"duration\" where values are interpreted as duration in " "milliseconds. Formatting follows the rules of valstrfduration qualified " "PRINT/GPRINT." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:720 msgid "Left Axis Formatter (--left-axis-formatter <formatname>)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:725 msgid "" "When you setup the left axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where data is treated as numeric, " "\"timestamp\" where values are interpreted as UNIX timestamps (number of " "seconds since January 1970) and expressed using strftime format (default is " "\"%Y-%m-%d %H:%M:%S\"). See also --units-length. Finally \"duration\" " "where values are interpreted as duration in milliseconds. Formatting " "follows the rules of valstrfduration qualified PRINT/GPRINT." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:728 msgid "Legend Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:733 msgid "Auto Padding" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:736 msgid "" "Pad text so that legend and graph data always line up. Note: this could " "cause graphs to take longer to render because of the larger overhead. Also " "Auto Padding may not be accurate on all types of graphs, consistent labeling " "usually helps." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:739 msgid "Dynamic Labels (--dynamic-labels)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:742 msgid "Draw line markers as a line." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:745 msgid "Force Rules Legend (--force-rules-legend)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:748 msgid "Force the generation of HRULE and VRULE legends." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:751 msgid "Tab Width (--tabwidth <pixels>)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:756 msgid "By default the tab-width is 40 pixels, use this option to change it." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:759 msgid "Legend Position (--legend-position=<position>)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:763 msgid "Place the legend at the given side of the graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:766 msgid "Legend Direction (--legend-direction=<direction>)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:770 msgid "Place the legend items in the given vertical order." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:777 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1300 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:951 msgid "Graph Item Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:781 msgid "How data for this item is represented visually on the graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:796 msgid "The data source to use for this graph item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:803 msgid "The color to use for the legend." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:806 msgid "Opacity/Alpha Channel" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:810 msgid "The opacity/alpha channel of the color." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:813 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2740 msgid "Consolidation Function" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:817 msgid "How data for this item is represented statistically on the graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:820 msgid "CDEF Function" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:825 msgid "A CDEF (math) function to apply to this item on the graph or legend." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:828 msgid "VDEF Function" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:833 msgid "A VDEF (math) function to apply to this item on the graph legend." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:836 msgid "Shift Data" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:839 msgid "" "Offset your data on the time axis (x-axis) by the amount specified in the " "'value' field." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:842 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2710 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2443 msgid "Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:847 msgid "" "[HRULE|VRULE]: The value of the graph item.
    [TICK]: The fraction for " "the tick line.
    [SHIFT]: The time offset in seconds." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:850 msgid "GPRINT Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:854 msgid "" "If this graph item is a GPRINT, you can optionally choose another format " "here. You can define additional types under \"GPRINT Presets\"." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:857 msgid "Text Alignment (TEXTALIGN)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:862 msgid "" "All subsequent legend line(s) will be aligned as given here. You may use " "this command multiple times in a single graph. This command does not " "produce tabular layout.
    Note: You may want to insert a " "<HR> on the preceding graph item.
    Note: A <" "HR> on this legend line will obsolete this setting!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:865 msgid "Text Format" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:870 msgid "Text that will be displayed on the legend for this graph item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:873 msgid "Insert Hard Return" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:876 msgid "Forces the legend to the next line after this item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:879 msgid "Line Width (decimal)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:884 msgid "" "In case LINE was chosen, specify width of line here. You must include a " "decimal precision, for example 2.00" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:887 msgid "Dashes (dashes[=on_s[,off_s[,on_s,off_s]...]])" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:892 msgid "The dashes modifier enables dashed line style." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:895 msgid "Dash Offset (dash-offset=offset)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:900 msgid "" "The dash-offset parameter specifies an offset into the pattern at which the " "stroke begins." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:913 msgid "The name given to this graph template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:920 msgid "Multiple Instances" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:921 msgid "" "Check this checkbox if there can be more than one Graph of this type per " "Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:945 msgid "" "Enter a name for this graph item input, make sure it is something you " "recognize." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:953 msgid "" "Enter a description for this graph item input to describe what this input is " "used for." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:960 msgid "Field Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:961 msgid "How data is to be represented on the graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:984 msgid "General Device Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:989 msgid "Give this host a meaningful description." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:996 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1633 msgid "Fully qualified hostname or IP address for this device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1003 msgid "Poller Association" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1011 msgid "Device Site Association" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1012 msgid "What Site is this Device associated with." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1021 msgid "" "Choose the Device Template to use to define the default Graph Templates and " "Data Queries associated with this Device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1029 msgid "Number of Collection Threads" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1030 msgid "" "The number of concurrent threads to use for polling this device. This " "applies to the Spine poller only." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1037 msgid "Disable Device" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1038 msgid "Check this box to disable all checks for this host." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1050 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1662 msgid "Choose the SNMP version for this device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1058 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1670 msgid "SNMP Community" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1059 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1671 msgid "SNMP read community for this device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1088 msgid "Choose the SNMPv3 authentication protocol." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1097 msgid "SNMP v3 authentication pass phrase for this device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1106 msgid "Choose the SNMPv3 privacy protocol." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1115 msgid "Choose the SNMPv3 privacy passphrase." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1123 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:557 msgid "SNMP Context (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1124 msgid "Enter the SNMP v3 context to use for this device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1142 msgid "Enter the UDP port number to use for SNMP (default is 161)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1159 msgid "Maximum OIDs Per Get Request" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1168 msgid "Availability/Reachability Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1172 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:603 msgid "Downed Device Detection" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1173 msgid "" "The method Cacti will use to determine if a host is available for polling. " "
    NOTE: It is recommended that, at a minimum, SNMP always be selected." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1182 msgid "" "The type of ping packet to sent.
    NOTE: ICMP on Linux/UNIX requires " "root privileges." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1219 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1769 msgid "Additional Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1223 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1774 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:70 msgid "Notes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1224 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1775 msgid "Enter notes to this host." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1231 msgid "External ID" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1232 msgid "External ID for linking Cacti data to external monitoring systems." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1254 msgid "A useful name for this host template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1274 msgid "A name for this data query." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1282 msgid "A description for this data query." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1289 msgid "XML Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1290 msgid "" "The full path to the XML file containing definitions for this data query." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1299 msgid "" "Choose the input method for this Data Query. This input method defines how " "data is collected for each Device associated with the Data Query." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1318 msgid "" "Choose the Graph Template to use for this Data Query Graph Template item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1344 msgid "A name for this associated graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1372 msgid "A useful name for this graph tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1379 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2272 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1364 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1445 msgid "Sorting Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1380 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2273 msgid "Choose how items in this tree will be sorted." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1386 msgid "Publish" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1387 msgid "Should this Tree be published for users to access?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1422 msgid "An Email Address where the User can be reached." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1430 msgid "" "Enter the password for this user twice. Remember that passwords are case " "sensitive!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1438 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:88 msgid "Determines if user is able to login." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1444 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1756 msgid "Locked" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1445 msgid "Determines if the user account is locked." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1450 msgid "Account Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1452 msgid "Set any user account specific options here." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1456 msgid "Must Change Password at Next Login" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1468 msgid "Maintain Custom Graph and User Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1475 msgid "Graph Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1477 msgid "Set any graph specific options here." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1481 msgid "User Has Rights to Tree View" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1487 msgid "User Has Rights to List View" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1493 msgid "User Has Rights to Preview View" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1500 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:130 msgid "Login Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1503 msgid "What to do when this user logs in." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1508 msgid "Show the page that user pointed their browser to." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1512 msgid "Show the default console screen." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1516 msgid "Show the default graph screen." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1522 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:774 msgid "Authentication Realm" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1523 msgid "" "Only used if you have LDAP or Web Basic Authentication enabled. Changing " "this to a non-enabled realm will effectively disable the user." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1578 msgid "Import Template from Local File" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1579 msgid "" "If the XML file containing template data is located on your local machine, " "select it here." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1584 msgid "Import Template from Text" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1585 msgid "" "If you have the XML file containing template data as text, you can paste it " "into this box to import it." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1593 msgid "Preview Import Only" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1595 msgid "" "If checked, Cacti will not import the template, but rather compare the " "imported Template to the existing Template data. If you are acceptable of " "the change, you can them import." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1600 msgid "Remove Orphaned Graph Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1602 msgid "" "If checked, Cacti will delete any Graph Items from both the Graph Template " "and associated Graphs that are not included in the imported Graph Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1619 msgid "General SNMP Entity Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1625 msgid "Give this SNMP entity a meaningful description." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1640 msgid "Disable SNMP Notification Receiver" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1641 msgid "" "Check this box if you temporary do not want to send SNMP notifications to " "this host." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1648 msgid "Maximum Log Size" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1649 msgid "" "Maximum number of day's notification log entries for this receiver need to " "be stored." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1700 msgid "" "Choose the SNMPv3 Authorization Protocol.
    Note: SHA authentication " "support is only available if you have OpenSSL installed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1708 msgid "SNMP Auth Password (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1709 msgid "SNMP v3 user password for this device." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1718 msgid "" "Choose the SNMPv3 Privacy Protocol.
    Note: DES/AES encryption support is " "only available if you have OpenSSL installed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1726 msgid "SNMP Privacy Password (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1734 msgid "SNMP Engine ID" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1735 msgid "" "Defines the unique SNMP Engine ID to identify this peer. Following format " "will be recommended:
    FlexibleLength+Enterprise(8000) + IANA-Cacti(5d75) + " "MAC-Following(03) + YOUR-MAC-ADDRESS(e.g.:D89D67287B00).
    Per default the " "locally administrated MAC 02-FF-FF-FF-FF-FF will be used." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1744 msgid "The UDP port to be used for SNMP traps. Typically, 162." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1760 msgid "SNMP Message Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1761 msgid "" "SNMP traps are always unacknowledged. To send out acknowledged SNMP " "notifications, formally called \"INFORMS\", SNMPv2 or above will be required." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1794 msgid "The new Title of the aggregated Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1801 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1880 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1978 msgid "Prefix" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1802 msgid "A Prefix for all GPRINT lines to distinguish e.g. different hosts." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1810 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1889 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1987 msgid "" "Use this Option to create e.g. STACKed graphs.
    AREA/STACK: 1st graph " "keeps AREA/STACK items, others convert to STACK
    LINE1: all items convert " "to LINE1 items
    LINE2: all items convert to LINE2 items
    LINE3: all " "items convert to LINE3 items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1817 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1896 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1994 msgid "Totaling" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1818 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1897 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1995 msgid "" "Please check those Items that shall be totaled in the \"Total\" column, when " "selecting any totaling option here." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1825 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1905 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2003 msgid "Total Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1826 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1906 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2004 msgid "Which type of totaling shall be performed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1833 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1914 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2012 msgid "Prefix for GPRINT Totals" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1834 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1915 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2013 msgid "A Prefix for all totaling GPRINT lines." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1841 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1922 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2020 msgid "Reorder Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1842 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1923 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2021 msgid "Reordering of Graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1862 msgid "Please name this Aggregate Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1869 msgid "Propagation Enabled" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1870 msgid "Is this to carry the template?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1876 msgid "Aggregate Graph Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1881 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1979 msgid "" "A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may " "use both Host as well as Data Query replacement variables in this prefix." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1957 msgid "Aggregate Template Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1958 msgid "Please name this Aggregate Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1965 msgid "Source Graph Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1966 msgid "The Graph Template that this Aggregate Template is based upon." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:1974 msgid "Aggregate Template Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2044 msgid "The name of this Color Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2055 msgid "A nice Color" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2065 msgid "A useful name for this Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2079 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2121 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1239 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1301 msgid "Operation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2080 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2122 msgid "Logical operation to combine rules." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2088 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2130 msgid "The Field Name that shall be used for this Rule Item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2096 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2138 msgid "Operator." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2103 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2145 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2288 msgid "Matching Pattern" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2104 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2146 msgid "The Pattern to be matched against." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2112 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2154 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2305 msgid "Sequence." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2163 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2208 msgid "A useful name for this Rule." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2171 msgid "Choose a Data Query to apply to this rule." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2182 msgid "Choose any of the available Graph Types to apply to this rule." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2195 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2252 msgid "Enable Rule" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2196 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2253 msgid "Check this box to enable this rule." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2216 msgid "Choose a Tree for the new Tree Items." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2223 msgid "Leaf Item Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2224 msgid "The Item Type that shall be dynamically added to the tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2231 msgid "Graph Grouping Style" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2232 msgid "" "Choose how graphs are grouped when drawn for this particular host on the " "tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2242 msgid "Optional: Sub-Tree Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2243 msgid "" "Choose a Sub-Tree Item to hook in.
    Make sure, that it is still there when " "this rule is executed!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2263 msgid "Header Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2264 msgid "Choose an Object to build a new Sub-header." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2280 msgid "Propagate Changes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2281 msgid "" "Propagate all options on this form (except for 'Title') to all child " "'Header' items." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2289 msgid "" "The String Pattern (Regular Expression) to match against.
    Enclosing '/' " "must NOT be provided!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2296 msgid "Replacement Pattern" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_form.php:2297 msgid "" "The Replacement String Pattern for use as a Tree Header.
    Refer to a Match " "by e.g. \\${1} for the first match!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_languages.php:601 msgid " T" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_languages.php:603 msgid " G" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_languages.php:605 msgid " M" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_languages.php:607 msgid " K" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:99 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_filter.php:66 msgid "Enter a search term" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:100 msgid "Enter a regular expression" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:101 msgid "No file selected" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:102 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:356 msgid "Time Graph View" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:104 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:116 msgid "SpikeKill Results" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:106 msgid "Click to view just this Graph in Realtime" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:107 msgid "Click again to take this Graph out of Realtime" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:111 msgid "Cacti Home" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:112 msgid "Cacti Project Page" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:113 msgid "Cacti Community Forum" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:114 msgid "Report a bug" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:117 msgid "Click to Show/Hide Filter" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:118 msgid "Clear Current Filter" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:119 msgid "Clipboard" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:120 msgid "Clipboard ID" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:121 msgid "Copy operation is unavailable at this time" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:122 msgid "Failed to find data to copy!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:123 msgid "Clipboard has been updated" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:124 msgid "Sorry, your clipboard could not be updated at this time" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:128 msgid "Passphrase length meets 8 character minimum" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:129 msgid "Passphrase too short" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:130 msgid "Passphrase matches but too short" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:131 msgid "Passphrase too short and not matching" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:132 msgid "Passphrases match" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:133 msgid "Passphrases do not match" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:134 msgid "Sorry, we could not process your last action." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:135 msgid "Error:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:136 msgid "Reason:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:137 msgid "Action failed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:138 msgid "The response to the last action was unexpected." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:139 msgid "Operation successful" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:140 msgid "The Operation was successful. Details are below." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:142 msgid "Ok" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_session.php:143 msgid "Pause" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:38 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:904 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1027 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:39 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1933 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1664 msgid "General" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:39 msgid "Paths" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:40 msgid "Device Defaults" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:41 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:473 msgid "Poller" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:42 msgid "Data" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:43 msgid "Visual" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:44 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4001 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4006 msgid "Authentication" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:45 msgid "Performance" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:46 msgid "Spikes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:47 msgid "Mail/Reporting/DNS" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:51 msgid "Time Spanning/Shifting" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:52 msgid "Graph Thumbnail Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:53 msgid "Tree Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:54 msgid "Graph Fonts" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:93 msgid "Required Tool Paths" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:98 msgid "snmpwalk Binary Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:99 msgid "The path to your snmpwalk binary." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:104 msgid "snmpget Binary Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:105 msgid "The path to your snmpget binary." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:110 msgid "snmpbulkwalk Binary Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:111 msgid "The path to your snmpbulkwalk binary." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:116 msgid "snmpgetnext Binary Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:117 msgid "The path to your snmpgetnext binary." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:122 msgid "snmptrap Binary Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:123 msgid "The path to your snmptrap binary." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:128 msgid "RRDtool Binary Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:129 msgid "The path to the rrdtool binary." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:134 msgid "PHP Binary Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:135 msgid "" "The path to your PHP binary file (may require a php recompile to get this " "file)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:140 msgid "Logging" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:145 msgid "Cacti Log Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:146 msgid "" "The path to your Cacti log file (if blank, defaults to <path_cacti>/" "log/cacti.log)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:152 msgid "Rotate the Cacti Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:153 msgid "This option will rotate the Cacti Log periodically." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:158 msgid "Rotation Frequency" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:159 msgid "At what frequency would you like to rotate your logs?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:165 msgid "Log Retention" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:166 msgid "" "How many log files do you wish to retain? Use 0 to never remove any logs. " "(0-365)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:173 msgid "Alternate Poller Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:178 msgid "Spine Binary File Location" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:179 msgid "The path to Spine binary." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:184 msgid "Spine Config File Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:185 msgid "" "The path to Spine configuration file. By default, in the cwd of spine, or /" "etc if not specified." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:190 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2389 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:296 msgid "RRD Cleaner" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:195 msgid "RRDfile Auto Clean" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:196 msgid "" "Automatically archive or delete RRDfiles when their corresponding Data " "Sources are removed from Cacti" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:201 msgid "RRDfile Auto Clean Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:202 msgid "" "The method used to Clean RRDfiles from Cacti after their Data Sources are " "deleted." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:208 msgid "Archive directory" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:209 msgid "" "This is the directory where RRDfiles are moved for archiving" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:217 msgid "Event Logging" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:222 msgid "Log Destination" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:223 msgid "How will Cacti handle event logging." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:229 msgid "Web Events" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:230 msgid "What Cacti website messages should be placed in the log." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:235 msgid "SNMP Messages" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:239 msgid "Graph Syntax" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:243 msgid "Developer Mode" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:249 msgid "Log Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:254 msgid "Generic Log Level" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:255 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:261 msgid "Selective File Debug" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:262 msgid "" "Select which files you wish to place in Debug mode regardless of the Generic " "Log Level setting. Any files selected will be treated as they are in Debug " "mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:268 msgid "Selective Plugin Debug" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:269 msgid "" "Select which Plugins you wish to place in Debug mode regardless of the " "Generic Log Level setting. Any files used by this plugin will be treated as " "they are in Debug mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:275 msgid "Selective Device Debug" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:276 msgid "" "A comma delimited list of Device ID's that you wish to be in Debug mode " "during data collection. This Debug level is only in place during the Cacti " "polling process." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:283 msgid "Poller Syslog/Eventlog Selection" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:284 msgid "" "If you are using the Syslog/Eventlog, What Cacti poller messages should be " "placed in the Syslog/Eventlog." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:289 msgid "Statistics" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:293 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:438 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1090 msgid "Warnings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:297 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:439 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1091 msgid "Errors" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:303 msgid "Other Defaults" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:308 msgid "Has Graphs/Data Sources Checked" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:309 msgid "Should the Has Graphs and Has Data Sources be Checked by Default." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:314 msgid "Graph Template Image Format" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:315 msgid "The default Image Format to be used for all new Graph Templates." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:321 msgid "Graph Template Height" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:322 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:330 msgid "The default Graph Width to be used for all new Graph Templates." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:329 msgid "Graph Template Width" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:337 msgid "Language Support" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:338 msgid "" "Choose 'enabled' to allow the localization of Cacti. The strict mode " "requires that the requested language will also be supported by all plugins " "being installed at your system. If that's not the fact everything will be " "displayed in English." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:344 msgid "Language" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:345 msgid "Default language for this system." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:351 msgid "Auto Language Detection" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:352 msgid "" "Allow to automatically determine the 'default' language of the user and " "provide it at login time if that language is supported by Cacti. If " "disabled, the default language will be in force until the user elects " "another language." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:358 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1873 msgid "Date Display Format" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:359 msgid "The System default date format to use in Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:365 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1880 msgid "Date Separator" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:366 msgid "The System default date separator to be used in Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:372 msgid "Other Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:377 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:271 msgid "RRDtool Version" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:378 msgid "The version of RRDtool that you have installed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:384 msgid "Graph Permission Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:385 msgid "" "There are two methods for determining a User's Graph Permissions. The first " "is 'Permissive'. Under the 'Permissive' setting, a User only needs access " "to either the Graph, Device or Graph Template to gain access to the Graphs " "that apply to them. Under 'Restrictive', the User must have access to the " "Graph, the Device, and the Graph Template to gain access to the Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:388 msgid "Permissive" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:388 msgid "Restrictive" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:392 msgid "Graph/Data Source Creation Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:393 msgid "" "If set to Simple, Graphs and Data Sources can only be created from New " "Graphs. If Advanced, legacy Graph and Data Source creation is supported." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:395 msgid "Advanced" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:395 msgid "Simple" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:398 msgid "Show Form/Setting Help Inline" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:399 msgid "" "When checked, Form and Setting Help will be show inline. Otherwise it will " "be presented when hovering over the help button." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:404 msgid "Deletion Verification" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:405 msgid "Prompt user before item deletion." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:410 msgid "Hide Cacti Console" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:411 msgid "" "For use with Cacti's External Link Support. Using this setting, you can " "replace the Cacti Console with your own page." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:417 msgid "Enable Drag-N-Drop" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:418 msgid "" "Some of Cacti's interfaces support Drag-N-Drop. If checked this option will " "be enabled. Note: For visually impaired user, this option may be disabled." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:423 msgid "Force Connections over HTTPS" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:424 msgid "" "When checked, any attempts to access Cacti will be redirected to HTTPS to " "ensure high security." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:435 msgid "Enable Automatic Graph Creation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:436 msgid "" "When disabled, Cacti Automation will not actively create any Graph.This is " "useful when adjusting Host settings so as to avoid creating new Graphs each " "time you save an object. Invoking Automation Rules manually will still be " "possible." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:443 msgid "Enable Automatic Tree Item Creation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:444 msgid "" "When disabled, Cacti Automation will not actively create any Tree Item.This " "is useful when adjusting Host or Graph settings so as to avoid creating new " "Tree Entries each time you save an object. Invoking Rules manually will " "still be possible." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:452 msgid "General Defaults" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:458 msgid "The default Device Template all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:466 msgid "The default Site for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:474 msgid "The default Poller for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:481 msgid "Device Threads" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:482 msgid "" "The default number of Device Threads. This is only applicable when using " "the spine Data Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:488 msgid "Re-index Method for Data Queries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:489 msgid "The default Re-index Method to use for all Data Queries." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:495 msgid "SNMP Defaults" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:501 msgid "Default SNMP version for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:508 msgid "Default SNMP read community for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:514 msgid "Security Level" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:515 msgid "Default SNMP v3 Security Level for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:521 msgid "Auth User (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:522 msgid "Default SNMP v3 Authorization User for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:529 msgid "Auth Protocol (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:530 msgid "Default SNMPv3 Authorization Protocol for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:535 msgid "Auth Passphrase (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:536 msgid "Default SNMP v3 Authorization Passphrase for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:543 msgid "Privacy Protocol (v3)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:544 msgid "Default SNMPv3 Privacy Protocol for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:550 msgid "Privacy Passphrase (v3)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:551 msgid "Default SNMPv3 Privacy Passphrase for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:558 msgid "Enter the SNMP v3 Context for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:567 msgid "" "Default SNMP v3 Engine Id for all new Devices. Leave this field empty to use " "the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:574 msgid "Port Number" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:575 msgid "Default UDP Port for all new Devices. Typically 161." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:583 msgid "Default SNMP timeout in milli-seconds for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:591 msgid "Default SNMP retries for all new Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:598 msgid "Availability/Reachability" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:604 msgid "" "Default Availability/Reachability for all new Devices. The method Cacti " "will use to determine if a Device is available for polling.
    NOTE: It " "is recommended that, at a minimum, SNMP always be selected." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:610 msgid "Ping Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:611 msgid "Default Ping type for all new Devices.
    " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:618 msgid "" "Default Ping Port for all new Devices. With TCP, Cacti will attempt to Syn " "the port. With UDP, Cacti requires either a successful connection, or a " "port not reachable error to determine if the Device is up or not." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:626 msgid "" "Default Ping Timeout value in milli-seconds for all new Devices. The " "timeout values to use for Device SMMP, ICMP, UDP and TCP pinging. ICMP " "Pings will be rounded up to the nearest second. TCP and UDP connection " "timeouts on Windows are controlled by the operating system, and are " "therefore not recommended on Windows." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:634 msgid "" "The number of times Cacti will attempt to ping a Device before marking it as " "down." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:641 msgid "Up/Down Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:646 msgid "Failure Count" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:647 msgid "" "The number of polling intervals a Device must be down before logging an " "error and reporting Device as down." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:654 msgid "Recovery Count" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:655 msgid "" "The number of polling intervals a Device must remain up before returning " "Device to an up status and issuing a notice." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:664 msgid "Theme Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:669 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:832 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1840 msgid "Theme" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:670 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1841 #: /tmp/cacti_package.2719/cacti-1.1.38/install/functions.php:469 msgid "Please select one of the available Themes to skin your Cacti with." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:676 msgid "Table Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:681 msgid "Rows Per Page" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:682 msgid "The default number of rows to display on for a table." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:688 msgid "Autocomplete Enabled" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:689 msgid "" "In very large systems, select lists can slow the user interface " "significantly. If this option is enabled, Cacti will use autocomplete " "callbacks to populate the select list systematically. Note: autocomplete is " "forcibly disabled on the Classic theme." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:697 msgid "Autocomplete Rows" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:698 msgid "" "The default number of rows to return from an autocomplete based select " "pattern match." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:704 msgid "Graph/Data Source/Data Query Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:709 msgid "Maximum Title Length" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:710 msgid "The maximum allowable Graph or Data Source titles." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:717 msgid "Data Source Field Length" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:718 msgid "The maximum Data Query field length." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:725 msgid "Graph Creation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:730 msgid "Default Graph Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:731 msgid "When creating graphs, what Graph Type would you like pre-selected?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:734 msgid "All Types" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:734 msgid "By Template/Data Query" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:742 msgid "Default Log Tail Lines" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:743 msgid "Default number of lines of the Cacti log file to tail." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:749 msgid "Maximum number of rows per page" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:750 msgid "" "User defined number of lines for the CLOG to tail when selecting 'All lines'." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:757 msgid "Log Tail Refresh" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:758 msgid "How often do you want the Cacti log display to update." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:764 msgid "RRDtool Graph Watermark" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:769 msgid "Watermark Text" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:770 msgid "Text placed at the bottom center of every Graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:777 msgid "Log Viewer Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:782 msgid "Exclusion Regex" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:783 msgid "" "Any strings that match this regex will be excluded from the user display. " "For example, if you want to exclude all log lines that include the " "words 'Admin' or 'Login' you would type '(Admin || Login)'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:790 msgid "Real-time Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:795 msgid "Enable Real-time Graphing" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:796 msgid "" "When an option is checked, users will be able to put Cacti into Real-time " "mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:802 msgid "This timespan you wish to see on the default graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:808 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1995 msgid "Refresh Interval" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:809 msgid "This is the time between graph updates." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:815 msgid "Cache Directory" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:816 msgid "" "This is the location, on the web server where the RRDfiles and PNG files " "will be cached. This cache will be managed by the poller. Make sure you " "have the correct read and write permissions on this folder" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:823 msgid "RRDtool Graph Font Control" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:828 msgid "Font Selection Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:829 msgid "How do you wish fonts to be handled by default?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:832 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:443 msgid "System" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:835 msgid "Default Font" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:836 msgid "" "When not using Theme based font control, the Pangon font-config font name to " "use for all Graphs. Optionally, you may leave blank and control font " "settings on a per object basis." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:838 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:853 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:868 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:883 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:898 msgid "Enter Valid Font Config Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:842 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2031 msgid "Title Font Size" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:843 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2032 msgid "The size of the font used for Graph Titles" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:850 msgid "Title Font Setting" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:851 msgid "" "The font to use for Graph Titles. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:857 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2044 msgid "Legend Font Size" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:858 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2045 msgid "The size of the font used for Graph Legend items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:865 msgid "Legend Font Setting" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:866 msgid "" "The font to use for Graph Legends. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:872 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2057 msgid "Axis Font Size" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:873 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2058 msgid "The size of the font used for Graph Axis" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:880 msgid "Axis Font Setting" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:881 msgid "" "The font to use for Graph Axis items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:887 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2070 msgid "Unit Font Size" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:888 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2071 msgid "The size of the font used for Graph Units" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:895 msgid "Unit Font Setting" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:896 msgid "" "The font to use for Graph Unit items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:909 msgid "Data Collection Enabled" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:910 msgid "If you wish to stop the polling process completely, uncheck this box." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:916 msgid "Poller Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:917 msgid "" "The poller type to use. This setting will take effect at next polling " "interval." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:924 msgid "" "The polling interval in use. This setting will effect how often RRDfiles " "are checked and updated.\n" "\t\t\tNOTE: If you change this value, you must re-populate the " "poller cache. Failure to do so, may result in lost data." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:931 msgid "Cron Interval" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:932 msgid "" "The cron interval in use. You need to set this setting to the interval that " "your cron or scheduled task is currently running." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:938 msgid "Maximum Concurrent Poller Processes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:939 msgid "" "The number of concurrent processes to execute. Using a higher number when " "using cmd.php will improve performance. Performance improvements in spine " "are best resolved with the threads parameter" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:946 msgid "Balance Process Load" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:947 msgid "" "If you choose this option, Cacti will attempt to balance the load of each " "poller process by equally distributing poller items per process." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:952 msgid "Disable increasing OID Check" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:953 msgid "Controls disabling check for increasing OID while walking OID tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:958 msgid "SNMP Bulkwalk Fetch Size" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:959 msgid "" "How many OID's should be returned per snmpbulkwalk request? For Devices " "with large SNMP trees, increasing this size will increase re-index " "performance over a WAN." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:977 msgid "Spine Specific Execution Parameters" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:982 msgid "Invalid Data Logging" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:983 msgid "" "How would you like Spine output errors logged? The options are: 'Detailed' " "which is similar to cmd.php logging; 'Summary' which provides the number of " "output errors per Device; and 'None', which does not provide error counts." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:988 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:206 msgid "Summary" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:989 msgid "Detailed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:993 msgid "Maximum Threads per Process" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:994 msgid "" "The maximum threads allowed per process. Using a higher number when using " "Spine will improve performance." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1001 msgid "Number of PHP Script Servers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1002 msgid "" "The number of concurrent script server processes to run per Spine process. " "Settings between 1 and 10 are accepted. This parameter will help if you are " "running several threads and script server scripts." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1009 msgid "Script and Script Server Timeout Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1010 msgid "" "The maximum time that Cacti will wait on a script to complete. This timeout " "value is in seconds" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1017 msgid "The Maximum SNMP OIDs Per SNMP Get Request" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1018 msgid "" "The maximum number of SNMP get OIDs to issue per snmpbulkwalk request. " "Increasing this value speeds poller performance over slow links. The " "maximum value is 100 OIDs. Decreasing this value to 0 or 1 will disable " "snmpbulkwalk" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1032 msgid "Authentication Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1033 msgid "" "
    None - No authentication will be used, all users will " "have full access.

    Built-in Authentication - Cacti handles user " "authentication, which allows you to create users and give them rights to " "different areas within Cacti.

    Web Basic Authentication - " "Authentication is handled by the web server. Users can be added or created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used.

    LDAP Authentication - " "Allows for authentication against a LDAP server. Users will be created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used. If PHPs LDAP module is not enabled, " "LDAP Authentication will not appear as a selectable option." "

    Multiple LDAP/AD Domain Authentication - Allows " "administrators to support multiple disparate groups from different LDAP/AD " "directories to access Cacti resources. Just as LDAP Authentication, the PHP " "LDAP module is required to utilize this method.
    " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1039 msgid "Support Authentication Cookies" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1040 msgid "" "If a user authenticates and selects 'Keep me signed in', an authentication " "cookie will be created on the user's computer allowing that user to stay " "logged in. The authentication cookie expires after 90 days of non-use." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1045 msgid "Special Users" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1050 msgid "Guest User" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1051 msgid "The name of the guest user for viewing graphs; is 'No User' by default." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1053 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1061 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:335 msgid "No User" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1058 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:331 msgid "User Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1059 msgid "" "The name of the user that Cacti will use as a template for new Web Basic and " "LDAP users; is 'guest' by default." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1066 msgid "Local Account Complexity Requirements" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1071 msgid "Minimum Length" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1072 msgid "This is minimal length of allowed passwords." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1079 msgid "Require Mix Case" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1080 msgid "" "This will require new passwords to contains both lower and upper-case " "characters." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1085 msgid "Require Number" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1086 msgid "" "This will require new passwords to contain at least 1 numerical character." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1091 msgid "Require Special Character" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1092 msgid "" "This will require new passwords to contain at least 1 special character." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1097 msgid "Force Complexity Upon Old Passwords" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1098 msgid "" "This will require all old passwords to also meet the new complexity " "requirements upon login. If not met, it will force a password change." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1103 msgid "Expire Inactive Accounts" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1104 msgid "" "This is maximum number of days before inactive accounts are disabled. The " "Admin account is excluded from this policy." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1117 msgid "Expire Password" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1118 msgid "This is maximum number of days before a password is set to expire." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1129 msgid "Password History" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1130 msgid "Remember this number of old passwords and disallow re-using them." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1135 msgid "1 Change" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1136 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1137 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1138 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1139 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1140 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1141 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1142 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1143 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1144 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1145 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1146 #, php-format msgid "%d Changes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1149 msgid "Account Locking" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1154 msgid "Lock Accounts" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1155 msgid "Lock an account after this many failed attempts in 1 hour." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1160 msgid "1 Attempt" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1161 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1162 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1163 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1164 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1165 #, php-format msgid "%d Attempts" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1168 msgid "Auto Unlock" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1169 msgid "" "An account will automatically be unlocked after this many minutes. Even if " "the correct password is entered, the account will not unlock until this time " "limit has been met. Max of 1440 minutes (1 Day)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1185 msgid "1 Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1188 msgid "LDAP General Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1192 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:358 msgid "Server" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1193 msgid "The DNS hostname or IP address of the server." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1198 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:366 msgid "Port Standard" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1199 msgid "TCP/UDP port for Non-SSL communications." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1206 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:375 msgid "Port SSL" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1207 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:376 msgid "TCP/UDP port for SSL communications." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1214 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:384 msgid "Protocol Version" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1215 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:385 msgid "Protocol Version that the server supports." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1221 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:391 msgid "Encryption" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1222 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:392 msgid "" "Encryption that the server supports. TLS is only supported by Protocol " "Version 3." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1228 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:398 msgid "Referrals" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1229 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:399 msgid "" "Enable or Disable LDAP referrals. If disabled, it may increase the speed of " "searches." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1235 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:405 msgid "Mode" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1236 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the user's " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the user's Distinguished Name (DN)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1242 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:412 msgid "Distinguished Name (DN)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1243 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:413 msgid "" "Distinguished Name syntax, such as for windows: \"<username>" "@win2kdomain.local\" or for OpenLDAP: \"uid=<username>," "ou=people,dc=domain,dc=local\". \"<username>\" is replaced with " "the username that was supplied at the login prompt. This is only used when " "in \"No Searching\" mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1248 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:419 msgid "Require Group Membership" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1249 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:420 msgid "" "Require user to be member of group to authenticate. Group settings must be " "set for this to work, enabling without proper group settings will cause " "authentication failure." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1254 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:425 msgid "LDAP Group Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1258 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:429 msgid "Group Distinguished Name (DN)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1259 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:430 msgid "Distinguished Name of the group that user must have membership." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1264 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:436 msgid "Group Member Attribute" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1265 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:437 msgid "Name of the attribute that contains the usernames of the members." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1270 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:443 msgid "Group Member Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1271 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:444 msgid "" "Defines if users use full Distinguished Name or just Username in the defined " "Group Member Attribute." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1274 msgid "Distinguished Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1277 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:450 msgid "LDAP Specific Search Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1281 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:454 msgid "Search Base" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1282 msgid "" "Search base for searching the LDAP directory, such as 'dc=win2kdomain," "dc=local' or 'ou=people,dc=domain,dc=local'." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1287 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:461 msgid "Search Filter" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1288 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: '(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))' or for OpenLDAP: " "'(&(objectClass=account)(uid=<username>))'. '<username>' " "is replaced with the username that was supplied at the login prompt. " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1293 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:468 msgid "Search Distinguished Name (DN)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1294 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:469 msgid "" "Distinguished Name for Specific Searching binding to the LDAP directory." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1299 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:475 msgid "Search Password" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1300 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:476 msgid "Password for Specific Searching binding to the LDAP directory." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1307 msgid "URL Linking" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1312 msgid "Server Base URL" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1313 msgid "" "This is a the server location that will be used for links to the Cacti site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1320 msgid "Emailing Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1324 msgid "Test Email" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1325 msgid "" "This is a Email account used for sending a test message to ensure everything " "is working properly." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1330 msgid "Mail Services" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1331 msgid "Which mail service to use in order to send mail" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1333 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1334 msgid "PHP Mail() Function" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1334 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3989 msgid "SMTP" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1334 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3984 msgid "Sendmail" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1337 msgid "Ping Mail Server" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1338 msgid "Ping the Mail Server before sending test Email?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1344 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:186 msgid "From Email Address" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1345 msgid "This is the Email address that the Email will appear from." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1350 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:178 msgid "From Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1351 msgid "This is the actual name that the Email will appear from." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1356 msgid "Word Wrap" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1357 msgid "" "This is how many characters will be allowed before a line in the Email is " "automatically word wrapped. (0 = Disabled)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1364 msgid "Sendmail Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1369 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3984 msgid "Sendmail Path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1370 msgid "" "This is the path to sendmail on your server. (Only used if Sendmail is " "selected as the Mail Service)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1376 msgid "SMTP Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1381 msgid "SMTP Hostname" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1382 msgid "" "This is the hostname/IP of the SMTP Server you will send the Email to. For " "failover, separate your hosts using a semi-colon." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1388 msgid "SMTP Port" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1389 msgid "The port on the SMTP Server to use." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1396 msgid "SMTP Username" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1397 msgid "" "The username to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1402 msgid "SMTP Password" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1403 msgid "" "The password to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1408 msgid "SMTP Security" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1409 msgid "The encryption method to use for the Email." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1415 msgid "SMTP Timeout" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1416 msgid "Please enter the SMTP timeout in seconds." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1423 msgid "Reporting Presets" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1428 msgid "Default Graph Image Format" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1429 msgid "" "When creating a new report, what image type should be used for the inline " "graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1435 msgid "Maximum E-Mail Size" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1436 msgid "The maximum size of the E-Mail message including all attachements." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1442 msgid "Poller Logging Level for Cacti Reporting" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1443 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1449 msgid "Enable Lotus Notes (R) tweak" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1450 msgid "Enable code tweak for specific handling of Lotus Notes Mail Clients." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1455 msgid "DNS Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1460 msgid "Primary DNS IP Address" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1461 msgid "Enter the primary DNS IP Address to utilize for reverse lookups." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1467 msgid "Secondary DNS IP Address" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1468 msgid "Enter the secondary DNS IP Address to utilize for reverse lookups." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1474 msgid "DNS Timeout" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1475 msgid "" "Please enter the DNS timeout in milliseconds. Cacti uses a PHP based DNS " "resolver." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1486 msgid "On-demand RRD Update Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1491 msgid "Enable On-demand RRD Updating" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1492 msgid "" "Should Boost enable on demand RRD updating in Cacti? If you disable, this " "change will not take effect until after the next polling cycle." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1497 msgid "System Level RRD Updater" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1498 msgid "" "Before RRD On-demand Update Can be Cleared, a poller run must always pass" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1503 msgid "How Often Should Boost Update All RRDs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1504 msgid "" "When you enable boost, your RRD files are only updated when they are " "requested by a user, or when this time period elapses." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1511 msgid "Maximum Records" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1512 msgid "" "If the boost output table exceeds this size, in records, an update will take " "place." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1519 msgid "Maximum Data Source Items Per Pass" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1520 msgid "" "To optimize performance, the boost RRD updater needs to know how many Data " "Source Items should be retrieved in one pass. Please be careful not to set " "too high as graphing performance during major updates can be compromised. " "If you encounter graphing or polling slowness during updates, lower this " "number. The default value is 50000." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1526 msgid "Maximum Argument Length" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1527 msgid "" "When boost sends update commands to RRDtool, it must not exceed the " "operating systems Maximum Argument Length. This varies by operating system " "and kernel level. For example: Windows 2000 <= 2048, FreeBSD <= 65535, " "Linux 2.6.22-- <= 131072, Linux 2.6.23++ unlimited" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1534 msgid "Memory Limit for Boost and Poller" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1535 msgid "The maximum amount of memory for the Cacti Poller and Boosts Poller" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1541 msgid "Maximum RRD Update Script Run Time" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1542 msgid "" "The maximum boot poller run time allowed prior to boost issuing warning " "messages relative to possible hardware/software issues preventing proper " "updates." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1548 msgid "Enable direct population of poller_output_boost table" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1549 msgid "" "Enables direct insert of records into poller output boost with results in a " "25% time reduction in each poll cycle." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1554 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2246 msgid "Image Caching" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1559 msgid "Enable Image Caching" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1560 msgid "Should image caching be enabled?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1565 msgid "Location for Image Files" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1566 msgid "" "Specify the location where Boost should place your image files. These files " "will be automatically purged by the poller when they expire." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1572 msgid "Process Interlocking" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1577 msgid "Boost Debug Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1578 msgid "" "If this field is non-blank, Boost will log RRDupdate output from the boost" "\tpoller process." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1586 msgid "Data Sources Statistics" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1591 msgid "Enable Data Source Statistics Collection" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1592 msgid "Should Data Source Statistics be collected for this Cacti system?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1597 msgid "Daily Update Frequency" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1598 msgid "How frequent should Daily Stats be updated?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1604 msgid "Hourly Average Window" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1605 msgid "" "The number of consecutive hours that represent the hourly average. Keep in " "mind that a setting too high can result in very large memory tables" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1611 msgid "Maintenance Time" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1612 msgid "" "What time of day should Weekly, Monthly, and Yearly Data be updated? Format " "is HH:MM [am/pm]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1619 msgid "Memory Limit for Data Source Statistics Data Collector" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1620 msgid "" "The maximum amount of memory for the Cacti Poller and Data Source Statistics " "Poller" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1626 msgid "Data Storage Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1632 msgid "" "Choose if RRDs will be stored locally or being handled by an external " "RRDtool proxy server." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1635 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1643 msgid "RRDtool Proxy Server" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1638 msgid "Structured RRD Paths" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1639 msgid "" "Use a separate subfolder for each hosts RRD files. The naming of the " "RRDfiles will be <path_cacti>/rra/host_id/local_data_id.rrd." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1648 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1680 msgid "Proxy Server" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1649 msgid "The DNS hostname or IP address of the RRDtool proxy server." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1654 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1686 msgid "Proxy Port Number" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1655 msgid "TCP port for encrypted communication." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1662 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1694 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:261 msgid "RSA Fingerprint" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1663 msgid "" "The fingerprint of the current public RSA key the proxy is using. This is " "required to establish a trusted connection." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1670 msgid "RRDtool Proxy Server - Backup" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1675 msgid "Load Balancing" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1676 msgid "" "If both main and backup proxy are receivable this option allows to spread " "all requests against RRDtool." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1681 msgid "" "The DNS hostname or IP address of the RRDtool backup proxy server if proxy " "is running in MSR mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1687 msgid "TCP port for encrypted communication with the backup proxy." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1695 msgid "" "The fingerprint of the current public RSA key the backup proxy is using. " "This required to establish a trusted connection." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1704 msgid "Spike Kill Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1709 msgid "Removal Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1710 msgid "" "There are two removal methods. The first, Standard Deviation, will remove " "any sample that is X number of standard deviations away from the average of " "samples. The second method, Variance, will remove any sample that is X% " "more than the Variance average. The Variance method takes into account a " "certain number of 'outliers'. Those are exceptional samples, like the " "spike, that need to be excluded from the Variance Average calculation." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1713 msgid "Standard Deviation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1713 msgid "Variance Based w/Outliers Removed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1716 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1850 msgid "Replacement Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1717 msgid "" "There are three replacement methods. The first method replaces the spike " "with the the average of the data source in question. The second method " "replaces the spike with a 'NaN'. The last replaces the spike with the last " "known good value found." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1720 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1851 msgid "Average" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1720 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1853 msgid "Last Known Good" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1720 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1852 msgid "NaN's" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1723 msgid "Number of Standard Deviations" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1724 msgid "" "Any value that is this many standard deviations above the average will be " "excluded. A good number will be dependent on the type of data to be " "operated on. We recommend a number no lower than 5 Standard Deviations." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1728 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1729 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1730 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1731 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1732 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1733 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1734 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1735 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1736 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1737 #, php-format msgid "%d Standard Deviations" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1741 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1862 msgid "Variance Percentage" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1742 #, php-format msgid "" "This value represents the percentage above the adjusted sample average once " "outliers have been removed from the sample. For example, a Variance " "Percentage of 100% on an adjusted average of 50 would remove any sample " "above the quantity of 100 from the graph." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1761 msgid "Variance Number of Outliers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1762 msgid "" "This value represents the number of high and low average samples will be " "removed from the sample set prior to calculating the Variance Average. If " "you choose an outlier value of 5, then both the top and bottom 5 averages " "are removed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1766 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1767 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1768 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1769 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1770 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1771 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1772 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1773 #, php-format msgid "%d High/Low Samples" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1777 msgid "Max Kills Per RRA" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1778 msgid "" "This value represents the maximum number of spikes to remove from a Graph " "RRA." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1782 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1783 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1784 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1785 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1786 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1787 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1788 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1789 #, php-format msgid "%d Samples" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1793 msgid "RRDfile Backup Directory" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1794 msgid "" "If this directory is not empty, then your original RRDfiles will be backed\n" "\t\t\tup to this location." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1802 msgid "Batch Spike Kill Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1807 msgid "Removal Schedule" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1808 msgid "" "Do you wish to periodically remove spikes from your graphs? If so, select " "the frequency\n" "\t\t\tbelow." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1816 msgid "Once a Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1817 msgid "Every Other Day" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1821 msgid "Base Time" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1822 msgid "" "The Base Time for Spike removal to occur. For example, if you use '12:00am' " "and you choose once per day, the batch removal would begin at approximately " "midnight every day." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1829 msgid "Graph Templates to Spike Kill" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1831 msgid "" "When performing batch spike removal, only the templates selected below will " "be acted on." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1847 msgid "Default View Mode" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1848 msgid "" "Which Graph mode you want displayed by default when you first visit the " "Graphs page?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1854 msgid "User Language" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1855 msgid "Defines the preferred GUI language." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1861 msgid "Show Graph Title" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1862 msgid "" "Display the graph title on the page so that it may be searched using the " "browser." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1867 msgid "Hide Disabled" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1868 msgid "Hide Disabled Devices and Graphs from Disabled Devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1874 msgid "The date format to use in Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1881 msgid "The date separator to be used in Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1887 msgid "Page Refresh" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1888 msgid "The number of seconds between automatic page refreshes." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1894 msgid "Preview Graphs Per Page" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1895 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2010 msgid "The number of graphs to display on one page in preview mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1903 msgid "Default Time Range" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1904 msgid "The default RRA to use in rare occasions." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1910 msgid "Default Graph View Timespan" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1911 msgid "The default timespan you wish to be displayed when you display graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1917 msgid "Default Graph View Timeshift" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1918 msgid "The default timeshift you wish to be displayed when you display graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1924 msgid "Allow Graph to extend to Future" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1925 msgid "When displaying Graphs, allow Graph Dates to extend 'to future'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1930 msgid "First Day of the Week" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1931 msgid "The first Day of the Week for weekly Graph Displays" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1937 msgid "Start of Daily Shift" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1938 msgid "Start Time of the Daily Shift." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1945 msgid "End of Daily Shift" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1946 msgid "End Time of the Daily Shift." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1955 msgid "Thumbnail Sections" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1956 msgid "Which portions of Cacti display Thumbnails by default." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1970 msgid "Preview Thumbnail Columns" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1971 msgid "" "The number of columns to use when displaying Thumbnail graphs in Preview " "mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1974 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1981 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:223 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:224 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:225 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:226 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:227 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:706 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:707 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:708 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:709 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:710 #, php-format msgid "%d Columns" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1974 #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1981 msgid "1 Column" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1977 msgid "Tree View Thumbnail Columns" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1978 msgid "" "The number of columns to use when displaying Thumbnail graphs in Tree mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1984 msgid "Thumbnail Height" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1985 msgid "The height of Thumbnail graphs in pixels." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1992 msgid "Thumbnail Width" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:1993 msgid "The width of Thumbnail graphs in pixels." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2002 msgid "Default Tree" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2003 msgid "The default graph tree to use when displaying graphs in tree mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2009 msgid "Graphs Per Page" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2016 msgid "Expand Devices" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2017 msgid "" "Choose whether to expand the Graph Templates and Data Queries used by a " "Device on Tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2024 msgid "Use Custom Fonts" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2025 msgid "" "Choose whether to use your own custom fonts and font sizes or utilize the " "system defaults." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2038 msgid "Title Font File" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2039 msgid "The font file to use for Graph Titles" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2051 msgid "Legend Font File" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2052 msgid "The font file to be used for Graph Legend items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2064 msgid "Axis Font File" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2065 msgid "The font file to be used for Graph Axis items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2077 msgid "Unit Font File" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2078 msgid "The font file to be used for Graph Unit items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2087 msgid "Realtime View Mode" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2088 msgid "How do you wish to view Realtime Graphs?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2091 msgid "Inline" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/include/global_settings.php:2092 msgid "New Window" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:64 #, php-format msgid "" "You are now logged into Cacti. You can follow " "these basic steps to get started." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:67 #, php-format msgid "Create devices for network" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:68 #, php-format msgid "Create graphs for your new devices" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:69 #, php-format msgid "View your new graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:78 msgid "Offline" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:78 msgid "Online" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:78 msgid "Recovery" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:78 msgid "Remote Data Collector Status:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:80 msgid "Number of Offline Records:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:85 msgid "" "NOTE: You are logged into a Remote Data Collector. When " "'online', you will be able to view and control much of the Main Cacti " "Web Site just as if you were logged into it. Also, it's important to note " "that Remote Data Collectors are required to use the Cacti's Performance " "Boosting Services 'On Demand Updating' feature, and we always " "recommend using Spine. When the Remote Data Collector is 'offline', " "the Remote Data Collectors Web Site will contain much less information. " "However, it will cache all updates until the Main Cacti Database and Web " "Server are reachable. Then it will dump it's Boost table output back to the " "Main Cacti Database for updating." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/index.php:90 msgid "" "NOTE: None of the Core Cacti Plugins, to date, have been re-" "designed to work with Remote Data Collectors. Therefore, Plugins such as " "MacTrack, and HMIB, which require direct access to devices will not work " "with Remote Data Collectors at this time. However, plugins such as Thold " "will work so long as the Remote Data Collector is in 'online' mode." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/functions.php:32 msgid "Local Connection Successful" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/functions.php:34 msgid "Local Connection Failed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/functions.php:45 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:755 msgid "Remote Connection Successful" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/functions.php:47 msgid "Remote Connection Failed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/functions.php:460 msgid "The path to your Cacti log file." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/functions.php:529 msgid "New Poller" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:57 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:62 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:67 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:337 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:861 msgid "Error" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:59 #, php-format msgid "" "This installation is already up-to-date. Click here to " "use Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:64 #, php-format msgid "" "You are attempting to install Cacti %s onto a 0.6.x database. To continue, " "you must create a new database, import \"cacti.sql\" into it, and update " "\"include/config.php\" to point to the new database." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:69 #, php-format msgid "" "You have created a new database, but have not yet imported the 'cacti.sql' " "file. At the command line, execute the following to continue:

    mysql -u %s -p %s < cacti.sql

    This error may also be " "generated if the cacti database user does not have correct permissions on " "the Cacti database. Please ensure that the Cacti database user has the " "ability to SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, DROP, INDEX on the " "Cacti database." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:71 #, php-format msgid "" "In Cacti %s, you must also import MySQL TimeZone information into MySQL and " "grant the Cacti user SELECT access to the mysql.time_zone_name table" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:74 msgid "On Linux/UNIX, do the following:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:74 msgid "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:76 msgid "" "On Windows, you must follow the instructions here Time zone description " "table. Once that is complete, you can issue the following command to " "grant the Cacti user access to the tables:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:78 #, php-format msgid "" "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:93 msgid "Begin" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:104 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:716 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:732 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:410 msgid "Next" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:120 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:137 msgid "Upgrade" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:122 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:139 msgid "Downgrade" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:339 #, php-format msgid "" "Invalid Cacti version %1$s, cannot upgrade to %2$s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:403 msgid "Cacti Server Installation/Upgrade" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:422 msgid "Cacti Installation Wizard" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:430 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:251 msgid "Cacti Version" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:430 msgid "License Agreement" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:432 msgid "" "Thanks for taking the time to download and install Cacti, the complete " "graphing solution for your network. Before you can start making cool graphs, " "there are a few pieces of data that Cacti needs to know." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:433 #, php-format msgid "" "Make sure you have read and followed the required steps needed to install " "Cacti before continuing. Install information can be found for Unix and Win32-based operating systems." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:435 #, php-format msgid "" "Note: This process will guide you through the steps for upgrading from " "version '%s'. " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:436 #, php-format msgid "" "Also, if this is an upgrade, be sure to reading the Upgrade information file." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:438 msgid "" "Cacti is licensed under the GNU General Public License, you must agree to " "its provisions before continuing:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:443 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:445 msgid "Accept GPL License Agreement" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:451 msgid "Pre-installation Checks" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:452 msgid "Location checks" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:483 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:494 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:498 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:509 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:518 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:674 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:679 msgid "ERROR:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:483 msgid "" "Please update config.php with the correct relative URI location of Cacti " "(url_path)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:485 msgid "" "Your Cacti configuration has the relative correct path (url_path) in config." "php." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:488 msgid "MySQL TimeZone Support" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:494 msgid "" "Your MySQL TimeZone database is not populated. Please populate this " "database before proceeding." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:498 msgid "" "Your Cacti database login account does not have access to the MySQL TimeZone " "database. Please provide the Cacti database account \"select\" access to " "the \"time_zone_name\" table in the \"mysql\" database, and populate MySQL's " "TimeZone information before proceeding." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:503 msgid "" "Your Cacti database account has access to the MySQL TimeZone database and " "that database is populated with global TimeZone information." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:506 msgid "MySQL Temporary Table Access" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:509 msgid "" "Your Database user account does not have permission to create temporary " "tables. Please add this permissiong before continuing." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:512 msgid "Your Database user account can create temporary tables." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:515 msgid "PHP Timezone Support" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:518 msgid "" "Your Web Servers PHP Timezone settings have not been set. Please edit php." "ini and uncomment the 'date.timezone' setting and set it to the Web Servers " "Timezone per the PHP installation instructions prior to installing Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:521 msgid "Your Web Servers PHP is properly setup with a Timezone." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:524 msgid "Required PHP Module Support" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:526 msgid "" "Cacti requires several PHP Modules to be installed to work properly. If any " "of these are not installed, you will be unable to continue the installation " "until corrected. In addition, for optimal system performance Cacti should be " "run with certain MySQL system variables set. Please follow the MySQL " "recommendations at your discretion. Always seek the MySQL documentation if " "you have any questions." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:528 msgid "" "The following PHP extensions are mandatory, and MUST be installed before " "continuing your Cacti install." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:530 msgid "Required PHP Modules" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:531 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:594 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:40 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:339 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:428 msgid "Installed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:531 msgid "Required" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:534 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:400 msgid "PHP Version" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:580 msgid "Optional PHP Module Support" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:582 msgid "" "The following PHP extensions are recommended, and should be installed before " "continuing your Cacti install." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:593 msgid "Optional Modules" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:594 msgid "Optional" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:605 msgid "" "These MySQL performance tuning settings will help your Cacti system perform " "better without issues for a longer time." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:607 msgid "Recommended MySQL System Variable Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:612 msgid "Installation Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:619 #, php-format msgid "Upgrade from %s to %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:620 msgid "" "WARNING - If you are upgrading from a previous version please close all " "Cacti browser sessions and clear cache before continuing. Additionally, " "after this script is complete, you will also have to refresh your page to " "load updated JavaScript so that the Cacti pages render properly. In Firefox " "and IE, you simply press F5. In Chrome, you may have to clear your browser " "cache for the Cacti web site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:623 #, php-format msgid "Downgrade from %s to %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:624 msgid "" "WARNING - Appears you are downgrading to a previous version. Database " "changes made for the newer version will not be reversed and could " "cause issues." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:628 msgid "Please select the type of installation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:630 msgid "Installation options:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:633 msgid "Choose this for the Primary site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:633 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:639 msgid "New Primary Server" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:634 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:640 msgid "New Remote Poller" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:634 msgid "" "Remote Pollers are used to access networks that are not readily accessible " "to the Primary site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:644 msgid "" "The following information has been determined from Cacti's configuration " "file. If it is not correct, please edit \"include/config.php\" before " "continuing." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:648 msgid "Local Cacti database connection information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:650 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:664 #, php-format msgid "Database: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:651 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:665 #, php-format msgid "Database User: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:652 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:666 #, php-format msgid "Database Hostname: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:653 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:667 #, php-format msgid "Port: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:654 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:668 #, php-format msgid "Server Operating System Type: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:662 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:671 msgid "Remote Poller Cacti database connection information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:674 msgid "" "Your config.php file must be writable by the web server during install in " "order to configure the Remote poller. Once installation is complete, you " "must set this file to Read Only to prevent possible security issues." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:679 msgid "" "Your Remote Cacti Poller information has not been included in your config." "php file. Please review the config.php.dist, and set the variables: " "$rdatabase_default, $rdatabase_username, etc. These variables must be " "set and point back to your Primary Cacti database server. Correct this and " "try again." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:681 msgid "The variables that must be set include the following:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:692 msgid "You must also set the $poller_id variable in the config.php." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:694 msgid "" "Once you have the variables set in the config.php file, you must also grant " "the $rdatabase_username access to the Cacti database. Follow the same " "procedure you would with any other Cacti install. You may then press the " "'Test Connection' button. If the test is successful you will be able to " "proceed and complete the install." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:754 msgid "Remote Database: " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:765 msgid "Critical Binary Locations and Versions" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:767 msgid "Make sure all of these values are correct before continuing." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:825 msgid "Directory Permission Checks" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:827 msgid "" "Please ensure the directory permissions below are correct before " "proceeding. During the install, these directories need to be owned by the " "Web Server user. These permission changes are required to allow the " "Installer to install Device Template packages which include XML and script " "files that will be placed in these directories. If you choose not to " "install the packages, there is an 'install_package.php' cli script that can " "be used from the command line after the install is complete." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:830 msgid "" "After the install is complete, you can make some of these directories read " "only to increase security." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:832 msgid "" "These directories will be required to stay read writable after the install " "so that the Cacti remote synchronization process can update them as the Main " "Cacti Web Site changes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:863 msgid "Required Writable at Install Time Only" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:866 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:876 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:886 #, php-format msgid "

    %s is Writable

    " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:868 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:878 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:888 #, php-format msgid "

    %s is Not Writable

    " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:873 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:883 msgid "Required Writable after Install Complete" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:896 #, php-format msgid "" "Make sure your webserver has read and write access to the entire folder " "structure.
    Example: chown -R apache.apache %s/resource/" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:897 msgid "" "For SELINUX-users make sure that you have the correct permissions or set " "'setenforce 0' temporarily." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:899 msgid "Check Permissions" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:901 msgid "All folders are writable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:907 msgid "" "If you are installing packages, once the packages are installed, you should " "change the scripts directory back to read only as this presents some " "exposure to the web site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:907 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:913 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:946 msgid "NOTE:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:913 msgid "" "For remote pollers, it is critical that the paths that you will be updating " "frequently, including the plugins, scripts, and resources paths have read/" "write access as the data collector will have to update these paths from the " "main web server content." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:920 msgid "Template Setup" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:922 msgid "" "Please select the Device Templates that you wish to use after the Install. " "If you Operating System is Windows, you need to ensure that you select the " "'Windows Device' Template. If your Operating System is Linux/UNIX, make " "sure you select the 'Local Linux Machine' Device Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:924 msgid "" "Device Templates allow you to monitor and graph a vast assortment of data " "within Cacti. After you select the desired Device Templates, press 'Finish' " "and the installation will complete. Please be patient on this step, as the " "importation of the Device Templates can take a few minutes." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:930 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:426 msgid "Author" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:930 msgid "Homepage" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:948 msgid "" "Press 'Finish' to complete the installation process after selecting your " "Device Templates." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:952 msgid "Upgrade Results" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:959 msgid "[Fail]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:960 msgid "[Success]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:961 msgid "[Skipped]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:965 msgid "Database upgrade completed!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:969 msgid "Version: " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:986 msgid "" "One or more of the SQL queries needed to upgraded your Cacti installation " "has failed. Please see below for more details. Your Cacti MySQL user must " "have SELECT, INSERT, UPDATE, DELETE, ALTER, CREATE, and DROP permissions. You should try executing the failed queries as \"root\" " "to ensure that you do not have a permissions problem." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:986 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2112 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2113 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2116 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2117 msgid "WARNING:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:991 msgid "No database action needed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:996 msgid "Important Upgrade Notice" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:997 msgid "" "Before you continue with the installation, you must update " "your /etc/crontab file to point to poller.php instead of " "cmd.php." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:998 msgid "" "See the sample crontab entry below with the change made in red. Your crontab " "line will look slightly different based upon your setup." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:1000 msgid "Once you have made this change, please click Finish to continue." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:1008 msgctxt "Dialog: previous" msgid "Previous" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:1009 msgctxt "Dialog: complete" msgid "Finish" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:1010 msgctxt "Dialog: test connection" msgid "Test Connection" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:1010 msgid "Test remote database connection" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:1034 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:1036 #: /tmp/cacti_package.2719/cacti-1.1.38/install/index.php:1038 msgid "Finish" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/aggregate.php:51 msgid "Display Graphs from this Aggregate" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1169 msgid "" "The Graphs chosen for the Aggregate Graph below represent Graphs from " "multiple Graph Templates. Aggregate does not support creating Aggregate " "Graphs from multiple Graph Templates." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1170 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1189 msgid "Press 'Return' to return and select different Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1188 msgid "" "The Graphs chosen for the Aggregate Graph do not use Graph Templates. " "Aggregate does not support creating Aggregate Graphs from non-templated " "graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1294 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2083 msgid "Graph Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1294 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2215 msgid "Graph Template Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1298 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:949 msgid "Graph Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1301 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:952 msgid "CF Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1302 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:954 msgid "Item Color" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1303 msgid "Color Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1304 msgid "Skip" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1372 msgid "Aggregate Items are not modifyable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_aggregate.php:1383 msgid "Aggregate Items are not editable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:132 msgid "Matching Devices" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:147 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1025 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:432 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:325 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1251 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1520 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1531 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2705 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:314 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1084 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2443 msgid "Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:306 msgid "No Matching Devices" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:415 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:690 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:830 msgid "Matching Objects" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:705 msgid "Objects" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:753 msgid "Not Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:784 msgid "" "A blue font color indicates that the rule will be applied to the objects in " "question. Other objects will not be subject to the rule." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:784 #, php-format msgid "Matching Objects [ %s ]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:841 msgid "Device Status" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:863 msgid "There are no Objects that match this rule." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:907 msgid "Error in data query" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1011 msgid "Matching Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1173 msgid "Resulting Branch" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1212 msgid "No Items Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1240 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1302 msgid "Field" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1242 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1304 msgid "Pattern" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1254 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1316 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1380 #, php-format msgid "Item#%d" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1285 msgid "No Device Selection Criteria" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1346 msgid "No Graph Creation Criteria" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1365 msgid "Propagate Change" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1366 msgid "Search Pattern" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1367 msgid "Replace Pattern" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1411 msgid "No Tree Creation Criteria" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1872 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1922 msgid "Device Match Rule" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1887 msgid "Create Graph Rule" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1926 msgid "Graph Match Rule" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1951 msgid "Create Tree Rule (Device)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1955 msgid "Create Tree Rule (Graph)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1975 #, php-format msgid "Rule Item [edit rule item for %s: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:1977 #, php-format msgid "Rule Item [new rule item for %s: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_automation.php:2668 msgid "Added by Cacti Automation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:407 msgid "ERROR: Failed to connect to remote collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:414 msgid "Device is Disabled" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:415 msgid "Device Availability Check Bypassed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:422 msgid "SNMP Information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:426 msgid "SNMP not in use" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:435 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:443 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:458 msgid "SNMP error" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:435 msgid "Session" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:458 msgid "Host" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:469 msgid "System:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:475 msgid "Uptime:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:476 msgid "days" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:476 msgid "hours" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:476 msgid "minutes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:477 msgid "Hostname:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:478 msgid "Location:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:479 msgid "Contact:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:510 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4015 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4017 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4021 msgid "Ping Results" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_device.php:515 msgid "No Ping or SNMP Availability Check in Use" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/api_tree.php:187 msgid "New Branch" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:373 msgid "Web Basic" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:1458 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:1490 msgid "Branch:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:1467 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:1499 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:620 msgid "Device:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:1902 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:1911 msgid "This account has been locked." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:1954 #, php-format msgid "Password must be at least %d characters!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:1960 msgid "Your password must contain at least 1 numerical character!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:1964 msgid "" "Your password must contain a mix of lower case and upper case characters!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/auth.php:1970 msgid "Your password must contain at least 1 special character!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:197 msgid "" "Click 'Continue' to purge the Log File.


    Note: If logging is set " "to both Cacti and Syslog, the log information will remain in Syslog." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:203 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1076 msgid "Purge Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:227 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1008 msgid "Log Filters" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:244 msgid " - Admin Filter in Affect" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:246 msgid " - No Admin Filter in Affect" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:249 msgid " - Admin View" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:254 #, php-format msgid "Log [Total Lines: %d %s - Additional Filter in Affect]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:256 #, php-format msgid "Log [Total Lines: %d %s - No Other Filter in Affect]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:266 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1160 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1498 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1705 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1784 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2437 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2646 msgid "Entries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:345 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1017 msgid "File" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:405 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1061 msgid "Tail Lines" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:437 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1089 msgid "Stats" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:440 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1092 msgid "Debug" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:441 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1093 msgid "SQL Calls" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:445 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1097 msgid "Display Order" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:449 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1101 msgid "Newest First" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/clog_webapi.php:450 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1102 msgid "Oldest First" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:75 #, php-format msgid "Running data query [%s]." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:84 #, php-format msgid "Found type = '%s' [%s]." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:106 #, php-format msgid "Unknown type = '%s'." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:113 msgid "Update data query sort cache complete" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:143 msgid "Updated data query index ordering" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:147 msgid "Update re-index cache complete" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:151 msgid "Update data query cache complete" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:155 msgid "Update poller cache from query complete" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:160 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:167 msgid "Automation execute data query complete" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:163 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:170 msgid "Plugin hooks complete" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:244 #, php-format msgid "Could not find data query XML file at '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:248 #, php-format msgid "Found data query XML file at '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:266 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:416 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:1540 msgid "Error parsing XML file into an array." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:270 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:420 msgid "XML file parsed ok." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:278 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:423 #, php-format msgid "Invalid field <index_order>%s</index_order>" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:279 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:424 msgid "" "Must contain <direction>input</direction> or <direction>" "input-output</direction> fields only" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:290 #, php-format msgid "Executing script for num of indexes '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:292 #, php-format msgid "Found number of indexes: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:296 msgid "" "<arg_num_indexes> missing in XML file, 'Index Count Changed' not " "supported" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:298 msgid "" "<arg_num_indexes> missing in XML file, 'Index Count Changed' emulated " "by counting arg_index entries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:308 #, php-format msgid "Executing script for list of indexes '%s', Index Count: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:310 msgid "Click to show Data Query output for 'index'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:313 #, php-format msgid "Found index: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:326 #, php-format msgid "Click to show Data Query output for sfield '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:330 #, php-format msgid "Executing script query '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:339 #, php-format msgid "Found item [%s='%s'] index: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:375 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:390 #, php-format msgid "Total: %f, Delta: %f, %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:410 #, php-format msgid "Invalid host_id: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:435 msgid "Failed to load SNMP session." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:444 #, php-format msgid "Executing SNMP get for num of indexes @ '%s' Index Count: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:446 msgid "" "<oid_num_indexes> missing in XML file, 'Index Count Changed' emulated " "by counting oid_index entries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:452 #, php-format msgid "Executing SNMP walk for list of indexes @ '%s' Index Count: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:456 msgid "No SNMP data returned" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:461 #, php-format msgid "Index found at OID: '%s' value: '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:474 #, php-format msgid "index_parse at OID: '%s' results: '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:492 #, php-format msgid "" "Fixing wrong 'method' field for '%s' since 'rewrite_index' or 'oid_suffix' " "is defined" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:499 #, php-format msgid "Inserting index data for field '%s' [value='%s']" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:504 #, php-format msgid "Located input field '%s' [get]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:513 #, php-format msgid "Found OID rewrite rule: 's/%s/%s/'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:524 #, php-format msgid "oid_rewrite at OID: '%s' new OI: '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:545 #, php-format msgid "Executing SNMP get for data @ '%s' [value='%s']" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:555 #, php-format msgid "Field '%s' %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:590 #, php-format msgid "Executing SNMP get for %s oids" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:626 #, php-format msgid "Got SNMP get result for data @ '%s' [value='%s'] (index: %s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:655 #, php-format msgid "Executing SNMP get for data @ '%s' [value='$value']" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:661 #, php-format msgid "Click to show Data Query output for field '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:663 #, php-format msgid "Located input field '%s' [walk]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:690 #, php-format msgid "Executing SNMP walk for data @ '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:740 #, php-format msgid "Found item [%s='%s'] index: %s [from %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:778 #, php-format msgid "Found OCTET STRING '%s' decoded value: '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:784 #, php-format msgid "Found item [%s='%s'] index: %s [from regexp oid parse]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:808 #, php-format msgid "Found item [%s='%s'] index: %s [from regexp oid value parse]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/data_query.php:1173 msgid "Update data source data query cache complete" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:696 #, php-format msgid "Error %s is not readable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:1959 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:1964 msgid "Logged in as" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:1959 msgid "Login as Regular User" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:1959 msgid "guest" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:1966 msgid "Edit Profile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:1968 msgid "Logout" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:1985 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:1991 msgid "User Profile (Edit)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2003 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2009 msgid "Tree Mode" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2015 msgid "List Mode" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2047 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2053 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2927 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1418 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1495 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:343 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1643 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1396 msgid "Console" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2065 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2107 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2125 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2179 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2191 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2203 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2239 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2257 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2275 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2293 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2311 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2335 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2371 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2491 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2515 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2539 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2557 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2569 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2671 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2695 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2713 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2731 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2749 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2773 msgid "(Edit)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2089 msgid "Create New Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2095 msgid "Create Graphs from Data Query" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2113 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2131 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2227 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2317 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2341 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2497 msgid "(Remove)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2149 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2155 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2161 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2167 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2431 msgid "View Cacti Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2173 msgid "Graph Trees" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2305 msgid "Round Robin Archives" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2347 msgid "Data Input Fields" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2353 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2383 msgid "(Remove Item)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2401 msgid "List unused Files" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2413 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2425 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1878 msgid "View Poller Cache" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2419 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1882 msgid "View Data Query Cache" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2437 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1244 msgid "Clear Cacti Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2443 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1871 msgid "View User Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2449 msgid "Clear User Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2455 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1862 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1863 msgid "Technical Support" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2461 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1979 msgid "Boost Status" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2467 msgid "View SNMP Agent Cache" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2473 msgid "View SNMP Agent Notification Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2503 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:576 msgid "VDEF Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2509 msgid "View SNMP Notification Receivers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2521 msgid "Cacti Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2527 msgid "External Link" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2545 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2575 msgid "(Action)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2593 msgid "Export Results" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2605 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2635 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1439 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1441 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1522 msgid "Reporting" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2611 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2641 msgid "Report Add" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2617 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2647 msgid "Report Delete" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2623 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2653 msgid "Report Edit" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2629 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2659 msgid "Report Edit Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2683 msgid "Color Template Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2725 msgid "Aggregate Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2761 msgid "Graph Rule Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2785 msgid "Tree Rule Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2884 msgid "Leaf" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:2898 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:603 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:606 msgid "Non Query Based" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3632 msgid "" "Mailer Error: No TO address set!!
    If using the Test Mail " "link, please set the Alert e-mail setting." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3948 #, php-format msgid "Authentication failed: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3952 #, php-format msgid "HELO failed: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3955 #, php-format msgid "Connect failed: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3958 msgid "SMTP error: " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3971 msgid "" "This is a test message generated from Cacti. This message was sent to test " "the configuration of your Mail Settings." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3972 msgid "Your email settings are currently set as follows" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3973 msgid "Method" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3975 msgid "Checking Configuration...
    " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3982 msgid "PHP's Mailer Class" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:3988 msgid "Method: SMTP" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4003 msgid "Not Shown for Security Reasons" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4004 msgid "Security" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4012 msgid "Ping Results:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4021 msgid "Bypassed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4029 msgid "Creating Message Text..." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4032 msgid "Sending Message..." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4036 msgid "Cacti Test Message" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4038 msgid "Success!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/functions.php:4041 msgid "Message Not Sent due to ping failure." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:295 msgid "Data Query:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:355 msgid "CSV Export of Graph Data" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:367 msgid "Kill Spikes in Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:404 msgid "Previous" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:407 #, php-format msgid "%d to %d of %s [ %s ]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:416 #, php-format msgid "All %d %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:422 #, php-format msgid "No %s Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:953 msgid "Alpha %" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:994 msgid "No Task" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1239 msgid "Choose an action" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1249 msgid "Execute Action" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1448 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1450 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1533 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:41 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:221 msgid "Logs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1856 msgid "Standard Deviations" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1858 #, php-format msgid "%s Standard Deviations" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1868 msgid "Variance Outliers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1870 #, php-format msgid "%d Outliers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1874 msgid "Kills Per RRA" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1876 #, php-format msgid "%d Spikes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1883 msgid "Remove StdDev" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1884 msgid "Remove Variance" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1885 msgid "Gap Fill Range" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1886 msgid "Float Range" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1887 msgid "Dry Run StdDev" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1888 msgid "Dry Run Variance" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1889 msgid "Dry Run Gap Fill Range" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html.php:1890 msgid "Dry Run Float Range" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_filter.php:82 msgid "Apply filter to table" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_filter.php:87 msgid "Reset filter to default values" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:517 msgid "File Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:519 msgid "Path is a Directory and not a File" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:523 msgid "File is Not Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:526 msgid "Enter a valid file path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:562 msgid "Directory Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:564 msgid "Path is a File and not a Directory" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:568 msgid "Directory is Not found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:571 msgid "Enter a valid directory path" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1040 #, php-format msgid "Cacti Color (%s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form.php:1097 msgid "NO FONT VERIFICATION POSSIBLE" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form_template.php:569 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_form_template.php:584 #, php-format msgid "Data Query Data Sources must be created through %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:188 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:677 msgid "" "Save the current Graphs, Columns, Thumbnail, Preset, and Timeshift " "preferences to your profile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:218 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:701 msgid "Columns" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:222 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:705 #, php-format msgid "%d Column" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:233 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:125 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:716 msgid "Thumbnails" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:252 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:735 msgid "Custom" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:265 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1518 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1529 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:748 msgid "From" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:270 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:753 msgid "Start Date Selector" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:274 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1519 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1530 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:757 msgid "To" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:279 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:762 msgid "End Date Selector" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:284 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:767 msgid "Shift Time Backward" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:285 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:768 msgid "Define Shifting Interval" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:296 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:779 msgid "Shift Time Forward" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:301 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:784 msgid "Refresh selected time span" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:302 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:785 msgid "Return to the default time span" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:322 msgid "Interval" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:334 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:815 msgid "Stop" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_graph.php:417 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:899 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:343 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:362 #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:411 msgid "Enter keyword" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:35 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1513 msgid "Report Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:37 msgid "New Report" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:38 msgid "Give this Report a descriptive Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:43 msgid "Enable Report" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:46 msgid "Check this box to enable this Report." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:51 msgid "Output Formatting" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:56 msgid "Use Custom Format HTML" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:59 msgid "Check this box if you want to use custom html and CSS for the report." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:64 msgid "Format File to Use" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:67 msgid "" "Choose the custom html wrapper and CSS file to use. This file contains both " "html and CSS to wrap around your report.\n" "\t\tIf it contains more than simply CSS, you need to place a special " " tag inside of the file. This format tag will be replaced by the " "report content. These files are located in the 'formats' directory." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:73 msgid "Default Text Font Size" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:74 msgid "" "Defines the default font size for all text in the report including the " "Report Title." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:81 msgid "Default Object Alignment" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:82 msgid "Defines the default Alignment for Text and Graphs." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:89 msgid "Graph Linked" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:92 msgid "Should the Graphs be linked back to the Cacti site?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:96 msgid "Graph Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:101 msgid "Graph Columns" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:105 msgid "The number of Graph columns." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:113 msgid "The Graph width in pixels." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:121 msgid "The Graph height in pixels." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:128 msgid "Should the Graphs be rendered as Thumbnails?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:132 msgid "Email Frequency" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:137 msgid "Next Timestamp for Sending Mail Report" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:138 msgid "" "Start time for [first|next] mail to take place. All future mailing times " "will be based upon this start time. A good example would be 2:00am. The time " "must be in the future. If a fractional time is used, say 2:00am, it is " "assumed to be in the future." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:146 msgid "Report Interval" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:147 msgid "Defines a Report Frequency relative to the given Mailtime above." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:148 msgid "e.g. 'Week(s)' represents a weekly Reporting Interval." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:155 msgid "Interval Frequency" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:156 msgid "" "Based upon the Timespan of the Report Interval above, defines the Frequency " "within that Interval." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:157 msgid "" "e.g. If the Report Interval is 'Month(s)', then '2' indicates Every '2 " "Month(s) from the next Mailtime.' Lastly, if using the Month(s) Report " "Intervals, the 'Day of Week' and the 'Day of Month' are both calculated " "based upon the Mailtime you specify above." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:165 msgid "Email Sender/Receiver Details" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:170 msgid "Subject" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:172 msgid "Cacti Report" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:173 msgid "" "This value will be used as the default Email subject. The report name will " "be used if left blank." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:181 msgid "This Name will be used as the default E-mail Sender" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:189 msgid "This Address will be used as the E-mail Senders address" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:194 msgid "To Email Address(es)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:200 msgid "Please separate multiple addresses by comma (,)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:205 msgid "BCC Address(es)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:211 msgid "Blind carbon copy. Please separate multiple addresses by comma (,)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:216 msgid "Image attach type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:219 msgid "Select one of the given Types for the Image Attachments" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:328 msgid "Item Type to be added." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:334 msgid "Graph Tree" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:338 msgid "Select a Tree to use." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:344 msgid "Graph Tree Branch" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:348 msgid "Select a Tree Branch to use." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:370 msgid "Cascade to Branches" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:373 msgid "Should all children branch Graphs be rendered?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:377 msgid "Graph Name Regular Expression" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:380 msgid "" "A Perl compatible regular expression (REGEXP) used to select graphs to " "include from the tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:390 msgid "Select a Device Template to use." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:399 msgid "Select a Device to specify a Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:409 msgid "Select a Graph Template for the host" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:419 msgid "The Graph to use for this report item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:429 msgid "Graph End Time is always set to Cacti's schedule." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:430 msgid "Graph Start Time equals Graph End Time minus given timespan" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:435 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1254 msgid "Alignment" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:438 msgid "Alignment of the Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:443 msgid "Fixed Text" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:446 msgid "Enter descriptive Text" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:451 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1255 msgid "Font Size" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:455 msgid "Font Size of the Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:518 msgid "Date/Time moved to the same time Tomorrow" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:701 msgid "You must select at least one Report." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:709 msgid "Click 'Continue' to delete the following Report(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:716 msgid "Click 'Continue' to take ownership of the following Report(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:723 msgid "" "Click 'Continue' to duplicate the following Report(s). You may optionally " "change the title for the new Reports" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:725 msgid "Name Format:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:735 msgid "Click 'Continue' to enable the following Report(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:737 msgid "" "Please be certain that those Report(s) have successfully been tested first!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:743 msgid "Click 'Continue' to disable the following Reports." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:750 msgid "Click 'Continue' to send the following Report(s) now." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:796 #, php-format msgid "Unable to send Report '%s'. Please set destination e-mail addresses" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:801 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail subject" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:806 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail From Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:811 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail from address" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:856 #, php-format msgid "Report Item [edit Report: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:858 #, php-format msgid "Report Item [new Report: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1100 msgid "Events" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1102 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1889 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1951 msgid "[new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1134 msgid "Send Report" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1212 msgid "Scheduled Events" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1223 msgid "Report Preview" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1252 msgid "Item Details" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1253 msgid "Timespan" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1292 msgid "(All Branches)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1294 msgid "(Current Branch)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1337 msgid "No Report Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1411 msgid "Administrator Level" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1411 #, php-format msgid "Reports [%s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1411 msgid "User Level" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1434 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1505 msgid "Reports" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1514 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1757 msgid "Owner" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1515 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1526 msgid "Frequency" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1516 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1527 msgid "Last Run" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1517 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1528 msgid "Next Run" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1525 msgid "Report Title" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1556 msgid "Report Disabled - No Owner" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1560 msgid "Every" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1566 msgid "Multiple" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1567 msgid "Invalid" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_reports.php:1574 msgid "No Reports Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:600 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:603 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:606 msgid "Graph Template:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:612 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:907 msgid "Tree:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:616 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:912 msgid "Leaf:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:627 msgid "Applied" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:627 msgid "Filter" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:627 msgid "Graph Filters" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:674 msgid "Set/Refresh Filter" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_tree.php:1001 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:1024 msgid "(No Graph Template)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:233 msgid "Selected" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:439 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:659 #, php-format msgid "The search term \"%s\" is not valid. Error is %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:805 msgid "There was an internal error!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:806 msgid "Backtrack limit was exhausted!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:807 msgid "Recursion limit was exhausted!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:808 msgid "Bad UTF-8 error!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_utility.php:809 msgid "Bad UTF-8 offset error!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_validate.php:51 #, php-format msgid "" "Validation error for variable %s with a value of %s. See backtrace below " "for more details." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/html_validate.php:59 msgid "Validation Error" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:229 msgid "written" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:231 msgid "could not open" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:237 msgid "not exists" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:240 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:244 msgid "not writable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:246 msgid "writable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1635 msgid "Unknown Field" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1850 msgid "Import Preview Results" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1850 msgid "Import Results" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1854 msgid "Cacti would make the following changes if the Package was imported:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1856 msgid "Cacti has imported the following items for the Package:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1859 msgid "Package Files" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1863 msgid "[preview] " msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1868 msgid "Cacti would make the following changes if the Template was imported:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1870 msgid "Cacti has imported the following items for the Template:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1879 msgid "[success]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1881 msgid "[fail]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1883 msgid "[preview]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1887 msgid "[updated]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1891 msgid "[unchanged]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1927 msgid "Found Dependency:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/import.php:1929 msgid "Unmet Dependency:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:185 msgid "Authentication Success" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:189 msgid "Authentication Failure" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:193 msgid "PHP LDAP not enabled" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:197 msgid "No username defined" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:201 msgid "Protocol Error, Unable to set version" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:205 msgid "Protocol Error, Unable to set referrals option" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:209 msgid "Protocol Error, unable to start TLS communications" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:213 #, php-format msgid "Protocol Error, General failure (%s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:217 #, php-format msgid "Protocol Error, Unable to bind, LDAP result: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:221 msgid "Unable to Connect to Server" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:225 msgid "Connection Timeout" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:229 msgid "Insufficient access" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:233 msgid "Group DN could not be found to compare" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:237 msgid "More than one matching user found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:241 msgid "Unable to find user from DN" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:245 msgid "Unable to find users DN" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:249 msgid "Unable to create LDAP connection object" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:253 msgid "Specific DN and Password required" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ldap.php:257 #, php-format msgid "Unexpected error %s (Ldap Error: %s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:130 msgid "ICMP Ping timed out" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:202 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:220 #, php-format msgid "ICMP Ping Success (%s ms)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:207 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:225 msgid "ICMP ping Timed out" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:232 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:451 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:580 msgid "Destination address not specified" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:329 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:466 msgid "default" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:357 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:366 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:494 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:503 msgid "Please upgrade to PHP 5.5.4+ for IPv6 support!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:389 #, php-format msgid "UDP ping error: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:429 #, php-format msgid "UDP Ping Success (%s ms)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:526 #, php-format msgid "TCP ping: socket_connect(), reason: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:544 #, php-format msgid "TCP ping: socket_select() failed, reason: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:559 #, php-format msgid "TCP Ping Success (%s ms)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:569 msgid "TCP ping timed out" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/ping.php:596 msgid "Ping not performed due to setting." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/plugins.php:488 #, php-format msgid "Plugin %s is required for %s, and it is not installed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/plugins.php:495 msgid "Plugin cannot be installed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/plugins.php:769 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/plugins.php:776 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:318 msgid "Plugin Management" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/plugins.php:787 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/plugins.php:793 #, php-format msgid "Requires: Cacti >= %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/plugins.php:790 msgid "Legacy Plugin" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:917 msgid "Host:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:922 msgid "Graph:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:1453 msgid "Add to Report" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:1471 msgid "" "Choose the Report to associate these graphs with. The defaults for " "alignment will be used for each graph in the list below." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:1473 msgid "Report:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:1481 msgid "Graph Timespan:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:1484 msgid "Graph Alignment:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:1573 #, php-format msgid "Created Report Graph Item '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:1575 #, php-format msgid "Failed Adding Report Graph Item '%s' Already Exists" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/reports.php:1578 #, php-format msgid "Skipped Report Graph Item '%s' Already Exists" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2466 #, php-format msgid "Required RRD step size is '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2504 #, php-format msgid "Type for Data Source '%s' should be '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2509 #, php-format msgid "Heartbeat for Data Source '%s' should be '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2517 #, php-format msgid "RRD minimum for Data Source '%s' should be '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2541 #, php-format msgid "RRD maximum for Data Source '%s' should be '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2551 #, php-format msgid "DS '%s' missing in RRDfile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2560 #, php-format msgid "DS '%s' missing in Cacti definition" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2577 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2578 #, php-format msgid "Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2592 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2593 #, php-format msgid "File RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2624 #, php-format msgid "XFF for cacti RRA id '%s' should be '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2628 #, php-format msgid "Number of rows for Cacti RRA id '%s' should be '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2644 #, php-format msgid "RRA '%s' missing in RRDfile" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2653 #, php-format msgid "RRA '%s' missing in Cacti definition" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2672 msgid "RRD File Information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2704 msgid "Data Source Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2706 msgid "Minimal Heartbeat" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2707 msgid "Min" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2708 msgid "Max" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2709 msgid "Last DS" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2711 msgid "Unknown Sec" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2739 msgid "Round Robin Archive" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2742 msgid "Cur Row" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2743 msgid "PDP per Row" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2745 msgid "CDP Prep Value (0)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2746 msgid "CDP Unknown Data points (0)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2823 #, php-format msgid "rename %s to %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2873 msgid "Error while parsing the XML of rrdtool dump" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2905 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2960 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:3016 #, php-format msgid "ERROR while writing XML file: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2916 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2971 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:3027 #, php-format msgid "ERROR: RRDfile %s not writeable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2943 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:2999 msgid "Error while parsing the XML of RRDtool dump" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:3232 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) removed from RRD file\n" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:3266 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) adding to RRD file\n" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/rrd.php:3376 msgid "Unknown RRDtool Error" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:686 msgid "" "MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions " "to choose. Make sure you run the very latest release though which fixes a " "long standing low level networking issue that was causing spine many issues " "with reliability." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:698 #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:728 #, php-format msgid "" "It is recommended that you enable InnoDB in any %s version greater than 5.1." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:711 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8_general_ci collation type as some characters take more than a " "single byte. If you are first just now installing Cacti, stop, make the " "changes and start over again. If your Cacti has been running and is in " "production, see the internet for instructions on converting your databases " "and tables if you plan on supporting other languages." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:717 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8 character set as some characters take more than a single byte. If " "you are first just now installing Cacti, stop, make the changes and start " "over again. If your Cacti has been running and is in production, see the " "internet for instructions on converting your databases and tables if you " "plan on supporting other languages." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:741 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8mb4_unicode_ci collation type as some characters take more than a " "single byte." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:747 msgid "" "When using Cacti with languages other than English, it is important to use " "the utf8mb4 character set as some characters take more than a single byte." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:756 #, php-format msgid "" "Depending on the number of logins and use of spine data collector, %s will " "need many connections. The calculation for spine is: total_connections = " "total_processes * (total_threads + script_servers + 1), then you must leave " "headroom for user connections, which will change depending on the number of " "concurrent login accounts." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:761 #, php-format msgid "" "If using the Cacti Performance Booster and choosing a memory storage engine, " "you have to be careful to flush your Performance Booster buffer before the " "system runs out of memory table space. This is done two ways, first " "reducing the size of your output column to just the right size. This column " "is in the tables poller_output, and poller_output_boost. The second thing " "you can do is allocate more memory to memory tables. We have arbitrarily " "chosen a recommended value of 10% of system memory, but if you are using SSD " "disk drives, or have a smaller system, you may ignore this recommendation or " "choose a different storage engine. You may see the expected consumption of " "the Performance Booster tables under Console -> System Utilities -> View " "Boost Status." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:766 msgid "" "Keeping the table cache larger means less file open/close operations when " "using innodb_file_per_table." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:771 msgid "" "With Remote polling capabilities, large amounts of data will be synced from " "the main server to the remote pollers. Therefore, keep this value at or " "above 16M." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:776 msgid "" "When executing subqueries, having a larger temporary table size, keep those " "temporary tables in memory." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:781 msgid "" "When performing joins, if they are below this size, they will be kept in " "memory and never written to a temporary file." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:786 #, php-format msgid "" "When using InnoDB storage it is important to keep your table spaces " "separate. This makes managing the tables simpler for long time users of " "%s. If you are running with this currently off, you can migrate to the per " "file storage by enabling the feature, and then running an alter statement on " "all InnoDB tables." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:791 #, php-format msgid "" "InnoDB will hold as much tables and indexes in system memory as is " "possible. Therefore, you should make the innodb_buffer_pool large enough to " "hold as much of the tables and index in memory. Checking the size of the /" "var/lib/mysql/cacti directory will help in determining this value. We are " "recommending 25% of your systems total memory, but your requirements will " "vary depending on your systems size." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:796 #, php-format msgid "" "With modern SSD type storage, this operation actually degrades the disk more " "rapidly and adds a 50% overhead on all write operations." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:801 msgid "" "This is where metadata is stored. If you had a lot of tables, it would be " "useful to increase this." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:806 msgid "" "Rogue queries should not for the database to go offline to others. Kill " "these queries before they kill your system." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:815 #, php-format msgid "" "Setting this value to 2 means that you will flush all transactions every " "second rather than at commit. This allows %s to perform writing less often." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:820 msgid "" "With modern SSD type storage, having multiple io threads is advantageous for " "applications with high io characteristics." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:828 #, php-format msgid "" "As of %s %s, the you can control how often %s flushes transactions to disk. " "The default is 1 second, but in high I/O systems setting to a value greater " "than 1 can allow disk I/O to be more sequential" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:833 msgid "" "With modern SSD type storage, having multiple read io threads is " "advantageous for applications with high io characteristics." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:838 msgid "" "With modern SSD type storage, having multiple write io threads is " "advantageous for applications with high io characteristics." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:843 #, php-format msgid "" "%s will divide the innodb_buffer_pool into memory regions to improve " "performance. The max value is 64. When your innodb_buffer_pool is less " "than 1GB, you should use the pool size divided by 128MB. Continue to use " "this equation upto the max of 64." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:848 #, php-format msgid "%s Tuning" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:848 msgid "Documentation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:848 msgid "Note: Many changes below require a database restart" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:855 msgid "Variable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:856 msgid "Current Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:857 msgid "Recommended Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/utility.php:858 msgid "Comments" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/lib/vdef.php:75 msgid "A useful name for this VDEF." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:191 msgid "Click 'Continue' to Enable the following Page(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:196 msgid "Enable Page(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:200 msgid "Click 'Continue' to Disable the following Page(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:205 msgid "Disable Page(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:209 msgid "Click 'Continue' to Delete the following Page(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:214 msgid "Delete Page(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:217 msgid "You must select at least one page." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:315 msgid "Links" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:329 msgid "Apply Filter" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:330 msgid "Reset filters" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:344 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:507 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1644 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1397 msgid "Top Tab" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:345 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1645 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1398 msgid "Bottom Console" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:346 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1646 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1399 msgid "Top Console" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:377 msgid "Page" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:379 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:499 #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:504 msgid "Style" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:391 msgid "Edit Page" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:394 msgid "View Page" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:418 msgid "Sort for Ordering" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:427 msgid "No Pages Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:508 msgid "Console Menu" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:509 msgid "Bottom of Console Page" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:510 msgid "Top of Console Page" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:512 msgid "Where should this page appear?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:516 msgid "Console Menu Section" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:519 msgid "" "Under which Console heading should this item appear? (All External Link " "menus will appear between Configuration and Utilities)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:523 msgid "New Console Section" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:526 msgid "If you don't like any of the choices above, type a new title in here." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:530 msgid "Tab/Menu Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:533 msgid "The text that will appear in the tab or menu." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:537 msgid "Content File/URL" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:541 msgid "Web URL Below" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:542 msgid "" "The file that contains the content for this page. This file needs to be in " "the Cacti 'include/content/' directory." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:546 msgid "Web URL Location" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:548 msgid "" "The valid URL to use for this external link. Must include the type, for " "example http://www.cacti.net. Note that many websites do not allow them to " "be embedded in an iframe from a foreign site, and therefore External Linking " "may not work." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:566 #, php-format msgid "External Links [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/links.php:568 msgid "External Links [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/logout.php:46 #: /tmp/cacti_package.2719/cacti-1.1.38/logout.php:82 msgid "Logout of Cacti" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/logout.php:53 #: /tmp/cacti_package.2719/cacti-1.1.38/logout.php:89 msgid "Automatic Logout" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/logout.php:55 #: /tmp/cacti_package.2719/cacti-1.1.38/logout.php:91 msgid "You have been logged out of Cacti due to a session timeout." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/logout.php:56 #: /tmp/cacti_package.2719/cacti-1.1.38/logout.php:92 #, php-format msgid "Please close your browser or %sLogin Again%s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:40 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:220 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:571 msgid "Notifications" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:141 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1923 msgid "SNMP Notification Receivers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:156 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:225 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:500 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:800 msgid "Receivers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:217 msgid "Id" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:251 msgid "No SNMP Notification Receivers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:282 #, php-format msgid "SNMP Notification Receiver [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:284 msgid "SNMP Notification Receiver [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:479 #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:564 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2369 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2443 msgid "MIB" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:563 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1504 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2443 msgid "OID" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:565 msgid "Kind" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:566 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2443 msgid "Max-Access" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:567 msgid "Monitored" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:603 msgid "No SNMP Notifications" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:732 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2620 msgid "Severity" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:748 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2664 msgid "Purge Notification Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:795 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2718 msgid "Time" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:796 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2718 msgid "Notification" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:797 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2718 msgid "Varbinds" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:814 msgid "Severity Level" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:831 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2740 msgid "No SNMP Notification Log Entries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:991 msgid "Click 'Continue' to delete the following Notification Receiver" msgid_plural "Click 'Continue' to delete following Notification Receiver" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:993 msgid "Click 'Continue' to enable the following Notification Receiver" msgid_plural "Click 'Continue' to enable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:995 msgid "Click 'Continue' to disable the following Notification Receiver" msgid_plural "Click 'Continue' to disable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1005 #, php-format msgid "%s Notification Receivers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1007 msgid "You must select at least one Notification Receiver." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1052 msgid "" "Click 'Continue' to forward the following Notification Objects to this " "Notification Receiver." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1053 msgid "" "Click 'Continue' to disable forwarding the following Notification Objects to " "this Notification Receiver." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1062 msgid "Disable Notification Objects" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/managers.php:1064 msgid "You must select at least one notification object." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:28 msgid "Install" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:31 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:490 msgid "Uninstall" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:35 msgid "Not Compatible" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:36 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:342 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:430 msgid "Not Installed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:38 msgid "Awaiting Configuration" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:39 msgid "Awaiting Upgrade" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:180 msgid "Not Stated" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:340 msgid "Active/Installed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:341 msgid "Configuration Issues" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:346 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:413 msgid "Plugins" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:422 msgid "" "Actions available include 'Install', 'Activate', 'Disable', 'Enable', " "'Uninstall'." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:423 msgid "Plugin Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:423 msgid "" "The name for this Plugin. The name is controlled by the directory it " "resides in." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:424 msgid "A description that the Plugins author has given to the Plugin." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:424 msgid "Plugin Description" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:425 msgid "The status of this Plugin." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:426 msgid "The author of this Plugin." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:427 msgid "Requires" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:427 msgid "This Plugin requires the following Plugins be installed first." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:428 msgid "The version of this Plugin." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:429 msgid "Load Order" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:429 msgid "" "The load order of the Plugin. You can change the load order by first " "sorting by it, then moving a Plugin either up or down." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:458 msgid "No Plugins Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:469 msgid "" "Uninstalling this Plugin will remove all Plugin Data and Settings. If you " "really want to Uninstall the Pluign, click 'Uninstall' below. Otherwise " "click 'Cancel'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:470 msgid "Are you sure you want to Uninstall?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:521 msgid "ERROR: Directory Missing" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:527 #, php-format msgid "Not Compatible, %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:529 msgid "Plugin Error" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:541 msgid "Order Before Previous Plugin" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:546 msgid "Order After Next Plugin" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:610 #, php-format msgid "" "Unable to Install Plugin. The following Plugins must be installed first: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:612 msgid "Install Plugin" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:619 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:631 #, php-format msgid "Unable to Uninstall. This Plugin is required by: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:621 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:626 #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:633 msgid "Uninstall Plugin" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:623 msgid "Disable Plugin" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:635 msgid "Enable Plugin" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:638 msgid "Plugin does not include an INFO file" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:641 msgid "Plugin directories can not include spaces" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:644 #, php-format msgid "Plugin directory is not correct. Should be '%s' but is '%s'" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:652 #, php-format msgid "Plugin directory '%s' is missing setup.php" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:654 msgid "Plugin is lacking an INFO file" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:656 msgid "Plugin is integrated into Cacti core" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/plugins.php:658 msgid "Plugin is not compatible" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:32 msgid "Full Sync" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:36 msgid "New/Idle" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:39 msgid "Unknown/Down" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:48 msgid "Data Collector Information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:53 msgid "The primary name for this Data Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:56 msgid "New Data Collector" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:61 msgid "Web Site Hostname" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:62 msgid "" "The hostname for Data Collector. It may have to be a Fully Qualified Domain " "name for the remote Pollers to contact it for activities such as re-" "indexing, Real-time graphing, etc." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:71 msgid "Notes for this Data Collectors Database." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:78 msgid "Remote Database Connection" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:83 msgid "The hostname for the remote database server." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:91 msgid "Remote Database Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:92 msgid "The name of the remote database." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:100 msgid "Remote Database User" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:101 msgid "The user name to use to connect to the remote database." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:109 msgid "Remote Database Password" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:110 msgid "The user password to use to connect to the remote database." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:118 msgid "Remote Database Port" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:119 msgid "The TCP port to use to connect to the remote database." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:127 msgid "Remote Database SSL" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:128 msgid "If the remote database uses SSL to connect, check the checkbox below." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:283 msgid "" "Click 'Continue' to delete the following Data Collector. Note, all devices " "will be disassociated from this Data Collector and mapped back to the Main " "Cacti Data Collector." msgid_plural "" "Click 'Continue' to delete all following Data Collectors. Note, all devices " "will be disassociated from these Data Collectors and mapped back to the Main " "Cacti Data Collector." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:288 msgid "Delete Data Collector" msgid_plural "Delete Data Collectors" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:292 msgid "Click 'Continue' to disable the following Data Collector." msgid_plural "Click 'Continue' to disable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:297 msgid "Disable Data Collector" msgid_plural "Disable Data Collectors" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:301 msgid "Click 'Continue' to enable the following Data Collector." msgid_plural "Click 'Continue' to enable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:306 #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:315 msgid "Enable Data Collector" msgid_plural "Enable Data Collectors" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:310 msgid "" "Click 'Continue' to Synchronize the Remote Data Collector for Offline " "Operation." msgid_plural "" "Click 'Continue' to Synchronize the Remote Data Collectors for Offline " "Operation." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:318 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:294 msgid "You must select at least one Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:351 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:327 #, php-format msgid "Site [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:353 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:329 msgid "Site [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:379 msgid "" "Remote Data Collectors must be able to communicate to the Main Data " "Collector, and vice versa. Use this button to verify that the Main Data " "Collector can communicate to this Remote Data Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:387 msgid "Test Connection" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:387 msgid "Test Database Connection" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:523 msgid "Collectors" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:612 msgid "Collector Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:612 msgid "The Name of this Data Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:613 msgid "The unique id associated with this Data Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:614 msgid "The Hostname where the Data Collector is running." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:615 msgid "The Status of this Data Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:616 msgid "Polling Time" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:616 msgid "The last data collection time for this Data Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:617 msgid "The number of Devices associated with this Data Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:618 msgid "SNMP Gets" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:618 msgid "The number of SNMP gets associated with this Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:619 msgid "Scripts" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:619 msgid "The number of script calls associated with this Data Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:620 msgid "Servers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:620 msgid "The number of script server calls associated with this Data Collector." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:621 msgid "Last Finished" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:621 msgid "The last time this Data Collector completed." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:622 msgid "Last Update" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:622 msgid "The last time this Data Collector checked in with the main Cacti site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/pollers.php:657 msgid "No Data Collectors Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:30 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:31 msgctxt "dropdown action" msgid "Delete" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:31 msgctxt "dropdown action" msgid "Archive" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:338 msgid "RRD Files" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:347 msgid "RRD File Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:348 msgid "DS Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:349 msgid "DS ID" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:350 msgid "Template ID" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:352 msgid "Last Modified" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:353 msgid "Size [KB]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:364 #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:365 msgid "Deleted" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:373 msgid "No unused RRD Files" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:395 msgid "Total Size [MB]:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:397 msgid "Last Scan:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:481 msgid "Time Since Update" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:497 msgid "RRDfiles" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:513 #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:643 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1849 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2202 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2306 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2391 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2476 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2561 msgctxt "filter: use" msgid "Go" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:514 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1850 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2203 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2307 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2392 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2477 msgctxt "filter: reset" msgid "Clear" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:515 msgid "Rescan" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:520 msgid "Delete All" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:520 msgid "Delete All Unknown RRDfiles" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:521 msgid "Archive All" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/rrdcleaner.php:521 msgid "Archive All Unknown RRDfiles" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:242 #, php-format msgid "Cacti Settings (%s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:308 msgid "Poller Interval must be less than Cron Interval" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:329 msgid "Select Plugin(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:331 msgid "Plugins Selected" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:348 msgid "Select File(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:350 msgid "Files Selected" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:368 msgid "Select Template(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:373 msgid "All Templates Selected" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:439 msgid "Send a Test Email" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/settings.php:450 msgid "Test Email Results" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:35 msgid "Site Information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:41 msgid "The primary name for the Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:44 msgid "New Site" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:49 msgid "Address1" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:50 msgid "The primary address for the Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:52 msgid "Enter the Site Address" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:58 msgid "Address2" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:59 msgid "Additional address information for the Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:61 msgid "Additional Site Address information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:67 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:496 msgid "City" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:68 msgid "The city or locality for the Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:70 msgid "Enter the City or Locality" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:76 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:497 msgid "State" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:77 msgid "The state for the Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:79 msgid "Enter the state" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:85 msgid "Postal/Zip Code" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:86 msgid "The postal or zip code for the Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:88 msgid "Enter the postal code" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:94 #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:498 msgid "Country" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:95 msgid "The country for the Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:97 msgid "Enter the country" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:103 msgid "TimeZone" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:104 msgid "The TimeZone for the Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:112 msgid "Latitude" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:113 msgid "The Latitude for this Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:115 msgid "example 38.889488" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:121 msgid "Longitude" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:122 msgid "The Longitude for this Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:124 msgid "example -77.0374678" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:130 msgid "Site Notes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:133 msgid "Additional area use for random notes related to this Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:136 msgid "Enter some useful information about the Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:141 msgid "Alternate Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:142 msgid "Used for cases where a Site has an alternate named used to describe it" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:144 msgid "If the Site is known by another name enter it here." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:286 msgid "" "Click 'Continue' to delete the following Site. Note, all devices will be " "disassociated from this site." msgid_plural "" "Click 'Continue' to delete all following Sites. Note, all devices will be " "disassociated from this site." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:291 msgid "Delete Site" msgid_plural "Delete Sites" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:493 msgid "Site Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:493 msgid "The name of this Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:494 msgid "The unique id associated with this Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:495 msgid "The number of Devices associated with this Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:496 msgid "The City associated with this Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:497 msgid "The State associated with this Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:498 msgid "The Country associated with this Site." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/sites.php:516 msgid "No Sites Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/spikekill.php:37 #, php-format msgid "FATAL: Spike Kill method '%s' is Invalid\n" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/spikekill.php:82 msgid "FATAL: Spike Kill Not Allowed\n" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:68 msgid "WARNING: Export Errors Encountered. Refresh Browser Window for Details!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:109 msgid "What would you like to export?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:110 msgid "Select the Template type that you wish to export from Cacti." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:120 msgid "Device Template to Export" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:121 msgid "Choose the Template to export to XML." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:128 msgid "Include Dependencies" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:129 msgid "" "Some templates rely on other items in Cacti to function properly. It is " "highly recommended that you select this box or the resulting import may fail." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:135 msgid "Output Format" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:136 msgid "Choose the format to output the resulting XML file in." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:143 msgid "Output to the Browser (within Cacti)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:147 msgid "Output to the Browser (raw XML)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:151 msgid "Save File Locally" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_export.php:170 #, php-format msgid "Available Templates [%s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/templates_import.php:115 msgid "Import Template" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:32 msgctxt "dropdown action" msgid "Publish" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:33 msgctxt "dropdown action" msgid "Un Publish" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:366 msgctxt "ordering of tree items" msgid "inherit" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:369 msgctxt "ordering of tree items" msgid "manual" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:372 msgctxt "ordering of tree items" msgid "alpha" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:375 msgctxt "ordering of tree items" msgid "natural" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:378 msgctxt "ordering of tree items" msgid "numeric" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:620 msgid "Click 'Continue' to delete the following Tree." msgid_plural "Click 'Continue' to delete following Trees." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:625 msgid "Delete Tree" msgid_plural "Delete Trees" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:629 msgid "Click 'Continue' to publish the following Tree." msgid_plural "Click 'Continue' to publish following Trees." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:634 msgid "Publish Tree" msgid_plural "Publish Trees" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:638 msgid "Click 'Continue' to un-publish the following Tree." msgid_plural "Click 'Continue' to un-publish following Trees." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:643 msgid "Un-publish Tree" msgid_plural "Un-publish Trees" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:646 msgid "You must select at least one Tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:689 #, php-format msgid "Trees [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:701 msgid "Trees [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:727 msgid "Edit Tree" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:727 msgid "" "To Edit this tree, you must first lock it by pressing the Edit Tree button." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:730 msgid "Add Root Branch" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:730 msgid "Finish Editing Tree" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:730 #, php-format msgid "This tree has been locked for Editing on %1$s by %2$s." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:736 msgid "To edit the tree, you must first unlock it and then lock it as yourself" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:752 msgid "Tree Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:760 msgid "Available Devices" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:795 msgid "Available Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:846 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1059 msgid "New Node" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1205 msgid "Rename" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1232 msgid "Branch Sorting" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1239 msgid "Inherit" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1267 msgid "Alphabetic" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1281 msgid "Natural" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1318 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1392 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1479 msgid "Cut" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1351 msgid "Paste" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1653 msgid "Add Tree" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1659 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1703 msgid "Sort Trees Ascending" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1665 #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1704 msgid "Sort Trees Descending" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1753 msgid "The name by which this Tree will be referred to as." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1753 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1511 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1243 msgid "Tree Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1754 msgid "" "The internal database ID for this Tree. Useful when performing automation " "or debugging." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1755 msgid "Published" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1755 msgid "Unpublished Trees cannot be viewed from the Graph tab" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1756 msgid "A Tree must be locked in order to be edited." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1757 msgid "The original author of this Tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1758 msgid "" "To change the order of the trees, first sort by this column, press the up or " "down arrows once they appear." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1759 msgid "Last Edited" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1759 msgid "The date that this Tree was last edited." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1760 msgid "Edited By" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1760 msgid "The last user to have modified this Tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1761 msgid "Branches" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1761 msgid "The total number of Branches in this Tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1762 msgid "The total number of individual Devices in this Tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1763 msgid "The total number of individual Graphs in this Tree." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/tree.php:1806 msgid "No Trees Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:32 msgid "Batch Copy" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:335 msgid "Click 'Continue' to delete the selected User(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:340 msgid "Delete User(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:350 msgid "Click 'Continue' to copy the selected User to a new User below." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:355 msgid "Template Username:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:360 msgid "Username:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:367 msgid "Full Name:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:374 msgid "Realm:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:380 msgid "Copy User" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:386 msgid "Click 'Continue' to enable the selected User(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:391 msgid "Enable User(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:397 msgid "Click 'Continue' to disable the selected User(s)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:402 msgid "Disable User(s)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:410 msgid "" "Click 'Continue' to overwrite the User(s) settings with the selected " "template User settings and permissions. The original users Full Name, " "Password, Realm and Enable status will be retained, all other fields will be " "overwritten from Template User." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:413 msgid "Template User:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:419 msgid "User(s) to update:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:424 msgid "Reset User(s) Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:427 msgid "You must select at least one user." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:800 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:728 msgid "Allow" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:801 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:729 msgid "Deny" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:826 msgid "" "Note: System Graph Policy is 'Permissive' meaning the User must have " "access to at least one of Graph, Device, or Graph Template to gain access to " "the Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:828 msgid "" "Note: System Graph Policy is 'Restrictive' meaning the User must have " "access to the Graph, Device, and Graph Template to gain access to the Graph" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:832 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:745 msgid "Default Graph Policy" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:837 msgid "Default Graph Policy for this User" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:842 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1147 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1308 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1449 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:755 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:896 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1044 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1185 msgid "Update" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:994 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1230 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1374 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1511 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:821 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:966 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1109 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1243 msgid "Effective Policy" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1008 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:847 msgid "No Matching Graphs Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1023 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1029 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1275 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1281 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1416 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1422 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1552 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1558 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:862 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:868 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1010 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1016 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1151 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1157 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1283 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1289 msgid "Revoke Access" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1024 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1028 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1276 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1280 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1417 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1421 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1553 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1557 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:62 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:863 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:867 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1011 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1015 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1152 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1156 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1284 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1288 msgid "Grant Access" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1081 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2658 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1833 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1892 msgid "Groups" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1089 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1098 msgid "Member" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1089 msgid "Policies (Graph/Device/Template)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1098 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:688 msgid "Non Member" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1100 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2312 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2313 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2314 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1924 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1925 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1926 msgid "ALLOW" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1100 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2312 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2313 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2314 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1924 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1925 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1926 msgid "DENY" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1106 msgid "No Matching User Groups Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1120 msgid "Assign Membership" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1121 msgid "Remove Membership" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1137 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:886 msgid "Default Device Policy" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1142 msgid "Default Device Policy for this User" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1241 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1249 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1385 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1393 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1522 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1530 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:832 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:840 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:977 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:985 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1120 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1128 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1254 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1262 msgid "Access Granted" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1243 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1247 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1387 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1391 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1524 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1528 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:834 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:838 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:979 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:983 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1122 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1126 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1256 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1260 msgid "Access Restricted" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1260 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:996 msgid "No Matching Devices Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1298 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1034 msgid "Default Graph Template Policy" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1303 msgid "Default Graph Template Policy for this User" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1374 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1109 msgid "Total Graphs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1401 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1136 msgid "No Matching Graph Templates Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1439 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1175 msgid "Default Tree Policy" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1444 msgid "Default Tree Policy for this User" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1537 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1269 msgid "No Matching Trees Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1582 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1315 msgid "User Permissions" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1649 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1402 msgid "External Link Permissions" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1706 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1459 msgid "Plugin Permissions" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1762 msgid "Legacy 1.x Plugins" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1819 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1550 #, php-format msgid "User Settings %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1934 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1666 msgid "Permissions" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1935 msgid "Group Membership" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1936 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1667 msgid "Graph Perms" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1937 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1668 msgid "Device Perms" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1938 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1669 msgid "Template Perms" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1939 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1670 msgid "Tree Perms" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:1981 #, php-format msgid "User Management %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2013 msgid "Password Too Short" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2018 msgid "Password Validation Passes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2032 msgid "Passwords do Not Match" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2035 msgid "Passwords Match" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2280 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1904 msgid "Graph Policy" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2281 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1905 msgid "Device Policy" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2282 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1906 msgid "Template Policy" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2283 msgid "Last Login" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2304 msgid "Unavailable" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2320 msgid "No Users Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2536 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2143 #, php-format msgid "Graph Permissions %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2590 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2675 msgid "Show All" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2643 #, php-format msgid "Group Membership %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2729 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2251 #, php-format msgid "Devices Permission %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2779 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2864 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2949 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:3034 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2197 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2301 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2386 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2471 msgid "Show Exceptions" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2832 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2354 #, php-format msgid "Template Permission %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:2917 #: /tmp/cacti_package.2719/cacti-1.1.38/user_admin.php:3002 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2439 #, php-format msgid "Tree Permission %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:222 msgid "Click 'Continue' to delete the following User Domain." msgid_plural "Click 'Continue' to delete following User Domains." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:227 msgid "Delete User Domain" msgid_plural "Delete User Domains" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:231 msgid "Click 'Continue' to disable the following User Domain." msgid_plural "Click 'Continue' to disable following User Domains." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:236 msgid "Disable User Domain" msgid_plural "Disable User Domains" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:240 msgid "Click 'Continue' to enable the following User Domain." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:245 msgid "Enabled User Domain" msgid_plural "Enable User Domains" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:249 msgid "" "Click 'Continue' to make the following the following User Domain the default " "one." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:254 msgid "Make Selected Domain Default" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:257 msgid "You must select at least one User Domain." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:308 #, php-format msgid "User Domain [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:310 msgid "User Domain [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:318 msgid "" "Enter a meaningful name for this domain. This will be the name that appears " "in the Login Realm during login." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:324 msgid "Domains Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:325 msgid "Choose what type of domain this is." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:332 msgid "" "The name of the user that Cacti will use as a template for new user accounts." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:342 msgid "" "If this checkbox is checked, users will be able to login using this domain." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:359 msgid "The dns hostname or ip address of the server." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:367 msgid "TCP/UDP port for Non SSL communications." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:406 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the users " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the users Distinguished Name (DN)." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:455 msgid "" "Search base for searching the LDAP directory, such as \"dc=win2kdomain," "dc=local\" or \"ou=people,dc=domain,dc=local\"." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:462 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: \"(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))\" or for OpenLDAP: " "\"(&(objectClass=account)(uid=<username>))\". \"<username>\" " "is replaced with the username that was supplied at the login prompt." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:501 msgid "Domain Properties" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:627 msgid "Domains" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:712 msgid "Domain Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:713 msgid "Domain Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:715 msgid "Effective User" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:728 msgid "None Selected" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_domains.php:734 msgid "No User Domains Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:39 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:58 msgid "Defer to the Users Setting" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:43 msgid "Show the Page that the User pointed their browser to" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:47 msgid "Show the Console" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:51 msgid "Show the default Graph Screen" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:66 msgid "Restrict Access" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:73 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1901 msgid "Group Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:74 msgid "The name of this Group." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:80 msgid "Group Description" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:81 msgid "" "A more descriptive name for this group, that can include spaces or special " "characters." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:93 msgid "General Group Options" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:95 msgid "Set any user account-specific options here." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:99 msgid "Allow Users of this Group to keep custom User Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:106 msgid "Tree Rights" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:108 msgid "Should Users of this Group have access to the Tree?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:114 msgid "Graph List Rights" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:116 msgid "Should Users of this Group have access to the Graph List?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:122 msgid "Graph Preview Rights" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:124 msgid "Should Users of this Group have access to the Graph Preview?" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:133 msgid "What to do when a User from this User Group logs in." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:441 msgid "Click 'Continue' to delete the following User Group" msgid_plural "Click 'Continue' to delete following User Groups" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:446 msgid "Delete User Group" msgid_plural "Delete User Groups" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:454 msgid "Click 'Continue' to Copy the following User Group to a new User Group." msgid_plural "" "Click 'Continue' to Copy following User Groups to new User Groups." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:460 msgid "Group Prefix:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:461 msgid "New Group" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:465 msgid "Copy User Group" msgid_plural "Copy User Groups" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:471 msgid "Click 'Continue' to enable the following User Group." msgid_plural "Click 'Continue' to enable following User Groups." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:476 msgid "Enable User Group" msgid_plural "Enable User Groups" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:482 msgid "Click 'Continue' to disable the following User Group." msgid_plural "Click 'Continue' to disable following User Groups." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:487 msgid "Disable User Group" msgid_plural "Disable User Groups" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:490 msgid "You must select at least one Group." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:675 msgid "Login Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:675 msgid "Membership" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:686 msgid "Group Member" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:696 msgid "No Matching Group Members Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:710 msgid "Add to Group" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:711 msgid "Remove from Group" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:750 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:891 msgid "Default Graph Policy for this User Group" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1039 msgid "Default Graph Template Policy for this User Group" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1180 msgid "Default Tree Policy for this User Group" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1665 #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1902 msgid "Members" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1677 #, php-format msgid "User Group Management [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1679 msgid "User Group Management [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1812 msgid "User Group Management" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:1932 msgid "No User Groups Found" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2524 #, php-format msgid "User Membership %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2556 msgid "Show Members" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/user_group_admin.php:2562 msgctxt "filter reset" msgid "Clear" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:177 msgid "" "NET-SNMP Not Installed or its paths are not set. Please install if you wish " "to monitor SNMP enabled devices." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:183 msgid "Configuration Settings" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:183 #, php-format msgid "" "ERROR: Installed RRDtool version does not match configured version." "
    Please visit the %s and select the correct RRDtool Utility Version." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:187 #, php-format msgid "" "ERROR: RRDtool 1.2.x+ does not support the GIF images format, but %d\" " "graph(s) and/or templates have GIF set as the image format." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:207 msgid "Database" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:208 msgid "PHP Info" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:215 #, php-format msgid "Technical Support [%s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:242 msgid "General Information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:256 msgid "Cacti OS" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:266 msgid "NET-SNMP Version" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:294 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:327 #, php-format msgid "Total: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:301 msgid "Poller Information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:324 #, php-format msgid "Action[%s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:329 msgid "No items to poll" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:335 msgid "Concurrent Processes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:340 msgid "Max Threads" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:345 msgid "PHP Servers" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:350 msgid "Script Timeout" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:355 msgid "Max OID" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:360 msgid "Last Run Statistics" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:368 msgid "System Memory" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:397 msgid "PHP Information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:404 msgid "" "PHP Version 5.5.0+ is recommended due to strong password hashing support." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:409 msgid "PHP OS" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:414 msgid "PHP uname" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:425 msgid "PHP SNMP" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:460 msgid "You've set memory limit to 'unlimited'." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:462 #, php-format msgid "" "It is highly suggested that you alter you php.ini memory_limit to %s or " "higher." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:463 msgid "" "This suggested memory value is calculated based on the number of data source " "present and is only to be used as a suggestion, actual values may vary " "system to system based on requirements." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:471 msgid "MySQL Table Information - Sizes in KBytes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:480 msgid "Engine" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:482 msgid "Avg Row Length" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:483 msgid "Data Length" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:484 msgid "Index Length" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:485 msgid "Collation" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:486 msgid "Comment" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:504 msgid "Unable to retrieve table status" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:510 msgid "PHP Module Information" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:635 msgid "User Login History" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:644 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:772 msgid "User" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:649 msgid "Deleted/Invalid" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:662 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:776 msgid "Result" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:667 msgid "Success - Pswd" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:668 msgid "Success - Token" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:669 msgid "Failed" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:673 msgid "Attempts" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:689 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1074 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1401 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1679 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2400 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2662 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:711 msgctxt "Button: use filter settings" msgid "Go" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:690 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1075 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1402 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1680 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2401 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2663 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:712 msgctxt "Button: reset filter settings" msgid "Clear" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:691 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1076 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2664 msgctxt "Button: delete all table entries" msgid "Purge" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:691 msgid "Purge User Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:765 msgid "User Logins" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:777 msgid "IP Address" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:793 msgid "(User Removed)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1148 #, php-format msgid "Log [Total Lines: %d - Non-Matching Items Hidden]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1150 #, php-format msgid "Log [Total Lines: %d - All Items Shown]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1249 #, php-format msgid "%s - WEBUI: Cacti Log Cleared from Web Management Interface." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1251 msgid "Cacti Log Cleared" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1253 msgid "Error: Unable to clear log, no write permissions." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1256 msgid "Error: Unable to clear log, file does not exist." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1357 msgid "Data Query Cache Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1367 msgid "Query Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1431 msgid "Allow the search term to include the index column" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1432 msgid "Include Index" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1504 msgid "Field Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1504 msgid "Index" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1639 msgid "Poller Cache Items" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1700 msgid "Script" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1820 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1825 msgid "SNMP Version:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1821 msgid "Community:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1822 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1826 msgid "OID:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1826 msgid "User:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1829 msgid "Script:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1831 msgid "Script Server:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1844 msgid "RRD:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1865 msgid "" "Cacti technical support page. Used by developers and technical support " "persons to assist with issues in Cacti. Includes checks for common " "configuration issues." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1867 msgid "Log Administration" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1869 msgid "" "The Cacti Log stores statistic, error and other message depending on system " "settings. This information can be used to identify problems with the poller " "and application." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1873 msgid "" "Allows Administrators to browse the user log. Administrators can filter and " "export the log as well." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1877 msgid "Poller Cache Administration" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1880 msgid "" "This is the data that is being passed to the poller each time it runs. This " "data is then in turn executed/interpreted and the results are fed into the " "RRDfiles for graphing or the database for display." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1884 msgid "" "The Data Query Cache stores information gathered from Data Query input " "types. The values from these fields can be used in the text area of Graphs " "for Legends, Vertical Labels, and GPRINTS as well as in CDEF's." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1886 msgid "Rebuild Poller Cache" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1888 msgid "" "The Poller Cache will be re-generated if you select this option. Use this " "option only in the event of a database crash if you are experiencing issues " "after the crash and have already run the database repair tools. " "Alternatively, if you are having problems with a specific Device, simply re-" "save that Device to rebuild its Poller Cache. There is also a command line " "interface equivalent to this command that is recommended for large systems. " "NOTE: On large systems, this command may take " "several minutes to hours to complete and therefore should not be run from " "the Cacti UI. You can simply run 'php -q cli/rebuild_poller_cache.php --" "help' at the command line for more information." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1890 msgid "Rebuild Resource Cache" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1892 msgid "" "When operating multiple Data Collectors in Cacti, Cacti will attempt to " "maintain state for key files on all Data Collectors. This includes all " "core, non-install related website and plugin files. When you force a " "Resource Cache rebild, Cacti will clear the local Resource Cache, and then " "rebuild it at the next scheduled poller start. This will trigger all Remote " "Data Collectors to recheck their website and plugin files for consistency." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1896 msgid "Boost Utilities" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1897 msgid "View Boost Status" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1899 msgid "" "This menu pick allows you to view various boost settings and statistics " "associated with the current running Boost configuration." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1903 msgid "RRD Utilities" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1904 msgid "RRDfile Cleaner" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1906 msgid "" "When you delete Data Sources from Cacti, the corresponding RRDfiles are not " "removed automatically. Use this utility to facilitate the removal of these " "old files." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1910 msgid "SNMPAgent Utilities" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1911 msgid "View SNMPAgent Cache" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1913 msgid "This shows all objects being handled by the SNMPAgent." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1915 msgid "Rebuild SNMPAgent Cache" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1917 msgid "" "The SNMP cache will be cleared and re-generated if you select this option. " "Note that it takes another poller run to restore the SNMP cache completely." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1919 msgid "View SNMPAgent Notification Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1921 msgid "" "This menu pick allows you to view the latest events SNMPAgent has handled in " "relation to the registered notification receivers." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1925 msgid "Allows Administrators to maintain SNMP notification receivers." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:1931 msgid "Cacti System Utilities" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2055 msgid "Overrun Warning" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2056 msgid "Timed Out" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2057 msgid "Other" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2059 msgid "Never Run" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2112 msgid "Cannot open directory" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2116 msgid "Directory Does NOT Exist!!" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2123 msgid "Current Boost Status" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2126 msgid "Boost On-demand Updating:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2129 msgid "Total Data Sources:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2133 msgid "Pending Boost Records:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2136 msgid "Archived Boost Records:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2139 msgid "Total Boost Records:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2143 msgid "Boost Storage Statistics" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2147 msgid "Database Engine:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2151 msgid "Current Boost Table(s) Size:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2155 msgid "Avg Bytes/Record:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2183 #, php-format msgid "%d Bytes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2183 msgid "Max Record Length:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2189 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2190 msgid "Unlimited" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2195 msgid "Max Allowed Boost Table Size:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2199 msgid "Estimated Maximum Records:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2202 msgid "Runtime Statistics" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2205 msgid "Last Start Time:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2208 msgid "Last Run Duration:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2211 #, php-format msgid "%d minutes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2211 #, php-format msgid "%d seconds" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2212 #, php-format msgid "%0.2f percent of update frequency)" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2219 msgid "RRD Updates:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2222 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2228 msgid "MBytes" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2222 msgid "Peak Poller Memory:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2225 msgid "Detailed Runtime Timers:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2228 msgid "Max Poller Memory Allowed:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2231 msgid "Run Time Configuration" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2234 msgid "Update Frequency:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2237 msgid "Next Start Time:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2240 msgid "Maximum Records:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2240 msgid "Records" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2243 msgid "Maximum Allowed Runtime:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2249 msgid "Image Caching Status:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2252 msgid "Cache Directory:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2255 msgid "Cached Files:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2258 msgid "Cached Files Size:" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2354 msgid "SNMPAgent Cache" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2384 msgid "OIDs" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2463 msgid "Column Data" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2463 msgid "Scalar" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2605 msgid "SNMPAgent Notification Log" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2633 #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2718 msgid "Receiver" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2710 msgid "Log Entries" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/utilities.php:2725 #, php-format msgid "Severity Level: %s" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:265 msgid "Click 'Continue' to delete the following VDEF." msgid_plural "Click 'Continue' to delete following VDEFs." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:270 msgid "Delete VDEF" msgid_plural "Delete VDEFs" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:274 msgid "" "Click 'Continue' to duplicate the following VDEF. You can optionally change " "the title format for the new VDEF." msgid_plural "" "Click 'Continue' to duplicate following VDEFs. You can optionally change the " "title format for the new VDEFs." msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:280 msgid "Duplicate VDEF" msgid_plural "Duplicate VDEFs" msgstr[0] "" msgstr[1] "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:283 msgid "You must select at least one VDEF." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:325 msgid "Click 'Continue' to delete the following VDEF's." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:391 msgid "VDEF Preview" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:396 #, php-format msgid "VDEF Items [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:398 msgid "VDEF Items [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:416 msgid "VDEF Item Type" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:417 msgid "Choose what type of VDEF item this is." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:423 msgid "VDEF Item Value" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:424 msgid "Enter a value for this VDEF item." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:549 #, php-format msgid "VDEFs [edit: %s]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:551 msgid "VDEFs [new]" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:620 #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:660 msgid "Delete VDEF Item" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:871 msgid "The name of this VDEF." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:871 msgid "VDEF Name" msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:872 msgid "" "VDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:873 msgid "The number of Graphs using this VDEF." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:874 msgid "The number of Graphs Templates using this VDEF." msgstr "" #: /tmp/cacti_package.2719/cacti-1.1.38/vdef.php:897 msgid "No VDEFs" msgstr "" cacti-1.1.38/locales/po/bulgarian_bulgaria.po0000664000175000017500000145310713264740213020502 0ustar tromantromanmsgid "" msgstr "" "Project-Id-Version: Cacti\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-05-20 13:00+0200\n" "PO-Revision-Date: 2017-05-20 13:00+0200\n" "Last-Translator: Patrick Rademaker\n" "Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.0.2\n" #: ../about.php:29 ../lib/functions.php:2424 msgid "About Cacti" msgstr "За cacti" #: ../about.php:35 ../index.php:73 ../logout.php:77 #, fuzzy, php-format msgid "Version %s" msgstr "SNMP ВерÑиÑ" #: ../about.php:42 msgid "" "Cacti is designed to be a complete graphing solution based on the RRDtool's " "framework. Its goal is to make a network administrator's job easier by " "taking care of all the necessary details necessary to create meaningful " "graphs." msgstr "" #: ../about.php:44 #, php-format msgid "" "Please see the official %sCacti website%s for information, support, and " "updates." msgstr "" #: ../about.php:46 msgid "Cacti Developers" msgstr "" #: ../about.php:58 msgid "Thanks" msgstr "" #: ../about.php:61 #, php-format msgid "" "A very special thanks to %sTobi Oetiker%s, the creator of %sRRDtool%s and " "the very popular %sMRTG%s." msgstr "" #: ../about.php:64 msgid "The users of Cacti" msgstr "" #: ../about.php:65 msgid "" "Especially anyone who has taken the time to create an issue report, or " "otherwise help fix a Cacti related problems. Also to anyone who has " "contributed to supporting Cacti." msgstr "" #: ../about.php:70 msgid "License" msgstr "" #: ../about.php:72 msgid "Cacti is licensed under the GNU GPL:" msgstr "" #: ../about.php:74 msgid "" "This program is free software; you can redistribute it and/or modify it " "under the terms of the GNU General Public License as published by the Free " "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" #: ../about.php:76 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" #: ../aggregate_graphs.php:40 ../aggregate_templates.php:29 #: ../automation_graph_rules.php:32 ../automation_networks.php:31 #: ../automation_snmp.php:29 ../automation_snmp.php:727 #: ../automation_templates.php:29 ../automation_tree_rules.php:32 #: ../cdef.php:29 ../cdef.php:619 ../color.php:28 ../color_templates.php:28 #: ../color_templates.php:122 ../data_input.php:29 ../data_input.php:490 #: ../data_input.php:528 ../data_queries.php:30 ../data_queries.php:638 #: ../data_queries.php:736 ../data_queries.php:950 #: ../data_source_profiles.php:29 ../data_source_profiles.php:513 #: ../data_sources.php:35 ../data_sources.php:942 ../data_templates.php:33 #: ../data_templates.php:571 ../gprint_presets.php:28 ../graph_templates.php:33 #: ../graph_templates.php:440 ../graphs.php:44 ../host.php:38 #: ../host_templates.php:30 ../host_templates.php:485 ../host_templates.php:542 #: ../include/global_arrays.php:1234 ../lib/api_automation.php:1246 #: ../lib/api_automation.php:1309 ../lib/api_automation.php:1373 #: ../lib/html.php:970 ../lib/html_form.php:1096 ../lib/html_reports.php:1291 #: ../links.php:28 ../managers.php:28 ../pollers.php:29 ../sites.php:28 #: ../tree.php:1051 ../tree.php:1204 ../tree.php:1264 ../user_admin.php:28 #: ../user_domains.php:29 ../user_group_admin.php:30 ../vdef.php:29 msgid "Delete" msgstr "" #: ../aggregate_graphs.php:41 msgid "Migrate Aggregate to use a Template" msgstr "" #: ../aggregate_graphs.php:42 msgid "Create New Aggregate from Aggregates" msgstr "" #: ../aggregate_graphs.php:46 #, fuzzy msgid "Associate with Aggregate" msgstr "ÐÑоциирани шаблони за графики" #: ../aggregate_graphs.php:47 msgid "Disassociate with Aggregate" msgstr "" #: ../aggregate_graphs.php:80 ../graphs.php:128 #, php-format msgid "Place on a Tree (%s)" msgstr "" #: ../aggregate_graphs.php:318 msgid "Click 'Continue' to delete the following Aggregate Graph(s)." msgstr "" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 ../automation_devices.php:199 #: ../automation_graph_rules.php:284 ../automation_networks.php:358 #: ../automation_snmp.php:253 ../automation_snmp.php:356 #: ../automation_templates.php:195 ../automation_tree_rules.php:286 #: ../cdef.php:282 ../cdef.php:292 ../cdef.php:344 ../color.php:192 #: ../color_templates.php:232 ../color_templates.php:242 #: ../color_templates_items.php:280 ../data_input.php:218 ../data_input.php:266 #: ../data_queries.php:322 ../data_queries.php:425 #: ../data_source_profiles.php:266 ../data_source_profiles.php:276 #: ../data_source_profiles.php:324 ../data_sources.php:468 #: ../data_sources.php:478 ../data_sources.php:487 ../data_sources.php:496 #: ../data_sources.php:505 ../data_sources.php:511 ../data_templates.php:358 #: ../data_templates.php:368 ../data_templates.php:384 #: ../gprint_presets.php:153 ../graph_templates.php:317 #: ../graph_templates.php:327 ../graph_templates.php:347 #: ../graph_templates.php:356 ../graphs.php:818 ../graphs.php:845 #: ../graphs.php:856 ../graphs.php:867 ../graphs.php:882 ../graphs.php:905 #: ../graphs.php:1029 ../graphs.php:1072 ../graphs.php:1094 ../graphs.php:1102 #: ../graphs.php:1535 ../host.php:381 ../host.php:390 ../host.php:432 #: ../host.php:441 ../host.php:450 ../host.php:464 ../host.php:478 #: ../host.php:487 ../host.php:495 ../host_templates.php:261 #: ../host_templates.php:275 ../host_templates.php:286 #: ../host_templates.php:334 ../host_templates.php:394 #: ../lib/clog_webapi.php:129 ../lib/html_form.php:1095 #: ../lib/html_form.php:1107 ../lib/html_form.php:1118 #: ../lib/html_utility.php:198 ../links.php:196 ../links.php:205 #: ../links.php:214 ../managers.php:1012 ../managers.php:1069 #: ../pollers.php:288 ../pollers.php:297 ../pollers.php:306 ../pollers.php:315 #: ../sites.php:280 ../tree.php:490 ../tree.php:499 ../tree.php:508 #: ../user_admin.php:350 ../user_admin.php:390 ../user_admin.php:401 #: ../user_admin.php:412 ../user_admin.php:434 ../user_domains.php:227 #: ../user_domains.php:236 ../user_domains.php:245 ../user_domains.php:254 #: ../user_group_admin.php:446 ../user_group_admin.php:465 #: ../user_group_admin.php:476 ../user_group_admin.php:487 ../vdef.php:270 #: ../vdef.php:280 ../vdef.php:332 msgid "Cancel" msgstr "" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../aggregate_graphs.php:418 #: ../aggregate_graphs.php:427 ../aggregate_graphs.php:438 #: ../aggregate_templates.php:312 ../automation_devices.php:199 #: ../automation_graph_rules.php:284 ../automation_networks.php:350 #: ../automation_snmp.php:228 ../automation_snmp.php:357 #: ../automation_templates.php:195 ../automation_tree_rules.php:286 #: ../cdef.php:282 ../cdef.php:292 ../cdef.php:345 ../color.php:192 #: ../color_templates.php:232 ../color_templates.php:242 #: ../color_templates_items.php:281 ../data_input.php:218 ../data_input.php:267 #: ../data_queries.php:322 ../data_queries.php:426 #: ../data_source_profiles.php:266 ../data_source_profiles.php:276 #: ../data_source_profiles.php:325 ../data_sources.php:468 #: ../data_sources.php:478 ../data_sources.php:487 ../data_sources.php:496 #: ../data_sources.php:505 ../data_sources.php:511 ../data_templates.php:358 #: ../data_templates.php:368 ../data_templates.php:384 #: ../gprint_presets.php:153 ../graph_templates.php:317 #: ../graph_templates.php:327 ../graph_templates.php:347 #: ../graph_templates.php:356 ../graphs.php:818 ../graphs.php:845 #: ../graphs.php:856 ../graphs.php:867 ../graphs.php:882 ../graphs.php:905 #: ../graphs.php:1029 ../graphs.php:1072 ../graphs.php:1094 ../graphs.php:1102 #: ../host.php:381 ../host.php:390 ../host.php:432 ../host.php:441 #: ../host.php:450 ../host.php:464 ../host.php:478 ../host.php:487 #: ../host.php:495 ../host_templates.php:261 ../host_templates.php:275 #: ../host_templates.php:286 ../host_templates.php:335 #: ../host_templates.php:395 ../lib/clog_webapi.php:130 #: ../lib/html_reports.php:643 ../lib/html_utility.php:198 ../links.php:196 #: ../links.php:205 ../links.php:214 ../managers.php:1012 ../managers.php:1069 #: ../pollers.php:288 ../pollers.php:297 ../pollers.php:306 ../pollers.php:315 #: ../sites.php:280 ../tree.php:490 ../tree.php:499 ../tree.php:508 #: ../user_admin.php:350 ../user_admin.php:390 ../user_admin.php:401 #: ../user_admin.php:412 ../user_admin.php:434 ../user_domains.php:227 #: ../user_domains.php:236 ../user_domains.php:245 ../user_domains.php:254 #: ../user_group_admin.php:446 ../user_group_admin.php:465 #: ../user_group_admin.php:476 ../user_group_admin.php:487 ../vdef.php:270 #: ../vdef.php:280 ../vdef.php:333 msgid "Continue" msgstr "" #: ../aggregate_graphs.php:323 ../aggregate_graphs.php:384 #: ../aggregate_graphs.php:409 ../graphs.php:818 #, fuzzy msgid "Delete Graph(s)" msgstr "Създаване на нови графики" #: ../aggregate_graphs.php:349 msgid "" "The selected Aggregate Graphs represent elements from more than one Graph " "Template." msgstr "" #: ../aggregate_graphs.php:350 msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, they must only be using one Graph Template. Please press " "'Return' and then select only Aggregate Graph that utilize the same Graph " "Template." msgstr "" #: ../aggregate_graphs.php:355 ../aggregate_graphs.php:395 #: ../aggregate_graphs.php:442 ../aggregate_templates.php:316 #: ../auth_changepassword.php:308 ../automation_devices.php:203 #: ../automation_graph_rules.php:282 ../automation_networks.php:359 #: ../automation_snmp.php:253 ../automation_templates.php:199 #: ../automation_tree_rules.php:284 ../cdef.php:296 ../color.php:196 #: ../color_templates.php:246 ../data_input.php:221 ../data_queries.php:325 #: ../data_source_profiles.php:280 ../data_sources.php:515 #: ../data_templates.php:388 ../gprint_presets.php:157 #: ../graph_templates.php:360 ../graphs.php:1031 ../graphs.php:1081 #: ../graphs.php:1084 ../graphs.php:1107 ../host.php:499 #: ../host_templates.php:290 ../include/auth.php:115 ../lib/html_form.php:1116 #: ../lib/html_utility.php:196 ../links.php:218 ../managers.php:1072 #: ../permission_denied.php:30 ../permission_denied.php:32 ../pollers.php:319 #: ../sites.php:284 ../tree.php:512 ../user_admin.php:439 #: ../user_domains.php:258 ../user_group_admin.php:491 ../vdef.php:284 msgid "Return" msgstr "" #: ../aggregate_graphs.php:368 msgid "" "Click 'Continue' and the following Aggregate Graph(s) will be migrated to " "use the Aggregate Template that you choose below." msgstr "" #: ../aggregate_graphs.php:374 #, fuzzy msgid "Aggregate Template:" msgstr "Шаблони за графики" #: ../aggregate_graphs.php:388 msgid "" "There are currently no Aggregate Templates defined for the selected Legacy " "Aggregates." msgstr "" #: ../aggregate_graphs.php:389 #, php-format msgid "" "In order to migrate the Aggregate Graphs below to a Template based " "Aggregate, first create an Aggregate Template for the Graph Template '%s'." msgstr "" #: ../aggregate_graphs.php:390 msgid "Please press 'Return' to continue." msgstr "" #: ../aggregate_graphs.php:401 msgid "" "Click 'Continue' to combine the following Aggregate Graph(s) into a single " "Aggregate Graph." msgstr "" #: ../aggregate_graphs.php:406 msgid "Aggregate Name:" msgstr "" #: ../aggregate_graphs.php:407 msgid "New Aggregate" msgstr "" #: ../aggregate_graphs.php:413 msgid "" "Click 'Continue' to associate the following Graph(s) with the Aggregate " "Graph." msgstr "" #: ../aggregate_graphs.php:418 #, fuzzy msgid "Associate Graph(s)" msgstr "ÐÑоциирани шаблони за графики" #: ../aggregate_graphs.php:422 msgid "" "Click 'Continue' to disassociate the following Graph(s) from the Aggregate." msgstr "" #: ../aggregate_graphs.php:427 #, fuzzy msgid "Dis-Associate Graph(s)" msgstr "ÐÑоциирани шаблони за графики" #: ../aggregate_graphs.php:431 msgid "" "Click 'Continue' to place the following Aggregate Graph(s) under the Tree " "Branch." msgstr "" #: ../aggregate_graphs.php:433 ../host.php:470 msgid "Destination Branch:" msgstr "" #: ../aggregate_graphs.php:438 ../graphs.php:882 #, fuzzy msgid "Place Graph(s) on Tree" msgstr "Дърво на графики" #: ../aggregate_graphs.php:441 msgid "You must select at least one graph." msgstr "" #: ../aggregate_graphs.php:476 ../graphs.php:1140 #, fuzzy msgid "Graph Items [new]" msgstr "Графични елементи" #: ../aggregate_graphs.php:492 ../graphs.php:1160 #, fuzzy, php-format msgid "Graph Items [edit: %s]" msgstr "Графични елементи" #: ../aggregate_graphs.php:560 ../aggregate_graphs.php:563 #: ../lib/html_reports.php:1060 ../lib/html_reports.php:1065 #: ../lib/html_reports.php:1104 ../utilities.php:1699 msgid "Details" msgstr "" #: ../aggregate_graphs.php:560 ../lib/html_reports.php:1060 #: ../lib/html_reports.php:1151 ../utilities.php:306 #, fuzzy msgid "Items" msgstr "Графични елементи" #: ../aggregate_graphs.php:560 ../aggregate_graphs.php:563 ../lib/html.php:1559 #: ../lib/html_reports.php:1060 #, fuzzy msgid "Preview" msgstr "Общ изглед" #: ../aggregate_graphs.php:607 msgid "Turn Off Graph Debug Mode" msgstr "" #: ../aggregate_graphs.php:609 msgid "Turn On Graph Debug Mode" msgstr "" #: ../aggregate_graphs.php:615 ../aggregate_graphs.php:880 msgid "Show Item Details" msgstr "" #: ../aggregate_graphs.php:621 #, php-format msgid "Aggregate Preview [%s]" msgstr "" #: ../aggregate_graphs.php:633 ../graph.php:431 ../graphs.php:1398 msgid "RRDTool Command:" msgstr "" #: ../aggregate_graphs.php:635 ../graph.php:434 ../graphs.php:1400 msgid "RRDTool Says:" msgstr "" #: ../aggregate_graphs.php:660 #, fuzzy, php-format msgid "Aggregate Graph %s" msgstr "Създаване на нови графики" #: ../aggregate_graphs.php:798 ../lib/api_aggregate.php:1221 msgid "Total" msgstr "" #: ../aggregate_graphs.php:802 #, fuzzy msgid "All Items" msgstr "Графични елементи" #: ../aggregate_graphs.php:825 ../graphs.php:1414 ../lib/api_aggregate.php:1367 msgid "Graph Configuration" msgstr "" #: ../aggregate_graphs.php:875 ../automation_graph_rules.php:513 #: ../automation_graph_rules.php:528 ../automation_graph_rules.php:544 #: ../automation_tree_rules.php:379 ../automation_tree_rules.php:529 msgid "Show" msgstr "" #: ../aggregate_graphs.php:877 msgid "Hide Item Details" msgstr "" #: ../aggregate_graphs.php:998 msgid "Matching Graphs" msgstr "" #: ../aggregate_graphs.php:1007 ../aggregate_graphs.php:1326 #: ../aggregate_templates.php:538 ../automation_devices.php:448 #: ../automation_graph_rules.php:701 ../automation_networks.php:1061 #: ../automation_networks.php:1082 ../automation_snmp.php:828 #: ../automation_templates.php:412 ../automation_tree_rules.php:715 #: ../cdef.php:722 ../color.php:529 ../color_templates.php:439 #: ../data_input.php:619 ../data_queries.php:1048 #: ../data_source_profiles.php:719 ../data_sources.php:1251 #: ../data_templates.php:754 ../gprint_presets.php:262 #: ../graph_templates.php:628 ../graph_view.php:517 ../graph_view.php:818 #: ../graphs.php:1687 ../graphs_new.php:548 ../host.php:1375 #: ../host_templates.php:700 ../lib/api_automation.php:133 #: ../lib/api_automation.php:460 ../lib/api_automation.php:683 #: ../lib/api_automation.php:988 ../lib/clog_webapi.php:380 #: ../lib/html_filter.php:63 ../lib/html_graph.php:206 #: ../lib/html_graph.php:432 ../lib/html_reports.php:1378 #: ../lib/html_tree.php:121 ../lib/html_tree.php:605 ../lib/html_tree.php:879 #: ../links.php:309 ../managers.php:150 ../managers.php:533 ../managers.php:724 #: ../plugins.php:276 ../pollers.php:517 ../rrdcleaner.php:475 #: ../settings.php:204 ../settings.php:221 ../settings.php:267 ../sites.php:387 #: ../tree.php:633 ../tree.php:668 ../tree.php:1485 ../user_admin.php:2193 #: ../user_admin.php:2531 ../user_admin.php:2640 ../user_admin.php:2728 #: ../user_admin.php:2833 ../user_admin.php:2920 ../user_admin.php:3007 #: ../user_domains.php:621 ../user_group_admin.php:1806 #: ../user_group_admin.php:2133 ../user_group_admin.php:2243 #: ../user_group_admin.php:2348 ../user_group_admin.php:2435 #: ../user_group_admin.php:2522 ../utilities.php:689 ../utilities.php:1045 #: ../utilities.php:1282 ../utilities.php:1594 ../utilities.php:2257 #: ../utilities.php:2510 ../vdef.php:659 msgid "Search" msgstr "" #: ../aggregate_graphs.php:1013 ../aggregate_graphs.php:1111 #: ../aggregate_graphs.php:1354 ../color_templates.php:549 #: ../graph_view.php:395 ../graph_view.php:556 ../graphs.php:1693 #: ../host.php:1501 ../include/global_arrays.php:686 #: ../include/global_arrays.php:865 ../lib/api_automation.php:274 #: ../lib/functions.php:1856 ../lib/html.php:1308 ../lib/html.php:1310 #: ../lib/html.php:1383 ../lib/html_graph.php:212 ../lib/html_tree.php:658 #: ../lib/html_tree.php:1076 ../tree.php:1568 ../user_admin.php:998 #: ../user_admin.php:1242 ../user_admin.php:2559 ../user_group_admin.php:813 #: ../user_group_admin.php:966 ../user_group_admin.php:2161 #: ../utilities.php:268 msgid "Graphs" msgstr "Графики" #: ../aggregate_graphs.php:1017 ../aggregate_graphs.php:1358 #: ../aggregate_templates.php:554 ../automation_devices.php:533 #: ../automation_graph_rules.php:743 ../automation_networks.php:1071 #: ../automation_snmp.php:838 ../automation_templates.php:422 #: ../automation_tree_rules.php:735 ../cdef.php:732 ../color.php:539 #: ../color_templates.php:453 ../data_input.php:629 ../data_queries.php:1058 #: ../data_source_profiles.php:729 ../data_source_profiles.php:848 #: ../data_sources.php:1287 ../data_templates.php:780 ../gprint_presets.php:272 #: ../graph_templates.php:638 ../graph_view.php:560 ../graphs.php:1697 #: ../graphs_new.php:530 ../host.php:1400 ../host_templates.php:710 #: ../include/global_form.php:79 ../lib/api_automation.php:176 #: ../lib/api_automation.php:470 ../lib/api_automation.php:693 #: ../lib/api_automation.php:1031 ../lib/html_reports.php:1398 ../links.php:319 #: ../managers.php:160 ../managers.php:543 ../plugins.php:299 #: ../pollers.php:527 ../rrdcleaner.php:501 ../sites.php:397 ../tree.php:1495 #: ../user_admin.php:2203 ../user_admin.php:2563 ../user_admin.php:2650 #: ../user_admin.php:2756 ../user_admin.php:2843 ../user_admin.php:2930 #: ../user_admin.php:3017 ../user_domains.php:32 ../user_domains.php:631 #: ../user_domains.php:716 ../user_group_admin.php:1816 #: ../user_group_admin.php:2165 ../user_group_admin.php:2271 #: ../user_group_admin.php:2358 ../user_group_admin.php:2445 #: ../user_group_admin.php:2532 ../utilities.php:665 ../utilities.php:1326 #: ../utilities.php:1615 ../utilities.php:2282 ../utilities.php:2546 #: ../vdef.php:669 msgid "Default" msgstr "" #: ../aggregate_graphs.php:1031 msgid "Part of Aggregate" msgstr "" #: ../aggregate_graphs.php:1034 ../aggregate_graphs.php:1369 #: ../aggregate_templates.php:574 ../automation_devices.php:468 #: ../automation_graph_rules.php:754 ../automation_networks.php:1082 #: ../automation_snmp.php:849 ../automation_templates.php:433 #: ../automation_tree_rules.php:746 ../cdef.php:749 ../color.php:562 #: ../color_templates.php:472 ../data_input.php:640 ../data_queries.php:1069 #: ../data_source_profiles.php:746 ../data_sources.php:1241 #: ../data_templates.php:797 ../gprint_presets.php:289 #: ../graph_templates.php:655 ../graph_view.php:571 ../graphs.php:1677 #: ../graphs_new.php:554 ../host.php:1365 ../host_templates.php:727 #: ../lib/api_automation.php:187 ../lib/api_automation.php:452 #: ../lib/api_automation.php:704 ../lib/api_automation.php:1042 #: ../lib/clog_webapi.php:340 ../lib/html.php:1154 ../lib/html_filter.php:81 #: ../lib/html_graph.php:190 ../lib/html_reports.php:1408 #: ../lib/html_tree.php:642 ../links.php:328 ../managers.php:171 #: ../managers.php:554 ../managers.php:743 ../plugins.php:310 #: ../pollers.php:538 ../sites.php:408 ../tree.php:1506 ../user_admin.php:2214 #: ../user_admin.php:2580 ../user_admin.php:2667 ../user_admin.php:2773 #: ../user_admin.php:2860 ../user_admin.php:2947 ../user_admin.php:3034 msgid "Go" msgstr "" #: ../aggregate_graphs.php:1034 ../aggregate_graphs.php:1369 #: ../automation_devices.php:468 ../automation_snmp.php:849 #: ../automation_templates.php:433 ../cdef.php:749 ../color.php:562 #: ../data_input.php:640 ../data_queries.php:1069 #: ../data_source_profiles.php:746 ../data_sources.php:1241 #: ../data_templates.php:797 ../gprint_presets.php:289 #: ../graph_templates.php:655 ../graph_view.php:571 ../graphs.php:1677 #: ../graphs_new.php:554 ../host.php:1365 ../host_templates.php:727 #: ../lib/html_graph.php:190 ../managers.php:171 ../managers.php:554 #: ../managers.php:743 ../plugins.php:310 ../pollers.php:538 ../sites.php:408 #: ../tree.php:1506 ../user_admin.php:2214 ../user_admin.php:2580 #: ../user_admin.php:2667 ../user_admin.php:2773 ../user_admin.php:2860 #: ../user_admin.php:2947 ../user_admin.php:3034 ../user_domains.php:642 #: ../user_group_admin.php:1827 ../user_group_admin.php:2182 #: ../user_group_admin.php:2288 ../user_group_admin.php:2375 #: ../user_group_admin.php:2462 ../user_group_admin.php:2549 #: ../utilities.php:676 ../utilities.php:1009 ../utilities.php:1337 #: ../utilities.php:1584 ../utilities.php:2293 ../utilities.php:2557 msgid "Set/Refresh Filters" msgstr "" #: ../aggregate_graphs.php:1037 ../aggregate_graphs.php:1372 #: ../aggregate_templates.php:577 ../automation_devices.php:471 #: ../automation_graph_rules.php:757 ../automation_networks.php:1085 #: ../automation_snmp.php:852 ../automation_templates.php:436 #: ../automation_tree_rules.php:749 ../cdef.php:752 ../color.php:565 #: ../color_templates.php:475 ../data_input.php:643 ../data_queries.php:1072 #: ../data_source_profiles.php:749 ../data_sources.php:1244 #: ../data_templates.php:800 ../gprint_presets.php:292 #: ../graph_templates.php:658 ../graph_view.php:574 ../graphs.php:1680 #: ../graphs_new.php:555 ../host.php:1368 ../host_templates.php:730 #: ../lib/api_automation.php:190 ../lib/api_automation.php:455 #: ../lib/api_automation.php:707 ../lib/api_automation.php:1045 #: ../lib/clog_webapi.php:343 ../lib/html_filter.php:86 #: ../lib/html_graph.php:193 ../lib/html_graph.php:322 #: ../lib/html_reports.php:1411 ../lib/html_tree.php:645 #: ../lib/html_tree.php:768 ../links.php:331 ../managers.php:174 #: ../managers.php:557 ../managers.php:746 ../plugins.php:313 #: ../pollers.php:541 ../sites.php:411 ../tree.php:1509 ../user_admin.php:2217 #: ../user_admin.php:2583 ../user_admin.php:2670 ../user_admin.php:2776 #: ../user_admin.php:2863 ../user_admin.php:2950 ../user_admin.php:3037 #: ../user_domains.php:645 msgid "Clear" msgstr "" #: ../aggregate_graphs.php:1037 ../aggregate_graphs.php:1372 #: ../automation_snmp.php:852 ../automation_templates.php:436 ../cdef.php:752 #: ../color.php:565 ../data_input.php:643 ../data_queries.php:1072 #: ../data_source_profiles.php:749 ../data_sources.php:1244 #: ../data_templates.php:800 ../gprint_presets.php:292 #: ../graph_templates.php:658 ../graph_view.php:574 ../graphs.php:1680 #: ../graphs_new.php:555 ../host.php:1368 ../host_templates.php:730 #: ../lib/html_graph.php:193 ../lib/html_tree.php:645 ../managers.php:174 #: ../managers.php:557 ../managers.php:746 ../plugins.php:313 #: ../pollers.php:541 ../sites.php:411 ../tree.php:1509 ../user_admin.php:2217 #: ../user_admin.php:2583 ../user_admin.php:2670 ../user_admin.php:2776 #: ../user_admin.php:2863 ../user_admin.php:2950 ../user_admin.php:3037 #: ../user_domains.php:645 ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 ../user_group_admin.php:2465 #: ../user_group_admin.php:2552 ../utilities.php:679 ../utilities.php:1012 #: ../utilities.php:1340 ../utilities.php:1587 ../utilities.php:2296 #: ../utilities.php:2558 msgid "Clear Filters" msgstr "" #: ../aggregate_graphs.php:1116 ../aggregate_graphs.php:1435 #: ../graph_view.php:619 ../graphs.php:1058 ../lib/api_automation.php:561 #: ../user_admin.php:1006 ../user_group_admin.php:821 #, fuzzy msgid "Graph Title" msgstr "Дърво на графики" #: ../aggregate_graphs.php:1117 ../aggregate_graphs.php:1436 #: ../automation_graph_rules.php:856 ../automation_tree_rules.php:843 #: ../data_queries.php:1153 ../data_sources.php:1406 ../data_templates.php:910 #: ../graph_templates.php:762 ../graphs.php:1788 ../host.php:1500 #: ../host_templates.php:815 ../lib/api_automation.php:273 ../pollers.php:612 #: ../sites.php:482 ../tree.php:1559 ../user_admin.php:1006 #: ../user_admin.php:1101 ../user_admin.php:1242 ../user_admin.php:1384 #: ../user_admin.php:1521 ../user_group_admin.php:675 #: ../user_group_admin.php:821 ../user_group_admin.php:966 #: ../user_group_admin.php:1109 ../user_group_admin.php:1243 msgid "ID" msgstr "" #: ../aggregate_graphs.php:1118 msgid "Included in Aggregate" msgstr "" #: ../aggregate_graphs.php:1119 ../aggregate_graphs.php:1438 #: ../graph_templates.php:765 ../graphs.php:1790 msgid "Size" msgstr "" #: ../aggregate_graphs.php:1129 ../cdef.php:869 ../color.php:722 #: ../color.php:724 ../color_templates.php:566 ../data_input.php:741 #: ../data_queries.php:1173 ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 ../data_sources.php:1450 #: ../data_sources.php:1451 ../data_templates.php:930 ../gprint_presets.php:411 #: ../graph_templates.php:783 ../host_templates.php:834 #: ../include/global_settings.php:398 ../include/global_settings.php:1254 #: ../install/index.php:527 ../install/index.php:548 ../tree.php:1593 #: ../tree.php:1594 ../user_admin.php:2285 ../user_domains.php:731 #: ../user_group_admin.php:1897 ../vdef.php:864 msgid "No" msgstr "" #: ../aggregate_graphs.php:1129 ../cdef.php:869 ../color.php:722 #: ../color.php:724 ../color_templates.php:566 ../data_input.php:741 #: ../data_queries.php:1173 ../data_source_profiles.php:876 #: ../data_source_profiles.php:877 ../data_sources.php:1450 #: ../data_sources.php:1451 ../data_templates.php:930 ../gprint_presets.php:411 #: ../graph_templates.php:783 ../host_templates.php:834 #: ../include/global_settings.php:398 ../include/global_settings.php:1254 #: ../install/index.php:526 ../install/index.php:527 ../install/index.php:547 #: ../install/index.php:548 ../tree.php:1593 ../tree.php:1594 #: ../user_admin.php:2283 ../user_domains.php:729 ../user_domains.php:731 #: ../user_group_admin.php:1895 ../vdef.php:864 msgid "Yes" msgstr "" #: ../aggregate_graphs.php:1135 ../graphs.php:1810 #: ../lib/api_automation.php:588 msgid "No Graphs Found" msgstr "" #: ../aggregate_graphs.php:1317 ../aggregate_graphs.php:1426 #: ../lib/functions.php:2550 #, fuzzy msgid "Aggregate Graphs" msgstr "Създаване на нови графики" #: ../aggregate_graphs.php:1332 ../data_sources.php:1206 ../graph_view.php:524 #: ../graphs.php:1653 ../host.php:1347 ../lib/api_automation.php:434 #: ../lib/html_graph.php:159 ../lib/html_tree.php:611 ../rrdcleaner.php:351 #: ../user_admin.php:2537 ../user_admin.php:2734 ../user_group_admin.php:2139 #: ../user_group_admin.php:2249 ../utilities.php:1555 #, fuzzy msgid "Template" msgstr "Шаблони за графики" #: ../aggregate_graphs.php:1336 ../automation_devices.php:458 #: ../automation_devices.php:488 ../automation_devices.php:503 #: ../automation_devices.php:518 ../automation_graph_rules.php:711 #: ../automation_graph_rules.php:733 ../data_sources.php:1210 #: ../graphs.php:1657 ../graphs_items.php:308 ../graphs_items.php:329 #: ../host.php:1316 ../host.php:1334 ../host.php:1351 ../host.php:1385 #: ../lib/api_automation.php:143 ../lib/api_automation.php:161 #: ../lib/api_automation.php:421 ../lib/api_automation.php:438 #: ../lib/api_automation.php:998 ../lib/api_automation.php:1016 #: ../lib/html.php:1633 ../lib/html_reports.php:1388 ../managers.php:522 #: ../managers.php:734 ../user_admin.php:2541 ../user_admin.php:2738 #: ../user_group_admin.php:2143 ../user_group_admin.php:2253 #: ../utilities.php:654 ../utilities.php:1293 ../utilities.php:1559 #: ../utilities.php:1604 ../utilities.php:2267 ../utilities.php:2520 #: ../utilities.php:2533 msgid "Any" msgstr "" #: ../aggregate_graphs.php:1337 ../aggregate_graphs.php:1450 #: ../automation_graph_rules.php:866 ../automation_graph_rules.php:867 #: ../automation_networks.php:421 ../automation_networks.php:633 #: ../automation_tree_rules.php:855 ../data_sources.php:824 #: ../data_sources.php:1211 ../data_sources.php:1436 ../data_templates.php:932 #: ../graph_view.php:782 ../graphs.php:1326 ../graphs.php:1658 #: ../graphs_items.php:309 ../graphs_items.php:330 ../host.php:1013 #: ../host.php:1317 ../host.php:1352 ../include/global_arrays.php:330 #: ../include/global_arrays.php:383 ../include/global_arrays.php:459 #: ../include/global_arrays.php:571 ../include/global_arrays.php:594 #: ../include/global_arrays.php:1318 ../include/global_form.php:389 #: ../include/global_form.php:712 ../include/global_form.php:721 #: ../include/global_form.php:732 ../include/global_form.php:775 #: ../include/global_form.php:782 ../include/global_form.php:808 #: ../include/global_form.php:837 ../include/global_form.php:845 #: ../include/global_form.php:1032 ../include/global_form.php:1041 #: ../include/global_form.php:2097 ../include/global_form.php:2139 #: ../include/global_settings.php:445 ../include/global_settings.php:453 #: ../include/global_settings.php:900 ../include/global_settings.php:1324 #: ../lib/api_automation.php:144 ../lib/api_automation.php:422 #: ../lib/api_automation.php:439 ../lib/api_automation.php:576 #: ../lib/api_automation.php:999 ../lib/html.php:1634 ../lib/html_form.php:315 #: ../lib/html_graph.php:396 ../lib/html_reports.php:280 #: ../lib/html_reports.php:328 ../lib/html_reports.php:340 #: ../lib/html_reports.php:349 ../lib/html_reports.php:359 #: ../lib/html_tree.php:843 ../settings.php:197 ../settings.php:214 #: ../settings.php:237 ../user_admin.php:2542 ../user_admin.php:2739 #: ../user_group_admin.php:2144 ../user_group_admin.php:2254 #: ../utilities.php:1560 msgid "None" msgstr "" #: ../aggregate_graphs.php:1435 msgid "The title for the Aggregate Graphs" msgstr "" #: ../aggregate_graphs.php:1436 msgid "The internal database identifier for this object" msgstr "" #: ../aggregate_graphs.php:1437 ../graphs.php:1062 #, fuzzy msgid "Aggregate Template" msgstr "Шаблони за графики" #: ../aggregate_graphs.php:1437 msgid "The Aggregate Template that this Aggregate Graphs is based upon" msgstr "" #: ../aggregate_graphs.php:1456 msgid "No Aggregate Graphs Found" msgstr "" #: ../aggregate_items.php:346 msgid "Override Values for Graph Item" msgstr "" #: ../aggregate_items.php:357 ../lib/api_aggregate.php:1392 msgid "Override this Value" msgstr "" #: ../aggregate_templates.php:307 msgid "Click 'Continue' to Delete the following Aggregate Graph Template(s)." msgstr "" #: ../aggregate_templates.php:312 #, fuzzy msgid "Delete Color Template(s)" msgstr "ЕкÑпортиране на шаблони" #: ../aggregate_templates.php:315 msgid "You must select at least one Aggregate Graph Template." msgstr "" #: ../aggregate_templates.php:351 #, php-format msgid "Aggregate Template [edit: %s]" msgstr "" #: ../aggregate_templates.php:353 msgid "Aggregate Template [new]" msgstr "" #: ../aggregate_templates.php:531 ../aggregate_templates.php:631 #: ../lib/functions.php:2532 #, fuzzy msgid "Aggregate Templates" msgstr "Шаблони за графики" #: ../aggregate_templates.php:544 ../automation_templates.php:418 #: ../automation_templates.php:503 ../color_templates.php:550 #: ../include/global_arrays.php:695 ../include/global_arrays.php:753 #: ../install/index.php:898 ../user_admin.php:2839 ../user_group_admin.php:2354 #, fuzzy msgid "Templates" msgstr "Шаблони за графики" #: ../aggregate_templates.php:571 ../cdef.php:746 ../color.php:559 #: ../color_templates.php:469 ../data_sources.php:1278 #: ../gprint_presets.php:286 ../graph_templates.php:652 ../vdef.php:683 #, fuzzy msgid "Has Graphs" msgstr "Графики" #: ../aggregate_templates.php:640 ../color_templates.php:547 #, fuzzy msgid "Template Title" msgstr "Шаблони за елементи на графиката" #: ../aggregate_templates.php:641 msgid "" "Aggregate Templates that are in use can not be Deleted. In use is defined " "as being referenced by an Aggregate." msgstr "" #: ../aggregate_templates.php:641 ../cdef.php:852 ../color.php:699 #: ../color_templates.php:548 ../data_input.php:723 ../data_queries.php:1154 #: ../data_source_profiles.php:849 ../data_sources.php:1408 #: ../data_templates.php:911 ../gprint_presets.php:392 #: ../graph_templates.php:763 ../host_templates.php:816 ../vdef.php:846 msgid "Deletable" msgstr "" #: ../aggregate_templates.php:642 ../cdef.php:853 ../color.php:700 #: ../data_queries.php:912 ../data_queries.php:1155 ../gprint_presets.php:393 #: ../graph_templates.php:764 ../vdef.php:847 #, fuzzy msgid "Graphs Using" msgstr "Графики" #: ../aggregate_templates.php:643 ../graph_view.php:619 #: ../include/global_arrays.php:655 ../include/global_arrays.php:989 #: ../include/global_form.php:1323 ../include/global_form.php:1551 #: ../lib/html_reports.php:345 ../tree.php:1286 #, fuzzy msgid "Graph Template" msgstr "Шаблони за графики" #: ../aggregate_templates.php:665 msgid "No Aggregate Templates Found" msgstr "" #: ../auth_changepassword.php:93 msgid "You cannot use a previously entered password!" msgstr "" #: ../auth_changepassword.php:110 ../auth_changepassword.php:120 msgid "Your current password is not correct. Please try again." msgstr "" #: ../auth_changepassword.php:115 ../auth_changepassword.php:125 msgid "" "Your new password cannot be the same as the old password. Please try again." msgstr "" #: ../auth_changepassword.php:131 msgid "Your new passwords do not match, please retype." msgstr "" #: ../auth_changepassword.php:224 msgid "Forced password change" msgstr "" #: ../auth_changepassword.php:228 msgid "Password requirements include:" msgstr "" #: ../auth_changepassword.php:232 #, php-format msgid "Must be at least %d characters in length" msgstr "" #: ../auth_changepassword.php:236 msgid "Must include mixed case" msgstr "" #: ../auth_changepassword.php:240 msgid "Must include at least 1 number" msgstr "" #: ../auth_changepassword.php:244 msgid "Must include at least 1 special character" msgstr "" #: ../auth_changepassword.php:248 #, php-format msgid "Cannot be reused for %d password changes" msgstr "" #: ../auth_changepassword.php:258 ../auth_changepassword.php:284 #: ../include/global_form.php:1468 ../lib/functions.php:1826 #, fuzzy msgid "Change Password" msgstr "Парола" #: ../auth_changepassword.php:290 msgid "Please enter your current password and your new
    Cacti password." msgstr "" #: ../auth_changepassword.php:295 msgid "Current password" msgstr "" #: ../auth_changepassword.php:299 #, fuzzy msgid "New password" msgstr "Парола" #: ../auth_changepassword.php:303 msgid "Confirm new password" msgstr "" #: ../auth_changepassword.php:307 ../lib/html_form.php:1113 #: ../lib/html_form.php:1122 ../lib/html_graph.php:197 ../lib/html_tree.php:649 msgid "Save" msgstr "" #: ../auth_changepassword.php:316 ../auth_login.php:649 #, php-format msgid "Version %1$s | %2$s" msgstr "" #: ../auth_login.php:50 msgid "" "Web Basic Authentication configured, but no username was passed from the web " "server. Please make sure you have authentication enabled on the web server." msgstr "" #: ../auth_login.php:97 #, php-format msgid "" "%s authenticated by Web Server, but both Template and Guest Users are not " "defined in Cacti." msgstr "" #: ../auth_login.php:116 ../auth_login.php:405 #, php-format msgid "LDAP Search Error: %s" msgstr "" #: ../auth_login.php:142 ../auth_login.php:445 #, php-format msgid "LDAP Error: %s" msgstr "" #: ../auth_login.php:219 ../auth_login.php:437 #, php-format msgid "Template user %s does not exist." msgstr "" #: ../auth_login.php:234 #, php-format msgid "Guest user %s does not exist." msgstr "" #: ../auth_login.php:269 msgid "Access Denied, user account disabled." msgstr "" #: ../auth_login.php:355 msgid "Access Denied, please contact you Cacti Administrator." msgstr "" #: ../auth_login.php:519 #, fuzzy msgid "Login to Cacti" msgstr "За cacti" #: ../auth_login.php:552 msgid "User Login" msgstr "" #: ../auth_login.php:564 msgid "Enter your Username and Password below" msgstr "" #: ../auth_login.php:570 ../auth_login.php:573 #: ../include/global_settings.php:1187 ../lib/functions.php:3801 msgid "Username" msgstr "Потребител" #: ../auth_login.php:578 ../include/global_form.php:1435 #: ../lib/functions.php:3802 msgid "Password" msgstr "Парола" #: ../auth_login.php:590 ../include/global_settings.php:1574 #: ../lib/auth.php:287 ../lib/auth.php:299 ../lib/auth.php:310 msgid "Local" msgstr "" #: ../auth_login.php:594 ../include/global_arrays.php:582 ../lib/auth.php:311 msgid "LDAP" msgstr "" #: ../auth_login.php:605 ../user_admin.php:2266 ../user_group_admin.php:675 msgid "Realm" msgstr "" #: ../auth_login.php:621 msgid "Keep me signed in" msgstr "" #: ../auth_login.php:627 msgid "Login" msgstr "" #: ../auth_login.php:640 msgid "Invalid User Name/Password Please Retype" msgstr "" #: ../auth_login.php:643 msgid "User Account Disabled" msgstr "" #: ../auth_profile.php:150 msgid "User Account Details" msgstr "" #: ../auth_profile.php:161 ../include/global_arrays.php:565 #: ../include/global_settings.php:1910 ../lib/html.php:1519 #: ../lib/html.php:1541 #, fuzzy msgid "Tree View" msgstr "Дървовиден изглед" #: ../auth_profile.php:165 ../include/global_arrays.php:566 #: ../lib/html.php:1526 ../lib/html.php:1550 #, fuzzy msgid "List View" msgstr "СпиÑъчен изглед" #: ../auth_profile.php:169 ../include/global_arrays.php:567 #: ../lib/html.php:1533 #, fuzzy msgid "Preview View" msgstr "Общ изглед" #: ../auth_profile.php:182 ../include/global_form.php:1411 #: ../user_admin.php:2263 #, fuzzy msgid "User Name" msgstr "Потребител" #: ../auth_profile.php:183 ../include/global_form.php:1412 #, fuzzy msgid "The login name for this user." msgstr "Изберете име за този източник на данни." #: ../auth_profile.php:190 ../include/global_form.php:1419 #: ../user_admin.php:2264 ../user_group_admin.php:675 ../utilities.php:764 #, fuzzy msgid "Full Name" msgstr "Име" #: ../auth_profile.php:191 ../include/global_form.php:1420 msgid "" "A more descriptive name for this user, that can include spaces or special " "characters." msgstr "" #: ../auth_profile.php:198 ../include/global_form.php:1427 msgid "Email Address" msgstr "" #: ../auth_profile.php:199 msgid "An Email Address you be reached at." msgstr "" #: ../auth_profile.php:206 ../auth_profile.php:208 msgid "Clear Private Data" msgstr "" #: ../auth_profile.php:207 msgid "Clear Private Data including Column sizing." msgstr "" #: ../auth_profile.php:217 ../auth_profile.php:219 msgid "Logout Everywhere" msgstr "" #: ../auth_profile.php:218 msgid "Clear all your Login Session Tokens." msgstr "" #: ../auth_profile.php:239 ../user_admin.php:1928 ../user_group_admin.php:1649 #, fuzzy msgid "User Settings" msgstr "ÐаÑтойки" #: ../auth_profile.php:296 msgid "Private Data Cleared" msgstr "" #: ../auth_profile.php:296 msgid "Your Private Data has been cleared." msgstr "" #: ../auth_profile.php:316 msgid "All your login sessions have been cleared." msgstr "" #: ../auth_profile.php:316 msgid "User Sessions Cleared" msgstr "" #: ../automation_devices.php:31 #, fuzzy msgid "Add Device" msgstr "УÑтройÑтва" #: ../automation_devices.php:39 ../automation_devices.php:271 #: ../automation_devices.php:389 ../automation_devices.php:399 #: ../automation_devices.php:622 ../automation_devices.php:623 ../host.php:1390 #: ../lib/api_automation.php:166 ../lib/api_automation.php:1021 #: ../lib/html_utility.php:811 msgid "Down" msgstr "" #: ../automation_devices.php:40 ../automation_devices.php:271 #: ../automation_devices.php:391 ../automation_devices.php:401 #: ../automation_devices.php:622 ../automation_devices.php:623 ../host.php:1389 #: ../lib/api_automation.php:165 ../lib/api_automation.php:1020 #: ../lib/html_utility.php:817 msgid "Up" msgstr "" #: ../automation_devices.php:90 msgid "Added manually through device automation interface." msgstr "" #: ../automation_devices.php:106 #, fuzzy msgid "Added to Cacti" msgstr "За cacti" #: ../automation_devices.php:106 ../automation_devices.php:108 #: ../data_sources.php:822 ../graph_view.php:619 ../graphs.php:1331 #: ../graphs_items.php:304 ../include/global_arrays.php:651 #: ../include/global_arrays.php:696 ../include/global_arrays.php:1434 #: ../lib/api_automation.php:417 ../lib/functions.php:3796 ../lib/html.php:1629 #: ../lib/html.php:1659 ../lib/html_reports.php:335 ../lib/html_tree.php:349 #: ../lib/html_tree.php:377 ../utilities.php:1409 #, fuzzy msgid "Device" msgstr "УÑтройÑтва" #: ../automation_devices.php:108 msgid "Not Added to Cacti" msgstr "" #: ../automation_devices.php:177 msgid "Click 'Continue' to add the following Discovered device(s)." msgstr "" #: ../automation_devices.php:183 ../pollers.php:602 msgid "Pollers" msgstr "Събиращи Ñкриптове" #: ../automation_devices.php:187 #, fuzzy msgid "Select Template" msgstr "ЕкÑпортиране на шаблони" #: ../automation_devices.php:193 ../automation_templates.php:307 #: ../automation_templates.php:513 msgid "Availability Method" msgstr "" #: ../automation_devices.php:199 #, fuzzy msgid "Add Device(s)" msgstr "УÑтройÑтва" #: ../automation_devices.php:202 msgid "You must select at least one Device." msgstr "" #: ../automation_devices.php:239 ../automation_devices.php:529 ../host.php:1303 #: ../host.php:1396 ../host.php:1489 ../include/global_arrays.php:683 #: ../include/global_arrays.php:735 ../lib/api_automation.php:172 #: ../lib/api_automation.php:466 ../lib/functions.php:2136 ../pollers.php:616 #: ../sites.php:483 ../tree.php:1567 ../user_admin.php:1234 #: ../user_admin.php:2752 ../user_group_admin.php:958 #: ../user_group_admin.php:2267 ../utilities.php:263 msgid "Devices" msgstr "УÑтройÑтва" #: ../automation_devices.php:248 #, fuzzy msgid "Device Name" msgstr "УÑтройÑтва" #: ../automation_devices.php:249 msgid "IP" msgstr "" #: ../automation_devices.php:250 #, fuzzy msgid "SNMP Name" msgstr "SNMP изтекло време" #: ../automation_devices.php:251 ../include/global_settings.php:1570 #, fuzzy msgid "Location" msgstr "ДейÑтвиÑ" #: ../automation_devices.php:252 msgid "Contact" msgstr "" #: ../automation_devices.php:253 ../include/global_form.php:970 #: ../include/global_form.php:1006 ../include/global_form.php:1287 #: ../include/global_form.php:1630 ../install/index.php:899 #: ../lib/api_automation.php:269 ../lib/api_automation.php:1137 #: ../managers.php:222 ../tree.php:647 ../user_admin.php:1101 #: ../user_admin.php:1242 ../user_group_admin.php:966 #: ../user_group_admin.php:1883 msgid "Description" msgstr "" #: ../automation_devices.php:254 ../automation_devices.php:499 msgid "OS" msgstr "" #: ../automation_devices.php:255 ../host.php:1505 #: ../include/global_arrays.php:331 msgid "Uptime" msgstr "" #: ../automation_devices.php:256 ../automation_devices.php:514 #: ../utilities.php:1605 #, fuzzy msgid "SNMP" msgstr "SNMP Порт" #: ../automation_devices.php:257 ../automation_devices.php:484 #: ../automation_graph_rules.php:729 ../automation_networks.php:964 #: ../automation_tree_rules.php:721 ../data_sources.php:1231 #: ../data_templates.php:915 ../host.php:686 ../host.php:778 ../host.php:1381 #: ../host.php:1503 ../lib/api_automation.php:157 ../lib/api_automation.php:271 #: ../lib/api_automation.php:560 ../lib/api_automation.php:1012 #: ../lib/api_automation.php:1140 ../lib/html_reports.php:1384 #: ../managers.php:224 ../plugins.php:282 ../plugins.php:377 ../pollers.php:614 #: ../user_admin.php:1242 ../user_group_admin.php:966 msgid "Status" msgstr "" #: ../automation_devices.php:258 msgid "Last Check" msgstr "" #: ../automation_devices.php:285 ../automation_devices.php:614 msgid "Not Detected" msgstr "" #: ../automation_devices.php:303 ../host.php:1547 #, fuzzy msgid "No Devices Found" msgstr "УÑтройÑтва" #: ../automation_devices.php:439 msgid "Discovery Filters" msgstr "" #: ../automation_devices.php:454 msgid "Network" msgstr "" #: ../automation_devices.php:471 msgid "Reset fields to defaults" msgstr "" #: ../automation_devices.php:474 ../color.php:571 ../lib/html_form.php:1128 #, fuzzy msgid "Export" msgstr "ЕкÑпортиране на резултати" #: ../automation_devices.php:474 msgid "Export to a file" msgstr "" #: ../automation_devices.php:477 ../lib/clog_webapi.php:120 #: ../lib/clog_webapi.php:346 ../managers.php:749 msgid "Purge" msgstr "" #: ../automation_devices.php:477 msgid "Purge Discovered Devices" msgstr "" #: ../automation_graph_rules.php:29 ../automation_snmp.php:30 #: ../automation_tree_rules.php:29 ../cdef.php:30 ../color_templates.php:29 #: ../data_templates.php:34 ../graph_templates.php:34 ../graphs.php:63 #: ../host_templates.php:31 ../include/global_arrays.php:1231 ../vdef.php:30 msgid "Duplicate" msgstr "" #: ../automation_graph_rules.php:30 ../automation_networks.php:33 #: ../automation_tree_rules.php:30 ../data_sources.php:38 ../host.php:39 #: ../include/global_arrays.php:1232 ../include/global_settings.php:1145 #: ../links.php:29 ../managers.php:29 ../managers.php:35 ../plugins.php:29 #: ../pollers.php:31 ../user_admin.php:30 ../user_domains.php:31 #: ../user_domains.php:402 ../user_group_admin.php:32 msgid "Enable" msgstr "" #: ../automation_graph_rules.php:31 ../automation_networks.php:32 #: ../automation_tree_rules.php:31 ../data_sources.php:39 ../host.php:40 #: ../include/global_arrays.php:1233 ../links.php:30 ../managers.php:30 #: ../managers.php:34 ../plugins.php:30 ../pollers.php:30 ../user_admin.php:31 #: ../user_domains.php:30 ../user_group_admin.php:33 msgid "Disable" msgstr "" #: ../automation_graph_rules.php:251 msgid "Press 'Continue' to delete the following Graph Rules." msgstr "" #: ../automation_graph_rules.php:258 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Graph Rules." msgstr "" #: ../automation_graph_rules.php:260 ../automation_tree_rules.php:262 #: ../graphs.php:851 ../graphs.php:862 msgid "Title Format" msgstr "" #: ../automation_graph_rules.php:260 ../automation_tree_rules.php:262 msgid "rule_name" msgstr "" #: ../automation_graph_rules.php:266 ../automation_tree_rules.php:268 msgid "Click 'Continue' to enable the following Rule(s)." msgstr "" #: ../automation_graph_rules.php:268 ../automation_tree_rules.php:270 msgid "Make sure, that those rules have successfully been tested!" msgstr "" #: ../automation_graph_rules.php:274 ../automation_tree_rules.php:276 msgid "Click 'Continue' to disable the following Rule(s)." msgstr "" #: ../automation_graph_rules.php:281 ../automation_tree_rules.php:283 msgid "You must select at least one Rule." msgstr "" #: ../automation_graph_rules.php:284 ../automation_tree_rules.php:286 msgid "Apply requested action" msgstr "" #: ../automation_graph_rules.php:414 ../automation_tree_rules.php:471 msgid "Are You Sure?" msgstr "" #: ../automation_graph_rules.php:414 #, php-format msgid "Are you sure you want to delete the Rule '%s'?" msgstr "" #: ../automation_graph_rules.php:497 #, php-format msgid "Rule Selection [edit: %s]" msgstr "" #: ../automation_graph_rules.php:503 msgid "Rule Selection [new]" msgstr "" #: ../automation_graph_rules.php:513 ../automation_graph_rules.php:528 #: ../automation_graph_rules.php:544 ../automation_tree_rules.php:379 #: ../automation_tree_rules.php:529 msgid "Don't Show" msgstr "" #: ../automation_graph_rules.php:513 msgid "Rule Details." msgstr "" #: ../automation_graph_rules.php:528 msgid "Matching Devices." msgstr "" #: ../automation_graph_rules.php:544 msgid "Matching Objects." msgstr "" #: ../automation_graph_rules.php:580 msgid "Device Selection Criteria" msgstr "" #: ../automation_graph_rules.php:586 msgid "Graph Creation Criteria" msgstr "" #: ../automation_graph_rules.php:692 ../automation_graph_rules.php:739 #: ../automation_graph_rules.php:846 ../include/global_arrays.php:706 #: ../include/global_form.php:1571 ../lib/functions.php:2586 #, fuzzy msgid "Graph Rules" msgstr "Графични елементи" #: ../automation_graph_rules.php:707 ../automation_graph_rules.php:857 #: ../include/global_arrays.php:992 ../include/global_form.php:1561 #: ../include/global_form.php:2176 msgid "Data Query" msgstr "Вземане на данни" #: ../automation_graph_rules.php:734 ../automation_graph_rules.php:859 #: ../automation_networks.php:496 ../automation_tree_rules.php:848 #: ../automation_tree_rules.php:866 ../data_sources.php:1236 ../host.php:1386 #: ../include/global_arrays.php:614 ../include/global_form.php:1443 #: ../include/global_settings.php:339 ../lib/api_automation.php:162 #: ../lib/api_automation.php:1017 ../lib/html_reports.php:1389 #: ../lib/html_reports.php:1482 ../lib/html_reports.php:1493 #: ../lib/html_reports.php:1529 ../links.php:381 ../managers.php:249 #: ../managers.php:628 ../user_admin.php:1101 ../user_admin.php:1113 #: ../user_admin.php:2265 ../user_domains.php:341 ../user_domains.php:718 #: ../user_group_admin.php:87 ../user_group_admin.php:675 #: ../user_group_admin.php:690 ../user_group_admin.php:1887 #: ../utilities.php:2142 msgid "Enabled" msgstr "" #: ../automation_graph_rules.php:735 ../automation_networks.php:979 #: ../automation_tree_rules.php:866 ../data_sources.php:1237 #: ../data_templates.php:934 ../host.php:1387 ../include/global_arrays.php:613 #: ../include/global_arrays.php:1159 ../include/global_arrays.php:1442 #: ../include/global_settings.php:339 ../include/global_settings.php:1021 #: ../include/global_settings.php:1035 ../include/global_settings.php:1047 #: ../include/global_settings.php:1072 ../include/global_settings.php:1086 #: ../include/global_settings.php:1145 ../include/global_settings.php:1764 #: ../lib/api_automation.php:163 ../lib/api_automation.php:1018 #: ../lib/html_reports.php:1390 ../lib/html_reports.php:1529 #: ../lib/html_utility.php:807 ../managers.php:249 ../managers.php:628 #: ../pollers.php:40 ../user_admin.php:1113 ../user_domains.php:402 #: ../user_group_admin.php:690 ../utilities.php:2142 msgid "Disabled" msgstr "" #: ../automation_graph_rules.php:855 ../automation_tree_rules.php:842 #, fuzzy msgid "Rule Name" msgstr "Име" #: ../automation_graph_rules.php:855 #, fuzzy msgid "The name of this rule." msgstr "Името зададено за този шаблон за данни" #: ../automation_graph_rules.php:856 msgid "" "The internal database ID for this rule. Useful in performing debugging and " "automation." msgstr "" #: ../automation_graph_rules.php:858 ../include/global_form.php:1803 #: ../include/global_form.php:1886 ../include/global_form.php:1988 #: ../include/global_form.php:2187 #, fuzzy msgid "Graph Type" msgstr "Дърво на графики" #: ../automation_graph_rules.php:881 msgid "No Graph Rules Found" msgstr "" #: ../automation_networks.php:34 msgid "Discover Now" msgstr "" #: ../automation_networks.php:35 msgid "Cancel Discovery" msgstr "" #: ../automation_networks.php:185 #, php-format msgid "ERROR: You must specificy the day of the week. Disabling Network %s!." msgstr "" #: ../automation_networks.php:191 #, php-format msgid "" "ERROR: You must specificy both the Months and Days of Month. Disabling " "Network %s!." msgstr "" #: ../automation_networks.php:197 #, php-format msgid "" "ERROR: You must specificy the Months, Weeks of Months, and Days of Week. " "Disabling Network %s!." msgstr "" #: ../automation_networks.php:215 #, php-format msgid "ERROR: Network '%s' is Invalid." msgstr "" #: ../automation_networks.php:312 msgid "Click 'Continue' to delete the following Network(s)." msgstr "" #: ../automation_networks.php:319 msgid "Click 'Continue' to enable the following Network(s)." msgstr "" #: ../automation_networks.php:326 msgid "Click 'Continue' to disable the following Network(s)." msgstr "" #: ../automation_networks.php:333 msgid "Click 'Continue' to discover the following Network(s)." msgstr "" #: ../automation_networks.php:340 msgid "Click 'Continue' to cancel on going Network Discovery(s)." msgstr "" #: ../automation_networks.php:347 msgid "You must select at least one Network." msgstr "" #: ../automation_networks.php:378 ../automation_networks.php:952 #: ../tree.php:1087 msgid "Manual" msgstr "" #: ../automation_networks.php:379 ../automation_networks.php:953 #: ../include/global_arrays.php:500 msgid "Daily" msgstr "" #: ../automation_networks.php:380 ../automation_networks.php:954 msgid "Weekly" msgstr "" #: ../automation_networks.php:381 ../automation_networks.php:955 msgid "Monthly" msgstr "" #: ../automation_networks.php:382 ../automation_networks.php:956 msgid "Monthly on Day" msgstr "" #: ../automation_networks.php:386 #, php-format msgid "Network Discovery Range [edit: %s]" msgstr "" #: ../automation_networks.php:388 msgid "Network Discovery Range [new]" msgstr "" #: ../automation_networks.php:395 ../include/global_form.php:1855 #: ../include/global_form.php:1955 ../include/global_settings.php:51 #: ../lib/html_reports.php:30 #, fuzzy msgid "General Settings" msgstr "ÐаÑтройки на cacti" #: ../automation_networks.php:400 ../automation_snmp.php:645 #: ../data_input.php:468 ../data_input.php:502 ../data_queries.php:594 #: ../data_queries.php:690 ../data_queries.php:910 #: ../data_source_profiles.php:486 ../graph_templates.php:423 #: ../include/global_form.php:35 ../include/global_form.php:104 #: ../include/global_form.php:154 ../include/global_form.php:174 #: ../include/global_form.php:215 ../include/global_form.php:339 #: ../include/global_form.php:366 ../include/global_form.php:473 #: ../include/global_form.php:930 ../include/global_form.php:962 #: ../include/global_form.php:1259 ../include/global_form.php:1279 #: ../include/global_form.php:1349 ../include/global_form.php:1377 #: ../include/global_form.php:2070 ../include/global_form.php:2168 #: ../include/global_form.php:2215 ../install/index.php:466 #: ../install/index.php:543 ../install/index.php:899 ../lib/vdef.php:74 #: ../managers.php:607 ../pollers.php:52 ../sites.php:40 ../user_admin.php:1101 #: ../user_domains.php:317 ../utilities.php:466 ../utilities.php:2338 msgid "Name" msgstr "Име" #: ../automation_networks.php:401 msgid "Give this Network a meaningful name." msgstr "" #: ../automation_networks.php:404 msgid "New Network Discovery Range" msgstr "" #: ../automation_networks.php:408 ../automation_networks.php:961 #: ../host.php:1330 msgid "Data Collector" msgstr "" #: ../automation_networks.php:409 ../include/global_form.php:1022 msgid "" "Choose the Cacti Data Collector/Poller to be used to gather data from this " "Device." msgstr "" #: ../automation_networks.php:416 #, fuzzy msgid "Associated Site" msgstr "ÐÑоциирани RRA" #: ../automation_networks.php:417 msgid "" "Choose the Cacti Site that you wish to associate discovered Devices with." msgstr "" #: ../automation_networks.php:425 msgid "Subnet Range" msgstr "" #: ../automation_networks.php:426 msgid "" "Enter valid Network Ranges separated by commas. You may use an IP address, " "a Network range such as 192.168.1.0/24 or 192.168.1.0/255.255.255.0, or " "using wildcards such as 192.168.*.*" msgstr "" #: ../automation_networks.php:435 msgid "Total IP Addresses" msgstr "" #: ../automation_networks.php:436 msgid "Total addressable IP Addresses in this Network Range." msgstr "" #: ../automation_networks.php:441 msgid "Alternate DNS Servers" msgstr "" #: ../automation_networks.php:442 msgid "" "A space delimited list of alternate DNS Servers to use for DNS resolution. " "If blank, the poller OS will be used to resolve DNS names." msgstr "" #: ../automation_networks.php:445 msgid "Enter IPs or FQDNs of DNS Servers" msgstr "" #: ../automation_networks.php:449 msgid "Schedule Type" msgstr "" #: ../automation_networks.php:450 msgid "Define the collection frequency." msgstr "" #: ../automation_networks.php:457 msgid "Discovery Threads" msgstr "" #: ../automation_networks.php:458 msgid "Define the number of threads to use for discovering this Network Range." msgstr "" #: ../automation_networks.php:461 #, php-format msgid "%d Thread" msgstr "" #: ../automation_networks.php:462 ../automation_networks.php:463 #: ../automation_networks.php:464 ../automation_networks.php:465 #: ../automation_networks.php:466 ../automation_networks.php:467 #: ../automation_networks.php:468 ../automation_networks.php:469 #: ../automation_networks.php:470 ../automation_networks.php:471 #: ../automation_networks.php:472 ../include/global_arrays.php:548 #: ../include/global_arrays.php:549 ../include/global_arrays.php:550 #: ../include/global_arrays.php:551 ../include/global_arrays.php:552 #, php-format msgid "%d Threads" msgstr "" #: ../automation_networks.php:478 msgid "Run Limit" msgstr "" #: ../automation_networks.php:479 msgid "After the selected Run Limit, the discovery process will be terminated." msgstr "" #: ../automation_networks.php:482 #, php-format msgid "%d Minute" msgstr "" #: ../automation_networks.php:483 ../automation_networks.php:484 #: ../automation_networks.php:485 ../automation_networks.php:486 #: ../data_sources.php:1071 ../include/global_arrays.php:490 #: ../include/global_arrays.php:491 ../include/global_arrays.php:492 #: ../include/global_arrays.php:493 ../include/global_arrays.php:523 #: ../include/global_arrays.php:524 ../include/global_arrays.php:525 #: ../include/global_arrays.php:526 ../include/global_arrays.php:527 #: ../include/global_arrays.php:528 ../include/global_arrays.php:846 #: ../include/global_arrays.php:847 ../include/global_arrays.php:1166 #: ../include/global_arrays.php:1170 ../include/global_arrays.php:1178 #: ../include/global_arrays.php:1179 ../include/global_arrays.php:1201 #: ../include/global_arrays.php:1202 ../include/global_arrays.php:1203 #: ../include/global_arrays.php:1204 ../include/global_arrays.php:1205 #: ../include/global_arrays.php:1216 ../include/global_settings.php:1088 #: ../include/global_settings.php:1089 ../include/global_settings.php:1090 #: ../include/global_settings.php:1091 ../include/global_settings.php:1092 #: ../include/global_settings.php:1837 #, php-format msgid "%d Minutes" msgstr "" #: ../automation_networks.php:487 ../include/global_arrays.php:1071 #, php-format msgid "%d Hour" msgstr "" #: ../automation_networks.php:488 ../automation_networks.php:489 #: ../automation_networks.php:490 ../data_source_profiles.php:656 #: ../include/global_arrays.php:495 ../include/global_arrays.php:496 #: ../include/global_arrays.php:497 ../include/global_arrays.php:498 #: ../include/global_arrays.php:499 ../include/global_arrays.php:530 #: ../include/global_arrays.php:531 ../include/global_arrays.php:532 #: ../include/global_arrays.php:533 ../include/global_arrays.php:1072 #: ../include/global_arrays.php:1073 ../include/global_arrays.php:1074 #: ../include/global_arrays.php:1075 ../include/global_arrays.php:1118 #: ../include/global_arrays.php:1119 ../include/global_arrays.php:1120 #: ../include/global_arrays.php:1121 ../include/global_arrays.php:1122 #: ../include/global_arrays.php:1139 ../include/global_arrays.php:1140 #: ../include/global_arrays.php:1141 ../include/global_arrays.php:1142 #: ../include/global_arrays.php:1143 ../include/global_settings.php:1094 #: ../include/global_settings.php:1095 ../include/global_settings.php:1096 #: ../include/global_settings.php:1097 #, php-format msgid "%d Hours" msgstr "" #: ../automation_networks.php:497 msgid "Enable this Network Range Enabled." msgstr "" #: ../automation_networks.php:502 msgid "Enable NetBIOS" msgstr "" #: ../automation_networks.php:503 msgid "Use NetBIOS to attempt to result the hostname of up hosts." msgstr "" #: ../automation_networks.php:509 msgid "Automatically Add to Cacti" msgstr "" #: ../automation_networks.php:510 msgid "" "For any newly discovered Devices that are reachable using SNMP and who match " "a Device Rule, add them to Cacti." msgstr "" #: ../automation_networks.php:515 #, fuzzy msgid "Rerun Data Queries" msgstr "Ðвтоматизирани данни" #: ../automation_networks.php:516 msgid "" "If a device, previously added to Cacti, is found, rerun its data queries." msgstr "" #: ../automation_networks.php:521 msgid "Discovery Timing" msgstr "" #: ../automation_networks.php:526 msgid "Starting Date/Time" msgstr "" #: ../automation_networks.php:527 msgid "What time will this Network discover item start?" msgstr "" #: ../automation_networks.php:535 msgid "Rerun Every" msgstr "" #: ../automation_networks.php:536 msgid "Rerun discovery for this Network Range every X." msgstr "" #: ../automation_networks.php:551 msgid "Days of Week" msgstr "" #: ../automation_networks.php:552 ../automation_networks.php:610 msgid "What Day(s) of the week will this Network Range be discovered." msgstr "" #: ../automation_networks.php:554 ../automation_networks.php:612 #: ../include/global_arrays.php:1492 msgid "Sunday" msgstr "" #: ../automation_networks.php:555 ../automation_networks.php:613 #: ../include/global_arrays.php:1493 msgid "Monday" msgstr "" #: ../automation_networks.php:556 ../automation_networks.php:614 #: ../include/global_arrays.php:1494 msgid "Tuesday" msgstr "" #: ../automation_networks.php:557 ../automation_networks.php:615 #: ../include/global_arrays.php:1495 msgid "Wednesday" msgstr "" #: ../automation_networks.php:558 ../automation_networks.php:616 #: ../include/global_arrays.php:1496 msgid "Thursday" msgstr "" #: ../automation_networks.php:559 ../automation_networks.php:617 #: ../include/global_arrays.php:1497 msgid "Friday" msgstr "" #: ../automation_networks.php:560 ../automation_networks.php:618 #: ../include/global_arrays.php:1498 msgid "Saturday" msgstr "" #: ../automation_networks.php:567 msgid "Months of Year" msgstr "" #: ../automation_networks.php:568 msgid "What Months(s) of the Year will this Network Range be discovered." msgstr "" #: ../automation_networks.php:570 ../include/global_arrays.php:1462 msgid "January" msgstr "" #: ../automation_networks.php:571 ../include/global_arrays.php:1463 msgid "February" msgstr "" #: ../automation_networks.php:572 ../include/global_arrays.php:1464 msgid "March" msgstr "" #: ../automation_networks.php:573 ../include/global_arrays.php:1465 msgid "April" msgstr "" #: ../automation_networks.php:574 ../include/global_arrays.php:1466 msgid "May" msgstr "" #: ../automation_networks.php:575 ../include/global_arrays.php:1467 msgid "June" msgstr "" #: ../automation_networks.php:576 ../include/global_arrays.php:1468 msgid "July" msgstr "" #: ../automation_networks.php:577 ../include/global_arrays.php:1469 msgid "August" msgstr "" #: ../automation_networks.php:578 ../include/global_arrays.php:1470 msgid "September" msgstr "" #: ../automation_networks.php:579 ../include/global_arrays.php:1471 msgid "October" msgstr "" #: ../automation_networks.php:580 ../include/global_arrays.php:1472 msgid "November" msgstr "" #: ../automation_networks.php:581 ../include/global_arrays.php:1473 msgid "December" msgstr "" #: ../automation_networks.php:588 msgid "Days of Month" msgstr "" #: ../automation_networks.php:589 msgid "What Day(s) of the Month will this Network Range be discovered." msgstr "" #: ../automation_networks.php:590 ../automation_networks.php:602 msgid "Last" msgstr "" #: ../automation_networks.php:596 msgid "Week(s) of Month" msgstr "" #: ../automation_networks.php:597 msgid "What Week(s) of the Month will this Network Range be discovered." msgstr "" #: ../automation_networks.php:599 msgid "First" msgstr "" #: ../automation_networks.php:600 msgid "Second" msgstr "" #: ../automation_networks.php:601 msgid "Third" msgstr "" #: ../automation_networks.php:609 msgid "Day(s) of Week" msgstr "" #: ../automation_networks.php:625 #, fuzzy msgid "Reachability Settings" msgstr "ÐаÑтройки на cacti" #: ../automation_networks.php:630 ../include/global_arrays.php:708 #: ../include/global_form.php:1062 ../include/global_form.php:1662 #, fuzzy msgid "SNMP Options" msgstr "SNMP ВерÑиÑ" #: ../automation_networks.php:631 msgid "Select the SNMP Options to use for discovery of this Network Range." msgstr "" #: ../automation_networks.php:637 ../include/global_form.php:1187 msgid "Ping Method" msgstr "" #: ../automation_networks.php:638 msgid "The type of ping packet to send." msgstr "" #: ../automation_networks.php:646 ../include/global_form.php:1197 #: ../include/global_settings.php:561 #, fuzzy msgid "Ping Port" msgstr "SNMP Порт" #: ../automation_networks.php:648 ../include/global_form.php:1199 msgid "TCP or UDP port to attempt connection." msgstr "" #: ../automation_networks.php:654 ../include/global_form.php:1205 #: ../include/global_settings.php:569 #, fuzzy msgid "Ping Timeout Value" msgstr "Минимална ÑтойноÑÑ‚" #: ../automation_networks.php:655 ../include/global_form.php:1206 #: ../include/global_settings.php:570 msgid "" "The timeout value to use for host ICMP and UDP pinging. This host SNMP " "timeout value applies for SNMP pings." msgstr "" #: ../automation_networks.php:663 ../include/global_form.php:1214 #: ../include/global_settings.php:577 msgid "Ping Retry Count" msgstr "" #: ../automation_networks.php:664 ../include/global_form.php:1215 msgid "" "After an initial failure, the number of ping retries Cacti will attempt " "before failing." msgstr "" #: ../automation_networks.php:704 msgid "Select the days(s) of the week" msgstr "" #: ../automation_networks.php:714 msgid "Select the month(s) of the year" msgstr "" #: ../automation_networks.php:724 msgid "Select the day(s) of the month" msgstr "" #: ../automation_networks.php:734 msgid "Select the week(s) of the month" msgstr "" #: ../automation_networks.php:744 msgid "Select the day(s) of the week" msgstr "" #: ../automation_networks.php:817 ../automation_networks.php:834 msgid "every X Days" msgstr "" #: ../automation_networks.php:817 ../automation_networks.php:834 msgid "every X Weeks" msgstr "" #: ../automation_networks.php:818 msgid "every X Days." msgstr "" #: ../automation_networks.php:818 ../automation_networks.php:835 msgid "every X." msgstr "" #: ../automation_networks.php:835 msgid "every X Weeks." msgstr "" #: ../automation_networks.php:933 msgid "Network Filters" msgstr "" #: ../automation_networks.php:943 ../automation_networks.php:1067 #: ../include/global_arrays.php:703 msgid "Networks" msgstr "" #: ../automation_networks.php:960 msgid "Network Name" msgstr "" #: ../automation_networks.php:962 msgid "Schedule" msgstr "" #: ../automation_networks.php:963 msgid "Total IPs" msgstr "" #: ../automation_networks.php:964 msgid "The Current Status of this Networks Discovery" msgstr "" #: ../automation_networks.php:965 msgid "Pending/Running/Done" msgstr "" #: ../automation_networks.php:965 msgid "Progress" msgstr "" #: ../automation_networks.php:966 #, fuzzy msgid "Up/SNMP Hosts" msgstr "SNMP Порт" #: ../automation_networks.php:967 msgid "Threads" msgstr "" #: ../automation_networks.php:968 msgid "Last Runtime" msgstr "" #: ../automation_networks.php:969 msgid "Next Start" msgstr "" #: ../automation_networks.php:970 msgid "Last Started" msgstr "" #: ../automation_networks.php:995 ../pollers.php:37 ../utilities.php:1952 msgid "Running" msgstr "" #: ../automation_networks.php:1015 ../pollers.php:38 ../utilities.php:1951 msgid "Idle" msgstr "" #: ../automation_networks.php:1030 ../automation_snmp.php:705 #: ../automation_snmp.php:706 ../automation_snmp.php:707 #: ../automation_snmp.php:708 ../automation_snmp.php:709 #: ../automation_snmp.php:710 ../lib/html.php:937 ../user_admin.php:2278 #: ../utilities.php:406 ../utilities.php:792 ../utilities.php:2015 #: ../utilities.php:2115 ../utilities.php:2118 ../utilities.php:2121 #: ../utilities.php:2127 ../utilities.php:2358 msgid "N/A" msgstr "" #: ../automation_networks.php:1036 msgid "No Networks Found" msgstr "" #: ../automation_networks.php:1085 #, fuzzy msgid "Clear Filtered" msgstr "ЗачиÑтване на кеша на ÑÑŠÐ±Ð¸Ñ€Ð°Ñ‰Ð¸Ñ Ñкрипт" #: ../automation_snmp.php:225 msgid "You must select at least one SNMP Option." msgstr "" #: ../automation_snmp.php:233 msgid "Click 'Continue' to delete the following SNMP Option(s)." msgstr "" #: ../automation_snmp.php:240 msgid "" "Click 'Continue' to duplicate the following SNMP Options. You can optionally " "change the title format for the new SNMP Options." msgstr "" #: ../automation_snmp.php:242 msgid "Name Format" msgstr "" #: ../automation_snmp.php:242 #, fuzzy msgid "name" msgstr "Потребител" #: ../automation_snmp.php:348 msgid "Click 'Continue' to delete the following SNMP Option Item." msgstr "" #: ../automation_snmp.php:349 #, fuzzy msgid "SNMP Option:" msgstr "SNMP ВерÑиÑ" #: ../automation_snmp.php:350 #, fuzzy, php-format msgid "SNMP Version: %s" msgstr "SNMP ВерÑиÑ" #: ../automation_snmp.php:351 #, php-format msgid "SNMP Community/Username: %s" msgstr "" #: ../automation_snmp.php:357 msgid "Remove SNMP Item" msgstr "" #: ../automation_snmp.php:416 #, php-format msgid "SNMP Options [edit: %s]" msgstr "" #: ../automation_snmp.php:418 msgid "SNMP Options [new]" msgstr "" #: ../automation_snmp.php:434 ../include/global_form.php:1067 #: ../include/global_form.php:1667 msgid "SNMP Version" msgstr "SNMP ВерÑиÑ" #: ../automation_snmp.php:435 msgid "Choose the SNMP version for this host." msgstr "" #: ../automation_snmp.php:443 #, fuzzy msgid "SNMP Community String" msgstr "SNMP ОбщноÑÑ‚" #: ../automation_snmp.php:444 msgid "Fill in the SNMP read community for this device." msgstr "" #: ../automation_snmp.php:452 ../include/global_form.php:1147 #: ../include/global_form.php:1737 msgid "SNMP Port" msgstr "SNMP Порт" #: ../automation_snmp.php:453 msgid "The UDP/TCP Port to poll the SNMP agent on." msgstr "" #: ../automation_snmp.php:461 ../include/global_form.php:1156 #: ../include/global_form.php:1746 msgid "SNMP Timeout" msgstr "SNMP изтекло време" #: ../automation_snmp.php:462 ../include/global_form.php:1157 #: ../include/global_form.php:1747 msgid "" "The maximum number of milliseconds Cacti will wait for an SNMP response " "(does not work with php-snmp support)." msgstr "" "МакÑималното време в милиÑекунди, което Cacti да чака SNMP отговор (не " "работи ÑÑŠÑ php-snmp поддръжка)." #: ../automation_snmp.php:470 #, fuzzy msgid "SNMP Retries" msgstr "SNMP ВерÑиÑ" #: ../automation_snmp.php:471 msgid "" "The maximum number of attempts to reach a device via an SNMP readstring " "prior to giving up." msgstr "" #: ../automation_snmp.php:479 msgid "Maximum OID's Per Get Request" msgstr "" #: ../automation_snmp.php:480 ../include/global_form.php:1166 msgid "" "Specified the number of OIDs that can be obtained in a single SNMP Get " "request." msgstr "" #: ../automation_snmp.php:488 ../include/global_form.php:1086 #: ../include/global_form.php:1686 #, fuzzy msgid "SNMP Username (v3)" msgstr "Потребител" #: ../automation_snmp.php:489 ../include/global_form.php:1087 #: ../include/global_form.php:1687 msgid "SNMP v3 username for this device." msgstr "" #: ../automation_snmp.php:497 ../include/global_form.php:1095 #, fuzzy msgid "SNMP Password (v3)" msgstr "Парола" #: ../automation_snmp.php:498 msgid "SNMP v3 password for this device." msgstr "" #: ../automation_snmp.php:506 ../include/global_form.php:1104 #: ../include/global_form.php:1704 msgid "SNMP Auth Protocol (v3)" msgstr "" #: ../automation_snmp.php:507 ../include/global_settings.php:499 msgid "Choose the SNMPv3 Authorization Protocol." msgstr "" #: ../automation_snmp.php:514 ../include/global_form.php:1112 msgid "SNMP Privacy Passphrase (v3)" msgstr "" #: ../automation_snmp.php:515 ../include/global_form.php:1713 #: ../include/global_settings.php:506 msgid "Choose the SNMPv3 Privacy Passphrase." msgstr "" #: ../automation_snmp.php:523 ../include/global_form.php:1121 #: ../include/global_form.php:1721 msgid "SNMP Privacy Protocol (v3)" msgstr "" #: ../automation_snmp.php:524 ../include/global_settings.php:513 msgid "Choose the SNMPv3 Privacy Protocol." msgstr "" #: ../automation_snmp.php:531 #, fuzzy msgid "SNMP Context" msgstr "SNMP ОбщноÑÑ‚" #: ../automation_snmp.php:532 #, fuzzy msgid "Enter the SNMP Context to use for this device." msgstr "Въведете UDP порт номер който да Ñе използва за SNMP (Ñтандартно 161)" #: ../automation_snmp.php:544 ../include/global_form.php:921 #: ../include/global_form.php:2117 ../include/global_form.php:2159 #: ../include/global_form.php:2313 ../lib/api_automation.php:1207 #: ../lib/api_automation.php:1269 ../lib/api_automation.php:1332 #: ../lib/html_reports.php:399 ../lib/html_reports.php:1210 msgid "Sequence" msgstr "" #: ../automation_snmp.php:545 ../lib/html_reports.php:400 msgid "Sequence of Item." msgstr "" #: ../automation_snmp.php:632 #, fuzzy, php-format msgid "SNMP Option Set [edit: %s]" msgstr "SNMP ВерÑиÑ" #: ../automation_snmp.php:634 #, fuzzy msgid "SNMP Option Set [new]" msgstr "SNMP ВерÑиÑ" #: ../automation_snmp.php:646 msgid "Fill in the name of this SNMP Option Set." msgstr "" #: ../automation_snmp.php:671 ../automation_snmp.php:820 msgid "Automation SNMP Options" msgstr "" #: ../automation_snmp.php:674 ../cdef.php:584 ../lib/api_automation.php:1206 #: ../lib/api_automation.php:1268 ../lib/api_automation.php:1331 #: ../lib/html_reports.php:1209 ../vdef.php:564 msgid "Item" msgstr "" #: ../automation_snmp.php:675 ../include/auth.php:154 #: ../include/global_settings.php:469 ../permission_denied.php:67 #: ../plugins.php:379 #, fuzzy msgid "Version" msgstr "SNMP ВерÑиÑ" #: ../automation_snmp.php:676 ../include/global_settings.php:476 #, fuzzy msgid "Community" msgstr "SNMP ОбщноÑÑ‚" #: ../automation_snmp.php:677 ../lib/functions.php:3797 #, fuzzy msgid "Port" msgstr "SNMP Порт" #: ../automation_snmp.php:678 ../include/global_settings.php:518 #, fuzzy msgid "Timeout" msgstr "SNMP изтекло време" #: ../automation_snmp.php:679 ../include/global_settings.php:534 msgid "Retries" msgstr "" #: ../automation_snmp.php:680 msgid "Max OIDS" msgstr "" #: ../automation_snmp.php:681 #, fuzzy msgid "Auth Username" msgstr "Потребител" #: ../automation_snmp.php:682 #, fuzzy msgid "Auth Password" msgstr "Парола" #: ../automation_snmp.php:683 msgid "Auth Protocol" msgstr "" #: ../automation_snmp.php:684 msgid "Priv Passphrase" msgstr "" #: ../automation_snmp.php:685 msgid "Priv Protocol" msgstr "" #: ../automation_snmp.php:686 msgid "Context" msgstr "" #: ../automation_snmp.php:687 ../data_queries.php:914 ../utilities.php:1600 #, fuzzy msgid "Action" msgstr "ДейÑтвиÑ" #: ../automation_snmp.php:700 msgid "none" msgstr "" #: ../automation_snmp.php:715 ../automation_templates.php:545 ../cdef.php:607 #: ../color_templates.php:110 ../data_queries.php:624 ../data_queries.php:722 #: ../lib/api_automation.php:1233 ../lib/api_automation.php:1296 #: ../lib/api_automation.php:1360 ../lib/html.php:959 #: ../lib/html_reports.php:1284 ../lib/html_reports.php:1286 ../tree.php:1578 #: ../tree.php:1582 ../tree.php:1585 ../tree.php:1586 ../vdef.php:588 msgid "Move Down" msgstr "" #: ../automation_snmp.php:721 ../automation_templates.php:551 ../cdef.php:613 #: ../color_templates.php:116 ../data_queries.php:629 ../data_queries.php:727 #: ../lib/api_automation.php:1239 ../lib/api_automation.php:1302 #: ../lib/api_automation.php:1366 ../lib/html.php:964 #: ../lib/html_reports.php:1286 ../lib/html_reports.php:1288 ../vdef.php:594 msgid "Move Up" msgstr "" #: ../automation_snmp.php:735 msgid "No SNMP Items" msgstr "" #: ../automation_snmp.php:770 msgid "Delete SNMP Option Item" msgstr "" #: ../automation_snmp.php:834 #, fuzzy msgid "SNMP Rules" msgstr "SNMP ВерÑиÑ" #: ../automation_snmp.php:923 msgid "SNMP Option Sets" msgstr "" #: ../automation_snmp.php:932 msgid "SNMP Option Set" msgstr "" #: ../automation_snmp.php:933 msgid "Networks Using" msgstr "" #: ../automation_snmp.php:934 msgid "SNMP Entries" msgstr "" #: ../automation_snmp.php:935 msgid "V1 Entries" msgstr "" #: ../automation_snmp.php:936 msgid "V2 Entries" msgstr "" #: ../automation_snmp.php:937 msgid "V3 Entries" msgstr "" #: ../automation_snmp.php:957 msgid "No SNMP Option Sets Found" msgstr "" #: ../automation_templates.php:190 msgid "Click 'Continue' to delete the folling Automation Template(s)." msgstr "" #: ../automation_templates.php:195 msgid "Delete Automation Template(s)" msgstr "" #: ../automation_templates.php:198 msgid "You must select at least one Automation Template." msgstr "" #: ../automation_templates.php:300 ../include/global_arrays.php:993 #: ../include/global_form.php:1038 ../include/global_form.php:1546 #: ../lib/html_reports.php:325 #, fuzzy msgid "Device Template" msgstr "Шаблони за графики" #: ../automation_templates.php:301 msgid "Select a Device Template that Devices will be matched to." msgstr "" #: ../automation_templates.php:308 msgid "Choose the Availability Method to use for Discovered Devices." msgstr "" #: ../automation_templates.php:315 ../automation_templates.php:514 msgid "System Description Match" msgstr "" #: ../automation_templates.php:316 msgid "" "This is a unique string that will be matched to a devices sysDescr string to " "pair it to this Discovery Template. Any Perl regular expression can be used " "in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:322 ../automation_templates.php:515 msgid "System Name Match" msgstr "" #: ../automation_templates.php:323 msgid "" "This is a unique string that will be matched to a devices sysName string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:329 msgid "System OID Match" msgstr "" #: ../automation_templates.php:330 msgid "" "This is a unique string that will be matched to a devices sysOid string to " "pair it to this Automation Template. Any Perl regular expression can be " "used in addition to any SQL Where expression." msgstr "" #: ../automation_templates.php:350 #, php-format msgid "Automation Templates [edit: %s]" msgstr "" #: ../automation_templates.php:352 msgid "Automation Templates [new]" msgstr "" #: ../automation_templates.php:403 msgid "Device Automation Templates" msgstr "" #: ../automation_templates.php:512 ../data_sources.php:1410 ../graphs.php:1789 #: ../user_admin.php:1384 ../user_group_admin.php:1109 #, fuzzy msgid "Template Name" msgstr "Шаблони за елементи на графиката" #: ../automation_templates.php:516 msgid "System ObjectId Match" msgstr "" #: ../automation_templates.php:520 ../data_queries.php:595 #: ../data_queries.php:691 ../links.php:382 ../tree.php:1563 msgid "Order" msgstr "" #: ../automation_templates.php:530 #, fuzzy msgid "Unknown Template" msgstr "ЕкÑпортиране на шаблони" #: ../automation_templates.php:565 msgid "No Automation Device Templates Found" msgstr "" #: ../automation_tree_rules.php:253 msgid "Click 'Continue' to delete the following Rule(s)." msgstr "" #: ../automation_tree_rules.php:260 msgid "" "Click 'Continue' to duplicate the following Rule(s). You can optionally " "change the title format for the new Rules." msgstr "" #: ../automation_tree_rules.php:379 #, fuzzy msgid "Created Trees" msgstr "Дърво на графики" #: ../automation_tree_rules.php:471 #, php-format msgid "Are you sure you want to DELETE the Rule '%s'?" msgstr "" #: ../automation_tree_rules.php:529 msgid "Eligible Objects" msgstr "" #: ../automation_tree_rules.php:542 #, php-format msgid "Tree Rule Selection [edit: %s]" msgstr "" #: ../automation_tree_rules.php:544 msgid "Tree Rules Selection [new]" msgstr "" #: ../automation_tree_rules.php:706 ../automation_tree_rules.php:731 #: ../automation_tree_rules.php:833 ../include/global_arrays.php:707 #: ../include/global_form.php:1576 ../lib/functions.php:2610 #, fuzzy msgid "Tree Rules" msgstr "Дървовиден изглед" #: ../automation_tree_rules.php:844 msgid "Hook into Tree" msgstr "" #: ../automation_tree_rules.php:845 msgid "At Subtree" msgstr "" #: ../automation_tree_rules.php:846 msgid "This Type" msgstr "" #: ../automation_tree_rules.php:847 msgid "Using Grouping" msgstr "" #: ../automation_tree_rules.php:856 msgid "ROOT" msgstr "" #: ../automation_tree_rules.php:872 msgid "No Tree Rules Found" msgstr "" #: ../cdef.php:277 msgid "Click 'Continue' to delete the following CDEF." msgid_plural "Click 'Continue' to delete all following CDEFs." msgstr[0] "" msgstr[1] "" #: ../cdef.php:282 msgid "Delete CDEF" msgid_plural "Delete CDEFs" msgstr[0] "" msgstr[1] "" #: ../cdef.php:286 msgid "" "Click 'Continue' to duplicate the following CDEF. You can optionally change " "the title format for the new CDEF." msgid_plural "" "Click 'Continue' to duplicate the following CDEFs. You can optionally change " "the title format for the new CDEFs." msgstr[0] "" msgstr[1] "" #: ../cdef.php:292 msgid "Duplicate CDEF" msgid_plural "Duplicate CDEFs" msgstr[0] "" msgstr[1] "" #: ../cdef.php:295 msgid "You must select at least one CDEF." msgstr "" #: ../cdef.php:337 msgid "Click 'Continue' to delete the following CDEF Item." msgstr "" #: ../cdef.php:338 #, php-format msgid "CDEF Name: '%s'" msgstr "" #: ../cdef.php:345 msgid "Remove CDEF Item" msgstr "" #: ../cdef.php:424 #, fuzzy msgid "CDEF Preview" msgstr "Общ изглед" #: ../cdef.php:430 #, php-format msgid "CDEF Items [edit: %s]" msgstr "" #: ../cdef.php:442 msgid "CDEF Item Type" msgstr "" #: ../cdef.php:443 msgid "Choose what type of CDEF item this is." msgstr "" #: ../cdef.php:464 msgid "CDEF Item Value" msgstr "" #: ../cdef.php:465 msgid "Enter a value for this CDEF item." msgstr "" #: ../cdef.php:558 #, php-format msgid "CDEF [edit: %s]" msgstr "" #: ../cdef.php:560 msgid "CDEF [new]" msgstr "" #: ../cdef.php:581 ../lib/functions.php:1986 msgid "CDEF Items" msgstr "" #: ../cdef.php:585 ../vdef.php:565 #, fuzzy msgid "Item Value" msgstr "МакÑимална ÑтойноÑÑ‚" #: ../cdef.php:598 ../vdef.php:579 #, php-format msgid "Item #%d" msgstr "" #: ../cdef.php:657 msgid "Delete CDEF Item" msgstr "" #: ../cdef.php:713 ../cdef.php:728 ../cdef.php:842 #: ../include/global_arrays.php:712 ../lib/functions.php:1968 msgid "CDEFs" msgstr "" #: ../cdef.php:851 #, fuzzy msgid "CDEF Name" msgstr "Име" #: ../cdef.php:851 ../data_source_profiles.php:847 msgid "The name of this CDEF." msgstr "" #: ../cdef.php:852 msgid "" "CDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: ../cdef.php:853 msgid "The number of Graphs using this CDEF." msgstr "" #: ../cdef.php:854 ../color.php:701 ../data_input.php:725 #: ../data_queries.php:1156 ../data_source_profiles.php:854 #: ../gprint_presets.php:394 ../vdef.php:848 #, fuzzy msgid "Templates Using" msgstr "Шаблони за графики" #: ../cdef.php:854 msgid "The number of Graphs Templates using this CDEF." msgstr "" #: ../cdef.php:876 msgid "No CDEFs" msgstr "" #: ../clog.php:33 ../clog_user.php:32 msgid "FATAL: YOU DO NO HAVE ACCESS TO THIS AREA OF CACTI" msgstr "" #: ../color.php:170 msgid "Unnamed Color" msgstr "" #: ../color.php:187 msgid "Click 'Continue' to delete the following Color" msgid_plural "Click 'Continue' to delete the following Colors" msgstr[0] "" msgstr[1] "" #: ../color.php:192 msgid "Delete Color" msgid_plural "Delete Colors" msgstr[0] "" msgstr[1] "" #: ../color.php:195 msgid "You must select at least one Color." msgstr "" #: ../color.php:351 msgid "Cacti has imported the following items:" msgstr "" #: ../color.php:365 ../color.php:568 #, fuzzy msgid "Import Colors" msgstr "Импортиране на шаблони" #: ../color.php:368 msgid "Import Colors from Local File" msgstr "" #: ../color.php:369 msgid "" "Please specify the location of the CSV file containing your Color " "information." msgstr "" #: ../color.php:373 ../lib/html_form.php:463 #, fuzzy msgid "Select a File" msgstr "Избери вÑички" #: ../color.php:380 msgid "Overwrite Existing Data?" msgstr "" #: ../color.php:381 msgid "" "Should the import process be allowed to overwrite existing data? Please " "note, this does not mean delete old rows, only update duplicate rows." msgstr "" #: ../color.php:384 msgid "Allow Existing Rows to be Updated?" msgstr "" #: ../color.php:389 msgid "Required File Format Notes" msgstr "" #: ../color.php:392 msgid "The file must contain a header row with the following column headings." msgstr "" #: ../color.php:394 msgid "name - The Color Name" msgstr "" #: ../color.php:395 msgid "hex - The Hex Value" msgstr "" #: ../color.php:416 #, php-format msgid "Colors [edit: %s]" msgstr "" #: ../color.php:418 msgid "Colors [new]" msgstr "" #: ../color.php:520 ../color.php:535 ../include/global_arrays.php:714 #: ../lib/functions.php:2034 msgid "Colors" msgstr "" #: ../color.php:553 msgid "Named Colors" msgstr "" #: ../color.php:568 ../lib/html_form.php:1126 msgid "Import" msgstr "" #: ../color.php:571 #, fuzzy msgid "Export Colors" msgstr "ЕкÑпортиране на резултати" #: ../color.php:695 ../color_templates.php:74 msgid "Hex" msgstr "" #: ../color.php:695 msgid "The Hex Value for this Color." msgstr "" #: ../color.php:696 msgid "Color Name" msgstr "" #: ../color.php:696 msgid "The name of this Color definition." msgstr "" #: ../color.php:697 msgid "Is this color a named color which are read only." msgstr "" #: ../color.php:697 msgid "Named Color" msgstr "" #: ../color.php:698 ../color_templates.php:73 ../include/global_arrays.php:700 #: ../include/global_form.php:812 ../include/global_form.php:2058 msgid "Color" msgstr "" #: ../color.php:698 msgid "The Color as shown on the screen." msgstr "" #: ../color.php:699 msgid "" "Colors in use cannot be Deleted. In use is defined as being referenced " "either by a Graph or a Graph Template." msgstr "" #: ../color.php:700 msgid "The number of Graph using this Color." msgstr "" #: ../color.php:701 msgid "The number of Graph Templates using this Color." msgstr "" #: ../color.php:731 msgid "No Colors Found" msgstr "" #: ../color_templates.php:72 msgid "Color Item" msgstr "" #: ../color_templates.php:93 ../lib/api_aggregate.php:1290 #: ../lib/api_aggregate.php:1293 ../lib/api_aggregate.php:1297 #: ../lib/html.php:896 #, php-format msgid "Item # %d" msgstr "" #: ../color_templates.php:132 ../graph_templates_inputs.php:222 #: ../lib/api_aggregate.php:1349 ../lib/html.php:978 #, fuzzy msgid "No Items" msgstr "Графични елементи" #: ../color_templates.php:227 msgid "Click 'Continue' to delete the following Color Template" msgid_plural "Click 'Continue' to delete following Color Templates" msgstr[0] "" msgstr[1] "" #: ../color_templates.php:232 msgid "Delete Color Template" msgid_plural "Delete Color Templates" msgstr[0] "" msgstr[1] "" #: ../color_templates.php:236 msgid "" "Click 'Continue' to duplicate the following Color Template. You can " "optionally change the title format for the new color template." msgid_plural "" "Click 'Continue' to duplicate following Color Templates. You can optionally " "change the title format for the new color templates." msgstr[0] "" msgstr[1] "" #: ../color_templates.php:238 ../data_source_profiles.php:272 #: ../data_templates.php:364 ../graph_templates.php:323 #: ../host_templates.php:267 ../vdef.php:276 msgid "Title Format:" msgstr "" #: ../color_templates.php:242 #, fuzzy msgid "Duplicate Color Template" msgid_plural "Duplicate Color Templates" msgstr[0] "ÐÑоциирани шаблони за графики" msgstr[1] "ÐÑоциирани шаблони за графики" #: ../color_templates.php:245 msgid "You must select at least one Color Template." msgstr "" #: ../color_templates.php:278 #, fuzzy msgid "Color Template Items [new]" msgstr "Шаблони за елементи на графиката" #: ../color_templates.php:289 #, fuzzy, php-format msgid "Color Template Items [edit: %s]" msgstr "Шаблони за елементи на графиката" #: ../color_templates.php:322 msgid "Delete Color Item" msgstr "" #: ../color_templates.php:349 #, php-format msgid "Color Template [edit: %s]" msgstr "" #: ../color_templates.php:351 #, fuzzy msgid "Color Template [new]" msgstr "ЕкÑпортиране на шаблони" #: ../color_templates.php:432 ../color_templates.php:445 #: ../lib/functions.php:2508 #, fuzzy msgid "Color Templates" msgstr "ЕкÑпортиране на шаблони" #: ../color_templates.php:548 msgid "" "Color Templates that are in use cannot be Deleted. In use is defined as " "being referenced by an Aggregate Template." msgstr "" #: ../color_templates.php:573 #, fuzzy msgid "No Color Templates Found" msgstr "ЕкÑпортиране на шаблони" #: ../color_templates_items.php:273 msgid "Click 'Continue' to delete the following Color Template Color." msgstr "" #: ../color_templates_items.php:274 msgid "Color Name:" msgstr "" #: ../color_templates_items.php:275 msgid "Color Hex:" msgstr "" #: ../color_templates_items.php:281 msgid "Remove Color Item" msgstr "" #: ../color_templates_items.php:339 #, php-format msgid "Color Template Items [edit Report Item: %s]" msgstr "" #: ../color_templates_items.php:342 #, php-format msgid "Color Template Items [new Report Item: %s]" msgstr "" #: ../data_input.php:212 msgid "Click 'Continue' to delete the following Data Input Method" msgid_plural "Click 'Continue' to delete the following Data Input Method" msgstr[0] "" msgstr[1] "" #: ../data_input.php:218 #, fuzzy msgid "Delete Data Input Method" msgid_plural "Delete Data Input Methods" msgstr[0] "Методи за въвеждане на данни" msgstr[1] "Методи за въвеждане на данни" #: ../data_input.php:220 msgid "You must select at least one data input method." msgstr "" #: ../data_input.php:259 msgid "Click 'Continue' to delete the following Data Input Field." msgstr "" #: ../data_input.php:260 #, php-format msgid "Field Name: %s" msgstr "" #: ../data_input.php:261 #, php-format msgid "Friendly Name: %s" msgstr "" #: ../data_input.php:267 ../host_templates.php:335 ../host_templates.php:395 #, fuzzy msgid "Remove Data Input Field" msgstr "Полета за въвеждане на данни" #: ../data_input.php:362 #, php-format msgid "Output Fields [edit: %s]" msgstr "" #: ../data_input.php:363 ../include/global_form.php:461 #, fuzzy msgid "Output Field" msgstr "Полета за въвеждане на данни" #: ../data_input.php:365 #, fuzzy, php-format msgid "Input Fields [edit: %s]" msgstr "Полета за въвеждане на данни" #: ../data_input.php:366 #, fuzzy msgid "Input Field" msgstr "Полета за въвеждане на данни" #: ../data_input.php:432 #, fuzzy, php-format msgid "Data Input Methods [edit: %s]" msgstr "Методи за въвеждане на данни" #: ../data_input.php:434 #, fuzzy msgid "Data Input Methods [new]" msgstr "Методи за въвеждане на данни" #: ../data_input.php:444 ../include/global_arrays.php:316 #, fuzzy msgid "SNMP Get" msgstr "SNMP Порт" #: ../data_input.php:447 ../include/global_arrays.php:317 #, fuzzy msgid "SNMP Query" msgstr "SNMP ВерÑиÑ" #: ../data_input.php:450 ../include/global_arrays.php:319 #, fuzzy msgid "Script Query" msgstr "Скрипт" #: ../data_input.php:453 ../include/global_arrays.php:321 msgid "Script Query - Script Server" msgstr "" #: ../data_input.php:466 #, fuzzy msgid "Input Fields" msgstr "Полета за въвеждане на данни" #: ../data_input.php:469 ../data_input.php:503 msgid "Field Order" msgstr "" #: ../data_input.php:470 ../data_input.php:504 ../include/global_form.php:275 msgid "Friendly Name" msgstr "" #: ../data_input.php:484 ../data_input.php:519 msgid "(Not In Use)" msgstr "" #: ../data_input.php:496 #, fuzzy msgid "No Input Fields" msgstr "Полета за въвеждане на данни" #: ../data_input.php:500 #, fuzzy msgid "Output Fields" msgstr "Полета за въвеждане на данни" #: ../data_input.php:505 msgid "Update RRA" msgstr "" #: ../data_input.php:534 #, fuzzy msgid "No Output Fields" msgstr "Полета за въвеждане на данни" #: ../data_input.php:556 ../host_templates.php:600 #, fuzzy msgid "Delete Data Input Field" msgstr "Полета за въвеждане на данни" #: ../data_input.php:610 ../include/global_arrays.php:693 #: ../include/global_arrays.php:861 ../lib/functions.php:2172 msgid "Data Input Methods" msgstr "Методи за въвеждане на данни" #: ../data_input.php:625 ../data_input.php:713 #, fuzzy msgid "Input Methods" msgstr "Методи за въвеждане на данни" #: ../data_input.php:722 #, fuzzy msgid "Data Input Name" msgstr "Полета за въвеждане на данни" #: ../data_input.php:722 #, fuzzy msgid "The name of this Data Input Method." msgstr "Името зададено за този шаблон за данни" #: ../data_input.php:723 msgid "" "Data Inputs that are in use cannot be Deleted. In use is defined as being " "referenced either by a Data Source or a Data Template." msgstr "" #: ../data_input.php:724 ../data_source_profiles.php:853 #: ../data_templates.php:912 #, fuzzy msgid "Data Sources Using" msgstr "Източници на данни" #: ../data_input.php:724 msgid "The number of Data Sources that use this Data Input Method." msgstr "" #: ../data_input.php:725 msgid "The number of Data Templates that use this Data Input Method." msgstr "" #: ../data_input.php:726 ../data_queries.php:1157 #: ../include/global_arrays.php:985 ../include/global_form.php:385 #: ../include/global_form.php:1304 #, fuzzy msgid "Data Input Method" msgstr "Методи за въвеждане на данни" #: ../data_input.php:726 #, fuzzy msgid "The method used to gather information for this Data Input Method." msgstr "" "Скриптът/източникът използван за Ñъбиране на данни за този източник на данни." #: ../data_input.php:749 #, fuzzy msgid "No Data Input Methods Found" msgstr "Методи за въвеждане на данни" #: ../data_queries.php:316 msgid "Click 'Continue' to delete the following Data Query." msgid_plural "Click 'Continue' to delete following Data Queries." msgstr[0] "" msgstr[1] "" #: ../data_queries.php:322 #, fuzzy msgid "Delete Data Query" msgid_plural "Delete Data Query" msgstr[0] "Вземане на данни" msgstr[1] "Вземане на данни" #: ../data_queries.php:324 msgid "You must select at least one data query." msgstr "" #: ../data_queries.php:419 msgid "Click 'Continue' to delete the following Data Query Graph Association." msgstr "" #: ../data_queries.php:420 #, fuzzy, php-format msgid "Graph Name: %s" msgstr "Графични елементи" #: ../data_queries.php:426 ../vdef.php:333 msgid "Remove VDEF Item" msgstr "" #: ../data_queries.php:479 #, fuzzy, php-format msgid "Associated Graph/Data Templates [edit: %s]" msgstr "ÐÑоциирани шаблони за графики" #: ../data_queries.php:502 #, fuzzy msgid "Associated Data Templates" msgstr "ÐÑоциирани шаблони за графики" #: ../data_queries.php:520 #, fuzzy, php-format msgid "Data Template - %s" msgstr "Шаблони за графики" #: ../data_queries.php:550 ../data_sources.php:881 ../data_templates.php:516 #: ../include/global_arrays.php:698 ../include/global_form.php:797 #: ../lib/api_aggregate.php:1215 ../lib/html.php:856 #, fuzzy msgid "Data Source" msgstr "Източници на данни" #: ../data_queries.php:585 msgid "Suggested Values - Graph Names" msgstr "" #: ../data_queries.php:596 ../data_queries.php:692 msgid "Equation" msgstr "" #: ../data_queries.php:647 ../data_queries.php:746 #, fuzzy msgid "No Suggested Values Found" msgstr "Вътрешно име на източника на данни" #: ../data_queries.php:656 ../data_queries.php:755 #: ../include/global_form.php:2093 ../include/global_form.php:2135 #: ../lib/api_automation.php:1333 ../utilities.php:1409 msgid "Field Name" msgstr "" #: ../data_queries.php:662 ../data_queries.php:761 msgid "Suggested Value" msgstr "" #: ../data_queries.php:668 ../data_queries.php:767 ../host.php:762 #: ../host.php:879 ../host_templates.php:515 ../host_templates.php:569 #: ../lib/html.php:37 ../lib/html_filter.php:55 msgid "Add" msgstr "Добави" #: ../data_queries.php:668 msgid "Add Graph Title Suggested Name" msgstr "" #: ../data_queries.php:678 #, fuzzy msgid "Suggested Values - Data Source Names" msgstr "Вътрешно име на източника на данни" #: ../data_queries.php:767 msgid "Add Data Source Name Suggested Name" msgstr "" #: ../data_queries.php:874 #, fuzzy, php-format msgid "Data Queries [edit: %s]" msgstr "Ðвтоматизирани данни" #: ../data_queries.php:876 #, fuzzy msgid "Data Queries [new]" msgstr "Ðвтоматизирани данни" #: ../data_queries.php:896 msgid "Successfully located XML file" msgstr "" #: ../data_queries.php:899 msgid "Could not locate XML file." msgstr "" #: ../data_queries.php:907 ../host.php:681 ../host_templates.php:466 #: ../lib/functions.php:2226 msgid "Associated Graph Templates" msgstr "ÐÑоциирани шаблони за графики" #: ../data_queries.php:911 ../graph_templates.php:761 ../graphs_new.php:597 #: ../host.php:685 ../lib/api_automation.php:563 #, fuzzy msgid "Graph Template Name" msgstr "Шаблони за графики" #: ../data_queries.php:913 msgid "Mapping ID" msgstr "" #: ../data_queries.php:954 msgid "Mapped Graph Templates with Graphs are read only" msgstr "" #: ../data_queries.php:961 #, fuzzy msgid "No Graph Templates Defined." msgstr "Шаблони за графики" #: ../data_queries.php:985 #, fuzzy msgid "Delete Associated Graph" msgstr "ÐÑоциирани шаблони за графики" #: ../data_queries.php:1039 ../data_queries.php:1054 ../data_queries.php:1143 #: ../include/global_arrays.php:692 ../include/global_arrays.php:862 #: ../lib/api_automation.php:1027 ../lib/functions.php:2208 msgid "Data Queries" msgstr "Ðвтоматизирани данни" #: ../data_queries.php:1152 ../host.php:776 ../utilities.php:1409 #, fuzzy msgid "Data Query Name" msgstr "Вземане на данни" #: ../data_queries.php:1152 #, fuzzy msgid "The name of this Data Query." msgstr "Изберете име за този източник на данни." #: ../data_queries.php:1153 ../graph_templates.php:762 msgid "" "The internal ID for this Graph Template. Useful when performing automation " "or debugging." msgstr "" #: ../data_queries.php:1154 msgid "" "Data Queries that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: ../data_queries.php:1155 msgid "The number of Graphs using this Data Query." msgstr "" #: ../data_queries.php:1156 msgid "The number of Graphs Templates using this Data Query." msgstr "" #: ../data_queries.php:1157 msgid "" "The Data Input Method used to collect data for Data Sources associated with " "this Data Query." msgstr "" #: ../data_queries.php:1181 #, fuzzy msgid "No Data Queries Found" msgstr "Ðвтоматизирани данни" #: ../data_source_profiles.php:261 msgid "Click 'Continue' to delete the following Data Source Profile" msgid_plural "Click 'Continue' to delete following Data Source Profiles" msgstr[0] "" msgstr[1] "" #: ../data_source_profiles.php:266 #, fuzzy msgid "Delete Data Source Profile" msgid_plural "Delete Data Source Profiles" msgstr[0] "Вътрешно име на източника на данни" msgstr[1] "Вътрешно име на източника на данни" #: ../data_source_profiles.php:270 msgid "" "Click 'Continue' to duplicate the following Data Source Profile. You can " "optionally change the title format for the new Data Source Profile" msgid_plural "" "Click 'Continue' to duplicate following Data Source Profiles. You can " "optionally change the title format for the new Data Source Profiles." msgstr[0] "" msgstr[1] "" #: ../data_source_profiles.php:276 msgid "Duplicate Data Source Profile" msgid_plural "Duplicate Date Source Profiles" msgstr[0] "" msgstr[1] "" #: ../data_source_profiles.php:279 msgid "You must select at least one Data Source Profile." msgstr "" #: ../data_source_profiles.php:318 msgid "Click 'Continue' to delete the following Data Source Profile RRA." msgstr "" #: ../data_source_profiles.php:319 #, php-format msgid "Profile Name: %s" msgstr "" #: ../data_source_profiles.php:325 msgid "Remove Data Source Profile RRA" msgstr "" #: ../data_source_profiles.php:374 ../data_source_profiles.php:384 msgid "Each Insert is New Row" msgstr "" #: ../data_source_profiles.php:393 #, php-format msgid "RRA [edit: %s]" msgstr "" #: ../data_source_profiles.php:460 #, fuzzy, php-format msgid "Data Source Profile [edit: %s]" msgstr "Път до източник на данни" #: ../data_source_profiles.php:462 #, fuzzy msgid "Data Source Profile [new]" msgstr "Път до източник на данни" #: ../data_source_profiles.php:480 msgid "Data Source Profile RRAs (press save to update timespans)" msgstr "" #: ../data_source_profiles.php:482 msgid "Data Source Profile RRAs (Read Only)" msgstr "" #: ../data_source_profiles.php:487 msgid "Effective Timespan" msgstr "" #: ../data_source_profiles.php:488 #, fuzzy msgid "Steps" msgstr "Стъпка" #: ../data_source_profiles.php:489 ../graphs_new.php:526 #: ../include/global_form.php:121 ../lib/html.php:323 ../lib/html_filter.php:73 #: ../lib/rrd.php:2689 ../pollers.php:523 ../utilities.php:468 #: ../utilities.php:1322 msgid "Rows" msgstr "" #: ../data_source_profiles.php:535 msgid "Select Consolidation Function(s)" msgstr "" #: ../data_source_profiles.php:561 msgid "Delete Data Source Profile Item" msgstr "" #: ../data_source_profiles.php:621 ../include/global_arrays.php:1088 #: ../include/global_settings.php:1027 #, php-format msgid "%d Years" msgstr "" #: ../data_source_profiles.php:621 msgid "1 Year" msgstr "" #: ../data_source_profiles.php:630 ../include/global_arrays.php:1082 #: ../rrdcleaner.php:489 #, php-format msgid "%d Month" msgstr "" #: ../data_source_profiles.php:630 ../include/global_arrays.php:1083 #: ../include/global_arrays.php:1084 ../include/global_arrays.php:1085 #: ../include/global_arrays.php:1086 ../rrdcleaner.php:490 #: ../rrdcleaner.php:491 ../rrdcleaner.php:492 #, php-format msgid "%d Months" msgstr "" #: ../data_source_profiles.php:639 ../include/global_arrays.php:1080 #: ../rrdcleaner.php:485 ../rrdcleaner.php:486 #, php-format msgid "%d Week" msgstr "" #: ../data_source_profiles.php:639 ../include/global_arrays.php:1081 #: ../rrdcleaner.php:487 ../rrdcleaner.php:488 #, php-format msgid "%d Weeks" msgstr "" #: ../data_source_profiles.php:648 ../include/global_arrays.php:1076 #, php-format msgid "%d Day" msgstr "" #: ../data_source_profiles.php:648 ../include/global_arrays.php:1077 #: ../include/global_arrays.php:1078 ../include/global_arrays.php:1079 #: ../include/global_settings.php:1022 ../include/global_settings.php:1023 #: ../include/global_settings.php:1024 ../include/global_settings.php:1025 #: ../include/global_settings.php:1036 ../include/global_settings.php:1037 #: ../include/global_settings.php:1038 ../include/global_settings.php:1039 #, php-format msgid "%d Days" msgstr "" #: ../data_source_profiles.php:656 ../include/global_arrays.php:494 #: ../include/global_arrays.php:529 ../include/global_arrays.php:1117 #: ../include/global_arrays.php:1138 ../include/global_arrays.php:1171 #: ../include/global_arrays.php:1180 ../include/global_arrays.php:1206 #: ../include/global_settings.php:1093 msgid "1 Hour" msgstr "" #: ../data_source_profiles.php:710 ../include/global_arrays.php:869 #, fuzzy msgid "Data Source Profiles" msgstr "Източници на данни" #: ../data_source_profiles.php:725 ../data_source_profiles.php:838 msgid "Profiles" msgstr "" #: ../data_source_profiles.php:743 ../data_templates.php:794 #, fuzzy msgid "Has Data Sources" msgstr "Източници на данни" #: ../data_source_profiles.php:847 #, fuzzy msgid "Data Source Profile Name" msgstr "Път до източник на данни" #: ../data_source_profiles.php:848 msgid "Is this the default Profile for all new Data Templates?" msgstr "" #: ../data_source_profiles.php:849 msgid "" "Profiles that are in use cannot be Deleted. In use is defined as being " "referenced by a Data Source or a Data Template." msgstr "" #: ../data_source_profiles.php:850 msgid "Profiles that are in use by Data Sources become read only for now." msgstr "" #: ../data_source_profiles.php:850 ../include/global_form.php:190 msgid "Read Only" msgstr "" #: ../data_source_profiles.php:851 ../data_sources.php:1407 #: ../include/global_settings.php:855 msgid "Poller Interval" msgstr "" #: ../data_source_profiles.php:851 msgid "The Polling Frequency for the Profile" msgstr "" #: ../data_source_profiles.php:852 ../include/global_form.php:52 #: ../include/global_form.php:453 msgid "Heartbeat" msgstr "Heartbeat" #: ../data_source_profiles.php:852 msgid "" "The Amount of Time, in seconds, without good data before Data is stored as " "Unknown" msgstr "" #: ../data_source_profiles.php:853 msgid "The number of Data Sources using this Profile." msgstr "" #: ../data_source_profiles.php:854 msgid "The number of Data Templates using this Profile." msgstr "" #: ../data_source_profiles.php:886 #, fuzzy msgid "No Data Source Profiles" msgstr "Източници на данни" #: ../data_sources.php:36 ../data_sources.php:478 ../graphs.php:54 #, fuzzy msgid "Change Device" msgstr "УÑтройÑтва" #: ../data_sources.php:37 ../graphs.php:55 msgid "Reapply Suggested Names" msgstr "" #: ../data_sources.php:446 msgid "Click 'Continue' to delete the following Data Source" msgid_plural "Click 'Continue' to delete following Data Sources" msgstr[0] "" msgstr[1] "" #: ../data_sources.php:450 msgid "The following graph is using these data sources:" msgid_plural "The following graphs are using these data sources:" msgstr[0] "" msgstr[1] "" #: ../data_sources.php:459 msgid "Leave the Graph untouched." msgid_plural "Leave all Graphs untouched." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:460 msgid "" "Delete all Graph Items that reference this Data Source." msgid_plural "" "Delete all Graph Items that reference these Data Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:461 msgid "Delete all Graphs that reference this Data Source." msgid_plural "" "Delete all Graphs that reference these Data Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:468 #, fuzzy msgid "Delete Data Source" msgid_plural "Delete Data Sources" msgstr[0] "Източници на данни" msgstr[1] "Източници на данни" #: ../data_sources.php:472 #, fuzzy msgid "Choose a new Device for this Data Source and click 'Continue'." msgid_plural "Choose a new Device for these Data Sources and click 'Continue'" msgstr[0] "Изберете име за този източник на данни." msgstr[1] "Изберете име за този източник на данни." #: ../data_sources.php:474 #, fuzzy msgid "New Device:" msgstr "УÑтройÑтва" #: ../data_sources.php:482 msgid "Click 'Continue' to enable the following Data Source." msgid_plural "Click 'Continue' to enable all following Data Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:487 #, fuzzy msgid "Enable Data Source" msgid_plural "Enable Data Sources" msgstr[0] "Източници на данни" msgstr[1] "Източници на данни" #: ../data_sources.php:491 msgid "Click 'Continue' to disable the following Data Source." msgid_plural "Click 'Continue' to disable all following Data Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:496 #, fuzzy msgid "Disable Data Source" msgstr "Източници на данни" #: ../data_sources.php:500 msgid "" "Click 'Continue' to re-apply the suggested name to the following Data Source." msgid_plural "" "Click 'Continue' to re-apply the suggested names to all following Data " "Sources." msgstr[0] "" msgstr[1] "" #: ../data_sources.php:505 msgid "Reapply Suggested Naming to Data Source" msgstr "" #: ../data_sources.php:514 msgid "You must select at least one data source." msgstr "" #: ../data_sources.php:572 ../data_templates.php:631 #, php-format msgid "Custom Data [data input: %s]" msgstr "" #: ../data_sources.php:605 #, php-format msgid "(From Device: %s)" msgstr "" #: ../data_sources.php:608 #, fuzzy msgid "(From Data Template)" msgstr "Шаблони за графики" #: ../data_sources.php:609 msgid "Nothing Entered" msgstr "" #: ../data_sources.php:624 ../data_templates.php:684 msgid "No Input Fields for the Selected Data Input Source" msgstr "" #: ../data_sources.php:700 #, php-format msgid "Data Source %d does not exist." msgstr "" #: ../data_sources.php:705 #, php-format msgid "Data Template Selection [edit: %s]" msgstr "" #: ../data_sources.php:711 msgid "Data Template Selection [new]" msgstr "" #: ../data_sources.php:744 msgid "Turn Off Data Source Debug Mode." msgstr "" #: ../data_sources.php:744 msgid "Turn On Data Source Debug Mode." msgstr "" #: ../data_sources.php:745 msgid "Turn Off Data Source Info Mode." msgstr "" #: ../data_sources.php:745 msgid "Turn On Data Source Info Mode." msgstr "" #: ../data_sources.php:748 #, fuzzy msgid "Edit Data Template." msgstr "ЕкÑпортиране на шаблони" #: ../data_sources.php:751 ../graphs.php:1294 #, fuzzy msgid "Edit Device." msgstr "УÑтройÑтва" #: ../data_sources.php:814 #, fuzzy msgid "Selected Data Template" msgstr "ÐÑоциирани шаблони за графики" #: ../data_sources.php:815 #, php-format msgid "" "The name given to this data template. Please note that you may only change " "Graph Templates to a 100% compatible Graph Template, which means that it " "includes identical Data Sources." msgstr "" #: ../data_sources.php:823 #, fuzzy msgid "Choose the Device that this Data Source belongs to." msgstr "Изберете име за този източник на данни." #: ../data_sources.php:869 msgid "Supplemental Data Template Data" msgstr "" #: ../data_sources.php:871 #, fuzzy msgid "Data Source Fields" msgstr "Източници на данни" #: ../data_sources.php:872 #, fuzzy msgid "Data Source Item Fields" msgstr "Полета за въвеждане на данни" #: ../data_sources.php:873 msgid "Custom Data" msgstr "" #: ../data_sources.php:957 #, fuzzy, php-format msgid "Data Source Item %s" msgstr "Източници на данни" #: ../data_sources.php:960 msgid "New" msgstr "" #: ../data_sources.php:1019 #, fuzzy msgid "Data Source Debug" msgstr "Вид на източника на данни" #: ../data_sources.php:1039 msgid "RRDtool Tune Info" msgstr "" #: ../data_sources.php:1065 msgid "External" msgstr "" #: ../data_sources.php:1067 ../include/global_arrays.php:519 #: ../include/global_arrays.php:520 ../include/global_arrays.php:521 #: ../include/global_arrays.php:841 ../include/global_arrays.php:842 #: ../include/global_arrays.php:843 ../include/global_arrays.php:844 #: ../include/global_arrays.php:1160 ../include/global_arrays.php:1161 #: ../include/global_arrays.php:1162 ../include/global_arrays.php:1163 #: ../include/global_arrays.php:1164 ../include/global_arrays.php:1197 #: ../include/global_arrays.php:1198 ../include/global_arrays.php:1210 #: ../include/global_arrays.php:1211 ../include/global_arrays.php:1212 #: ../include/global_arrays.php:1213 ../include/global_arrays.php:1214 #: ../include/global_settings.php:1837 #, php-format msgid "%d Seconds" msgstr "" #: ../data_sources.php:1069 ../include/global_arrays.php:522 #: ../include/global_arrays.php:845 ../include/global_arrays.php:1165 #: ../include/global_arrays.php:1199 ../include/global_arrays.php:1215 #: ../include/global_settings.php:1087 ../include/global_settings.php:1837 msgid "1 Minute" msgstr "" #: ../data_sources.php:1196 ../graphs_items.php:292 #, fuzzy, php-format msgid "Data Sources [%s]" msgstr "Източници на данни" #: ../data_sources.php:1196 #, fuzzy msgid "No Device" msgstr "УÑтройÑтва" #: ../data_sources.php:1235 ../data_sources.php:1261 ../data_sources.php:1277 #: ../data_templates.php:764 ../graph_view.php:781 ../graphs_new.php:504 #: ../lib/clog_webapi.php:331 ../lib/html_graph.php:395 #: ../lib/html_reports.php:290 ../lib/html_tree.php:842 ../plugins.php:286 #: ../settings.php:196 ../settings.php:213 ../settings.php:236 #: ../utilities.php:636 ../utilities.php:1000 msgid "All" msgstr "" #: ../data_sources.php:1257 ../data_templates.php:760 msgid "Profile" msgstr "" #: ../data_sources.php:1273 ../data_sources.php:1279 msgid "Orphaned" msgstr "" #: ../data_sources.php:1283 ../data_sources.php:1396 ../host.php:1502 #: ../include/global_arrays.php:687 ../lib/api_automation.php:275 #: ../lib/functions.php:2118 ../user_admin.php:1242 ../user_group_admin.php:966 #: ../utilities.php:273 msgid "Data Sources" msgstr "Източници на данни" #: ../data_sources.php:1405 ../utilities.php:1698 #, fuzzy msgid "Data Source Name" msgstr "Път до източник на данни" #: ../data_sources.php:1405 msgid "" "The name of this Data Source. Generally programtically generated from the " "Data Template definition." msgstr "" #: ../data_sources.php:1406 msgid "" "The internal database ID for this Data Source. Useful when performing " "automation or debugging." msgstr "" #: ../data_sources.php:1407 #, fuzzy msgid "The frequency that data is collected for this Data Source." msgstr "" "Скриптът/източникът използван за Ñъбиране на данни за този източник на данни." #: ../data_sources.php:1408 msgid "If this Data Source is no long in use by Graphs, it can be Deleted." msgstr "" #: ../data_sources.php:1409 ../data_templates.php:934 ../plugins.php:38 #: ../plugins.php:287 msgid "Active" msgstr "Ðктивен" #: ../data_sources.php:1409 msgid "" "Whether or not data will be collected for this Data Source. Controlled at " "the Data Template level." msgstr "" #: ../data_sources.php:1410 msgid "The Data Template that this Data Source was based upon." msgstr "" #: ../data_sources.php:1457 #, fuzzy msgid "No Data Sources Found" msgstr "Източници на данни" #: ../data_templates.php:35 msgid "Change Profile" msgstr "" #: ../data_templates.php:353 msgid "" "Click 'Continue' to delete the following Data Template(s). Any data sources " "attached to these templates will become individual Data Source(s) and all " "Templating benefits will be removed." msgstr "" #: ../data_templates.php:358 msgid "Delete Data Template(s)" msgstr "" #: ../data_templates.php:362 msgid "" "Click 'Continue' to duplicate the following Data Template(s). You can " "optionally change the title format for the new Data Template(s)." msgstr "" #: ../data_templates.php:364 msgid "template_title" msgstr "" #: ../data_templates.php:368 #, fuzzy msgid "Duplicate Data Template(s)" msgstr "ÐÑоциирани шаблони за графики" #: ../data_templates.php:372 msgid "" "Click 'Continue' to change the default Data Source Profile for the following " "Data Template(s)." msgstr "" #: ../data_templates.php:374 #, fuzzy msgid "New Data Source Profile" msgstr "Път до източник на данни" #: ../data_templates.php:380 msgid "" "NOTE: This change only will affect future Data Sources and does not alter " "existing Data Sources." msgstr "" #: ../data_templates.php:384 #, fuzzy msgid "Change Data Source Profile" msgstr "Вътрешно име на източника на данни" #: ../data_templates.php:387 msgid "You must select at least one data template." msgstr "" #: ../data_templates.php:499 #, php-format msgid "Data Templates [edit: %s]" msgstr "" #: ../data_templates.php:501 #, fuzzy msgid "Data Templates [new]" msgstr "Шаблони за графики" #: ../data_templates.php:527 #, fuzzy msgid "This field is always templated." msgstr "Името зададено за този шаблон за данни" #: ../data_templates.php:531 ../data_templates.php:603 #: ../data_templates.php:671 msgid "Use Per-Data Source Value (Ignore this Value)" msgstr "" #: ../data_templates.php:584 #, fuzzy, php-format msgid "Data Source Item [%s]" msgstr "Източници на данни" #: ../data_templates.php:676 msgid "Value will be derived from the device if this field is left empty." msgstr "" #: ../data_templates.php:745 ../data_templates.php:776 #: ../data_templates.php:900 ../include/global_arrays.php:873 #: ../lib/functions.php:2100 #, fuzzy msgid "Data Templates" msgstr "Шаблони за графики" #: ../data_templates.php:909 #, fuzzy msgid "Data Template Name" msgstr "Шаблони за елементи на графиката" #: ../data_templates.php:909 #, fuzzy msgid "The name of this Data Template." msgstr "Името зададено за този шаблон за данни" #: ../data_templates.php:910 msgid "" "The internal database ID for this Data Template. Useful when performing " "automation or debugging." msgstr "" #: ../data_templates.php:911 msgid "" "Data Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Data Source." msgstr "" #: ../data_templates.php:912 #, fuzzy msgid "The number of Data Sources using this Data Template." msgstr "Името зададено за този шаблон за данни" #: ../data_templates.php:913 #, fuzzy msgid "Input Method" msgstr "Методи за въвеждане на данни" #: ../data_templates.php:913 msgid "The method that is used to place Data into the Data Source RRDfile." msgstr "" #: ../data_templates.php:914 msgid "Profile Name" msgstr "" #: ../data_templates.php:914 #, fuzzy msgid "The default Data Source Profile for this Data Template." msgstr "Името зададено за този шаблон за данни" #: ../data_templates.php:915 msgid "" "Data Sources based on Inactive Data Templates will not be updated when the " "poller runs." msgstr "" #: ../data_templates.php:939 #, fuzzy msgid "No Data Templates Found" msgstr "ЕкÑпортиране на шаблони" #: ../gprint_presets.php:148 msgid "Click 'Continue' to delete the folling GPRINT Preset(s)." msgstr "" #: ../gprint_presets.php:153 msgid "Delete GPRINT Preset(s)" msgstr "" #: ../gprint_presets.php:156 msgid "You must select at least one GPRINT Preset." msgstr "" #: ../gprint_presets.php:185 #, php-format msgid "GPRINT Presets [edit: %s]" msgstr "" #: ../gprint_presets.php:187 msgid "GPRINT Presets [new]" msgstr "" #: ../gprint_presets.php:253 ../lib/functions.php:1950 msgid "GPRINT Presets" msgstr "" #: ../gprint_presets.php:268 ../gprint_presets.php:381 #: ../include/global_arrays.php:715 msgid "GPRINTs" msgstr "" #: ../gprint_presets.php:390 msgid "GPRINT Preset Name" msgstr "" #: ../gprint_presets.php:390 msgid "The name of this GPRINT Preset." msgstr "" #: ../gprint_presets.php:391 msgid "Format" msgstr "" #: ../gprint_presets.php:391 msgid "The GPRINT format string." msgstr "" #: ../gprint_presets.php:392 msgid "" "GPRINTs that are in use cannot be Deleted. In use is defined as being " "referenced by either a Graph or a Graph Template." msgstr "" #: ../gprint_presets.php:393 msgid "The number of Graphs using this GPRINT." msgstr "" #: ../gprint_presets.php:394 msgid "The number of Graphs Templates using this GPRINT." msgstr "" #: ../gprint_presets.php:418 msgid "No GPRINT Presets" msgstr "" #: ../graph.php:94 msgid "Viewing Graph" msgstr "" #: ../graph.php:124 ../lib/html.php:292 msgid "Graph Details, Zooming and Debugging Utilities" msgstr "" #: ../graph.php:125 msgid "CSV Export" msgstr "" #: ../graph.php:126 msgid "Real-time" msgstr "" #: ../graph.php:179 #, fuzzy msgid "Utility View" msgstr "ПриложениÑ" #: ../graph.php:277 msgid "Graph Utility View" msgstr "" #: ../graph.php:290 #, fuzzy msgid "Graph Source/Properties" msgstr "Елементи на графичното дърво" #: ../graph.php:294 #, fuzzy msgid "Graph Data" msgstr "Графични елементи" #: ../graph.php:307 ../graph_realtime.php:267 ../lib/clog_webapi.php:351 #: ../lib/html_graph.php:319 ../lib/html_tree.php:765 ../lib/html_tree.php:785 #: ../utilities.php:1020 ../utilities.php:1904 msgid "Refresh" msgstr "" #: ../graph.php:429 msgid "RRDtool Graph Syntax" msgstr "" #: ../graph_realtime.php:195 msgid "Real-time has been disabled by your administrator." msgstr "" #: ../graph_realtime.php:202 msgid "" "The Image Cache Directory does not exist. Please first create it and set " "permissions and then attempt to open another Real-time graph." msgstr "" #: ../graph_realtime.php:209 msgid "" "The Image Cache Directory is not writable. Please set permissions and then " "attempt to open another Real-time graph." msgstr "" #: ../graph_realtime.php:224 msgid "Cacti Real-time Graphing" msgstr "" #: ../graph_realtime.php:253 ../lib/html_graph.php:327 ../lib/html_tree.php:773 msgid "Window" msgstr "" #: ../graph_realtime.php:283 #, php-format msgid "%d seconds left." msgstr "" #: ../graph_realtime.php:311 msgid "seconds left." msgstr "" #: ../graph_templates.php:35 msgid "Resize" msgstr "" #: ../graph_templates.php:36 #, fuzzy msgid "Sync Graphs" msgstr "Графики" #: ../graph_templates.php:312 msgid "" "Click 'Continue' to delete the following Graph Template(s). Any Graph(s) " "associated with the Template(s) will become individual Graph(s)." msgstr "" #: ../graph_templates.php:317 #, fuzzy msgid "Delete Graph Template(s)" msgstr "Шаблони за графики" #: ../graph_templates.php:321 msgid "" "Click 'Continue' to duplicate the following Graph Template(s). You can " "optionally change the title format for the new Graph Template(s)." msgstr "" #: ../graph_templates.php:327 #, fuzzy msgid "Duplicate Graph Template(s)" msgstr "ÐÑоциирани шаблони за графики" #: ../graph_templates.php:331 msgid "" "Click 'Continue' to resize the following Graph Template(s) and Graph(s) to " "the Height and Width below. The defaults below are maintained in Settings." msgstr "" #: ../graph_templates.php:340 ../lib/html_reports.php:117 #, fuzzy msgid "Graph Height" msgstr "Графични елементи" #: ../graph_templates.php:342 ../lib/html_reports.php:109 #, fuzzy msgid "Graph Width" msgstr "Графични елементи" #: ../graph_templates.php:347 #, fuzzy msgid "Resize Selected Graph Template(s)" msgstr "ÐÑоциирани шаблони за графики" #: ../graph_templates.php:351 msgid "" "Click 'Continue' to Synchronize your Graphs the following Graph Template(s). " "This function is important if you have Graphs that exist with multiple " "versions of a Graph Template and wish to make them all common in appearance." msgstr "" #: ../graph_templates.php:356 #, fuzzy msgid "Synchronize Graphs to Graph Template(s)" msgstr "ÐÑоциирани шаблони за графики" #: ../graph_templates.php:359 msgid "ERROR: You must select at least one graph template." msgstr "" #: ../graph_templates.php:413 #, fuzzy, php-format msgid "Graph Template Items [edit: %s]" msgstr "Шаблони за елементи на графиката" #: ../graph_templates.php:420 ../lib/functions.php:2070 msgid "Graph Item Inputs" msgstr "Въвеждане на елементи на графика" #: ../graph_templates.php:446 msgid "No Inputs" msgstr "" #: ../graph_templates.php:491 #, php-format msgid "Template [edit: %s]" msgstr "" #: ../graph_templates.php:493 msgid "Template [new]" msgstr "" #: ../graph_templates.php:509 #, fuzzy msgid "Graph Template Options" msgstr "Шаблони за графики" #: ../graph_templates.php:524 msgid "Use Per-Graph Value (Ignore this Value)" msgstr "" #: ../graph_templates.php:619 ../graph_templates.php:634 #: ../graph_templates.php:752 ../graphs_new.php:592 #: ../include/global_arrays.php:872 ../lib/functions.php:2046 #: ../user_admin.php:1376 ../user_group_admin.php:1101 msgid "Graph Templates" msgstr "Шаблони за графики" #: ../graph_templates.php:761 #, fuzzy msgid "The name of this Graph Template." msgstr "Името зададено за този шаблон за данни" #: ../graph_templates.php:763 msgid "" "Graph Templates that are in use cannot be Deleted. In use is defined as " "being referenced by a Graph." msgstr "" #: ../graph_templates.php:764 #, fuzzy msgid "The number of Graphs using this Graph Template." msgstr "Името зададено за този шаблон за данни" #: ../graph_templates.php:765 msgid "The default size of the resulting Graphs." msgstr "" #: ../graph_templates.php:766 msgid "Image Format" msgstr "" #: ../graph_templates.php:766 msgid "The default image format for the resulting Graphs." msgstr "" #: ../graph_templates.php:767 msgid "The vertical label for the resulting Graphs." msgstr "" #: ../graph_templates.php:767 msgid "Vertical Label" msgstr "" #: ../graph_templates.php:793 #, fuzzy msgid "No Graph Templates Found" msgstr "Шаблони за графики" #: ../graph_templates_inputs.php:145 #, fuzzy, php-format msgid "Graph Item Inputs [edit graph: %s]" msgstr "Въвеждане на елементи на графика" #: ../graph_templates_inputs.php:191 #, fuzzy msgid "Associated Graph Items" msgstr "ÐÑоциирани шаблони за графики" #: ../graph_templates_items.php:99 ../graph_templates_items.php:125 #: ../graphs_items.php:118 msgid "Cur:" msgstr "" #: ../graph_templates_items.php:106 ../graph_templates_items.php:132 #: ../graphs_items.php:125 msgid "Avg:" msgstr "" #: ../graph_templates_items.php:113 ../graph_templates_items.php:146 #: ../graphs_items.php:139 msgid "Max:" msgstr "" #: ../graph_templates_items.php:139 ../graphs_items.php:132 msgid "Min:" msgstr "" #: ../graph_templates_items.php:391 #, fuzzy, php-format msgid "Graph Template Items [edit graph: %s]" msgstr "Шаблони за елементи на графиката" #: ../graph_view.php:242 msgid "YOU DO NOT HAVE RIGHTS FOR TREE VIEW" msgstr "" #: ../graph_view.php:320 msgid "YOU DO NOT HAVE RIGHTS FOR PREVIEW VIEW" msgstr "" #: ../graph_view.php:326 #, fuzzy msgid "Graph Preview Filters" msgstr "Елементи на графичното дърво" #: ../graph_view.php:326 msgid "[ Custom Graph List Applied - Filtering from List ]" msgstr "" #: ../graph_view.php:422 msgid "YOU DO NOT HAVE RIGHTS FOR LIST VIEW" msgstr "" #: ../graph_view.php:509 msgid "Graph List View Filters" msgstr "" #: ../graph_view.php:509 msgid "[ Custom Graph List Applied - Filter FROM List ]" msgstr "" #: ../graph_view.php:528 ../graph_view.php:770 ../graph_view.php:775 #: ../lib/html_graph.php:163 ../lib/html_graph.php:384 #: ../lib/html_graph.php:389 ../lib/html_tree.php:615 ../lib/html_tree.php:831 #: ../lib/html_tree.php:836 #, fuzzy msgid "All Graphs & Templates" msgstr "Шаблони за графики" #: ../graph_view.php:577 ../graph_view.php:654 msgid "View" msgstr "" #: ../graph_view.php:577 ../graph_view.php:654 ../include/global_arrays.php:853 #: ../lib/clog_webapi.php:249 #, fuzzy msgid "View Graphs" msgstr "Графики" #: ../graph_view.php:619 #, fuzzy msgid "Graph Size" msgstr "Графични елементи" #: ../graph_view.php:633 #, fuzzy msgid "Aggregated Device" msgstr "Създаване на нови графики" #: ../graph_view.php:636 #, fuzzy msgid "Non-Device" msgstr "УÑтройÑтва" #: ../graph_view.php:637 msgid "Not Applicable" msgstr "" #: ../graph_view.php:772 ../lib/html_graph.php:386 ../lib/html_tree.php:833 #: ../settings.php:227 msgid "Templates Selected" msgstr "" #: ../graphs.php:49 ../graphs.php:845 ../lib/functions.php:1920 #, fuzzy msgid "Change Graph Template" msgstr "Шаблони за графики" #: ../graphs.php:56 #, fuzzy msgid "Create Aggregate Graph" msgstr "Създаване на нови графики" #: ../graphs.php:57 #, fuzzy msgid "Create Aggregate from Template" msgstr "Създаване на графики от автоматизирано Ñъбиране на данни" #: ../graphs.php:58 ../graphs.php:1094 ../host.php:43 msgid "Apply Automation Rules" msgstr "" #: ../graphs.php:64 ../graphs.php:867 #, fuzzy msgid "Convert to Graph Template" msgstr "Шаблони за графики" #: ../graphs.php:176 ../graphs_new.php:228 ../graphs_new.php:244 #, fuzzy, php-format msgid "Created graph: %s" msgstr "Създаване на нови графики" #: ../graphs.php:184 ../graphs_new.php:236 ../graphs_new.php:252 msgid "ERROR: no Data Source associated. Check Template" msgstr "" #: ../graphs.php:795 msgid "" "Click 'Continue' to delete the following Graph(s). Note that if you choose " "to Delete Data Sources, only those Data Sources not in use elsewhere will " "also be Deleted." msgstr "" #: ../graphs.php:799 msgid "The following Data Source(s) are in use by these Graph(s)." msgstr "" #: ../graphs.php:808 msgid "" "Delete all Data Source(s) referenced by these Graph(s) that are not in use " "elsewhere." msgstr "" #: ../graphs.php:810 msgid "Leave the Data Source(s) untouched." msgstr "" #: ../graphs.php:822 msgid "" "Choose a Graph Template and click 'Continue' to change the Graph Template " "for the following Graph(s). Please note, that only compatible Graph " "Templates will be displayed. Compatible is identified by those having " "identical Data Sources." msgstr "" #: ../graphs.php:824 #, fuzzy msgid "New Graph Template" msgstr "Шаблони за графики" #: ../graphs.php:849 msgid "" "Click 'Continue' to duplicate the following Graph(s). You can optionally " "change the title format for the new Graph(s)." msgstr "" #: ../graphs.php:852 msgid " (1)" msgstr "" #: ../graphs.php:856 #, fuzzy msgid "Duplicate Graph(s)" msgstr "ÐÑоциирани шаблони за графики" #: ../graphs.php:860 msgid "" "Click 'Continue' to convert the following Graph(s) into Graph Template(s). " "You can optionally change the title format for the new Graph Template(s)." msgstr "" #: ../graphs.php:863 #, fuzzy msgid " Template" msgstr "Шаблони за графики" #: ../graphs.php:871 msgid "" "Click 'Continue' to place the following Graph(s) under the Tree Branch " "selected below." msgstr "" #: ../graphs.php:873 msgid "Destination Branch" msgstr "" #: ../graphs.php:886 msgid "Choose a new Device for these Graph(s) and click 'Continue'." msgstr "" #: ../graphs.php:888 #, fuzzy msgid "New Device" msgstr "УÑтройÑтва" #: ../graphs.php:900 msgid "" "Click 'Continue' to re-apply suggested naming to the following Graph(s)." msgstr "" #: ../graphs.php:905 msgid "Reapply Suggested Naming to Graph(s)" msgstr "" #: ../graphs.php:921 msgid "" "Click 'Continue' to create an Aggregate Graph from the selected Graph(s)." msgstr "" #: ../graphs.php:928 msgid "The following data sources are in use by these graphs:" msgstr "" #: ../graphs.php:961 msgid "Please confirm" msgstr "" #: ../graphs.php:1029 msgid "Resize Selected Graph(s)" msgstr "" #: ../graphs.php:1051 msgid "" "Select the Aggregate Template to use and press 'Continue' to create your " "Aggregate Graph. Otherwise press 'Cancel' to return." msgstr "" #: ../graphs.php:1072 msgid "Create Aggregate" msgstr "" #: ../graphs.php:1076 msgid "" "There are presently no Aggregate Templates defined for this Graph Template. " "Please either first create an Aggregate Template for the selected Graphs " "Graph Template and try again, or simply crease an un-templated Aggregate " "Graph." msgstr "" #: ../graphs.php:1077 msgid "Press 'Return' to return and select different Graphs." msgstr "" #: ../graphs.php:1089 msgid "Click 'Continue' to apply Automation Rules to the following Graphs." msgstr "" #: ../graphs.php:1105 msgid "You must select at least one Graph." msgstr "" #: ../graphs.php:1245 #, fuzzy, php-format msgid "Graph [edit: %s]" msgstr "Графични елементи" #: ../graphs.php:1251 #, fuzzy msgid "Graph [new]" msgstr "Графични елементи" #: ../graphs.php:1276 msgid "Turn Off Graph Debug Mode." msgstr "" #: ../graphs.php:1278 msgid "Turn On Graph Debug Mode." msgstr "" #: ../graphs.php:1291 #, fuzzy msgid "Edit Graph Template." msgstr "Шаблони за графики" #: ../graphs.php:1297 #, fuzzy msgid "Unlock Graph." msgstr "Увеличение на графиката" #: ../graphs.php:1299 #, fuzzy msgid "Lock Graph." msgstr "Увеличение на графиката" #: ../graphs.php:1323 #, fuzzy msgid "Selected Graph Template" msgstr "ÐÑоциирани шаблони за графики" #: ../graphs.php:1324 #, php-format msgid "" "Choose a Graph Template to apply to this Graph. Please note that you may " "only change Graph Templates to a 100% compatible Graph Template, which means " "that it includes identical Data Sources." msgstr "" #: ../graphs.php:1332 msgid "Choose the Device that this Graph belongs to." msgstr "" #: ../graphs.php:1371 #, fuzzy msgid "Supplemental Graph Template Data" msgstr "Шаблони за елементи на графиката" #: ../graphs.php:1373 #, fuzzy msgid "Graph Fields" msgstr "Графични елементи" #: ../graphs.php:1374 #, fuzzy msgid "Graph Item Fields" msgstr "Графични елементи" #: ../graphs.php:1643 ../lib/functions.php:1908 msgid "Graph Management" msgstr "Управление на графики" #: ../graphs.php:1787 ../include/global_form.php:1859 #: ../lib/html_reports.php:355 ../tree.php:681 #, fuzzy msgid "Graph Name" msgstr "Управление на графики" #: ../graphs.php:1787 msgid "" "The Title of this Graph. Generally programatically generated from the Graph " "Template definition or Suggested Naming rules. The max length of the Title " "is controlled under Settings->Visual." msgstr "" #: ../graphs.php:1788 msgid "" "The internal database ID for this Graph. Useful when performing automation " "or debugging." msgstr "" #: ../graphs.php:1789 msgid "The Graph Template that this Graph was based upon." msgstr "" #: ../graphs.php:1790 msgid "The size of this Graph when not in Preview mode." msgstr "" #: ../graphs_items.php:290 #, fuzzy msgid "Data Sources [No Device]" msgstr "Източници на данни" #: ../graphs_items.php:325 ../include/global_arrays.php:984 #: ../include/global_form.php:1556 #, fuzzy msgid "Data Template" msgstr "Шаблони за графики" #: ../graphs_items.php:377 #, fuzzy, php-format msgid "Graph Items [graph: %s]" msgstr "Въвеждане на елементи на графика" #: ../graphs_new.php:75 #, fuzzy msgid "Default Settings Saved" msgstr "ÐаÑтройки на cacti" #: ../graphs_new.php:281 #, fuzzy, php-format msgid "Create Graph from %s" msgstr "Създаване на нови графики" #: ../graphs_new.php:302 #, fuzzy, php-format msgid "Created %s Graphs from %s" msgstr "Създаване на графики от автоматизирано Ñъбиране на данни" #: ../graphs_new.php:304 #, fuzzy, php-format msgid "Created 1 Graph from %s" msgstr "Създаване на нови графики" #: ../graphs_new.php:345 #, fuzzy, php-format msgid "Graph [Template: %s]" msgstr "Шаблони за графики" #: ../graphs_new.php:346 #, fuzzy, php-format msgid "Graph Items [Template: %s]" msgstr "Шаблони за графики" #: ../graphs_new.php:351 #, fuzzy, php-format msgid "Data Source [Template: %s]" msgstr "Вид на източника на данни" #: ../graphs_new.php:361 #, php-format msgid "Custom Data [Template: %s]" msgstr "" #: ../graphs_new.php:446 #, php-format msgid "New Graphs for [ %s ]" msgstr "" #: ../graphs_new.php:449 msgid "New Graphs for [ All Devices ]" msgstr "" #: ../graphs_new.php:454 msgid "New Graphs for None Host Type" msgstr "" #: ../graphs_new.php:500 #, fuzzy msgid "Graph Types" msgstr "Дърво на графики" #: ../graphs_new.php:505 #, fuzzy msgid "Graph Template Based" msgstr "Шаблони за графики" #: ../graphs_new.php:541 msgid "Edit this Device" msgstr "" #: ../graphs_new.php:542 #, fuzzy msgid "Create New Device" msgstr "Създаване на нови графики" #: ../graphs_new.php:598 ../graphs_new.php:880 ../user_admin.php:1593 #: ../user_group_admin.php:1316 msgid "Select All" msgstr "Избери вÑички" #: ../graphs_new.php:674 ../include/global_arrays.php:679 #: ../include/global_arrays.php:750 ../lib/html_form.php:1111 #: ../lib/html_form.php:1124 ../tree.php:1025 msgid "Create" msgstr "" #: ../graphs_new.php:676 msgid "(Select a graph type to create)" msgstr "" #: ../graphs_new.php:760 #, fuzzy, php-format msgid "Data Query [%s]" msgstr "Вземане на данни" #: ../graphs_new.php:876 msgid "From there you can get more information." msgstr "" #: ../graphs_new.php:876 msgid "" "This Data Query returned 0 rows, perhaps there was a problem executing this " "Data Query." msgstr "" #: ../graphs_new.php:876 msgid "You can run this Data Query in debug mode" msgstr "" #: ../graphs_new.php:919 msgid "Search Returned no Rows." msgstr "" #: ../graphs_new.php:924 msgid "Error in data query." msgstr "" #: ../graphs_new.php:948 msgid "Select a Graph Type to Create" msgstr "" #: ../graphs_new.php:951 msgid "Make selection default" msgstr "" #: ../graphs_new.php:951 msgid "Set Default" msgstr "" #: ../host.php:41 #, fuzzy msgid "Change Device Settings" msgstr "ÐаÑтройки на cacti" #: ../host.php:42 msgid "Clear Statistics" msgstr "" #: ../host.php:44 msgid "Sync to Device Template" msgstr "" #: ../host.php:376 msgid "Click 'Continue' to enable the following Device(s)." msgstr "" #: ../host.php:381 #, fuzzy msgid "Enable Device(s)" msgstr "УÑтройÑтва" #: ../host.php:385 msgid "Click 'Continue' to disable the following Device(s)." msgstr "" #: ../host.php:390 msgid "Disable Device(s)" msgstr "" #: ../host.php:394 msgid "" "Click 'Continue' to change the Device options below for multiple Device(s). " "Please check the box next to the fields you want to update, and then fill in " "the new value." msgstr "" #: ../host.php:417 msgid "Update this Field" msgstr "" #: ../host.php:432 msgid "Change Device(s) SNMP Options" msgstr "" #: ../host.php:436 msgid "Click 'Continue' to clear the counters for the following Device(s)." msgstr "" #: ../host.php:441 msgid "Clear Statistics on Device(s)" msgstr "" #: ../host.php:445 msgid "" "Click 'Continue' to Synchronize the following Device(s) to their Device " "Template." msgstr "" #: ../host.php:450 msgid "Synchronize Device(s)" msgstr "" #: ../host.php:454 msgid "Click 'Continue' to delete the following Device(s)." msgstr "" #: ../host.php:457 msgid "" "Leave all Graph(s) and Data Source(s) untouched. Data Source(s) will be " "disabled however." msgstr "" #: ../host.php:458 msgid "Delete all associated Graph(s) and Data Source(s)." msgstr "" #: ../host.php:464 #, fuzzy msgid "Delete Device(s)" msgstr "УÑтройÑтва" #: ../host.php:468 msgid "" "Click 'Continue' to place the following Device(s) under the branch selected " "below." msgstr "" #: ../host.php:478 msgid "Place Device(s) on Tree" msgstr "" #: ../host.php:482 msgid "Click 'Continue' to apply Automation Rules to the following Devices(s)." msgstr "" #: ../host.php:487 msgid "Run Automation on Device(s)" msgstr "" #: ../host.php:498 msgid "You must select at least one device." msgstr "" #: ../host.php:598 #, fuzzy msgid "Device [new]" msgstr "УÑтройÑтва" #: ../host.php:604 #, php-format msgid "Device [edit: %s]" msgstr "" #: ../host.php:606 msgid "Disable Device Debug" msgstr "" #: ../host.php:608 msgid "Enable Device Debug" msgstr "" #: ../host.php:622 #, fuzzy msgid "Create Graphs for this Device" msgstr "Създаване на графики от автоматизирано Ñъбиране на данни" #: ../host.php:624 #, fuzzy msgid "Data Source List" msgstr "Източници на данни" #: ../host.php:625 #, fuzzy msgid "Graph List" msgstr "Графики" #: ../host.php:631 msgid "Contacting Device" msgstr "" #: ../host.php:663 msgid "Data Query Debug Information" msgstr "" #: ../host.php:666 ../templates_import.php:141 msgid "Hide" msgstr "" #: ../host.php:737 ../tree.php:1145 ../tree.php:1219 ../tree.php:1306 #, fuzzy msgid "Edit" msgstr "(Редактирай)" #: ../host.php:737 msgid "Is Being Graphed" msgstr "" #: ../host.php:737 msgid "Not Being Graphed" msgstr "" #: ../host.php:740 #, fuzzy msgid "Delete Graph Template Association" msgstr "Шаблони за графики" #: ../host.php:747 ../host_templates.php:493 #, fuzzy msgid "No associated graph templates." msgstr "ÐÑоциирани шаблони за графики" #: ../host.php:756 ../host_templates.php:502 #, fuzzy msgid "Add Graph Template" msgstr "Шаблони за графики" #: ../host.php:762 #, fuzzy msgid "Add Graph Template to Device" msgstr "Шаблони за елементи на графиката" #: ../host.php:772 ../host_templates.php:525 #, fuzzy msgid "Associated Data Queries" msgstr "Ðвтоматизирани данни" #: ../host.php:777 ../host.php:873 msgid "Re-Index Method" msgstr "" #: ../host.php:779 ../lib/api_automation.php:1212 #: ../lib/api_automation.php:1274 ../lib/api_automation.php:1338 #: ../lib/functions.php:1926 ../lib/functions.php:1992 #: ../lib/functions.php:2058 ../lib/functions.php:2094 #: ../lib/functions.php:2112 ../lib/functions.php:2130 #: ../lib/functions.php:2148 ../lib/functions.php:2178 #: ../lib/functions.php:2214 ../lib/functions.php:2244 #: ../lib/functions.php:2334 ../lib/functions.php:2520 #: ../lib/functions.php:2544 ../lib/functions.php:2562 #: ../lib/functions.php:2580 ../lib/functions.php:2598 #: ../lib/functions.php:2622 ../lib/html_reports.php:1216 ../links.php:377 #: ../plugins.php:374 msgid "Actions" msgstr "ДейÑтвиÑ" #: ../host.php:840 msgid "Fail" msgstr "" #: ../host.php:840 ../lib/functions.php:3811 ../lib/functions.php:3816 msgid "Success" msgstr "" #: ../host.php:843 #, fuzzy msgid "Reload Query" msgstr "Вземане на данни" #: ../host.php:844 msgid "Verbose Query" msgstr "" #: ../host.php:845 #, fuzzy msgid "Remove Query" msgstr "(Изтрий)" #: ../host.php:851 #, fuzzy msgid "No Associated Data Queries." msgstr "Ðвтоматизирани данни" #: ../host.php:867 ../host_templates.php:559 #, fuzzy msgid "Add Data Query" msgstr "Вземане на данни" #: ../host.php:879 #, fuzzy msgid "Add Data Query to Device" msgstr "Ðвтоматизирани данни" #: ../host.php:1014 ../include/global_arrays.php:460 msgid "Ping and SNMP Uptime" msgstr "" #: ../host.php:1015 ../include/global_arrays.php:462 #, fuzzy msgid "SNMP Uptime" msgstr "SNMP изтекло време" #: ../host.php:1016 ../include/global_arrays.php:465 msgid "Ping" msgstr "" #: ../host.php:1017 ../include/global_arrays.php:461 msgid "Ping or SNMP Uptime" msgstr "" #: ../host.php:1018 ../include/global_arrays.php:463 #, fuzzy msgid "SNMP Desc" msgstr "SNMP ВерÑиÑ" #: ../host.php:1019 msgid "SNMP GetNext" msgstr "" #: ../host.php:1312 ../include/global_settings.php:441 msgid "Site" msgstr "" #: ../host.php:1388 ../lib/api_automation.php:164 #: ../lib/api_automation.php:1019 msgid "Not Up" msgstr "" #: ../host.php:1391 ../lib/api_automation.php:167 #: ../lib/api_automation.php:1022 ../lib/html_utility.php:814 ../pollers.php:41 msgid "Recovering" msgstr "" #: ../host.php:1392 ../lib/api_automation.php:168 #: ../lib/api_automation.php:1023 ../lib/html_utility.php:823 #: ../plugins.php:166 ../utilities.php:2011 msgid "Unknown" msgstr "" #: ../host.php:1498 ../lib/api_automation.php:557 msgid "Device Description" msgstr "" #: ../host.php:1498 msgid "The name by which this Device will be referred to." msgstr "" #: ../host.php:1499 msgid "" "Either an IP address, or hostname. If a hostname, it must be resolvable by " "either DNS, or from your hosts file." msgstr "" #: ../host.php:1499 ../include/global_form.php:1013 #: ../include/global_form.php:1638 ../lib/api_automation.php:270 #: ../lib/api_automation.php:558 ../lib/api_automation.php:809 #: ../lib/api_automation.php:1138 ../managers.php:225 ../pollers.php:82 #: ../pollers.php:613 ../user_admin.php:1242 ../user_group_admin.php:966 #, fuzzy msgid "Hostname" msgstr "Потребител" #: ../host.php:1500 msgid "" "The internal database ID for this Device. Useful when performing automation " "or debugging." msgstr "" #: ../host.php:1501 msgid "The total number of Graphs generated from this Device." msgstr "" #: ../host.php:1502 msgid "The total number of Data Sources generated from this Device." msgstr "" #: ../host.php:1503 msgid "" "The monitoring status of the Device based upon ping results. If this Device " "is a special type Device, by using the hostname \"localhost\", or due to the " "setting to not perform an Availability Check, it will always remain Up. " "When using cmd.php data collector, a Device with no Graphs, is not pinged by " "the data collector and will remain in an \"Unknown\" state." msgstr "" #: ../host.php:1504 msgid "In State" msgstr "" #: ../host.php:1504 #, fuzzy msgid "The amount of time that this Device has been in its current state." msgstr "Времето в Ñекунди между очаквани промени." #: ../host.php:1505 msgid "The current amount of time that the host has been up." msgstr "" #: ../host.php:1506 #, fuzzy msgid "Poll Time" msgstr "Събиращи Ñкриптове" #: ../host.php:1506 #, fuzzy msgid "The amount of time it takes to collect data from this Device." msgstr "Времето в Ñекунди между очаквани промени." #: ../host.php:1507 msgid "Current (ms)" msgstr "" #: ../host.php:1507 #, fuzzy msgid "The current ping time in milliseconds to reach the Device." msgstr "Времето в Ñекунди между очаквани промени." #: ../host.php:1508 msgid "Average (ms)" msgstr "" #: ../host.php:1508 msgid "" "The average ping time in milliseconds to reach the Device since the counters " "were cleared for this Device." msgstr "" #: ../host.php:1509 msgid "Availability" msgstr "" #: ../host.php:1509 msgid "" "The availability percentage based upon ping results since the counters were " "cleared for this Device." msgstr "" #: ../host_templates.php:32 #, fuzzy msgid "Sync Devices" msgstr "УÑтройÑтва" #: ../host_templates.php:256 msgid "Click 'Continue' to delete the following Device Template(s)." msgstr "" #: ../host_templates.php:261 msgid "Delete Device Template(s)" msgstr "" #: ../host_templates.php:265 msgid "" "Click 'Continue' to duplicate the following Device Template(s). Optionally " "change the title for the new Device Template(s)." msgstr "" #: ../host_templates.php:275 msgid "Duplicate Device Template(s)" msgstr "" #: ../host_templates.php:279 msgid "" "Click 'Continue' to Synchronize Devices associated with the selected Device " "Template(s). Note that this action may take some time depending on the " "number of Devices mapped to the Device Template." msgstr "" #: ../host_templates.php:286 msgid "Sync Devices to Device Template(s)" msgstr "" #: ../host_templates.php:289 msgid "You must select at least one host template." msgstr "" #: ../host_templates.php:328 msgid "" "Click 'Continue' to delete the following Graph Template will be " "disassociated from the Device Template." msgstr "" #: ../host_templates.php:329 #, fuzzy, php-format msgid "Graph Template Name: %s" msgstr "Шаблони за елементи на графиката" #: ../host_templates.php:388 msgid "" "Click 'Continue' to delete the following Data Queries will be disassociated " "from the Device Template." msgstr "" #: ../host_templates.php:389 #, fuzzy, php-format msgid "Data Query Name: %s" msgstr "Ðвтоматизирани данни" #: ../host_templates.php:442 #, php-format msgid "Device Templates [edit: %s]" msgstr "" #: ../host_templates.php:444 msgid "Device Templates [new]" msgstr "" #: ../host_templates.php:461 msgid "Default Submit Button" msgstr "" #: ../host_templates.php:515 #, fuzzy msgid "Add Graph Template to Device Template" msgstr "Шаблони за елементи на графиката" #: ../host_templates.php:550 msgid "No associated data queries." msgstr "" #: ../host_templates.php:569 msgid "Add Data Query to Device Template" msgstr "" #: ../host_templates.php:691 ../host_templates.php:706 #: ../host_templates.php:805 ../include/global_arrays.php:874 #: ../lib/functions.php:2082 #, fuzzy msgid "Device Templates" msgstr "Шаблони за графики" #: ../host_templates.php:724 #, fuzzy msgid "Has Devices" msgstr "УÑтройÑтва" #: ../host_templates.php:814 ../lib/api_automation.php:272 #: ../lib/api_automation.php:559 ../lib/api_automation.php:1139 msgid "Device Template Name" msgstr "" #: ../host_templates.php:814 #, fuzzy msgid "The name of this Device Template." msgstr "Името зададено за този шаблон за данни" #: ../host_templates.php:815 msgid "" "The internal database ID for this Device Template. Useful when performing " "automation or debugging." msgstr "" #: ../host_templates.php:816 msgid "" "Device Templates in use cannot be Deleted. In use is defined as being " "referenced by a Device." msgstr "" #: ../host_templates.php:817 #, fuzzy msgid "Devices Using" msgstr "УÑтройÑтва" #: ../host_templates.php:817 #, fuzzy msgid "The number of Devices using this Device Template." msgstr "Името зададено за този шаблон за данни" #: ../host_templates.php:840 msgid "No Device Templates Found" msgstr "" #: ../include/auth.php:115 ../include/auth.php:117 ../permission_denied.php:30 #: ../permission_denied.php:32 msgid "Login Again" msgstr "" #: ../include/auth.php:125 ../include/auth.php:146 ../permission_denied.php:60 msgid "Permission Denied" msgstr "" #: ../include/auth.php:148 ../permission_denied.php:62 msgid "" "If you feel that this is an error. Please contact your Cacti Administrator." msgstr "" #: ../include/auth.php:148 ../permission_denied.php:62 msgid "You are not permitted to access this section of Cacti." msgstr "" #: ../include/global_arrays.php:88 msgid "Save Successful." msgstr "" #: ../include/global_arrays.php:91 msgid "Save Failed." msgstr "" #: ../include/global_arrays.php:94 msgid "Save Failed: Field Input Error (Check Red Fields)." msgstr "" #: ../include/global_arrays.php:97 msgid "Passwords do not match, please retype." msgstr "" #: ../include/global_arrays.php:100 msgid "You must select at least one field." msgstr "" #: ../include/global_arrays.php:103 msgid "" "You must have built in user authentication turned on to use this feature." msgstr "" #: ../include/global_arrays.php:106 msgid "XML parse error." msgstr "" #: ../include/global_arrays.php:109 msgid "Username already in use." msgstr "" #: ../include/global_arrays.php:112 msgid "XML: Cacti version does not exist." msgstr "" #: ../include/global_arrays.php:115 msgid "XML: Hash version does not exist." msgstr "" #: ../include/global_arrays.php:118 msgid "XML: Generated with a newer version of Cacti." msgstr "" #: ../include/global_arrays.php:121 msgid "XML: Cannot locate type code." msgstr "" #: ../include/global_arrays.php:124 msgid "Username already exists." msgstr "" #: ../include/global_arrays.php:127 msgid "Username change not permitted for designated template or guest user." msgstr "" #: ../include/global_arrays.php:130 msgid "User delete not permitted for designated template or guest user." msgstr "" #: ../include/global_arrays.php:133 msgid "User delete not permitted for designated graph export user." msgstr "" #: ../include/global_arrays.php:136 msgid "" "Data Template Includes Deleted Data Source Profile. Please resave the Data " "Template with an existing Data Source Profile." msgstr "" #: ../include/global_arrays.php:139 msgid "" "Graph Template Includes Deleted GPrint Prefix. Please run Database Repair " "Script to Identify and/or Correct." msgstr "" #: ../include/global_arrays.php:142 msgid "" "Graph Template Includes Deleted CDEFs. Please run Database Repair Script to " "Identify and/or Correct." msgstr "" #: ../include/global_arrays.php:145 msgid "" "Graph Template Includes Deleted Data Input Method. Please run Database " "Repair Script to Identify." msgstr "" #: ../include/global_arrays.php:148 msgid "" "Data Template Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: ../include/global_arrays.php:151 msgid "" "Device Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: ../include/global_arrays.php:154 msgid "" "Data Query Not Found during Export. Please run Database Repair Script to " "Identify." msgstr "" #: ../include/global_arrays.php:157 msgid "" "Graph Template Not Found during Export. Please run Database Repair Script " "to Identify." msgstr "" #: ../include/global_arrays.php:160 msgid "" "Graph not found. Either it has been deleted or your database needs repair." msgstr "" #: ../include/global_arrays.php:163 msgid "SNMPv3 Auth Passphrases must be 8 characters or greater." msgstr "" #: ../include/global_arrays.php:166 msgid "" "Some Graphs not Updated. Unable to Change Device for Data Query based Graphs." msgstr "" #: ../include/global_arrays.php:169 msgid "Unable to Change Device for Data Query based Graphs." msgstr "" #: ../include/global_arrays.php:172 msgid "Cacti Log purged successfully" msgstr "" #: ../include/global_arrays.php:175 msgid "" "Error: If you force a password change, you must also allow the user to " "change their password." msgstr "" #: ../include/global_arrays.php:178 msgid "Error: You are not allowed to change your password." msgstr "" #: ../include/global_arrays.php:181 msgid "Error: LDAP/AD based password change not supported." msgstr "" #: ../include/global_arrays.php:184 msgid "Error: Unable to clear log, no write permissions" msgstr "" #: ../include/global_arrays.php:187 msgid "Error: Unable to clear log, file does not exist" msgstr "" #: ../include/global_arrays.php:190 msgid "Invalid Timestamp. Select timestamp in the future." msgstr "" #: ../include/global_arrays.php:193 msgid "Data Collector(s) Synchronized for Offline Operation" msgstr "" #: ../include/global_arrays.php:196 msgid "Data Collector(s) Not found when attempting Synchronization" msgstr "" #: ../include/global_arrays.php:199 msgid "Unable to establish MySQL connection with remote Data Collector." msgstr "" #: ../include/global_arrays.php:202 msgid "" "Data Collector Synchronization must be initiated from the main Cacti server." msgstr "" #: ../include/global_arrays.php:205 msgid "Report Saved" msgstr "" #: ../include/global_arrays.php:208 msgid "Report Save Failed" msgstr "" #: ../include/global_arrays.php:211 msgid "Report Item Saved" msgstr "" #: ../include/global_arrays.php:214 msgid "Report Item Save Failed" msgstr "" #: ../include/global_arrays.php:306 ../include/global_arrays.php:619 #, fuzzy msgid "Function" msgstr "ДейÑтвиÑ" #: ../include/global_arrays.php:307 ../include/global_arrays.php:621 #, fuzzy msgid "Special Data Source" msgstr "Източници на данни" #: ../include/global_arrays.php:308 ../include/global_arrays.php:623 msgid "Custom String" msgstr "" #: ../include/global_arrays.php:318 ../include/global_arrays.php:325 #, fuzzy msgid "Script/Command" msgstr "Скрипт" #: ../include/global_arrays.php:320 ../include/global_arrays.php:326 #: ../utilities.php:1607 #, fuzzy msgid "Script Server" msgstr "Скрипт" #: ../include/global_arrays.php:332 msgid "Index Count" msgstr "" #: ../include/global_arrays.php:333 msgid "Verify All" msgstr "" #: ../include/global_arrays.php:337 msgid "" "All Re-Indexing will be manual or managed through scripts or Device " "Automation." msgstr "" #: ../include/global_arrays.php:338 msgid "" "When the Devices SNMP uptime goes backward, a Re-Index will be performed." msgstr "" #: ../include/global_arrays.php:339 msgid "When the Data Query index count changes, a Re-Index will be performed." msgstr "" #: ../include/global_arrays.php:340 msgid "Every polling cycle, a Re-Index will be performed. Very expensive." msgstr "" #: ../include/global_arrays.php:344 msgid "SNMP Field Name (Dropdown)" msgstr "" #: ../include/global_arrays.php:345 msgid "SNMP Field Value (From User)" msgstr "" #: ../include/global_arrays.php:346 msgid "SNMP Output Type (Dropdown)" msgstr "" #: ../include/global_arrays.php:365 ../include/global_arrays.php:371 msgid "Normal" msgstr "" #: ../include/global_arrays.php:366 msgid "Light" msgstr "" #: ../include/global_arrays.php:367 ../include/global_arrays.php:372 msgid "Mono" msgstr "" #: ../include/global_arrays.php:376 msgid "North" msgstr "" #: ../include/global_arrays.php:377 msgid "South" msgstr "" #: ../include/global_arrays.php:378 msgid "West" msgstr "" #: ../include/global_arrays.php:379 msgid "East" msgstr "" #: ../include/global_arrays.php:384 msgid "Left" msgstr "" #: ../include/global_arrays.php:385 msgid "Right" msgstr "" #: ../include/global_arrays.php:386 msgid "Justified" msgstr "" #: ../include/global_arrays.php:387 msgid "Center" msgstr "" #: ../include/global_arrays.php:391 msgid "Top -> Down" msgstr "" #: ../include/global_arrays.php:392 msgid "Bottom -> Up" msgstr "" #: ../include/global_arrays.php:396 ../tree.php:1129 msgid "Numeric" msgstr "" #: ../include/global_arrays.php:397 msgid "Timestamp" msgstr "" #: ../include/global_arrays.php:398 msgid "Duration" msgstr "" #: ../include/global_arrays.php:430 msgid "Not In Use" msgstr "" #: ../include/global_arrays.php:431 ../include/global_arrays.php:432 #: ../include/global_arrays.php:433 ../include/global_arrays.php:589 #: ../include/global_arrays.php:590 #, fuzzy, php-format msgid "Version %d" msgstr "SNMP ВерÑиÑ" #: ../include/global_arrays.php:437 msgid "MD5 (default)" msgstr "" #: ../include/global_arrays.php:438 msgid "SHA" msgstr "" #: ../include/global_arrays.php:442 msgid "[None]" msgstr "" #: ../include/global_arrays.php:443 msgid "DES (default)" msgstr "" #: ../include/global_arrays.php:444 msgid "AES" msgstr "" #: ../include/global_arrays.php:453 msgid "Logfile Only" msgstr "" #: ../include/global_arrays.php:454 msgid "Logfile and Syslog/Eventlog" msgstr "" #: ../include/global_arrays.php:455 msgid "Syslog/Eventlog Only" msgstr "" #: ../include/global_arrays.php:464 msgid "SNMP getNext" msgstr "" #: ../include/global_arrays.php:469 msgid "ICMP Ping" msgstr "" #: ../include/global_arrays.php:470 msgid "TCP Ping" msgstr "" #: ../include/global_arrays.php:471 msgid "UDP Ping" msgstr "" #: ../include/global_arrays.php:475 msgid "NONE - Syslog Only if Selected" msgstr "" #: ../include/global_arrays.php:476 msgid "LOW - Statistics and Errors" msgstr "" #: ../include/global_arrays.php:477 msgid "MEDIUM - Statistics, Errors and Results" msgstr "" #: ../include/global_arrays.php:478 msgid "HIGH - Statistics, Errors, Results and Major I/O Events" msgstr "" #: ../include/global_arrays.php:479 msgid "DEBUG - Statistics, Errors, Results, I/O and Program Flow" msgstr "" #: ../include/global_arrays.php:480 msgid "DEVEL - Developer DEBUG Level" msgstr "" #: ../include/global_arrays.php:489 msgid "Selected Poller Interval" msgstr "" #: ../include/global_arrays.php:504 ../include/global_arrays.php:505 #: ../include/global_arrays.php:506 ../include/global_arrays.php:507 #: ../include/global_arrays.php:538 ../include/global_arrays.php:539 #: ../include/global_arrays.php:540 ../include/global_arrays.php:541 #, php-format msgid "Every %d Seconds" msgstr "" #: ../include/global_arrays.php:508 ../include/global_arrays.php:542 #: ../include/global_arrays.php:556 msgid "Every Minute" msgstr "" #: ../include/global_arrays.php:509 ../include/global_arrays.php:510 #: ../include/global_arrays.php:511 ../include/global_arrays.php:512 #: ../include/global_arrays.php:543 ../include/global_arrays.php:557 #, php-format msgid "Every %d Minutes" msgstr "" #: ../include/global_arrays.php:513 msgid "Every Hour" msgstr "" #: ../include/global_arrays.php:514 ../include/global_arrays.php:515 #: ../include/global_arrays.php:1444 ../include/global_arrays.php:1445 #: ../include/global_arrays.php:1446 ../include/global_arrays.php:1447 #: ../include/global_arrays.php:1448 ../include/global_settings.php:1765 #: ../include/global_settings.php:1766 #, php-format msgid "Every %d Hours" msgstr "" #: ../include/global_arrays.php:534 ../include/global_settings.php:1098 msgid "1 Day" msgstr "" #: ../include/global_arrays.php:547 msgid "1 Thread (default)" msgstr "" #: ../include/global_arrays.php:572 msgid "Builtin Authentication" msgstr "" #: ../include/global_arrays.php:573 msgid "Web Basic Authentication" msgstr "" #: ../include/global_arrays.php:577 msgid "LDAP Authentication" msgstr "" #: ../include/global_arrays.php:578 msgid "Multiple LDAP/AD Domains" msgstr "" #: ../include/global_arrays.php:583 msgid "Active Directory" msgstr "" #: ../include/global_arrays.php:595 ../include/global_settings.php:1324 msgid "SSL" msgstr "" #: ../include/global_arrays.php:596 ../include/global_settings.php:1324 msgid "TLS" msgstr "" #: ../include/global_arrays.php:600 msgid "No Searching" msgstr "" #: ../include/global_arrays.php:601 msgid "Anonymous Searching" msgstr "" #: ../include/global_arrays.php:602 msgid "Specific Searching" msgstr "" #: ../include/global_arrays.php:615 msgid "Enabled (strict mode)" msgstr "" #: ../include/global_arrays.php:620 ../include/global_form.php:2101 #: ../include/global_form.php:2143 ../lib/api_automation.php:1210 #: ../lib/api_automation.php:1272 msgid "Operator" msgstr "" #: ../include/global_arrays.php:622 msgid "Another CDEF" msgstr "" #: ../include/global_arrays.php:641 msgid "Inherit Parent Sorting" msgstr "" #: ../include/global_arrays.php:642 msgid "Manual Ordering (No Sorting)" msgstr "" #: ../include/global_arrays.php:643 msgid "Alphabetic Ordering" msgstr "" #: ../include/global_arrays.php:644 msgid "Natural Ordering" msgstr "" #: ../include/global_arrays.php:645 msgid "Numeric Ordering" msgstr "" #: ../include/global_arrays.php:649 ../lib/rrd.php:2624 msgid "Header" msgstr "" #: ../include/global_arrays.php:650 ../include/global_arrays.php:697 #: ../include/global_arrays.php:1269 ../include/global_arrays.php:1433 #: ../lib/html_tree.php:351 msgid "Graph" msgstr "Графика" #: ../include/global_arrays.php:656 ../tree.php:1295 #, fuzzy msgid "Data Query Index" msgstr "Вземане на данни" #: ../include/global_arrays.php:660 #, fuzzy msgid "Current Graph Item Data Source" msgstr "Създаване на графики от автоматизирано Ñъбиране на данни" #: ../include/global_arrays.php:661 msgid "Current Graph Item Polling Interval" msgstr "" #: ../include/global_arrays.php:662 msgid "All Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:663 msgid "All Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:664 msgid "All Similar Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:665 msgid "All Similar Data Sources (Do not Include Duplicates) Polling Interval" msgstr "" #: ../include/global_arrays.php:666 msgid "All Similar Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:667 msgid "Current Data Source Item: Minimum Value" msgstr "" #: ../include/global_arrays.php:668 msgid "Current Data Source Item: Maximum Value" msgstr "" #: ../include/global_arrays.php:669 msgid "Graph: Lower Limit" msgstr "" #: ../include/global_arrays.php:670 msgid "Graph: Upper Limit" msgstr "" #: ../include/global_arrays.php:671 msgid "Count of All Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:672 msgid "Count of All Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:673 msgid "Count of All Similar Data Sources (Do not Include Duplicates)" msgstr "" #: ../include/global_arrays.php:674 msgid "Count of All Similar Data Sources (Include Duplicates)" msgstr "" #: ../include/global_arrays.php:680 ../lib/html_form_template.php:562 #: ../lib/html_form_template.php:577 #, fuzzy msgid "New Graphs" msgstr "Графики" #: ../include/global_arrays.php:682 ../include/global_arrays.php:734 #: ../include/global_arrays.php:751 #, fuzzy msgid "Management" msgstr "Права на потребители" #: ../include/global_arrays.php:684 ../sites.php:378 ../sites.php:393 #: ../sites.php:472 msgid "Sites" msgstr "" #: ../include/global_arrays.php:685 ../include/global_arrays.php:866 #: ../tree.php:1476 ../tree.php:1491 ../tree.php:1549 ../user_admin.php:1513 #: ../user_admin.php:2926 ../user_admin.php:3013 ../user_group_admin.php:1235 #: ../user_group_admin.php:2441 #, fuzzy msgid "Trees" msgstr "Дърво на графики" #: ../include/global_arrays.php:688 msgid "Aggregates" msgstr "" #: ../include/global_arrays.php:690 ../include/global_arrays.php:737 #: ../include/global_arrays.php:752 msgid "Data Collection" msgstr "" #: ../include/global_arrays.php:691 ../include/global_arrays.php:738 #: ../pollers.php:508 msgid "Data Collectors" msgstr "" #: ../include/global_arrays.php:699 msgid "Aggregate" msgstr "" #: ../include/global_arrays.php:702 ../include/global_arrays.php:754 #: ../include/global_settings.php:413 msgid "Automation" msgstr "" #: ../include/global_arrays.php:704 msgid "Discovered Devices" msgstr "" #: ../include/global_arrays.php:705 #, fuzzy msgid "Device Rules" msgstr "УÑтройÑтва" #: ../include/global_arrays.php:710 ../include/global_arrays.php:755 #: ../lib/html_filter.php:178 ../lib/html_graph.php:255 #: ../lib/html_tree.php:701 msgid "Presets" msgstr "" #: ../include/global_arrays.php:711 #, fuzzy msgid "Data Profiles" msgstr "Ðвтоматизирани данни" #: ../include/global_arrays.php:713 ../lib/functions.php:2328 ../vdef.php:651 #: ../vdef.php:665 ../vdef.php:836 msgid "VDEFs" msgstr "" #: ../include/global_arrays.php:717 ../include/global_arrays.php:756 msgid "Import/Export" msgstr "" #: ../include/global_arrays.php:718 ../lib/functions.php:2442 #: ../templates_import.php:115 msgid "Import Templates" msgstr "Импортиране на шаблони" #: ../include/global_arrays.php:719 ../lib/functions.php:2430 #: ../templates_export.php:94 msgid "Export Templates" msgstr "ЕкÑпортиране на шаблони" #: ../include/global_arrays.php:721 ../include/global_arrays.php:740 #: ../include/global_arrays.php:757 ../lib/plugins.php:763 msgid "Configuration" msgstr "" #: ../include/global_arrays.php:722 ../include/global_arrays.php:741 msgid "Settings" msgstr "ÐаÑтойки" #: ../include/global_arrays.php:723 ../lib/functions.php:2376 #: ../user_admin.php:2199 ../user_admin.php:2254 ../user_group_admin.php:667 #: ../user_group_admin.php:2528 #, fuzzy msgid "Users" msgstr "Потребител" #: ../include/global_arrays.php:724 ../lib/functions.php:2406 msgid "User Groups" msgstr "" #: ../include/global_arrays.php:725 ../lib/functions.php:2394 #: ../user_domains.php:612 ../user_domains.php:705 msgid "User Domains" msgstr "" #: ../include/global_arrays.php:727 ../include/global_arrays.php:743 #: ../include/global_arrays.php:758 ../lib/functions.php:2256 msgid "Utilities" msgstr "ПриложениÑ" #: ../include/global_arrays.php:728 ../include/global_arrays.php:744 #, fuzzy msgid "System Utilities" msgstr "ПриложениÑ" #: ../include/global_arrays.php:729 ../include/global_arrays.php:772 #: ../include/global_arrays.php:855 ../links.php:90 ../links.php:301 #: ../links.php:370 ../links.php:483 msgid "External Links" msgstr "" #: ../include/global_arrays.php:781 msgid "All Lines" msgstr "" #: ../include/global_arrays.php:782 ../include/global_arrays.php:783 #: ../include/global_arrays.php:784 ../include/global_arrays.php:785 #: ../include/global_arrays.php:786 ../include/global_arrays.php:787 #: ../include/global_arrays.php:788 ../include/global_arrays.php:789 #: ../include/global_arrays.php:790 ../include/global_arrays.php:791 #: ../include/global_arrays.php:792 ../include/global_arrays.php:793 #, php-format msgid "%d Lines" msgstr "" #: ../include/global_arrays.php:848 msgid "Never" msgstr "" #: ../include/global_arrays.php:852 #, fuzzy msgid "Console Access" msgstr "ÐдминиÑтративна конзола" #: ../include/global_arrays.php:854 msgid "Update Profile" msgstr "" #: ../include/global_arrays.php:857 ../user_admin.php:2178 msgid "User Management" msgstr "Права на потребители" #: ../include/global_arrays.php:858 msgid "Settings and Utilities" msgstr "" #: ../include/global_arrays.php:859 #, fuzzy msgid "Automation Settings" msgstr "ÐаÑтройки на cacti" #: ../include/global_arrays.php:864 msgid "Sites/Devices/Data Sources/Data Collectors" msgstr "" #: ../include/global_arrays.php:867 msgid "Remove Spikes from Graphs" msgstr "" #: ../include/global_arrays.php:870 msgid "Colors/GPrints/CDEFs/VDEFs" msgstr "" #: ../include/global_arrays.php:876 #, fuzzy msgid "Export Data" msgstr "ЕкÑпортиране на шаблони" #: ../include/global_arrays.php:877 #, fuzzy msgid "Import Data" msgstr "Импортиране на шаблони" #: ../include/global_arrays.php:879 ../include/global_settings.php:665 #, fuzzy msgid "Log Management" msgstr "Права на потребители" #: ../include/global_arrays.php:880 msgid "Log Viewing" msgstr "" #: ../include/global_arrays.php:882 #, fuzzy msgid "Reports Management" msgstr "Права на потребители" #: ../include/global_arrays.php:883 msgid "Reports Creation" msgstr "" #: ../include/global_arrays.php:981 msgid "CDEF" msgstr "" #: ../include/global_arrays.php:982 msgid "CDEF Item" msgstr "" #: ../include/global_arrays.php:983 msgid "GPRINT Preset" msgstr "" #: ../include/global_arrays.php:986 #, fuzzy msgid "Data Input Field" msgstr "Полета за въвеждане на данни" #: ../include/global_arrays.php:987 ../include/global_form.php:394 #: ../include/global_form.php:1613 #, fuzzy msgid "Data Source Profile" msgstr "Път до източник на данни" #: ../include/global_arrays.php:988 #, fuzzy msgid "Data Template Item" msgstr "Шаблони за елементи на графиката" #: ../include/global_arrays.php:990 #, fuzzy msgid "Graph Template Item" msgstr "Шаблони за елементи на графиката" #: ../include/global_arrays.php:991 #, fuzzy msgid "Graph Template Input" msgstr "Шаблони за елементи на графиката" #: ../include/global_arrays.php:994 msgid "VDEF" msgstr "" #: ../include/global_arrays.php:995 msgid "VDEF Item" msgstr "" #: ../include/global_arrays.php:1039 msgid "Last Half Hour" msgstr "" #: ../include/global_arrays.php:1040 msgid "Last Hour" msgstr "" #: ../include/global_arrays.php:1041 ../include/global_arrays.php:1042 #: ../include/global_arrays.php:1043 ../include/global_arrays.php:1044 #, php-format msgid "Last %d Hours" msgstr "" #: ../include/global_arrays.php:1045 msgid "Last Day" msgstr "" #: ../include/global_arrays.php:1046 ../include/global_arrays.php:1047 #: ../include/global_arrays.php:1048 #, php-format msgid "Last %d Days" msgstr "" #: ../include/global_arrays.php:1049 msgid "Last Week" msgstr "" #: ../include/global_arrays.php:1050 #, php-format msgid "Last %d Weeks" msgstr "" #: ../include/global_arrays.php:1051 #, fuzzy msgid "Last Month" msgstr "СпиÑъчен изглед" #: ../include/global_arrays.php:1052 ../include/global_arrays.php:1053 #: ../include/global_arrays.php:1054 ../include/global_arrays.php:1055 #, php-format msgid "Last %d Months" msgstr "" #: ../include/global_arrays.php:1056 msgid "Last Year" msgstr "" #: ../include/global_arrays.php:1057 #, php-format msgid "Last %d Years" msgstr "" #: ../include/global_arrays.php:1058 msgid "Day Shift" msgstr "" #: ../include/global_arrays.php:1059 msgid "This Day" msgstr "" #: ../include/global_arrays.php:1060 msgid "This Week" msgstr "" #: ../include/global_arrays.php:1061 msgid "This Month" msgstr "" #: ../include/global_arrays.php:1062 msgid "This Year" msgstr "" #: ../include/global_arrays.php:1063 msgid "Previous Day" msgstr "" #: ../include/global_arrays.php:1064 msgid "Previous Week" msgstr "" #: ../include/global_arrays.php:1065 #, fuzzy msgid "Previous Month" msgstr "Общ изглед" #: ../include/global_arrays.php:1066 msgid "Previous Year" msgstr "" #: ../include/global_arrays.php:1070 #, php-format msgid "%d Min" msgstr "" #: ../include/global_arrays.php:1087 ../include/global_settings.php:1026 #: ../rrdcleaner.php:493 #, php-format msgid "%d Year" msgstr "" #: ../include/global_arrays.php:1102 msgid "Month Number, Day, Year" msgstr "" #: ../include/global_arrays.php:1103 msgid "Month Name, Day, Year" msgstr "" #: ../include/global_arrays.php:1104 msgid "Day, Month Number, Year" msgstr "" #: ../include/global_arrays.php:1105 msgid "Day, Month Name, Year" msgstr "" #: ../include/global_arrays.php:1106 msgid "Year, Month Number, Day" msgstr "" #: ../include/global_arrays.php:1107 msgid "Year, Month Name, Day" msgstr "" #: ../include/global_arrays.php:1116 msgid "After Boost" msgstr "" #: ../include/global_arrays.php:1126 ../include/global_arrays.php:1127 #: ../include/global_arrays.php:1128 ../include/global_arrays.php:1129 #: ../include/global_arrays.php:1130 ../include/global_arrays.php:1185 #: ../include/global_arrays.php:1186 ../include/global_arrays.php:1187 #: ../include/global_arrays.php:1188 ../include/global_arrays.php:1189 #, php-format msgid "%d MBytes" msgstr "" #: ../include/global_arrays.php:1131 ../include/global_arrays.php:1190 msgid "1 GByte" msgstr "" #: ../include/global_arrays.php:1132 ../include/global_arrays.php:1191 #, php-format msgid "%s GBytes" msgstr "" #: ../include/global_arrays.php:1133 ../include/global_arrays.php:1134 #: ../include/global_arrays.php:1192 ../include/global_arrays.php:1193 #, php-format msgid "%d GBytes" msgstr "" #: ../include/global_arrays.php:1147 #, fuzzy msgid "2,000 Data Source Items" msgstr "Източници на данни" #: ../include/global_arrays.php:1148 #, fuzzy msgid "5,000 Data Source Items" msgstr "Източници на данни" #: ../include/global_arrays.php:1149 #, fuzzy msgid "10,000 Data Source Items" msgstr "Източници на данни" #: ../include/global_arrays.php:1150 #, fuzzy msgid "15,000 Data Source Items" msgstr "Източници на данни" #: ../include/global_arrays.php:1151 #, fuzzy msgid "25,000 Data Source Items" msgstr "Източници на данни" #: ../include/global_arrays.php:1152 msgid "50,000 Data Source Items (Default)" msgstr "" #: ../include/global_arrays.php:1153 #, fuzzy msgid "100,000 Data Source Items" msgstr "Източници на данни" #: ../include/global_arrays.php:1154 #, fuzzy msgid "200,000 Data Source Items" msgstr "Източници на данни" #: ../include/global_arrays.php:1155 #, fuzzy msgid "400,000 Data Source Items" msgstr "Източници на данни" #: ../include/global_arrays.php:1172 msgid "2 Hours" msgstr "" #: ../include/global_arrays.php:1173 msgid "4 Hours" msgstr "" #: ../include/global_arrays.php:1174 msgid "6 Hours" msgstr "" #: ../include/global_arrays.php:1181 #, php-format msgid "%s Hours" msgstr "" #: ../include/global_arrays.php:1200 #, php-format msgid "%s Minutes" msgstr "" #: ../include/global_arrays.php:1220 msgid "1 Megabyte" msgstr "" #: ../include/global_arrays.php:1221 ../include/global_arrays.php:1222 #: ../include/global_arrays.php:1223 ../include/global_arrays.php:1224 #: ../include/global_arrays.php:1225 ../include/global_arrays.php:1226 #, php-format msgid "%d Megabytes" msgstr "" #: ../include/global_arrays.php:1230 msgid "Send Now" msgstr "" #: ../include/global_arrays.php:1238 msgid "Take Ownership" msgstr "" #: ../include/global_arrays.php:1242 msgid "Inline PNG Image" msgstr "" #: ../include/global_arrays.php:1247 msgid "Inline JPEG Image" msgstr "" #: ../include/global_arrays.php:1248 msgid "Inline GIF Image" msgstr "" #: ../include/global_arrays.php:1251 msgid "Attached PNG Image" msgstr "" #: ../include/global_arrays.php:1254 msgid "Attached JPEG Image" msgstr "" #: ../include/global_arrays.php:1255 msgid "Attached GIF Image" msgstr "" #: ../include/global_arrays.php:1259 msgid "Inline PNG Image, LN Style" msgstr "" #: ../include/global_arrays.php:1261 msgid "Inline JPEG Image, LN Style" msgstr "" #: ../include/global_arrays.php:1262 msgid "Inline GIF Image, LN Style" msgstr "" #: ../include/global_arrays.php:1267 msgid "Text" msgstr "" #: ../include/global_arrays.php:1268 ../include/global_form.php:2223 #, fuzzy msgid "Tree" msgstr "Дървовиден изглед" #: ../include/global_arrays.php:1270 msgid "Horizontal Rule" msgstr "" #: ../include/global_arrays.php:1274 msgid "left" msgstr "" #: ../include/global_arrays.php:1275 msgid "center" msgstr "" #: ../include/global_arrays.php:1276 msgid "right" msgstr "" #: ../include/global_arrays.php:1280 msgid "Minute(s)" msgstr "" #: ../include/global_arrays.php:1281 msgid "Hour(s)" msgstr "" #: ../include/global_arrays.php:1282 msgid "Day(s)" msgstr "" #: ../include/global_arrays.php:1283 msgid "Week(s)" msgstr "" #: ../include/global_arrays.php:1284 msgid "Month(s), Day of Month" msgstr "" #: ../include/global_arrays.php:1285 msgid "Month(s), Day of Week" msgstr "" #: ../include/global_arrays.php:1286 msgid "Year(s)" msgstr "" #: ../include/global_arrays.php:1290 #, fuzzy msgid "Keep Graph Types" msgstr "Дърво на графики" #: ../include/global_arrays.php:1291 msgid "Keep Type and STACK" msgstr "" #: ../include/global_arrays.php:1292 msgid "Convert to AREA/STACK Graph" msgstr "" #: ../include/global_arrays.php:1293 msgid "Convert to LINE1 Graph" msgstr "" #: ../include/global_arrays.php:1294 msgid "Convert to LINE2 Graph" msgstr "" #: ../include/global_arrays.php:1295 msgid "Convert to LINE3 Graph" msgstr "" #: ../include/global_arrays.php:1299 msgid "No Totals" msgstr "" #: ../include/global_arrays.php:1300 msgid "Print all Legend Items" msgstr "" #: ../include/global_arrays.php:1301 msgid "Print totaling Legend Items Only" msgstr "" #: ../include/global_arrays.php:1305 #, fuzzy msgid "Total Similar Data Sources" msgstr "Източници на данни" #: ../include/global_arrays.php:1306 #, fuzzy msgid "Total All Data Sources" msgstr "Източници на данни" #: ../include/global_arrays.php:1310 msgid "No Reordering" msgstr "" #: ../include/global_arrays.php:1311 #, fuzzy msgid "Data Source, Graph" msgstr "Път до източник на данни" #: ../include/global_arrays.php:1312 #, fuzzy msgid "Graph, Data Source" msgstr "Източници на данни" #: ../include/global_arrays.php:1319 msgid "contains" msgstr "" #: ../include/global_arrays.php:1320 msgid "does not contain" msgstr "" #: ../include/global_arrays.php:1321 msgid "begins with" msgstr "" #: ../include/global_arrays.php:1322 msgid "does not begin with" msgstr "" #: ../include/global_arrays.php:1323 msgid "ends with" msgstr "" #: ../include/global_arrays.php:1324 msgid "does not end with" msgstr "" #: ../include/global_arrays.php:1325 msgid "matches" msgstr "" #: ../include/global_arrays.php:1326 msgid "does not match with" msgstr "" #: ../include/global_arrays.php:1327 msgid "is less than" msgstr "" #: ../include/global_arrays.php:1328 msgid "is less than or equal" msgstr "" #: ../include/global_arrays.php:1329 msgid "is greater than" msgstr "" #: ../include/global_arrays.php:1330 msgid "is greater than or equal" msgstr "" #: ../include/global_arrays.php:1331 msgid "is unknown" msgstr "" #: ../include/global_arrays.php:1332 msgid "is not unknown" msgstr "" #: ../include/global_arrays.php:1333 msgid "is empty" msgstr "" #: ../include/global_arrays.php:1334 msgid "is not empty" msgstr "" #: ../include/global_arrays.php:1335 msgid "matches regular expression" msgstr "" #: ../include/global_arrays.php:1336 msgid "does not match regular expression" msgstr "" #: ../include/global_arrays.php:1438 msgid "Fixed String" msgstr "" #: ../include/global_arrays.php:1443 msgid "Every 1 Hour" msgstr "" #: ../include/global_arrays.php:1449 msgid "Every Day" msgstr "" #: ../include/global_arrays.php:1450 msgid "Every Week" msgstr "" #: ../include/global_arrays.php:1451 ../include/global_arrays.php:1452 #, php-format msgid "Every %d Weeks" msgstr "" #: ../include/global_arrays.php:1477 msgctxt "A short textual representation of a month, three letters" msgid "Jan" msgstr "" #: ../include/global_arrays.php:1478 msgctxt "A short textual representation of a month, three letters" msgid "Feb" msgstr "" #: ../include/global_arrays.php:1479 msgctxt "A short textual representation of a month, three letters" msgid "Mar" msgstr "" #: ../include/global_arrays.php:1480 msgctxt "A short textual representation of a month, three letters" msgid "Apr" msgstr "" #: ../include/global_arrays.php:1481 msgctxt "A short textual representation of a month, three letters" msgid "May" msgstr "" #: ../include/global_arrays.php:1482 msgctxt "A short textual representation of a month, three letters" msgid "Jun" msgstr "" #: ../include/global_arrays.php:1483 msgctxt "A short textual representation of a month, three letters" msgid "Jul" msgstr "" #: ../include/global_arrays.php:1484 msgctxt "A short textual representation of a month, three letters" msgid "Aug" msgstr "" #: ../include/global_arrays.php:1485 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Sep" msgstr "Стъпка" #: ../include/global_arrays.php:1486 msgctxt "A short textual representation of a month, three letters" msgid "Oct" msgstr "" #: ../include/global_arrays.php:1487 msgctxt "A short textual representation of a month, three letters" msgid "Nov" msgstr "" #: ../include/global_arrays.php:1488 #, fuzzy msgctxt "A short textual representation of a month, three letters" msgid "Dec" msgstr "УÑтройÑтва" #: ../include/global_arrays.php:1502 msgctxt "A textual representation of a day, three letters" msgid "Sun" msgstr "" #: ../include/global_arrays.php:1503 msgctxt "A textual representation of a day, three letters" msgid "Mon" msgstr "" #: ../include/global_arrays.php:1504 msgctxt "A textual representation of a day, three letters" msgid "Tue" msgstr "" #: ../include/global_arrays.php:1505 msgctxt "A textual representation of a day, three letters" msgid "Wed" msgstr "" #: ../include/global_arrays.php:1506 msgctxt "A textual representation of a day, three letters" msgid "Thu" msgstr "" #: ../include/global_arrays.php:1507 msgctxt "A textual representation of a day, three letters" msgid "Fri" msgstr "" #: ../include/global_arrays.php:1508 msgctxt "A textual representation of a day, three letters" msgid "Sat" msgstr "" #: ../include/global_form.php:36 msgid "A useful name for this Data Storage and Polling Profile." msgstr "" #: ../include/global_form.php:40 msgid "New Profile" msgstr "" #: ../include/global_form.php:44 msgid "Polling Interval" msgstr "" #: ../include/global_form.php:45 msgid "The frequency that data will be collected from the Data Source?" msgstr "" #: ../include/global_form.php:53 msgid "" "How long can data be missing before RRDtool records unknown data. \n" "\t\t\tIncrease this value if your Data Source is unstable and you wish to " "carry forward \n" "\t\t\told data rather than show gaps in your graphs. This value is " "multiplied by the\n" "\t\t\tX-Files Factor to determine the actual amount of time." msgstr "" #: ../include/global_form.php:63 msgid "X-Files Factor" msgstr "" #: ../include/global_form.php:64 msgid "The amount of unknown data that can still be regarded as known." msgstr "" #: ../include/global_form.php:72 msgid "Consolidation Functions" msgstr "" #: ../include/global_form.php:73 ../include/global_form.php:105 #, fuzzy msgid "How data is to be entered in RRAs." msgstr "Как данните Ñа предÑтавени вътре в RRA." #: ../include/global_form.php:80 msgid "Is this the default storage profile?" msgstr "" #: ../include/global_form.php:86 msgid "RRDfile Size (in Bytes)" msgstr "" #: ../include/global_form.php:87 msgid "" "Based upon the number of Rows in all RRAs and the number of Consolidation " "Functions selected, the size of this entire in the RRDfile." msgstr "" #: ../include/global_form.php:109 msgid "New Profile RRA" msgstr "" #: ../include/global_form.php:113 msgid "Aggregation Level" msgstr "" #: ../include/global_form.php:114 msgid "" "The number of samples required prior to filling a row in the RRA " "specification. The first RRA should always have a value of 1." msgstr "" #: ../include/global_form.php:122 #, fuzzy msgid "How many generations data is kept in the RRA." msgstr "Как данните Ñа предÑтавени вътре в RRA." #: ../include/global_form.php:130 msgid "Effective Retention" msgstr "" #: ../include/global_form.php:131 msgid "" "Based upon the Aggregation Level, the Rows, and the Polling Interval the " "amount of data that will be retained in the RRA" msgstr "" #: ../include/global_form.php:136 msgid "RRA Size (in Bytes)" msgstr "" #: ../include/global_form.php:137 msgid "" "Based upon the number of Rows and the number of Consolidation Functions " "selected, the size of this RRA in the RRDfile." msgstr "" #: ../include/global_form.php:155 msgid "A useful name for this CDEF." msgstr "" #: ../include/global_form.php:175 #, fuzzy msgid "The name of this Color." msgstr "Изберете име за този източник на данни." #: ../include/global_form.php:182 #, fuzzy msgid "Hex Value" msgstr "МакÑимална ÑтойноÑÑ‚" #: ../include/global_form.php:183 msgid "The hex value for this color; valid range: 000000-FFFFFF." msgstr "" #: ../include/global_form.php:191 msgid "Any named color should be read only." msgstr "" #: ../include/global_form.php:216 ../include/global_form.php:276 #, fuzzy msgid "Enter a meaningful name for this data input method." msgstr "Изберете име за този източник на данни." #: ../include/global_form.php:223 msgid "Input Type" msgstr "" #: ../include/global_form.php:224 msgid "" "Choose the method you wish to use to collect data for this Data Input method." msgstr "" #: ../include/global_form.php:230 msgid "Input String" msgstr "" #: ../include/global_form.php:231 msgid "" "The data that is sent to the script, which includes the complete path to the " "script and input sources in <> brackets." msgstr "" #: ../include/global_form.php:252 ../include/global_form.php:263 #, php-format msgid "Field [%s]" msgstr "" #: ../include/global_form.php:253 #, php-format msgid "Choose the associated field from the %s field." msgstr "" #: ../include/global_form.php:264 #, php-format msgid "" "Enter a name for this %s field. Note: If using name value pairs in your " "script, for example: NAME:VALUE, it is important that the name match your " "output field name identically to the script output name or names." msgstr "" #: ../include/global_form.php:283 msgid "Update RRDfile" msgstr "" #: ../include/global_form.php:284 msgid "Whether data from this output field is to be entered into the RRDfile." msgstr "" #: ../include/global_form.php:291 msgid "Regular Expression Match" msgstr "" #: ../include/global_form.php:292 msgid "" "If you want to require a certain regular expression to be matched against " "input data, enter it here (preg_match format)." msgstr "" #: ../include/global_form.php:299 msgid "Allow Empty Input" msgstr "" #: ../include/global_form.php:300 msgid "Check here if you want to allow NULL input in this field from the user." msgstr "" #: ../include/global_form.php:307 msgid "Special Type Code" msgstr "" #: ../include/global_form.php:308 #, php-format msgid "" "If this field should be treated specially by host templates, indicate so " "here. Valid keywords for this field are %s" msgstr "" #: ../include/global_form.php:340 msgid "The name given to this data template." msgstr "Името зададено за този шаблон за данни" #: ../include/global_form.php:371 msgid "" "Choose a name for this data source. It can include replacement variables " "such as |host_description| or |query_fieldName|.\n" " For a complete list of supported replacement tags, please see " "the Cacti documentation." msgstr "" #: ../include/global_form.php:376 msgid "Data Source Path" msgstr "Път до източник на данни" #: ../include/global_form.php:381 #, fuzzy msgid "The full path to the RRDfile." msgstr "ÐŸÑŠÐ»Ð½Ð¸Ñ Ð¿ÑŠÑ‚ до RRD файл." #: ../include/global_form.php:390 msgid "The script/source used to gather data for this data source." msgstr "" "Скриптът/източникът използван за Ñъбиране на данни за този източник на данни." #: ../include/global_form.php:396 ../include/global_form.php:1615 msgid "" "Select the Data Source Profile. The Data Source Profile controls polling " "interval, the data aggregation, and retention policy for the resulting Data " "Sources." msgstr "" #: ../include/global_form.php:402 msgid "Step" msgstr "Стъпка" #: ../include/global_form.php:407 msgid "The amount of time in seconds between expected updates." msgstr "Времето в Ñекунди между очаквани промени." #: ../include/global_form.php:411 #, fuzzy msgid "Data Source Active" msgstr "Път до източник на данни" #: ../include/global_form.php:414 #, fuzzy msgid "Whether Cacti should gather data for this data source or not." msgstr "" "Скриптът/източникът използван за Ñъбиране на данни за този източник на данни." #: ../include/global_form.php:422 msgid "Internal Data Source Name" msgstr "Вътрешно име на източника на данни" #: ../include/global_form.php:427 #, fuzzy msgid "" "Choose unique name to represent this piece of data inside of the RRDfile." msgstr "Изберете уникално име, което да означава тези данни вътре в rrd файла." #: ../include/global_form.php:430 msgid "Minimum Value (\"U\" for No Minimum)" msgstr "" #: ../include/global_form.php:435 msgid "The minimum value of data that is allowed to be collected." msgstr "Минималната ÑтойноÑÑ‚ на данните, което е разрешено да бъде прието." #: ../include/global_form.php:438 msgid "Maximum Value (\"U\" for No Maximum)" msgstr "" #: ../include/global_form.php:443 msgid "The maximum value of data that is allowed to be collected." msgstr "МакÑималната ÑтойноÑÑ‚ на данните, което е разрешено да бъде прието." #: ../include/global_form.php:446 msgid "Data Source Type" msgstr "Вид на източника на данни" #: ../include/global_form.php:450 msgid "How data is represented in the RRA." msgstr "Как данните Ñа предÑтавени вътре в RRA." #: ../include/global_form.php:458 msgid "" "The maximum amount of time that can pass before data is entered as " "'unknown'. (Usually 2x300=600)" msgstr "" #: ../include/global_form.php:464 msgid "Not Selected" msgstr "" #: ../include/global_form.php:465 msgid "" "When data is gathered, the data for this field will be put into this data " "source." msgstr "" #: ../include/global_form.php:474 msgid "" "Enter a name for this GPRINT preset, make sure it is something you recognize." msgstr "" #: ../include/global_form.php:481 msgid "GPRINT Text" msgstr "" #: ../include/global_form.php:482 msgid "Enter the custom GPRINT string here." msgstr "" #: ../include/global_form.php:500 msgid "Common Options" msgstr "" #: ../include/global_form.php:505 msgid "Title (--title)" msgstr "" #: ../include/global_form.php:509 msgid "" "The name that is printed on the graph. It can include replacement variables " "such as |host_description| or |query_fieldName|.\n" "\t\t\tFor a complete list of supported replacement tags, please see the " "Cacti documentation." msgstr "" #: ../include/global_form.php:514 msgid "Vertical Label (--vertical-label)" msgstr "" #: ../include/global_form.php:518 msgid "The label vertically printed to the left of the graph." msgstr "" #: ../include/global_form.php:522 msgid "Image Format (--imgformat)" msgstr "" #: ../include/global_form.php:526 msgid "" "The type of graph that is generated; PNG, GIF or SVG. The selection of " "graph image type is very RRDtool dependent." msgstr "" #: ../include/global_form.php:529 msgid "Height (--height)" msgstr "" #: ../include/global_form.php:533 msgid "" "The height (in pixels) of the graph area within the graph. This area does " "not include the legend, axis legends, or title." msgstr "" #: ../include/global_form.php:537 msgid "Width (--width)" msgstr "" #: ../include/global_form.php:541 msgid "" "The width (in pixels) of the graph area within the graph. This area does not " "include the legend, axis legends, or title." msgstr "" #: ../include/global_form.php:545 msgid "Base Value (--base)" msgstr "" #: ../include/global_form.php:549 msgid "Should be set to 1024 for memory and 1000 for traffic measurements." msgstr "" #: ../include/global_form.php:553 msgid "Slope Mode (--slope-mode)" msgstr "" #: ../include/global_form.php:556 msgid "" "Using Slope Mode evens out the shape of the graphs at the expense of\n" "\t\t\tsome on screen resolution." msgstr "" #: ../include/global_form.php:560 msgid "Scaling Options" msgstr "" #: ../include/global_form.php:565 msgid "Auto Scale" msgstr "" #: ../include/global_form.php:568 msgid "" "Auto scale the y-axis instead of defining an upper and lower limit. Note: if " "this is check both the\n" "\t\t\tUpper and Lower limit will be ignored." msgstr "" #: ../include/global_form.php:573 msgid "Auto Scale Options" msgstr "" #: ../include/global_form.php:576 msgid "" "Use
    \n" "\t\t\t--alt-autoscale to scale to the absolute minimum and maximum
    \n" "\t\t\t--alt-autoscale-max to scale to the maximum value, using a given lower " "limit
    \n" "\t\t\t--alt-autoscale-min to scale to the minimum value, using a given upper " "limit
    \n" "\t\t\t--alt-autoscale (with limits) to scale using both lower and upper " "limits (RRDtool default)
    " msgstr "" #: ../include/global_form.php:584 msgid "Use --alt-autoscale (ignoring given limits)" msgstr "" #: ../include/global_form.php:588 msgid "Use --alt-autoscale-max (accepting a lower limit)" msgstr "" #: ../include/global_form.php:592 msgid "Use --alt-autoscale-min (accepting an upper limit)" msgstr "" #: ../include/global_form.php:596 msgid "Use --alt-autoscale (accepting both limits, RRDtool default)" msgstr "" #: ../include/global_form.php:601 msgid "Logarithmic Scaling (--logarithmic)" msgstr "" #: ../include/global_form.php:605 msgid "Use Logarithmic y-axis scaling" msgstr "" #: ../include/global_form.php:608 msgid "SI Units for Logarithmic Scaling (--units=si)" msgstr "" #: ../include/global_form.php:611 msgid "" "Use SI Units for Logarithmic Scaling instead of using exponential notation." "
    \n" "\t\t\tNote: Linear graphs use SI notation by default." msgstr "" #: ../include/global_form.php:615 msgid "Rigid Boundaries Mode (--rigid)" msgstr "" #: ../include/global_form.php:618 msgid "" "Do not expand the lower and upper limit if the graph contains a value " "outside the valid range." msgstr "" #: ../include/global_form.php:621 msgid "Upper Limit (--upper-limit)" msgstr "" #: ../include/global_form.php:625 msgid "The maximum vertical value for the graph." msgstr "" #: ../include/global_form.php:629 msgid "Lower Limit (--lower-limit)" msgstr "" #: ../include/global_form.php:633 msgid "The minimum vertical value for the graph." msgstr "" #: ../include/global_form.php:637 msgid "Grid Options" msgstr "" #: ../include/global_form.php:642 msgid "Unit Grid Value (--unit/--y-grid)" msgstr "" #: ../include/global_form.php:646 msgid "" "Sets the exponent value on the Y-axis for numbers. Note: This option is\n" "\t\t\tdeprecated and replaced by the --y-grid option. In this option, Y-" "axis grid lines appear\n" "\t\t\tat each grid step interval. Labels are placed every label factor " "lines." msgstr "" #: ../include/global_form.php:652 msgid "Unit Exponent Value (--units-exponent)" msgstr "" #: ../include/global_form.php:656 msgid "" "What unit cacti should use on the Y-axis. Use 3 to display everything in \"k" "\" or -6\n" "\t\t\tto display everything in \"u\" (micro)." msgstr "" #: ../include/global_form.php:661 msgid "Unit Length (--units-length <length>)" msgstr "" #: ../include/global_form.php:666 msgid "" "How many digits should RRDtool assume the y-axis labels to be? You may have " "to use this \n" "\t\t\toption to make enough space once you start fiddling with the y-axis " "labeling." msgstr "" #: ../include/global_form.php:670 msgid "No Gridfit (--no-gridfit)" msgstr "" #: ../include/global_form.php:673 msgid "" "In order to avoid anti-aliasing blurring effects RRDtool snaps points to " "device \n" "\t\t\tresolution pixels, this results in a crisper appearance. If this is " "not to your liking, you can \n" "\t\t\tuse this switch to turn this behavior off.
    Note: Gridfitting is turned off for PDF, EPS, SVG output by default." msgstr "" #: ../include/global_form.php:678 msgid "Alternative Y Grid (--alt-y-grid)" msgstr "" #: ../include/global_form.php:681 msgid "" "The algorithm ensures that you always have a grid, that there are enough but " "not too many grid lines, \n" "\t\t\tand that the grid is metric. This parameter will also ensure that you " "get enough decimals displayed \n" "\t\t\teven if your graph goes from 69.998 to 70.001.
    Note: This parameter may interfere with --alt-autoscale options." msgstr "" #: ../include/global_form.php:686 #, fuzzy msgid "Axis Options" msgstr "ДейÑтвиÑ" #: ../include/global_form.php:691 msgid "Right Axis (--right-axis <scale:shift>)" msgstr "" #: ../include/global_form.php:696 msgid "" "A second axis will be drawn to the right of the graph. It is tied to the " "left axis via the \n" "\t\t\tscale and shift parameters." msgstr "" #: ../include/global_form.php:700 msgid "Right Axis Label (--right-axis-label <string>)" msgstr "" #: ../include/global_form.php:705 msgid "The label for the right axis." msgstr "" #: ../include/global_form.php:708 msgid "Right Axis Format (--right-axis-format <format>)" msgstr "" #: ../include/global_form.php:713 #, php-format msgid "" "By default, the format of the axis labels gets determined automatically. \n" "\t\t\tIf you want to do this yourself, use this option with the same %lf " "arguments you know from the PRINT and GPRINT commands." msgstr "" #: ../include/global_form.php:717 msgid "Right Axis Formatter (--right-axis-formatter <formatname>)" msgstr "" #: ../include/global_form.php:722 msgid "" "When you setup the right axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted " "as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S" "\"). See also --units-length and --right-axis-format. Finally\n" "\t\t\t\"duration\" where values are interpreted as duration in " "milliseconds. Formatting follows the rules of valstrfduration qualified " "PRINT/GPRINT." msgstr "" #: ../include/global_form.php:728 msgid "Left Axis Formatter (--left-axis-formatter <formatname>)" msgstr "" #: ../include/global_form.php:733 msgid "" "When you setup the left axis labeling, apply a rule to the data format. " "Supported formats include \"numeric\" where\n" "\t\t\tdata is treated as numeric, \"timestamp\" where values are interpreted " "as UNIX timestamps (number of seconds since January 1970)\n" "\t\t\tand expressed using strftime format (default is \"%Y-%m-%d %H:%M:%S" "\"). See also --units-length. Finally \"duration\" where values\n" "\t\t\tare interpreted as duration in milliseconds. Formatting follows the " "rules of valstrfduration qualified PRINT/GPRINT." msgstr "" #: ../include/global_form.php:739 msgid "Legend Options" msgstr "" #: ../include/global_form.php:744 msgid "Auto Padding" msgstr "" #: ../include/global_form.php:747 msgid "" "Pad text so that legend and graph data always line up. Note: this could " "cause\n" "\t\t\tgraphs to take longer to render because of the larger overhead. Also " "Auto Padding may not\n" "\t\t\tbe accurate on all types of graphs, consistent labeling usually helps." msgstr "" #: ../include/global_form.php:752 msgid "Dynamic Labels (--dynamic-labels)" msgstr "" #: ../include/global_form.php:755 msgid "Draw line markers as a line." msgstr "" #: ../include/global_form.php:758 msgid "Force Rules Legend (--force-rules-legend)" msgstr "" #: ../include/global_form.php:761 msgid "Force the generation of HRULE and VRULE legends." msgstr "" #: ../include/global_form.php:764 msgid "Tab Width (--tabwidth <pixels>)" msgstr "" #: ../include/global_form.php:769 msgid "By default the tab-width is 40 pixels, use this option to change it." msgstr "" #: ../include/global_form.php:772 msgid "Legend Position (--legend-position=<position>)" msgstr "" #: ../include/global_form.php:776 msgid "Place the legend at the given side of the graph." msgstr "" #: ../include/global_form.php:779 msgid "Legend Direction (--legend-direction=<direction>)" msgstr "" #: ../include/global_form.php:783 msgid "Place the legend items in the given vertical order." msgstr "" #: ../include/global_form.php:790 ../lib/api_aggregate.php:1216 #: ../lib/html.php:857 #, fuzzy msgid "Graph Item Type" msgstr "Графични елементи" #: ../include/global_form.php:794 #, fuzzy msgid "How data for this item is represented visually on the graph." msgstr "Как данните Ñа предÑтавени вътре в RRA." #: ../include/global_form.php:809 msgid "The data source to use for this graph item." msgstr "" #: ../include/global_form.php:816 msgid "The color to use for the legend." msgstr "" #: ../include/global_form.php:819 msgid "Opacity/Alpha Channel" msgstr "" #: ../include/global_form.php:823 msgid "The opacity/alpha channel of the color." msgstr "" #: ../include/global_form.php:826 ../lib/rrd.php:2688 msgid "Consolidation Function" msgstr "" #: ../include/global_form.php:830 #, fuzzy msgid "How data for this item is represented statistically on the graph." msgstr "Как данните Ñа предÑтавени вътре в RRA." #: ../include/global_form.php:833 msgid "CDEF Function" msgstr "" #: ../include/global_form.php:838 msgid "A CDEF (math) function to apply to this item on the graph or legend." msgstr "" #: ../include/global_form.php:841 msgid "VDEF Function" msgstr "" #: ../include/global_form.php:846 msgid "A VDEF (math) function to apply to this item on the graph legend." msgstr "" #: ../include/global_form.php:849 msgid "Shift Data" msgstr "" #: ../include/global_form.php:852 msgid "" "Offset your data on the time axis (x-axis) by the amount specified in the " "'value' field." msgstr "" #: ../include/global_form.php:855 ../lib/rrd.php:2658 ../utilities.php:2338 msgid "Value" msgstr "" #: ../include/global_form.php:860 msgid "" "[HRULE|VRULE]: The value of the graph item.
    \n" "\t\t\t[TICK]: The fraction for the tick line.
    \n" "\t\t\t[SHIFT]: The time offset in seconds." msgstr "" #: ../include/global_form.php:865 msgid "GPRINT Type" msgstr "" #: ../include/global_form.php:869 msgid "" "If this graph item is a GPRINT, you can optionally choose another format\n" "\t\t\there. You can define additional types under \"GPRINT Presets\"." msgstr "" #: ../include/global_form.php:873 msgid "Text Alignment (TEXTALIGN)" msgstr "" #: ../include/global_form.php:878 msgid "" "All subsequent legend line(s) will be aligned as given here. You may use " "this command multiple times in a single graph.\n" "\t\t\tThis command does not produce tabular layout.
    Note: You may want to insert a <HR> on the preceding graph item.
    \n" "\t\t\tNote: A <HR> on this legend line will obsolete " "this setting!" msgstr "" #: ../include/global_form.php:883 msgid "Text Format" msgstr "" #: ../include/global_form.php:888 msgid "Text that will be displayed on the legend for this graph item." msgstr "" #: ../include/global_form.php:891 msgid "Insert Hard Return" msgstr "" #: ../include/global_form.php:894 msgid "Forces the legend to the next line after this item." msgstr "" #: ../include/global_form.php:897 msgid "Line Width (decimal)" msgstr "" #: ../include/global_form.php:902 msgid "" "In case LINE was chosen, specify width of line here. You must include a " "decimal precision, for example 2.00" msgstr "" #: ../include/global_form.php:905 msgid "Dashes (dashes[=on_s[,off_s[,on_s,off_s]...]])" msgstr "" #: ../include/global_form.php:910 msgid "The dashes modifier enables dashed line style." msgstr "" #: ../include/global_form.php:913 msgid "Dash Offset (dash-offset=offset)" msgstr "" #: ../include/global_form.php:918 msgid "" "The dash-offset parameter specifies an offset into the pattern at which the " "stroke begins." msgstr "" #: ../include/global_form.php:931 #, fuzzy msgid "The name given to this graph template." msgstr "Името зададено за този шаблон за данни" #: ../include/global_form.php:938 msgid "Multiple Instances" msgstr "" #: ../include/global_form.php:939 msgid "" "Check this checkbox if there can be more than one Graph of this type per " "Device." msgstr "" #: ../include/global_form.php:963 msgid "" "Enter a name for this graph item input, make sure it is something you " "recognize." msgstr "" #: ../include/global_form.php:971 msgid "" "Enter a description for this graph item input to describe what this input is " "used for." msgstr "" #: ../include/global_form.php:978 msgid "Field Type" msgstr "" #: ../include/global_form.php:979 #, fuzzy msgid "How data is to be represented on the graph." msgstr "Как данните Ñа предÑтавени вътре в RRA." #: ../include/global_form.php:1002 msgid "General Device Options" msgstr "" #: ../include/global_form.php:1007 msgid "Give this host a meaningful description." msgstr "" #: ../include/global_form.php:1014 ../include/global_form.php:1639 msgid "Fully qualified hostname or IP address for this device." msgstr "" #: ../include/global_form.php:1021 msgid "Poller Association" msgstr "" #: ../include/global_form.php:1029 msgid "Device Site Association" msgstr "" #: ../include/global_form.php:1030 msgid "What Site is this Device associated with." msgstr "" #: ../include/global_form.php:1039 msgid "" "Choose the Device Template to use to define the default Graph Templates and " "Data Queries associated with this Device." msgstr "" #: ../include/global_form.php:1046 msgid "Number of Collection Threads" msgstr "" #: ../include/global_form.php:1047 msgid "" "The number of concurrent threads to use for polling this device. This " "applies to the Spine poller only." msgstr "" #: ../include/global_form.php:1054 msgid "Disable Device" msgstr "" #: ../include/global_form.php:1055 msgid "Check this box to disable all checks for this host." msgstr "" #: ../include/global_form.php:1068 ../include/global_form.php:1668 #, fuzzy msgid "Choose the SNMP version for this device." msgstr "Изберете име за този източник на данни." #: ../include/global_form.php:1076 ../include/global_form.php:1676 msgid "SNMP Community" msgstr "SNMP ОбщноÑÑ‚" #: ../include/global_form.php:1077 ../include/global_form.php:1677 msgid "SNMP read community for this device." msgstr "" #: ../include/global_form.php:1096 msgid "SNMP v3 authentication pass phrase for this device." msgstr "" #: ../include/global_form.php:1105 msgid "Choose the SNMPv3 authentication protocol." msgstr "" #: ../include/global_form.php:1113 msgid "Choose the SNMPv3 privacy passphrase." msgstr "" #: ../include/global_form.php:1122 msgid "Choose the SNMPv3 privacy protocol." msgstr "" #: ../include/global_form.php:1129 msgid "SNMP Context (v3)" msgstr "" #: ../include/global_form.php:1130 msgid "Enter the SNMP v3 context to use for this device." msgstr "" #: ../include/global_form.php:1138 msgid "SNMP Engine ID (v3)" msgstr "" #: ../include/global_form.php:1139 msgid "" "Enter the SNMP v3 Engine Id to use for this device. Leave this field empty " "to use the SNMP Engine ID being defined per SNMPv3 Notification receiver." msgstr "" #: ../include/global_form.php:1148 msgid "Enter the UDP port number to use for SNMP (default is 161)." msgstr "Въведете UDP порт номер който да Ñе използва за SNMP (Ñтандартно 161)" #: ../include/global_form.php:1165 msgid "Maximum OIDs Per Get Request" msgstr "" #: ../include/global_form.php:1174 msgid "Availability/Reachability Options" msgstr "" #: ../include/global_form.php:1178 ../include/global_settings.php:547 msgid "Downed Device Detection" msgstr "" #: ../include/global_form.php:1179 ../include/global_settings.php:548 msgid "" "The method Cacti will use to determine if a host is available for polling. " "
    NOTE: It is recommended that, at a minimum, SNMP always be selected." msgstr "" #: ../include/global_form.php:1188 msgid "" "The type of ping packet to sent.
    NOTE: ICMP on Linux/UNIX requires " "root privileges." msgstr "" #: ../include/global_form.php:1225 ../include/global_form.php:1763 msgid "Additional Options" msgstr "" #: ../include/global_form.php:1229 ../include/global_form.php:1768 #: ../pollers.php:70 msgid "Notes" msgstr "" #: ../include/global_form.php:1230 ../include/global_form.php:1769 msgid "Enter notes to this host." msgstr "" #: ../include/global_form.php:1237 msgid "External ID" msgstr "" #: ../include/global_form.php:1238 msgid "External ID for linking Cacti data to external monitoring systems." msgstr "" #: ../include/global_form.php:1260 #, fuzzy msgid "A useful name for this host template." msgstr "Името зададено за този шаблон за данни" #: ../include/global_form.php:1280 #, fuzzy msgid "A name for this data query." msgstr "Изберете име за този източник на данни." #: ../include/global_form.php:1288 msgid "A description for this data query." msgstr "" #: ../include/global_form.php:1295 msgid "XML Path" msgstr "" #: ../include/global_form.php:1296 msgid "" "The full path to the XML file containing definitions for this data query." msgstr "" #: ../include/global_form.php:1305 msgid "" "Choose the input method for this Data Query. This input method defines how " "data is collected for each Device associated with the Data Query." msgstr "" #: ../include/global_form.php:1324 msgid "" "Choose the Graph Template to use for this Data Query Graph Template item." msgstr "" #: ../include/global_form.php:1350 #, fuzzy msgid "A name for this associated graph." msgstr "Изберете име за този източник на данни." #: ../include/global_form.php:1378 #, fuzzy msgid "A useful name for this graph tree." msgstr "Изберете име за този източник на данни." #: ../include/global_form.php:1385 ../include/global_form.php:2281 #: ../lib/api_automation.php:1334 ../tree.php:1279 msgid "Sorting Type" msgstr "" #: ../include/global_form.php:1386 ../include/global_form.php:2282 msgid "Choose how items in this tree will be sorted." msgstr "" #: ../include/global_form.php:1392 msgid "Publish" msgstr "" #: ../include/global_form.php:1393 msgid "Should this Tree be published for users to access?" msgstr "" #: ../include/global_form.php:1428 msgid "An Email Address where the User can be reached." msgstr "" #: ../include/global_form.php:1436 msgid "" "Enter the password for this user twice. Remember that passwords are case " "sensitive!" msgstr "" #: ../include/global_form.php:1444 ../user_group_admin.php:88 msgid "Determines if user is able to login." msgstr "" #: ../include/global_form.php:1450 ../tree.php:1561 msgid "Locked" msgstr "" #: ../include/global_form.php:1451 msgid "Determines if the user account is locked." msgstr "" #: ../include/global_form.php:1456 #, fuzzy msgid "Account Options" msgstr "ДейÑтвиÑ" #: ../include/global_form.php:1458 msgid "Set any user account specific options here." msgstr "" #: ../include/global_form.php:1462 msgid "Must Change Password at Next Login" msgstr "" #: ../include/global_form.php:1474 msgid "Maintain Custom Graph and User Settings" msgstr "" #: ../include/global_form.php:1481 #, fuzzy msgid "Graph Options" msgstr "Графични елементи" #: ../include/global_form.php:1483 msgid "Set any graph specific options here." msgstr "" #: ../include/global_form.php:1487 msgid "User Has Rights to Tree View" msgstr "" #: ../include/global_form.php:1493 msgid "User Has Rights to List View" msgstr "" #: ../include/global_form.php:1499 msgid "User Has Rights to Preview View" msgstr "" #: ../include/global_form.php:1506 ../user_group_admin.php:130 msgid "Login Options" msgstr "" #: ../include/global_form.php:1509 msgid "What to do when this user logs in." msgstr "" #: ../include/global_form.php:1514 msgid "Show the page that user pointed their browser to." msgstr "" #: ../include/global_form.php:1518 msgid "Show the default console screen." msgstr "" #: ../include/global_form.php:1522 msgid "Show the default graph screen." msgstr "" #: ../include/global_form.php:1528 ../utilities.php:765 msgid "Authentication Realm" msgstr "" #: ../include/global_form.php:1529 msgid "" "Only used if you have LDAP or Web Basic Authentication enabled. Changing " "this to a non-enabled realm will effectively disable the user." msgstr "" #: ../include/global_form.php:1566 #, fuzzy msgid "Discovery Rules" msgstr "УÑтройÑтва" #: ../include/global_form.php:1584 #, fuzzy msgid "Import Template from Local File" msgstr "Импортиране на шаблони" #: ../include/global_form.php:1585 msgid "" "If the XML file containing template data is located on your local machine, " "select it here." msgstr "" #: ../include/global_form.php:1590 #, fuzzy msgid "Import Template from Text" msgstr "Импортиране на шаблони" #: ../include/global_form.php:1591 msgid "" "If you have the XML file containing template data as text, you can paste it " "into this box to import it." msgstr "" #: ../include/global_form.php:1599 msgid "Preview Import Only" msgstr "" #: ../include/global_form.php:1601 msgid "" "If checked, Cacti will not import the template, but rather compare the " "imported Template to the existing Template data. If you are acceptable of " "the change, you can them import." msgstr "" #: ../include/global_form.php:1606 msgid "Remove Orphaned Graph Items" msgstr "" #: ../include/global_form.php:1608 msgid "" "If checked, Cacti will delete any Graph Items from both the Graph Template " "and associated Graphs that are not included in the imported Graph Template." msgstr "" #: ../include/global_form.php:1625 msgid "General SNMP Entity Options" msgstr "" #: ../include/global_form.php:1631 msgid "Give this SNMP entity a meaningful description." msgstr "" #: ../include/global_form.php:1646 msgid "Disable SNMP Notification Receiver" msgstr "" #: ../include/global_form.php:1647 msgid "" "Check this box if you temporary do not want to send SNMP notifications to " "this host." msgstr "" #: ../include/global_form.php:1654 #, fuzzy msgid "Maximum Log Size" msgstr "МакÑимална ÑтойноÑÑ‚" #: ../include/global_form.php:1655 msgid "" "Maximum number of day's notification log entries for this receiver need to " "be stored." msgstr "" #: ../include/global_form.php:1695 msgid "SNMP Auth Password (v3)" msgstr "" #: ../include/global_form.php:1696 msgid "SNMP v3 user password for this device." msgstr "" #: ../include/global_form.php:1705 msgid "" "Choose the SNMPv3 Authorization Protocol.
    Note: SHA authentication " "support is only available if you have OpenSSL installed." msgstr "" #: ../include/global_form.php:1712 msgid "SNMP Privacy Password (v3)" msgstr "" #: ../include/global_form.php:1722 msgid "" "Choose the SNMPv3 Privacy Protocol.
    Note: DES/AES encryption support is " "only available if you have OpenSSL installed." msgstr "" #: ../include/global_form.php:1728 msgid "SNMP Engine ID" msgstr "" #: ../include/global_form.php:1729 msgid "" "Defines the unique SNMP Engine ID to identify this peer. Following format " "will be recommended:
    FlexibleLength+Enterprise(8000) + IANA-Cacti(5d75) + " "MAC-Following(03) + YOUR-MAC-ADDRESS(e.g.:D89D67287B00).
    Per default the " "locally administrated MAC 02-FF-FF-FF-FF-FF will be used." msgstr "" #: ../include/global_form.php:1738 #, fuzzy msgid "The UDP port to be used for SNMP traps. Typically, 162." msgstr "Въведете UDP порт номер който да Ñе използва за SNMP (Ñтандартно 161)" #: ../include/global_form.php:1754 msgid "SNMP Message Type" msgstr "" #: ../include/global_form.php:1755 msgid "" "SNMP traps are always unacknowledged. To send out acknowledged SNMP " "notifications, formally called \"INFORMS\", SNMPv2 or above will be required." msgstr "" #: ../include/global_form.php:1787 ../include/global_form.php:2046 #: ../links.php:379 msgid "Title" msgstr "" #: ../include/global_form.php:1788 msgid "The new Title of the aggregated Graph." msgstr "" #: ../include/global_form.php:1795 ../include/global_form.php:1878 #: ../include/global_form.php:1980 msgid "Prefix" msgstr "" #: ../include/global_form.php:1796 msgid "A Prefix for all GPRINT lines to distinguish e.g. different hosts." msgstr "" #: ../include/global_form.php:1804 ../include/global_form.php:1887 #: ../include/global_form.php:1989 msgid "" "Use this Option to create e.g. STACKed graphs.
    AREA/STACK: 1st graph " "keeps AREA/STACK items, others convert to STACK
    LINE1: all items convert " "to LINE1 items
    LINE2: all items convert to LINE2 items
    LINE3: all " "items convert to LINE3 items" msgstr "" #: ../include/global_form.php:1815 ../include/global_form.php:1898 #: ../include/global_form.php:2000 msgid "Totaling" msgstr "" #: ../include/global_form.php:1816 ../include/global_form.php:1899 #: ../include/global_form.php:2001 msgid "" "Please check those Items that shall be totaled in the \"Total\" column, when " "selecting any totaling option here." msgstr "" #: ../include/global_form.php:1823 ../include/global_form.php:1907 #: ../include/global_form.php:2009 msgid "Total Type" msgstr "" #: ../include/global_form.php:1824 ../include/global_form.php:1908 #: ../include/global_form.php:2010 msgid "Which type of totaling shall be performed." msgstr "" #: ../include/global_form.php:1831 ../include/global_form.php:1916 #: ../include/global_form.php:2018 msgid "Prefix for GPRINT Totals" msgstr "" #: ../include/global_form.php:1832 ../include/global_form.php:1917 #: ../include/global_form.php:2019 msgid "A Prefix for all totaling GPRINT lines." msgstr "" #: ../include/global_form.php:1839 ../include/global_form.php:1924 #: ../include/global_form.php:2026 msgid "Reorder Type" msgstr "" #: ../include/global_form.php:1840 ../include/global_form.php:1925 #: ../include/global_form.php:2027 msgid "Reordering of Graphs." msgstr "" #: ../include/global_form.php:1860 msgid "Please name this Aggregate Graph." msgstr "" #: ../include/global_form.php:1867 msgid "Propagation Enabled" msgstr "" #: ../include/global_form.php:1868 msgid "Is this to carry the template?" msgstr "" #: ../include/global_form.php:1874 #, fuzzy msgid "Aggregate Graph Settings" msgstr "Редактирай (ÐаÑтройки на графики)" #: ../include/global_form.php:1879 ../include/global_form.php:1981 msgid "" "A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may " "use both Host as well as Data Query replacement variables in this prefix." msgstr "" #: ../include/global_form.php:1959 #, fuzzy msgid "Aggregate Template Name" msgstr "Шаблони за елементи на графиката" #: ../include/global_form.php:1960 #, fuzzy msgid "Please name this Aggregate Template." msgstr "Името зададено за този шаблон за данни" #: ../include/global_form.php:1967 #, fuzzy msgid "Source Graph Template" msgstr "Шаблони за графики" #: ../include/global_form.php:1968 msgid "The Graph Template that this Aggregate Template is based upon." msgstr "" #: ../include/global_form.php:1976 msgid "Aggregate Template Settings" msgstr "" #: ../include/global_form.php:2050 #, fuzzy msgid "The name of this Color Template." msgstr "Името зададено за този шаблон за данни" #: ../include/global_form.php:2061 msgid "A nice Color" msgstr "" #: ../include/global_form.php:2071 #, fuzzy msgid "A useful name for this Template." msgstr "Името зададено за този шаблон за данни" #: ../include/global_form.php:2085 ../include/global_form.php:2127 #: ../lib/api_automation.php:1208 ../lib/api_automation.php:1270 msgid "Operation" msgstr "" #: ../include/global_form.php:2086 ../include/global_form.php:2128 msgid "Logical operation to combine rules." msgstr "" #: ../include/global_form.php:2094 ../include/global_form.php:2136 msgid "The Field Name that shall be used for this Rule Item." msgstr "" #: ../include/global_form.php:2102 ../include/global_form.php:2144 msgid "Operator." msgstr "" #: ../include/global_form.php:2109 ../include/global_form.php:2151 #: ../include/global_form.php:2297 msgid "Matching Pattern" msgstr "" #: ../include/global_form.php:2110 ../include/global_form.php:2152 msgid "The Pattern to be matched against." msgstr "" #: ../include/global_form.php:2118 ../include/global_form.php:2160 #: ../include/global_form.php:2314 msgid "Sequence." msgstr "" #: ../include/global_form.php:2169 ../include/global_form.php:2216 #, fuzzy msgid "A useful name for this Rule." msgstr "Изберете име за този източник на данни." #: ../include/global_form.php:2177 msgid "Choose a Data Query to apply to this rule." msgstr "" #: ../include/global_form.php:2188 msgid "Choose any of the available Graph Types to apply to this rule." msgstr "" #: ../include/global_form.php:2203 ../include/global_form.php:2261 msgid "Enable Rule" msgstr "" #: ../include/global_form.php:2204 ../include/global_form.php:2262 msgid "Check this box to enable this rule." msgstr "" #: ../include/global_form.php:2224 #, fuzzy msgid "Choose a Tree for the new Tree Items." msgstr "Изберете име за този източник на данни." #: ../include/global_form.php:2231 msgid "Leaf Item Type" msgstr "" #: ../include/global_form.php:2232 msgid "The Item Type that shall be dynamically added to the tree." msgstr "" #: ../include/global_form.php:2239 msgid "Graph Grouping Style" msgstr "" #: ../include/global_form.php:2240 msgid "" "Choose how graphs are grouped when drawn for this particular host on the " "tree." msgstr "" #: ../include/global_form.php:2250 msgid "Optional: Sub-Tree Item" msgstr "" #: ../include/global_form.php:2251 msgid "" "Choose a Sub-Tree Item to hook in.
    Make sure, that it is still there when " "this rule is executed!" msgstr "" #: ../include/global_form.php:2272 msgid "Header Type" msgstr "" #: ../include/global_form.php:2273 msgid "Choose an Object to build a new Sub-header." msgstr "" #: ../include/global_form.php:2289 msgid "Propagate Changes" msgstr "" #: ../include/global_form.php:2290 msgid "" "Propagate all options on this form (except for 'Title') to all child " "'Header' items." msgstr "" #: ../include/global_form.php:2298 msgid "" "The String Pattern (Regular Expression) to match against.
    Enclosing '/' " "must NOT be provided!" msgstr "" #: ../include/global_form.php:2305 msgid "Replacement Pattern" msgstr "" #: ../include/global_form.php:2306 msgid "" "The Replacement String Pattern for use as a Tree Header.
    Refer to a Match " "by e.g. \\${1} for the first match!" msgstr "" #: ../include/global_languages.php:592 msgid " T" msgstr "" #: ../include/global_languages.php:594 msgid " G" msgstr "" #: ../include/global_languages.php:596 msgid " M" msgstr "" #: ../include/global_languages.php:598 msgid " K" msgstr "" #: ../include/global_session.php:91 ../lib/html_filter.php:66 msgid "Enter a search term" msgstr "" #: ../include/global_session.php:92 msgid "Enter a regular expression" msgstr "" #: ../include/global_settings.php:38 ../include/global_settings.php:836 #: ../include/global_settings.php:940 ../include/global_settings.php:1565 #: ../managers.php:39 ../user_admin.php:1921 ../user_group_admin.php:1642 msgid "General" msgstr "" #: ../include/global_settings.php:39 msgid "Paths" msgstr "" #: ../include/global_settings.php:40 #, fuzzy msgid "Device Defaults" msgstr "УÑтройÑтва" #: ../include/global_settings.php:41 ../include/global_settings.php:449 #, fuzzy msgid "Poller" msgstr "Събиращи Ñкриптове" #: ../include/global_settings.php:42 #, fuzzy msgid "Data Storage" msgstr "Източници на данни" #: ../include/global_settings.php:43 msgid "Visual" msgstr "" #: ../include/global_settings.php:44 ../lib/functions.php:3800 #: ../lib/functions.php:3805 msgid "Authentication" msgstr "" #: ../include/global_settings.php:45 #, fuzzy msgid "Data Source Statistics" msgstr "Път до източник на данни" #: ../include/global_settings.php:46 msgid "Performance" msgstr "" #: ../include/global_settings.php:47 msgid "Spikes" msgstr "" #: ../include/global_settings.php:48 msgid "Mail/Reporting/DNS" msgstr "" #: ../include/global_settings.php:52 msgid "Time Spanning/Shifting" msgstr "" #: ../include/global_settings.php:53 #, fuzzy msgid "Graph Thumbnail Settings" msgstr "Редактирай (ÐаÑтройки на графики)" #: ../include/global_settings.php:54 #, fuzzy msgid "Tree Settings" msgstr "ÐаÑтойки" #: ../include/global_settings.php:55 #, fuzzy msgid "Graph Fonts" msgstr "Графични елементи" #: ../include/global_settings.php:85 msgid "Required Tool Paths" msgstr "" #: ../include/global_settings.php:90 msgid "snmpwalk Binary Path" msgstr "" #: ../include/global_settings.php:91 msgid "The path to your snmpwalk binary." msgstr "" #: ../include/global_settings.php:96 msgid "snmpget Binary Path" msgstr "" #: ../include/global_settings.php:97 msgid "The path to your snmpget binary." msgstr "" #: ../include/global_settings.php:102 msgid "snmpbulkwalk Binary Path" msgstr "" #: ../include/global_settings.php:103 msgid "The path to your snmpbulkwalk binary." msgstr "" #: ../include/global_settings.php:108 msgid "snmpgetnext Binary Path" msgstr "" #: ../include/global_settings.php:109 msgid "The path to your snmpgetnext binary." msgstr "" #: ../include/global_settings.php:114 msgid "snmptrap Binary Path" msgstr "" #: ../include/global_settings.php:115 msgid "The path to your snmptrap binary." msgstr "" #: ../include/global_settings.php:120 msgid "RRDtool Binary Path" msgstr "" #: ../include/global_settings.php:121 #, fuzzy msgid "The path to the rrdtool binary." msgstr "ÐŸÑŠÐ»Ð½Ð¸Ñ Ð¿ÑŠÑ‚ до RRD файл." #: ../include/global_settings.php:126 msgid "PHP Binary Path" msgstr "" #: ../include/global_settings.php:127 msgid "" "The path to your PHP binary file (may require a php recompile to get this " "file)." msgstr "" #: ../include/global_settings.php:132 msgid "Logging" msgstr "" #: ../include/global_settings.php:137 #, fuzzy msgid "Cacti Log Path" msgstr "Път до източник на данни" #: ../include/global_settings.php:138 msgid "" "The path to your Cacti log file (if blank, defaults to /log/" "cacti.log)" msgstr "" #: ../include/global_settings.php:144 msgid "Rotate the Cacti Log Nightly" msgstr "" #: ../include/global_settings.php:145 msgid "This will rotate the Cacti Log every night at midnight." msgstr "" #: ../include/global_settings.php:150 msgid "Log Retention" msgstr "" #: ../include/global_settings.php:151 msgid "" "The number of days to retain old logs. Use 0 to never remove any logs. " "(0-365)" msgstr "" #: ../include/global_settings.php:157 #, fuzzy msgid "Alternate Poller Path" msgstr "ЗачиÑтване на кеша на ÑÑŠÐ±Ð¸Ñ€Ð°Ñ‰Ð¸Ñ Ñкрипт" #: ../include/global_settings.php:162 msgid "Spine Binary File Location" msgstr "" #: ../include/global_settings.php:163 msgid "The path to Spine binary." msgstr "" #: ../include/global_settings.php:168 msgid "Spine Config File Path" msgstr "" #: ../include/global_settings.php:169 msgid "" "The path to Spine configuration file. By default, in the cwd of spine, or /" "etc if not specified." msgstr "" #: ../include/global_settings.php:174 ../lib/functions.php:2238 #: ../rrdcleaner.php:296 msgid "RRD Cleaner" msgstr "" #: ../include/global_settings.php:179 msgid "RRDfile Auto Clean" msgstr "" #: ../include/global_settings.php:180 msgid "" "Automatically Delete, Archive, or Delete RRDfiles when removed from Cacti" msgstr "" #: ../include/global_settings.php:185 msgid "RRDfile Auto Clean Method" msgstr "" #: ../include/global_settings.php:186 msgid "The method used to Clean RRDfiles from Cacti after their deletion." msgstr "" #: ../include/global_settings.php:192 msgid "Archive directory" msgstr "" #: ../include/global_settings.php:193 msgid "" "This is the directory where RRDfiles are moved for " "Archive" msgstr "" #: ../include/global_settings.php:201 msgid "Event Logging" msgstr "" #: ../include/global_settings.php:206 msgid "Log Destination" msgstr "" #: ../include/global_settings.php:207 msgid "How will Cacti handle event logging." msgstr "" #: ../include/global_settings.php:213 msgid "Web Events" msgstr "" #: ../include/global_settings.php:214 msgid "What Cacti website messages should be placed in the log." msgstr "" #: ../include/global_settings.php:219 msgid "SNMP Messages" msgstr "" #: ../include/global_settings.php:223 #, fuzzy msgid "Graph Syntax" msgstr "Графични елементи" #: ../include/global_settings.php:227 #, fuzzy msgid "Developer Mode" msgstr "Общ изглед" #: ../include/global_settings.php:233 #, fuzzy msgid "Log Settings" msgstr "ÐаÑтойки" #: ../include/global_settings.php:238 msgid "Generic Log Level" msgstr "" #: ../include/global_settings.php:239 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: ../include/global_settings.php:245 msgid "Selective File Debug" msgstr "" #: ../include/global_settings.php:246 msgid "" "Select which files you wish to place in Debug mode regardless of the Generic " "Log Level setting. Any files selected will be treated as they are in Debug " "mode." msgstr "" #: ../include/global_settings.php:252 msgid "Selective Plugin Debug" msgstr "" #: ../include/global_settings.php:253 msgid "" "Select which Plugins you wish to place in Debug mode regardless of the " "Generic Log Level setting. Any files used by this plugin will be treated as " "they are in Debug mode." msgstr "" #: ../include/global_settings.php:259 msgid "Selective Device Debug" msgstr "" #: ../include/global_settings.php:260 msgid "" "A comma delimited list of Device ID's that you wish to be in Debug mode " "during data collection. This Debug level is only in place during the Cacti " "polling process." msgstr "" #: ../include/global_settings.php:267 msgid "Poller Syslog/Eventlog Selection" msgstr "" #: ../include/global_settings.php:268 msgid "" "If you are using the Syslog/Eventlog, What Cacti poller messages should be " "placed in the Syslog/Eventlog." msgstr "" #: ../include/global_settings.php:273 msgid "Statistics" msgstr "" #: ../include/global_settings.php:277 ../lib/clog_webapi.php:333 #: ../utilities.php:1002 msgid "Warnings" msgstr "" #: ../include/global_settings.php:281 ../lib/clog_webapi.php:334 #: ../utilities.php:1003 msgid "Errors" msgstr "" #: ../include/global_settings.php:287 msgid "Other Defaults" msgstr "" #: ../include/global_settings.php:292 msgid "Has Graphs/Data Sources Checked" msgstr "" #: ../include/global_settings.php:293 msgid "Should the Has Graphs and Has Data Sources be Checked by Default." msgstr "" #: ../include/global_settings.php:298 #, fuzzy msgid "Graph Template Image Format" msgstr "Шаблони за елементи на графиката" #: ../include/global_settings.php:299 msgid "The default Image Format to be used for all new Graph Templates." msgstr "" #: ../include/global_settings.php:305 #, fuzzy msgid "Graph Template Height" msgstr "Шаблони за елементи на графиката" #: ../include/global_settings.php:306 ../include/global_settings.php:314 msgid "The default Graph Width to be used for all new Graph Templates." msgstr "" #: ../include/global_settings.php:313 #, fuzzy msgid "Graph Template Width" msgstr "Шаблони за елементи на графиката" #: ../include/global_settings.php:321 msgid "Language Support" msgstr "" #: ../include/global_settings.php:322 msgid "" "Choose 'enabled' to allow the localization of Cacti. The strict mode " "requires that the requested language will also be supported by all plugins " "being installed at your system. If that's not the fact everything will be " "displayed in English." msgstr "" #: ../include/global_settings.php:328 msgid "Language" msgstr "" #: ../include/global_settings.php:329 msgid "Default language for this system." msgstr "" #: ../include/global_settings.php:335 msgid "Auto Language Detection" msgstr "" #: ../include/global_settings.php:336 msgid "" "Allow to automatically determine the 'default' language of the user and " "provide it at login time if that language is supported by Cacti. If " "disabled, the default language will be in force until the user elects " "another language." msgstr "" #: ../include/global_settings.php:342 ../include/global_settings.php:1819 msgid "Date Display Format" msgstr "" #: ../include/global_settings.php:343 msgid "The System default date format to use in Cacti." msgstr "" #: ../include/global_settings.php:349 ../include/global_settings.php:1826 msgid "Date Separator" msgstr "" #: ../include/global_settings.php:350 msgid "The System default date separator to be used in Cacti." msgstr "" #: ../include/global_settings.php:356 #, fuzzy msgid "Other Settings" msgstr "ÐаÑтойки" #: ../include/global_settings.php:361 ../utilities.php:258 msgid "RRDtool Version" msgstr "" #: ../include/global_settings.php:362 msgid "The version of RRDtool that you have installed." msgstr "" #: ../include/global_settings.php:368 #, fuzzy msgid "Graph Permission Method" msgstr "Редактирай (Права за графики)" #: ../include/global_settings.php:369 msgid "" "There are two methods for determining a User's Graph Permissions. The first " "is 'Permissive'. Under the 'Permissive' setting, a User only needs access " "to either the Graph, Device or Graph Template to gain access to the Graphs " "that apply to them. Under 'Restrictive', the User must have access to the " "Graph, the Device, and the Graph Template to gain access to the Graph." msgstr "" #: ../include/global_settings.php:376 #, fuzzy msgid "Graph/Data Source Creation Method" msgstr "Път до източник на данни" #: ../include/global_settings.php:377 msgid "" "If set to Simple, Graphs and Data Sources can only be created from New " "Graphs. If Advanced, legacy Graph and Data Source creation is supported." msgstr "" #: ../include/global_settings.php:382 msgid "Show Form/Setting Help Inline" msgstr "" #: ../include/global_settings.php:383 msgid "" "When checked, Form and Setting Help will be show inline. Otherwise it will " "be presented when hovering over the help button." msgstr "" #: ../include/global_settings.php:388 msgid "Deletion Verification" msgstr "" #: ../include/global_settings.php:389 msgid "Prompt user before item deletion." msgstr "" #: ../include/global_settings.php:394 msgid "Hide Cacti Console" msgstr "" #: ../include/global_settings.php:395 msgid "" "For use with Cacti's External Link Support. Using this setting, you can " "replace the Cacti Console with your own page." msgstr "" #: ../include/global_settings.php:401 msgid "Enable Drag-N-Drop" msgstr "" #: ../include/global_settings.php:402 msgid "" "Some of Cacti's interfaces support Drag-N-Drop. If checked this option will " "be enabled. Note: For visually impaired user, this option may be disabled." msgstr "" #: ../include/global_settings.php:407 msgid "Force Connections over HTTPS" msgstr "" #: ../include/global_settings.php:408 msgid "" "When checked, any attempts to access Cacti will be redirected to HTTPS to " "insure high security." msgstr "" #: ../include/global_settings.php:419 msgid "Enable Automatic Graph Creation" msgstr "" #: ../include/global_settings.php:420 msgid "" "When disabled, Cacti Automation will not actively create any Graph.This is " "useful when adjusting Host settings so as to avoid creating new Graphs each " "time you save an object. Invoking Automation Rules manually will still be " "possible." msgstr "" #: ../include/global_settings.php:427 msgid "Enable Automatic Tree Item Creation" msgstr "" #: ../include/global_settings.php:428 msgid "" "When disabled, Cacti Automation will not actively create any Tree Item.This " "is useful when adjusting Host or Graph settings so as to avoid creating new " "Tree Entries each time you save an object. Invoking Rules manually will " "still be possible." msgstr "" #: ../include/global_settings.php:436 #, fuzzy msgid "General Defaults" msgstr "УÑтройÑтва" #: ../include/global_settings.php:442 msgid "The default Site for all new Devices." msgstr "" #: ../include/global_settings.php:450 msgid "The default Poller for all new Devices." msgstr "" #: ../include/global_settings.php:457 msgid "Re-index Method for Data Queries" msgstr "" #: ../include/global_settings.php:458 msgid "The default Re-index Method to use for all Data Queries." msgstr "" #: ../include/global_settings.php:464 #, fuzzy msgid "SNMP Defaults" msgstr "SNMP изтекло време" #: ../include/global_settings.php:470 msgid "Default SNMP version for all new hosts." msgstr "" #: ../include/global_settings.php:477 msgid "Default SNMP read community for all new hosts." msgstr "" #: ../include/global_settings.php:483 #, fuzzy msgid "Username (v3)" msgstr "Потребител" #: ../include/global_settings.php:484 msgid "The SNMP v3 Username for polling hosts." msgstr "" #: ../include/global_settings.php:490 #, fuzzy msgid "Password (v3)" msgstr "Парола" #: ../include/global_settings.php:491 msgid "The SNMP v3 Password for polling hosts." msgstr "" #: ../include/global_settings.php:498 msgid "Auth Protocol (v3)" msgstr "" #: ../include/global_settings.php:505 msgid "Privacy Passphrase (v3)" msgstr "" #: ../include/global_settings.php:512 msgid "Privacy Protocol (v3)" msgstr "" #: ../include/global_settings.php:519 msgid "Default SNMP timeout in milli-seconds." msgstr "" #: ../include/global_settings.php:526 msgid "Port Number" msgstr "" #: ../include/global_settings.php:527 #, fuzzy msgid "Default UDP port to be used for SNMP Calls. Typically, 161." msgstr "Въведете UDP порт номер който да Ñе използва за SNMP (Ñтандартно 161)" #: ../include/global_settings.php:535 msgid "" "The number of times the SNMP poller will attempt to reach the host before " "failing." msgstr "" #: ../include/global_settings.php:542 msgid "Availability/Reachability" msgstr "" #: ../include/global_settings.php:554 msgid "Ping Type" msgstr "" #: ../include/global_settings.php:555 msgid "" "The type of ping packet to send.
    NOTE: ICMP requires that the Cacti " "Service ID have root privileges in UNIX/Linux." msgstr "" #: ../include/global_settings.php:562 msgid "" "When choosing either TCP or UDP Ping, which port should be checked for " "availability of the host prior to polling." msgstr "" #: ../include/global_settings.php:578 msgid "The number of times Cacti will attempt to ping a host before failing." msgstr "" #: ../include/global_settings.php:585 #, fuzzy msgid "Up/Down Settings" msgstr "ÐаÑтойки" #: ../include/global_settings.php:590 msgid "Failure Count" msgstr "" #: ../include/global_settings.php:591 msgid "" "The number of polling intervals a host must be down before logging an error " "and reporting host as down." msgstr "" #: ../include/global_settings.php:598 msgid "Recovery Count" msgstr "" #: ../include/global_settings.php:599 msgid "" "The number of polling intervals a host must remain up before returning host " "to an up status and issuing a notice." msgstr "" #: ../include/global_settings.php:608 #, fuzzy msgid "Theme Settings" msgstr "ÐаÑтойки" #: ../include/global_settings.php:613 ../include/global_settings.php:764 #: ../include/global_settings.php:1792 msgid "Theme" msgstr "" #: ../include/global_settings.php:614 ../include/global_settings.php:1793 msgid "Please select one of the available Themes to skin your Cacti with." msgstr "" #: ../include/global_settings.php:620 #, fuzzy msgid "Table Settings" msgstr "ÐаÑтойки" #: ../include/global_settings.php:625 msgid "Rows Per Page" msgstr "" #: ../include/global_settings.php:626 msgid "The default number of rows to display on for a table." msgstr "" #: ../include/global_settings.php:632 msgid "Graph/Data Source/Data Query Settings" msgstr "" #: ../include/global_settings.php:637 #, fuzzy msgid "Maximum Title Length" msgstr "МакÑимална ÑтойноÑÑ‚" #: ../include/global_settings.php:638 msgid "The maximum allowable Graph or Data Source titles." msgstr "" #: ../include/global_settings.php:645 #, fuzzy msgid "Data Source Field Length" msgstr "Път до източник на данни" #: ../include/global_settings.php:646 msgid "The maximum Data Query field length." msgstr "" #: ../include/global_settings.php:653 #, fuzzy msgid "Graph Creation" msgstr "Дърво на графики" #: ../include/global_settings.php:658 msgid "Default Graph Type" msgstr "" #: ../include/global_settings.php:659 msgid "When creating graphs, what Graph Type would you like pre-selected?" msgstr "" #: ../include/global_settings.php:662 msgid "All Types" msgstr "" #: ../include/global_settings.php:662 #, fuzzy msgid "By Template/Data Query" msgstr "Вземане на данни" #: ../include/global_settings.php:670 msgid "Default Log Tail Lines" msgstr "" #: ../include/global_settings.php:671 msgid "Default number of lines of the Cacti log file to tail." msgstr "" #: ../include/global_settings.php:677 msgid "Maximum number of rows per page" msgstr "" #: ../include/global_settings.php:678 msgid "" "User defined number of lines for the CLOG to tail when selecting 'All lines'." msgstr "" #: ../include/global_settings.php:685 msgid "Log Tail Refresh" msgstr "" #: ../include/global_settings.php:686 msgid "How often do you want the Cacti log display to update." msgstr "" #: ../include/global_settings.php:692 msgid "RRDtool Graph Watermark" msgstr "" #: ../include/global_settings.php:697 msgid "Watermark Text" msgstr "" #: ../include/global_settings.php:698 msgid "Test to place at the bottom center of every Graph." msgstr "" #: ../include/global_settings.php:705 #, fuzzy msgid "Log Viewer Settings" msgstr "ÐаÑтройки на cacti" #: ../include/global_settings.php:710 msgid "Exclusion Regex" msgstr "" #: ../include/global_settings.php:711 msgid "" "Any strings that match this regex will be excluded from the user display.\n" "\t\t\t\tFor example, if you want to exclude all log lines that " "include the words 'Admin' or 'Login'\n" "\t\t\t\tyou would type '(Admin || Login)'" msgstr "" #: ../include/global_settings.php:720 #, fuzzy msgid "Real-time Graphs" msgstr "Създаване на нови графики" #: ../include/global_settings.php:725 msgid "Enable Real-time Graphing" msgstr "" #: ../include/global_settings.php:726 msgid "" "When an option is checked, users will be able to put Cacti into Real-time " "mode." msgstr "" #: ../include/global_settings.php:731 ../lib/html_reports.php:365 #, fuzzy msgid "Graph Timespan" msgstr "Дърво на графики" #: ../include/global_settings.php:732 msgid "This timespan you wish to see on the default graph." msgstr "" #: ../include/global_settings.php:738 ../utilities.php:1893 msgid "Refresh Interval" msgstr "" #: ../include/global_settings.php:739 msgid "This is the time between graph updates." msgstr "" #: ../include/global_settings.php:745 msgid "Cache Directory" msgstr "" #: ../include/global_settings.php:746 msgid "" "This is the location, on the web server where the RRDfiles and PNG files " "will be cached.\n" "\t\t\tThis cache will be managed by the poller.\n" "\t\t\tMake sure you have the correct read and write permissions on this " "folder" msgstr "" #: ../include/global_settings.php:755 msgid "RRDtool Graph Font Control" msgstr "" #: ../include/global_settings.php:760 msgid "Font Selection Method" msgstr "" #: ../include/global_settings.php:761 msgid "How do you wish fonts to be handled by default?" msgstr "" #: ../include/global_settings.php:764 msgid "System" msgstr "" #: ../include/global_settings.php:767 msgid "Default Font" msgstr "" #: ../include/global_settings.php:768 msgid "" "When not using Theme based font control, the Pangon font-config font name to " "use for all Graphs. Optionally, you may leave blank and control font " "settings on a per object basis." msgstr "" #: ../include/global_settings.php:770 ../include/global_settings.php:785 #: ../include/global_settings.php:800 ../include/global_settings.php:815 #: ../include/global_settings.php:830 msgid "Enter Valid Font Config Value" msgstr "" #: ../include/global_settings.php:774 ../include/global_settings.php:1977 msgid "Title Font Size" msgstr "" #: ../include/global_settings.php:775 ../include/global_settings.php:1978 msgid "The size of the font used for Graph Titles" msgstr "" #: ../include/global_settings.php:782 msgid "Title Font Setting" msgstr "" #: ../include/global_settings.php:783 msgid "" "The font to use for Graph Titles. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:789 ../include/global_settings.php:1990 msgid "Legend Font Size" msgstr "" #: ../include/global_settings.php:790 ../include/global_settings.php:1991 msgid "The size of the font used for Graph Legend items" msgstr "" #: ../include/global_settings.php:797 msgid "Legend Font Setting" msgstr "" #: ../include/global_settings.php:798 msgid "" "The font to use for Graph Legends. Enter either a valid True Type Font file " "or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:804 ../include/global_settings.php:2003 msgid "Axis Font Size" msgstr "" #: ../include/global_settings.php:805 ../include/global_settings.php:2004 msgid "The size of the font used for Graph Axis" msgstr "" #: ../include/global_settings.php:812 msgid "Axis Font Setting" msgstr "" #: ../include/global_settings.php:813 msgid "" "The font to use for Graph Axis items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:819 ../include/global_settings.php:2016 msgid "Unit Font Size" msgstr "" #: ../include/global_settings.php:820 ../include/global_settings.php:2017 msgid "The size of the font used for Graph Units" msgstr "" #: ../include/global_settings.php:827 msgid "Unit Font Setting" msgstr "" #: ../include/global_settings.php:828 msgid "" "The font to use for Graph Unit items. Enter either a valid True Type Font " "file or valid Pango font-config value." msgstr "" #: ../include/global_settings.php:841 msgid "Data Collection Enabled" msgstr "" #: ../include/global_settings.php:842 msgid "If you wish to stop the polling process completely, uncheck this box." msgstr "" #: ../include/global_settings.php:848 #, fuzzy msgid "Poller Type" msgstr "Събиращи Ñкриптове" #: ../include/global_settings.php:849 msgid "" "The poller type to use. This setting will take effect at next polling " "interval." msgstr "" #: ../include/global_settings.php:856 msgid "" "The polling interval in use. This setting will effect how often RRDfiles " "are checked and updated.\n" "\t\t\tNOTE: If you change this value, you must re-populate the " "poller cache. Failure to do so, may result in lost data." msgstr "" #: ../include/global_settings.php:863 msgid "Cron Interval" msgstr "" #: ../include/global_settings.php:864 msgid "" "The cron interval in use. You need to set this setting to the interval that " "your cron or scheduled task is currently running." msgstr "" #: ../include/global_settings.php:870 msgid "Maximum Concurrent Poller Processes" msgstr "" #: ../include/global_settings.php:871 msgid "" "The number of concurrent processes to execute. Using a higher number when " "using cmd.php will improve performance. Performance improvements in spine " "are best resolved with the threads parameter" msgstr "" #: ../include/global_settings.php:878 msgid "Balance Process Load" msgstr "" #: ../include/global_settings.php:879 msgid "" "If you choose this option, Cacti will attempt to balance the load of each " "poller process by equally distributing poller items per process." msgstr "" #: ../include/global_settings.php:884 msgid "Disable increasing OID Check" msgstr "" #: ../include/global_settings.php:885 msgid "Controls disabling check for increasing OID while walking OID tree." msgstr "" #: ../include/global_settings.php:890 msgid "Spine Specific Execution Parameters" msgstr "" #: ../include/global_settings.php:895 msgid "Invalid Data Logging" msgstr "" #: ../include/global_settings.php:896 msgid "" "How would you like Spine output errors logged? The options are: 'Detailed' " "which is similar to cmd.php logging; 'Summary' which provides the number of " "output errors per host; and 'None', which does not provide error counts." msgstr "" #: ../include/global_settings.php:901 ../utilities.php:193 msgid "Summary" msgstr "" #: ../include/global_settings.php:902 msgid "Detailed" msgstr "" #: ../include/global_settings.php:906 msgid "Maximum Threads per Process" msgstr "" #: ../include/global_settings.php:907 msgid "" "The maximum threads allowed per process. Using a higher number when using " "Spine will improve performance." msgstr "" #: ../include/global_settings.php:914 msgid "Number of PHP Script Servers" msgstr "" #: ../include/global_settings.php:915 msgid "" "The number of concurrent script server processes to run per Spine process. " "Settings between 1 and 10 are accepted. This parameter will help if you are " "running several threads and script server scripts." msgstr "" #: ../include/global_settings.php:922 msgid "Script and Script Server Timeout Value" msgstr "" #: ../include/global_settings.php:923 msgid "" "The maximum time that Cacti will wait on a script to complete. This timeout " "value is in seconds" msgstr "" #: ../include/global_settings.php:930 msgid "The Maximum SNMP OIDs Per SNMP Get Request" msgstr "" #: ../include/global_settings.php:931 msgid "" "The maximum number of SNMP get OIDs to issue per snmpbulkwalk request. " "Increasing this value speeds poller performance over slow links. The " "maximum value is 100 OIDs. Decreasing this value to 0 or 1 will disable " "snmpbulkwalk" msgstr "" #: ../include/global_settings.php:945 msgid "Authentication Method" msgstr "" #: ../include/global_settings.php:946 msgid "" "
    None - No authentication will be used, all users will " "have full access.

    Built-in Authentication - Cacti handles user " "authentication, which allows you to create users and give them rights to " "different areas within Cacti.

    Web Basic Authentication - " "Authentication is handled by the web server. Users can be added or created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used.

    LDAP Authentication - " "Allows for authentication against a LDAP server. Users will be created " "automatically on first login if the Template User is defined, otherwise the " "defined guest permissions will be used. If PHPs LDAP module is not enabled, " "LDAP Authentication will not appear as a selectable option." "

    Multiple LDAP/AD Domain Authentication - Allows " "administrators to support multiple disparate groups from different LDAP/AD " "directories to access Cacti resources. Just as LDAP Authentication, the PHP " "LDAP module is required to utilize this method.
    " msgstr "" #: ../include/global_settings.php:952 msgid "Support Authentication Cookies" msgstr "" #: ../include/global_settings.php:953 msgid "" "If a user authenticates and selects 'Keep me signed in', an authentication " "cookie will be created on the user's computer allowing that user to stay " "logged in. The authentication cookie expires after 90 days of non-use." msgstr "" #: ../include/global_settings.php:958 msgid "Special Users" msgstr "" #: ../include/global_settings.php:963 msgid "Guest User" msgstr "" #: ../include/global_settings.php:964 msgid "The name of the guest user for viewing graphs; is 'No User' by default." msgstr "" #: ../include/global_settings.php:966 ../include/global_settings.php:974 #: ../user_domains.php:335 msgid "No User" msgstr "" #: ../include/global_settings.php:971 ../user_domains.php:331 #, fuzzy msgid "User Template" msgstr "Шаблони за графики" #: ../include/global_settings.php:972 msgid "" "The name of the user that cacti will use as a template for new Web Basic and " "LDAP users; is 'guest' by default." msgstr "" #: ../include/global_settings.php:979 msgid "Local Account Complexity Requirements" msgstr "" #: ../include/global_settings.php:984 #, fuzzy msgid "Minimum Length" msgstr "Минимална ÑтойноÑÑ‚" #: ../include/global_settings.php:985 msgid "This is minimal length of allowed passwords." msgstr "" #: ../include/global_settings.php:992 msgid "Require Mix Case" msgstr "" #: ../include/global_settings.php:993 msgid "" "This will require new passwords to contains both lower and upper-case " "characters." msgstr "" #: ../include/global_settings.php:998 msgid "Require Number" msgstr "" #: ../include/global_settings.php:999 msgid "" "This will require new passwords to contain at least 1 numerical character." msgstr "" #: ../include/global_settings.php:1004 msgid "Require Special Character" msgstr "" #: ../include/global_settings.php:1005 msgid "" "This will require new passwords to contain at least 1 special character." msgstr "" #: ../include/global_settings.php:1010 msgid "Force Complexity Upon Old Passwords" msgstr "" #: ../include/global_settings.php:1011 msgid "" "This will require all old passwords to also meet the new complexity " "requirements upon login. If not met, it will force a password change." msgstr "" #: ../include/global_settings.php:1016 msgid "Expire Inactive Accounts" msgstr "" #: ../include/global_settings.php:1017 msgid "" "This is maximum number of days before inactive accounts are disabled. The " "Admin account is excluded from this policy." msgstr "" #: ../include/global_settings.php:1030 #, fuzzy msgid "Expire Password" msgstr "Парола" #: ../include/global_settings.php:1031 msgid "This is maximum number of days before a password is set to expire." msgstr "" #: ../include/global_settings.php:1042 #, fuzzy msgid "Password History" msgstr "Парола" #: ../include/global_settings.php:1043 msgid "Remember this number of old passwords and disallow re-using them." msgstr "" #: ../include/global_settings.php:1048 msgid "1 Change" msgstr "" #: ../include/global_settings.php:1049 ../include/global_settings.php:1050 #: ../include/global_settings.php:1051 ../include/global_settings.php:1052 #: ../include/global_settings.php:1053 ../include/global_settings.php:1054 #: ../include/global_settings.php:1055 ../include/global_settings.php:1056 #: ../include/global_settings.php:1057 ../include/global_settings.php:1058 #: ../include/global_settings.php:1059 #, php-format msgid "%d Changes" msgstr "" #: ../include/global_settings.php:1062 msgid "Account Locking" msgstr "" #: ../include/global_settings.php:1067 msgid "Lock Accounts" msgstr "" #: ../include/global_settings.php:1068 msgid "Lock an account after this many failed attempts in 1 hour." msgstr "" #: ../include/global_settings.php:1073 msgid "1 Attempt" msgstr "" #: ../include/global_settings.php:1074 ../include/global_settings.php:1075 #: ../include/global_settings.php:1076 ../include/global_settings.php:1077 #: ../include/global_settings.php:1078 #, php-format msgid "%d Attempts" msgstr "" #: ../include/global_settings.php:1081 msgid "Auto Unlock" msgstr "" #: ../include/global_settings.php:1082 msgid "" "An account will automatically be unlocked after this many minutes. Even if " "the correct password is entered, the account will not unlock until this time " "limit has been met. Max of 1440 minutes (1 Day)" msgstr "" #: ../include/global_settings.php:1101 #, fuzzy msgid "LDAP General Settings" msgstr "Редактирай (ÐаÑтройки на графики)" #: ../include/global_settings.php:1105 ../user_domains.php:358 msgid "Server" msgstr "" #: ../include/global_settings.php:1106 msgid "The DNS hostname or IP address of the server." msgstr "" #: ../include/global_settings.php:1111 ../user_domains.php:366 msgid "Port Standard" msgstr "" #: ../include/global_settings.php:1112 msgid "TCP/UDP port for Non-SSL communications." msgstr "" #: ../include/global_settings.php:1119 ../user_domains.php:375 msgid "Port SSL" msgstr "" #: ../include/global_settings.php:1120 ../user_domains.php:376 msgid "TCP/UDP port for SSL communications." msgstr "" #: ../include/global_settings.php:1127 ../user_domains.php:384 #, fuzzy msgid "Protocol Version" msgstr "SNMP ВерÑиÑ" #: ../include/global_settings.php:1128 ../user_domains.php:385 msgid "Protocol Version that the server supports." msgstr "" #: ../include/global_settings.php:1134 ../user_domains.php:391 msgid "Encryption" msgstr "" #: ../include/global_settings.php:1135 ../user_domains.php:392 msgid "" "Encryption that the server supports. TLS is only supported by Protocol " "Version 3." msgstr "" #: ../include/global_settings.php:1141 ../user_domains.php:398 msgid "Referrals" msgstr "" #: ../include/global_settings.php:1142 ../user_domains.php:399 msgid "" "Enable or Disable LDAP referrals. If disabled, it may increase the speed of " "searches." msgstr "" #: ../include/global_settings.php:1148 ../user_domains.php:405 #, fuzzy msgid "Mode" msgstr "СпиÑъчен изглед" #: ../include/global_settings.php:1149 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "
    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the user's " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the user's Distinguished Name (DN)." msgstr "" #: ../include/global_settings.php:1155 ../user_domains.php:412 msgid "Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1156 ../user_domains.php:413 msgid "" "Distinguished Name syntax, such as for windows: \"<username>" "@win2kdomain.local\" or for OpenLDAP: \"uid=<username>," "ou=people,dc=domain,dc=local\". \"<username>\" is replaced with " "the username that was supplied at the login prompt. This is only used when " "in \"No Searching\" mode." msgstr "" #: ../include/global_settings.php:1161 ../user_domains.php:419 msgid "Require Group Membership" msgstr "" #: ../include/global_settings.php:1162 ../user_domains.php:420 msgid "" "Require user to be member of group to authenticate. Group settings must be " "set for this to work, enabling without proper group settings will cause " "authentication failure." msgstr "" #: ../include/global_settings.php:1167 ../user_domains.php:425 #, fuzzy msgid "LDAP Group Settings" msgstr "Редактирай (ÐаÑтройки на графики)" #: ../include/global_settings.php:1171 ../user_domains.php:429 msgid "Group Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1172 ../user_domains.php:430 msgid "Distinguished Name of the group that user must have membership." msgstr "" #: ../include/global_settings.php:1177 ../user_domains.php:436 msgid "Group Member Attribute" msgstr "" #: ../include/global_settings.php:1178 ../user_domains.php:437 msgid "Name of the attribute that contains the usernames of the members." msgstr "" #: ../include/global_settings.php:1183 ../user_domains.php:443 msgid "Group Member Type" msgstr "" #: ../include/global_settings.php:1184 ../user_domains.php:444 msgid "" "Defines if users use full Distinguished Name or just Username in the defined " "Group Member Attribute." msgstr "" #: ../include/global_settings.php:1187 msgid "Distinguished Name" msgstr "" #: ../include/global_settings.php:1190 ../user_domains.php:450 msgid "LDAP Specific Search Settings" msgstr "" #: ../include/global_settings.php:1194 ../user_domains.php:454 msgid "Search Base" msgstr "" #: ../include/global_settings.php:1195 msgid "" "Search base for searching the LDAP directory, such as 'dc=win2kdomain," "dc=local' or 'ou=people,dc=domain,dc=local'." msgstr "" #: ../include/global_settings.php:1200 ../user_domains.php:461 msgid "Search Filter" msgstr "" #: ../include/global_settings.php:1201 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: '(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))' or for OpenLDAP: " "'(&(objectClass=account)(uid=<username>))'. '<username>' " "is replaced with the username that was supplied at the login prompt. " msgstr "" #: ../include/global_settings.php:1206 ../user_domains.php:468 msgid "Search Distinguished Name (DN)" msgstr "" #: ../include/global_settings.php:1207 ../user_domains.php:469 msgid "" "Distinguished Name for Specific Searching binding to the LDAP directory." msgstr "" #: ../include/global_settings.php:1212 ../user_domains.php:475 #, fuzzy msgid "Search Password" msgstr "Парола" #: ../include/global_settings.php:1213 ../user_domains.php:476 msgid "Password for Specific Searching binding to the LDAP directory." msgstr "" #: ../include/global_settings.php:1220 msgid "URL Linking" msgstr "" #: ../include/global_settings.php:1225 msgid "Server Base URL" msgstr "" #: ../include/global_settings.php:1226 msgid "" "This is a the server location that will be used for links to the Cacti site." msgstr "" #: ../include/global_settings.php:1233 msgid "" "Emailing Options
    Send a Test Email
    " msgstr "" #: ../include/global_settings.php:1237 msgid "Test Email" msgstr "" #: ../include/global_settings.php:1238 msgid "" "This is a Email account used for sending a test message to ensure everything " "is working properly." msgstr "" #: ../include/global_settings.php:1243 #, fuzzy msgid "Mail Services" msgstr "УÑтройÑтва" #: ../include/global_settings.php:1244 msgid "Which mail service to use in order to send mail" msgstr "" #: ../include/global_settings.php:1246 ../include/global_settings.php:1247 msgid "PHP Mail() Function" msgstr "" #: ../include/global_settings.php:1247 ../lib/functions.php:3788 msgid "SMTP" msgstr "" #: ../include/global_settings.php:1247 ../lib/functions.php:3783 msgid "Sendmail" msgstr "" #: ../include/global_settings.php:1250 #, fuzzy msgid "Ping Mail Server" msgstr "УÑтройÑтва" #: ../include/global_settings.php:1251 msgid "Ping the Mail Server before sending test Email?" msgstr "" #: ../include/global_settings.php:1257 ../lib/html_reports.php:186 msgid "From Email Address" msgstr "" #: ../include/global_settings.php:1258 msgid "This is the Email address that the Email will appear from." msgstr "" #: ../include/global_settings.php:1263 ../lib/html_reports.php:178 #, fuzzy msgid "From Name" msgstr "Име" #: ../include/global_settings.php:1264 msgid "This is the actual name that the Email will appear from." msgstr "" #: ../include/global_settings.php:1269 msgid "Word Wrap" msgstr "" #: ../include/global_settings.php:1270 msgid "" "This is how many characters will be allowed before a line in the Email is " "automatically word wrapped. (0 = Disabled)" msgstr "" #: ../include/global_settings.php:1277 msgid "Sendmail Options" msgstr "" #: ../include/global_settings.php:1282 ../lib/functions.php:3783 msgid "Sendmail Path" msgstr "" #: ../include/global_settings.php:1283 msgid "" "This is the path to sendmail on your server. (Only used if Sendmail is " "selected as the Mail Service)" msgstr "" #: ../include/global_settings.php:1289 msgid "SMTP Options" msgstr "" #: ../include/global_settings.php:1294 msgid "SMTP Hostname" msgstr "" #: ../include/global_settings.php:1295 msgid "" "This is the hostname/IP of the SMTP Server you will send the Email to. For " "failover, separate your hosts using a semi-colon." msgstr "" #: ../include/global_settings.php:1301 #, fuzzy msgid "SMTP Port" msgstr "SNMP Порт" #: ../include/global_settings.php:1302 msgid "The port on the SMTP Server to use." msgstr "" #: ../include/global_settings.php:1309 #, fuzzy msgid "SMTP Username" msgstr "Потребител" #: ../include/global_settings.php:1310 msgid "" "The username to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: ../include/global_settings.php:1315 #, fuzzy msgid "SMTP Password" msgstr "Парола" #: ../include/global_settings.php:1316 msgid "" "The password to authenticate with when sending via SMTP. (Leave blank if you " "do not require authentication.)" msgstr "" #: ../include/global_settings.php:1321 msgid "SMTP Security" msgstr "" #: ../include/global_settings.php:1322 msgid "The encryption method to use for the Email." msgstr "" #: ../include/global_settings.php:1328 #, fuzzy msgid "SMTP Timeout" msgstr "SNMP изтекло време" #: ../include/global_settings.php:1329 msgid "Please enter the SMTP timeout in seconds." msgstr "" #: ../include/global_settings.php:1336 msgid "Reporting Presets" msgstr "" #: ../include/global_settings.php:1341 msgid "Default Graph Image Format" msgstr "" #: ../include/global_settings.php:1342 msgid "" "When creating a new report, what image type should be used for the inline " "graphs." msgstr "" #: ../include/global_settings.php:1348 #, fuzzy msgid "Maximum E-Mail Size" msgstr "МакÑимална ÑтойноÑÑ‚" #: ../include/global_settings.php:1349 msgid "The maximum size of the E-Mail message including all attachements." msgstr "" #: ../include/global_settings.php:1355 msgid "Poller Logging Level for Cacti Reporting" msgstr "" #: ../include/global_settings.php:1356 msgid "" "What level of detail do you want sent to the log file. WARNING: Leaving in " "any other status than NONE or LOW can exhaust your disk space rapidly." msgstr "" #: ../include/global_settings.php:1362 msgid "Enable Lotus Notes (R) tweak" msgstr "" #: ../include/global_settings.php:1363 msgid "Enable code tweak for specific handling of Lotus Notes Mail Clients." msgstr "" #: ../include/global_settings.php:1368 msgid "DNS Options" msgstr "" #: ../include/global_settings.php:1373 msgid "Primary DNS IP Address" msgstr "" #: ../include/global_settings.php:1374 msgid "Enter the primary DNS IP Address to utilize for reverse lookups." msgstr "" #: ../include/global_settings.php:1380 msgid "Secondary DNS IP Address" msgstr "" #: ../include/global_settings.php:1381 msgid "Enter the secondary DNS IP Address to utilize for reverse lookups." msgstr "" #: ../include/global_settings.php:1387 #, fuzzy msgid "DNS Timeout" msgstr "SNMP изтекло време" #: ../include/global_settings.php:1388 msgid "" "Please enter the DNS timeout in milliseconds. Cacti uses a PHP based DNS " "resolver." msgstr "" #: ../include/global_settings.php:1397 #, fuzzy msgid "Data Sources Statistics" msgstr "Път до източник на данни" #: ../include/global_settings.php:1402 msgid "Enable Data Source Statistics Collection" msgstr "" #: ../include/global_settings.php:1403 msgid "Should Data Source Statistics be collected for this Cacti system?" msgstr "" #: ../include/global_settings.php:1408 msgid "Daily Update Frequency" msgstr "" #: ../include/global_settings.php:1409 msgid "How frequent should Daily Stats be updated?" msgstr "" #: ../include/global_settings.php:1415 msgid "Hourly Average Window" msgstr "" #: ../include/global_settings.php:1416 msgid "" "The number of consecutive hours that represent the hourly\n" "\t\t\taverage. Keep in mind that a setting too high can result in very " "large memory tables" msgstr "" #: ../include/global_settings.php:1423 msgid "Maintenance Time" msgstr "" #: ../include/global_settings.php:1424 msgid "" "What time of day should Weekly, Monthly, and Yearly Data be updated? Format " "is HH:MM [am/pm]" msgstr "" #: ../include/global_settings.php:1431 msgid "Memory Limit for Data Source Statistics Data Collector" msgstr "" #: ../include/global_settings.php:1432 msgid "" "The maximum amount of memory for the Cacti Poller and Data Source Statistics " "Poller" msgstr "" #: ../include/global_settings.php:1438 msgid "Debugging" msgstr "" #: ../include/global_settings.php:1443 msgid "Enable Single RRDtool Pipe" msgstr "" #: ../include/global_settings.php:1444 msgid "" "Using a single pipe will speed the RRDtool process by 10x. However, RRDtool " "crashes\n" "\t\t\tproblems can occur. Disable this setting if you need to find a bad " "RRDfile." msgstr "" #: ../include/global_settings.php:1450 msgid "Enable Partial Reference Data Retrieve" msgstr "" #: ../include/global_settings.php:1451 msgid "" "If using a large system, it may be beneficial for you to only gather data as " "needed\n" "\t\t\tduring Cacti poller passes. If you check this box, Data Source " "Statistics will gather data this way." msgstr "" #: ../include/global_settings.php:1459 msgid "On-demand RRD Update Settings" msgstr "" #: ../include/global_settings.php:1464 msgid "Enable On-demand RRD Updating" msgstr "" #: ../include/global_settings.php:1465 msgid "" "Should Boost enable on demand RRD updating in Cacti? If you disable, this " "change will not take effect until after the next polling cycle." msgstr "" #: ../include/global_settings.php:1470 msgid "System Level RRD Updater" msgstr "" #: ../include/global_settings.php:1471 msgid "" "Before RRD On-demand Update Can be Cleared, a poller run must always pass" msgstr "" #: ../include/global_settings.php:1476 msgid "How Often Should Boost Update All RRDs" msgstr "" #: ../include/global_settings.php:1477 msgid "" "When you enable boost, your RRD files are only updated when they are " "requested by a user, or when this time period elapses." msgstr "" #: ../include/global_settings.php:1484 #, fuzzy msgid "Maximum Records" msgstr "МакÑимална ÑтойноÑÑ‚" #: ../include/global_settings.php:1485 msgid "" "If the boost output table exceeds this size, in records, an update will take " "place." msgstr "" #: ../include/global_settings.php:1492 msgid "Maximum Data Source Items Per Pass" msgstr "" #: ../include/global_settings.php:1493 msgid "" "To optimize performance, the boost RRD updater needs to know how many Data " "Source Items\n" "\t\t\tshould be retrieved in one pass. Please be careful not to set too " "high as graphing performance during\n" "\t\t\tmajor updates can be compromised. If you encounter graphing or " "polling slowness during updates, lower this\n" "\t\t\tnumber. The default value is 50000." msgstr "" #: ../include/global_settings.php:1502 msgid "Maximum Argument Length" msgstr "" #: ../include/global_settings.php:1503 msgid "" "When boost sends update commands to RRDtool, it must not exceed the " "operating systems\n" "\t\t\tMaximum Argument Length. This varies by operating system and kernel " "level. For example:\n" "\t\t\tWindows 2000 <= 2048, FreeBSD <= 65535, Linux 2.6.22-- <= 131072, " "Linux 2.6.23++ unlimited" msgstr "" #: ../include/global_settings.php:1512 msgid "Memory Limit for Boost and Poller" msgstr "" #: ../include/global_settings.php:1513 msgid "The maximum amount of memory for the Cacti Poller and Boosts Poller" msgstr "" #: ../include/global_settings.php:1519 msgid "Maximum RRD Update Script Run Time" msgstr "" #: ../include/global_settings.php:1520 msgid "" "The maximum boot poller run time allowed prior to boost issuing warning\n" "\t\t\tmessages relative to possible hardware/software issues preventing " "proper updates." msgstr "" #: ../include/global_settings.php:1527 msgid "Enable direct population of poller_output_boost table" msgstr "" #: ../include/global_settings.php:1528 msgid "" "Enables direct insert of records into poller output boost with results in a " "25% time reduction in each poll cycle." msgstr "" #: ../include/global_settings.php:1533 ../utilities.php:2139 msgid "Image Caching" msgstr "" #: ../include/global_settings.php:1538 msgid "Enable Image Caching" msgstr "" #: ../include/global_settings.php:1539 msgid "Should image caching be enabled?" msgstr "" #: ../include/global_settings.php:1544 msgid "Location for Image Files" msgstr "" #: ../include/global_settings.php:1545 msgid "" "Specify the location where Boost should place your image files. These files " "will be automatically purged by the poller when they expire." msgstr "" #: ../include/global_settings.php:1551 msgid "Process Interlocking" msgstr "" #: ../include/global_settings.php:1556 msgid "Boost Debug Log" msgstr "" #: ../include/global_settings.php:1557 msgid "" "If this field is non-blank, Boost will log RRDupdate output from the boost" "\tpoller process." msgstr "" #: ../include/global_settings.php:1571 msgid "" "Choose if RRDs will be stored locally or being handled by an external " "RRDtool proxy server." msgstr "" #: ../include/global_settings.php:1574 ../include/global_settings.php:1582 msgid "RRDtool Proxy Server" msgstr "" #: ../include/global_settings.php:1577 msgid "Structured RRD Path (/host_id/local_data_id.rrd)" msgstr "" #: ../include/global_settings.php:1578 msgid "Use a separate subfolder for each hosts RRD files." msgstr "" #: ../include/global_settings.php:1587 ../include/global_settings.php:1619 msgid "Proxy Server" msgstr "" #: ../include/global_settings.php:1588 msgid "The DNS hostname or IP address of the RRDtool proxy server." msgstr "" #: ../include/global_settings.php:1593 ../include/global_settings.php:1625 msgid "Proxy Port Number" msgstr "" #: ../include/global_settings.php:1594 msgid "TCP port for encrypted communication." msgstr "" #: ../include/global_settings.php:1601 ../include/global_settings.php:1633 #: ../utilities.php:248 msgid "RSA Fingerprint" msgstr "" #: ../include/global_settings.php:1602 msgid "" "The fingerprint of the current public RSA key the proxy is using. This is " "required to establish a trusted connection." msgstr "" #: ../include/global_settings.php:1609 msgid "RRDtool Proxy Server - Backup" msgstr "" #: ../include/global_settings.php:1614 msgid "Load Balancing" msgstr "" #: ../include/global_settings.php:1615 msgid "" "If both main and backup proxy are receivable this option allows to spread " "all requests against RRDtool." msgstr "" #: ../include/global_settings.php:1620 msgid "" "The DNS hostname or IP address of the RRDtool backup proxy server if proxy " "is running in MSR mode." msgstr "" #: ../include/global_settings.php:1626 msgid "TCP port for encrypted communication with the backup proxy." msgstr "" #: ../include/global_settings.php:1634 msgid "" "The fingerprint of the current public RSA key the backup proxy is using. " "This required to establish a trusted connection." msgstr "" #: ../include/global_settings.php:1643 #, fuzzy msgid "Spike Kill Settings" msgstr "ÐаÑтройки на cacti" #: ../include/global_settings.php:1648 msgid "Removal Method" msgstr "" #: ../include/global_settings.php:1649 msgid "" "There are two removal methods. The first, Standard Deviation, will remove " "any\n" "\t\t\tsample that is X number of standard deviations away from the average " "of samples. The second method,\n" "\t\t\tVariance, will remove any sample that is X% more than the Variance " "average. The Variance method takes\n" "\t\t\tinto account a certain number of 'outliers'. Those are exceptional " "samples, like the spike, that need\n" "\t\t\tto be excluded from the Variance Average calculation." msgstr "" #: ../include/global_settings.php:1656 msgid "Standard Deviation" msgstr "" #: ../include/global_settings.php:1656 msgid "Variance Based w/Outliers Removed" msgstr "" #: ../include/global_settings.php:1659 ../lib/html.php:1719 msgid "Replacement Method" msgstr "" #: ../include/global_settings.php:1660 msgid "" "There are three replacement methods. The first method replaces the spike " "with the\n" "\t\t\tthe average of the data source in question. The second method " "replaces the spike with a 'NaN'.\n" "\t\t\tThe last replaces the spike with the last known good value found." msgstr "" #: ../include/global_settings.php:1665 ../lib/html.php:1720 msgid "Average" msgstr "" #: ../include/global_settings.php:1665 ../lib/html.php:1722 msgid "Last Known Good" msgstr "" #: ../include/global_settings.php:1665 msgid "NaN's" msgstr "" #: ../include/global_settings.php:1668 msgid "Number of Standard Deviations" msgstr "" #: ../include/global_settings.php:1669 msgid "" "Any value that is this many standard deviations above the average will be " "excluded.\n" "\t\t\tA good number will be dependent on the type of data to be operated " "on. We recommend a number no lower\n" "\t\t\tthan 5 Standard Deviations." msgstr "" #: ../include/global_settings.php:1675 ../include/global_settings.php:1676 #: ../include/global_settings.php:1677 ../include/global_settings.php:1678 #: ../include/global_settings.php:1679 ../include/global_settings.php:1680 #: ../include/global_settings.php:1681 ../include/global_settings.php:1682 #: ../include/global_settings.php:1683 ../include/global_settings.php:1684 #, php-format msgid "%d Standard Deviations" msgstr "" #: ../include/global_settings.php:1688 ../lib/html.php:1731 msgid "Variance Percentage" msgstr "" #: ../include/global_settings.php:1689 #, php-format msgid "" "This value represents the percentage above the adjusted sample average once " "outliers\n" "\t\t\thave been removed from the sample. For example, a Variance Percentage " "of 100% on an adjusted average of 50\n" "\t\t\twould remove any sample above the quantity of 100 from the graph." msgstr "" #: ../include/global_settings.php:1710 msgid "Variance Number of Outliers" msgstr "" #: ../include/global_settings.php:1711 msgid "" "This value represents the number of high and low average samples will be " "removed from the\n" "\t\t\tsample set prior to calculating the Variance Average. If you choose " "an outlier value of 5, then both the top\n" "\t\t\tand bottom 5 averages are removed." msgstr "" #: ../include/global_settings.php:1717 ../include/global_settings.php:1718 #: ../include/global_settings.php:1719 ../include/global_settings.php:1720 #: ../include/global_settings.php:1721 ../include/global_settings.php:1722 #: ../include/global_settings.php:1723 ../include/global_settings.php:1724 #, php-format msgid "%d High/Low Samples" msgstr "" #: ../include/global_settings.php:1728 msgid "Max Kills Per RRA" msgstr "" #: ../include/global_settings.php:1729 msgid "" "This value represents the maximum number of spikes to remove from a Graph " "RRA." msgstr "" #: ../include/global_settings.php:1733 ../include/global_settings.php:1734 #: ../include/global_settings.php:1735 ../include/global_settings.php:1736 #: ../include/global_settings.php:1737 ../include/global_settings.php:1738 #: ../include/global_settings.php:1739 ../include/global_settings.php:1740 #, php-format msgid "%d Samples" msgstr "" #: ../include/global_settings.php:1744 msgid "RRDfile Backup Directory" msgstr "" #: ../include/global_settings.php:1745 msgid "" "If this directory is not empty, then your original RRDfiles will be backed\n" "\t\t\tup to this location." msgstr "" #: ../include/global_settings.php:1753 #, fuzzy msgid "Batch Spike Kill Settings" msgstr "ÐаÑтройки на cacti" #: ../include/global_settings.php:1758 msgid "Removal Schedule" msgstr "" #: ../include/global_settings.php:1759 msgid "" "Do you wish to periodically remove spikes from your graphs? If so, select " "the frequency\n" "\t\t\tbelow." msgstr "" #: ../include/global_settings.php:1767 msgid "Once a Day" msgstr "" #: ../include/global_settings.php:1768 msgid "Every Other Day" msgstr "" #: ../include/global_settings.php:1772 msgid "Base Time" msgstr "" #: ../include/global_settings.php:1773 msgid "" "The Base Time for Spike removal to occur. For example, if you use '12:00am' " "and you choose\n" "\t\t\tonce per day, the batch removal would begin at approximately midnight " "every day." msgstr "" #: ../include/global_settings.php:1781 #, fuzzy msgid "Graph Templates to Spike Kill" msgstr "Шаблони за елементи на графиката" #: ../include/global_settings.php:1783 msgid "" "When performing batch spike removal, only the templates selected below will " "be acted on." msgstr "" #: ../include/global_settings.php:1799 #, fuzzy msgid "Default View Mode" msgstr "Общ изглед" #: ../include/global_settings.php:1800 msgid "" "Which Graph mode you want displayed by default when you first visit the " "Graphs page?" msgstr "" #: ../include/global_settings.php:1806 #, fuzzy msgid "User Language" msgstr "Права на потребители" #: ../include/global_settings.php:1807 msgid "Defines the preferred GUI language." msgstr "" #: ../include/global_settings.php:1813 msgid "Show Graph Title" msgstr "" #: ../include/global_settings.php:1814 msgid "" "Display the graph title on the page so that it may be searched using the " "browser." msgstr "" #: ../include/global_settings.php:1820 #, fuzzy msgid "The date format to use in Cacti." msgstr "ÐŸÑŠÐ»Ð½Ð¸Ñ Ð¿ÑŠÑ‚ до RRD файл." #: ../include/global_settings.php:1827 msgid "The date separator to be used in Cacti." msgstr "" #: ../include/global_settings.php:1833 msgid "Page Refresh" msgstr "" #: ../include/global_settings.php:1834 msgid "The number of seconds between automatic page refreshes." msgstr "" #: ../include/global_settings.php:1840 msgid "Preview Graphs Per Page" msgstr "" #: ../include/global_settings.php:1841 ../include/global_settings.php:1956 msgid "The number of graphs to display on one page in preview mode." msgstr "" #: ../include/global_settings.php:1849 msgid "Default Time Range" msgstr "" #: ../include/global_settings.php:1850 msgid "The default RRA to use in rare occasions." msgstr "" #: ../include/global_settings.php:1856 msgid "Default Graph View Timespan" msgstr "" #: ../include/global_settings.php:1857 msgid "The default timespan you wish to be displayed when you display graphs" msgstr "" #: ../include/global_settings.php:1863 msgid "Default Graph View Timeshift" msgstr "" #: ../include/global_settings.php:1864 msgid "The default timeshift you wish to be displayed when you display graphs" msgstr "" #: ../include/global_settings.php:1870 msgid "Allow Graph to extend to Future" msgstr "" #: ../include/global_settings.php:1871 msgid "When displaying Graphs, allow Graph Dates to extend 'to future'" msgstr "" #: ../include/global_settings.php:1876 msgid "First Day of the Week" msgstr "" #: ../include/global_settings.php:1877 msgid "The first Day of the Week for weekly Graph Displays" msgstr "" #: ../include/global_settings.php:1883 msgid "Start of Daily Shift" msgstr "" #: ../include/global_settings.php:1884 msgid "Start Time of the Daily Shift." msgstr "" #: ../include/global_settings.php:1891 msgid "End of Daily Shift" msgstr "" #: ../include/global_settings.php:1892 msgid "End Time of the Daily Shift." msgstr "" #: ../include/global_settings.php:1901 msgid "Thumbnail Sections" msgstr "" #: ../include/global_settings.php:1902 msgid "Which portions of Cacti display Thumbnails by default." msgstr "" #: ../include/global_settings.php:1906 ../lib/functions.php:1880 msgid "Preview Mode" msgstr "Общ изглед" #: ../include/global_settings.php:1916 msgid "Preview Thumbnail Columns" msgstr "" #: ../include/global_settings.php:1917 msgid "" "The number of columns to use when displaying Thumbnail graphs in Preview " "mode." msgstr "" #: ../include/global_settings.php:1920 ../include/global_settings.php:1927 #: ../lib/html_graph.php:231 ../lib/html_graph.php:232 #: ../lib/html_graph.php:233 ../lib/html_graph.php:234 #: ../lib/html_graph.php:235 ../lib/html_tree.php:677 ../lib/html_tree.php:678 #: ../lib/html_tree.php:679 ../lib/html_tree.php:680 ../lib/html_tree.php:681 #, php-format msgid "%d Columns" msgstr "" #: ../include/global_settings.php:1920 ../include/global_settings.php:1927 msgid "1 Column" msgstr "" #: ../include/global_settings.php:1923 msgid "Tree View Thumbnail Columns" msgstr "" #: ../include/global_settings.php:1924 msgid "" "The number of columns to use when displaying Thumbnail graphs in Tree mode." msgstr "" #: ../include/global_settings.php:1930 msgid "Thumbnail Height" msgstr "" #: ../include/global_settings.php:1931 msgid "The height of Thumbnail graphs in pixels." msgstr "" #: ../include/global_settings.php:1938 msgid "Thumbnail Width" msgstr "" #: ../include/global_settings.php:1939 msgid "The width of Thumbnail graphs in pixels." msgstr "" #: ../include/global_settings.php:1948 msgid "Default Tree" msgstr "" #: ../include/global_settings.php:1949 msgid "The default graph tree to use when displaying graphs in tree mode." msgstr "" #: ../include/global_settings.php:1955 #, fuzzy msgid "Graphs Per Page" msgstr "Дърво на графики" #: ../include/global_settings.php:1962 #, fuzzy msgid "Expand Devices" msgstr "УÑтройÑтва" #: ../include/global_settings.php:1963 msgid "" "Choose whether to expand the Graph Templates and Data Queries used by a " "Device on Tree." msgstr "" #: ../include/global_settings.php:1970 msgid "Use Custom Fonts" msgstr "" #: ../include/global_settings.php:1971 msgid "" "Choose whether to use your own custom fonts and font sizes or utilize the " "system defaults." msgstr "" #: ../include/global_settings.php:1984 msgid "Title Font File" msgstr "" #: ../include/global_settings.php:1985 msgid "The font file to use for Graph Titles" msgstr "" #: ../include/global_settings.php:1997 msgid "Legend Font File" msgstr "" #: ../include/global_settings.php:1998 msgid "The font file to be used for Graph Legend items" msgstr "" #: ../include/global_settings.php:2010 msgid "Axis Font File" msgstr "" #: ../include/global_settings.php:2011 msgid "The font file to be used for Graph Axis items" msgstr "" #: ../include/global_settings.php:2023 msgid "Unit Font File" msgstr "" #: ../include/global_settings.php:2024 msgid "The font file to be used for Graph Unit items" msgstr "" #: ../index.php:64 #, php-format msgid "" "You are now logged into
    Cacti. You can follow " "these basic steps to get started." msgstr "" #: ../index.php:67 #, php-format msgid "Create devices for network" msgstr "" #: ../index.php:68 #, php-format msgid "Create graphs for your new devices" msgstr "" #: ../index.php:69 #, php-format msgid "View your new graphs" msgstr "" #: ../index.php:78 msgid "Offline" msgstr "" #: ../index.php:78 msgid "Online" msgstr "" #: ../index.php:78 msgid "Recovery" msgstr "" #: ../index.php:78 msgid "Remote Data Collector Status:" msgstr "" #: ../index.php:80 msgid "Number of Offline Records:" msgstr "" #: ../index.php:85 msgid "" "NOTE: You are logged into a Remote Data Collector. When " "'online', you will be able to view and control much of the Main Cacti " "Web Site just as if you were logged into it. Also, it's important to note " "that Remote Data Collectors are required to use the Cacti's Performance " "Boosting Services 'On Demand Updating' feature, and we always " "recommend using Spine. When the Remote Data Collector is 'offline', " "the Remote Data Collectos Web Site will contain much less information. " "However, it will cache all updates until the Main Cacti Database and Web " "Server are reachable. Then it will dump it's Boost table output back to the " "Main Cacti Database for updating." msgstr "" #: ../index.php:90 msgid "" "NOTE: None of the Core Cacti Plugins, to date, have been re-" "designed to work with Remote Data Collectors. Therefore, Plugins such as " "MacTrack, and HMIB, which require direct access to devices will not work " "with Remote Data Collectors at this time. However, plugins such as Thold " "will work so long as the Remote Data Collector is in 'online' mode." msgstr "" #: ../install/index.php:51 ../install/index.php:56 ../install/index.php:61 #: ../install/index.php:302 ../lib/html_utility.php:820 msgid "Error" msgstr "" #: ../install/index.php:53 #, php-format msgid "" "This installation is already up-to-date. Click here to " "use Cacti." msgstr "" #: ../install/index.php:58 #, php-format msgid "" "You are attempting to install Cacti %s onto a 0.6.x database. To continue, " "you must create a new database, import \"cacti.sql\" into it, and update " "\"include/config.php\" to point to the new database." msgstr "" #: ../install/index.php:63 #, php-format msgid "" "You have created a new database, but have not yet imported the 'cacti.sql' " "file. At the command line, execute the following to continue:

    mysql -u %s -p %s < cacti.sql

    This error may also be " "generated if the cacti database user does not have correct permissions on " "the Cacti database. Please ensure that the Cacti database user has the " "ability to SELECT, INSERT, DELETE, UPDATE, CREATE, ALTER, DROP, INDEX on the " "Cacti database." msgstr "" #: ../install/index.php:65 #, php-format msgid "" "In Cacti %s, you must also import MySQL TimeZone information into MySQL and " "grant the Cacti user SELECT access to the mysql.time_zone_name table" msgstr "" #: ../install/index.php:68 msgid "On Linux/UNIX, do the following:" msgstr "" #: ../install/index.php:68 msgid "mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql" msgstr "" #: ../install/index.php:70 msgid "" "On Windows, you must follow the instructions here Time zone description " "table. Once that is complete, you can issue the following command to " "grant the Cacti user access to the tables:" msgstr "" #: ../install/index.php:72 #, php-format msgid "" "GRANT SELECT ON mysql.time_zone_name to '%s'@'localhost' IDENTIFIED BY '%s'" msgstr "" #: ../install/index.php:304 #, php-format msgid "" "Invalid Cacti version %1$s, cannot upgrade to %2$s" msgstr "" #: ../install/index.php:410 msgid "Cacti Installation Wizard" msgstr "" #: ../install/index.php:418 msgid "License Agreement" msgstr "" #: ../install/index.php:420 msgid "" "Thanks for taking the time to download and install Cacti, the complete " "graphing solution for your network. Before you can start making cool graphs, " "there are a few pieces of data that Cacti needs to know." msgstr "" #: ../install/index.php:421 #, php-format msgid "" "Make sure you have read and followed the required steps needed to install " "Cacti before continuing. Install information can be found for Unix and Win32-based operating systems." msgstr "" #: ../install/index.php:422 #, php-format msgid "" "Also, if this is an upgrade, be sure to reading the Upgrade information file." msgstr "" #: ../install/index.php:423 msgid "" "Cacti is licensed under the GNU General Public License, you must agree to " "its provisions before continuing:" msgstr "" #: ../install/index.php:441 msgid "Pre-installation Checks" msgstr "" #: ../install/index.php:442 msgid "MySQL TimeZone Support" msgstr "" #: ../install/index.php:447 ../install/index.php:451 ../install/index.php:630 #: ../install/index.php:638 msgid "ERROR:" msgstr "" #: ../install/index.php:447 msgid "" "Your MySQL TimeZone database is not populated. Please populate this " "database before proceeding." msgstr "" #: ../install/index.php:451 msgid "" "Your Cacti database login account does not have access to the MySQL TimeZone " "database. Please provide the Cacti database account \"select\" access to " "the \"time_zone_name\" table in the \"mysql\" database, and populate MySQL's " "TimeZone information before proceeding." msgstr "" #: ../install/index.php:456 msgid "" "Your Cacti database account has access to the MySQL TimeZone database and " "that database is populated with global TimeZone information." msgstr "" #: ../install/index.php:459 msgid "Required PHP Module Support" msgstr "" #: ../install/index.php:461 msgid "" "Cacti requires several PHP Modules to be installed to work properly. If any " "of these are not installed, you will be unable to continue the installation " "until corrected. In addition, for optimal system performance Cacti should be " "run with certain MySQL system variables set. Please follow the MySQL " "recommendations at your discretion. Always seek the MySQL documentation if " "you have any questions." msgstr "" #: ../install/index.php:463 msgid "" "The following PHP extensions are mandatory, and MUST be installed before " "continuing your Cacti install." msgstr "" #: ../install/index.php:465 msgid "Required PHP Modules" msgstr "" #: ../install/index.php:466 ../install/index.php:543 ../plugins.php:41 #: ../plugins.php:288 ../utilities.php:415 msgid "Installed" msgstr "" #: ../install/index.php:466 msgid "Required" msgstr "" #: ../install/index.php:468 ../utilities.php:387 #, fuzzy msgid "PHP Version" msgstr "SNMP ВерÑиÑ" #: ../install/index.php:533 msgid "Optional PHP Module Support" msgstr "" #: ../install/index.php:535 msgid "" "The following PHP extensions are recommended, and should be installed before " "continuing your Cacti install." msgstr "" #: ../install/index.php:542 msgid "Optional Modules" msgstr "" #: ../install/index.php:543 msgid "Optional" msgstr "" #: ../install/index.php:553 msgid "" "These MySQL performance tuning settings will help your Cacti system perform " "better without issues for a longer time." msgstr "" #: ../install/index.php:555 msgid "Recommended MySQL System Variable Settings" msgstr "" #: ../install/index.php:560 msgid "Installation Type" msgstr "" #: ../install/index.php:565 #, php-format msgid "Upgrade from %s to %s" msgstr "" #: ../install/index.php:566 msgid "" "WARNING - If you are upgrading from a previous version please close all " "Cacti browser sessions and clear cache before continuing" msgstr "" #: ../install/index.php:569 msgid "Please select the type of installation" msgstr "" #: ../install/index.php:571 msgid "Installation options:" msgstr "" #: ../install/index.php:574 #, fuzzy msgid "Choose this for the Primary site." msgstr "ÐŸÑŠÐ»Ð½Ð¸Ñ Ð¿ÑŠÑ‚ до RRD файл." #: ../install/index.php:574 ../install/index.php:580 msgid "New Primary Server" msgstr "" #: ../install/index.php:575 ../install/index.php:581 msgid "New Remote Poller" msgstr "" #: ../install/index.php:575 msgid "" "Remote Pollers are used to access networks that are not readily accessible " "to the Primary site." msgstr "" #: ../install/index.php:585 msgid "" "The following information has been determined from Cacti's configuration " "file. If it is not correct, please edit \"include/config.php\" before " "continuing." msgstr "" #: ../install/index.php:589 msgid "Local Cacti database connection information" msgstr "" #: ../install/index.php:591 ../install/index.php:620 #, php-format msgid "Database: %s" msgstr "" #: ../install/index.php:592 ../install/index.php:621 #, php-format msgid "Database User: %s" msgstr "" #: ../install/index.php:593 ../install/index.php:622 #, php-format msgid "Database Hostname: %s" msgstr "" #: ../install/index.php:594 ../install/index.php:623 #, php-format msgid "Port: %s" msgstr "" #: ../install/index.php:595 ../install/index.php:624 #, php-format msgid "Server Operating System Type: %s" msgstr "" #: ../install/index.php:618 ../install/index.php:627 msgid "Remote Poller Cacti database connection information" msgstr "" #: ../install/index.php:630 msgid "" "Your config.php file must be writable by\n" "\t\t\t\t\t\t\t\t\t\tthe web server during install in order to configure the " "Remote poller. Once\n" "\t\t\t\t\t\t\t\t\t\tinstallation is complete, you must set this file to Read " "Only to prevent\n" "\t\t\t\t\t\t\t\t\t\tpossible security issues." msgstr "" #: ../install/index.php:638 msgid "" "Your Remote Cacti Poller information has not\n" "\t\t\t\t\t\t\t\t\t\tbeen included in your config.php file. Please review " "the config.php.dist, and\n" "\t\t\t\t\t\t\t\t\t\tset the variables: $rdatabase_default, " "$rdatabase_username, etc.\n" "\t\t\t\t\t\t\t\t\t\tThese variables must be set and point back to your " "Primary Cacti database server.\n" "\t\t\t\t\t\t\t\t\t\tCorrect this and try again." msgstr "" #: ../install/index.php:644 msgid "The variables that must be set include the following:" msgstr "" #: ../install/index.php:655 msgid "You must also set the $poller_id variable in the config.php." msgstr "" #: ../install/index.php:657 msgid "" "Once you have the variables set in the config.php file, you must also\n" "\t\t\t\t\t\t\t\t\t\tgrant the $rdatabase_username access to the Cacti " "database. Follow the same procedure you would with\n" "\t\t\t\t\t\t\t\t\t\tany other Cacti install. You may then press the 'Test " "Connection' button. If the test is\n" "\t\t\t\t\t\t\t\t\t\tsuccessful you will be able to proceed and complete the " "install." msgstr "" #: ../install/index.php:682 ../install/index.php:698 ../lib/html.php:342 msgid "Next" msgstr "Следващ" #: ../install/index.php:707 msgid "Upgrade" msgstr "" #: ../install/index.php:720 msgid "Remote Database: " msgstr "" #: ../install/index.php:731 msgid "Critical Binary Locations and Versions" msgstr "" #: ../install/index.php:733 msgid "Make sure all of these values are correct before continuing." msgstr "" #: ../install/index.php:791 msgid "Directory Permission Checks" msgstr "" #: ../install/index.php:793 msgid "" "Please ensure the directory permissions below are correct before " "proceeding. During the install, these directories need to be owned by the " "Web Server user. These permission changes are required to allow the " "Installer to install Device Template packages which include XML and script " "files that will be placed in these directories. If you choose not to " "install the packages, there is an 'install_package.php' cli script that can " "be used from the command line after the install is complete." msgstr "" #: ../install/index.php:796 msgid "" "After the install is complete, you can make some of these directories read " "only to increase security." msgstr "" #: ../install/index.php:798 msgid "" "These directories will be required to stay read writable after the install " "so that the Cacti remote synchronization process can update them as the Main " "Cacti Web Site changes" msgstr "" #: ../install/index.php:829 msgid "Required Writable at Install Time Only" msgstr "" #: ../install/index.php:832 ../install/index.php:842 ../install/index.php:852 msgid "Writable" msgstr "" #: ../install/index.php:834 ../install/index.php:844 ../install/index.php:854 msgid "Not Writable" msgstr "" #: ../install/index.php:839 ../install/index.php:849 msgid "Required Writable after Install Complete" msgstr "" #: ../install/index.php:862 #, php-format msgid "" "Make sure your webserver has read and write access to the entire folder " "structure.
    Example: chown -R apache.apache %s/resource/" msgstr "" #: ../install/index.php:863 msgid "" "For SELINUX-users make sure that you have the correct permissions or set " "'setenforce 0' temporarily." msgstr "" #: ../install/index.php:865 #, fuzzy msgid "Check Permissions" msgstr "Редактирай (Права за графики)" #: ../install/index.php:867 msgid "All folders are writable" msgstr "" #: ../install/index.php:873 msgid "" "If you are installing packages, once the packages are installed, you should " "change the scripts directory back to read only as this presents some " "exposure to the web site." msgstr "" #: ../install/index.php:873 ../install/index.php:879 ../install/index.php:915 msgid "NOTE:" msgstr "" #: ../install/index.php:879 msgid "" "For remote pollers, it is critical that\n" "\t\t\t\t\t\t\t\tthe paths that you will be updating frequently, including " "the plugins, scripts,\n" "\t\t\t\t\t\t\t\tand resources paths have read/write access as the data " "collector will have to\n" "\t\t\t\t\t\t\t\tupdate these paths from the main web server content." msgstr "" #: ../install/index.php:889 msgid "Template Setup" msgstr "" #: ../install/index.php:891 msgid "" "Please select the Device Templates that you wish to use after the Install. " "If you Operating System is Windows, you need to ensure that you select the " "'Windows Device' Template. If your Operating System is Linux/UNIX, make " "sure you select the 'Local Linux Machine' Device Template." msgstr "" #: ../install/index.php:893 msgid "" "Device Templates allow you to monitor and graph a vast assortment of data " "within Cacti. After you select the desired Device Templates, press 'Finish' " "and the installation will complete. Please be patient on this step, as the " "importation of the Device Templates can take a few minutes." msgstr "" #: ../install/index.php:899 ../plugins.php:378 msgid "Author" msgstr "" #: ../install/index.php:899 msgid "Homepage" msgstr "" #: ../install/index.php:917 msgid "" "Press 'Finish' to complete the installation process after selecting your " "Device Templates." msgstr "" #: ../install/index.php:921 #, fuzzy msgid "Upgrade Results" msgstr "ЕкÑпортиране на резултати" #: ../install/index.php:928 msgid "[Fail]" msgstr "" #: ../install/index.php:929 msgid "[Success]" msgstr "" #: ../install/index.php:930 msgid "[Skipped]" msgstr "" #: ../install/index.php:934 msgid "Database upgrade completed!" msgstr "" #: ../install/index.php:955 msgid "" "One or more of the SQL queries needed to upgraded your Cacti installation " "has failed. Please see below for more details. Your Cacti MySQL user must " "have SELECT, INSERT, UPDATE, DELETE, ALTER, CREATE, and DROP permissions. You should try executing the failed queries as \"root\" " "to ensure that you do not have a permissions problem." msgstr "" #: ../install/index.php:955 ../utilities.php:2010 ../utilities.php:2011 #: ../utilities.php:2014 ../utilities.php:2015 msgid "WARNING:" msgstr "" #: ../install/index.php:960 msgid "No database action needed." msgstr "" #: ../install/index.php:965 msgid "Important Upgrade Notice" msgstr "" #: ../install/index.php:966 msgid "" "Before you continue with the installation, you must update " "your /etc/crontab file to point to poller.php instead of " "cmd.php." msgstr "" #: ../install/index.php:967 msgid "" "See the sample crontab entry below with the change made in red. Your crontab " "line will look slightly different based upon your setup." msgstr "" #: ../install/index.php:969 msgid "Once you have made this change, please click Finish to continue." msgstr "" #: ../install/index.php:976 #, fuzzy msgctxt "Dialog: previous" msgid "Previous" msgstr "Общ изглед" #: ../install/index.php:977 msgctxt "Dialog: complete" msgid "Finish" msgstr "" #: ../install/index.php:977 #, fuzzy msgctxt "Dialog: go to the next page" msgid "Next" msgstr "Следващ" #: ../install/index.php:978 msgctxt "Dialog: test connection" msgid "Test Connection" msgstr "" #: ../install/index.php:978 msgid "Test remote database connection" msgstr "" #: ../lib/aggregate.php:42 msgid "Display Graphs from this Aggregate" msgstr "" #: ../lib/api_aggregate.php:1101 msgid "" "The Graphs chosen for the Aggregate Graph below represent Graphs from " "multiple Graph Templates. Aggregate does not support creating Aggregate " "Graphs from multiple Graph Templates." msgstr "" #: ../lib/api_aggregate.php:1102 ../lib/api_aggregate.php:1121 msgid "Press 'Return' to return and select different Graphs" msgstr "" #: ../lib/api_aggregate.php:1120 msgid "" "The Graphs chosen for the Aggregate Graph do not use Graph Templates. " "Aggregate does not support creating Aggregate Graphs from non-templated " "graphs." msgstr "" #: ../lib/api_aggregate.php:1210 ../lib/functions.php:1932 msgid "Graph Items" msgstr "Графични елементи" #: ../lib/api_aggregate.php:1210 ../lib/functions.php:2064 msgid "Graph Template Items" msgstr "Шаблони за елементи на графиката" #: ../lib/api_aggregate.php:1214 ../lib/html.php:855 #, fuzzy msgid "Graph Item" msgstr "Графични елементи" #: ../lib/api_aggregate.php:1217 ../lib/html.php:858 msgid "CF Type" msgstr "" #: ../lib/api_aggregate.php:1218 ../lib/html.php:860 msgid "Item Color" msgstr "" #: ../lib/api_aggregate.php:1219 #, fuzzy msgid "Color Template" msgstr "ЕкÑпортиране на шаблони" #: ../lib/api_aggregate.php:1220 msgid "Skip" msgstr "" #: ../lib/api_automation.php:124 #, fuzzy msgid "Matching Devices" msgstr "УÑтройÑтва" #: ../lib/api_automation.php:139 ../lib/api_automation.php:994 #: ../lib/html_reports.php:268 ../lib/html_reports.php:1211 #: ../lib/html_reports.php:1481 ../lib/html_reports.php:1492 #: ../lib/rrd.php:2653 ../utilities.php:301 ../utilities.php:2338 msgid "Type" msgstr "" #: ../lib/api_automation.php:299 msgid "No Matching Devices" msgstr "" #: ../lib/api_automation.php:408 ../lib/api_automation.php:674 #: ../lib/api_automation.php:799 msgid "Matching Objects" msgstr "" #: ../lib/api_automation.php:562 #, fuzzy msgid "Graph ID" msgstr "Графика" #: ../lib/api_automation.php:689 msgid "Objects" msgstr "" #: ../lib/api_automation.php:760 msgid "" "A blue font color indicates that the rule will be applied to the objects in " "question. Other objects will not be subject to the rule." msgstr "" #: ../lib/api_automation.php:760 #, php-format msgid "Matching Objects [ %s ]" msgstr "" #: ../lib/api_automation.php:810 #, fuzzy msgid "Device Status" msgstr "УÑтройÑтва" #: ../lib/api_automation.php:832 msgid "There are no Objects that match this rule." msgstr "" #: ../lib/api_automation.php:876 msgid "Error in data query" msgstr "" #: ../lib/api_automation.php:980 #, fuzzy msgid "Matching Items" msgstr "Графични елементи" #: ../lib/api_automation.php:1142 msgid "Resulting Branch" msgstr "" #: ../lib/api_automation.php:1181 msgid "No Items Found" msgstr "" #: ../lib/api_automation.php:1209 ../lib/api_automation.php:1271 msgid "Field" msgstr "" #: ../lib/api_automation.php:1211 ../lib/api_automation.php:1273 msgid "Pattern" msgstr "" #: ../lib/api_automation.php:1254 msgid "No Device Selection Criteria" msgstr "" #: ../lib/api_automation.php:1316 msgid "No Graph Creation Criteria" msgstr "" #: ../lib/api_automation.php:1335 msgid "Propagate Change" msgstr "" #: ../lib/api_automation.php:1336 msgid "Search Pattern" msgstr "" #: ../lib/api_automation.php:1337 msgid "Replace Pattern" msgstr "" #: ../lib/api_automation.php:1381 msgid "No Tree Creation Criteria" msgstr "" #: ../lib/api_automation.php:1941 #, php-format msgid "Rule Item [edit rule item for %s: %s]" msgstr "" #: ../lib/api_automation.php:1943 #, php-format msgid "Rule Item [new rule item for %s: %s]" msgstr "" #: ../lib/api_automation.php:2634 #, fuzzy msgid "Added by Cacti Automation" msgstr "За cacti" #: ../lib/api_device.php:398 msgid "Device is Disabled" msgstr "" #: ../lib/api_device.php:399 msgid "Device Availability Check Bypassed" msgstr "" #: ../lib/api_device.php:406 #, fuzzy msgid "SNMP Information" msgstr "SNMP ВерÑиÑ" #: ../lib/api_device.php:410 msgid "SNMP not in use" msgstr "" #: ../lib/api_device.php:418 ../lib/api_device.php:422 #: ../lib/api_device.php:434 #, fuzzy msgid "SNMP error" msgstr "SNMP Порт" #: ../lib/api_device.php:441 msgid "System:" msgstr "" #: ../lib/api_device.php:447 msgid "Uptime:" msgstr "" #: ../lib/api_device.php:448 msgid "days" msgstr "" #: ../lib/api_device.php:448 msgid "hours" msgstr "" #: ../lib/api_device.php:448 msgid "minutes" msgstr "" #: ../lib/api_device.php:449 msgid "Hostname:" msgstr "" #: ../lib/api_device.php:450 #, fuzzy msgid "Location:" msgstr "ДейÑтвиÑ" #: ../lib/api_device.php:451 msgid "Contact:" msgstr "" #: ../lib/api_device.php:480 ../lib/functions.php:3814 #: ../lib/functions.php:3816 ../lib/functions.php:3820 #, fuzzy msgid "Ping Results" msgstr "ЕкÑпортиране на резултати" #: ../lib/api_device.php:485 msgid "No Ping or SNMP Availability Check in Use" msgstr "" #: ../lib/auth.php:312 msgid "Web Basic" msgstr "" #: ../lib/clog_webapi.php:124 msgid "" "Click 'Continue' to purge the Cacti log file.


    Note: If logging is " "set to Cacti and Syslog, the log information will remain in Syslog." msgstr "" #: ../lib/clog_webapi.php:130 msgid "Purge cacti.log" msgstr "" #: ../lib/clog_webapi.php:156 ../utilities.php:975 msgid "Log Filters" msgstr "" #: ../lib/clog_webapi.php:183 #, php-format msgid "Log [Total Lines: %d %s - Additional Filter in Affect]" msgstr "" #: ../lib/clog_webapi.php:185 #, php-format msgid "Log [Total Lines: %d %s - No Other Filter in Affect]" msgstr "" #: ../lib/clog_webapi.php:195 ../utilities.php:1084 ../utilities.php:1403 #: ../utilities.php:1611 ../utilities.php:1691 ../utilities.php:2332 #: ../utilities.php:2542 msgid "Entries" msgstr "" #: ../lib/clog_webapi.php:311 ../utilities.php:984 msgid "Tail Lines" msgstr "" #: ../lib/clog_webapi.php:327 ../utilities.php:996 msgid "Message Type" msgstr "" #: ../lib/clog_webapi.php:332 ../utilities.php:1001 msgid "Stats" msgstr "" #: ../lib/clog_webapi.php:335 ../utilities.php:1004 msgid "Debug" msgstr "" #: ../lib/clog_webapi.php:336 ../utilities.php:1005 msgid "SQL Calls" msgstr "" #: ../lib/clog_webapi.php:367 ../utilities.php:1032 msgid "Display Order" msgstr "" #: ../lib/clog_webapi.php:371 ../utilities.php:1036 msgid "Newest First" msgstr "" #: ../lib/clog_webapi.php:372 ../utilities.php:1037 msgid "Oldest First" msgstr "" #: ../lib/functions.php:676 #, php-format msgid "Error %s is not readable" msgstr "" #: ../lib/functions.php:1818 ../lib/functions.php:1823 msgid "Logged in as" msgstr "" #: ../lib/functions.php:1818 msgid "Login as Regular User" msgstr "" #: ../lib/functions.php:1818 msgid "guest" msgstr "" #: ../lib/functions.php:1825 msgid "Edit Profile" msgstr "" #: ../lib/functions.php:1827 msgid "Logout" msgstr "" #: ../lib/functions.php:1844 ../lib/functions.php:1850 msgid "User Profile (Edit)" msgstr "" #: ../lib/functions.php:1862 ../lib/functions.php:1868 msgid "Tree Mode" msgstr "Дървовиден изглед" #: ../lib/functions.php:1874 msgid "List Mode" msgstr "СпиÑъчен изглед" #: ../lib/functions.php:1896 ../lib/functions.php:1902 #: ../lib/functions.php:2756 ../lib/html.php:1299 ../lib/html.php:1371 #: ../links.php:344 ../user_admin.php:1653 ../user_group_admin.php:1374 msgid "Console" msgstr "ÐдминиÑтративна конзола" #: ../lib/functions.php:1914 ../lib/functions.php:1956 #: ../lib/functions.php:1974 ../lib/functions.php:2028 #: ../lib/functions.php:2040 ../lib/functions.php:2052 #: ../lib/functions.php:2088 ../lib/functions.php:2106 #: ../lib/functions.php:2124 ../lib/functions.php:2142 #: ../lib/functions.php:2160 ../lib/functions.php:2184 #: ../lib/functions.php:2220 ../lib/functions.php:2340 #: ../lib/functions.php:2364 ../lib/functions.php:2382 #: ../lib/functions.php:2400 ../lib/functions.php:2412 #: ../lib/functions.php:2514 ../lib/functions.php:2538 #: ../lib/functions.php:2556 ../lib/functions.php:2574 #: ../lib/functions.php:2592 ../lib/functions.php:2616 msgid "(Edit)" msgstr "(Редактирай)" #: ../lib/functions.php:1938 msgid "Create New Graphs" msgstr "Създаване на нови графики" #: ../lib/functions.php:1944 msgid "Create Graphs from Data Query" msgstr "Създаване на графики от автоматизирано Ñъбиране на данни" #: ../lib/functions.php:1962 ../lib/functions.php:1980 #: ../lib/functions.php:2076 ../lib/functions.php:2166 #: ../lib/functions.php:2190 ../lib/functions.php:2346 msgid "(Remove)" msgstr "(Изтрий)" #: ../lib/functions.php:1998 ../lib/functions.php:2004 #: ../lib/functions.php:2010 ../lib/functions.php:2016 #: ../lib/functions.php:2280 msgid "View Cacti Log" msgstr "" #: ../lib/functions.php:2022 msgid "Graph Trees" msgstr "Дърво на графики" #: ../lib/functions.php:2154 msgid "Round Robin Archives" msgstr "Round Robin Archives" #: ../lib/functions.php:2196 msgid "Data Input Fields" msgstr "Полета за въвеждане на данни" #: ../lib/functions.php:2202 ../lib/functions.php:2232 #, fuzzy msgid "(Remove Item)" msgstr "(Изтрий)" #: ../lib/functions.php:2250 msgid "List unused Files" msgstr "" #: ../lib/functions.php:2262 ../lib/functions.php:2274 ../utilities.php:1780 msgid "View Poller Cache" msgstr "Виж кеш на ÑÑŠÐ±Ð¸Ñ€Ð°Ñ‰Ð¸Ñ Ñкрипт" #: ../lib/functions.php:2268 ../utilities.php:1784 #, fuzzy msgid "View Data Query Cache" msgstr "Виж кеш на ÑÑŠÐ±Ð¸Ñ€Ð°Ñ‰Ð¸Ñ Ñкрипт" #: ../lib/functions.php:2286 ../utilities.php:1168 msgid "Clear Cacti Log" msgstr "" #: ../lib/functions.php:2292 ../utilities.php:1773 msgid "View User Log" msgstr "" #: ../lib/functions.php:2298 msgid "Clear User Log" msgstr "" #: ../lib/functions.php:2304 ../utilities.php:1764 msgid "Technical Support" msgstr "" #: ../lib/functions.php:2310 ../utilities.php:1877 msgid "Boost Status" msgstr "" #: ../lib/functions.php:2316 #, fuzzy msgid "View SNMP Agent Cache" msgstr "Виж SNMP кеша" #: ../lib/functions.php:2322 msgid "View SNMP Agent Notification Log" msgstr "" #: ../lib/functions.php:2352 msgid "VDEF Items" msgstr "" #: ../lib/functions.php:2358 msgid "View SNMP Notification Receivers" msgstr "" #: ../lib/functions.php:2370 msgid "Cacti Settings" msgstr "ÐаÑтройки на cacti" #: ../lib/functions.php:2388 ../lib/functions.php:2418 #, fuzzy msgid "(Action)" msgstr "ДейÑтвиÑ" #: ../lib/functions.php:2436 msgid "Export Results" msgstr "ЕкÑпортиране на резултати" #: ../lib/functions.php:2448 ../lib/functions.php:2478 ../lib/html.php:1320 #: ../lib/html.php:1322 ../lib/html.php:1396 msgid "Reporting" msgstr "" #: ../lib/functions.php:2454 ../lib/functions.php:2484 msgid "Report Add" msgstr "" #: ../lib/functions.php:2460 ../lib/functions.php:2490 #, fuzzy msgid "Report Delete" msgstr "ЕкÑпортиране на шаблони" #: ../lib/functions.php:2466 ../lib/functions.php:2496 msgid "Report Edit" msgstr "" #: ../lib/functions.php:2472 ../lib/functions.php:2502 msgid "Report Edit Item" msgstr "" #: ../lib/functions.php:2526 #, fuzzy msgid "Color Template Items" msgstr "Шаблони за елементи на графиката" #: ../lib/functions.php:2568 #, fuzzy msgid "Aggregate Items" msgstr "Шаблони за елементи на графиката" #: ../lib/functions.php:2604 #, fuzzy msgid "Graph Rule Items" msgstr "Графични елементи" #: ../lib/functions.php:2628 #, fuzzy msgid "Tree Rule Items" msgstr "Елементи на графичното дърво" #: ../lib/functions.php:2713 msgid "Leaf" msgstr "" #: ../lib/functions.php:2727 msgid "Non Query Based" msgstr "" #: ../lib/functions.php:3435 msgid "" "Mailer Error: No TO address set!!
    If using the Test Mail " "link, please set the Alert e-mail setting." msgstr "" #: ../lib/functions.php:3747 #, php-format msgid "Authentication failed: %s" msgstr "" #: ../lib/functions.php:3751 #, php-format msgid "HELO failed: %s" msgstr "" #: ../lib/functions.php:3754 #, php-format msgid "Connect failed: %s" msgstr "" #: ../lib/functions.php:3757 msgid "SMTP error: " msgstr "" #: ../lib/functions.php:3770 msgid "" "This is a test message generated from Cacti. This message was sent to test " "the configuration of your Mail Settings." msgstr "" #: ../lib/functions.php:3771 msgid "Your email settings are currently set as follows" msgstr "" #: ../lib/functions.php:3772 msgid "Method" msgstr "" #: ../lib/functions.php:3774 msgid "Checking Configuration...
    " msgstr "" #: ../lib/functions.php:3781 msgid "PHP's Mailer Class" msgstr "" #: ../lib/functions.php:3787 msgid "Method: SMTP" msgstr "" #: ../lib/functions.php:3802 msgid "Not Shown for Security Reasons" msgstr "" #: ../lib/functions.php:3803 msgid "Security" msgstr "" #: ../lib/functions.php:3811 msgid "Ping Results:" msgstr "" #: ../lib/functions.php:3820 msgid "Bypassed" msgstr "" #: ../lib/functions.php:3828 msgid "Creating Message Text..." msgstr "" #: ../lib/functions.php:3831 msgid "Sending Message..." msgstr "" #: ../lib/functions.php:3835 msgid "Cacti Test Message" msgstr "" #: ../lib/functions.php:3837 msgid "Success!" msgstr "" #: ../lib/functions.php:3840 msgid "Message Not Sent due to ping failure." msgstr "" #: ../lib/html.php:233 #, fuzzy msgid "Data Query:" msgstr "Вземане на данни" #: ../lib/html.php:293 msgid "CSV Export of Graph Data" msgstr "" #: ../lib/html.php:294 msgid "Time Graph View" msgstr "" #: ../lib/html.php:296 msgid "Click to view just this Graph in Real-time" msgstr "" #: ../lib/html.php:299 msgid "Kill Spikes in Graphs" msgstr "" #: ../lib/html.php:336 #, fuzzy msgid "Previous" msgstr "Общ изглед" #: ../lib/html.php:339 #, php-format msgid "%d to %d of %s [ %s ]" msgstr "" #: ../lib/html.php:348 #, php-format msgid "All %d %s" msgstr "" #: ../lib/html.php:354 #, php-format msgid "No %s Found" msgstr "" #: ../lib/html.php:674 ../lib/html.php:761 #, fuzzy msgid "Select All Rows" msgstr "Избери вÑички" #: ../lib/html.php:859 msgid "Alpha %" msgstr "" #: ../lib/html.php:900 msgid "No Task" msgstr "" #: ../lib/html.php:1144 msgid "Choose an action" msgstr "" #: ../lib/html.php:1154 msgid "Execute Action" msgstr "" #: ../lib/html.php:1329 ../lib/html.php:1331 ../lib/html.php:1407 #, fuzzy msgid "Cacti Log" msgstr "ÐаÑтройки на cacti" #: ../lib/html.php:1721 msgid "Nan's" msgstr "" #: ../lib/html.php:1725 msgid "Standard Deviations" msgstr "" #: ../lib/html.php:1727 #, php-format msgid "%s Standard Deviations" msgstr "" #: ../lib/html.php:1737 msgid "Variance Outliers" msgstr "" #: ../lib/html.php:1739 #, php-format msgid "%d Outliers" msgstr "" #: ../lib/html.php:1743 msgid "Kills Per RRA" msgstr "" #: ../lib/html.php:1745 #, php-format msgid "%d Spikes" msgstr "" #: ../lib/html.php:1752 msgid "Remove StdDev" msgstr "" #: ../lib/html.php:1753 msgid "Remove Variance" msgstr "" #: ../lib/html.php:1754 msgid "Gap Fill Range" msgstr "" #: ../lib/html.php:1755 msgid "Float Range" msgstr "" #: ../lib/html.php:1756 msgid "Dry Run StdDev" msgstr "" #: ../lib/html.php:1757 msgid "Dry Run Variance" msgstr "" #: ../lib/html.php:1758 msgid "Dry Run Gap Fill Range" msgstr "" #: ../lib/html.php:1759 msgid "Dry Run Float Range" msgstr "" #: ../lib/html_filter.php:82 msgid "Apply filter to table" msgstr "" #: ../lib/html_filter.php:87 msgid "Reset filter to default values" msgstr "" #: ../lib/html_form.php:509 msgid "File Found" msgstr "" #: ../lib/html_form.php:511 msgid "Path is a Directory and not a File" msgstr "" #: ../lib/html_form.php:515 msgid "File is Not Found" msgstr "" #: ../lib/html_form.php:518 msgid "Enter a valid file path" msgstr "" #: ../lib/html_form.php:554 msgid "Directory Found" msgstr "" #: ../lib/html_form.php:556 msgid "Path is a File and not a Directory" msgstr "" #: ../lib/html_form.php:560 msgid "Directory is Not found" msgstr "" #: ../lib/html_form.php:563 msgid "Enter a valid directory path" msgstr "" #: ../lib/html_form.php:1056 msgid "NO FONT VERIFICATION POSSIBLE" msgstr "" #: ../lib/html_form_template.php:562 ../lib/html_form_template.php:577 #, php-format msgid "Data Query Data Sources must be created through %s" msgstr "" #: ../lib/html_graph.php:197 ../lib/html_tree.php:649 msgid "" "Save the current Graphs, Columns, Thumbnail, Preset, and Timeshift " "preferences to your profile" msgstr "" #: ../lib/html_graph.php:226 ../lib/html_tree.php:672 msgid "Columns" msgstr "" #: ../lib/html_graph.php:230 ../lib/html_tree.php:676 #, php-format msgid "%d Column" msgstr "" #: ../lib/html_graph.php:239 ../lib/html_reports.php:125 #: ../lib/html_tree.php:685 msgid "Thumbnails" msgstr "" #: ../lib/html_graph.php:261 ../lib/html_tree.php:707 msgid "Custom" msgstr "" #: ../lib/html_graph.php:282 ../lib/html_reports.php:1479 #: ../lib/html_reports.php:1490 ../lib/html_tree.php:728 msgid "From" msgstr "" #: ../lib/html_graph.php:288 ../lib/html_tree.php:734 msgid "Start Date Selector" msgstr "" #: ../lib/html_graph.php:291 ../lib/html_reports.php:1480 #: ../lib/html_reports.php:1491 ../lib/html_tree.php:737 msgid "To" msgstr "" #: ../lib/html_graph.php:297 ../lib/html_tree.php:743 msgid "End Date Selector" msgstr "" #: ../lib/html_graph.php:300 ../lib/html_tree.php:746 msgid "Shift Time Backward" msgstr "" #: ../lib/html_graph.php:303 ../lib/html_tree.php:749 msgid "Define Shifting Interval" msgstr "" #: ../lib/html_graph.php:316 ../lib/html_tree.php:762 msgid "Shift Time Forward" msgstr "" #: ../lib/html_graph.php:319 ../lib/html_tree.php:765 msgid "Refresh selected time span" msgstr "" #: ../lib/html_graph.php:322 ../lib/html_tree.php:768 msgid "Return to the default time span" msgstr "" #: ../lib/html_graph.php:339 msgid "Interval" msgstr "" #: ../lib/html_graph.php:351 ../lib/html_tree.php:797 msgid "Stop" msgstr "" #: ../lib/html_reports.php:35 ../lib/html_reports.php:1474 msgid "Report Name" msgstr "" #: ../lib/html_reports.php:37 msgid "New Report" msgstr "" #: ../lib/html_reports.php:38 msgid "Give this Report a descriptive Name" msgstr "" #: ../lib/html_reports.php:43 msgid "Enable Report" msgstr "" #: ../lib/html_reports.php:46 msgid "Check this box to enable this Report." msgstr "" #: ../lib/html_reports.php:51 msgid "Output Formatting" msgstr "" #: ../lib/html_reports.php:56 msgid "Use Custom Format HTML" msgstr "" #: ../lib/html_reports.php:59 msgid "Check this box if you want to use custom html and CSS for the report." msgstr "" #: ../lib/html_reports.php:64 msgid "Format File to Use" msgstr "" #: ../lib/html_reports.php:67 msgid "" "Choose the custom html wrapper and CSS file to use. This file contains both " "html and CSS to wrap around your report.\n" "\t\tIf it contains more than simply CSS, you need to place a special " " tag inside of the file. This format tag will be replaced by the " "report content. These files are located in the 'formats' directory." msgstr "" #: ../lib/html_reports.php:73 msgid "Default Text Font Size" msgstr "" #: ../lib/html_reports.php:74 msgid "" "Defines the default font size for all text in the report including the " "Report Title." msgstr "" #: ../lib/html_reports.php:81 msgid "Default Object Alignment" msgstr "" #: ../lib/html_reports.php:82 msgid "Defines the default Alignment for Text and Graphs." msgstr "" #: ../lib/html_reports.php:89 #, fuzzy msgid "Graph Linked" msgstr "Графични елементи" #: ../lib/html_reports.php:92 msgid "Should the Graphs be linked back to the Cacti site?" msgstr "" #: ../lib/html_reports.php:96 #, fuzzy msgid "Graph Settings" msgstr "Редактирай (ÐаÑтройки на графики)" #: ../lib/html_reports.php:101 #, fuzzy msgid "Graph Columns" msgstr "Графични елементи" #: ../lib/html_reports.php:105 msgid "The number of Graph columns." msgstr "" #: ../lib/html_reports.php:113 msgid "The Graph width in pixels." msgstr "" #: ../lib/html_reports.php:121 msgid "The Graph height in pixels." msgstr "" #: ../lib/html_reports.php:128 msgid "Should the Graphs be rendered as Thumbnails?" msgstr "" #: ../lib/html_reports.php:132 msgid "Email Frequency" msgstr "" #: ../lib/html_reports.php:137 msgid "Next Timestamp for Sending Mail Report" msgstr "" #: ../lib/html_reports.php:138 msgid "" "Start time for [first|next] mail to take place. All future mailing times " "will be based upon this start time. A good example would be 2:00am. The time " "must be in the future. If a fractional time is used, say 2:00am, it is " "assumed to be in the future." msgstr "" #: ../lib/html_reports.php:146 msgid "Report Interval" msgstr "" #: ../lib/html_reports.php:147 msgid "Defines a Report Frequency relative to the given Mailtime above." msgstr "" #: ../lib/html_reports.php:148 msgid "e.g. 'Week(s)' represents a weekly Reporting Interval." msgstr "" #: ../lib/html_reports.php:155 msgid "Interval Frequency" msgstr "" #: ../lib/html_reports.php:156 msgid "" "Based upon the Timespan of the Report Interval above, defines the Frequency " "within that Interval." msgstr "" #: ../lib/html_reports.php:157 msgid "" "e.g. If the Report Interval is 'Month(s)', then '2' indicates Every '2 " "Month(s) from the next Mailtime.' Lastly, if using the Month(s) Report " "Intervals, the 'Day of Week' and the 'Day of Month' are both calculated " "based upon the Mailtime you specify above." msgstr "" #: ../lib/html_reports.php:165 msgid "Email Sender/Receiver Details" msgstr "" #: ../lib/html_reports.php:170 msgid "Subject" msgstr "" #: ../lib/html_reports.php:172 #, fuzzy msgid "Cacti Report" msgstr "ÐаÑтройки на cacti" #: ../lib/html_reports.php:173 msgid "" "This value will be used as the default Email subject. The report name will " "be used if left blank." msgstr "" #: ../lib/html_reports.php:181 msgid "This Name will be used as the default E-mail Sender" msgstr "" #: ../lib/html_reports.php:189 msgid "This Address will be used as the E-mail Senders address" msgstr "" #: ../lib/html_reports.php:194 msgid "To Email Address(es)" msgstr "" #: ../lib/html_reports.php:200 msgid "Please separate multiple addresses by comma (,)" msgstr "" #: ../lib/html_reports.php:205 msgid "BCC Address(es)" msgstr "" #: ../lib/html_reports.php:211 msgid "Blind carbon copy. Please separate multiple addresses by comma (,)" msgstr "" #: ../lib/html_reports.php:216 msgid "Image attach type" msgstr "" #: ../lib/html_reports.php:219 msgid "Select one of the given Types for the Image Attachments" msgstr "" #: ../lib/html_reports.php:271 msgid "Item Type to be added." msgstr "" #: ../lib/html_reports.php:277 #, fuzzy msgid "Graph Tree" msgstr "Дърво на графики" #: ../lib/html_reports.php:281 msgid "Select a Tree to use." msgstr "" #: ../lib/html_reports.php:287 #, fuzzy msgid "Graph Tree Branch" msgstr "Дърво на графики" #: ../lib/html_reports.php:291 msgid "Select a Tree Branch to use." msgstr "" #: ../lib/html_reports.php:293 msgid "Branch:" msgstr "" #: ../lib/html_reports.php:299 ../lib/html_tree.php:593 #, fuzzy msgid "Device:" msgstr "УÑтройÑтва" #: ../lib/html_reports.php:309 msgid "Cascade to Branches" msgstr "" #: ../lib/html_reports.php:312 msgid "Should all children branch Graphs be rendered?" msgstr "" #: ../lib/html_reports.php:316 msgid "Graph Name Regular Expression" msgstr "" #: ../lib/html_reports.php:319 msgid "" "A Perl compatible regular expression (REGEXP) used to select graphs to " "include from the tree." msgstr "" #: ../lib/html_reports.php:329 msgid "Select a Device Template to use." msgstr "" #: ../lib/html_reports.php:338 msgid "Select a Device to specify a Graph" msgstr "" #: ../lib/html_reports.php:348 #, fuzzy msgid "Select a Graph Template for the host" msgstr "Шаблони за елементи на графиката" #: ../lib/html_reports.php:358 msgid "The Graph to use for this report item." msgstr "" #: ../lib/html_reports.php:368 msgid "Graph End Time is always set to Cacti's schedule." msgstr "" #: ../lib/html_reports.php:369 msgid "Graph Start Time equals Graph End Time minus given timespan" msgstr "" #: ../lib/html_reports.php:374 ../lib/html_reports.php:1214 msgid "Alignment" msgstr "" #: ../lib/html_reports.php:377 msgid "Alignment of the Item" msgstr "" #: ../lib/html_reports.php:382 msgid "Fixed Text" msgstr "" #: ../lib/html_reports.php:385 msgid "Enter descriptive Text" msgstr "" #: ../lib/html_reports.php:390 ../lib/html_reports.php:1215 msgid "Font Size" msgstr "" #: ../lib/html_reports.php:394 msgid "Font Size of the Item" msgstr "" #: ../lib/html_reports.php:457 msgid "Date/Time moved to the same time Tomorrow" msgstr "" #: ../lib/html_reports.php:640 msgid "You must select at least one Report." msgstr "" #: ../lib/html_reports.php:648 msgid "Click 'Continue' to delete the following Report(s)." msgstr "" #: ../lib/html_reports.php:655 msgid "Click 'Continue' to take ownership of the following Report(s)." msgstr "" #: ../lib/html_reports.php:662 msgid "" "Click 'Continue' to duplicate the following Report(s). You may optionally " "change the title for the new Reports" msgstr "" #: ../lib/html_reports.php:664 msgid "Name Format:" msgstr "" #: ../lib/html_reports.php:674 msgid "Click 'Continue' to enable the following Report(s)." msgstr "" #: ../lib/html_reports.php:676 msgid "" "Please be certain that those Report(s) have successfully been tested first!" msgstr "" #: ../lib/html_reports.php:682 msgid "Click 'Continue' to disable the following Reports." msgstr "" #: ../lib/html_reports.php:689 msgid "Click 'Continue' to send the following Report(s) now." msgstr "" #: ../lib/html_reports.php:735 #, php-format msgid "Unable to send Report '%d'. Please set destination e-mail addresses" msgstr "" #: ../lib/html_reports.php:740 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail subject" msgstr "" #: ../lib/html_reports.php:745 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail From Name" msgstr "" #: ../lib/html_reports.php:750 #, php-format msgid "Unable to send Report '%s'. Please set an e-mail from address" msgstr "" #: ../lib/html_reports.php:806 #, fuzzy, php-format msgid "Report Item [edit Report: %s]" msgstr "Графични елементи" #: ../lib/html_reports.php:808 #, fuzzy, php-format msgid "Report Item [new Report: %s]" msgstr "Графични елементи" #: ../lib/html_reports.php:1059 ../user_admin.php:1937 #, php-format msgid "[edit: %s]" msgstr "" #: ../lib/html_reports.php:1060 msgid "Events" msgstr "" #: ../lib/html_reports.php:1062 ../lib/import.php:1803 ../user_admin.php:1939 msgid "[new]" msgstr "" #: ../lib/html_reports.php:1094 msgid "Send Report" msgstr "" #: ../lib/html_reports.php:1172 msgid "Scheduled Events" msgstr "" #: ../lib/html_reports.php:1183 msgid "Report Preview" msgstr "" #: ../lib/html_reports.php:1212 msgid "Item Details" msgstr "" #: ../lib/html_reports.php:1213 msgid "Timespan" msgstr "" #: ../lib/html_reports.php:1252 msgid "(All Branches)" msgstr "" #: ../lib/html_reports.php:1254 msgid "(Current Branch)" msgstr "" #: ../lib/html_reports.php:1297 msgid "No Report Items" msgstr "" #: ../lib/html_reports.php:1371 msgid "Administrator Level" msgstr "" #: ../lib/html_reports.php:1371 #, php-format msgid "Reports [%s]" msgstr "" #: ../lib/html_reports.php:1371 msgid "User Level" msgstr "" #: ../lib/html_reports.php:1466 msgid "Reports" msgstr "" #: ../lib/html_reports.php:1475 ../tree.php:1562 msgid "Owner" msgstr "" #: ../lib/html_reports.php:1476 ../lib/html_reports.php:1487 msgid "Frequency" msgstr "" #: ../lib/html_reports.php:1477 ../lib/html_reports.php:1488 msgid "Last Run" msgstr "" #: ../lib/html_reports.php:1478 ../lib/html_reports.php:1489 #, fuzzy msgid "Next Run" msgstr "Следващ" #: ../lib/html_reports.php:1486 msgid "Report Title" msgstr "" #: ../lib/html_reports.php:1517 msgid "Report Disabled - No Owner" msgstr "" #: ../lib/html_reports.php:1527 msgid "Multiple" msgstr "" #: ../lib/html_reports.php:1528 msgid "Invalid" msgstr "" #: ../lib/html_reports.php:1535 msgid "No Reports Found" msgstr "" #: ../lib/html_tree.php:580 ../lib/html_tree.php:583 ../lib/html_tree.php:586 #, fuzzy msgid "Graph Template:" msgstr "Шаблони за графики" #: ../lib/html_tree.php:591 ../lib/reports.php:886 msgid "Tree:" msgstr "" #: ../lib/html_tree.php:592 ../lib/reports.php:891 msgid "Leaf:" msgstr "" #: ../lib/html_tree.php:596 msgid "Applied" msgstr "" #: ../lib/html_tree.php:596 msgid "Filter" msgstr "" #: ../lib/html_tree.php:596 #, fuzzy msgid "Graph Filters" msgstr "Графични елементи" #: ../lib/html_tree.php:642 msgid "Set/Refresh Filter" msgstr "" #: ../lib/html_utility.php:419 ../lib/html_utility.php:635 #, php-format msgid "The search term \"%s\" is not valid. Error is %s" msgstr "" #: ../lib/html_utility.php:766 msgid "There was an internal error!" msgstr "" #: ../lib/html_utility.php:767 msgid "Backtrack limit was exhausted!" msgstr "" #: ../lib/html_utility.php:768 msgid "Recursion limit was exhausted!" msgstr "" #: ../lib/html_utility.php:769 msgid "Bad UTF-8 error!" msgstr "" #: ../lib/html_utility.php:770 msgid "Bad UTF-8 offset error!" msgstr "" #: ../lib/import.php:229 msgid "written" msgstr "" #: ../lib/import.php:231 msgid "could not open" msgstr "" #: ../lib/import.php:237 msgid "not exists" msgstr "" #: ../lib/import.php:240 ../lib/import.php:244 msgid "not writable" msgstr "" #: ../lib/import.php:246 msgid "writable" msgstr "" #: ../lib/import.php:1764 #, fuzzy msgid "Import Preview Results" msgstr "ЕкÑпортиране на резултати" #: ../lib/import.php:1764 #, fuzzy msgid "Import Results" msgstr "ЕкÑпортиране на резултати" #: ../lib/import.php:1768 msgid "Cacti would make the following changes if the Package was imported:" msgstr "" #: ../lib/import.php:1770 msgid "Cacti has imported the following items for the Package:" msgstr "" #: ../lib/import.php:1773 msgid "Package Files" msgstr "" #: ../lib/import.php:1777 #, fuzzy msgid "[preview] " msgstr "Общ изглед" #: ../lib/import.php:1782 msgid "Cacti would make the following changes if the Template was imported:" msgstr "" #: ../lib/import.php:1784 msgid "Cacti has imported the following items for the Template:" msgstr "" #: ../lib/import.php:1793 msgid "[success]" msgstr "" #: ../lib/import.php:1795 msgid "[fail]" msgstr "" #: ../lib/import.php:1797 msgid "[preview]" msgstr "" #: ../lib/import.php:1801 msgid "[updated]" msgstr "" #: ../lib/import.php:1805 msgid "[unchanged]" msgstr "" #: ../lib/import.php:1841 msgid "Found Dependency:" msgstr "" #: ../lib/import.php:1843 msgid "Unmet Dependency:" msgstr "" #: ../lib/ldap.php:197 ../lib/ldap.php:376 msgid "PHP LDAP not enabled" msgstr "" #: ../lib/ldap.php:204 ../lib/ldap.php:384 msgid "No username defined" msgstr "" #: ../lib/ldap.php:232 msgid "Protocol Error, Unable to set version" msgstr "" #: ../lib/ldap.php:243 ../lib/ldap.php:448 msgid "Unable to set referrals option" msgstr "" #: ../lib/ldap.php:255 ../lib/ldap.php:461 msgid "Protocol Error, unable to start TLS communications" msgstr "" #: ../lib/ldap.php:294 ../lib/ldap.php:313 msgid "Authentication Success" msgstr "" #: ../lib/ldap.php:297 msgid "Insufficient access" msgstr "" #: ../lib/ldap.php:304 msgid "Group DN could not be found to compare" msgstr "" #: ../lib/ldap.php:321 ../lib/ldap.php:505 msgid "Protocol Error" msgstr "" #: ../lib/ldap.php:325 msgid "Authentication Failure" msgstr "" #: ../lib/ldap.php:329 ../lib/ldap.php:515 msgid "Insufficient Access" msgstr "" #: ../lib/ldap.php:333 ../lib/ldap.php:520 msgid "Unable to Connect to Server" msgstr "" #: ../lib/ldap.php:337 ../lib/ldap.php:525 msgid "Connection Timeout" msgstr "" #: ../lib/ldap.php:341 ../lib/ldap.php:530 msgid "General Bind Error, LDAP result:" msgstr "" #: ../lib/ldap.php:347 msgid "Unable to Create LDAP Object" msgstr "" #: ../lib/ldap.php:400 ../lib/ldap.php:479 msgid "User found" msgstr "" #: ../lib/ldap.php:407 msgid "Specific DN and Password required" msgstr "" #: ../lib/ldap.php:436 msgid "Protocol Error, unable to set version" msgstr "" #: ../lib/ldap.php:485 msgid "More than one matching user found" msgstr "" #: ../lib/ldap.php:490 ../lib/ldap.php:496 msgid "Unable to find users DN" msgstr "" #: ../lib/ldap.php:510 msgid "Invalid Credentials" msgstr "" #: ../lib/ldap.php:537 msgid "Unable to create LDAP connection object" msgstr "" #: ../lib/ping.php:130 msgid "ICMP Ping timed out" msgstr "" #: ../lib/ping.php:199 ../lib/ping.php:217 #, php-format msgid "ICMP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:204 ../lib/ping.php:222 #, fuzzy msgid "ICMP ping Timed out" msgstr "SNMP изтекло време" #: ../lib/ping.php:229 ../lib/ping.php:431 ../lib/ping.php:536 msgid "Destination address not specified" msgstr "" #: ../lib/ping.php:326 ../lib/ping.php:446 msgid "default" msgstr "" #: ../lib/ping.php:356 msgid "PHP version does not support IPv6" msgstr "" #: ../lib/ping.php:378 #, php-format msgid "UDP ping error: %s" msgstr "" #: ../lib/ping.php:412 #, php-format msgid "UDP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:476 msgid "PHP binary does not support IPv6" msgstr "" #: ../lib/ping.php:500 #, php-format msgid "TCP ping: socket_select() failed, reason: %s" msgstr "" #: ../lib/ping.php:515 #, php-format msgid "TCP Ping Success (%s ms)" msgstr "" #: ../lib/ping.php:525 msgid "TCP ping timed out" msgstr "" #: ../lib/ping.php:552 msgid "Ping not performed due to setting." msgstr "" #: ../lib/plugins.php:479 #, php-format msgid "Plugin %s is required for %s, and it is not installed." msgstr "" #: ../lib/plugins.php:486 msgid "Plugin cannot be installed." msgstr "" #: ../lib/plugins.php:763 ../lib/plugins.php:770 ../plugins.php:267 #, fuzzy msgid "Plugin Management" msgstr "Права на потребители" #: ../lib/reports.php:896 msgid "Host:" msgstr "" #: ../lib/reports.php:901 #, fuzzy msgid "Graph:" msgstr "Графика" #: ../lib/reports.php:1002 #, fuzzy msgid "(No Graph Template)" msgstr "Шаблони за графики" #: ../lib/reports.php:1421 msgid "Add to Report" msgstr "" #: ../lib/reports.php:1439 msgid "" "Choose the Report to associate these graphs with. The defaults for " "alignment will be used for each graph in the list below." msgstr "" #: ../lib/reports.php:1441 msgid "Report:" msgstr "" #: ../lib/reports.php:1448 #, fuzzy msgid "Graph Timespan:" msgstr "Дърво на графики" #: ../lib/reports.php:1451 #, fuzzy msgid "Graph Alignment:" msgstr "Управление на графики" #: ../lib/reports.php:1533 #, php-format msgid "Created Report Graph Item '%s'" msgstr "" #: ../lib/reports.php:1535 #, php-format msgid "Failed Adding Report Graph Item '%s' Already Exists" msgstr "" #: ../lib/reports.php:1538 #, php-format msgid "Skipped Report Graph Item '%s' Already Exists" msgstr "" #: ../lib/rrd.php:2414 #, php-format msgid "Required RRD step size is '%s'" msgstr "" #: ../lib/rrd.php:2452 #, php-format msgid "Type for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2457 #, php-format msgid "Heartbeat for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2465 #, php-format msgid "RRD minimum for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2489 #, php-format msgid "RRD maximum for Data Source '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2499 #, php-format msgid "DS '%s' missing in RRDfile" msgstr "" #: ../lib/rrd.php:2508 #, php-format msgid "DS '%s' missing in Cacti definition" msgstr "" #: ../lib/rrd.php:2525 ../lib/rrd.php:2526 #, php-format msgid "Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: ../lib/rrd.php:2540 ../lib/rrd.php:2541 #, php-format msgid "File RRA '%s' has same CF/steps (%s, %s) as '%s'" msgstr "" #: ../lib/rrd.php:2572 #, php-format msgid "XFF for cacti RRA id '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2576 #, php-format msgid "Number of rows for Cacti RRA id '%s' should be '%s'" msgstr "" #: ../lib/rrd.php:2592 #, php-format msgid "RRA '%s' missing in RRDfile" msgstr "" #: ../lib/rrd.php:2601 #, php-format msgid "RRA '%s' missing in Cacti definition" msgstr "" #: ../lib/rrd.php:2620 msgid "RRD File Information" msgstr "" #: ../lib/rrd.php:2652 #, fuzzy msgid "Data Source Items" msgstr "Източници на данни" #: ../lib/rrd.php:2654 #, fuzzy msgid "Minimal Heartbeat" msgstr "Heartbeat" #: ../lib/rrd.php:2655 msgid "Min" msgstr "" #: ../lib/rrd.php:2656 msgid "Max" msgstr "" #: ../lib/rrd.php:2657 msgid "Last DS" msgstr "" #: ../lib/rrd.php:2659 msgid "Unknown Sec" msgstr "" #: ../lib/rrd.php:2687 #, fuzzy msgid "Round Robin Archive" msgstr "Round Robin Archives" #: ../lib/rrd.php:2690 msgid "Cur Row" msgstr "" #: ../lib/rrd.php:2691 msgid "PDP per Row" msgstr "" #: ../lib/rrd.php:2692 msgid "X Files Factor" msgstr "" #: ../lib/rrd.php:2693 msgid "CDP Prep Value (0)" msgstr "" #: ../lib/rrd.php:2694 msgid "CDP Unknown Data points (0)" msgstr "" #: ../lib/rrd.php:2771 #, php-format msgid "rename %s to %s" msgstr "" #: ../lib/rrd.php:2821 msgid "Error while parsing the XML of rrdtool dump" msgstr "" #: ../lib/rrd.php:2853 ../lib/rrd.php:2908 ../lib/rrd.php:2964 #, php-format msgid "ERROR while writing XML file: %s" msgstr "" #: ../lib/rrd.php:2862 #, php-format msgid "Added Data Source(s) to RRDfile: %s" msgstr "" #: ../lib/rrd.php:2864 ../lib/rrd.php:2919 #, php-format msgid "ERROR: RRDfile %s not writeable" msgstr "" #: ../lib/rrd.php:2891 ../lib/rrd.php:2947 msgid "Error while parsing the XML of RRDtool dump" msgstr "" #: ../lib/rrd.php:2917 #, php-format msgid "Deleted RRA(s) from RRDfile: %s" msgstr "" #: ../lib/rrd.php:2973 #, php-format msgid "Deleted rra(s) from rrd file: %s" msgstr "" #: ../lib/rrd.php:2975 #, php-format msgid "ERROR: RRD file %s not writeable" msgstr "" #: ../lib/rrd.php:3180 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) removed from RRD file\n" msgstr "" #: ../lib/rrd.php:3214 #, php-format msgid "RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) adding to RRD file\n" msgstr "" #: ../lib/utility.php:640 msgid "" "MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions " "to choose. Make sure you\n" "\t\t\t\trun the very latest release though which fixes a long standing low " "level networking\n" "\t\t\t\tissue that was casuing spine many issues with reliability." msgstr "" #: ../lib/utility.php:654 ../lib/utility.php:692 #, php-format msgid "" "It is recommended that you enable InnoDB in any %s version greater than 5.1." msgstr "" #: ../lib/utility.php:667 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8_general_ci collation type as some characters take more " "than a single byte. \n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes " "and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the " "internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting " "other languages." msgstr "" #: ../lib/utility.php:677 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8 character set as some characters take more than a single " "byte.\n" "\t\t\t\t\tIf you are first just now installing Cacti, stop, make the changes " "and start over again.\n" "\t\t\t\t\tIf your Cacti has been running and is in production, see the " "internet for instructions\n" "\t\t\t\t\ton converting your databases and tables if you plan on supporting " "other languages." msgstr "" #: ../lib/utility.php:705 msgid "" "When using Cacti with languages other than English, it is important to use\n" "\t\t\t\t\tthe utf8mb4_unicode_ci collation type as some characters take more " "than a single byte." msgstr "" #: ../lib/utility.php:712 msgid "" "When using Cacti with languages other than English, it is important ot use\n" "\t\t\t\t\tthe utf8mb4 character set as some characters take more than a " "single byte." msgstr "" #: ../lib/utility.php:722 #, php-format msgid "" "Depending on the number of logins and use of spine data collector, \n" "\t\t\t\t%s will need many connections. The calculation for spine is:\n" "\t\t\t\ttotal_connections = total_processes * (total_threads + " "script_servers + 1), then you\n" "\t\t\t\tmust leave headroom for user connections, which will change " "depending on the number of\n" "\t\t\t\tconcurrent login accounts." msgstr "" #: ../lib/utility.php:731 #, php-format msgid "" "If using the Cacti Performance Booster and choosing a memory storage " "engine,\n" "\t\t\t\tyou have to be careful to flush your Performance Booster buffer " "before the system runs\n" "\t\t\t\tout of memory table space. This is done two ways, first reducing " "the size of your output\n" "\t\t\t\tcolumn to just the right size. This column is in the tables " "poller_output, \n" "\t\t\t\tand poller_output_boost. The second thing you can do is allocate " "more memory to memory\n" "\t\t\t\ttables. We have arbitrarily chosen a recommended value of 10% of " "system memory, but \n" "\t\t\t\tif you are using SSD disk drives, or have a smaller system, you may " "ignore this recommendation\n" "\t\t\t\tor choose a different storage engine. You may see the expected " "consumption of the \n" "\t\t\t\tPerformance Booster tables under Console -> System Utilities -> View " "Boost Status." msgstr "" #: ../lib/utility.php:744 msgid "" "Keeping the table cache larger means less file open/close operations when\n" "\t\t\t\tusing innodb_file_per_table." msgstr "" #: ../lib/utility.php:750 msgid "" "With Remote polling capabilities, large amounts of data \n" "\t\t\t\twill be synced from the main server to the remote pollers. \n" "\t\t\t\tTherefore, keep this value at or above 16M." msgstr "" #: ../lib/utility.php:757 msgid "" "When executing subqueries, having a larger temporary table size, \n" "\t\t\t\tkeep those temporary tables in memory." msgstr "" #: ../lib/utility.php:763 msgid "" "When performing joins, if they are below this size, they will \n" "\t\t\t\tbe kept in memory and never written to a temporary file." msgstr "" #: ../lib/utility.php:769 #, php-format msgid "" "When using InnoDB storage it is important to keep your table spaces\n" "\t\t\t\tseparate. This makes managing the tables simpler for long time " "users of %s.\n" "\t\t\t\tIf you are running with this currently off, you can migrate to the " "per file storage\n" "\t\t\t\tby enabling the feature, and then running an alter statement on all " "InnoDB tables." msgstr "" #: ../lib/utility.php:777 #, php-format msgid "" "InnoDB will hold as much tables and indexes in system memory as is " "possible.\n" "\t\t\t\tTherefore, you should make the innodb_buffer_pool large enough to " "hold as much\n" "\t\t\t\tof the tables and index in memory. Checking the size of the /var/" "lib/mysql/cacti\n" "\t\t\t\tdirectory will help in determining this value. We are recommending " "25% of your systems\n" "\t\t\t\ttotal memory, but your requirements will vary depending on your " "systems size." msgstr "" #: ../lib/utility.php:786 #, php-format msgid "" "With modern SSD type storage, this operation actually degrades the disk\n" "\t\t\t\tmore rapidly and adds a 50% overhead on all write operations." msgstr "" #: ../lib/utility.php:792 msgid "" "This is where metadata is stored. If you had a lot of tables, it would be " "useful to increase this." msgstr "" #: ../lib/utility.php:797 msgid "" "Rogue queries should not for the database to go offline to others. Kill " "these\n" "\t\t\t\tqueries before they kill your system." msgstr "" #: ../lib/utility.php:807 #, php-format msgid "" "Setting this value to 2 means that you will flush all transactions every\n" "\t\t\t\tsecond rather than at commit. This allows %s to perform writing " "less often." msgstr "" #: ../lib/utility.php:813 msgid "" "With modern SSD type storage, having multiple io threads is advantageous " "for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:822 #, php-format msgid "" "As of %s %s, the you can control how often %s flushes transactions to disk. " "The default is 1 second, but in high I/O systems setting to a value greater " "than 1 can allow disk I/O to be more sequential" msgstr "" #: ../lib/utility.php:827 msgid "" "With modern SSD type storage, having multiple read io threads is " "advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:833 msgid "" "With modern SSD type storage, having multiple write io threads is " "advantageous for\n" "\t\t\t\t\tapplications with high io characteristics." msgstr "" #: ../lib/utility.php:839 #, php-format msgid "" "%s will divide the innodb_buffer_pool into memory regions to improve " "performance.\n" "\t\t\t\t\tThe max value is 64. When your innodb_buffer_pool is less than " "1GB, you should use the pool size\n" "\t\t\t\t\tdivided by 128MB. Continue to use this equation upto the max of " "64." msgstr "" #: ../lib/utility.php:846 #, php-format msgid "%s Tuning" msgstr "" #: ../lib/utility.php:846 msgid "Documentation" msgstr "" #: ../lib/utility.php:846 msgid "Note: Many changes below require a database restart" msgstr "" #: ../lib/vdef.php:75 msgid "A useful name for this VDEF." msgstr "" #: ../links.php:191 msgid "Click 'Continue' to Enable the following Page(s)." msgstr "" #: ../links.php:196 msgid "Enable Page(s)" msgstr "" #: ../links.php:200 msgid "Click 'Continue' to Disable the following Page(s)." msgstr "" #: ../links.php:205 msgid "Disable Page(s)" msgstr "" #: ../links.php:209 msgid "Click 'Continue' to Delete the following Page(s)." msgstr "" #: ../links.php:214 msgid "Delete Page(s)" msgstr "" #: ../links.php:217 msgid "You must select at least one page." msgstr "" #: ../links.php:315 msgid "Links" msgstr "" #: ../links.php:328 msgid "Apply Filter" msgstr "" #: ../links.php:331 msgid "Reset filters" msgstr "" #: ../links.php:345 ../links.php:508 ../user_admin.php:1654 #: ../user_group_admin.php:1375 msgid "Top Tab" msgstr "" #: ../links.php:346 ../user_admin.php:1655 ../user_group_admin.php:1376 #, fuzzy msgid "Bottom Console" msgstr "ÐдминиÑтративна конзола" #: ../links.php:347 ../user_admin.php:1656 ../user_group_admin.php:1377 #, fuzzy msgid "Top Console" msgstr "ÐдминиÑтративна конзола" #: ../links.php:378 msgid "Page" msgstr "" #: ../links.php:380 ../links.php:500 ../links.php:505 msgid "Style" msgstr "" #: ../links.php:392 msgid "Edit Page" msgstr "" #: ../links.php:395 #, fuzzy msgid "View Page" msgstr "Виж SNMP кеша" #: ../links.php:419 msgid "Sort for Ordering" msgstr "" #: ../links.php:428 msgid "No Pages Found" msgstr "" #: ../links.php:509 #, fuzzy msgid "Console Menu" msgstr "ÐдминиÑтративна конзола" #: ../links.php:510 msgid "Bottom of Console Page" msgstr "" #: ../links.php:511 msgid "Top of Console Page" msgstr "" #: ../links.php:513 msgid "Where should this page appear?" msgstr "" #: ../links.php:517 msgid "Console Menu Section" msgstr "" #: ../links.php:520 msgid "" "Under which Console heading should this item appear? (All External Link " "menus will appear between Configuration and Utilities)" msgstr "" #: ../links.php:524 msgid "New Console Section" msgstr "" #: ../links.php:527 msgid "If you don't like any of the choices above, type a new title in here." msgstr "" #: ../links.php:531 msgid "Tab/Menu Name" msgstr "" #: ../links.php:534 msgid "The text that will appear in the tab or menu." msgstr "" #: ../links.php:538 msgid "Content File/URL" msgstr "" #: ../links.php:542 msgid "Web URL Below" msgstr "" #: ../links.php:543 msgid "" "The file that contains the content for this page. This file needs to be in " "the Cacti 'include/content/' directory." msgstr "" #: ../links.php:547 msgid "Web URL Location" msgstr "" #: ../links.php:549 msgid "" "The valid URL to use for this external link. Must include the type, for " "example http://www.cacti.net. Note that many websites do not allow them to " "be embedded in an iframe from a foreign site, and therefore External Linking " "may not work." msgstr "" #: ../links.php:567 #, php-format msgid "External Links [edit: %s]" msgstr "" #: ../links.php:569 msgid "External Links [new]" msgstr "" #: ../logout.php:70 ../logout.php:119 msgid "Automatic Logout" msgstr "" #: ../logout.php:72 ../logout.php:121 msgid "You have been logged out of Cacti due to a session timeout." msgstr "" #: ../logout.php:73 ../logout.php:122 #, php-format msgid "Please close your browser or %sLogin Again%s" msgstr "" #: ../managers.php:40 ../managers.php:226 #, fuzzy msgid "Notifications" msgstr "ДейÑтвиÑ" #: ../managers.php:41 ../managers.php:227 msgid "Logs" msgstr "" #: ../managers.php:141 ../utilities.php:1821 msgid "SNMP Notification Receivers" msgstr "" #: ../managers.php:156 ../managers.php:231 ../managers.php:539 #: ../managers.php:793 msgid "Receivers" msgstr "" #: ../managers.php:223 msgid "Id" msgstr "" #: ../managers.php:257 msgid "No SNMP Notification Receivers" msgstr "" #: ../managers.php:288 #, php-format msgid "SNMP Notification Receiver [edit: %s]" msgstr "" #: ../managers.php:290 msgid "SNMP Notification Receiver [new]" msgstr "" #: ../managers.php:518 ../managers.php:607 ../utilities.php:2263 #: ../utilities.php:2338 msgid "MIB" msgstr "" #: ../managers.php:607 msgid "Kind" msgstr "" #: ../managers.php:607 ../utilities.php:2338 msgid "Max-Access" msgstr "" #: ../managers.php:607 msgid "Monitored" msgstr "" #: ../managers.php:607 ../utilities.php:1409 ../utilities.php:2338 msgid "OID" msgstr "" #: ../managers.php:634 msgid "No SNMP Notifications" msgstr "" #: ../managers.php:730 ../utilities.php:2516 msgid "Severity" msgstr "" #: ../managers.php:749 ../utilities.php:2559 msgid "Purge Notification Log" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Notification" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Time" msgstr "" #: ../managers.php:797 ../utilities.php:2613 msgid "Varbinds" msgstr "" #: ../managers.php:803 msgid "Severity Level" msgstr "" #: ../managers.php:821 ../utilities.php:2635 msgid "No SNMP Notification Log Entries" msgstr "" #: ../managers.php:998 msgid "Click 'Continue' to delete the following Notification Receiver" msgid_plural "Click 'Continue' to delete following Notification Receiver" msgstr[0] "" msgstr[1] "" #: ../managers.php:1000 msgid "Click 'Continue' to enable the following Notification Receiver" msgid_plural "Click 'Continue' to enable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: ../managers.php:1002 msgid "Click 'Continue' to disable the following Notification Receiver" msgid_plural "Click 'Continue' to disable following Notification Receiver" msgstr[0] "" msgstr[1] "" #: ../managers.php:1059 msgid "" "Click 'Continue' to forward the following Notification Objects to this " "Notification Receiver." msgstr "" #: ../managers.php:1060 msgid "" "Click 'Continue' to disable forwarding the following Notification Objects to " "this Notification Receiver." msgstr "" #: ../managers.php:1069 msgid "Disable Notification Objects" msgstr "" #: ../managers.php:1071 msgid "You must select at least one notification object." msgstr "" #: ../plugins.php:28 msgid "Install" msgstr "" #: ../plugins.php:31 msgid "Uninstall" msgstr "" #: ../plugins.php:36 msgid "Not Compatible" msgstr "" #: ../plugins.php:37 ../plugins.php:291 ../utilities.php:417 msgid "Not Installed" msgstr "" #: ../plugins.php:39 msgid "Awaiting Configuration" msgstr "" #: ../plugins.php:40 msgid "Awaiting Upgrade" msgstr "" #: ../plugins.php:167 msgid "Not Stated" msgstr "" #: ../plugins.php:289 msgid "Active/Installed" msgstr "" #: ../plugins.php:290 msgid "Configuration Issues" msgstr "" #: ../plugins.php:295 ../plugins.php:365 msgid "Plugins" msgstr "" #: ../plugins.php:374 msgid "" "Actions available include 'Install', 'Activate', 'Disable', 'Enable', " "'Uninstall'." msgstr "" #: ../plugins.php:375 msgid "Plugin Name" msgstr "" #: ../plugins.php:375 msgid "" "The name for this Plugin. The name is controlled by the directory it " "resides in." msgstr "" #: ../plugins.php:376 msgid "A description that the Plugins author has given to the Plugin." msgstr "" #: ../plugins.php:376 msgid "Plugin Description" msgstr "" #: ../plugins.php:377 msgid "The status of this Plugin." msgstr "" #: ../plugins.php:378 msgid "The author of this Plugin." msgstr "" #: ../plugins.php:379 msgid "The version of this Plugin." msgstr "" #: ../plugins.php:380 msgid "Load Order" msgstr "" #: ../plugins.php:380 msgid "" "The load order of the Plugin. You can change the load order by first " "sorting by it, then moving a Plugin either up or down." msgstr "" #: ../plugins.php:406 msgid "No Plugins Found" msgstr "" #: ../plugins.php:424 msgid "ERROR: Directory Missing" msgstr "" #: ../plugins.php:434 msgid "Order Before Previous Plugin" msgstr "" #: ../plugins.php:439 msgid "Order After Next Plugin" msgstr "" #: ../plugins.php:463 msgid "Install Plugin" msgstr "" #: ../plugins.php:467 ../plugins.php:471 ../plugins.php:474 msgid "Uninstall Plugin" msgstr "" #: ../plugins.php:468 msgid "Disable Plugin" msgstr "" #: ../plugins.php:475 msgid "Enable Plugin" msgstr "" #: ../plugins.php:478 msgid "Plugin is not compatible" msgstr "" #: ../pollers.php:32 msgid "Full Sync" msgstr "" #: ../pollers.php:36 msgid "New/Idle" msgstr "" #: ../pollers.php:39 msgid "Unknown/Down" msgstr "" #: ../pollers.php:48 msgid "Data Collector Information" msgstr "" #: ../pollers.php:53 #, fuzzy msgid "The primary name for this Data Collector." msgstr "Изберете име за този източник на данни." #: ../pollers.php:56 msgid "New Data Collector" msgstr "" #: ../pollers.php:61 msgid "Web Site Hostname" msgstr "" #: ../pollers.php:62 msgid "" "The hostname for Data Collector. It may have to be a Fully Qualified Domain " "name for the remote Pollers to contact it for activities such as re-" "indexing, Real-time graphing, etc." msgstr "" #: ../pollers.php:71 msgid "Notes for this Data Collectors Database." msgstr "" #: ../pollers.php:78 msgid "Remote Database Connection" msgstr "" #: ../pollers.php:83 #, fuzzy msgid "The hostname for the remote database server." msgstr "Изберете име за този източник на данни." #: ../pollers.php:91 msgid "Remote Database Name" msgstr "" #: ../pollers.php:92 #, fuzzy msgid "The name of the remote database." msgstr "Името зададено за този шаблон за данни" #: ../pollers.php:100 msgid "Remote Database User" msgstr "" #: ../pollers.php:101 msgid "The user name to use to connect to the remote database." msgstr "" #: ../pollers.php:109 msgid "Remote Database Password" msgstr "" #: ../pollers.php:110 msgid "The user password to use to connect to the remote database." msgstr "" #: ../pollers.php:118 msgid "Remote Database Port" msgstr "" #: ../pollers.php:119 msgid "The TCP port to use to connect to the remote database." msgstr "" #: ../pollers.php:127 msgid "Remote Database SSL" msgstr "" #: ../pollers.php:128 msgid "If the remote database uses SSL to connect, check the checkbox below." msgstr "" #: ../pollers.php:283 msgid "" "Click 'Continue' to delete the following Data Collector. Note, all devices " "will be disassociated from this Data Collector and mapped back to the Main " "Cacti Data Collector." msgid_plural "" "Click 'Continue' to delete all following Data Collectors. Note, all devices " "will be disassociated from these Data Collectors and mapped back to the Main " "Cacti Data Collector." msgstr[0] "" msgstr[1] "" #: ../pollers.php:288 msgid "Delete Data Collector" msgid_plural "Delete Data Collectors" msgstr[0] "" msgstr[1] "" #: ../pollers.php:292 msgid "Click 'Continue' to disable the following Data Collector." msgid_plural "Click 'Continue' to disable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: ../pollers.php:297 msgid "Disable Data Collector" msgid_plural "Disable Data Collectors" msgstr[0] "" msgstr[1] "" #: ../pollers.php:301 msgid "Click 'Continue' to enable the following Data Collector." msgid_plural "Click 'Continue' to enable the following Data Collectors." msgstr[0] "" msgstr[1] "" #: ../pollers.php:306 ../pollers.php:315 msgid "Enable Data Collector" msgid_plural "Enable Data Collectors" msgstr[0] "" msgstr[1] "" #: ../pollers.php:310 msgid "" "Click 'Continue' to Synchronize the Remote Data Collector for Offline " "Operation." msgid_plural "" "Click 'Continue' to Synchronize the Remote Data Collectors for Offline " "Operation." msgstr[0] "" msgstr[1] "" #: ../pollers.php:318 ../sites.php:283 msgid "You must select at least one Site." msgstr "" #: ../pollers.php:351 ../sites.php:316 #, php-format msgid "Site [edit: %s]" msgstr "" #: ../pollers.php:353 ../sites.php:318 msgid "Site [new]" msgstr "" #: ../pollers.php:379 msgid "" "Remote Data Collectors must be able to communicate to the Main Data " "Collector, and vice versa. Use this button to verify that the Main Data " "Collector can communicate to this Remote Data Collector." msgstr "" #: ../pollers.php:387 msgid "Test Connection" msgstr "" #: ../pollers.php:387 msgid "Test Database Connection" msgstr "" #: ../pollers.php:611 msgid "Collector Name" msgstr "" #: ../pollers.php:611 #, fuzzy msgid "The Name of this Data Collector." msgstr "Името зададено за този шаблон за данни" #: ../pollers.php:612 msgid "The unique id associated with this Data Collector." msgstr "" #: ../pollers.php:613 msgid "The Hostname where the Data Collector is running." msgstr "" #: ../pollers.php:614 msgid "The Status of this Data Collector." msgstr "" #: ../pollers.php:615 msgid "Polling Time" msgstr "" #: ../pollers.php:615 msgid "The last data collection time for this Data Collector." msgstr "" #: ../pollers.php:616 msgid "The number of Devices associated with this Data Collector." msgstr "" #: ../pollers.php:617 #, fuzzy msgid "SNMP Gets" msgstr "SNMP Порт" #: ../pollers.php:617 msgid "The number of SNMP gets associated with this Collector." msgstr "" #: ../pollers.php:618 #, fuzzy msgid "Scripts" msgstr "Скрипт" #: ../pollers.php:618 msgid "The number of script calls associated with this Data Collector." msgstr "" #: ../pollers.php:619 msgid "Servers" msgstr "" #: ../pollers.php:619 msgid "The number of script server calls associated with this Data Collector." msgstr "" #: ../pollers.php:620 msgid "Last Finished" msgstr "" #: ../pollers.php:620 #, fuzzy msgid "The last time this Data Collector completed." msgstr "Името зададено за този шаблон за данни" #: ../pollers.php:621 msgid "Last Update" msgstr "" #: ../pollers.php:621 msgid "The last time this Data Collector checked in with the main Cacti site." msgstr "" #: ../pollers.php:656 msgid "No Data Collectors Found" msgstr "" #: ../rrdcleaner.php:30 ../tree.php:31 msgctxt "dropdown action" msgid "Delete" msgstr "" #: ../rrdcleaner.php:31 msgctxt "dropdown action" msgid "Archive" msgstr "" #: ../rrdcleaner.php:347 msgid "RRD File Name" msgstr "" #: ../rrdcleaner.php:348 #, fuzzy msgid "DS Name" msgstr "Име" #: ../rrdcleaner.php:349 msgid "DS ID" msgstr "" #: ../rrdcleaner.php:350 #, fuzzy msgid "Template ID" msgstr "Шаблони за елементи на графиката" #: ../rrdcleaner.php:352 #, fuzzy msgid "Last Modified" msgstr "СпиÑъчен изглед" #: ../rrdcleaner.php:353 msgid "Size [KB]" msgstr "" #: ../rrdcleaner.php:364 ../rrdcleaner.php:365 msgid "Deleted" msgstr "" #: ../rrdcleaner.php:373 msgid "No unused RRD Files" msgstr "" #: ../rrdcleaner.php:395 msgid "Total Size [MB]:" msgstr "" #: ../rrdcleaner.php:397 msgid "Last Scan:" msgstr "" #: ../rrdcleaner.php:481 msgid "Time Since Update" msgstr "" #: ../rrdcleaner.php:497 msgid "RRDfiles" msgstr "" #: ../rrdcleaner.php:512 ../user_domains.php:642 ../user_group_admin.php:1827 #: ../user_group_admin.php:2182 ../user_group_admin.php:2288 #: ../user_group_admin.php:2375 ../user_group_admin.php:2462 #: ../user_group_admin.php:2549 msgctxt "filter: use" msgid "Go" msgstr "" #: ../rrdcleaner.php:515 ../user_group_admin.php:1830 #: ../user_group_admin.php:2185 ../user_group_admin.php:2291 #: ../user_group_admin.php:2378 ../user_group_admin.php:2465 msgctxt "filter: reset" msgid "Clear" msgstr "" #: ../rrdcleaner.php:518 msgid "Rescan" msgstr "" #: ../rrdcleaner.php:521 #, fuzzy msgid "Delete All" msgstr "Избери вÑички" #: ../rrdcleaner.php:521 msgid "Delete All Unknown RRDfiles" msgstr "" #: ../rrdcleaner.php:522 msgid "Archive All" msgstr "" #: ../rrdcleaner.php:522 msgid "Archive All Unknown RRDfiles" msgstr "" #: ../settings.php:138 #, fuzzy, php-format msgid "Cacti Settings (%s)" msgstr "ÐаÑтройки на cacti" #: ../settings.php:191 #, fuzzy msgid "Select Plugin(s)" msgstr "Избери вÑички" #: ../settings.php:193 msgid "Plugins Selected" msgstr "" #: ../settings.php:208 #, fuzzy msgid "Select File(s)" msgstr "Избери вÑички" #: ../settings.php:210 msgid "Files Selected" msgstr "" #: ../settings.php:225 #, fuzzy msgid "Select Template(s)" msgstr "ЕкÑпортиране на шаблони" #: ../settings.php:230 msgid "All Templates Selected" msgstr "" #: ../settings.php:281 msgid "Poller Interval must be less than Cron Interval" msgstr "" #: ../settings.php:303 msgid "Test Email Results" msgstr "" #: ../sites.php:35 msgid "Site Information" msgstr "" #: ../sites.php:41 #, fuzzy msgid "The primary name for the Site." msgstr "Изберете име за този източник на данни." #: ../sites.php:44 msgid "New Site" msgstr "" #: ../sites.php:49 msgid "Address1" msgstr "" #: ../sites.php:50 msgid "The primary address for the Site." msgstr "" #: ../sites.php:52 msgid "Enter the Site Address" msgstr "" #: ../sites.php:58 msgid "Address2" msgstr "" #: ../sites.php:59 msgid "Additional address information for the Site." msgstr "" #: ../sites.php:61 msgid "Additional Site Address information" msgstr "" #: ../sites.php:67 ../sites.php:484 msgid "City" msgstr "" #: ../sites.php:68 msgid "The city or locality for the Site." msgstr "" #: ../sites.php:70 msgid "Enter the City or Locality" msgstr "" #: ../sites.php:76 ../sites.php:485 msgid "State" msgstr "" #: ../sites.php:77 #, fuzzy msgid "The state for the Site." msgstr "ÐŸÑŠÐ»Ð½Ð¸Ñ Ð¿ÑŠÑ‚ до RRD файл." #: ../sites.php:79 msgid "Enter the state" msgstr "" #: ../sites.php:85 msgid "Postal/Zip Code" msgstr "" #: ../sites.php:86 msgid "The postal or zip code for the Site." msgstr "" #: ../sites.php:88 msgid "Enter the postal code" msgstr "" #: ../sites.php:94 ../sites.php:486 msgid "Country" msgstr "" #: ../sites.php:95 msgid "The country for the Site." msgstr "" #: ../sites.php:97 msgid "Enter the country" msgstr "" #: ../sites.php:103 msgid "TimeZone" msgstr "" #: ../sites.php:104 msgid "The TimeZone for the Site." msgstr "" #: ../sites.php:110 msgid "Latitude" msgstr "" #: ../sites.php:111 msgid "The Latitude for this Site." msgstr "" #: ../sites.php:113 msgid "example 38.889488" msgstr "" #: ../sites.php:119 msgid "Longitude" msgstr "" #: ../sites.php:120 msgid "The Longitude for this Site." msgstr "" #: ../sites.php:122 msgid "example -77.0374678" msgstr "" #: ../sites.php:128 msgid "Site Notes" msgstr "" #: ../sites.php:131 msgid "Additional area use for random notes related to this Site." msgstr "" #: ../sites.php:134 msgid "Enter some useful information about the Site." msgstr "" #: ../sites.php:139 #, fuzzy msgid "Alternate Name" msgstr "Вътрешно име на източника на данни" #: ../sites.php:140 msgid "Used for cases where a Site has an alternate named used to describe it" msgstr "" #: ../sites.php:142 msgid "If the Site is known by another name enter it here." msgstr "" #: ../sites.php:275 msgid "" "Click 'Continue' to delete the following Site. Note, all devices will be " "disassociated from this site." msgid_plural "" "Click 'Continue' to delete all following Sites. Note, all devices will be " "disassociated from this site." msgstr[0] "" msgstr[1] "" #: ../sites.php:280 msgid "Delete Site" msgid_plural "Delete Sites" msgstr[0] "" msgstr[1] "" #: ../sites.php:481 #, fuzzy msgid "Site Name" msgstr "Име" #: ../sites.php:481 #, fuzzy msgid "The name of this Site." msgstr "Името зададено за този шаблон за данни" #: ../sites.php:482 msgid "The unique id associated with this Site." msgstr "" #: ../sites.php:483 msgid "The number of Devices associated with this Site." msgstr "" #: ../sites.php:484 msgid "The City associated with this Site." msgstr "" #: ../sites.php:485 msgid "The State associated with this Site." msgstr "" #: ../sites.php:486 msgid "The Country associated with this Site." msgstr "" #: ../sites.php:504 msgid "No Sites Found" msgstr "" #: ../spikekill.php:37 #, php-format msgid "FATAL: Spike Kill method '%s' is Invalid\n" msgstr "" #: ../spikekill.php:81 msgid "FATAL: Spike Kill Not Allowed\n" msgstr "" #: ../templates_export.php:68 msgid "WARNING: Export Errors Encountered. Refresh Browser Window for Details!" msgstr "" #: ../templates_export.php:101 msgid "What would you like to export?" msgstr "" #: ../templates_export.php:130 #, php-format msgid "Available Templates [%s]" msgstr "" #: ../templates_export.php:134 #, php-format msgid "%s to Export" msgstr "" #: ../templates_export.php:135 msgid "Choose the exact item to export to XML." msgstr "" #: ../templates_export.php:144 ../templates_export.php:148 msgid "Include Dependencies" msgstr "" #: ../templates_export.php:145 msgid "" "Some templates rely on other items in Cacti to function properly. It is " "highly recommended that you select this box or the resulting import may fail." msgstr "" #: ../templates_export.php:154 msgid "Output Format" msgstr "" #: ../templates_export.php:155 msgid "Choose the format to output the resulting XML file in." msgstr "" #: ../templates_export.php:159 msgid "Output to the Browser (within Cacti)" msgstr "" #: ../templates_export.php:160 msgid "Output to the Browser (raw XML)" msgstr "" #: ../templates_export.php:161 msgid "Save File Locally" msgstr "" #: ../tree.php:32 msgctxt "dropdown action" msgid "Publish" msgstr "" #: ../tree.php:33 msgctxt "dropdown action" msgid "Un Publish" msgstr "" #: ../tree.php:258 msgctxt "ordering of tree items" msgid "inherit" msgstr "" #: ../tree.php:261 msgctxt "ordering of tree items" msgid "manual" msgstr "" #: ../tree.php:264 msgctxt "ordering of tree items" msgid "alpha" msgstr "" #: ../tree.php:267 msgctxt "ordering of tree items" msgid "natural" msgstr "" #: ../tree.php:270 msgctxt "ordering of tree items" msgid "numeric" msgstr "" #: ../tree.php:485 msgid "Click 'Continue' to delete the following Tree." msgid_plural "Click 'Continue' to delete following Trees." msgstr[0] "" msgstr[1] "" #: ../tree.php:490 msgid "Delete Tree" msgid_plural "Delete Trees" msgstr[0] "" msgstr[1] "" #: ../tree.php:494 msgid "Click 'Continue' to publish the following Tree." msgid_plural "Click 'Continue' to publish following Trees." msgstr[0] "" msgstr[1] "" #: ../tree.php:499 msgid "Publish Tree" msgid_plural "Publish Trees" msgstr[0] "" msgstr[1] "" #: ../tree.php:503 msgid "Click 'Continue' to un-publish the following Tree." msgid_plural "Click 'Continue' to un-publish following Trees." msgstr[0] "" msgstr[1] "" #: ../tree.php:508 msgid "Un-publish Tree" msgid_plural "Un-publish Trees" msgstr[0] "" msgstr[1] "" #: ../tree.php:511 msgid "You must select at least one Tree." msgstr "" #: ../tree.php:554 #, php-format msgid "Trees [edit: %s]" msgstr "" #: ../tree.php:566 #, fuzzy msgid "Trees [new]" msgstr "Дървовиден изглед" #: ../tree.php:592 msgid "Edit Tree" msgstr "" #: ../tree.php:592 msgid "" "To Edit this tree, you must first lock it by pressing the Edit Tree button." msgstr "" #: ../tree.php:595 msgid "Add Root Branch" msgstr "" #: ../tree.php:595 msgid "Finish Editing Tree" msgstr "" #: ../tree.php:595 #, php-format msgid "This tree has been locked for Editing on %1$s by %2$s." msgstr "" #: ../tree.php:601 msgid "To edit the tree, you must first unlock it and then lock it as yourself" msgstr "" #: ../tree.php:617 #, fuzzy msgid "Tree Items" msgstr "Елементи на графичното дърво" #: ../tree.php:625 msgid "Available Devices" msgstr "" #: ../tree.php:660 msgid "Available Graphs" msgstr "" #: ../tree.php:1039 #, fuzzy msgid "Rename" msgstr "Потребител" #: ../tree.php:1066 #, fuzzy msgid "Branch Sorting" msgstr "Редактирай (ÐаÑтройки на графики)" #: ../tree.php:1073 msgid "Inherit" msgstr "" #: ../tree.php:1101 msgid "Alphabetic" msgstr "" #: ../tree.php:1115 msgid "Natural" msgstr "" #: ../tree.php:1152 ../tree.php:1226 ../tree.php:1313 msgid "Cut" msgstr "" #: ../tree.php:1167 ../tree.php:1241 ../tree.php:1328 ../user_admin.php:29 #: ../user_group_admin.php:31 msgid "Copy" msgstr "" #: ../tree.php:1185 msgid "Paste" msgstr "" #: ../tree.php:1558 msgid "The name by which this Tree will be referred to as." msgstr "" #: ../tree.php:1558 ../user_admin.php:1521 ../user_group_admin.php:1243 #, fuzzy msgid "Tree Name" msgstr "Дървовиден изглед" #: ../tree.php:1559 msgid "" "The internal database ID for this Tree. Useful when performing automation " "or debugging." msgstr "" #: ../tree.php:1560 msgid "Published" msgstr "" #: ../tree.php:1560 msgid "Unpublished Trees cannot be viewed from the Graph tab" msgstr "" #: ../tree.php:1561 msgid "A Tree must be locked in order to be edited." msgstr "" #: ../tree.php:1562 msgid "The original author of this Tree." msgstr "" #: ../tree.php:1563 msgid "" "To change the order of the trees, first sort by this column, press the up or " "down arrows once they appear." msgstr "" #: ../tree.php:1564 msgid "Last Edited" msgstr "" #: ../tree.php:1564 msgid "The date that this Tree was last edited." msgstr "" #: ../tree.php:1565 msgid "Edited By" msgstr "" #: ../tree.php:1565 msgid "The last user to have modified this Tree." msgstr "" #: ../tree.php:1566 msgid "Branches" msgstr "" #: ../tree.php:1566 msgid "The total number of Branches in this Tree." msgstr "" #: ../tree.php:1567 msgid "The total number of individual Devices in this Tree." msgstr "" #: ../tree.php:1568 msgid "The total number of individual Graphs in this Tree." msgstr "" #: ../tree.php:1608 #, fuzzy msgid "No Trees Found" msgstr "Дървовиден изглед" #: ../user_admin.php:32 msgid "Batch Copy" msgstr "" #: ../user_admin.php:345 msgid "Click 'Continue' to delete the selected User(s)." msgstr "" #: ../user_admin.php:350 msgid "Delete User(s)" msgstr "" #: ../user_admin.php:360 msgid "Click 'Continue' to copy the selected User to a new User below." msgstr "" #: ../user_admin.php:365 #, fuzzy msgid "Template Username:" msgstr "Потребител" #: ../user_admin.php:370 #, fuzzy msgid "Username:" msgstr "Потребител" #: ../user_admin.php:377 msgid "Full Name:" msgstr "" #: ../user_admin.php:384 msgid "Realm:" msgstr "" #: ../user_admin.php:390 msgid "Copy User" msgstr "" #: ../user_admin.php:396 msgid "Click 'Continue' to enable the selected User(s)." msgstr "" #: ../user_admin.php:401 msgid "Enable User(s)" msgstr "" #: ../user_admin.php:407 msgid "Click 'Continue' to disable the selected User(s)." msgstr "" #: ../user_admin.php:412 msgid "Disable User(s)" msgstr "" #: ../user_admin.php:420 msgid "" "Click 'Continue' to overwrite the User(s) settings with the selected " "template User settings and permissions. The original users Full Name, " "Password, Realm and Enable status will be retained, all other fields will be " "overwritten from Template User." msgstr "" #: ../user_admin.php:423 #, fuzzy msgid "Template User:" msgstr "Шаблони за графики" #: ../user_admin.php:429 msgid "User(s) to update:" msgstr "" #: ../user_admin.php:434 msgid "Reset User(s) Settings" msgstr "" #: ../user_admin.php:437 msgid "You must select at least one user." msgstr "" #: ../user_admin.php:812 ../user_group_admin.php:728 msgid "Allow" msgstr "" #: ../user_admin.php:813 ../user_group_admin.php:729 msgid "Deny" msgstr "" #: ../user_admin.php:838 msgid "" "Note: System Graph Policy is 'Permissive' meaning the User must have " "access to at least one of Graph, Device, or Graph Template to gain access to " "the Graph" msgstr "" #: ../user_admin.php:840 msgid "" "Note: System Graph Policy is 'Restrictive' meaning the User must have " "access to the Graph, Device, and Graph Template to gain access to the Graph" msgstr "" #: ../user_admin.php:844 ../user_group_admin.php:745 msgid "Default Graph Policy" msgstr "" #: ../user_admin.php:849 msgid "Default Graph Policy for this User" msgstr "" #: ../user_admin.php:1006 ../user_admin.php:1242 ../user_admin.php:1384 #: ../user_admin.php:1521 ../user_group_admin.php:821 #: ../user_group_admin.php:966 ../user_group_admin.php:1109 #: ../user_group_admin.php:1243 msgid "Effective Policy" msgstr "" #: ../user_admin.php:1020 ../user_group_admin.php:847 msgid "No Matching Graphs Found" msgstr "" #: ../user_admin.php:1035 ../user_admin.php:1041 ../user_admin.php:1287 #: ../user_admin.php:1293 ../user_admin.php:1426 ../user_admin.php:1432 #: ../user_admin.php:1562 ../user_admin.php:1568 ../user_group_admin.php:862 #: ../user_group_admin.php:868 ../user_group_admin.php:1010 #: ../user_group_admin.php:1016 ../user_group_admin.php:1151 #: ../user_group_admin.php:1157 ../user_group_admin.php:1283 #: ../user_group_admin.php:1289 msgid "Revoke Access" msgstr "" #: ../user_admin.php:1036 ../user_admin.php:1040 ../user_admin.php:1288 #: ../user_admin.php:1292 ../user_admin.php:1427 ../user_admin.php:1431 #: ../user_admin.php:1563 ../user_admin.php:1567 ../user_group_admin.php:62 #: ../user_group_admin.php:863 ../user_group_admin.php:867 #: ../user_group_admin.php:1011 ../user_group_admin.php:1015 #: ../user_group_admin.php:1152 ../user_group_admin.php:1156 #: ../user_group_admin.php:1284 ../user_group_admin.php:1288 msgid "Grant Access" msgstr "" #: ../user_admin.php:1093 ../user_admin.php:2646 ../user_group_admin.php:1812 #: ../user_group_admin.php:1872 msgid "Groups" msgstr "" #: ../user_admin.php:1101 ../user_admin.php:1110 msgid "Member" msgstr "" #: ../user_admin.php:1101 #, fuzzy msgid "Policies (Graph/Device/Template)" msgstr "ÐÑоциирани шаблони за графики" #: ../user_admin.php:1110 ../user_group_admin.php:688 msgid "Non Member" msgstr "" #: ../user_admin.php:1112 ../user_admin.php:2299 ../user_admin.php:2300 #: ../user_admin.php:2301 ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 ../user_group_admin.php:1906 msgid "ALLOW" msgstr "" #: ../user_admin.php:1112 ../user_admin.php:2299 ../user_admin.php:2300 #: ../user_admin.php:2301 ../user_group_admin.php:1904 #: ../user_group_admin.php:1905 ../user_group_admin.php:1906 msgid "DENY" msgstr "" #: ../user_admin.php:1118 msgid "No Matching User Groups Found" msgstr "" #: ../user_admin.php:1132 msgid "Assign Membership" msgstr "" #: ../user_admin.php:1133 msgid "Remove Membership" msgstr "" #: ../user_admin.php:1149 ../user_group_admin.php:886 msgid "Default Device Policy" msgstr "" #: ../user_admin.php:1154 msgid "Default Device Policy for this User" msgstr "" #: ../user_admin.php:1253 ../user_admin.php:1261 ../user_admin.php:1395 #: ../user_admin.php:1403 ../user_admin.php:1532 ../user_admin.php:1540 #: ../user_group_admin.php:832 ../user_group_admin.php:840 #: ../user_group_admin.php:977 ../user_group_admin.php:985 #: ../user_group_admin.php:1120 ../user_group_admin.php:1128 #: ../user_group_admin.php:1254 ../user_group_admin.php:1262 msgid "Access Granted" msgstr "" #: ../user_admin.php:1255 ../user_admin.php:1259 ../user_admin.php:1397 #: ../user_admin.php:1401 ../user_admin.php:1534 ../user_admin.php:1538 #: ../user_group_admin.php:834 ../user_group_admin.php:838 #: ../user_group_admin.php:979 ../user_group_admin.php:983 #: ../user_group_admin.php:1122 ../user_group_admin.php:1126 #: ../user_group_admin.php:1256 ../user_group_admin.php:1260 msgid "Access Restricted" msgstr "" #: ../user_admin.php:1272 ../user_group_admin.php:996 msgid "No Matching Devices Found" msgstr "" #: ../user_admin.php:1310 ../user_group_admin.php:1034 #, fuzzy msgid "Default Graph Template Policy" msgstr "Шаблони за графики" #: ../user_admin.php:1315 msgid "Default Graph Template Policy for this User" msgstr "" #: ../user_admin.php:1384 ../user_group_admin.php:1109 #, fuzzy msgid "Total Graphs" msgstr "Графики" #: ../user_admin.php:1411 ../user_group_admin.php:1136 #, fuzzy msgid "No Matching Graph Templates Found" msgstr "ÐÑоциирани шаблони за графики" #: ../user_admin.php:1449 ../user_group_admin.php:1175 msgid "Default Tree Policy" msgstr "" #: ../user_admin.php:1454 msgid "Default Tree Policy for this User" msgstr "" #: ../user_admin.php:1547 ../user_group_admin.php:1269 msgid "No Matching Trees Found" msgstr "" #: ../user_admin.php:1592 ../user_group_admin.php:1315 #, fuzzy msgid "User Permissions" msgstr "Редактирай (Права за графики)" #: ../user_admin.php:1659 ../user_group_admin.php:1380 #, fuzzy msgid "External Link Permissions" msgstr "Редактирай (Права за realm)" #: ../user_admin.php:1716 ../user_group_admin.php:1437 #, fuzzy msgid "Plugin Permissions" msgstr "Редактирай (Права за графики)" #: ../user_admin.php:1772 msgid "Legacy 1.x Plugins" msgstr "" #: ../user_admin.php:1807 ../user_group_admin.php:1528 #, fuzzy, php-format msgid "User Settings %s" msgstr "ÐаÑтойки" #: ../user_admin.php:1922 ../user_group_admin.php:1644 #, fuzzy msgid "Permissions" msgstr "Редактирай (Права за графики)" #: ../user_admin.php:1923 msgid "Group Membership" msgstr "" #: ../user_admin.php:1924 ../user_group_admin.php:1645 #, fuzzy msgid "Graph Perms" msgstr "Графични елементи" #: ../user_admin.php:1925 ../user_group_admin.php:1646 #, fuzzy msgid "Device Perms" msgstr "УÑтройÑтва" #: ../user_admin.php:1926 ../user_group_admin.php:1647 #, fuzzy msgid "Template Perms" msgstr "Шаблони за елементи на графиката" #: ../user_admin.php:1927 ../user_group_admin.php:1648 #, fuzzy msgid "Tree Perms" msgstr "Дървовиден изглед" #: ../user_admin.php:1969 #, fuzzy, php-format msgid "User Management %s" msgstr "Права на потребители" #: ../user_admin.php:2001 #, fuzzy msgid "Password Too Short" msgstr "Парола" #: ../user_admin.php:2006 msgid "Password Validation Passes" msgstr "" #: ../user_admin.php:2020 msgid "Passwords do Not Match" msgstr "" #: ../user_admin.php:2023 #, fuzzy msgid "Passwords Match" msgstr "Парола" #: ../user_admin.php:2267 ../user_group_admin.php:1884 msgid "Graph Policy" msgstr "" #: ../user_admin.php:2268 ../user_group_admin.php:1885 #, fuzzy msgid "Device Policy" msgstr "УÑтройÑтва" #: ../user_admin.php:2269 ../user_group_admin.php:1886 msgid "Template Policy" msgstr "" #: ../user_admin.php:2270 msgid "Last Login" msgstr "" #: ../user_admin.php:2291 msgid "Unavailable" msgstr "" #: ../user_admin.php:2307 msgid "No Users Found" msgstr "" #: ../user_admin.php:2522 ../user_group_admin.php:2124 #, fuzzy, php-format msgid "Graph Permissions %s" msgstr "Редактирай (Права за графики)" #: ../user_admin.php:2577 ../user_admin.php:2664 msgid "Show All" msgstr "" #: ../user_admin.php:2631 #, php-format msgid "Group Membership %s" msgstr "" #: ../user_admin.php:2719 ../user_group_admin.php:2234 #, fuzzy, php-format msgid "Devices Permission %s" msgstr "Редактирай (Права за realm)" #: ../user_admin.php:2770 ../user_admin.php:2857 ../user_admin.php:2944 #: ../user_group_admin.php:2179 ../user_group_admin.php:2285 #: ../user_group_admin.php:2372 ../user_group_admin.php:2459 msgid "Show Exceptions" msgstr "" #: ../user_admin.php:2824 ../user_group_admin.php:2339 #, fuzzy, php-format msgid "Template Permission %s" msgstr "Редактирай (Права за realm)" #: ../user_admin.php:2911 ../user_admin.php:2998 ../user_group_admin.php:2426 #, fuzzy, php-format msgid "Tree Permission %s" msgstr "Редактирай (Права за графики)" #: ../user_admin.php:3031 msgid "Show Exceptions<" msgstr "" #: ../user_domains.php:222 msgid "Click 'Continue' to delete the following User Domain." msgid_plural "Click 'Continue' to delete following User Domains." msgstr[0] "" msgstr[1] "" #: ../user_domains.php:227 msgid "Delete User Domain" msgid_plural "Delete User Domains" msgstr[0] "" msgstr[1] "" #: ../user_domains.php:231 msgid "Click 'Continue' to disable the following User Domain." msgid_plural "Click 'Continue' to disable following User Domains." msgstr[0] "" msgstr[1] "" #: ../user_domains.php:236 msgid "Disable User Domain" msgid_plural "Disable User Domains" msgstr[0] "" msgstr[1] "" #: ../user_domains.php:240 msgid "Click 'Continue' to enable the following User Domain." msgstr "" #: ../user_domains.php:245 msgid "Enabled User Domain" msgid_plural "Enable User Domains" msgstr[0] "" msgstr[1] "" #: ../user_domains.php:249 msgid "" "Click 'Continue' to make the following the following User Domain the default " "one." msgstr "" #: ../user_domains.php:254 msgid "Make Selected Domain Default" msgstr "" #: ../user_domains.php:257 msgid "You must select at least one User Domain." msgstr "" #: ../user_domains.php:308 #, php-format msgid "User Domain [edit: %s]" msgstr "" #: ../user_domains.php:310 msgid "User Domain [new]" msgstr "" #: ../user_domains.php:318 msgid "" "Enter a meaningful name for this domain. This will be the name that appears " "in the Login Realm during login." msgstr "" #: ../user_domains.php:324 msgid "Domains Type" msgstr "" #: ../user_domains.php:325 #, fuzzy msgid "Choose what type of domain this is." msgstr "Изберете име за този източник на данни." #: ../user_domains.php:332 msgid "" "The name of the user that Cacti will use as a template for new user accounts." msgstr "" #: ../user_domains.php:342 msgid "" "If this checkbox is checked, users will be able to login using this domain." msgstr "" #: ../user_domains.php:359 msgid "The dns hostname or ip address of the server." msgstr "" #: ../user_domains.php:367 msgid "TCP/UDP port for Non SSL communications." msgstr "" #: ../user_domains.php:406 msgid "" "Mode which cacti will attempt to authenticate against the LDAP server." "

    No Searching - No Distinguished Name (DN) searching " "occurs, just attempt to bind with the provided Distinguished Name (DN) " "format.

    Anonymous Searching - Attempts to search for username " "against LDAP directory via anonymous binding to locate the users " "Distinguished Name (DN).

    Specific Searching - Attempts search " "for username against LDAP directory via Specific Distinguished Name (DN) and " "Specific Password for binding to locate the users Distinguished Name (DN)." msgstr "" #: ../user_domains.php:455 msgid "" "Search base for searching the LDAP directory, such as \"dc=win2kdomain," "dc=local\" or \"ou=people,dc=domain,dc=local\"." msgstr "" #: ../user_domains.php:462 msgid "" "Search filter to use to locate the user in the LDAP directory, such as for " "windows: \"(&(objectclass=user)(objectcategory=user)" "(userPrincipalName=<username>*))\" or for OpenLDAP: " "\"(&(objectClass=account)(uid=<username>))\". \"<username>\" " "is replaced with the username that was supplied at the login prompt." msgstr "" #: ../user_domains.php:501 #, fuzzy msgid "Domain Properties" msgstr "Параметри" #: ../user_domains.php:627 msgid "Domains" msgstr "" #: ../user_domains.php:714 msgid "Domain Name" msgstr "" #: ../user_domains.php:715 msgid "Domain Type" msgstr "" #: ../user_domains.php:717 msgid "Effective User" msgstr "" #: ../user_domains.php:730 msgid "None Selected" msgstr "" #: ../user_domains.php:736 msgid "No User Domains Found" msgstr "" #: ../user_group_admin.php:39 ../user_group_admin.php:58 msgid "Defer to the Users Setting" msgstr "" #: ../user_group_admin.php:43 msgid "Show the Page that the User pointed their browser to" msgstr "" #: ../user_group_admin.php:47 #, fuzzy msgid "Show the Console" msgstr "ÐдминиÑтративна конзола" #: ../user_group_admin.php:51 msgid "Show the default Graph Screen" msgstr "" #: ../user_group_admin.php:66 msgid "Restrict Access" msgstr "" #: ../user_group_admin.php:73 ../user_group_admin.php:1881 msgid "Group Name" msgstr "" #: ../user_group_admin.php:74 #, fuzzy msgid "The name of this Group." msgstr "Изберете име за този източник на данни." #: ../user_group_admin.php:80 msgid "Group Description" msgstr "" #: ../user_group_admin.php:81 msgid "" "A more descriptive name for this group, that can include spaces or special " "characters." msgstr "" #: ../user_group_admin.php:93 msgid "General Group Options" msgstr "" #: ../user_group_admin.php:95 msgid "Set any user account-specific options here." msgstr "" #: ../user_group_admin.php:99 msgid "Allow Users of this Group to keep custom User Settings" msgstr "" #: ../user_group_admin.php:106 msgid "Tree Rights" msgstr "" #: ../user_group_admin.php:108 msgid "Should Users of this Group have access to the Tree?" msgstr "" #: ../user_group_admin.php:114 msgid "Graph List Rights" msgstr "" #: ../user_group_admin.php:116 msgid "Should Users of this Group have access to the Graph List?" msgstr "" #: ../user_group_admin.php:122 #, fuzzy msgid "Graph Preview Rights" msgstr "Елементи на графичното дърво" #: ../user_group_admin.php:124 msgid "Should Users of this Group have access to the Graph Preview?" msgstr "" #: ../user_group_admin.php:133 msgid "What to do when a User from this User Group logs in." msgstr "" #: ../user_group_admin.php:441 msgid "Click 'Continue' to delete the following User Group" msgid_plural "Click 'Continue' to delete following User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:446 msgid "Delete User Group" msgid_plural "Delete User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:454 msgid "Click 'Continue' to Copy the following User Group to a new User Group." msgid_plural "" "Click 'Continue' to Copy following User Groups to new User Groups." msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:460 msgid "Group Prefix:" msgstr "" #: ../user_group_admin.php:461 #, fuzzy msgid "New Group" msgstr "Графики" #: ../user_group_admin.php:465 msgid "Copy User Group" msgid_plural "Copy User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:471 msgid "Click 'Continue' to enable the following User Group." msgid_plural "Click 'Continue' to enable following User Groups." msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:476 msgid "Enable User Group" msgid_plural "Enable User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:482 msgid "Click 'Continue' to disable the following User Group." msgid_plural "Click 'Continue' to disable following User Groups." msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:487 msgid "Disable User Group" msgid_plural "Disable User Groups" msgstr[0] "" msgstr[1] "" #: ../user_group_admin.php:490 msgid "You must select at least one Group." msgstr "" #: ../user_group_admin.php:675 msgid "Login Name" msgstr "" #: ../user_group_admin.php:675 msgid "Membership" msgstr "" #: ../user_group_admin.php:686 msgid "Group Member" msgstr "" #: ../user_group_admin.php:696 msgid "No Matching Group Members Found" msgstr "" #: ../user_group_admin.php:710 msgid "Add to Group" msgstr "" #: ../user_group_admin.php:711 msgid "Remove from Group" msgstr "" #: ../user_group_admin.php:750 ../user_group_admin.php:891 msgid "Default Graph policy for this User Group" msgstr "" #: ../user_group_admin.php:755 ../user_group_admin.php:896 #: ../user_group_admin.php:1044 ../user_group_admin.php:1185 msgid "Update" msgstr "" #: ../user_group_admin.php:1039 msgid "Default Graph Template policy for this User Group" msgstr "" #: ../user_group_admin.php:1180 msgid "Default Tree policy for this User Group" msgstr "" #: ../user_group_admin.php:1643 ../user_group_admin.php:1882 msgid "Members" msgstr "" #: ../user_group_admin.php:1655 #, fuzzy, php-format msgid "User Group Management [edit: %s]" msgstr "Права на потребители" #: ../user_group_admin.php:1657 #, fuzzy msgid "User Group Management [new]" msgstr "Права на потребители" #: ../user_group_admin.php:1791 #, fuzzy msgid "User Group Management" msgstr "Права на потребители" #: ../user_group_admin.php:1912 msgid "No User Groups Found" msgstr "" #: ../user_group_admin.php:2513 #, php-format msgid "User Membership %s" msgstr "" #: ../user_group_admin.php:2546 msgid "Show Members" msgstr "" #: ../user_group_admin.php:2552 msgctxt "filter reset" msgid "Clear" msgstr "" #: ../utilities.php:164 msgid "" "NET-SNMP Not Installed or its paths are not set. Please install if you wish " "to monitor SNMP enabled devices." msgstr "" #: ../utilities.php:170 #, fuzzy msgid "Configuration Settings" msgstr "ÐаÑтройки на cacti" #: ../utilities.php:170 #, php-format msgid "" "ERROR: Installed RRDtool version does not match configured version." "
    Please visit the %s and select the correct RRDtool Utility Version." msgstr "" #: ../utilities.php:174 #, php-format msgid "" "ERROR: RRDtool 1.2.x+ does not support the GIF images format, but %d\" " "graph(s) and/or templates have GIF set as the image format." msgstr "" #: ../utilities.php:194 msgid "Database" msgstr "" #: ../utilities.php:195 msgid "PHP Info" msgstr "" #: ../utilities.php:202 #, php-format msgid "Technical Support [%s]" msgstr "" #: ../utilities.php:229 msgid "General Information" msgstr "" #: ../utilities.php:231 ../utilities.php:766 msgid "Date" msgstr "" #: ../utilities.php:238 #, fuzzy msgid "Cacti Version" msgstr "ÐаÑтройки на cacti" #: ../utilities.php:243 #, fuzzy msgid "Cacti OS" msgstr "ÐаÑтройки на cacti" #: ../utilities.php:253 #, fuzzy msgid "NET-SNMP Version" msgstr "SNMP ВерÑиÑ" #: ../utilities.php:281 ../utilities.php:314 #, fuzzy, php-format msgid "Total: %s" msgstr "Графики" #: ../utilities.php:288 msgid "Poller Information" msgstr "" #: ../utilities.php:311 #, fuzzy, php-format msgid "Action[%s]" msgstr "ДейÑтвиÑ" #: ../utilities.php:316 msgid "No items to poll" msgstr "" #: ../utilities.php:322 msgid "Concurrent Processes" msgstr "" #: ../utilities.php:327 msgid "Max Threads" msgstr "" #: ../utilities.php:332 msgid "PHP Servers" msgstr "" #: ../utilities.php:337 #, fuzzy msgid "Script Timeout" msgstr "SNMP изтекло време" #: ../utilities.php:342 msgid "Max OID" msgstr "" #: ../utilities.php:347 msgid "Last Run Statistics" msgstr "" #: ../utilities.php:355 msgid "System Memory" msgstr "" #: ../utilities.php:384 msgid "PHP Information" msgstr "" #: ../utilities.php:391 msgid "" "PHP Version 5.5.0+ is recommended due to strong password hashing support." msgstr "" #: ../utilities.php:396 msgid "PHP OS" msgstr "" #: ../utilities.php:401 msgid "PHP uname" msgstr "" #: ../utilities.php:412 msgid "PHP SNMP" msgstr "" #: ../utilities.php:447 msgid "You've set memory limit to 'unlimited'." msgstr "" #: ../utilities.php:449 #, php-format msgid "" "It is highly suggested that you alter you php.ini memory_limit to %s or " "higher." msgstr "" #: ../utilities.php:450 msgid "" "This suggested memory value is calculated based on the number of data source " "present and is only to be used as a suggestion, actual values may vary " "system to system based on requirements." msgstr "" #: ../utilities.php:458 msgid "MySQL Table Information - Sizes in KBytes" msgstr "" #: ../utilities.php:467 msgid "Engine" msgstr "" #: ../utilities.php:469 msgid "Avg Row Length" msgstr "" #: ../utilities.php:470 msgid "Data Length" msgstr "" #: ../utilities.php:471 msgid "Index Length" msgstr "" #: ../utilities.php:472 msgid "Collation" msgstr "" #: ../utilities.php:473 msgid "Comment" msgstr "" #: ../utilities.php:491 msgid "Unable to retrieve table status" msgstr "" #: ../utilities.php:497 msgid "PHP Module Information" msgstr "" #: ../utilities.php:623 msgid "User Login History" msgstr "" #: ../utilities.php:632 ../utilities.php:763 #, fuzzy msgid "User" msgstr "Потребител" #: ../utilities.php:637 msgid "Deleted/Invalid" msgstr "" #: ../utilities.php:650 ../utilities.php:767 #, fuzzy msgid "Result" msgstr "ЕкÑпортиране на резултати" #: ../utilities.php:655 msgid "Success - Pswd" msgstr "" #: ../utilities.php:656 msgid "Success - Token" msgstr "" #: ../utilities.php:657 msgid "Failed" msgstr "" #: ../utilities.php:661 msgid "Attempts" msgstr "" #: ../utilities.php:676 ../utilities.php:1009 ../utilities.php:1337 #: ../utilities.php:1584 ../utilities.php:2293 ../utilities.php:2557 #: ../vdef.php:686 msgctxt "Button: use filter settings" msgid "Go" msgstr "" #: ../utilities.php:679 ../utilities.php:1012 ../utilities.php:1340 #: ../utilities.php:1587 ../utilities.php:2296 ../utilities.php:2558 #: ../vdef.php:689 msgctxt "Button: reset filter settings" msgid "Clear" msgstr "" #: ../utilities.php:682 ../utilities.php:1015 ../utilities.php:2559 msgctxt "Button: delete all table entries" msgid "Purge" msgstr "" #: ../utilities.php:682 msgid "Purge User Log" msgstr "" #: ../utilities.php:756 msgid "User Logins" msgstr "" #: ../utilities.php:768 msgid "IP Address" msgstr "" #: ../utilities.php:784 #, fuzzy msgid "(User Removed)" msgstr "(Изтрий)" #: ../utilities.php:1015 msgid "Purge Log" msgstr "" #: ../utilities.php:1072 #, php-format msgid "Log [Total Lines: %d - Non-Matching Items Hidden]" msgstr "" #: ../utilities.php:1074 #, php-format msgid "Log [Total Lines: %d - All Items Shown]" msgstr "" #: ../utilities.php:1173 #, php-format msgid "%s - WEBUI: Cacti Log Cleared from Web Management Interface." msgstr "" #: ../utilities.php:1175 msgid "Cacti Log Cleared" msgstr "" #: ../utilities.php:1177 msgid "Error: Unable to clear log, no write permissions." msgstr "" #: ../utilities.php:1180 msgid "Error: Unable to clear log, file does not exist." msgstr "" #: ../utilities.php:1273 #, fuzzy msgid "Data Query Cache Items" msgstr "Ðвтоматизирани данни" #: ../utilities.php:1289 msgid "Query Name" msgstr "" #: ../utilities.php:1409 msgid "Field Value" msgstr "" #: ../utilities.php:1409 msgid "Index" msgstr "" #: ../utilities.php:1545 #, fuzzy msgid "Poller Cache Items" msgstr "Виж кеш на ÑÑŠÐ±Ð¸Ñ€Ð°Ñ‰Ð¸Ñ Ñкрипт" #: ../utilities.php:1606 msgid "Script" msgstr "Скрипт" #: ../utilities.php:1722 ../utilities.php:1727 #, fuzzy msgid "SNMP Version:" msgstr "SNMP ВерÑиÑ" #: ../utilities.php:1723 #, fuzzy msgid "Community:" msgstr "SNMP ОбщноÑÑ‚" #: ../utilities.php:1724 ../utilities.php:1728 msgid "OID:" msgstr "" #: ../utilities.php:1728 #, fuzzy msgid "User:" msgstr "Потребител" #: ../utilities.php:1731 #, fuzzy msgid "Script:" msgstr "Скрипт" #: ../utilities.php:1733 #, fuzzy msgid "Script Server:" msgstr "Скрипт" #: ../utilities.php:1746 msgid "RRD:" msgstr "" #: ../utilities.php:1765 msgid "Tecnical Support" msgstr "" #: ../utilities.php:1767 msgid "" "Cacti technical support page. Used by developers and technical support " "persons to assist with issues in Cacti. Includes checks for common " "configuration issues." msgstr "" #: ../utilities.php:1769 msgid "Log Administration" msgstr "" #: ../utilities.php:1771 msgid "" "The Cacti Log stores statistic, error and other message depending on system " "settings. This information can be used to identify problems with the poller " "and application." msgstr "" #: ../utilities.php:1775 msgid "" "Allows Administrators to browse the user log. Administrators can filter and " "export the log as well." msgstr "" #: ../utilities.php:1779 msgid "Poller Cache Administration" msgstr "" #: ../utilities.php:1782 msgid "" "This is the data that is being passed to the poller each time it runs. This " "data is then in turn executed/interpreted and the results are fed into the " "RRDfiles for graphing or the database for display." msgstr "" #: ../utilities.php:1786 msgid "" "The Data Query Cache stores information gathered from Data Query input " "types. The values from these fields can be used in the text area of Graphs " "for Legends, Vertical Labels, and GPRINTS as well as in CDEF's." msgstr "" #: ../utilities.php:1788 #, fuzzy msgid "Rebuild Poller Cache" msgstr "Виж кеш на ÑÑŠÐ±Ð¸Ñ€Ð°Ñ‰Ð¸Ñ Ñкрипт" #: ../utilities.php:1790 msgid "" "The poller cache will be cleared and re-generated if you select this option. " "Sometimes host/data source data can get out of sync with the cache in which " "case it makes sense to clear the cache and start over." msgstr "" #: ../utilities.php:1794 #, fuzzy msgid "Boost Utilities" msgstr "ПриложениÑ" #: ../utilities.php:1795 msgid "View Boost Status" msgstr "" #: ../utilities.php:1797 msgid "" "This menu pick allows you to view various boost settings and statistics " "associated with the current running Boost configuration." msgstr "" #: ../utilities.php:1801 #, fuzzy msgid "RRD Utilities" msgstr "ПриложениÑ" #: ../utilities.php:1802 msgid "RRDfile Cleaner" msgstr "" #: ../utilities.php:1804 msgid "" "When you delete Data Sources from Cacti, the corresponding RRDfiles are not " "removed automatically. Use this utility to facilitate the removal of these " "old files." msgstr "" #: ../utilities.php:1808 #, fuzzy msgid "SNMPAgent Utilities" msgstr "ПриложениÑ" #: ../utilities.php:1809 #, fuzzy msgid "View SNMPAgent Cache" msgstr "Виж SNMP кеша" #: ../utilities.php:1811 msgid "This shows all objects being handled by the SNMPAgent." msgstr "" #: ../utilities.php:1813 #, fuzzy msgid "Rebuild SNMPAgent Cache" msgstr "Виж SNMP кеша" #: ../utilities.php:1815 msgid "" "The SNMP cache will be cleared and re-generated if you select this option. " "Note that it takes another poller run to restore the SNMP cache completely." msgstr "" #: ../utilities.php:1817 msgid "View SNMPAgent Notification Log" msgstr "" #: ../utilities.php:1819 msgid "" "This menu pick allows you to view the latest events SNMPAgent has handled in " "relation to the registered notification receivers." msgstr "" #: ../utilities.php:1823 msgid "Allows Administrators to maintain SNMP notification receivers." msgstr "" #: ../utilities.php:1829 #, fuzzy msgid "Cacti System Utilities" msgstr "ÐаÑтройки на cacti" #: ../utilities.php:1953 msgid "Overrun Warning" msgstr "" #: ../utilities.php:1954 msgid "Timed Out" msgstr "" #: ../utilities.php:1955 msgid "Other" msgstr "" #: ../utilities.php:1957 msgid "Never Run" msgstr "" #: ../utilities.php:2010 msgid "Cannot open directory" msgstr "" #: ../utilities.php:2014 msgid "Directory Does NOT Exist!!" msgstr "" #: ../utilities.php:2021 msgid "Current Boost Status" msgstr "" #: ../utilities.php:2024 msgid "Boost On-demand Updating:" msgstr "" #: ../utilities.php:2027 #, fuzzy msgid "Total Data Sources:" msgstr "Източници на данни" #: ../utilities.php:2031 msgid "Pending Boost Records:" msgstr "" #: ../utilities.php:2034 msgid "Archived Boost Records:" msgstr "" #: ../utilities.php:2037 msgid "Total Boost Records:" msgstr "" #: ../utilities.php:2041 msgid "Boost Storage Statistics" msgstr "" #: ../utilities.php:2045 msgid "Database Engine:" msgstr "" #: ../utilities.php:2049 msgid "Current Boost Table(s) Size:" msgstr "" #: ../utilities.php:2053 msgid "Avg Bytes/Record:" msgstr "" #: ../utilities.php:2081 #, php-format msgid "%d Bytes" msgstr "" #: ../utilities.php:2081 msgid "Max Record Length:" msgstr "" #: ../utilities.php:2087 ../utilities.php:2088 msgid "Unlimited" msgstr "" #: ../utilities.php:2093 msgid "Max Allowed Boost Table Size:" msgstr "" #: ../utilities.php:2097 msgid "Estimated Maximum Records:" msgstr "" #: ../utilities.php:2100 msgid "Runtime Statistics" msgstr "" #: ../utilities.php:2103 msgid "Last Start Time:" msgstr "" #: ../utilities.php:2106 msgid "Last Run Duration:" msgstr "" #: ../utilities.php:2107 #, php-format msgid "%d minutes" msgstr "" #: ../utilities.php:2107 #, php-format msgid "%d seconds" msgstr "" #: ../utilities.php:2108 #, php-format msgid "%0.2f percent of update frequency)" msgstr "" #: ../utilities.php:2112 msgid "RRD Updates:" msgstr "" #: ../utilities.php:2115 ../utilities.php:2121 msgid "MBytes" msgstr "" #: ../utilities.php:2115 msgid "Peak Poller Memory:" msgstr "" #: ../utilities.php:2118 msgid "Detailed Runtime Timers:" msgstr "" #: ../utilities.php:2121 msgid "Max Poller Memory Allowed:" msgstr "" #: ../utilities.php:2124 msgid "Run Time Configuration" msgstr "" #: ../utilities.php:2127 msgid "Update Frequency:" msgstr "" #: ../utilities.php:2130 msgid "Next Start Time:" msgstr "" #: ../utilities.php:2133 #, fuzzy msgid "Maximum Records:" msgstr "МакÑимална ÑтойноÑÑ‚" #: ../utilities.php:2133 msgid "Records" msgstr "" #: ../utilities.php:2136 msgid "Maximum Allowed Runtime:" msgstr "" #: ../utilities.php:2142 msgid "Image Caching Status:" msgstr "" #: ../utilities.php:2145 msgid "Cache Directory:" msgstr "" #: ../utilities.php:2148 msgid "Cached Files:" msgstr "" #: ../utilities.php:2151 msgid "Cached Files Size:" msgstr "" #: ../utilities.php:2248 #, fuzzy msgid "SNMPAgent Cache" msgstr "Виж SNMP кеша" #: ../utilities.php:2278 msgid "OIDs" msgstr "" #: ../utilities.php:2358 msgid "Column Data" msgstr "" #: ../utilities.php:2358 msgid "Scalar" msgstr "" #: ../utilities.php:2501 msgid "SNMPAgent Notification Log" msgstr "" #: ../utilities.php:2529 ../utilities.php:2613 msgid "Receiver" msgstr "" #: ../utilities.php:2605 msgid "Log Entries" msgstr "" #: ../utilities.php:2620 #, php-format msgid "Severity Level: %s" msgstr "" #: ../vdef.php:265 msgid "Click 'Continue' to delete the following VDEF." msgid_plural "Click 'Continue' to delete following VDEFs." msgstr[0] "" msgstr[1] "" #: ../vdef.php:270 #, fuzzy msgid "Delete VDEF" msgid_plural "Delete VDEFs" msgstr[0] "Избери вÑички" msgstr[1] "Избери вÑички" #: ../vdef.php:274 msgid "" "Click 'Continue' to duplicate the following VDEF. You can optionally change " "the title format for the new VDEF." msgid_plural "" "Click 'Continue' to duplicate following VDEFs. You can optionally change the " "title format for the new VDEFs." msgstr[0] "" msgstr[1] "" #: ../vdef.php:280 msgid "Duplicate VDEF" msgid_plural "Duplicate VDEFs" msgstr[0] "" msgstr[1] "" #: ../vdef.php:283 msgid "You must select at least one VDEF." msgstr "" #: ../vdef.php:325 msgid "Click 'Continue' to delete the following VDEF's." msgstr "" #: ../vdef.php:385 #, fuzzy msgid "VDEF Preview" msgstr "Общ изглед" #: ../vdef.php:390 #, php-format msgid "VDEF Items [edit: %s]" msgstr "" #: ../vdef.php:392 msgid "VDEF Items [new]" msgstr "" #: ../vdef.php:408 msgid "Choose what type of VDEF item this is." msgstr "" #: ../vdef.php:408 msgid "VDEF Item Type" msgstr "" #: ../vdef.php:430 msgid "Enter a value for this VDEF item." msgstr "" #: ../vdef.php:430 msgid "VDEF Item Value" msgstr "" #: ../vdef.php:535 #, php-format msgid "VDEFs [edit: %s]" msgstr "" #: ../vdef.php:537 msgid "VDEFs [new]" msgstr "" #: ../vdef.php:600 ../vdef.php:639 msgid "Delete VDEF Item" msgstr "" #: ../vdef.php:845 msgid "The name of this VDEF." msgstr "" #: ../vdef.php:845 #, fuzzy msgid "VDEF Name" msgstr "Име" #: ../vdef.php:846 msgid "" "VDEFs that are in use cannot be Deleted. In use is defined as being " "referenced by a Graph or a Graph Template." msgstr "" #: ../vdef.php:847 msgid "The number of Graphs using this VDEF." msgstr "" #: ../vdef.php:848 msgid "The number of Graphs Templates using this VDEF." msgstr "" #: ../vdef.php:871 msgid "No VDEFs" msgstr "" #, fuzzy #~ msgid "Graph Template Selection [edit: %s]" #~ msgstr "Шаблони за елементи на графиката" #, fuzzy #~ msgid "Graph Template Selection [new]" #~ msgstr "Шаблони за елементи на графиката" #, fuzzy #~ msgid "Graph Export" #~ msgstr "Графични елементи" #~ msgid "" #~ "Which RRA's to use when entering data. (It is recommended that you select " #~ "all of these values)." #~ msgstr "" #~ "Кои RRA да Ñе ползват при въвеждане на данни. (Препоръчва Ñе да изберете " #~ "вÑÑка една от тези ÑтойноÑÑ‚)." #~ msgid "Zoom" #~ msgstr "Увеличение" cacti-1.1.38/locales/LC_MESSAGES/0000775000175000017500000000000013264740213015464 5ustar tromantromancacti-1.1.38/links.php0000664000175000017500000005121713264740213014114 0ustar tromantroman __('Delete'), 3 => __('Enable'), 2 => __('Disable') ); set_default_action(); switch (get_request_var('action')) { case 'actions': form_actions(); break; case 'delete_page': if (isset_request_var('id') && get_filter_request_var('id')) { page_delete(get_request_var('id')); } header('Location: links.php?header=false'); break; case 'move_page_up': if (isset_request_var('id') && get_filter_request_var('id') && isset_request_var('order') && get_filter_request_var('order')) { page_move(get_request_var('id'), get_request_var('order'), '-1'); } header('Location: links.php?header=false'); break; case 'move_page_down': if (isset_request_var('id') && get_filter_request_var('id') && isset_request_var('order') && get_filter_request_var('order')) { page_move(get_request_var('id'), get_request_var('order'), '1'); } header('Location: links.php?header=false'); break; case 'save': $save['id'] = isset_request_var('id') ? get_filter_request_var('id'):0; $save['title'] = form_input_validate(get_nfilter_request_var('title'), 'title', '', false, 3); $save['style'] = get_nfilter_request_var('style'); $save['enabled'] = (isset_request_var('enabled') ? 'on':''); if (preg_match('/^((((ht|f)tp(s?))\:\/\/){1}\S+)/i', get_nfilter_request_var('fileurl')) && get_nfilter_request_var('filename') == '0') { $save['contentfile'] = get_nfilter_request_var('fileurl'); } else { $save['contentfile'] = preg_replace('/[^A-Za-z0-9_\.-]/','_', get_nfilter_request_var('filename')); } $consolesection = get_nfilter_request_var('consolesection'); $consolenewsection = get_nfilter_request_var('consolenewsection'); $extendedstyle = ''; $lastsortorder = db_fetch_cell('SELECT MAX(sortorder) FROM external_links'); $save['sortorder'] = $lastsortorder + 1; if ($save['style'] == 'CONSOLE') { if ($consolesection == '__NEW__') { $extendedstyle = $consolenewsection; } else { $extendedstyle = $consolesection; } if ($extendedstyle == '') { $extendedstyle = __('External Links'); } } $save['extendedstyle'] = $extendedstyle; if (!is_error_message()){ $id = sql_save($save, 'external_links'); // always give the login account access db_execute_prepared('REPLACE INTO user_auth_realm (user_id, realm_id) VALUES (?, ?)', array($_SESSION['sess_user_id'], $id+10000)); raise_message(1); header('Location: links.php?header=false'); exit; } else { raise_message(2); header('Location: links.php?action=edit&header=false&id=' . (isset_request_var('id') ? get_filter_request_var('id'):'')); exit; } break; case 'edit': top_header(); edit_page(); bottom_footer(); break; default: top_header(); pages(); bottom_footer(); break; } function form_actions() { global $actions; /* ================= input validation ================= */ get_filter_request_var('drp_action'); /* ==================================================== */ /* if we are to save this form, instead of display it */ if (isset_request_var('selected_items')) { $selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items')); if ($selected_items != false) { if ($_POST['drp_action'] == '3') { // Enable Page for ($i=0;($i $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ $page_list .= '
  • ' . htmlspecialchars(db_fetch_cell_prepared('SELECT title FROM external_links WHERE id = ?', array($matches[1]))) . '
  • '; $pages[$i] = $matches[1]; $i++; } } top_header(); form_start('links.php'); html_start_box($actions[get_request_var_post('drp_action')], '60%', '', '3', 'center', ''); if (isset($pages) && sizeof($pages)) { if (get_request_var('drp_action') == '3') { // Enable Pages print "

    " . __('Click \'Continue\' to Enable the following Page(s).') . "

      " . $page_list . "
    \n"; $save_html = " "; } elseif (get_request_var('drp_action') == '2') { // Disable Pages print "

    " . __('Click \'Continue\' to Disable the following Page(s).') . "

      " . $page_list . "
    \n"; $save_html = " "; } elseif (get_request_var('drp_action') == '1') { // Delete Pages print "

    " . __('Click \'Continue\' to Delete the following Page(s).') . "

      " . $page_list . "
    \n"; $save_html = " "; } } else { print "" . __('You must select at least one page.') . "\n"; $save_html = ""; } print " $save_html \n"; html_end_box(); form_end(); bottom_footer(); } function pages() { global $item_rows, $config, $link_actions; /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'sortorder', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ) ); validate_store_request_vars($filters, 'sess_links'); /* ================= input validation ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } ?> __('Console'), 'TAB' => __('Top Tab'), 'FRONT' => __('Bottom Console'), 'FRONTTOP' => __('Top Console') ); if (get_request_var('filter') != '') { $sql_where = " WHERE title LIKE '%" . get_request_var('filter') . "%' OR contentfile LIKE '%" . get_request_var('filter') . "%'"; } else { $sql_where = ''; } $sql_order = get_order_string(); $sql_order = str_replace('sortorder DESC', 'sortorder ASC', $sql_order); $sql_limit = ' LIMIT ' . ($rows*(get_request_var('page')-1)) . ',' . $rows; $pages = db_fetch_assoc("SELECT * FROM external_links $sql_where $sql_order $sql_limit"); $total_rows = db_fetch_cell('SELECT COUNT(*) FROM external_links'); form_start('links.php'); $nav = html_nav_bar('links.php', MAX_DISPLAY_PAGES, get_request_var_request('page'), $rows, $total_rows, 8, __('External Links'), 'page', 'main'); print $nav; html_start_box('', '100%', '', '4', 'center', ''); $display_text = array( 'nosort0' => array('display' => __('Actions'), 'align' => 'left', 'sort' => ''), 'contentfile' => array('display' => __('Page'), 'align' => 'left', 'sort' => 'ASC'), 'title' => array('display' => __('Title'), 'align' => 'left', 'sort' => 'ASC'), 'style' => array('display' => __('Style'), 'align' => 'left', 'sort' => 'ASC'), 'disabled' => array('display' => __('Enabled'), 'align' => 'left', 'sort' => 'ASC'), 'sortorder' => array('display' => __('Order'), 'align' => 'center', 'sort' => 'ASC') ); html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction')); $i = 0; if (sizeof($pages)) { foreach ($pages as $page) { form_alternate_row('line' . $page['id']); $actions = '
    '; if ($page['enabled'] == 'on') { $actions .= ''; } form_selectable_cell($actions, $page['id'], '50'); form_selectable_cell(htmlspecialchars($page['contentfile']), $page['id']); form_selectable_cell(htmlspecialchars($page['title']), $page['id']); form_selectable_cell(htmlspecialchars($style_translate[$page['style']]) . ($page['style'] == 'CONSOLE' ? ' ( ' . ($page['extendedstyle'] == '' ? 'External Links':$page['extendedstyle']) . ' )':''), $page['id']); form_selectable_cell(($page['enabled'] == 'on' ? 'Yes':'No'), $page['id']); if (get_request_var('sort_column') == 'sortorder') { if ($i != 0) { $sort = ''; } else { $sort = ''; } if ($i == sizeof($pages)-1) { $sort .= ''; } else { $sort .= ''; } form_selectable_cell($sort, $page['id'], '', 'center'); } else { form_selectable_cell(__('Sort for Ordering'), $page['id']); } form_checkbox_cell($page['title'], $page['id']); form_end_row(); $i++; } } else { print "" . __('No Pages Found') . "\n"; } html_end_box(false); if (sizeof($pages)) { print $nav; } draw_actions_dropdown($link_actions); form_end(); } function page_delete($id) { db_execute_prepared('DELETE FROM external_links WHERE id = ?', array($id)); db_execute_prepared('DELETE FROM user_auth_realm WHERE realm_id = ?', array($id+10000)); db_execute_prepared('DELETE FROM user_auth_group_realm WHERE realm_id = ?', array($id+10000)); page_resort(); } function page_resort() { $pages = db_fetch_assoc("SELECT * FROM external_links ORDER BY sortorder"); $i = 1; if (sizeof($pages)) { foreach ($pages as $page) { db_execute_prepared('UPDATE external_links SET sortorder = ? WHERE id = ?' . array($id, $page['id'])); $i++; } } } function page_move($pageid, $junk, $direction) { $oldorder = db_fetch_cell_prepared('SELECT sortorder FROM external_links WHERE id = ?', array($pageid)); $neworder = $oldorder + $direction; $otherid = db_fetch_cell_prepared('SELECT id FROM external_links WHERE sortorder = ?', array($neworder)); if (!empty($otherid)) { db_execute_prepared('UPDATE external_links SET sortorder = ? WHERE id = ?', array($neworder, $pageid)); db_execute_prepared('UPDATE external_links SET sortorder = ? WHERE id = ?', array($oldorder, $otherid)); } } function edit_page() { global $config; $sections = db_fetch_assoc("SELECT extendedstyle FROM external_links WHERE style='CONSOLE' GROUP BY extendedstyle ORDER BY extendedstyle"); $sec_ar = array(); $sec_ar['External Links'] = __('External Links'); foreach ($sections as $sec) { if ($sec['extendedstyle'] !='') { $sec_ar[$sec['extendedstyle']] = $sec['extendedstyle']; } } $sec_ar['__NEW__'] = 'New Name Below'; if (isset_request_var('id')) { $data = db_fetch_row_prepared('SELECT * FROM external_links WHERE id = ?', array(get_filter_request_var('id'))); } else { $data = array(); } $field_array = array( 'id' => array( 'friendly_name' => __('Style'), 'method' => 'hidden', 'value' => isset_request_var('id') ? get_request_var('id'):0 ), 'style' => array( 'friendly_name' => __('Style'), 'method' => 'drop_array', 'array' => array( 'TAB' => __('Top Tab'), 'CONSOLE' => __('Console Menu'), 'FRONT' => __('Bottom of Console Page'), 'FRONTTOP' => __('Top of Console Page') ), 'description' => __('Where should this page appear?'), 'value' => (isset($data['style']) ? $data['style']:'') ), 'consolesection' => array( 'friendly_name' => __('Console Menu Section'), 'method' => 'drop_array', 'array' => $sec_ar, 'description' => __('Under which Console heading should this item appear? (All External Link menus will appear between Configuration and Utilities)'), 'value' => (isset($data['extendedstyle']) ? $data['extendedstyle']:'') ), 'consolenewsection' => array( 'friendly_name' => __('New Console Section'), 'method' => 'textbox', 'max_length' => 20, 'description' => __('If you don\'t like any of the choices above, type a new title in here.'), 'value' => (isset($data['extendedstyle']) ? $data['extendedstyle']:'') ), 'title' => array( 'friendly_name' => __('Tab/Menu Name'), 'method' => 'textbox', 'max_length' => 20, 'description' => __('The text that will appear in the tab or menu.'), 'value' => (isset($data['title']) ? $data['title']:'') ), 'filename' => array( 'friendly_name' => __('Content File/URL'), 'method' => 'drop_files', 'directory' => $config['base_path'] . '/include/content', 'exclusions' => array('README', 'index.php'), 'none_value' => __('Web URL Below'), 'description' => __('The file that contains the content for this page. This file needs to be in the Cacti \'include/content/\' directory.'), 'value' => (isset($data['contentfile']) ? $data['contentfile']:'') ), 'fileurl' => array( 'friendly_name' => __('Web URL Location'), 'method' => 'textbox', 'description' => __('The valid URL to use for this external link. Must include the type, for example http://www.cacti.net. Note that many websites do not allow them to be embedded in an iframe from a foreign site, and therefore External Linking may not work.'), 'max_length' => 255, 'size' => 80, 'default' => 'http://www.cacti.net', 'value' => (isset($data['contentfile']) ? $data['contentfile']:'') ), 'enabled' => array( 'friendly_name' => 'Do you want this page enabled', 'method' => 'checkbox', 'description' => "If you wish this page to be viewable immediately, please check the checkbox.", 'default' => 'on', 'value' => (isset($data['enabled']) ? 'on':'') ), ); form_start('links.php'); if (isset($data['title'])) { html_start_box(__('External Links [edit: %s]', $data['title']), '100%', true, '3', 'center', ''); } else { html_start_box(__('External Links [new]'), '100%', true, '3', 'center', ''); } draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => $field_array ) ); html_end_box(true, true); form_save_button('links.php', 'save'); ?> '; } else { print '
    '; $file = $config['base_path'] . "/include/content/" . $page['contentfile']; if (file_exists($file)) { include_once($file); } else { print '

    The file \'' . $page['contentfile'] . '\' does not exist!!

    '; } print '
    '; } } else { print 'ERROR: Page is not authorized.'; } bottom_footer(); } cacti-1.1.38/lib/0000775000175000017500000000000013264740213013023 5ustar tromantromancacti-1.1.38/lib/xml.php0000664000175000017500000001271013264740213014335 0ustar tromantroman $vals[$i]['tag']) { $j = 0; $prevtag = $vals[$i]['tag']; } $children[$vals[$i]['tag']] = get_children($vals,$i); break; case 'close': return $children; } } } function rrdxport2array($data) { // Bug force encoding to UTF-8 $data = str_replace(array('US-ASCII', 'ISO-8859-1'), 'UTF-8', $data); /* bug #1436 */ /* scan XML for bad data RRDtool 1.2.30 */ $array = explode("\n", $data); if (sizeof($array)){ if ((substr(trim($array[0]),0,1)) == '<') { /* continue */ } else { $new_array = array(); foreach($array as $element) { if ((substr(trim($element),0,1)) == '<') { $new_array[] = $element; } } $array = $new_array; $data = implode("\n", $array); } } /* mvo voncken@mailandnews.com original ripped from on the php-manual:gdemartini@bol.com.br to be used for data retrieval(result-structure is Data oriented) */ $p = xml_parser_create('UTF-8'); $vals = array(); $index = array(); xml_parser_set_option($p, XML_OPTION_SKIP_WHITE, 1); xml_parser_set_option($p, XML_OPTION_CASE_FOLDING, 0); xml_parser_set_option($p, XML_OPTION_TARGET_ENCODING, 'UTF-8'); xml_parse_into_struct($p, $data, $vals, $index); xml_parser_free($p); $tree = array(); $i = 0; $column = 0; $row = 0; $tree = get_rrd_children($vals, $i, $column, $row); return $tree; } function get_rrd_children($vals, &$i, &$column, &$row) { $children = array(); if (isset($vals[$i]['value'])) { if ($vals[$i]['value']) array_push($children, $vals[$i]['value']); } $prevtag = ''; $j = 0; while (++$i < count($vals)) { switch ($vals[$i]['type']) { case 'cdata': array_push($children, $vals[$i]['value']); break; case 'complete': /* if the value is an empty string, php doesn't include the 'value' key in its array, so we need to check for this first */ if (isset($vals[$i]['value'])) { switch($vals[$i]['tag']) { case 'entry': $column++; $children['col' . $column] = $vals[$i]['value']; break; case 't': $children['timestamp'] = $vals[$i]['value']; break; case 'v': $column++; $children['col' . $column] = $vals[$i]['value']; break; default: $children[$vals[$i]['tag']] = $vals[$i]['value']; } } else { $children[$vals[$i]['tag']] = ''; } break; case 'open': $j++; if ($prevtag <> $vals[$i]['tag']) { $j = 0; $prevtag = $vals[$i]['tag']; } switch($vals[$i]['tag']) { case 'meta': case 'xport': case 'legend': $children[$vals[$i]['tag']] = get_rrd_children($vals,$i,$column,$row); break; case 'data': break; case 'row': $row++; $column=0; $children['data'][$row] = get_rrd_children($vals,$i,$column,$row); break; } break; case 'close': return $children; } } } cacti-1.1.38/lib/vdef.php0000664000175000017500000000672413264740213014471 0ustar tromantroman 0) { $vdef_string .= ($display ? ', ':','); } if ($vdef_item['type'] == 5) { $current_vdef_id = $vdef_item['value']; $vdef_string .= get_vdef($current_vdef_id, $display); } else { $vdef_string .= get_vdef_item_name($vdef_item['id']); } $i++; } } return $vdef_string; } function preset_vdef_form_list() { $fields_vdef_edit = array( 'name' => array( 'method' => 'textbox', 'friendly_name' => __('Name'), 'description' => __('A useful name for this VDEF.'), 'value' => '|arg1:name|', 'max_length' => '255', ), ); return $fields_vdef_edit; } function preset_vdef_item_form_list() { $fields_vdef_item_edit = array( 'sequence' => 'sequence', 'type' => 'type', 'value' => 'value' ); return $fields_vdef_item_edit; } cacti-1.1.38/lib/variables.php0000664000175000017500000004006113264740213015505 0ustar tromantroman 0', array($data_template_id)); if (sizeof($data) > 0) { foreach ($data as $item) { update_data_source_title_cache($item['local_data_id']); } } } /* update_data_source_title_cache_from_query - updates the title cache for all data sources that match a given data query/index combination @arg $snmp_query_id - (int) the ID of the data query to match @arg $snmp_index - the index within the data query to match */ function update_data_source_title_cache_from_query($snmp_query_id, $snmp_index) { $data = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' id FROM data_local WHERE snmp_query_id = ? AND snmp_index = ?', array($snmp_query_id, $snmp_index)); if (sizeof($data) > 0) { foreach ($data as $item) { update_data_source_title_cache($item['id']); } } } /* update_data_source_title_cache_from_host - updates the title cache for all data sources that match a given host @arg $host_id - (int) the ID of the host to match */ function update_data_source_title_cache_from_host($host_id) { $data = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' id FROM data_local WHERE host_id = ?', array($host_id)); if (sizeof($data) > 0) { foreach ($data as $item) { update_data_source_title_cache($item['id']); } } } /* update_data_source_title_cache - updates the title cache for a single data source @arg $local_data_id - (int) the ID of the data source to update the title cache for */ function update_data_source_title_cache($local_data_id) { db_execute_prepared('UPDATE data_template_data SET name_cache = ? WHERE local_data_id = ?', array(get_data_source_title($local_data_id), $local_data_id)); api_plugin_hook_function('update_data_source_title_cache', $local_data_id); } /* update_graph_title_cache_from_template - updates the title cache for all graphs that match a given graph template @arg $graph_template_id - (int) the ID of the graph template to match */ function update_graph_title_cache_from_template($graph_template_id) { $graphs = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' local_graph_id FROM graph_templates_graph WHERE graph_template_id = ? AND local_graph_id > 0', array($graph_template_id)); if (sizeof($graphs) > 0) { foreach ($graphs as $item) { update_graph_title_cache($item['local_graph_id']); } } } /* update_graph_title_cache_from_query - updates the title cache for all graphs that match a given data query/index combination @arg $snmp_query_id - (int) the ID of the data query to match @arg $snmp_index - the index within the data query to match */ function update_graph_title_cache_from_query($snmp_query_id, $snmp_index) { $graphs = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' id FROM graph_local WHERE snmp_query_id = ? AND snmp_index = ?', array($snmp_query_id, $snmp_index)); if (sizeof($graphs) > 0) { foreach ($graphs as $item) { update_graph_title_cache($item['id']); } } } /* update_graph_title_cache_from_host - updates the title cache for all graphs that match a given host @arg $host_id - (int) the ID of the host to match */ function update_graph_title_cache_from_host($host_id) { $graphs = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' id FROM graph_local WHERE host_id = ?', array($host_id)); if (sizeof($graphs) > 0) { foreach ($graphs as $item) { update_graph_title_cache($item['id']); } } } /* update_graph_title_cache - updates the title cache for a single graph @arg $local_graph_id - (int) the ID of the graph to update the title cache for */ function update_graph_title_cache($local_graph_id) { db_execute_prepared('UPDATE graph_templates_graph SET title_cache = ? WHERE local_graph_id = ?', array(get_graph_title($local_graph_id), $local_graph_id)); } /* null_out_substitutions - takes a string and cleans out any host variables that do not have values @arg $string - the string to clean out unsubstituted variables for @returns - the cleaned up string */ function null_out_substitutions($string) { return preg_replace("/\|host_" . VALID_HOST_FIELDS . "\|( - )?/i", '', $string); } /* expand_title - takes a string and substitutes all data query variables contained in it or cleans them out if no data query is in use @arg $host_id - (int) the host ID to match @arg $snmp_query_id - (int) the data query ID to match @arg $snmp_index - the data query index to match @arg $title - the original string that contains the data query variables @returns - the original string with all of the variable substitutions made */ function expand_title($host_id, $snmp_query_id, $snmp_index, $title) { if ((strstr($title, '|')) && (!empty($host_id))) { if (($snmp_query_id != '0') && ($snmp_index != '')) { return substitute_snmp_query_data(null_out_substitutions(substitute_host_data($title, '|', '|', $host_id)), $host_id, $snmp_query_id, $snmp_index, read_config_option('max_data_query_field_length')); } else { return null_out_substitutions(substitute_host_data($title, '|', '|', $host_id)); } } else { return null_out_substitutions($title); } } /* substitute_script_query_path - takes a string and substitutes all path variables contained in it @arg $path - the string to make path variable substitutions on @returns - the original string with all of the variable substitutions made */ function substitute_script_query_path($path) { global $config; $path = clean_up_path(str_replace('|path_cacti|', $config['base_path'], $path)); $path = clean_up_path(str_replace('|path_php_binary|', read_config_option('path_php_binary'), $path)); return $path; } /* substitute_host_data - takes a string and substitutes all host variables contained in it @arg $string - the string to make host variable substitutions on @arg $l_escape_string - the character used to escape each variable on the left side @arg $r_escape_string - the character used to escape each variable on the right side @arg $host_id - (int) the host ID to match @returns - the original string with all of the variable substitutions made */ function substitute_host_data($string, $l_escape_string, $r_escape_string, $host_id) { if (!empty($host_id)) { if (!isset($_SESSION['sess_host_cache_array'][$host_id])) { $host = db_fetch_row_prepared('SELECT ' . SQL_NO_CACHE . ' * FROM host WHERE id = ?', array($host_id)); $_SESSION['sess_host_cache_array'][$host_id] = $host; } $search = array(); $replace = array(); $search[] = $l_escape_string . 'host_management_ip' . $r_escape_string; /* for compatibility */ $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['hostname']; /* for compatibility */ $search[] = $l_escape_string . 'host_hostname' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['hostname']; $search[] = $l_escape_string . 'host_description' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['description']; $search[] = $l_escape_string . 'host_notes' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['notes']; $search[] = $l_escape_string . 'host_polling_time' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['polling_time']; $search[] = $l_escape_string . 'host_avg_time' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['avg_time']; $search[] = $l_escape_string . 'host_cur_time' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['cur_time']; $search[] = $l_escape_string . 'host_availability' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['availability']; /* snmp connectivity information */ $search[] = $l_escape_string . 'host_snmp_community' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_community']; $search[] = $l_escape_string . 'host_snmp_version' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_version']; $search[] = $l_escape_string . 'host_snmp_username' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_username']; $search[] = $l_escape_string . 'host_snmp_password' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_password']; $search[] = $l_escape_string . 'host_snmp_auth_protocol' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_auth_protocol']; $search[] = $l_escape_string . 'host_snmp_priv_passphrase' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_priv_passphrase']; $search[] = $l_escape_string . 'host_snmp_priv_protocol' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_priv_protocol']; $search[] = $l_escape_string . 'host_snmp_context' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_context']; $search[] = $l_escape_string . 'host_snmp_engine_id' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_engine_id']; $search[] = $l_escape_string . 'host_snmp_port' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_port']; $search[] = $l_escape_string . 'host_snmp_timeout' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_timeout']; /* snmp system information */ $search[] = $l_escape_string . 'host_snmp_sysDescr' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_sysDescr']; $search[] = $l_escape_string . 'host_snmp_sysObjectID' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_sysObjectID']; $search[] = $l_escape_string . 'host_snmp_sysContact' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_sysContact']; $search[] = $l_escape_string . 'host_snmp_sysLocation' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_sysLocation']; $search[] = $l_escape_string . 'host_snmp_sysName' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_sysName']; $search[] = $l_escape_string . 'host_snmp_sysUpTimeInstance' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['snmp_sysUpTimeInstance']; $search[] = $l_escape_string . 'host_ping_retries' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['ping_retries']; $search[] = $l_escape_string . 'host_max_oids' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['max_oids']; $search[] = $l_escape_string . 'host_id' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['id']; /* handle the external id */ $search[] = $l_escape_string . 'host_external_id' . $r_escape_string; $replace[] = $_SESSION['sess_host_cache_array'][$host_id]['external_id']; $string = str_replace($search, $replace, $string); $temp = api_plugin_hook_function( 'substitute_host_data', array('string' => $string, 'l_escape_string' => $l_escape_string, 'r_escape_string' => $r_escape_string, 'host_id' => $host_id) ); $string = $temp['string']; } return $string; } /* substitute_snmp_query_data - takes a string and substitutes all data query variables contained in it @arg $string - the original string that contains the data query variables @arg $host_id - (int) the host ID to match @arg $snmp_query_id - (int) the data query ID to match @arg $snmp_index - the data query index to match @arg $max_chars - the maximum number of characters to substitute @returns - the original string with all of the variable substitutions made */ function substitute_snmp_query_data($string, $host_id, $snmp_query_id, $snmp_index, $max_chars = 0) { $snmp_cache_data = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' field_name, field_value FROM host_snmp_cache WHERE host_id = ? AND snmp_query_id = ? AND snmp_index = ?', array($host_id, $snmp_query_id, $snmp_index)); if (sizeof($snmp_cache_data) > 0) { foreach ($snmp_cache_data as $data) { if ($data['field_value'] != '') { if ($max_chars > 0) { $data['field_value'] = substr($data['field_value'], 0, $max_chars); } $string = stri_replace('|query_' . $data['field_name'] . '|', $data['field_value'], $string); } } } return $string; } /* substitute_data_input_data - takes a string and substitutes all data input variables contained in it @arg $string - the original string that contains the data input variables @arg $local_data_id - (int) the local data id to match @arg $max_chars - the maximum number of characters to substitute @returns - the original string with all of the variable substitutions made */ function substitute_data_input_data($string, $graph, $local_data_id, $max_chars = 0) { if (empty($local_data_id)) { if (isset($graph['local_graph_id'])) { $local_data_ids = array_rekey(db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' DISTINCT local_data_id FROM data_template_rrd INNER JOIN graph_templates_item ON data_template_rrd.id = graph_templates_item.task_item_id WHERE local_graph_id = ?', array($graph['local_graph_id'])), 'local_data_id', 'local_data_id'); if (sizeof($local_data_ids)) { $data_template_data_id = db_fetch_cell('SELECT ' . SQL_NO_CACHE . ' id FROM data_template_data WHERE local_data_id IN (' . implode(',', $local_data_ids) . ')'); } else { $data_template_data_id = 0; } } else { $data_template_data_id = 0; } } else { $data_template_data_id = db_fetch_cell_prepared('SELECT ' . SQL_NO_CACHE . ' id FROM data_template_data WHERE local_data_id = ?', array($local_data_id)); } if (!empty($data_template_data_id)) { $data = db_fetch_assoc_prepared("SELECT " . SQL_NO_CACHE . " dif.data_name, did.value FROM data_input_fields AS dif INNER JOIN data_input_data AS did ON dif.id = did.data_input_field_id WHERE data_template_data_id = ? AND input_output = 'in'", array($data_template_data_id)); if (sizeof($data)) { foreach ($data as $item) { if ($item['value'] != '') { if ($max_chars > 0) { $item['value'] = substr($item['field_value'], 0, $max_chars); } $string = stri_replace('|input_' . $item['data_name'] . '|', $item['value'], $string); } } } } return $string; } cacti-1.1.38/lib/utility.php0000664000175000017500000012244713264740213015251 0ustar tromantroman 0 ? "_" . "$poller_id'":"'"), array($hash)); } function repopulate_poller_cache() { $poller_data = db_fetch_assoc('SELECT ' . SQL_NO_CACHE . ' * FROM data_local'); $poller_items = array(); $local_data_ids = array(); $i = 0; if (sizeof($poller_data)) { foreach ($poller_data as $data) { $poller_items = array_merge($poller_items, update_poller_cache($data)); $local_data_ids[] = $data['id']; $i++; if ($i > 500) { $i = 0; poller_update_poller_cache_from_buffer($local_data_ids, $poller_items); $local_data_ids = array(); $poller_items = array(); } } if ($i > 0) { poller_update_poller_cache_from_buffer($local_data_ids, $poller_items); } } $poller_ids = array_rekey(db_fetch_assoc('SELECT DISTINCT poller_id FROM poller_item'), 'poller_id', 'poller_id'); if (sizeof($poller_ids)) { foreach($poller_ids as $poller_id) { api_data_source_cache_crc_update($poller_id); } } /* update the field mappings for the poller */ db_execute("TRUNCATE TABLE poller_data_template_field_mappings"); db_execute("INSERT IGNORE INTO poller_data_template_field_mappings SELECT dtr.data_template_id, dif.data_name, GROUP_CONCAT(dtr.data_source_name ORDER BY dtr.data_source_name) AS data_source_names, NOW() FROM data_template_rrd AS dtr INNER JOIN data_input_fields AS dif ON dtr.data_input_field_id = dif.id WHERE dtr.local_data_id=0 GROUP BY dtr.data_template_id, dif.data_name"); } function update_poller_cache_from_query($host_id, $data_query_id) { $poller_data = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' * FROM data_local WHERE host_id = ? AND snmp_query_id = ?', array($host_id, $data_query_id)); $i = 0; $poller_items = $local_data_ids = array(); if (sizeof($poller_data)) { foreach ($poller_data as $data) { $poller_items = array_merge($poller_items, update_poller_cache($data)); $local_data_ids[] = $data['id']; $i++; if ($i > 500) { $i = 0; poller_update_poller_cache_from_buffer($local_data_ids, $poller_items); $local_data_ids = array(); $poller_items = array(); } } if ($i > 0) { poller_update_poller_cache_from_buffer($local_data_ids, $poller_items); } } $poller_ids = array_rekey( db_fetch_assoc_prepared('SELECT DISTINCT poller_id FROM poller_item WHERE host_id = ?', array($host_id)), 'poller_id', 'poller_id' ); if (sizeof($poller_ids)) { foreach($poller_ids as $poller_id) { api_data_source_cache_crc_update($poller_id); } } } function update_poller_cache($data_source, $commit = false) { global $config; include_once($config['library_path'] . '/data_query.php'); include_once($config['library_path'] . '/api_poller.php'); if (!is_array($data_source)) { $data_source = db_fetch_row_prepared('SELECT ' . SQL_NO_CACHE . ' * FROM data_local WHERE id = ?', array($data_source)); } $poller_items = array(); $data_input = db_fetch_row_prepared('SELECT ' . SQL_NO_CACHE . ' di.id, di.type_id, dtd.id AS data_template_data_id, dtd.data_template_id, dtd.active, dtd.rrd_step FROM data_template_data AS dtd INNER JOIN data_input AS di ON dtd.data_input_id=di.id WHERE dtd.local_data_id = ?', array($data_source['id'])); if (sizeof($data_input)) { /* we have to perform some additional sql queries if this is a 'query' */ if (($data_input['type_id'] == DATA_INPUT_TYPE_SNMP_QUERY) || ($data_input['type_id'] == DATA_INPUT_TYPE_SCRIPT_QUERY) || ($data_input['type_id'] == DATA_INPUT_TYPE_QUERY_SCRIPT_SERVER)){ $field = data_query_field_list($data_input['data_template_data_id']); $params = array(); if ($field['output_type'] != '') { $output_type_sql = ' AND sqgr.snmp_query_graph_id = ' . $field['output_type']; } else { $output_type_sql = ''; } $params[] = $data_input['data_template_id']; $params[] = $data_source['id']; $outputs = db_fetch_assoc_prepared('SELECT DISTINCT ' . SQL_NO_CACHE . " sqgr.snmp_field_name, dtr.id as data_template_rrd_id FROM snmp_query_graph_rrd AS sqgr INNER JOIN data_template_rrd AS dtr FORCE INDEX (local_data_id) ON sqgr.data_template_rrd_id = dtr.local_data_template_rrd_id WHERE sqgr.data_template_id = ? AND dtr.local_data_id = ? $output_type_sql ORDER BY dtr.id", $params); } if ($data_input['active'] == 'on') { if (($data_input['type_id'] == DATA_INPUT_TYPE_SCRIPT) || ($data_input['type_id'] == DATA_INPUT_TYPE_PHP_SCRIPT_SERVER)) { /* script */ /* fall back to non-script server actions if the user is running a version of php older than 4.3 */ if (($data_input['type_id'] == DATA_INPUT_TYPE_PHP_SCRIPT_SERVER) && (function_exists('proc_open'))) { $action = POLLER_ACTION_SCRIPT_PHP; $script_path = get_full_script_path($data_source['id']); }else if (($data_input['type_id'] == DATA_INPUT_TYPE_PHP_SCRIPT_SERVER) && (!function_exists('proc_open'))) { $action = POLLER_ACTION_SCRIPT; $script_path = read_config_option('path_php_binary') . ' -q ' . get_full_script_path($data_source['id']); } else { $action = POLLER_ACTION_SCRIPT; $script_path = get_full_script_path($data_source['id']); } $num_output_fields = sizeof(db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' id FROM data_input_fields WHERE data_input_id = ? AND input_output = "out" AND update_rra="on"', array($data_input['id']))); if ($num_output_fields == 1) { $data_template_rrd_id = db_fetch_cell_prepared('SELECT ' . SQL_NO_CACHE . ' id FROM data_template_rrd WHERE local_data_id = ?', array($data_source['id'])); $data_source_item_name = get_data_source_item_name($data_template_rrd_id); } else { $data_source_item_name = ''; } $poller_items[] = api_poller_cache_item_add($data_source['host_id'], array(), $data_source['id'], $data_input['rrd_step'], $action, $data_source_item_name, 1, $script_path); }else if ($data_input['type_id'] == DATA_INPUT_TYPE_SNMP) { /* snmp */ /* get the host override fields */ $data_template_id = db_fetch_cell_prepared('SELECT ' . SQL_NO_CACHE . ' data_template_id FROM data_template_data WHERE local_data_id = ?', array($data_source['id'])); /* get host fields first */ $host_fields = array_rekey( db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' dif.type_code, did.value FROM data_input_fields AS dif LEFT JOIN data_input_data AS did ON dif.id=did.data_input_field_id WHERE (type_code LIKE "snmp_%" OR type_code IN("hostname","host_id")) AND did.data_template_data_id = ? AND did.value != ""', array($data_input['data_template_data_id'])), 'type_code', 'value' ); $data_template_fields = array_rekey( db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' dif.type_code, did.value FROM data_input_fields AS dif LEFT JOIN data_input_data AS did ON dif.id=did.data_input_field_id WHERE (type_code LIKE "snmp_%" OR type_code="hostname") AND did.data_template_data_id = ? AND data_template_data_id = ? AND did.value != ""', array($data_template_id, $data_template_id)), 'type_code', 'value' ); if (sizeof($host_fields)) { if (sizeof($data_template_fields)) { foreach($data_template_fields as $key => $value) { if (!isset($host_fields[$key])) { $host_fields[$key] = $value; } } } } elseif (sizeof($data_template_fields)) { $host_fields = $data_template_fields; } $data_template_rrd_id = db_fetch_cell_prepared('SELECT ' . SQL_NO_CACHE . ' id FROM data_template_rrd WHERE local_data_id = ?', array($data_source['id'])); $poller_items[] = api_poller_cache_item_add($data_source['host_id'], $host_fields, $data_source['id'], $data_input['rrd_step'], 0, get_data_source_item_name($data_template_rrd_id), 1, (isset($host_fields['snmp_oid']) ? $host_fields['snmp_oid'] : '')); }else if ($data_input['type_id'] == DATA_INPUT_TYPE_SNMP_QUERY) { /* snmp query */ $snmp_queries = get_data_query_array($data_source['snmp_query_id']); /* get the host override fields */ $data_template_id = db_fetch_cell_prepared('SELECT ' . SQL_NO_CACHE . ' data_template_id FROM data_template_data WHERE local_data_id = ?', array($data_source['id'])); /* get host fields first */ $host_fields = array_rekey( db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' dif.type_code, did.value FROM data_input_fields AS dif LEFT JOIN data_input_data AS did ON dif.id=did.data_input_field_id WHERE (type_code LIKE "snmp_%" OR type_code="hostname") AND did.data_template_data_id = ? AND did.value != ""', array($data_input['data_template_data_id'])), 'type_code', 'value' ); $data_template_fields = array_rekey( db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' dif.type_code, did.value FROM data_input_fields AS dif LEFT JOIN data_input_data AS did ON dif.id=did.data_input_field_id WHERE (type_code LIKE "snmp_%" OR type_code="hostname") AND did.data_template_data_id = ? AND data_template_data_id = ? AND did.value != ""', array($data_template_id, $data_template_id)), 'type_code', 'value' ); if (sizeof($host_fields)) { if (sizeof($data_template_fields)) { foreach($data_template_fields as $key => $value) { if (!isset($host_fields[$key])) { $host_fields[$key] = $value; } } } } elseif (sizeof($data_template_fields)) { $host_fields = $data_template_fields; } if (sizeof($outputs) && sizeof($snmp_queries)) { foreach ($outputs as $output) { if (isset($snmp_queries['fields'][$output['snmp_field_name']]['oid'])) { $oid = $snmp_queries['fields'][$output['snmp_field_name']]['oid'] . '.' . $data_source['snmp_index']; if (isset($snmp_queries['fields'][$output['snmp_field_name']]['oid_suffix'])) { $oid .= '.' . $snmp_queries['fields'][$output['snmp_field_name']]['oid_suffix']; } } if (!empty($oid)) { $poller_items[] = api_poller_cache_item_add($data_source['host_id'], $host_fields, $data_source['id'], $data_input['rrd_step'], 0, get_data_source_item_name($output['data_template_rrd_id']), sizeof($outputs), $oid); } } } }else if (($data_input['type_id'] == DATA_INPUT_TYPE_SCRIPT_QUERY) || ($data_input['type_id'] == DATA_INPUT_TYPE_QUERY_SCRIPT_SERVER)) { /* script query */ $script_queries = get_data_query_array($data_source['snmp_query_id']); /* get the host override fields */ $data_template_id = db_fetch_cell_prepared('SELECT ' . SQL_NO_CACHE . ' data_template_id FROM data_template_data WHERE local_data_id = ?', array($data_source['id'])); /* get host fields first */ $host_fields = array_rekey( db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' dif.type_code, did.value FROM data_input_fields AS dif LEFT JOIN data_input_data AS did ON dif.id=did.data_input_field_id WHERE (type_code LIKE "snmp_%" OR type_code="hostname") AND did.data_template_data_id = ? AND did.value != ""', array($data_input['data_template_data_id'])), 'type_code', 'value' ); $data_template_fields = array_rekey( db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' dif.type_code, did.value FROM data_input_fields AS dif LEFT JOIN data_input_data AS did ON dif.id=did.data_input_field_id WHERE (type_code LIKE "snmp_%" OR type_code="hostname") AND data_template_data_id = ? AND did.data_template_data_id = ? AND did.value != ""', array($data_template_id, $data_template_id)), 'type_code', 'value' ); if (sizeof($host_fields)) { if (sizeof($data_template_fields)) { foreach($data_template_fields as $key => $value) { if (!isset($host_fields[$key])) { $host_fields[$key] = $value; } } } } elseif (sizeof($data_template_fields)) { $host_fields = $data_template_fields; } if (sizeof($outputs) && sizeof($script_queries)) { foreach ($outputs as $output) { if (isset($script_queries['fields'][$output['snmp_field_name']]['query_name'])) { $identifier = $script_queries['fields'][$output['snmp_field_name']]['query_name']; /* fall back to non-script server actions if the user is running a version of php older than 4.3 */ if (($data_input['type_id'] == DATA_INPUT_TYPE_QUERY_SCRIPT_SERVER) && (function_exists('proc_open'))) { $action = POLLER_ACTION_SCRIPT_PHP; $prepend = ''; if (isset($script_queries['arg_prepend']) && $script_queries['arg_prepend'] != '') { $prepend = $script_queries['arg_prepend']; } $script_path = get_script_query_path(trim($prepend . ' ' . $script_queries['arg_get'] . ' ' . $identifier . ' ' . $data_source['snmp_index']), $script_queries['script_path'] . ' ' . $script_queries['script_function'], $data_source['host_id']); }else if (($data_input['type_id'] == DATA_INPUT_TYPE_QUERY_SCRIPT_SERVER) && (!function_exists('proc_open'))) { $action = POLLER_ACTION_SCRIPT; $prepend = ''; if (isset($script_queries['arg_prepend']) && $script_queries['arg_prepend'] != '') { $prepend = $script_queries['arg_prepend']; } $script_path = read_config_option('path_php_binary') . ' -q ' . get_script_query_path(trim($prepend . ' ' . $script_queries['arg_get'] . ' ' . $identifier . ' ' . $data_source['snmp_index']), $script_queries['script_path'], $data_source['host_id']); } else { $action = POLLER_ACTION_SCRIPT; $script_path = get_script_query_path(trim((isset($script_queries['arg_prepend']) ? $script_queries['arg_prepend'] : '') . ' ' . $script_queries['arg_get'] . ' ' . $identifier . ' ' . $data_source['snmp_index']), $script_queries['script_path'], $data_source['host_id']); } } if (isset($script_path)) { $poller_items[] = api_poller_cache_item_add($data_source['host_id'], $host_fields, $data_source['id'], $data_input['rrd_step'], $action, get_data_source_item_name($output['data_template_rrd_id']), sizeof($outputs), $script_path); } } } } else { $arguments = array( 'poller_items' => $poller_items, 'data_source' => $data_source, 'data_input' => $data_input ); $arguments = api_plugin_hook_function('data_source_to_poller_items', $arguments); // Process the returned poller items if ((isset($arguments['poller_items'])) && (is_array($arguments['poller_items'])) && (sizeof($poller_items) < sizeof($arguments['poller_items']))) { $poller_items = $arguments['poller_items']; } } } } else { $data_template_data = db_fetch_row_prepared('SELECT ' . SQL_NO_CACHE . ' * FROM data_template_data WHERE local_data_id = ?', array($data_source['id'])); if (sizeof($data_template_data) && $data_template_data['data_input_id'] > 0) { cacti_log('WARNING: Repopulate Poller Cache found Data Input Missing for Data Source ' . $data_source['id'] . '. Database may be corrupted'); } } if ($commit && sizeof($poller_items)) { poller_update_poller_cache_from_buffer((array)$data_source['id'], $poller_items); } elseif (!$commit) { return $poller_items; } } function push_out_data_input_method($data_input_id) { $data_sources = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' data_local.* FROM data_local INNER JOIN ( SELECT DISTINCT local_data_id FROM data_template_data WHERE data_input_id = ? AND local_data_id > 0 ) AS data_template_data ON data_template_data.local_data_id = data_local.id', array($data_input_id)); $poller_items = array(); $_my_local_data_ids = array(); if (sizeof($data_sources)) { foreach($data_sources as $data_source) { $_my_local_data_ids[] = $data_source['id']; $poller_items = array_merge($poller_items, update_poller_cache($data_source)); } if (sizeof($_my_local_data_ids)) { poller_update_poller_cache_from_buffer($_my_local_data_ids, $poller_items); } } } /** mass update of poller cache - can run in parallel to poller * @param array/int $local_data_ids - either a scalar (all ids) or an array of data source to act on * @param array $poller_items - the new items for poller cache */ function poller_update_poller_cache_from_buffer($local_data_ids, &$poller_items) { /* set all fields present value to 0, to mark the outliers when we are all done */ $ids = array(); if (sizeof($local_data_ids)) { $count = 0; foreach($local_data_ids as $id) { if ($count == 0) { $ids = $id; } else { $ids .= ', ' . $id; } $count++; } if ($ids != '') { db_execute("UPDATE poller_item SET present=0 WHERE local_data_id IN ($ids)"); } } else { /* don't mark anything in case we have no $local_data_ids => *this would flush the whole table at bottom of this function */ } /* setup the database call */ $sql_prefix = 'INSERT INTO poller_item (local_data_id, poller_id, host_id, action, hostname, ' . 'snmp_community, snmp_version, snmp_timeout, snmp_username, snmp_password, ' . 'snmp_auth_protocol, snmp_priv_passphrase, snmp_priv_protocol, snmp_context, snmp_engine_id, ' . 'snmp_port, rrd_name, rrd_path, rrd_num, rrd_step, rrd_next_step, arg1, arg2, arg3, present) ' . 'VALUES'; $sql_suffix = ' ON DUPLICATE KEY UPDATE poller_id=VALUES(poller_id), host_id=VALUES(host_id), action=VALUES(action), hostname=VALUES(hostname), ' . 'snmp_community=VALUES(snmp_community), snmp_version=VALUES(snmp_version), snmp_timeout=VALUES(snmp_timeout), ' . 'snmp_username=VALUES(snmp_username), snmp_password=VALUES(snmp_password), snmp_auth_protocol=VALUES(snmp_auth_protocol), ' . 'snmp_priv_passphrase=VALUES(snmp_priv_passphrase), snmp_priv_protocol=VALUES(snmp_priv_protocol), ' . 'snmp_context=VALUES(snmp_context), snmp_engine_id=VALUES(snmp_engine_id), snmp_port=VALUES(snmp_port), ' . 'rrd_path=VALUES(rrd_path), rrd_num=VALUES(rrd_num), ' . 'rrd_step=VALUES(rrd_step), rrd_next_step=VALUES(rrd_next_step), arg1=VALUES(arg1), arg2=VALUES(arg2), ' . 'arg3=VALUES(arg3), present=VALUES(present)'; /* use a reasonable insert buffer, the default is 1MByte */ $max_packet = 256000; /* setup somme defaults */ $overhead = strlen($sql_prefix) + strlen($sql_suffix); $buf_len = 0; $buf_count = 0; $buffer = ''; if (sizeof($poller_items)) { foreach($poller_items as $record) { /* take care of invalid entries */ if ($record == '') { continue; } if ($buf_count == 0) { $delim = ' '; } else { $delim = ', '; } $buffer .= $delim . $record; $buf_len += strlen($record); if ($overhead + $buf_len > $max_packet - 1024) { db_execute($sql_prefix . $buffer . $sql_suffix); $buffer = ''; $buf_len = 0; $buf_count = 0; } else { $buf_count++; } } } if ($buf_count > 0) { db_execute($sql_prefix . $buffer . $sql_suffix); } /* remove stale records FROM the poller cache */ if (sizeof($ids)) { db_execute("DELETE FROM poller_item WHERE present=0 AND local_data_id IN ($ids)"); } else { /* only handle explicitely given local_data_ids */ } } /** for a given data template, update all input data and the poller cache * @param int $host_id - id of host, if any * @param int $local_data_id - id of a single data source, if any * @param int $data_template_id - id of data template * works on table data_input_data and poller cache */ function push_out_host($host_id, $local_data_id = 0, $data_template_id = 0) { /* ok here's the deal: first we need to find every data source that uses this host. then we go through each of those data sources, finding each one using a data input method with "special fields". if we find one, fill it will the data here FROM this host */ /* setup the poller items array */ $poller_items = array(); $local_data_ids = array(); $hosts = array(); $sql_where = ''; /* setup the sql where, and if using a host, get it's host information */ if ($host_id != 0) { /* get all information about this host so we can write it to the data source */ $hosts[$host_id] = db_fetch_row_prepared('SELECT ' . SQL_NO_CACHE . ' id AS host_id, host.* FROM host WHERE id = ?', array($host_id)); $sql_where .= ' AND dl.host_id=' . $host_id; } /* sql WHERE for local_data_id */ if ($local_data_id != 0) { $sql_where .= ' AND dl.id=' . $local_data_id; } /* sql WHERE for data_template_id */ if ($data_template_id != 0) { $sql_where .= ' AND dtd.data_template_id=' . $data_template_id; } $data_sources = db_fetch_assoc('SELECT ' . SQL_NO_CACHE . " dtd.id, dtd.data_input_id, dtd.local_data_id, dtd.local_data_template_data_id, dl.host_id, dl.snmp_query_id, dl.snmp_index FROM data_local AS dl INNER JOIN data_template_data AS dtd ON dl.id=dtd.local_data_id WHERE dtd.data_input_id>0 $sql_where"); /* loop through each matching data source */ if (sizeof($data_sources)) { foreach ($data_sources as $data_source) { /* set the host information */ if (!isset($hosts[$data_source['host_id']])) { $hosts[$data_source['host_id']] = db_fetch_row_prepared('SELECT * FROM host WHERE id = ?', array($data_source['host_id'])); } $host = $hosts[$data_source['host_id']]; /* get field information FROM the data template */ if (!isset($template_fields[$data_source['local_data_template_data_id']])) { $template_fields[$data_source['local_data_template_data_id']] = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' did.value, did.t_value, dif.id, dif.type_code FROM data_input_fields AS dif LEFT JOIN data_input_data AS did ON dif.id=did.data_input_field_id WHERE dif.data_input_id = ? AND did.data_template_data_id = ? AND (did.t_value="" OR did.t_value is null) AND dif.input_output = "in"', array($data_source['data_input_id'], $data_source['local_data_template_data_id'])); } /* loop through each field contained in the data template and push out a host value if: - the field is a valid "host field" - the value of the field is empty - the field is set to 'templated' */ if (sizeof($template_fields[$data_source['local_data_template_data_id']])) { foreach ($template_fields[$data_source['local_data_template_data_id']] as $template_field) { if (preg_match('/^' . VALID_HOST_FIELDS . '$/i', $template_field['type_code']) && $template_field['value'] == '' && $template_field['t_value'] == '') { // handle special case type_code if ($template_field['type_code'] == 'host_id') { $template_field['type_code'] = 'id'; } db_execute_prepared('REPLACE INTO data_input_data (data_input_field_id, data_template_data_id, value) VALUES (?, ?, ?)', array($template_field['id'], $data_source['id'], $host[$template_field['type_code']])); } } } /* flag an update to the poller cache as well */ $local_data_ids[] = $data_source['local_data_id']; /* create a new compatible structure */ $data = $data_source; $data['id'] = $data['local_data_id']; $poller_items = array_merge($poller_items, update_poller_cache($data)); } } if (sizeof($local_data_ids)) { poller_update_poller_cache_from_buffer($local_data_ids, $poller_items); } $poller_id = db_fetch_cell_prepared('SELECT poller_id FROM host WHERE id = ?', array($host_id)); api_data_source_cache_crc_update($poller_id); } function utilities_get_mysql_recommendations() { // MySQL/MariaDB Important Variables $variables = array_rekey(db_fetch_assoc('SHOW GLOBAL VARIABLES'), 'Variable_name', 'Value'); $memInfo = utilities_get_system_memory(); if (strpos($variables['version'], 'MariaDB') !== false) { $database = 'MariaDB'; $version = str_replace('-MariaDB', '', $variables['version']); if (isset($variables['innodb_version'])) { $link_ver = substr($variables['innodb_version'], 0, 3); } else { $link_ver = '5.5'; } } else { $database = 'MySQL'; $version = $variables['version']; $link_ver = substr($variables['version'], 0, 3); } $recommendations = array( 'version' => array( 'value' => '5.6', 'measure' => 'gt', 'comment' => __('MySQL 5.6+ and MariaDB 10.0+ are great releases, and are very good versions to choose. Make sure you run the very latest release though which fixes a long standing low level networking issue that was causing spine many issues with reliability.') ) ); if (isset($variables['innodb_version']) && version_compare($variables['innodb_version'], '5.6', '<')) { if (version_compare($link_ver, '5.2', '>=')) { if (!isset($variables['innodb_version'])) { $recommendations += array( 'innodb' => array( 'value' => 'ON', 'class' => 'warning', 'measure' => 'equal', 'comment' => __('It is recommended that you enable InnoDB in any %s version greater than 5.1.', $database) ) ); $variables['innodb'] = 'UNSET'; } } $recommendations += array( 'collation_server' => array( 'value' => 'utf8_general_ci', 'class' => 'warning', 'measure' => 'equal', 'comment' => __('When using Cacti with languages other than English, it is important to use the utf8_general_ci collation type as some characters take more than a single byte. If you are first just now installing Cacti, stop, make the changes and start over again. If your Cacti has been running and is in production, see the internet for instructions on converting your databases and tables if you plan on supporting other languages.') ), 'character_set_client' => array( 'value' => 'utf8', 'class' => 'warning', 'measure' => 'equal', 'comment' => __('When using Cacti with languages other than English, it is important to use the utf8 character set as some characters take more than a single byte. If you are first just now installing Cacti, stop, make the changes and start over again. If your Cacti has been running and is in production, see the internet for instructions on converting your databases and tables if you plan on supporting other languages.') ) ); } else { if (version_compare($link_ver, '5.2', '>=')) { if (!isset($variables['innodb_version'])) { $recommendations += array( 'innodb' => array( 'value' => 'ON', 'class' => 'warning', 'measure' => 'equal', 'comment' => __('It is recommended that you enable InnoDB in any %s version greater than 5.1.', $database) ) ); $variables['innodb'] = 'UNSET'; } } $recommendations += array( 'collation_server' => array( 'value' => 'utf8mb4_unicode_ci', 'class' => 'warning', 'measure' => 'equal', 'comment' => __('When using Cacti with languages other than English, it is important to use the utf8mb4_unicode_ci collation type as some characters take more than a single byte.') ), 'character_set_client' => array( 'value' => 'utf8mb4', 'class' => 'warning', 'measure' => 'equal', 'comment' => __('When using Cacti with languages other than English, it is important to use the utf8mb4 character set as some characters take more than a single byte.') ) ); } $recommendations += array( 'max_connections' => array( 'value' => '100', 'measure' => 'gt', 'comment' => __('Depending on the number of logins and use of spine data collector, %s will need many connections. The calculation for spine is: total_connections = total_processes * (total_threads + script_servers + 1), then you must leave headroom for user connections, which will change depending on the number of concurrent login accounts.', $database) ), 'max_heap_table_size' => array( 'value' => '5', 'measure' => 'pmem', 'comment' => __('If using the Cacti Performance Booster and choosing a memory storage engine, you have to be careful to flush your Performance Booster buffer before the system runs out of memory table space. This is done two ways, first reducing the size of your output column to just the right size. This column is in the tables poller_output, and poller_output_boost. The second thing you can do is allocate more memory to memory tables. We have arbitrarily chosen a recommended value of 10% of system memory, but if you are using SSD disk drives, or have a smaller system, you may ignore this recommendation or choose a different storage engine. You may see the expected consumption of the Performance Booster tables under Console -> System Utilities -> View Boost Status.') ), 'table_cache' => array( 'value' => '200', 'measure' => 'gt', 'comment' => __('Keeping the table cache larger means less file open/close operations when using innodb_file_per_table.') ), 'max_allowed_packet' => array( 'value' => 16777216, 'measure' => 'gt', 'comment' => __('With Remote polling capabilities, large amounts of data will be synced from the main server to the remote pollers. Therefore, keep this value at or above 16M.') ), 'tmp_table_size' => array( 'value' => '64M', 'measure' => 'gtm', 'comment' => __('When executing subqueries, having a larger temporary table size, keep those temporary tables in memory.') ), 'join_buffer_size' => array( 'value' => '64M', 'measure' => 'gtm', 'comment' => __('When performing joins, if they are below this size, they will be kept in memory and never written to a temporary file.') ), 'innodb_file_per_table' => array( 'value' => 'ON', 'measure' => 'equal', 'comment' => __('When using InnoDB storage it is important to keep your table spaces separate. This makes managing the tables simpler for long time users of %s. If you are running with this currently off, you can migrate to the per file storage by enabling the feature, and then running an alter statement on all InnoDB tables.', $database) ), 'innodb_buffer_pool_size' => array( 'value' => '25', 'measure' => 'pmem', 'comment' => __('InnoDB will hold as much tables and indexes in system memory as is possible. Therefore, you should make the innodb_buffer_pool large enough to hold as much of the tables and index in memory. Checking the size of the /var/lib/mysql/cacti directory will help in determining this value. We are recommending 25% of your systems total memory, but your requirements will vary depending on your systems size.') ), 'innodb_doublewrite' => array( 'value' => 'OFF', 'measure' => 'equal', 'comment' => __('With modern SSD type storage, this operation actually degrades the disk more rapidly and adds a 50% overhead on all write operations.') ), 'innodb_additional_mem_pool_size' => array( 'value' => '80M', 'measure' => 'gtm', 'comment' => __('This is where metadata is stored. If you had a lot of tables, it would be useful to increase this.') ), 'innodb_lock_wait_timeout' => array( 'value' => '50', 'measure' => 'gt', 'comment' => __('Rogue queries should not for the database to go offline to others. Kill these queries before they kill your system.') ) ); if (isset($variables['innodb_version']) && version_compare($variables['innodb_version'], '5.6', '<')) { $recommendations += array( 'innodb_flush_log_at_trx_commit' => array( 'value' => '2', 'measure' => 'equal', 'comment' => __('Setting this value to 2 means that you will flush all transactions every second rather than at commit. This allows %s to perform writing less often.', $database) ), 'innodb_file_io_threads' => array( 'value' => '16', 'measure' => 'gt', 'comment' => __('With modern SSD type storage, having multiple io threads is advantageous for applications with high io characteristics.') ) ); } else { $recommendations += array( 'innodb_flush_log_at_timeout' => array( 'value' => '3', 'measure' => 'gt', 'comment' => __('As of %s %s, the you can control how often %s flushes transactions to disk. The default is 1 second, but in high I/O systems setting to a value greater than 1 can allow disk I/O to be more sequential', $database, $version, $database), ), 'innodb_read_io_threads' => array( 'value' => '32', 'measure' => 'gt', 'comment' => __('With modern SSD type storage, having multiple read io threads is advantageous for applications with high io characteristics.') ), 'innodb_write_io_threads' => array( 'value' => '16', 'measure' => 'gt', 'comment' => __('With modern SSD type storage, having multiple write io threads is advantageous for applications with high io characteristics.') ), 'innodb_buffer_pool_instances' => array( 'value' => '16', 'measure' => 'present', 'comment' => __('%s will divide the innodb_buffer_pool into memory regions to improve performance. The max value is 64. When your innodb_buffer_pool is less than 1GB, you should use the pool size divided by 128MB. Continue to use this equation upto the max of 64.', $database) ) ); } html_header(array(__('%s Tuning', $database) . ' (/etc/my.cnf) - [ ' . __('Documentation') . ' ] ' . __('Note: Many changes below require a database restart')), 2); form_alternate_row(); print ""; print "\n"; print "\n"; print "\n"; print " \n"; print " \n"; print " \n"; print " \n"; print "\n"; print "\n"; foreach($recommendations as $name => $r) { if (isset($variables[$name])) { $class = ''; form_alternate_row(); switch($r['measure']) { case 'gtm': $value = trim($r['value'], 'M') * 1024 * 1024; if ($variables[$name] < $value) { if (isset($r['class']) && $r['class'] == 'warning') { $class = 'textWarning'; } else { $class = 'textError'; } } print "\n"; print "\n"; print "\n"; print "\n"; break; case 'gt': if (version_compare($variables[$name], $r['value'], '<')) { if (isset($r['class']) && $r['class'] == 'warning') { $class = 'textWarning'; } else { $class = 'textError'; } } print "\n"; print "\n"; print "\n"; print "\n"; break; case 'equal': if (!isset($variables[$name]) || $variables[$name] != $r['value']) { if (isset($r['class']) && $r['class'] == 'warning') { $class = 'textWarning'; } else { $class = 'textError'; } } print "\n"; print "\n"; print "\n"; print "\n"; break; case 'pmem': if (isset($memInfo['MemTotal'])) { $totalMem = $memInfo['MemTotal']; } elseif (isset($memInfo['TotalVisibleMemorySize'])) { $totalMem = $memInfo['TotalVisibleMemorySize']; } else { break; } if ($variables[$name] < ($r['value']*$totalMem/100)) { if (isset($r['class']) && $r['class'] == 'warning') { $class = 'textWarning'; } else { $class = 'textError'; } } print "\n"; print "\n"; print "\n"; print "\n"; break; } form_end_row(); } } print "
    " . __('Variable') . "" . __('Current Value') . "" . __('Recommended Value') . "" . __('Comments') . "
    " . $name . "" . ($variables[$name]/1024/1024) . "M>= " . $r['value'] . "" . $r['comment'] . "" . $name . "" . $variables[$name] . ">= " . $r['value'] . "" . $r['comment'] . "" . $name . "" . (isset($variables[$name]) ? $variables[$name]:'UNSET') . "" . $r['value'] . "" . $r['comment'] . "" . $name . "" . round($variables[$name]/1024/1024,0) . "M>=" . round($r['value']*$totalMem/100/1024/1024,0) . "M" . $r['comment'] . "
    \n"; print "\n"; form_end_row(); } function utilities_php_modules() { /* Gather phpinfo into a string variable - This has to be done before any headers are sent to the browser, as we are going to do some output buffering fun */ ob_start(); phpinfo(INFO_MODULES); $php_info = ob_get_contents(); ob_end_clean(); /* Remove nasty style sheets, links and other junk */ $php_info = str_replace("\n", '', $php_info); $php_info = preg_replace('/^.*\/', '', $php_info); $php_info = preg_replace('/\<\/body\>.*$/', '', $php_info); $php_info = preg_replace('/\/U', '', $php_info); $php_info = preg_replace('/\<\/a\>/', '
    ', $php_info); $php_info = preg_replace('/\/U', '', $php_info); $php_info = preg_replace('/\<\/?address\>/', '', $php_info); return $php_info; } function memory_bytes($val) { $val = trim($val); $last = strtolower($val[strlen($val)-1]); $val = trim($val, 'GMKgmk'); switch($last) { case 'g': $val *= 1024; case 'm': $val *= 1024; case 'k': $val *= 1024; } return $val; } function memory_readable($val) { if ($val < 1024) { $val_label = 'bytes'; } elseif ($val < 1048576) { $val_label = 'K'; $val /= 1024; } elseif ($val < 1073741824) { $val_label = 'M'; $val /= 1048576; } else { $val_label = 'G'; $val /= 1073741824; } return $val . $val_label; } function utilities_get_system_memory() { global $config; $memInfo = array(); if ($config['cacti_server_os'] == 'win32') { exec('wmic os get FreePhysicalMemory', $memInfo['FreePhysicalMemory']); exec('wmic os get FreeSpaceInPagingFiles', $memInfo['FreeSpaceInPagingFiles']); exec('wmic os get FreeVirtualMemory', $memInfo['FreeVirtualMemory']); exec('wmic os get SizeStoredInPagingFiles', $memInfo['SizeStoredInPagingFiles']); exec('wmic os get TotalVirtualMemorySize', $memInfo['TotalVirtualMemorySize']); exec('wmic os get TotalVisibleMemorySize', $memInfo['TotalVisibleMemorySize']); if (sizeof($memInfo)) { foreach($memInfo as $key => $values) { $memInfo[$key] = $values[1]; } } } else { $file = ''; if (file_exists('/proc/meminfo')) { $file = '/proc/meminfo'; } elseif(file_exists('/linux/proc/meminfo')) { $file = '/linux/proc/meminfo'; } elseif(file_exists('/compat/linux/proc/meminfo')) { $file = '/compat/linux/proc/meminfo'; } elseif(file_exists('/usr/compat/linux/proc/meminfo')) { $file = '/usr/compat/linux/proc/meminfo'; } if ($file != '') { $data = explode("\n", file_get_contents($file)); foreach($data as $l) { if (trim($l) != '') { list($key, $val) = explode(':', $l); $val = trim($val, " kBb\r\n"); $memInfo[$key] = round($val * 1000,0); } } } elseif (file_exists('/usr/bin/free')) { $menInfo = array(); $output = array(); $exit_code = 0; exec('/usr/bin/free', $output, $exit_code); if ($exit_code == 0) { foreach($output as $line) { $parts = preg_split('/\s+/', $line); switch ($parts[0]) { case 'Mem:': $memInfo['MemTotal'] = (isset($parts[1]) ? $parts[1]*1000:0); $memInfo['MemUsed'] = (isset($parts[2]) ? $parts[2]*1000:0); $memInfo['MemFree'] = (isset($parts[3]) ? $parts[3]*1000:0); $memInfo['MemShared'] = (isset($parts[4]) ? $parts[4]*1000:0); $memInfo['Buffers'] = (isset($parts[5]) ? $parts[5]*1000:0); $memInfo['Cached'] = (isset($parts[6]) ? $parts[6]*1000:0); break; case '-/+': $memInfo['Active'] = (isset($parts[2]) ? $parts[3]*1000:0); $memInfo['Inactive'] = (isset($parts[3]) ? $parts[3]*1000:0); break; case 'Swap:': $memInfo['SwapTotal'] = (isset($parts[1]) ? $parts[1]*1000:0); $memInfo['SwapUsed'] = (isset($parts[2]) ? $parts[2]*1000:0); break; } } } } } return $memInfo; } cacti-1.1.38/lib/timespan_settings.php0000664000175000017500000002446513264740213017307 0ustar tromantroman 'sanitize_search_string')); get_filter_request_var('date2', FILTER_CALLBACK, array('options' => 'sanitize_search_string')); /* ==================================================== */ include_once($config['base_path'] . '/lib/time.php'); /* initialize the timespan array */ $timespan = array(); /* set variables for first time use */ initialize_timespan($timespan); $timeshift = set_timeshift(); /* if the user does not want to see timespan selectors */ process_html_variables(); process_user_input($timespan, $timeshift); /* save session variables */ finalize_timespan($timespan); /* initialize the timespan selector for first use */ function initialize_timespan(&$timespan) { /* initialize the default timespan if not set */ if ((!isset($_SESSION['sess_current_timespan'])) || (isset_request_var('button_clear'))) { $_SESSION['sess_current_timespan'] = read_user_setting('default_timespan'); set_request_var('predefined_timespan', read_user_setting('default_timespan')); $_SESSION['custom'] = 0; } /* initialize the date sessions if not set */ if (!isset($_SESSION['sess_current_date1'])) { set_preset_timespan($timespan); } } /* preformat for timespan selector */ function process_html_variables() { if (isset_request_var('predefined_timespan')) { if (!is_numeric(get_filter_request_var('predefined_timespan'))) { if (isset($_SESSION['sess_current_timespan'])) { if ($_SESSION['custom']) { set_request_var('predefined_timespan', GT_CUSTOM); $_SESSION['sess_current_timespan'] = GT_CUSTOM; }else { set_request_var('predefined_timespan', $_SESSION['sess_current_timespan']); } }else { set_request_var('predefined_timespan', read_user_setting('default_timespan')); $_SESSION['sess_current_timespan'] = read_user_setting('default_timespan'); } } } else { if (isset($_SESSION['sess_current_timespan'])) { set_request_var('predefined_timespan', $_SESSION['sess_current_timespan']); }else { set_request_var('predefined_timespan', read_user_setting('default_timespan')); $_SESSION['sess_current_timespan'] = read_user_setting('default_timespan'); } } load_current_session_value('predefined_timespan', 'sess_current_timespan', read_user_setting('default_timespan')); # process timeshift if (isset_request_var('predefined_timeshift')) { if (!is_numeric(get_filter_request_var('predefined_timeshift'))) { if (isset($_SESSION['sess_current_timeshift'])) { set_request_var('predefined_timeshift', $_SESSION['sess_current_timeshift']); }else { set_request_var('predefined_timeshift', read_user_setting('default_timeshift')); $_SESSION['sess_current_timeshift'] = read_user_setting('default_timeshift'); } } } else { if (isset($_SESSION['sess_current_timeshift'])) { set_request_var('predefined_timeshift', $_SESSION['sess_current_timeshift']); }else { set_request_var('predefined_timeshift', read_user_setting('default_timeshift')); $_SESSION['sess_current_timeshift'] = read_user_setting('default_timeshift'); } } load_current_session_value('predefined_timeshift', 'sess_current_timeshift', read_user_setting('default_timeshift')); } /* when a span time preselection has been defined update the span time fields */ /* someone hit a button and not a dropdown */ function process_user_input(&$timespan, $timeshift) { if (isset_request_var('date1')) { /* the dates have changed, therefore, I am now custom */ if (($_SESSION['sess_current_date1'] != get_nfilter_request_var('date1')) || ($_SESSION['sess_current_date2'] != get_nfilter_request_var('date2')) || (isset_request_var('custom'))) { $timespan['current_value_date1'] = sanitize_search_string(get_nfilter_request_var('date1')); $timespan['begin_now'] = strtotime($timespan['current_value_date1']); $timespan['current_value_date2'] = sanitize_search_string(get_nfilter_request_var('date2')); $timespan['end_now'] = strtotime($timespan['current_value_date2']); $_SESSION['sess_current_timespan'] = GT_CUSTOM; $_SESSION['custom'] = 1; set_request_var('predefined_timespan', GT_CUSTOM); }else { /* the default button wasn't pushed */ if (!isset_request_var('button_clear')) { $timespan['current_value_date1'] = sanitize_search_string(get_nfilter_request_var('date1')); $timespan['current_value_date2'] = sanitize_search_string(get_nfilter_request_var('date2')); $timespan['begin_now'] = $_SESSION['sess_current_timespan_begin_now']; $timespan['end_now'] = $_SESSION['sess_current_timespan_end_now']; /* time shifter: shift left */ if (isset_request_var('move_left_x')) { shift_time($timespan, '-', $timeshift); } /* time shifter: shift right */ if (isset_request_var('move_right_x')) { shift_time($timespan, '+', $timeshift); } /* custom display refresh */ if (isset($_SESSION['custom'])) { $_SESSION['sess_current_timespan'] = GT_CUSTOM; /* refresh the display */ }else { $_SESSION['custom'] = 0; } } else { /* first time in */ set_preset_timespan($timespan); } } }else { if ((isset_request_var('predefined_timespan') && (get_request_var('predefined_timespan') != GT_CUSTOM)) || (!isset($_SESSION['custom'])) || (!isset_request_var('predefined_timespan') && ($_SESSION['custom'] == 0)) || (!isset($_SESSION['sess_current_date1']))) { set_preset_timespan($timespan); }else { $timespan['current_value_date1'] = $_SESSION['sess_current_date1']; $timespan['current_value_date2'] = $_SESSION['sess_current_date2']; $timespan['begin_now'] = $_SESSION['sess_current_timespan_begin_now']; $timespan['end_now'] = $_SESSION['sess_current_timespan_end_now']; /* custom display refresh */ if ($_SESSION['custom']) { $_SESSION['sess_current_timespan'] = GT_CUSTOM; } } } } /* establish graph timespan from either a user select or the default */ function set_preset_timespan(&$timespan) { # no current timespan: get default timespan if (!isset($_SESSION['sess_current_timespan'])) { $_SESSION['sess_current_timespan'] = read_user_setting('default_timespan'); } # get config option for first-day-of-the-week $first_weekdayid = read_user_setting('first_weekdayid'); # get start/end time-since-epoch for actual time (now()) and given current-session-timespan get_timespan( $timespan, time(),$_SESSION['sess_current_timespan'] , $first_weekdayid); $_SESSION['custom'] = 0; } function finalize_timespan(&$timespan) { if (!isset($timespan['current_value_date1'])) { /* Default end date is now default time span */ $timespan['current_value_date1'] = date('Y-m-d H:i', $timespan['begin_now']); } if (!isset($timespan['current_value_date2'])) { /* Default end date is now */ $timespan['current_value_date2'] = date('Y-m-d H:i', $timespan['end_now']); } /* correct bad dates on calendar */ if ($timespan['end_now'] < $timespan['begin_now']) { set_preset_timespan($timespan); $_SESSION['sess_current_timespan'] = read_user_setting('default_timespan'); $timespan['current_value_date1'] = date('Y-m-d H:i', $timespan['begin_now']); $timespan['current_value_date2'] = date('Y-m-d H:i', $timespan['end_now']); } /* if moved to future although not allow by settings, stop at current time */ if ( ($timespan['end_now'] > time()) && (read_user_setting('allow_graph_dates_in_future') == '') ) { $timespan['end_now'] = time(); # convert end time to human readable format $timespan['current_value_date2'] = date('Y-m-d H:i', $timespan['end_now']); } $_SESSION['sess_current_timespan_end_now'] = $timespan['end_now']; $_SESSION['sess_current_timespan_begin_now'] = $timespan['begin_now']; $_SESSION['sess_current_date1'] = $timespan['current_value_date1']; $_SESSION['sess_current_date2'] = $timespan['current_value_date2']; $timespan_sel_pos = strpos(get_browser_query_string(),'&predefined_timespan'); if ($timespan_sel_pos) { $_SESSION['urlval'] = substr(get_browser_query_string(),0,$timespan_sel_pos); }else { $_SESSION['urlval'] = get_browser_query_string(); } } /* establish graph timeshift from either a user select or the default */ function set_timeshift() { global $config, $graph_timeshifts; # no current timeshift: get default timeshift if ((!isset($_SESSION['sess_current_timeshift'])) || (isset_request_var('button_clear')) ) { $_SESSION['sess_current_timeshift'] = read_user_setting('default_timeshift'); set_request_var('predefined_timeshift', read_user_setting('default_timeshift')); $_SESSION['custom'] = 0; } return $timeshift = $graph_timeshifts[$_SESSION['sess_current_timeshift']]; } cacti-1.1.38/lib/time.php0000664000175000017500000002352013264740213014474 0ustar tromantroman current-weekday, so do modulo calc $offset = (date('w',$curr_time) - $first_weekdayid + 7) % 7; $span['begin_now'] = strtotime( '-' . $offset . ' days' . date('Y-m-d', $curr_time)); $span['end_now'] = strtotime('+1 week', $span['begin_now']) - 1; break; case GT_THIS_MONTH: # this date format set day-of-month to 01 $span['begin_now'] = strtotime(date('Y-m-01', $curr_time)); $span['end_now'] = strtotime('+1 month', $span['begin_now']) - 1; break; case GT_THIS_YEAR: # this date format set day-of-month to 01 and month-of-year to 01 $span['begin_now'] = strtotime(date('Y-01-01', $curr_time)); $span['end_now'] = strtotime('+1 year', $span['begin_now']) - 1; break; case GT_PREV_DAY: $span['begin_now'] = strtotime('-1 day' . date('Y-m-d', $curr_time)); $span['end_now'] = strtotime('+1 day', $span['begin_now']) - 1; break; case GT_PREV_WEEK: # compute offset to start-of-week # remember: start-of-week may be > current-weekday, so do modulo calc $offset = (date('w',$curr_time) - $first_weekdayid + 7) % 7; $span['begin_now'] = strtotime( '-1 week -' . $offset . ' days' . date('Y-m-d', $curr_time)); $span['end_now'] = strtotime('+1 week', $span['begin_now']) - 1; break; case GT_PREV_MONTH: $span['begin_now'] = strtotime('-1 month' . date('Y-m-01', $curr_time)); $span['end_now'] = strtotime('+1 month', $span['begin_now']) - 1; break; case GT_PREV_YEAR: $span['begin_now'] = strtotime('-1 year' . date('Y-01-01', $curr_time)); $span['end_now'] = strtotime('+1 year', $span['begin_now']) - 1; break; default: $span['begin_now'] = $curr_time - DEFAULT_TIMESPAN; break; } # reformat time-since-epoch start/end times to human readable format $span['current_value_date1'] = date('Y-m-d H:i',$span['begin_now']); $span['current_value_date2'] = date('Y-m-d H:i',$span['end_now']); } /* month_shift - check for shifting one or more months * @arg $shift_size - requested shift amount * returns - true, if month shifting required, else false */ function month_shift($shift_size) { # is monthly shifting required? return ( strpos(strtolower($shift_size), 'month') > 0); } /* check_month_boundaries - check given boundaries for begin/end of month matching * @arg $span - array $timespan with given boundaries * returns - true, if begin AND end match month begin/end boundaries */ function check_month_boundaries(&$span) { # check left boundary ----------------------------------------------- $begin_of_month = strtotime(date('Y-m-01', $span['begin_now'])); $begin_match = ( $begin_of_month == $span['begin_now']); # check right boundary ---------------------------------------------- # first, get a defined date of the month, $span['end_now'] belongs to $begin_of_month = strtotime(date('Y-m-01', $span['end_now'])); # do "end of month" magic to get end_of_month for arbitrary months $end_of_month = strtotime('+1 month', $begin_of_month) - 1; # accept end of month if no seconds given (adjust for 59 missing seconds) $end_match = ( (($end_of_month - 59) <= $span['end_now']) && ($span['end_now'] <= $end_of_month)); return ( $begin_match && $end_match ); } /* shift_right_boundary - shift right boundary with end-of-month adjustment * @arg $span - timespan array * @arg $direction - shift left/right (-/+) * @arg $shift_size - amount of shift * returns - time-since-epoch for shifted right boundary */ function shift_right_boundary(&$span, $direction, $shift_size) { # first, get begin of the month, $span['end_now'] belongs to $begin = date('Y-m-01', $span['end_now']); # shift the begin date to correct month $begin_of_shifted_month = strtotime($direction . $shift_size . ' ' . $begin); # do "end of month" magic return strtotime('+1 month', $begin_of_shifted_month) - 1; } /* shift_time - shift given timespan left/right * @arg &$span - given timespan (start/end time as time-since-epoch and human readable) * @arg $direction - "-" for shifting left, "+" for shifting right * @arg $timeshift - amount of shifting */ function shift_time(&$span, $direction, $shift_size) { # move left/right according to $direction # amount to be moved is derived from $shift_size # base dates are taken from array $span # is this a month shift AND current timespane is on month boundaries? if ( month_shift($shift_size) && check_month_boundaries($span) ) { # shift left boundary $span['begin_now'] = strtotime($direction . $shift_size . ' ' . $span['current_value_date1']); # shifting right boundary is somewhat complicated $span['end_now'] = shift_right_boundary($span, $direction, $shift_size); } else { # 'normal' time shifting: use strtotime magic $span['begin_now'] = strtotime($direction . $shift_size . ' ' . $span['current_value_date1']); $span['end_now'] = strtotime($direction . $shift_size . ' ' . $span['current_value_date2']); } # convert to human readable format $span['current_value_date1'] = date('Y-m-d H:i', $span['begin_now']); $span['current_value_date2'] = date('Y-m-d H:i', $span['end_now']); # now custom time settings in effect $_SESSION['sess_current_timespan'] = GT_CUSTOM; $_SESSION['custom'] = 1; set_request_var('predefined_timespan', GT_CUSTOM); } cacti-1.1.38/lib/template.php0000664000175000017500000015312113264740213015352 0ustar tromantroman0', array($data_template_id)); /* pull out all custom templated 'input' values from the template itself * templated items are selected by querying t_value = '' OR t_value = NULL */ $template_input_fields = array_rekey(db_fetch_assoc_prepared('SELECT data_input_fields.id, data_input_fields.type_code, data_input_data.value, data_input_data.t_value FROM data_input_fields INNER JOIN data_input_data ON data_input_fields.id = data_input_data.data_input_field_id INNER JOIN data_template_data ON data_template_data.id = data_input_data.data_template_data_id WHERE (data_input_fields.input_output = "in") AND (data_input_data.t_value="" OR data_input_data.t_value IS NULL) AND (data_input_data.data_template_data_id = ?) AND (data_template_data.local_data_template_data_id=0)', array($data_template_data['id'])), 'id', array('type_code', 'value', 't_value')); /* which data_input_fields are templated? */ $dif_ct = 0; $dif_in_str = ''; if (sizeof($template_input_fields)) { $dif_in_str .= 'AND data_input_fields.id IN ('; foreach ($template_input_fields as $key => $value) { $dif_in_str .= ($dif_ct == 0 ? '':',') . $key; $dif_ct++; } $dif_in_str .= ') '; } /* pull out all templated 'input' values from all related data sources * unfortunately, you can't simply provide the same test as above * all input fields not related to a template ALWAYS are marked with t_value = NULL * so we will verify against the list of data_input_field id's taken from above */ $input_fields = db_fetch_assoc("SELECT data_template_data.id AS data_template_data_id, data_input_fields.id, data_input_fields.type_code, data_input_data.value, data_input_data.t_value FROM data_input_fields INNER JOIN data_input_data ON data_input_fields.id = data_input_data.data_input_field_id INNER JOIN data_template_data ON data_template_data.id = data_input_data.data_template_data_id WHERE (data_input_fields.input_output = 'in') $dif_in_str AND (data_input_data.t_value='' OR data_input_data.t_value IS NULL) AND (data_template_data.local_data_template_data_id=" . $data_template_data['id'] . ')'); $ds_cnt = 0; $did_cnt = 0; $ds_in_str = ''; $did_vals = ''; if (sizeof($data_sources)) { foreach ($data_sources as $data_source) { if (sizeof($input_fields)) { foreach ($input_fields as $input_field) { if ($data_source['id'] == $input_field['data_template_data_id'] && isset($template_input_fields[$input_field['id']])) { /* do not push out 'host fields' */ if (!preg_match('/^' . VALID_HOST_FIELDS . '$/i', $input_field['type_code'])) { /* this is not a 'host field', so we should either push out the value if it is templated */ $did_vals .= ($did_cnt == 0 ? '':',') . '(' . $input_field['id'] . ', ' . $data_source['id'] . ', ' . db_qstr($template_input_fields[$input_field['id']]['value']) . ')'; $did_cnt++; } elseif ($template_input_fields[$input_field['id']]['value'] != $input_field['value']) { # templated input field deviates from currenmt data source, so update required $did_vals .= ($did_cnt == 0 ? '':',') . '(' . $input_field['id'] . ', ' . $data_source['id'] . ', ' . db_qstr($template_input_fields[$input_field['id']]['value']) . ')'; $did_cnt++; } } } } /* create large inserts to reduce turns */ $ds_in_str .= ($ds_cnt == 0 ? '(':',') . $data_source['id']; $ds_cnt++; /* per 1000 data source, update rows */ if ($ds_cnt % 1000 == 0) { $ds_in_str .= ')'; push_out_data_source_templates($did_vals, $ds_in_str); $ds_cnt = 0; $did_cnt = 0; $ds_in_str = ''; $did_vals = ''; } } } if ($ds_cnt > 0) { $ds_in_str .= ')'; push_out_data_source_templates($did_vals, $ds_in_str); } } /* push out changed data template fields to related data sources * @parm string $did_vals - data input data fields * @parm string $ds_in_str - all data sources, formatted as SQL 'IN' clause */ function push_out_data_source_templates($did_vals, $ds_in_str) { /* update all templated input fields */ if ($did_vals != '') { db_execute("INSERT INTO data_input_data (data_input_field_id,data_template_data_id,value) VALUES $did_vals ON DUPLICATE KEY UPDATE value=VALUES(value)"); } } /* push_out_data_source_item - pushes out templated data template item fields to all matching children @arg $data_template_rrd_id - the id of the data template item to push out values for */ function push_out_data_source_item($data_template_rrd_id) { global $struct_data_source_item; /* get information about this data template */ $data_template_rrd = db_fetch_row_prepared('SELECT * FROM data_template_rrd WHERE id = ?', array($data_template_rrd_id)); /* must be a data template */ if (empty($data_template_rrd['data_template_id'])) { return 0; } /* loop through each data source column name (from the above array) */ foreach ($struct_data_source_item as $field_name => $field_array) { /* are we allowed to push out the column? */ if (((empty($data_template_rrd['t_' . $field_name])) || (preg_match('/FORCE:/', $field_name))) && ((isset($data_template_rrd['t_' . $field_name])) && (isset($data_template_rrd[$field_name])))) { db_execute_prepared("UPDATE data_template_rrd SET $field_name = ? WHERE local_data_template_rrd_id = ?", array($data_template_rrd[$field_name], $data_template_rrd['id'])); } } } /* push_out_data_source - pushes out templated data template fields to all matching children @arg $data_template_data_id - the id of the data template to push out values for */ function push_out_data_source($data_template_data_id) { global $struct_data_source; /* get information about this data template */ $data_template_data = db_fetch_row_prepared('SELECT * FROM data_template_data WHERE id = ?', array($data_template_data_id)); /* must be a data template */ if (empty($data_template_data['data_template_id'])) { return 0; } /* loop through each data source column name (from the above array) */ foreach ($struct_data_source as $field_name => $field_array) { /* are we allowed to push out the column? */ if (((empty($data_template_data['t_' . $field_name])) || (preg_match('/FORCE:/', $field_name))) && ((isset($data_template_data['t_' . $field_name])) && (isset($data_template_data[$field_name])))) { db_execute_prepared("UPDATE data_template_data SET $field_name = ? WHERE local_data_template_data_id=?", array($data_template_data[$field_name], $data_template_data['id'])); /* update the title cache */ if ($field_name == 'name') { update_data_source_title_cache_from_template($data_template_data['data_template_id']); } } } } /* change_data_template - changes the data template for a particular data source to $data_template_id @arg $local_data_id - the id of the data source to change the data template for @arg $data_template_id - id the of the data template to change to. specify '0' for no @arg $profile - a structure of data source profile attributes data template */ function change_data_template($local_data_id, $data_template_id, $profile = array()) { global $struct_data_source, $struct_data_source_item; /* always update tables to new data template (or no data template) */ db_execute_prepared('UPDATE data_local SET data_template_id = ? WHERE id = ?', array($data_template_id, $local_data_id)); /* get data about the template and the data source */ $data = db_fetch_row_prepared('SELECT * FROM data_template_data WHERE local_data_id = ?' , array($local_data_id)); $template_data = (($data_template_id == '0') ? $data : db_fetch_row_prepared('SELECT * FROM data_template_data WHERE local_data_id=0 AND data_template_id = ?', array($data_template_id))); /* determine if we are here for the first time, or coming back */ $exists = db_fetch_cell_prepared('SELECT local_data_template_data_id FROM data_template_data WHERE local_data_id = ?', array($local_data_id)); if (empty($exists)) { $new_save = true; } else { $new_save = false; } /* some basic field values that ALL data sources should have */ $save['id'] = (isset($data['id']) ? $data['id'] : 0); $save['local_data_template_data_id'] = $template_data['id']; $save['local_data_id'] = $local_data_id; $save['data_template_id'] = $data_template_id; /* loop through the 'templated field names' to find to the rest... */ foreach ($struct_data_source as $field_name => $field_array) { /* handle the data source profile */ if ($field_name == 'rrd_step' && sizeof($profile)) { $save[$field_name] = $profile['step']; } elseif ((isset($data[$field_name])) || (isset($template_data[$field_name]))) { if ((!empty($template_data['t_' . $field_name])) && ($new_save == false)) { $save[$field_name] = $data[$field_name]; } else { $save[$field_name] = $template_data[$field_name]; } } } /* these fields should never be overwritten by the template */ $save['data_source_path'] = (isset($data['data_source_path']) ? $data['data_source_path']:'');; $data_template_data_id = sql_save($save, 'data_template_data'); $data_rrds_list = db_fetch_assoc_prepared('SELECT * FROM data_template_rrd WHERE local_data_id = ?', array($local_data_id)); $template_rrds_list = (($data_template_id == '0') ? $data_rrds_list : db_fetch_assoc_prepared('SELECT * FROM data_template_rrd WHERE local_data_id=0 AND data_template_id = ?', array($data_template_id))); if (sizeof($data_rrds_list)) { /* this data source already has 'child' items */ } else { /* this data source does NOT have 'child' items; loop through each item in the template and write it exactly to each item */ if (sizeof($template_rrds_list)) { foreach ($template_rrds_list as $template_rrd) { unset($save); $save['id'] = 0; $save['local_data_template_rrd_id'] = $template_rrd['id']; $save['local_data_id'] = $local_data_id; $save['data_template_id'] = $template_rrd['data_template_id']; foreach ($struct_data_source_item as $field_name => $field_array) { /* handle the data source profile */ if ($field_name == 'rrd_heartbeat' && sizeof($profile)) { $save[$field_name] = $profile['heartbeat']; } else { $save[$field_name] = $template_rrd[$field_name]; } } sql_save($save, 'data_template_rrd'); } } } /* make sure to copy down script data (data_input_data) as well */ $data_input_data = db_fetch_assoc_prepared('SELECT data_input_field_id, t_value, value FROM data_input_data WHERE data_template_data_id = ?', array($template_data['id'])); /* this section is before most everthing else so we can determine if this is a new save, by checking the status of the 'local_data_template_data_id' column */ if (sizeof($data_input_data)) { foreach ($data_input_data as $item) { /* always propagate on a new save, only propagate templated fields thereafter */ if (($new_save == true) || (empty($item['t_value']))) { db_execute_prepared('REPLACE INTO data_input_data (data_input_field_id, data_template_data_id, t_value, value) VALUES (?, ?, ?, ?)', array($item['data_input_field_id'], $data_template_data_id, $item['t_value'], $item['value'])); } } } } /* push_out_graph - pushes out templated graph template fields to all matching children @arg $graph_template_graph_id - the id of the graph template to push out values for */ function push_out_graph($graph_template_graph_id) { global $struct_graph; /* get information about this graph template */ $graph_template_graph = db_fetch_row_prepared('SELECT * FROM graph_templates_graph WHERE id = ?', array($graph_template_graph_id)); /* must be a graph template */ if ($graph_template_graph['graph_template_id'] == 0) { return 0; } /* loop through each graph column name (from the above array) */ foreach ($struct_graph as $field_name => $field_array) { /* are we allowed to push out the column? */ if (isset($graph_template_graph['t_' . $field_name]) && empty($graph_template_graph['t_' . $field_name])) { if ($field_array['method'] != 'spacer') { db_execute_prepared("UPDATE graph_templates_graph SET $field_name = ? WHERE local_graph_template_graph_id = ?", array($graph_template_graph[$field_name], $graph_template_graph['id'])); } /* update the title cache */ if ($field_name == 'title') { update_graph_title_cache_from_template($graph_template_graph['graph_template_id']); } } } } /* push_out_graph_input - pushes out the value of a graph input to a single child item. this function differs from other push_out_* functions in that it does not push out the value of this element to all attached children. instead, it obtains the current value of the graph input based on other graph items and pushes out the 'active' value @arg $graph_template_input_id - the id of the graph input to push out values for @arg $graph_template_item_id - the id the graph template item to push out @arg $session_members - when looking for the 'active' value of the graph input, ignore these graph template items. typically you want to ignore all items that were just selected and have yet to be saved to the database. this is because these items most likely contain incorrect data */ function push_out_graph_input($graph_template_input_id, $graph_template_item_id, $session_members) { $graph_input = db_fetch_row_prepared('SELECT graph_template_id, column_name FROM graph_template_input WHERE id = ?', array($graph_template_input_id)); $graph_input_items = db_fetch_assoc_prepared('SELECT graph_template_item_id FROM graph_template_input_defs WHERE graph_template_input_id = ?', array($graph_template_input_id)); $i = 0; if (sizeof($graph_input_items)) { foreach ($graph_input_items as $item) { $include_items[$i] = $item['graph_template_item_id']; $i++; } } /* we always want to make sure to stay within the same graph item input, so make a list of each item included in this input to be included in the sql query */ if (isset($include_items)) { $sql_include_items = 'AND ' . array_to_sql_or($include_items, 'local_graph_template_item_id'); } else { $sql_include_items = 'AND 0=1'; } if (sizeof($session_members) == 0) { $values_to_apply = db_fetch_assoc('SELECT local_graph_id,' . $graph_input['column_name'] . ' FROM graph_templates_item WHERE graph_template_id=' . $graph_input['graph_template_id'] . " $sql_include_items AND local_graph_id>0 GROUP BY local_graph_id"); } else { $i = 0; foreach ($session_members as $item_id => $item_id) { $new_session_members[$i] = $item_id; $i++; } $values_to_apply = db_fetch_assoc('SELECT local_graph_id,' . $graph_input['column_name'] . ' FROM graph_templates_item WHERE graph_template_id=' . $graph_input['graph_template_id'] . ' AND local_graph_id>0 AND !(' . array_to_sql_or($new_session_members, 'local_graph_template_item_id') . ") $sql_include_items GROUP BY local_graph_id"); } if (sizeof($values_to_apply)) { foreach ($values_to_apply as $value) { /* this is just an extra check that i threw in to prevent users' graphs from getting really messed up */ if (!(($graph_input['column_name'] == 'task_item_id') && (empty($value[$graph_input['column_name']])))) { db_execute('UPDATE graph_templates_item SET ' . $graph_input['column_name'] . "=" . db_qstr($value[$graph_input['column_name']]) . " WHERE local_graph_id=" . $value['local_graph_id'] . " AND local_graph_template_item_id=$graph_template_item_id"); } } } } /* push_out_graph_item - pushes out templated graph template item fields to all matching children. if the graph template item is part of a graph input, the field will not be pushed out @arg $graph_template_item_id - the id of the graph template item to push out values for */ function push_out_graph_item($graph_template_item_id, $local_graph_id = 0) { global $struct_graph_item; /* get information about this graph template */ $graph_template_item = db_fetch_row_prepared('SELECT * FROM graph_templates_item WHERE id = ?', array($graph_template_item_id)); /* must be a graph template */ if ($graph_template_item['graph_template_id'] == 0) { return 0; } /* find out if any graphs actual contain this item */ $exists = db_fetch_assoc_prepared('SELECT id FROM graph_templates_item WHERE local_graph_template_item_id = ?', array($graph_template_item_id)); if (!sizeof($exists)) { /* if not, reapply the template to push out the new item */ $attached_graphs = db_fetch_assoc_prepared('SELECT local_graph_id FROM graph_templates_graph WHERE graph_template_id = ? AND local_graph_id>0', array($graph_template_item['graph_template_id'])); if (sizeof($attached_graphs)) { foreach ($attached_graphs as $item) { change_graph_template($item['local_graph_id'], $graph_template_item['graph_template_id'], true); } } } /* this is trickier with graph_items than with the actual graph... we have to make sure not to overwrite any items covered in the 'graph item inputs'. the same thing applies to graphs, but is easier to detect there (t_* columns). */ $graph_item_inputs = db_fetch_assoc_prepared('SELECT graph_template_input.column_name, graph_template_input_defs.graph_template_item_id FROM (graph_template_input, graph_template_input_defs) WHERE graph_template_input.graph_template_id = ? AND graph_template_input.id=graph_template_input_defs.graph_template_input_id AND graph_template_input_defs.graph_template_item_id = ?', array($graph_template_item['graph_template_id'], $graph_template_item_id)); $graph_item_inputs = array_rekey($graph_item_inputs, 'column_name', 'graph_template_item_id'); /* loop through each graph item column name (from the above array) */ foreach ($struct_graph_item as $field_name => $field_array) { /* are we allowed to push out the column? */ if ($local_graph_id == 0) { if (!isset($graph_item_inputs[$field_name])) { db_execute_prepared("UPDATE graph_templates_item SET $field_name = ? WHERE local_graph_template_item_id = ?", array($graph_template_item[$field_name], $graph_template_item['id'])); } } else { if (!isset($graph_item_inputs[$field_name])) { db_execute_prepared("UPDATE graph_templates_item SET $field_name = ? WHERE local_graph_template_item_id = ? AND local_graph_id = ?", array($graph_template_item[$field_name], $graph_template_item['id'], $local_graph_id)); } } } } function update_graph_data_source_output_type($local_graph_id, $output_type_id) { $graph_local = db_fetch_row_prepared('SELECT * FROM graph_local WHERE id = ?', array($local_graph_id)); $task_items = db_fetch_cell_prepared('SELECT GROUP_CONCAT(DISTINCT task_item_id) AS items FROM graph_templates_item WHERE local_graph_id = ?', array($local_graph_id)); if ($task_items != '') { $local_data_id = db_fetch_cell("SELECT DISTINCT local_data_id FROM data_template_rrd WHERE id IN($task_items)"); } else { $local_data_id = 0; } if ($local_data_id > 0) { $data = db_fetch_row_prepared('SELECT id, data_input_id, data_template_id, name, local_data_id FROM data_template_data WHERE local_data_id = ?', array($local_data_id)); /* get each INPUT field for this data input source */ $output_type_field_id = db_fetch_cell_prepared('SELECT id FROM data_input_fields WHERE data_input_id = ? AND input_output = "in" AND type_code="output_type" ORDER BY sequence', array($data['data_input_id'])); $snmp_query_graph_id = db_fetch_cell_prepared('SELECT value FROM data_input_data WHERE data_template_data_id = ? AND data_input_field_id = ?', array($data['id'], $output_type_field_id)); if ($snmp_query_graph_id != $output_type_id) { db_execute_prepared('UPDATE data_input_data SET value = ? WHERE data_template_data_id = ? AND data_input_field_id = ?', array($output_type_id, $data['id'], $output_type_field_id)); db_execute_prepared('UPDATE graph_local SET snmp_query_graph_id = ? WHERE graph_template_id = ? AND id = ?', array($output_type_id, $graph_local['graph_template_id'], $local_graph_id)); push_out_host($graph_local['host_id'], $local_data_id); } } } function parse_graph_template_id($value) { if (strpos($value, '_') !== false) { $template_parts = explode('_', $value); if (is_numeric($template_parts[0]) && is_numeric($template_parts[1])) { return array('graph_template_id' => $template_parts[0], 'output_type_id' => $template_parts[1]); } else { cacti_log('ERROR: Unable to parse graph_template_id with value ' . $value, false, 'WEBUI'); exit; } } else { return array('graph_template_id' => $value); } } function resequence_graphs($graph_template_id, $local_graph_id = 0) { $template_items = db_fetch_assoc_prepared('SELECT * FROM graph_templates_item WHERE graph_template_id = ? AND local_graph_id = 0 ORDER BY sequence', array($graph_template_id)); if (sizeof($template_items)) { foreach($template_items as $item) { if ($local_graph_id == -1) { db_execute_prepared('UPDATE graph_templates_item SET sequence = ? WHERE graph_template_id = ? AND local_graph_template_item_id = ?', array($item['sequence'], $graph_template_id, $item['id'])); } elseif ($local_graph_id == 0) { db_execute_prepared('UPDATE graph_templates_item SET sequence = ? WHERE graph_template_id = ? AND local_graph_id > 0 AND local_graph_template_item_id = ?', array($item['sequence'], $graph_template_id, $item['id'])); } else { db_execute_prepared('UPDATE graph_templates_item SET sequence = ? WHERE graph_template_id = ? AND local_graph_id = ? AND local_graph_template_item_id = ?', array($item['sequence'], $graph_template_id, $local_graph_id, $item['id'])); } } } } /* retemplate_graphs - reapply the graph template as it currently exists to all graphs using that template. This is important when you have graphs that have multiple versions of a template. @arg $graph_template_id - the graph template id to retemplate @arg $local_graph_id - optional local graph id */ function retemplate_graphs($graph_template_id, $local_graph_id = 0) { if ($local_graph_id == 0) { $graphs = db_fetch_assoc_prepared('SELECT id FROM graph_local WHERE graph_template_id = ?', array($graph_template_id)); } else { $graphs = db_fetch_assoc_prepared('SELECT id FROM graph_local WHERE graph_template_id = ? AND id = ?', array($graph_template_id, $local_graph_id)); } if (sizeof($graphs)) { foreach($graphs as $graph) { change_graph_template($graph['id'], $graph_template_id, true); } } } /* change_graph_template - changes the graph template for a particular graph to $graph_template_id @arg $local_graph_id - the id of the graph to change the graph template for @arg $graph_template_id - id the of the graph template to change to. specify '0' for no graph template @arg $intrusive - (true) if the target graph template has more or less graph items than the current graph, remove or add the items from the current graph to make them equal. (false) leave the graph item count alone */ function change_graph_template($local_graph_id, $graph_template_id, $intrusive = true) { global $struct_graph, $struct_graph_item; $template_data = parse_graph_template_id($graph_template_id); $graph_template_id = $template_data['graph_template_id']; if (isset($template_data['output_type_id'])) { $output_type_id = $template_data['output_type_id']; } else { $output_type_id = 0; } /* get information about both the graph and the graph template we're using */ $graph_list = db_fetch_row_prepared('SELECT * FROM graph_templates_graph WHERE local_graph_id = ?', array($local_graph_id)); $snmp_query_id = db_fetch_cell_prepared('SELECT snmp_query_id FROM graph_local WHERE id = ?', array($local_graph_id)); /* always update tables to new graph template (or no graph template) */ db_execute_prepared('UPDATE graph_local SET graph_template_id = ? WHERE id = ?', array($graph_template_id, $local_graph_id)); if ($output_type_id > 0) { $changed = true; }else if (sizeof($graph_list) && $graph_template_id != $graph_list['graph_template_id']) { $changed = true; } else { $changed = false; } if ($graph_template_id == 0) { $template_graph_list = $graph_list; } else { $template_graph_list = db_fetch_row_prepared('SELECT * FROM graph_templates_graph WHERE local_graph_id = 0 AND graph_template_id = ?', array($graph_template_id)); } /* determine if we are here for the first time, or coming back */ $exists = db_fetch_cell_prepared('SELECT local_graph_template_graph_id FROM graph_templates_graph WHERE local_graph_id = ?', array($local_graph_id)); if (!$exists) { $new_save = true; } else { $new_save = false; } /* some basic field values that ALL graphs should have */ $save['id'] = (isset($graph_list['id']) ? $graph_list['id'] : 0); $save['local_graph_template_graph_id'] = $template_graph_list['id']; $save['local_graph_id'] = $local_graph_id; $save['graph_template_id'] = $graph_template_id; /* loop through the 'templated field names' to find the rest... */ foreach ($struct_graph as $field_name => $field_array) { $value_type = "t_$field_name"; if ($field_array['method'] != 'spacer') { if ((!empty($template_graph_list[$value_type])) && ($new_save == false)) { $save[$field_name] = $graph_list[$field_name]; } else { $save[$field_name] = $template_graph_list[$field_name]; } } } sql_save($save, 'graph_templates_graph'); $graph_items_list = db_fetch_assoc_prepared('SELECT * FROM graph_templates_item WHERE local_graph_id = ? ORDER BY sequence', array($local_graph_id)); if ($graph_template_id == 0) { $template_items_list = $graph_items_list; } else { $template_items_list = db_fetch_assoc_prepared('SELECT * FROM graph_templates_item WHERE local_graph_id=0 AND graph_template_id = ? ORDER BY sequence', array($graph_template_id)); } $graph_template_inputs = db_fetch_assoc_prepared('SELECT gti.column_name, gtid.graph_template_item_id FROM graph_template_input AS gti INNER JOIN graph_template_input_defs AS gtid ON gti.id=gtid.graph_template_input_id AND gti.graph_template_id = ?', array($graph_template_id)); $cols = db_get_table_column_types('graph_templates_item'); $k=0; if (sizeof($template_items_list)) { foreach ($template_items_list as $template_item) { unset($save); $save['local_graph_template_item_id'] = $template_item['id']; $save['local_graph_id'] = $local_graph_id; $save['graph_template_id'] = $template_item['graph_template_id']; $save['sequence'] = $template_item['sequence']; /* go through the existing graph_items and look for the matching local_graph_template_item_id */ $found = false; if (sizeof($graph_items_list) && $new_save == false) { foreach($graph_items_list as $item) { if ($item['local_graph_template_item_id'] == $template_item['id']) { $found_item = $item; $found = true; break; } } } if ($found) { foreach($found_item as $column => $value) { switch($column) { case 'local_graph_id': case 'hash': case 'local_graph_template_item_id': case 'graph_template_id': case 'sequence': break; default: if (strstr($cols[$column]['type'], 'int') !== false || strstr($cols[$column]['type'], 'float') !== false || strstr($cols[$column]['type'], 'decimal') !== false || strstr($cols[$column]['type'], 'double') !== false) { if (!empty($value)) { $save[$column] = $value; } else { $save[$column] = 0; } } else { $save[$column] = $value; } break; } } } else { /* no graph item at this position, tack it on */ $save['id'] = 0; /* attempt to discover the task_item_id */ $local_data_ids = db_fetch_cell_prepared('SELECT GROUP_CONCAT(DISTINCT local_data_id) AS ids FROM data_template_rrd WHERE id IN ( SELECT DISTINCT task_item_id FROM graph_templates_item WHERE local_graph_id = ?)', array($local_graph_id)); $data_source_name = db_fetch_cell_prepared('SELECT data_source_name FROM data_template_rrd WHERE id = ?', array($template_item['task_item_id'])); if ($data_source_name != '' && $local_data_ids != '') { $task_item_id = db_fetch_cell_prepared('SELECT DISTINCT id FROM data_template_rrd WHERE local_data_id IN (' . $local_data_ids . ') AND data_source_name = ? LIMIT 1', array($data_source_name)); if (!empty($task_item_id)) { $save['task_item_id'] = $task_item_id; } else { $save['task_item_id'] = 0; } } else { $save['task_item_id'] = 0; } foreach($template_item as $column => $value) { switch($column) { case 'id': case 'hash': case 'local_graph_id': case 'local_graph_template_item_id': case 'graph_template_id': case 'sequence': case 'task_item_id': break; default: if (strstr($cols[$column]['type'], 'int') !== false || strstr($cols[$column]['type'], 'float') !== false || strstr($cols[$column]['type'], 'decimal') !== false || strstr($cols[$column]['type'], 'double') !== false) { if (!empty($value)) { $save[$column] = $value; } else { $save[$column] = 0; } } else { $save[$column] = $value; } break; } } } sql_save($save, 'graph_templates_item'); } } /* if there are more graph items than there are items in the template, delete the difference */ /* we have probably modified 'graph_templates_item' so we need to recalculate the number of items before checking them */ $graph_items_list = db_fetch_assoc_prepared('SELECT * FROM graph_templates_item WHERE local_graph_id = ? ORDER BY sequence', array($local_graph_id)); if ($new_save == false && sizeof($graph_items_list) > sizeof($template_items_list)) { foreach($template_items_list as $item) { $ids[] = $item['id']; } db_execute('DELETE FROM graph_templates_item WHERE local_graph_template_item_id NOT IN (' . implode(',', $ids) . ') AND local_graph_id = ' . $local_graph_id); } if ($new_save == false) { resequence_graphs($graph_template_id, $local_graph_id); } /* handle changes in data template if there are any */ if ($new_save == false && $changed && $snmp_query_id > 0) { update_graph_data_source_output_type($local_graph_id, $output_type_id); } return true; } /* graph_to_graph_template - converts a graph to a graph template @arg $local_graph_id - the id of the graph to be converted @arg $graph_title - the graph title to use for the new graph template. the variable will be substituted for the current graph title */ function graph_to_graph_template($local_graph_id, $graph_title) { /* create a new graph template entry */ $title_template = db_fetch_cell_prepared('SELECT title FROM graph_templates_graph WHERE local_graph_id = ?', array($local_graph_id)); $title = str_replace('', $title_template, $graph_title); db_execute_prepared('INSERT INTO graph_templates (id, name, hash) VALUES (0, ?, ?)', array($title, get_hash_graph_template(0))); $graph_template_id = db_fetch_insert_id(); /* update graph to point to the new template */ db_execute_prepared('UPDATE graph_templates_graph SET local_graph_id=0, local_graph_template_graph_id=0, graph_template_id = ? WHERE local_graph_id = ?', array($graph_template_id, $local_graph_id)); db_execute_pepared('UPDATE graph_templates_item SET local_graph_id=0, local_graph_template_item_id=0, graph_template_id = ?, task_item_id=0 WHERE local_graph_id = ?', array($graph_template_id, $local_graph_id)); /* create hashes for the graph template items */ $items = db_fetch_assoc_prepared('SELECT id FROM graph_templates_item WHERE graph_template_id = ? AND local_graph_id=0', array($graph_template_id)); for ($j=0; $j will be substituted for the current data source title */ function data_source_to_data_template($local_data_id, $data_source_title) { /* create a new graph template entry */ $title_template = db_fetch_cell_prepared('SELECT name FROM data_template_data WHERE local_data_id = ?', array($local_data_id)); $title = str_replace('', $title_template, $data_source_title); db_execute('INSERT INTO data_template (id,name,hash) VALUES (0, ?, ?)', array($title, get_hash_data_template(0))); $data_template_id = db_fetch_insert_id(); /* update graph to point to the new template */ db_execute_prepared('UPDATE data_template_data SET local_data_id=0, local_data_template_data_id=0, data_template_id = ? WHERE local_data_id = ?', array($data_template_id, $local_data_id)); db_execute_prepared('UPDATE data_template_rrd SET local_data_id=0, local_data_template_rrd_id=0, data_template_id = ? WHERE local_data_id = ?', array($data_template_id, $local_data_id)); /* create hashes for the data template items */ $items = db_fetch_assoc_prepared('SELECT id FROM data_template_rrd WHERE data_template_id = ? AND local_data_id=0', array($data_template_id)); for ($j=0; $j 0) { $save['snmp_query_id'] = $snmp_query_array['snmp_query_id']; } if (isset($snmp_query_array['snmp_query_graph_id']) && $snmp_query_array['snmp_query_graph_id'] > 0) { $save['snmp_query_graph_id'] = $snmp_query_array['snmp_query_graph_id']; } if (isset($snmp_query_array['snmp_index']) && $snmp_query_array['snmp_index'] != '') { $save['snmp_index'] = $snmp_query_array['snmp_index']; } } $cache_array['local_graph_id'] = sql_save($save, 'graph_local'); /* apply graph items */ change_graph_template($cache_array['local_graph_id'], $graph_template_id, true); /* perform graph replacement based upon suggested values */ if (sizeof($snmp_query_array)) { /* suggested values for snmp query code */ $suggested_values = db_fetch_assoc_prepared('SELECT text, field_name FROM snmp_query_graph_sv WHERE snmp_query_graph_id = ? ORDER BY sequence', array($snmp_query_array['snmp_query_graph_id'])); $suggested_values_graph = array(); if (sizeof($suggested_values)) { foreach ($suggested_values as $suggested_value) { /* once we find a match; don't try to find more */ if (!isset($suggested_values_graph[$graph_template_id][$suggested_value['field_name']])) { $subs_string = substitute_snmp_query_data($suggested_value['text'], $host_id, $snmp_query_array['snmp_query_id'], $snmp_query_array['snmp_index'], read_config_option('max_data_query_field_length')); /* if there are no '|' characters, all of the substitutions were successful */ if (!strstr($subs_string, '|query')) { if (db_column_exists('graph_templates_graph', $suggested_value['field_name'])) { db_execute_prepared('UPDATE graph_templates_graph SET ' . $suggested_value['field_name'] . ' = ? WHERE local_graph_id = ?', array($suggested_value['text'], $cache_array['local_graph_id'])); /* once we find a working value, stop */ $suggested_values_graph[$graph_template_id][$suggested_value['field_name']] = true; } else { cacti_log('ERROR: Suggested value column error. Column ' . $suggested_value['field_name'] . ' for Data Query ID ' . $snmp_query_array['snmp_query_id'] . ' and Graph Template ID ' . $graph_template_id . ' is not a compatible field name. Please correct this suggested value mapping', false); } } } } } } /* suggested values: graph */ if (isset($suggested_vals[$graph_template_id]['graph_template'])) { foreach ($suggested_vals[$graph_template_id]['graph_template'] as $field_name => $field_value) { db_execute_prepared('UPDATE graph_templates_graph SET ' . $field_name . ' = ? WHERE local_graph_id= ?', array($field_value, $cache_array['local_graph_id'])); } } /* suggested values: graph item */ if (isset($suggested_vals[$graph_template_id]['graph_template_item'])) { foreach ($suggested_vals[$graph_template_id]['graph_template_item'] as $graph_template_item_id => $field_array) { foreach ($field_array as $field_name => $field_value) { $graph_item_id = db_fetch_cell_prepared('SELECT id FROM graph_templates_item WHERE local_graph_template_item_id = ? AND local_graph_id = ?', array($graph_template_item_id, $cache_array['local_graph_id'])); db_execute_prepared('UPDATE graph_templates_item SET ' . $field_name . ' = ? WHERE id = ?', array($field_value, $graph_item_id)); } } } update_graph_title_cache($cache_array['local_graph_id']); /* create each data source, but don't duplicate */ $data_templates = db_fetch_assoc_prepared('SELECT dt.id, dt.name, dtr.data_source_name FROM data_template AS dt INNER JOIN data_template_rrd AS dtr ON dtr.data_template_id=dt.id INNER JOIN graph_templates_item AS gti ON gti.task_item_id=dtr.id WHERE dtr.local_data_id=0 AND gti.local_graph_id=0 AND gti.graph_template_id = ? GROUP BY dt.id ORDER BY dt.name', array($graph_template_id)); if (sizeof($data_templates)) { foreach ($data_templates as $data_template) { /* check if the data source already exists */ $previous_data_source = data_source_exists($graph_template_id, $host_id, $data_template, $snmp_query_array); if (sizeof($previous_data_source)) { $cache_array['local_data_id'][$data_template['id']] = $previous_data_source['id']; } else { unset($save); $save['id'] = 0; $save['data_template_id'] = $data_template['id']; $save['host_id'] = $host_id; if (isset($suggested_vals[$graph_template_id]['data_template'][$data_template['id']]['data_source_profile_id'])) { $profile_id = $suggested_vals[$graph_template_id]['data_template'][$data_template['id']]['data_source_profile_id']; /* validate the data source profile */ $profile = array(); if ($profile_id != 0) { $profile = db_fetch_row_prepared('SELECT * FROM data_source_profiles WHERE id = ?', array($profile_id)); } /* default to the default profile if the one given is invalid */ if (!sizeof($profile)) { $profile = db_fetch_row('SELECT * FROM data_source_profiles ORDER BY `default` DESC LIMIT 1'); } } else { $profile_id = 0; $profile = array(); } $cache_array['local_data_id'][$data_template['id']] = sql_save($save, 'data_local'); change_data_template($cache_array['local_data_id'][$data_template['id']], $data_template['id'], $profile); $data_template_data_id = db_fetch_cell_prepared('SELECT id FROM data_template_data WHERE local_data_id = ?', array($cache_array['local_data_id'][$data_template['id']])); if (sizeof($snmp_query_array)) { /* suggested values for snmp query code */ $suggested_values = db_fetch_assoc_prepared('SELECT text, field_name FROM snmp_query_graph_rrd_sv WHERE snmp_query_graph_id = ? AND data_template_id = ? ORDER BY sequence', array($snmp_query_array['snmp_query_graph_id'], $data_template['id'])); $suggested_values_ds = array(); if (sizeof($suggested_values)) { foreach ($suggested_values as $suggested_value) { /* once we find a match; don't try to find more */ if (!isset($suggested_values_ds[$data_template['id']][$suggested_value['field_name']])) { $subs_string = substitute_snmp_query_data($suggested_value['text'], $host_id, $snmp_query_array['snmp_query_id'], $snmp_query_array['snmp_index'], read_config_option('max_data_query_field_length')); /* if there are no '|' characters, all of the substitutions were successful */ if (!strstr($subs_string, '|query')) { $columns = db_fetch_row("SHOW COLUMNS FROM data_template_data LIKE '" . $suggested_value['field_name'] . "'"); if (sizeof($columns)) { db_execute_prepared('UPDATE data_template_data SET ' . $suggested_value['field_name'] . ' = ? WHERE local_data_id = ?', array($suggested_value['text'], $cache_array['local_data_id'][$data_template['id']])); } /* once we find a working value, stop */ $suggested_values_ds[$data_template['id']][$suggested_value['field_name']] = true; $columns = db_fetch_row("SHOW COLUMNS FROM data_template_rrd LIKE '" . $suggested_value['field_name'] . "'"); if (sizeof($columns) && !substr_count($subs_string, '|')) { db_execute_prepared('UPDATE data_template_rrd SET ' . $suggested_value['field_name'] . ' = ? WHERE local_data_id = ?', array($suggested_value['text'], $cache_array['local_data_id'][$data_template['id']])); } } } } } } if (sizeof($snmp_query_array)) { $data_input_field = array_rekey(db_fetch_assoc_prepared('SELECT dif.id, dif.type_code FROM snmp_query AS sq INNER JOIN data_input AS di ON sq.data_input_id=di.id INNER JOIN data_input_fields AS dif ON di.id=dif.data_input_id WHERE (dif.type_code="index_type" OR dif.type_code="index_value" OR dif.type_code="output_type") AND sq.id = ?', array($snmp_query_array['snmp_query_id'])), 'type_code', 'id'); $snmp_cache_value = db_fetch_cell_prepared('SELECT field_value FROM host_snmp_cache WHERE host_id = ? AND snmp_query_id = ? AND field_name = ? AND snmp_index = ?', array($host_id, $snmp_query_array['snmp_query_id'], $snmp_query_array['snmp_index_on'], $snmp_query_array['snmp_index'])); /* save the value to index on (ie. ifindex, ifip, etc) */ db_execute_prepared('REPLACE INTO data_input_data (data_input_field_id, data_template_data_id, t_value, value) VALUES (?, ?, "", ?)', array($data_input_field['index_type'], $data_template_data_id, $snmp_query_array['snmp_index_on'])); /* save the actual value (ie. 3, 192.168.1.101, etc) */ db_execute_prepared('REPLACE INTO data_input_data (data_input_field_id,data_template_data_id,t_value,value) VALUES (?, ?, "", ?)', array($data_input_field['index_value'], $data_template_data_id, $snmp_cache_value)); /* set the expected output type (ie. bytes, errors, packets) */ db_execute_prepared('REPLACE INTO data_input_data (data_input_field_id,data_template_data_id,t_value,value) VALUES (?, ?, "", ?)', array($data_input_field['output_type'], $data_template_data_id, $snmp_query_array['snmp_query_graph_id'])); /* now that we have put data into the 'data_input_data' table, update the snmp cache for ds's */ update_data_source_data_query_cache($cache_array['local_data_id'][$data_template['id']]); } /* suggested values: data source */ if (isset($suggested_vals[$graph_template_id]['data_template'][$data_template['id']])) { foreach ($suggested_vals[$graph_template_id]['data_template'][$data_template['id']] as $field_name => $field_value) { db_execute_prepared("UPDATE data_template_data SET $field_name = ? WHERE local_data_id = ?", array($field_value, $cache_array['local_data_id'][$data_template['id']])); } } /* suggested values: data source item */ if (isset($suggested_vals[$graph_template_id]['data_template_item'])) { foreach ($suggested_vals[$graph_template_id]['data_template_item'] as $data_template_item_id => $field_array) { foreach ($field_array as $field_name => $field_value) { $data_source_item_id = db_fetch_cell_prepared('SELECT id FROM data_template_rrd WHERE local_data_template_rrd_id = ? AND local_data_id = ?', array($data_template_item_id, $cache_array['local_data_id'][$data_template['id']])); db_execute_prepared("UPDATE data_template_rrd SET $field_name = ? WHERE id = ?", array($field_value, $data_source_item_id)); } } } /* suggested values: custom data */ if (isset($suggested_vals[$graph_template_id]['custom_data'][$data_template['id']])) { foreach ($suggested_vals[$graph_template_id]['custom_data'][$data_template['id']] as $data_input_field_id => $field_value) { db_execute_prepared('REPLACE INTO data_input_data (data_input_field_id, data_template_data_id, t_value, value) VALUES (?, ?, "", ?)', array($data_input_field_id, $data_template_data_id, $field_value)); } } update_data_source_title_cache($cache_array['local_data_id'][$data_template['id']]); } } } /* connect the dots: graph -> data source(s) */ $template_item_list = db_fetch_assoc_prepared('SELECT gti.id, dtr.id AS data_template_rrd_id, dtr.data_template_id FROM graph_templates_item AS gti INNER JOIN data_template_rrd AS dtr ON gti.task_item_id=dtr.id WHERE gti.graph_template_id = ? AND local_graph_id=0 AND task_item_id>0', array($graph_template_id)); /* loop through each item affected and update column data */ if (sizeof($template_item_list)) { foreach ($template_item_list as $template_item) { if (isset($cache_array['local_data_id'][$template_item['data_template_id']])) { $local_data_id = $cache_array['local_data_id'][$template_item['data_template_id']]; $graph_template_item_id = db_fetch_cell_prepared('SELECT id FROM graph_templates_item WHERE local_graph_template_item_id = ? AND local_graph_id = ?', array( $template_item['id'], $cache_array['local_graph_id'])); $data_template_rrd_id = db_fetch_cell_prepared('SELECT id FROM data_template_rrd WHERE local_data_template_rrd_id = ? AND local_data_id = ?', array($template_item['data_template_rrd_id'], $local_data_id)); if (!empty($data_template_rrd_id)) { db_execute_prepared('UPDATE graph_templates_item SET task_item_id = ? WHERE id = ?', array($data_template_rrd_id, $graph_template_item_id)); } } } } /* this will not work until the ds->graph dots are connected */ if (sizeof($snmp_query_array)) { if (isset($cache_array['local_graph_id'])) { update_graph_data_query_cache($cache_array['local_graph_id']); } } /* now that we have the id of the new host, we may plugin postprocessing code */ if (isset($cache_array['local_graph_id'])) { $save['id'] = $cache_array['local_graph_id']; $save['graph_template_id'] = $graph_template_id; // attention: unset! if (sizeof($snmp_query_array)) { $save['snmp_query_id'] = $snmp_query_array['snmp_query_id']; $save['snmp_index'] = $snmp_query_array['snmp_index']; $save['snmp_query_graph_id'] = $snmp_query_array['snmp_query_graph_id']; } else { $save['snmp_query_id'] = 0; $save['snmp_index'] = 0; $save['snmp_query_graph_id'] = 0; } /* provide automation services */ automation_hook_graph_create_tree($save); api_plugin_hook_function('create_complete_graph_from_template', $save); } return $cache_array; } function data_source_exists($graph_template_id, $host_id, &$data_template, &$snmp_query_array) { if (sizeof($snmp_query_array)) { $input_fields = db_fetch_cell_prepared('SELECT GROUP_CONCAT(DISTINCT snmp_field_name ORDER BY snmp_field_name) AS input_fields FROM snmp_query_graph_rrd WHERE snmp_query_graph_id = ?', array($snmp_query_array['snmp_query_graph_id'])); return db_fetch_row_prepared('SELECT dl.*, GROUP_CONCAT(DISTINCT snmp_field_name ORDER BY snmp_field_name) AS input_fields FROM data_local AS dl INNER JOIN data_template_data AS dtd ON dl.id=dtd.local_data_id INNER JOIN data_input_fields AS dif ON dif.data_input_id=dtd.data_input_id INNER JOIN snmp_query_graph_rrd AS sqgr ON sqgr.data_template_id=dtd.data_template_id WHERE input_output = "in" AND type_code="output_type" AND dl.host_id = ? AND dl.data_template_id = ? AND dl.snmp_query_id = ? AND dl.snmp_index = ? GROUP BY dtd.local_data_id HAVING local_data_id IS NOT NULL AND input_fields = ?', array($host_id, $data_template['id'], $snmp_query_array['snmp_query_id'], $snmp_query_array['snmp_index'], $input_fields)); } else { return array(); } } cacti-1.1.38/lib/sort.php0000664000175000017500000001010213264740213014515 0ustar tromantroman intval($arr_b[$i])) { return 1; } elseif (intval($arr_a[$i]) < intval($arr_b[$i])) { return -1; } } else { $cmp = strcmp(strval($arr_a[$i]), strval($arr_b[$i])); if (($cmp > 0) || ($cmp < 0)) { return $cmp; } } } if (count($arr_a) < count($arr_b)) { return 1; } elseif (count($arr_a) > count($arr_b)) { return -1; } return 0; } /* usort_numeric - sorts two values numerically (ie. 1, 34, 36, 76) @arg $a - the first string to compare @arg $b - the second string to compare @returns - '1' if $a is greater than $b, '-1' if $a is less than $b, or '0' if $b is equal to $b */ function usort_numeric($a, $b) { if (intval($a) > intval($b)) { return 1; } elseif (intval($a) < intval($b)) { return -1; } else { return 0; } } /* usort_alphabetic - sorts two values alphabetically (ie. ab, by, ef, xy) @arg $a - the first string to compare @arg $b - the second string to compare @returns - '1' if $a is greater than $b, '-1' if $a is less than $b, or '0' if $b is equal to $b */ function usort_alphabetic($a, $b) { return strcmp($a, $b); } /* usort_natural - sorts two values naturaly (ie. ab1, ab2, ab7, ab10, ab20) @arg $a - the first string to compare @arg $b - the second string to compare @returns - '1' if $a is greater than $b, '-1' if $a is less than $b, or '0' if $b is equal to $b */ function usort_natural($a, $b) { return strnatcmp($a, $b); } /* sort_by_subkey - takes the list of templates and performa a final sort @returns - (array) an array of sorted templates */ function sort_by_subkey(&$array, $subkey, $sort = SORT_ASC) { $keys = array(); foreach ($array as $subarray) { $keys[] = $subarray[$subkey]; } array_multisort($keys, $sort, $array); } cacti-1.1.38/lib/snmpagent.php0000664000175000017500000010672213264740213015540 0ustar tromantromanobject('cactiStatsTotalsDevices')->set( snmpagent_read('cactiStatsTotalsDevices') ); $mc->object('cactiStatsTotalsDataSources')->set( snmpagent_read('cactiStatsTotalsDataSources') ); $mc->object('cactiStatsTotalsGraphs')->set( snmpagent_read('cactiStatsTotalsGraphs') ); /* local polling stats - does not support distributed environments so far. */ $mc->object('cactiStatsLocalPollerRuntime')->set($data[0]); $index = 1; $values = array( 'cactiStatsPollerRunTime' => $data[0], 'cactiStatsPollerConcurrentProcesses' => $data[2], 'cactiStatsPollerThreads' => $data[3], 'cactiStatsPollerHosts' => $data[4], 'cactiStatsPollerHostsPerProcess' => $data[5], 'cactiStatsPollerItems' => $data[6], 'cactiStatsPollerRrrdsProcessed' => $data[7], 'cactiStatsPollerUtilization' => round($data[0]/read_config_option('poller_interval', true)*100, 10) ); try { $mc->table('cactiStatsPollerTable')->row($index)->update($values); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } $mc->object('cactiStatsLastUpdate')->set( time() ); } function snmpagent_global_settings_update(){ $mc = new MibCache(); $mc->object('cactiApplVersion')->set( snmpagent_read('cactiApplVersion') ); $mc->object('cactiApplSnmpVersion')->set( snmpagent_read('cactiApplSnmpVersion') ); $mc->object('cactiApplRrdtoolVersion')->set( read_config_option('rrdtool_version', true) ); $mc->object('cactiApplPollerEnabled')->set( (read_config_option('poller_enabled', true) == 'on') ? 1 : 2 ); $mc->object('cactiApplPollerType')->set( read_config_option('poller_type', true) ); $mc->object('cactiApplPollerInterval')->set( read_config_option('poller_interval', true) ); $mc->object('cactiApplPollerMaxProcesses')->set( read_config_option('concurrent_processes', true) ); $mc->object('cactiApplPollerLoadBalance')->set( (read_config_option('process_leveling', true) == 'on') ? 1 : 2 ); $mc->object('cactiApplSpineMaxThreads')->set( read_config_option('max_threads', true) ); $mc->object('cactiApplSpineScriptServers')->set( read_config_option('php_servers', true) ); $mc->object('cactiApplSpineScriptTimeout')->set( read_config_option('script_timeout', true) ); $mc->object('cactiApplSpineMaxOids')->set( read_config_option('max_get_size', true) ); $mc->object('cactiApplLastUpdate')->set( time() ); /* update boost settings */ $mc->mib('CACTI-BOOST-MIB'); $mc->object('boostApplRrdUpdateEnabled')->set( (read_config_option('boost_rrd_update_enable', true) == 'on') ? 1 : 2 ); $mc->object('boostApplRrdUpdateInterval')->set( read_config_option('boost_rrd_update_interval', true) ); $mc->object('boostApplRrdUpdateMaxRecords')->set( read_config_option('boost_rrd_update_max_records', true) ); $mc->object('boostApplRrdUpdateMaxRecordsPerSelect')->set( read_config_option('boost_rrd_update_max_records_per_select', true) ); $mc->object('boostApplRrdUpdateMaxStringLength')->set( read_config_option('boost_rrd_update_string_length', true) ); $mc->object('boostApplRrdUpdatePollerMemLimit')->set( read_config_option('boost_poller_mem_limit', true) ); $mc->object('boostApplRrdUpdateMaxRunTime')->set( read_config_option('boost_rrd_update_max_runtime', true) ); $mc->object('boostApplRrdUpdateRedirect')->set( (read_config_option('boost_redirect', true) == 'on') ? 1 : 2 ); $mc->object('boostApplImageCacheEnabled')->set( (read_config_option('boost_png_cache_enable', true) == 'on') ? 1 : 2 ); $mc->object('boostApplLoggingEnabled')->set( (read_config_option('path_boost_log', true) == true) ? 1 : 2 ); $mc->object('boostApplLastUpdate')->set( time() ); } function snmpagent_api_device_new($device){ $mc = new MibCache(); /* add device to cactiApplDeviceTable and cactiStatsDeviceTable*/ $device_data = db_fetch_row_prepared('SELECT * FROM `host` WHERE id = ?', array($device['id'])); $appl_values = array( 'cactiApplDeviceIndex' => $device_data['id'], 'cactiApplDeviceDescription' => $device_data['description'], 'cactiApplDeviceHostname' => $device_data['hostname'], 'cactiApplDeviceStatus' => $device_data['status'], 'cactiApplDeviceEventCount' => $device_data['status_event_count'], 'cactiApplDeviceFailDate' => $device_data['status_fail_date'], 'cactiApplDeviceRecoveryDate' => $device_data['status_rec_date'], 'cactiApplDeviceLastError' => $device_data['status_last_error'], ); $stats_values = array( 'cactiStatsDeviceIndex' => $device_data['id'], 'cactiStatsDeviceHostname' => $device_data['hostname'], 'cactiStatsDeviceMinTime' => $device_data['min_time'], 'cactiStatsDeviceMaxTime' => $device_data['max_time'], 'cactiStatsDeviceCurTime' => $device_data['cur_time'], 'cactiStatsDeviceAvgTime' => $device_data['avg_time'], 'cactiStatsDeviceTotalPolls' => $device_data['total_polls'], 'cactiStatsDeviceFailedPolls' => $device_data['failed_polls'], 'cactiStatsDeviceAvailability' => $device_data['availability'] ); try { $mc->table('cactiApplDeviceTable')->row($device['id'])->replace($appl_values); $mc->object('cactiApplLastUpdate')->set(time()); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } try { $mc->table('cactiStatsDeviceTable')->row($device['id'])->replace($stats_values); $mc->object('cactiStatsTotalsDevices')->set(snmpagent_read('cactiStatsTotalsDevices')); $mc->object('cactiStatsLastUpdate')->set(time()); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } } function snmpagent_data_source_action_bottom($data){ $mc = new MibCache(); $action = $data[0]; if ($action == '1') { /* delete data sources */ $mc->object('cactiStatsTotalsDataSources')->set(snmpagent_read('cactiStatsTotalsDataSources')); $mc->object('cactiStatsTotalsGraphs')->set(snmpagent_read('cactiStatsTotalsGraphs')); $mc->object('cactiStatsLastUpdate')->set(time()); } elseif ($action == '4') { /* duplicate data sources */ $mc->object('cactiStatsTotalsDataSources')->set(snmpagent_read('cactiStatsTotalsDataSources')); $mc->object('cactiStatsLastUpdate')->set(time()); } } function snmpagent_graphs_action_bottom($data){ $mc = new MibCache(); $action = $data[0]; if ($action == '1') { /* delete graphs */ $mc->object('cactiStatsTotalsDataSources')->set(snmpagent_read('cactiStatsTotalsDataSources')); $mc->object('cactiStatsTotalsGraphs')->set(snmpagent_read('cactiStatsTotalsGraphs')); $mc->object('cactiStatsLastUpdate')->set(time()); } elseif ($action == '3') { /* duplicate graphs */ $mc->object('cactiStatsTotalsGraphs')->set(snmpagent_read('cactiStatsTotalsGraphs')); $mc->object('cactiStatsLastUpdate')->set(time()); } } function snmpagent_device_action_bottom($data){ $mc = new MibCache(); $action = $data[0]; $selected_items = $data[1]; if ($selected_items != false) { switch($action){ case '1': /* delete devices */ foreach($selected_items as $device_id) { try { $mc->table('cactiApplDeviceTable')->row($device_id)->delete(); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } try { $mc->table('cactiStatsDeviceTable')->row($device_id)->delete(); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } } /* update total statistics */ $mc->object('cactiStatsTotalsDevices')->set( snmpagent_read('cactiStatsTotalsDevices') ); $mc->object('cactiStatsTotalsDataSources')->set( snmpagent_read('cactiStatsTotalsDataSources') ); $mc->object('cactiStatsTotalsGraphs')->set( snmpagent_read('cactiStatsTotalsGraphs') ); $mc->object('cactiStatsLastUpdate')->set(time()); break; case '2': /* enable devices */ foreach($selected_items as $device_id) { $device_status = db_fetch_cell_prepared('SELECT status FROM host WHERE id = ?', array($device_id)); try { $mc->table('cactiApplDeviceTable')->row($device_id)->update(array('cactiApplDeviceStatus' => $device_status)); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } } $mc->object('cactiApplLastUpdate')->set(time()); break; case '3': /* disable devices */ foreach($selected_items as $device_id) { $device_status = db_fetch_cell_prepared('SELECT status FROM host WHERE id = ?', array($device_id)); try { $mc->table('cactiApplDeviceTable')->row($device_id)->update(array('cactiApplDeviceStatus' => 4)); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } } $mc->object('cactiApplLastUpdate')->set(time()); break; case '5': /* clear device statisitics */ $values = array( 'cactiStatsDeviceMinTime' => '9.99999', 'cactiStatsDeviceMaxTime' => '0', 'cactiStatsdeviceCurTime' => '0', 'cactiStatsDeviceAvgTime' => '0', 'cactiStatsDeviceTotalPolls' => '0', 'cactiStatsDeviceFailedPolls' => '0', 'cactiStatsDeviceAvailability' => '100' ); foreach($selected_items as $device_id) { try { $mc->table('cactiStatsDeviceTable')->row($device_id)->update($values); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } } $mc->object('cactiStatsLastUpdate')->set( time() ); break; default: /* nothing to do */ ; } //switch } } function snmpagent_poller_exiting($poller_index = 1){ $mc = new MibCache(); try { $poller = $mc->table('cactiApplPollerTable')->row($poller_index)->select(); $varbinds = array( 'cactiApplPollerIndex' => $poller_index, 'cactiApplPollerHostname' => $poller['cactiApplPollerHostname'], 'cactiApplPollerIpAddress' => $poller['cactiApplPollerIpAddress'] ); snmpagent_notification('cactiNotifyPollerRuntimeExceeding', 'CACTI-MIB', $varbinds, SNMPAGENT_EVENT_SEVERITY_HIGH); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } } function snmpagent_poller_bottom() { global $config; if (api_plugin_is_enabled('maint')) { include_once($config['base_path'] . '/plugins/maint/functions.php'); } $device_in_maintenance = false; $mc = new MibCache(); /* START: update total device stats table */ /***** deprecated ******/ $devicestatus_indices = array(0 => 0, 1 => 1, 2 => 2, 3 => 3, 4 => 4); $current_states = db_fetch_assoc('SELECT status, COUNT(*) as cnt FROM `host` GROUP BY status'); if ($current_states && sizeof($current_states)>0) { foreach($current_states as $current_state) { $index = $devicestatus_indices[$current_state['status']]; $values = array( 'cactiStatsTotalsDeviceStatusIndex' => $current_state['status'], 'cactiStatsTotalsDeviceStatusCounter' => $current_state['cnt'] ); try { $mc->table('cactiStatsTotalsDeviceStatusTable')->row($index)->replace($values); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } unset($devicestatus_indices[$current_state['status']]); } } if (sizeof($devicestatus_indices)>0) { foreach($devicestatus_indices as $status => $index) { $values = array( 'cactiStatsTotalsDeviceStatusIndex' => $status, 'cactiStatsTotalsDeviceStatusCounter' => 0 ); try { $mc->table('cactiStatsTotalsDeviceStatusTable')->row($index)->replace($values); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } } } /************************/ $mc->object('cactiStatsTotalsDeviceStatusUnknown')->set( snmpagent_read('cactiStatsTotalsDeviceStatusUnknown') ); $mc->object('cactiStatsTotalsDeviceStatusDown')->set( snmpagent_read('cactiStatsTotalsDeviceStatusDown') ); $mc->object('cactiStatsTotalsDeviceStatusRecovering')->set( snmpagent_read('cactiStatsTotalsDeviceStatusRecovering') ); $mc->object('cactiStatsTotalsDeviceStatusUp')->set( snmpagent_read('cactiStatsTotalsDeviceStatusUp') ); $mc->object('cactiStatsTotalsDeviceStatusDisabled')->set( snmpagent_read('cactiStatsTotalsDeviceStatusDisabled') ); /* END: update total device stats table */ /* update state and statistics of all devices */ $mc_dstatus = array(); try { $mc_devices = $mc->table('cactiApplDeviceTable')->select(array('cactiApplDeviceIndex', 'cactiApplDeviceStatus')); if ($mc_devices && sizeof($mc_devices)) { foreach($mc_devices as $mc_device) { if (isset($mc_device['cactiApplDeviceStatus']) && isset($mc_device['cactiApplDeviceIndex'])) { $mc_dstatus[$mc_device['cactiApplDeviceIndex']] = $mc_device['cactiApplDeviceStatus']; } } } } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } $mc_dfailed = array(); try { $mc_device_stats = $mc->table('cactiStatsDeviceTable')->select(array('cactiStatsDeviceIndex','cactiStatsDeviceFailedPolls')); if ($mc_device_stats && sizeof($mc_device_stats)>0) { foreach($mc_device_stats as $mc_device_stat) { if (isset($mc_device_stat['cactiStatsDeviceFailedPolls'])) { $mc_dfailed[$mc_device_stat['cactiStatsDeviceIndex']] = $mc_device_stat['cactiStatsDeviceFailedPolls']; } } } } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } $devices = db_fetch_assoc('SELECT id, description, hostname, status, disabled, status_event_count, status_fail_date, status_rec_date, status_last_error, min_time, max_time, cur_time, avg_time, total_polls, failed_polls, availability, snmp_engine_id FROM host ORDER BY id ASC'); if (sizeof($devices)) { foreach($devices as $device) { if (function_exists('plugin_maint_check_cacti_host')) { $device_in_maintenance = plugin_maint_check_cacti_host($index); } if (!$device_in_maintenance) { $varbinds = array( 'cactiApplDeviceIndex' => $device['id'], 'cactiApplDeviceDescription' => $device['description'], 'cactiApplDeviceHostname' => $device['hostname'], 'cactiApplDeviceLastError' => $device['status_last_error'] ); $overwrite['snmp_engine_id'] = $device['snmp_engine_id']; if (isset($mc_dfailed[$device['id']]) && $device['failed_polls'] > $mc_dfailed[$device['id']]) { snmpagent_notification('cactiNotifyDeviceFailedPoll', 'CACTI-MIB', $varbinds, SNMPAGENT_EVENT_SEVERITY_MEDIUM, $overwrite); } if (isset($mc_dstatus[$device['id']]) && $mc_dstatus[$device['id']] == HOST_UP && $device['status'] == HOST_DOWN ) { snmpagent_notification('cactiNotifyDeviceDown', 'CACTI-MIB', $varbinds, SNMPAGENT_EVENT_SEVERITY_HIGH, $overwrite); } elseif (isset($mc_dstatus[$device['id']]) && $mc_dstatus[$device['id']] == HOST_DOWN && $device['status'] == HOST_RECOVERING ){ snmpagent_notification('cactiNotifyDeviceRecovering', 'CACTI-MIB', $varbinds, SNMPAGENT_EVENT_SEVERITY_MEDIUM, $overwrite); } } $values = array( 'cactiApplDeviceStatus' => ($device['disabled'] == 'on') ? 4 : $device['status'], 'cactiApplDeviceEventCount' => $device['status_event_count'], 'cactiApplDeviceFailDate' => $device['status_fail_date'], 'cactiApplDeviceRecoveryDate' => $device['status_rec_date'], 'cactiApplDeviceLastError' => $device['status_last_error'] ); try { $mc->table('cactiApplDeviceTable')->row($device['id'])->update($values); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } $values = array( 'cactiStatsDeviceMinTime' => $device['min_time'], 'cactiStatsDeviceMaxTime' => $device['max_time'], 'cactiStatsDeviceCurTime' => $device['cur_time'], 'cactiStatsDeviceAvgTime' => $device['avg_time'], 'cactiStatsDeviceTotalPolls' => $device['total_polls'], 'cactiStatsDeviceFailedPolls' => $device['failed_polls'], 'cactiStatsDeviceAvailability' => $device['availability'] ); try { $mc->table('cactiStatsDeviceTable')->row($device['id'])->update($values); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } } } /* get a list of all plugins available on that system */ $pluginslist = snmpagent_get_pluginslist(); /* truncate plugin mib table */ try { $mc->table('cactiApplPluginTable')->truncate(); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } /* refill plugin mib table */ if ($pluginslist && sizeof($pluginslist)>0) { $i = 1; foreach($pluginslist as $plugin) { $values = array( 'cactiApplPluginIndex' => $i, 'cactiApplPluginType' => 2, 'cactiApplPluginName' => $plugin['directory'], 'cactiApplPluginStatus' => $plugin['status'], 'cactiApplPluginVersion' => $plugin['version'] ); try { $mc->table('cactiApplPluginTable')->row($i)->insert($values); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } $i++; } } $mc->object('cactiApplLastUpdate')->set(time()); $recache_stats = db_fetch_cell("SELECT value FROM settings WHERE name = 'stats_recache'"); if ($recache_stats) { list($time, $hosts) = explode(' ', $recache_stats); $time = str_replace('RecacheTime:', '', $time); $hosts = str_replace('HostsRecached:', '', $hosts); $mc->object('cactiStatsRecacheTime')->set($time); $mc->object('cactiStatsRecachedHosts')->set($hosts); } $mc->object('cactiStatsLastUpdate')->set(time()); /* clean up the notification log */ $snmp_notification_managers = db_fetch_assoc('SELECT id, max_log_size FROM snmpagent_managers'); if ($snmp_notification_managers && sizeof($snmp_notification_managers)>0) { foreach($snmp_notification_managers as $snmp_notification_manager) { db_execute_prepared('DELETE FROM snmpagent_notifications_log WHERE manager_id = ? AND `time` <= ?', array($snmp_notification_manager['id'], time()-86400*$snmp_notification_manager['max_log_size'])); } } } function snmpagent_get_pluginslist(){ global $config, $plugins, $plugins_integrated; /* update the list of known plugins only once per polling cycle. In all other cases we would have to create too many new hooks to update that MIB table just in time. We have to do the same like function plugins_load_temp_table(), which will not be available during the execution of that function. */ $pluginslist = array(); $registered_plugins = db_fetch_assoc('SELECT * FROM plugin_config ORDER BY name'); foreach ($registered_plugins as $t) { $pluginslist[$t['directory']] = $t; } $path = $config['base_path'] . '/plugins/'; $dh = opendir($path); if ($dh !== false) { while (($file = readdir($dh)) !== false) { if ((is_dir("$path/$file")) && !in_array($file, $plugins_integrated) && (file_exists("$path/$file/setup.php")) && (!array_key_exists($file, $pluginslist))) { if (file_exists("$path/$file/INFO")) { $cinfo = plugin_load_info_file("$path/$file/INFO"); if (!isset($cinfo['author'])) $cinfo['author'] = 'Unknown'; if (!isset($cinfo['homepage'])) $cinfo['homepage'] = 'Not Stated'; if (isset($cinfo['webpage'])) $cinfo['homepage'] = $cinfo['webpage']; if (!isset($cinfo['longname'])) $cinfo['longname'] = ucfirst($file); $cinfo['directory'] = $file; $pluginslist[$file] = $cinfo; if (!isset($pluginslist[$file]['status'])) { $pluginslist[$file]['status'] = 0; } } } } closedir($dh); } return $pluginslist; } /** * snmpagent_cache_setup() * Generates a SNMP caching tables reflecting all objects of the Cacti MIB * @return */ function snmpagent_cache_install(){ global $config; /* drop everything */ db_execute('TRUNCATE `snmpagent_cache`'); db_execute('TRUNCATE `snmpagent_mibs`;'); db_execute('TRUNCATE `snmpagent_cache_notifications`;'); db_execute('TRUNCATE `snmpagent_cache_textual_conventions`;'); $mc = new MibCache(); $mc->install($config['base_path'] . '/mibs/CACTI-MIB'); $mc->install($config['base_path'] . '/mibs/CACTI-SNMPAGENT-MIB'); $mc->install($config['base_path'] . '/mibs/CACTI-BOOST-MIB'); snmpagent_cache_init(); /* call install routine of plugins supporting the SNMPagent */ api_plugin_hook('snmpagent_cache_install'); } function snmpagent_cache_rebuilt(){ snmpagent_cache_install(); } function snmpagent_cache_init(){ /* fill up the cache with a minimum of data data and ignore all values that * will be updated automatically at the bottom of the next poller run */ $mc = new MibCache(); if (!is_object($mc)) { return false; } /* update global settings */ snmpagent_global_settings_update(); /* add pollers of a distributed system (future) */ $pollers = db_fetch_assoc('SELECT id FROM poller ORDER BY id ASC'); if ($pollers && sizeof($pollers)>0) { foreach($pollers as $poller){ $poller_data = db_fetch_row_prepared('SELECT * FROM poller WHERE id = ?', array($poller['id'])); } }else { /* this is NOT a distributed system, but it should have at least one local poller. */ $poller_lastrun = read_config_option('poller_lastrun', true); $values = array( 'cactiApplPollerIndex' => 1, 'cactiApplPollerHostname' => 'localhost', 'cactiApplPollerIpAddress' => '127.0.0.1', 'cactiApplPollerLastUpdate' => $poller_lastrun ); try { $mc->table('cactiApplPollerTable')->row(1)->insert($values); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } $values = array( 'cactiStatsPollerIndex' => 1, 'cactiStatsPollerHostname' => 'localhost', 'cactiStatsPollerMethod' => read_config_option('poller_type', true) ); try { $mc->table('cactiStatsPollerTable')->row(1)->insert($values); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } } /* add all devices as devicetable entries to the snmp cache */ $devices = db_fetch_assoc('SELECT id, description, hostname, disabled, status_event_count, status_fail_date, status_rec_date, status_last_error, min_time, max_time, cur_time, avg_time, total_polls, failed_polls, availability FROM host ORDER BY id ASC'); if (sizeof($devices)) { foreach($devices as $device) { $device = db_fetch_row_prepared('SELECT * FROM host WHERE id = ?', array($device['id'])); /* add device to cactiApplDeviceTable */ if (sizeof($device)) { $values = array( 'cactiApplDeviceIndex' => $device['id'], 'cactiApplDeviceDescription' => $device['description'], 'cactiApplDeviceHostname' => $device['hostname'], 'cactiApplDeviceStatus' => ($device['disabled'] == 'on') ? 4 : $device['status'], 'cactiApplDeviceEventCount' => $device['status_event_count'], 'cactiApplDeviceFailDate' => $device['status_fail_date'], 'cactiApplDeviceRecoveryDate' => $device['status_rec_date'], 'cactiApplDeviceLastError' => $device['status_last_error'], ); try { $mc->table('cactiApplDeviceTable')->row($device['id'])->insert($values); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } /* add device to cactiStatsDeviceTable */ $values = array( 'cactiStatsDeviceIndex' => $device['id'], 'cactiStatsDeviceHostname' => $device['hostname'], 'cactiStatsDeviceMinTime' => $device['min_time'], 'cactiStatsDeviceMaxTime' => $device['max_time'], 'cactiStatsDeviceCurTime' => $device['cur_time'], 'cactiStatsDeviceAvgTime' => $device['avg_time'], 'cactiStatsDeviceTotalPolls' => $device['total_polls'], 'cactiStatsDeviceFailedPolls' => $device['failed_polls'], 'cactiStatsDeviceAvailability' => $device['availability'] ); try { $mc->table('cactiStatsDeviceTable')->row($device['id'])->insert($values); } catch (Exception $e) { cacti_log('WARNING: SNMPAgent: ' . $e->getMessage(), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } } } } } function snmpagent_read($object){ switch($object) { case 'cactiApplVersion': $value = db_fetch_cell('SELECT `cacti` FROM `version`'); break; case 'cactiApplSnmpVersion': $snmp_version = read_config_option('snmp_version', true); $value = $snmp_version; if (function_exists('snmpget')) { $value = 3; } break; case 'cactiStatsTotalsDevices': $value = db_fetch_cell('SELECT COUNT(*) FROM host'); break; case 'cactiStatsTotalsDataSources': $value = db_fetch_cell('SELECT COUNT(*) FROM data_local'); break; case 'cactiStatsTotalsGraphs': $value = db_fetch_cell('SELECT COUNT(*) FROM graph_local'); break; case 'cactiStatsTotalsDeviceStatusUnknown': $value = db_fetch_cell('SELECT COUNT(*) FROM host WHERE status = 0'); break; case 'cactiStatsTotalsDeviceStatusDown': $value = db_fetch_cell('SELECT COUNT(*) FROM host WHERE status = 1'); break; case 'cactiStatsTotalsDeviceStatusRecovering': $value = db_fetch_cell('SELECT COUNT(*) FROM host WHERE status = 2'); break; case 'cactiStatsTotalsDeviceStatusUp': $value = db_fetch_cell('SELECT COUNT(*) FROM host WHERE status = 3'); break; case 'cactiStatsTotalsDeviceStatusDisabled': $value = db_fetch_cell('SELECT COUNT(*) FROM host WHERE status = 4'); break; default: $value = false; } return $value; } function snmpagent_notification($notification, $mib, $varbinds, $severity = SNMPAGENT_EVENT_SEVERITY_MEDIUM, $overwrite = false){ global $config; if (isset($config['snmpagent']['notifications']['ignore'][$notification])) { return false; } $path_snmptrap = read_config_option('snmpagent_path_snmptrap'); if (!in_array($severity, array(SNMPAGENT_EVENT_SEVERITY_LOW, SNMPAGENT_EVENT_SEVERITY_MEDIUM, SNMPAGENT_EVENT_SEVERITY_HIGH, SNMPAGENT_EVENT_SEVERITY_CRITICAL))) { cacti_log('ERROR: Unknown event severity: "' . $severity . '" for ' . $notification . ' (' . $mib . ')', false, 'SNMPAGENT', POLLER_VERBOSITY_NONE); return false; } $enterprise_oid = db_fetch_cell_prepared('SELECT oid FROM snmpagent_cache WHERE `name` = ? AND `mib` = ?', array($notification, $mib)); if (!$enterprise_oid) { /* system does not know this event */ cacti_log('ERROR: Unknown event: ' . $notification . ' (' . $mib . ')', false, 'SNMPAGENT', POLLER_VERBOSITY_NONE); return false; }else { $branches = explode('.', $enterprise_oid); $specific_trap_number = array_pop($branches); } /* generate a list of SNMP notification receivers listening for this notification */ $notification_managers = db_fetch_assoc_prepared('SELECT snmpagent_managers.* FROM snmpagent_managers_notifications INNER JOIN snmpagent_managers ON (snmpagent_managers.id = snmpagent_managers_notifications.manager_id) WHERE snmpagent_managers.disabled = 0 AND snmpagent_managers_notifications.notification = ? AND snmpagent_managers_notifications.mib = ?', array($notification, $mib)); if (sizeof($notification_managers)) { /* To bad! Nobody wants to hear our message. :( */ if (in_array($severity, array(SNMPAGENT_EVENT_SEVERITY_HIGH, SNMPAGENT_EVENT_SEVERITY_CRITICAL))) { cacti_log('WARNING: No notification receivers configured for event: ' . $notification . ' (' . $mib . ')', false, 'SNMPAGENT', POLLER_VERBOSITY_NONE); }else { /* keep notifications of a lower/medium severity in mind to make a quicker decision next time */ $config['snmpagent']['notifications']['ignore'][$notification] = 1; } return false; } $registered_var_binds = array(); /* get a list of registered var binds */ $reg_var_binds = db_fetch_assoc_prepared('SELECT scn.attribute, sc.oid, sc.type, sctc.type as tcType FROM snmpagent_cache_notifications AS scn LEFT JOIN snmpagent_cache AS sc ON sc.mib = scn.mib AND sc.name = scn.attribute LEFT JOIN snmpagent_cache_textual_conventions AS sctc ON sc.mib = sctc.mib AND sc.type = sctc.name WHERE scn.name = ? AND scn.mib = ? ORDER BY scn.sequence_id', array($notification, $mib)); if (sizeof($reg_var_binds)) { foreach($reg_var_binds as $reg_var_bind) { $registered_var_binds[$reg_var_bind['attribute']] = array( 'oid' => $reg_var_bind['oid'], 'type' => ($reg_var_bind['tcType']) ? $reg_var_bind['tcType'] : $reg_var_bind['type'] ); } } $difference = array_diff(array_keys($registered_var_binds), array_keys($varbinds)); if (sizeof($difference) == 0) { /* order the managers by message type to send out all notifications immmediately. Informs will take more processing time. */ $notification_managers = db_fetch_assoc_prepared('SELECT sm.* FROM snmpagent_managers_notifications AS smn INNER JOIN snmpagent_managers AS sm ON sm.id = smn.manager_id WHERE smn.notification = ? AND smn.mib = ? ORDER BY sm.snmp_message_type', array($notification, $mib)); if (sizeof($notification_managers)) { include_once($config['library_path'] . '/poller.php'); /* TYPE: one of i, u, t, a, o, s, x, d, b i: INTEGER, u: unsigned INTEGER, t: TIMETICKS, a: IPADDRESS o: OBJID, s: STRING, x: HEX STRING, d: DECIMAL STRING, b: BITS U: unsigned int64, I: signed int64, F: float, D: double */ $smi2netsnmp_datatypes = array( 'integer' => 'i', 'integer32' => 'i', 'unsigned32' => 'u', 'gauge' => 'i', 'gauge32' => 'i', 'counter' => 'i', 'counter32' => 'i', 'counter64' => 'I', 'timeticks' => 't', 'octect string' => 's', 'opaque' => 's', 'object identifier' => 'o', 'ipaddress' => 'a', 'networkaddress' => 'IpAddress', 'bits' => 'b', 'displaystring' => 's', 'physaddress' => 's', 'macaddress' => 's', 'truthvalue' => 'i', 'testandincr' => 'i', 'autonomoustype' => 'o', 'variablepointer' => 'o', 'rowpointer' => 'o', 'rowstatus' => 'i', 'timestamp' => 't', 'timeinterval' => 'i', 'dateandtime' => 's', 'storagetype' => 'i', 'tdomain' => 'o', 'taddress' => 's' ); $log_notification_varbinds = ''; $snmp_notification_varbinds = ''; foreach($notification_managers as $notification_manager) { if (!$snmp_notification_varbinds) { foreach($registered_var_binds as $name => $attributes ) { $snmp_notification_varbinds .= ' ' . $attributes['oid'] . ' ' . $smi2netsnmp_datatypes[strtolower($attributes['type'])] . " \"" . str_replace('"', "'", $varbinds[$name]) . "\""; $log_notification_varbinds .= $name . ":\"" . str_replace('"', "'", $varbinds[$name]) . "\" "; } } if ($notification_manager['snmp_version'] == 1 ) { $args = ' -v 1 -c ' . $notification_manager['snmp_community'] . ' ' . $notification_manager['hostname'] . ':' . $notification_manager['snmp_port'] . ' ' . $enterprise_oid . " \"\" 6 " . $specific_trap_number . " \"\"" . $snmp_notification_varbinds; }else if ($notification_manager['snmp_version'] == 2 ) { $args = ' -v 2c -c ' . $notification_manager['snmp_community'] . ( ($notification_manager['snmp_message_type'] == 2 )? ' -Ci ' : '' ) . ' ' . $notification_manager['hostname'] . ':' . $notification_manager['snmp_port'] . " \"\" " . $enterprise_oid . $snmp_notification_varbinds; }else if ($notification_manager['snmp_version'] == 3 ) { if ( $overwrite && isset($overwrite['snmp_engine_id']) && $overwrite['snmp_engine_id'] ) { $notification_manager['snmp_engine_id'] = $overwrite['snmp_engine_id']; } $args = ' -v 3 -e ' . $notification_manager['snmp_engine_id'] . (($notification_manager['snmp_message_type'] == 2 )? ' -Ci ' : '' ) . ' -u ' . $notification_manager['snmp_username']; if ( $notification_manager['snmp_password'] && $notification_manager['snmp_priv_passphrase']) { $snmp_security_level = 'authPriv'; } elseif ( $notification_manager['snmp_password'] && !$notification_manager['snmp_priv_passphrase']) { $snmp_security_level = 'authNoPriv'; }else { $snmp_security_level = 'noAuthNoPriv'; } $args .= ' -l ' . $snmp_security_level . (($snmp_security_level != 'noAuthNoPriv') ? ' -a ' . $notification_manager['snmp_auth_protocol'] . ' -A ' . $notification_manager['snmp_password'] : '' ) . (($snmp_security_level == 'authPriv')? ' -x ' . $notification_manager['snmp_priv_protocol'] . ' -X ' . $notification_manager['snmp_priv_passphrase'] : '') . ' ' . $notification_manager['hostname'] . ':' . $notification_manager['snmp_port'] . " \"\" " . $enterprise_oid . $snmp_notification_varbinds; } /* execute net-snmp to generate this notification in the background */ exec_background( escapeshellcmd($path_snmptrap), escapeshellcmd($args)); /* insert a new entry into the notification log for that SNMP receiver */ $save = array(); $save['id'] = 0; $save['time'] = time(); $save['severity'] = $severity; $save['manager_id'] = $notification_manager['id']; $save['notification'] = $notification; $save['mib'] = $mib; $save['varbinds'] = substr($log_notification_varbinds, 0, 5000); sql_save($save, 'snmpagent_notifications_log'); /* log the net-snmp command for Cacti admins if they wish for */ cacti_log("NOTE: $path_snmptrap " . str_replace(array($notification_manager['snmp_password'], $notification_manager['snmp_priv_passphrase']), '********', $args), false, 'SNMPAGENT', POLLER_VERBOSITY_MEDIUM); } } }else { /* mismatching number of var binds */ cacti_log('ERROR: Incomplete number of varbinds given for event: ' . $notification . ' (' . $mib . ')', false, 'SNMPAGENT', POLLER_VERBOSITY_NONE); return false; } } cacti-1.1.38/lib/snmp.php0000664000175000017500000006623713264740213014527 0ustar tromantromanoid_output_format = SNMP_OID_OUTPUT_NUMERIC; $session->valueretrieval = SNMP_VALUE_LIBRARY; } $session->max_oids = $max_oids; if (read_config_option('oid_increasing_check_disable') == 'on') { $session->oid_increasing_check = false; } if ($version != SNMP::VERSION_3) { return $session; } if ($priv_proto == '[None]' || $priv_pass == '') { if ($auth_pass == '' || $auth_proto == '[None]') { $sec_level = 'noAuthNoPriv'; } else { $sec_level = 'authNoPriv'; } $priv_proto = ''; } else { $sec_level = 'authPriv'; } try { $session->setSecurity($sec_level, $auth_proto, $auth_pass, $priv_proto, $priv_pass, $context, $engineid); } catch (Exception $e) { return false; } return $session; } function cacti_snmp_get($hostname, $community, $oid, $version, $auth_user, $auth_pass, $auth_proto, $priv_pass, $priv_proto, $context, $port = 161, $timeout = 500, $retries = 0, $environ = SNMP_POLLER, $engineid = '', $value_output_format = SNMP_STRING_OUTPUT_GUESS) { global $config, $snmp_error; $max_oids = 1; $snmp_error = ''; if (!cacti_snmp_options_sanitize($version, $community, $port, $timeout, $retries, $max_oids)) { return 'U'; } if (snmp_get_method('get', $version, $context, $engineid, $value_output_format) == SNMP_METHOD_PHP) { /* make sure snmp* is verbose so we can see what types of data we are getting back */ snmp_set_quick_print(0); if (function_exists('snmp_set_enum_print')) { snmp_set_enum_print(true); } if ($version == '1') { $snmp_value = snmpget($hostname . ':' . $port, $community, $oid, ($timeout * 1000), $retries); } elseif ($version == '2') { $snmp_value = snmp2_get($hostname . ':' . $port, $community, $oid, ($timeout * 1000), $retries); } else { if ($priv_proto == '[None]' || $priv_pass == '') { if ($auth_pass == '' || $auth_proto == '[None]') { $sec_level = 'noAuthNoPriv'; } else { $sec_level = 'authNoPriv'; } $priv_proto = ''; } else { $sec_level = 'authPriv'; } $snmp_value = snmp3_get($hostname . ':' . $port, $auth_user, $sec_level, $auth_proto, $auth_pass, $priv_proto, $priv_pass, $oid, ($timeout * 1000), $retries); } if ($snmp_value === false) { cacti_log("WARNING: SNMP Error:'$snmp_error', Device:'$hostname', OID:'$oid'", false); $snmp_value = 'U'; } else { $snmp_value = format_snmp_string($snmp_value, false, $value_output_format); } } else { $snmp_value = ''; /* net snmp want the timeout in seconds */ $timeout = ceil($timeout / 1000); if ($version == '1') { $snmp_auth = '-c ' . snmp_escape_string($community); /* v1/v2 - community string */ } elseif ($version == '2') { $snmp_auth = '-c ' . snmp_escape_string($community); /* v1/v2 - community string */ $version = '2c'; /* ucd/net snmp prefers this over '2' */ } elseif ($version == '3') { $snmp_auth = cacti_get_snmpv3_auth($auth_proto, $auth_user, $auth_pass, $priv_proto, $priv_pass, $context, $engineid); } /* no valid snmp version has been set, get out */ if (empty($snmp_auth)) { return; } exec(cacti_escapeshellcmd(read_config_option('path_snmpget')) . ' -O fntevU' . ($value_output_format == SNMP_STRING_OUTPUT_HEX ? 'x ':' ') . $snmp_auth . ' -v ' . $version . ' -t ' . $timeout . ' -r ' . $retries . ' ' . cacti_escapeshellarg($hostname) . ':' . $port . ' ' . cacti_escapeshellarg($oid), $snmp_value); /* fix for multi-line snmp output */ if (is_array($snmp_value)) { $snmp_value = implode(' ', $snmp_value); } if (substr_count($snmp_value, 'Timeout:')) { cacti_log("WARNING: SNMP Error:'Timeout', Device:'$hostname', OID:'$oid'", false); $snmp_value = 'U'; } else { $snmp_value = format_snmp_string($snmp_value, false, $value_output_format); } } return $snmp_value; } function cacti_snmp_get_raw($hostname, $community, $oid, $version, $auth_user, $auth_pass, $auth_proto, $priv_pass, $priv_proto, $context, $port = 161, $timeout = 500, $retries = 0, $environ = SNMP_POLLER, $engineid = '', $value_output_format = SNMP_STRING_OUTPUT_GUESS) { global $config, $snmp_error; $max_oids = 1; $snmp_error = ''; if (!cacti_snmp_options_sanitize($version, $community, $port, $timeout, $retries, $max_oids)) { return 'U'; } if (snmp_get_method('get', $version, $context, $engineid, $value_output_format) == SNMP_METHOD_PHP) { /* make sure snmp* is verbose so we can see what types of data we are getting back */ snmp_set_quick_print(0); if (function_exists('snmp_set_enum_print')) { snmp_set_enum_print(true); } if ($version == '1') { $snmp_value = snmpget($hostname . ':' . $port, $community, $oid, ($timeout * 1000), $retries); } elseif ($version == '2') { $snmp_value = snmp2_get($hostname . ':' . $port, $community, $oid, ($timeout * 1000), $retries); } else { if ($priv_proto == '[None]' || $priv_pass == '') { if ($auth_pass == '' || $auth_proto == '[None]') { $sec_level = 'noAuthNoPriv'; } else { $sec_level = 'authNoPriv'; } $priv_proto = ''; } else { $sec_level = 'authPriv'; } $snmp_value = snmp3_get($hostname . ':' . $port, $auth_user, $sec_level, $auth_proto, $auth_pass, $priv_proto, $priv_pass, $oid, ($timeout * 1000), $retries); } if ($snmp_value === false) { cacti_log("WARNING: SNMP Error:'$snmp_error', Device:'$hostname', OID:'$oid'", false); $snmp_value = 'U'; } } else { $snmp_value = ''; /* net snmp want the timeout in seconds */ $timeout = ceil($timeout / 1000); if ($version == '1') { $snmp_auth = '-c ' . snmp_escape_string($community); /* v1/v2 - community string */ } elseif ($version == '2') { $snmp_auth = '-c ' . snmp_escape_string($community); /* v1/v2 - community string */ $version = '2c'; /* ucd/net snmp prefers this over '2' */ } elseif ($version == '3') { $snmp_auth = cacti_get_snmpv3_auth($auth_proto, $auth_user, $auth_pass, $priv_proto, $priv_pass, $context, $engineid); } /* no valid snmp version has been set, get out */ if (empty($snmp_auth)) { return; } exec(cacti_escapeshellcmd(read_config_option('path_snmpget')) . ' -O fntev' . ($value_output_format == SNMP_STRING_OUTPUT_HEX ? 'x ':' ') . $snmp_auth . ' -v ' . $version . ' -t ' . $timeout . ' -r ' . $retries . ' ' . cacti_escapeshellarg($hostname) . ':' . $port . ' ' . cacti_escapeshellarg($oid), $snmp_value); /* fix for multi-line snmp output */ if (is_array($snmp_value)) { $snmp_value = implode(' ', $snmp_value); } if (substr_count($snmp_value, 'Timeout:')) { cacti_log("WARNING: SNMP Error:'Timeout', Device:'$hostname', OID:'$oid'", false); $snmp_value = 'U'; } } return $snmp_value; } function cacti_snmp_getnext($hostname, $community, $oid, $version, $auth_user, $auth_pass, $auth_proto, $priv_pass, $priv_proto, $context, $port = 161, $timeout = 500, $retries = 0, $environ = SNMP_POLLER, $engineid = '', $value_output_format = SNMP_STRING_OUTPUT_GUESS) { global $config, $snmp_error; $max_oids = 1; $snmp_error = ''; if (!cacti_snmp_options_sanitize($version, $community, $port, $timeout, $retries, $max_oids)) { return 'U'; } if (snmp_get_method('getnext', $version, $context, $engineid, $value_output_format) == SNMP_METHOD_PHP) { /* make sure snmp* is verbose so we can see what types of data we are getting back */ snmp_set_quick_print(0); if ($version == '1') { $snmp_value = snmpgetnext($hostname . ':' . $port, $community, $oid, ($timeout * 1000), $retries); } elseif ($version == '2') { $snmp_value = snmp2_getnext($hostname . ':' . $port, $community, $oid, ($timeout * 1000), $retries); } else { if ($priv_proto == '[None]' || $priv_pass == '') { if ($auth_pass == '' || $auth_proto == '[None]') { $sec_level = 'noAuthNoPriv'; } else { $sec_level = 'authNoPriv'; } $priv_proto = ''; } else { $sec_level = 'authPriv'; } $snmp_value = snmp3_getnext($hostname . ':' . $port, $auth_user, $sec_level, $auth_proto, $auth_pass, $priv_proto, $priv_pass, $oid, ($timeout * 1000), $retries); } if ($snmp_value === false) { cacti_log("WARNING: SNMP Error:'$snmp_error', Device:'$hostname', OID:'$oid'", false); $snmp_value = 'U'; } else { $snmp_value = format_snmp_string($snmp_value, false, $value_output_format); } } else { $snmp_value = ''; /* net snmp want the timeout in seconds */ $timeout = ceil($timeout / 1000); if ($version == '1') { $snmp_auth = '-c ' . snmp_escape_string($community); /* v1/v2 - community string */ } elseif ($version == '2') { $snmp_auth = '-c ' . snmp_escape_string($community); /* v1/v2 - community string */ $version = '2c'; /* ucd/net snmp prefers this over '2' */ } elseif ($version == '3') { $snmp_auth = cacti_get_snmpv3_auth($auth_proto, $auth_user, $auth_pass, $priv_proto, $priv_pass, $context, $engineid); } /* no valid snmp version has been set, get out */ if (empty($snmp_auth)) { return; } exec(cacti_escapeshellcmd(read_config_option('path_snmpgetnext')) . ' -O fntevU' . ($value_output_format == SNMP_STRING_OUTPUT_HEX ? 'x ':' ') . $snmp_auth . ' -v ' . $version . ' -t ' . $timeout . ' -r ' . $retries . ' ' . cacti_escapeshellarg($hostname) . ':' . $port . ' ' . cacti_escapeshellarg($oid), $snmp_value); /* fix for multi-line snmp output */ if (is_array($snmp_value)) { $snmp_value = implode(' ', $snmp_value); } if (substr_count($snmp_value, 'Timeout:')) { cacti_log("WARNING: SNMP Error:'Timeout', Device:'$hostname', OID:'$oid'", false); } /* strip out non-snmp data */ $snmp_value = format_snmp_string($snmp_value, false, $value_output_format); } return $snmp_value; } function cacti_get_snmpv3_auth($auth_proto, $auth_user, $auth_pass, $priv_proto, $priv_pass, $context, $engineid) { $sec_details = ' -a ' . snmp_escape_string($auth_proto) . ' -A ' . snmp_escape_string($auth_pass); if ($priv_proto == '[None]' || $priv_pass == '') { if ($auth_pass == '' || $auth_proto == '[None]') { $sec_level = 'noAuthNoPriv'; $sec_details = ''; } else { $sec_level = 'authNoPriv'; } $priv_proto = ''; $priv_pass = ''; } else { $sec_level = 'authPriv'; $priv_pass = '-X ' . snmp_escape_string($priv_pass) . ' -x ' . snmp_escape_string($priv_proto); } if ($context != '') { $context = '-n ' . snmp_escape_string($context); } else { $context = ''; } if ($engineid != '') { $engineid = '-e ' . snmp_escape_string($engineid); } else { $engineid = ''; } return trim('-u ' . snmp_escape_string($auth_user) . ' -l ' . snmp_escape_string($sec_level) . ' ' . $sec_details . ' ' . $priv_pass . ' ' . $context . ' ' . $engineid); } function cacti_snmp_session_walk($session, $oid, $dummy = false, $max_repetitions = NULL, $non_repeaters = NULL, $value_output_format = SNMP_STRING_OUTPUT_GUESS) { $info = $session->info; if (is_array($oid) && sizeof($oid) == 0) { cacti_log('Empty OID!', false); return array(); } $session->value_output_format = $value_output_format; if ($non_repeaters === NULL) $non_repeaters = 0; if ($max_repetitions === NULL) $max_repetitions = $session->max_oids; if ($max_repetitions <= 0) $max_repetitions = 10; try { $out = $session->walk($oid, false, $max_repetitions, $non_repeaters); } catch (Exception $e) { $out = false; } if ($out === false) { if ($oid == '.1.3.6.1.2.1.47.1.1.1.1.2' || $oid == '.1.3.6.1.4.1.9.9.68.1.2.2.1.2' || $oid == '.1.3.6.1.4.1.9.9.46.1.6.1.1.5' || $oid == '.1.3.6.1.4.1.9.9.46.1.6.1.1.14' || $oid == '.1.3.6.1.4.1.9.9.23.1.2.1.1.6') { /* do nothing */ } elseif ($session->getErrno() == SNMP::ERRNO_TIMEOUT) { cacti_log('WARNING: SNMP Error:\'Timeout (' . ($info['timeout']/1000) . " ms)', Device:'" . $info['hostname'] . "', OID:'$oid'", false); } return array(); } if (sizeof($out)) { foreach($out as $oid => $value){ $out[$oid] = format_snmp_string($value, false, $value_output_format); } } return $out; } function cacti_snmp_session_get($session, $oid, $strip_alpha = false) { $info = $session->info; if (is_array($oid) && sizeof($oid) == 0) { cacti_log('Empty OID!', false); return array(); } try { $out = $session->get($oid); } catch (Exception $e) { $out = false; } if (is_array($oid)) { $oid = implode(',', $oid); } if ($out === false) { if ($session->getErrno() == SNMP::ERRNO_TIMEOUT) { cacti_log('WARNING: SNMP Error:\'Timeout (' . ($info['timeout']/1000) . " ms)', Device:'" . $info['hostname'] . "', OID:'$oid'", false); } return false; } if (is_array($out)) { foreach($out as $oid => $value){ $out[$oid] = format_snmp_string($value, false, SNMP_STRING_OUTPUT_GUESS, $strip_alpha); } } else { $out = format_snmp_string($out, false, SNMP_STRING_OUTPUT_GUESS, $strip_alpha); } return $out; } function cacti_snmp_session_getnext($session, $oid) { $info = $session->info; if (is_array($oid) && sizeof($oid) == 0) { cacti_log('Empty OID!', false); return array(); } try { $out = $session->getnext($oid); } catch (Exception $e) { $out = false; } if (is_array($oid)) { $oid = implode(',', $oid); } elseif ($out === false) { if ($session->getErrno() == SNMP::ERRNO_TIMEOUT) { cacti_log('WARNING: SNMP Error:\'Timeout (' . ($info['timeout']/1000) . " ms)', Device:'" . $info['hostname'] . "', OID:'$oid'", false); } return false; } if (is_array($out)) { foreach($out as $oid => $value){ $out[$oid] = format_snmp_string($value, false); } } else { $out = format_snmp_string($out, false); } return $out; } function cacti_snmp_walk($hostname, $community, $oid, $version, $auth_user, $auth_pass, $auth_proto, $priv_pass, $priv_proto, $context, $port = 161, $timeout = 500, $retries = 0, $max_oids = 10, $environ = SNMP_POLLER, $engineid = '', $value_output_format = SNMP_STRING_OUTPUT_GUESS) { global $config, $banned_snmp_strings, $snmp_error; $snmp_error = ''; $snmp_oid_included = true; $snmp_auth = ''; $snmp_array = array(); $temp_array = array(); if (!cacti_snmp_options_sanitize($version, $community, $port, $timeout, $retries, $max_oids)) { return array(); } $path_snmpbulkwalk = read_config_option('path_snmpbulkwalk'); if (snmp_get_method('walk', $version, $context, $engineid, $value_output_format) == SNMP_METHOD_PHP) { /* make sure snmp* is verbose so we can see what types of data we are getting back */ /* force php to return numeric oid's */ cacti_oid_numeric_format(); if (function_exists('snmprealwalk')) { $snmp_oid_included = false; } snmp_set_quick_print(0); if ($version == '1') { $temp_array = snmprealwalk($hostname . ':' . $port, $community, $oid, ($timeout * 1000), $retries); } elseif ($version == 2) { $temp_array = snmp2_real_walk($hostname . ':' . $port, $community, $oid, ($timeout * 1000), $retries); } else { if ($priv_proto == '[None]' || $priv_pass == '') { if ($auth_pass == '') { $sec_level = 'noAuthNoPriv'; } else { $sec_level = 'authNoPriv'; } $priv_proto = ''; } else { $sec_level = 'authPriv'; } $temp_array = snmp3_real_walk($hostname . ':' . $port, $auth_user, $sec_level, $auth_proto, $auth_pass, $priv_proto, $priv_pass, $oid, ($timeout * 1000), $retries); } /* check for bad entries */ if ($temp_array !== false && sizeof($temp_array)) { foreach($temp_array as $key => $value) { foreach($banned_snmp_strings as $item) { if (strstr($value, $item) != '') { unset($temp_array[$key]); continue 2; } } } $o = 0; for (reset($temp_array); $i = key($temp_array); next($temp_array)) { if ($temp_array[$i] != 'NULL') { $snmp_array[$o]['oid'] = preg_replace('/^\./', '', $i); $snmp_array[$o]['value'] = format_snmp_string($temp_array[$i], $snmp_oid_included, $value_output_format); } $o++; } } } else { /* ucd/net snmp want the timeout in seconds */ $timeout = ceil($timeout / 1000); if ($version == '1') { $snmp_auth = '-c ' . snmp_escape_string($community); /* v1/v2 - community string */ } elseif ($version == '2') { $snmp_auth = '-c ' . snmp_escape_string($community); /* v1/v2 - community string */ $version = '2c'; /* ucd/net snmp prefers this over '2' */ } elseif ($version == '3') { $snmp_auth = cacti_get_snmpv3_auth($auth_proto, $auth_user, $auth_pass, $priv_proto, $priv_pass, $context, $engineid); } if (read_config_option('oid_increasing_check_disable') == 'on') { $oidCheck = '-Cc'; } else { $oidCheck = ''; } $max_oids = read_config_option('snmp_bulk_walk_size'); if (file_exists($path_snmpbulkwalk) && ($version > 1) && ($max_oids > 1)) { $temp_array = exec_into_array(cacti_escapeshellcmd($path_snmpbulkwalk) . ' -O QnU' . ($value_output_format == SNMP_STRING_OUTPUT_HEX ? 'x ':' ') . $snmp_auth . ' -v ' . $version . ' -t ' . $timeout . ' -r ' . $retries . ' -Cr' . $max_oids . ' ' . $oidCheck . ' ' . cacti_escapeshellarg($hostname) . ':' . $port . ' ' . cacti_escapeshellarg($oid)); } else { $temp_array = exec_into_array(cacti_escapeshellcmd(read_config_option('path_snmpwalk')) . ' -O QnU ' . ($value_output_format == SNMP_STRING_OUTPUT_HEX ? 'x ':' ') . $snmp_auth . ' -v ' . $version . ' -t ' . $timeout . ' -r ' . $retries . ' ' . $oidCheck . ' ' . ' ' . cacti_escapeshellarg($hostname) . ':' . $port . ' ' . cacti_escapeshellarg($oid)); } if (substr_count(implode(' ', $temp_array), 'Timeout:')) { cacti_log("WARNING: SNMP Error:'Timeout', Device:'$hostname', OID:'$oid'", false); } /* check for bad entries */ if (is_array($temp_array) && sizeof($temp_array)) { foreach($temp_array as $key => $value) { foreach($banned_snmp_strings as $item) { if (strstr($value, $item) != '') { unset($temp_array[$key]); continue 2; } } } $i = 0; foreach($temp_array as $index => $value) { if (preg_match('/(.*) =.*/', $value)) { $snmp_array[$i]['oid'] = trim(preg_replace('/(.*) =.*/', "\\1", $value)); $snmp_array[$i]['value'] = format_snmp_string($value, true, $value_output_format); $i++; } else { $snmp_array[$i-1]['value'] .= $value; } } } } return $snmp_array; } function format_snmp_string($string, $snmp_oid_included, $value_output_format = SNMP_STRING_OUTPUT_GUESS, $strip_alpha = false) { global $banned_snmp_strings; $string = preg_replace(REGEXP_SNMP_TRIM, '', trim($string)); if ($snmp_oid_included) { /* strip off all leading junk (the oid and stuff) */ $string_array = explode('=', $string); if (sizeof($string_array) == 1) { /* trim excess first */ $string = trim($string); } elseif ((substr($string, 0, 1) == '.') || (strpos($string, '::') !== false)) { /* drop the OID from the array */ array_shift($string_array); $string = trim(implode('=', $string_array)); } else { $string = trim(implode('=', $string_array)); } } else { $string = trim($string); } /* return the easiest value */ if ($string == '') { return $string; } /* now check for the second most obvious */ if (is_numeric($string)) { return $string; } /* remove ALL quotes, and other special delimiters */ $string = str_replace(array('"', "'", '>', '<', "\\", "\n", "\r"), '', $string); /* account for invalid MIB files */ if (strpos($string, 'Wrong Type') !== false) { $string = strrev($string); if ($position = strpos($string, ':')) { $string = trim(strrev(substr($string, 0, $position))); } else { $string = trim(strrev($string)); } } /* Remove invalid chars, if the string output is to be numeric */ if ($strip_alpha && $value_output_format == SNMP_STRING_OUTPUT_GUESS) { $string = trim($string, "\"' \n\r\v"); $len = strlen($string); $pos = $len - 1; while ($pos > 0) { $value = ord($string[$pos]); if (($value < 48 || $value > 57) && $value != 32) { $string[$pos] = ' '; } else { break; } $pos--; } $string = trim($string); $len = strlen($string); $pos = 0; while ($pos < $len) { $value = ord($string[$pos]); if (($value < 48 || $value > 57) && $value != 32) { $string[$pos] = ' '; } else { break; } $pos++; } $string = trim($string); if ($string == '') { return 'U'; } } /* Remove non-printable characters, allow UTF-8 */ if ($value_output_format == SNMP_STRING_OUTPUT_GUESS) { $string = preg_replace('/[^\PC\s]/u', '', $string); } /* Trim the string of trailing and leading spaces */ $string = trim($string); /* convert hex strings to numeric values */ if (is_hex_string($string) && $value_output_format == SNMP_STRING_OUTPUT_GUESS) { $output = ''; $parts = explode(' ', $string); /* convert the hex string into an ascii string */ foreach($parts as $part) { $output .= chr(hexdec($part)); } if (is_numeric($output)) { $string = number_format($output, 0, '', ''); } else { $string = $output; } } elseif (preg_match('/hex-/i', $string)) { $output = ''; /* strip off the 'Hex-STRING:' */ $string = preg_replace('/hex- ?/i', '', $string); /* normalize some forms */ $string = str_replace(array(' ', '-', '.'), ':', $string); $parts = explode(':', $string); if (!is_mac_address($string)) { /* convert the hex string into an ascii string */ foreach($parts as $part) { $output .= ($output != '' ? ':' : ''); if ($part == '00') { $output .= '00'; } else { $output .= str_pad($part, 2, '0', STR_PAD_LEFT); } } if (is_numeric($output)) { $string = number_format($output, 0, '', ''); } else { $string = $output; } } } elseif (preg_match('/(hex:\?)?([a-fA-F0-9]{1,2}(:|\s)){5}/i', $string)) { $octet = ''; /* strip off the 'hex:' */ $string = preg_replace('/hex: ?/i', '', $string); /* split the hex on the delimiter */ $octets = preg_split('/\s|:/', $string); /* loop through each octet and format it accordingly */ for ($i=0;($i nul'; } else { $command = read_config_option('path_rrdtool') . ' - > /dev/null 2>&1'; } return popen($command, 'w'); } function __rrd_proxy_init($logopt = 'WEBLOG') { $rsa = new \phpseclib\Crypt\RSA(); $rrdp_socket = @socket_create(AF_INET, SOCK_STREAM, SOL_TCP); if ($rrdp_socket === false) { cacti_log('CACTI2RRDP ERROR: Unable to create socket to connect to RRDtool Proxy Server', false, $logopt, POLLER_VERBOSITY_LOW); return false; } if ( read_config_option('rrdp_load_balancing') == 'on' ) { $rrdp_id = rand(1,2); $rrdp = @socket_connect($rrdp_socket, (($rrdp_id == 1 ) ? read_config_option('rrdp_server') : read_config_option('rrdp_server_backup')), (($rrdp_id == 1 ) ? read_config_option('rrdp_port') : read_config_option('rrdp_port_backup')) ); } else { $rrdp_id = 1; $rrdp = @socket_connect($rrdp_socket, read_config_option('rrdp_server'), read_config_option('rrdp_port')); } if ($rrdp === false) { /* log entry ... */ cacti_log('CACTI2RRDP ERROR: Unable to connect to RRDtool Proxy Server #' . $rrdp_id, false, $logopt, POLLER_VERBOSITY_LOW); /* ... and try to use backup path */ $rrdp_id = ($rrdp_id + 1) % 2; $rrdp = @socket_connect($rrdp_socket, (($rrdp_id == 1 ) ? read_config_option('rrdp_server') : read_config_option('rrdp_server_backup')), (($rrdp_id == 1 ) ? read_config_option('rrdp_port') : read_config_option('rrdp_port_backup')) ); if ($rrdp === false) { cacti_log('CACTI2RRDP ERROR: Unable to connect to RRDtool Proxy Server #' . $rrdp_id, false, $logopt, POLLER_VERBOSITY_LOW); return false; } } $rrdp_fingerprint = ($rrdp_id == 1 ) ? read_config_option('rrdp_fingerprint') : read_config_option('rrdp_fingerprint_backup'); socket_write($rrdp_socket, read_config_option('rsa_public_key') . "\r\n"); /* read public key being returned by the proxy server */ $rrdp_public_key = ''; while(1) { $recv = socket_read($rrdp_socket, 1000, PHP_BINARY_READ ); if ($recv === false) { /* timeout */ cacti_log('CACTI2RRDP ERROR: Public RSA Key Exchange - Time-out while reading', false, $logopt, POLLER_VERBOSITY_LOW); $rrdp_public_key = false; break; } elseif ($recv == '') { cacti_log('CACTI2RRDP ERROR: Session closed by Proxy.', false, $logopt, POLLER_VERBOSITY_LOW); /* session closed by Proxy */ break; } else { $rrdp_public_key .= $recv; if (substr($rrdp_public_key, -1) == "\n") { $rrdp_public_key = trim($rrdp_public_key); break; } } } $rsa->loadKey($rrdp_public_key); $fingerprint = $rsa->getPublicKeyFingerprint(); if ($rrdp_fingerprint != $fingerprint) { cacti_log('CACTI2RRDP ERROR: Mismatch RSA Fingerprint.', false, $logopt, POLLER_VERBOSITY_LOW); return false; } else { $rrdproxy = array($rrdp_socket, $rrdp_public_key); /* set the rrdtool default font */ if (read_config_option('path_rrdtool_default_font')) { rrdtool_execute("setenv RRD_DEFAULT_FONT '" . read_config_option('path_rrdtool_default_font') . "'", false, RRDTOOL_OUTPUT_NULL, $rrdproxy, $logopt = 'WEBLOG'); } return $rrdproxy; } } function rrd_close() { global $config; $args = func_get_args(); $force_storage_location_local = (isset($config['force_storage_location_local']) && $config['force_storage_location_local'] === true) ? true : false; $function = ($force_storage_location_local === false && read_config_option('storage_location')) ? '__rrd_proxy_close' : '__rrd_close'; return call_user_func_array($function, $args); } function __rrd_close($rrdtool_pipe) { /* close the rrdtool file descriptor */ if (is_resource($rrdtool_pipe)) { pclose($rrdtool_pipe); } rrdtool_reset_language(); } function __rrd_proxy_close($rrdp) { /* close the rrdtool proxy server connection */ if ($rrdp) { socket_write($rrdp[0], encrypt('quit', $rrdp[1]) . "\r\n"); @socket_shutdown($rrdp[0], 2); @socket_close($rrdp[0]); return; } } function encrypt($output, $rsa_key) { $rsa = new \phpseclib\Crypt\RSA(); $aes = new \phpseclib\Crypt\Rijndael(); $aes_key = \phpseclib\Crypt\Random::string(192); $aes->setKey($aes_key); $ciphertext = base64_encode($aes->encrypt($output)); $rsa->loadKey($rsa_key); $aes_key = base64_encode($rsa->encrypt($aes_key)); $aes_key_length = str_pad(dechex(strlen($aes_key)),3,'0',STR_PAD_LEFT); return $aes_key_length . $aes_key . $ciphertext; } function decrypt($input){ $rsa = new \phpseclib\Crypt\RSA(); $aes = new \phpseclib\Crypt\Rijndael(); $rsa_private_key = read_config_option('rsa_private_key'); $aes_key_length = hexdec(substr($input,0,3)); $aes_key = base64_decode(substr($input,3,$aes_key_length)); $ciphertext = base64_decode(substr($input,3+$aes_key_length)); $rsa->loadKey( $rsa_private_key ); $aes_key = $rsa->decrypt($aes_key); $aes->setKey($aes_key); $plaintext = $aes->decrypt($ciphertext); return $plaintext; } function rrdtool_execute() { global $config; $args = func_get_args(); $force_storage_location_local = (isset($config['force_storage_location_local']) && $config['force_storage_location_local'] === true) ? true : false; $function = ($force_storage_location_local === false && read_config_option('storage_location')) ? '__rrd_proxy_execute' : '__rrd_execute'; return call_user_func_array($function, $args); } function __rrd_execute($command_line, $log_to_stdout, $output_flag, $rrdtool_pipe = '', $logopt = 'WEBLOG') { global $config; static $last_command; if (!is_numeric($output_flag)) { $output_flag = RRDTOOL_OUTPUT_STDOUT; } /* WIN32: before sending this command off to rrdtool, get rid of all of the '\' characters. Unix does not care; win32 does. Also make sure to replace all of the fancy \'s at the end of the line, but make sure not to get rid of the "\n"'s that are supposed to be in there (text format) */ $command_line = str_replace("\\\n", ' ', $command_line); /* output information to the log file if appropriate */ cacti_log('CACTI2RRD: ' . read_config_option('path_rrdtool') . " $command_line", $log_to_stdout, $logopt, POLLER_VERBOSITY_DEBUG); /* if we want to see the error output from rrdtool; make sure to specify this */ if ($config['cacti_server_os'] != 'win32') { if ($output_flag == RRDTOOL_OUTPUT_STDERR && !is_resource($rrdtool_pipe)) { $command_line .= ' 2>&1'; } } /* use popen to eliminate the zombie issue */ if ($config['cacti_server_os'] == 'unix') { $pipe_mode = 'r'; } else { $pipe_mode = 'rb'; } /* an empty $rrdtool_pipe array means no fp is available */ if (!is_resource($rrdtool_pipe)) { if (substr($command_line, 0, 5) == 'fetch') { rrdtool_set_language('en'); } else { rrdtool_set_language(); } session_write_close(); if (is_file(read_config_option('path_rrdtool')) && is_executable(read_config_option('path_rrdtool'))) { $fp = popen(read_config_option('path_rrdtool') . escape_command(" $command_line"), $pipe_mode); if (!is_resource($fp)) { unset($fp); } } else { cacti_log("ERROR: RRDtool executable not found, not executable or error in path '" . read_config_option('path_rrdtool') . "'. No output written to RRDfile."); } rrdtool_reset_language(); } else { $i = 0; while (1) { if (fwrite($rrdtool_pipe, escape_command(" $command_line") . "\r\n") === false) { cacti_log("ERROR: Detected RRDtool Crash on '$command_line'. Last command was '$last_command'"); /* close the invalid pipe */ rrd_close($rrdtool_pipe); /* open a new rrdtool process */ $rrdtool_pipe = rrd_init(); if ($i > 4) { cacti_log("FATAL: RRDtool Restart Attempts Exceeded. Giving up on '$command_line'."); break; } else { $i++; } continue; } else { fflush($rrdtool_pipe); break; } } } /* store the last command to provide rrdtool segfault diagnostics */ $last_command = $command_line; if (!isset($fp)) { return; } switch ($output_flag) { case RRDTOOL_OUTPUT_STDOUT: case RRDTOOL_OUTPUT_GRAPH_DATA: $output = ''; while (!feof($fp)) { $output .= fgets($fp, 4096); } pclose($fp); return $output; break; case RRDTOOL_OUTPUT_STDERR: $output = fgets($fp, 1000000); pclose($fp); if (substr($output, 1, 3) == 'PNG') { return 'OK'; } if (substr($output, 0, 5) == 'GIF87') { return 'OK'; } if (substr($output, 0, 5) == '= 8192) { $command_line = gzencode($command_line, 1); } socket_write($rrdp_socket, encrypt($command_line, $rrdp_public_key) . "\r\n"); $input = ''; $output = ''; while(1) { $recv = socket_read($rrdp_socket, 100000, PHP_BINARY_READ ); if ($recv === false) { cacti_log('CACTI2RRDP ERROR: Data Transfer - Time-out while reading.', $log_to_stdout, $logopt, POLLER_VERBOSITY_LOW); break; } elseif ($recv == '') { /* session closed by Proxy */ if ($output) { cacti_log('CACTI2RRDP ERROR: Session closed by Proxy.', $log_to_stdout, $logopt, POLLER_VERBOSITY_LOW); } break; } else { $input .= $recv; if (strpos($input, "\n") !== false) { $chunks = explode("\n", $input); $input = array_pop($chunks); foreach($chunks as $chunk) { $output .= decrypt(trim($chunk)); if (strpos($output, "\x1f\x8b") === 0) { $output = gzdecode($output); } if ( substr_count($output, "OK u") || substr_count($output, "ERROR:") ) { cacti_log("RRDP: " . $output, $log_to_stdout, $logopt, POLLER_VERBOSITY_DEBUG); break 2; } } } } } if ($rrdp_auto_close) { __rrd_proxy_close($rrdp); } switch ($output_flag) { case RRDTOOL_OUTPUT_NULL: return; case RRDTOOL_OUTPUT_STDOUT: case RRDTOOL_OUTPUT_GRAPH_DATA: return $output; break; case RRDTOOL_OUTPUT_STDERR: if (substr($output, 1, 3) == "PNG") { return "OK"; } if (substr($output, 0, 5) == "GIF87") { return "OK"; } print $output; break; case RRDTOOL_OUTPUT_BOOLEAN : return (substr_count($output, "OK u")) ? true : false; break; } } function rrdtool_function_create($local_data_id, $show_source, $rrdtool_pipe = '') { global $config, $data_source_types, $consolidation_functions; include ($config['include_path'] . '/global_arrays.php'); $data_source_path = get_data_source_path($local_data_id, true); /* ok, if that passes lets check to make sure an rra does not already exist, the last thing we want to do is overright data! */ if ($show_source != true) { if (read_config_option('storage_location')) { if (rrdtool_execute("file_exists $data_source_path", true, RRDTOOL_OUTPUT_BOOLEAN, $rrdtool_pipe, 'POLLER')) { return -1; } } elseif (file_exists($data_source_path)) { return -1; } } /* the first thing we must do is make sure there is at least one rra associated with this data source... * UPDATE: As of version 0.6.6, we are splitting this up into two SQL strings because of the multiple DS per RRD support. This is not a big deal however since this function gets called once per data source */ $rras = db_fetch_assoc_prepared('SELECT dtd.rrd_step, dsp.x_files_factor, dspr.steps, dspr.rows, dspc.consolidation_function_id, (dspr.rows*dspr.steps) AS rra_order FROM data_template_data AS dtd LEFT JOIN data_source_profiles AS dsp ON dtd.data_source_profile_id=dsp.id LEFT JOIN data_source_profiles_rra AS dspr ON dsp.id=dspr.data_source_profile_id LEFT JOIN data_source_profiles_cf AS dspc ON dsp.id=dspc.data_source_profile_id WHERE dtd.local_data_id = ? AND (dspr.steps IS NOT NULL OR dspr.rows IS NOT NULL) ORDER BY dspc.consolidation_function_id, rra_order', array($local_data_id) ); /* if we find that this DS has no RRA associated; get out */ if (sizeof($rras) <= 0) { cacti_log("ERROR: There are no RRA's assigned to local_data_id: $local_data_id."); return false; } /* create the "--step" line */ $create_ds = RRD_NL . '--step '. $rras[0]['rrd_step'] . ' ' . RRD_NL; /* query the data sources to be used in this .rrd file */ $data_sources = db_fetch_assoc_prepared('SELECT id, rrd_heartbeat, rrd_minimum, rrd_maximum, data_source_type_id FROM data_template_rrd WHERE local_data_id = ? ORDER BY local_data_template_rrd_id', array($local_data_id) ); /* ONLY make a new DS entry if: - There is multiple data sources and this item is not the main one. - There is only one data source (then use it) */ if (sizeof($data_sources)) { $data_local = db_fetch_row_prepared('SELECT host_id, snmp_query_id, snmp_index FROM data_local WHERE id = ?', array($local_data_id) ); $highSpeed = db_fetch_cell_prepared('SELECT field_value FROM host_snmp_cache WHERE host_id = ? AND snmp_query_id = ? AND snmp_index = ? AND field_name="ifHighSpeed"', array($data_local['host_id'], $data_local['snmp_query_id'], $data_local['snmp_index']) ); $ssqdIfSpeed = substitute_snmp_query_data('|query_ifSpeed|', $data_local['host_id'], $data_local['snmp_query_id'], $data_local['snmp_index']); foreach ($data_sources as $data_source) { /* use the cacti ds name by default or the user defined one, if entered */ $data_source_name = get_data_source_item_name($data_source['id']); if (empty($data_source['rrd_maximum'])) { /* in case no maximum is given, use "Undef" value */ $data_source['rrd_maximum'] = 'U'; } elseif (strpos($data_source['rrd_maximum'], '|query_') !== false) { /* in case a query variable is given, evaluate it */ if ($data_source['rrd_maximum'] == '|query_ifSpeed|' || $data_source['rrd_maximum'] == '|query_ifHighSpeed|') { if (!empty($highSpeed)) { $data_source['rrd_maximum'] = $highSpeed * 1000000; } else { $data_source['rrd_maximum'] = $ssqdIfSpeed; if (empty($data_source['rrd_maximum']) || $data_source['rrd_maximum'] == '|query_ifSpeed|') { $data_source['rrd_maximum'] = '10000000000000'; } } } else { $data_source['rrd_maximum'] = substitute_snmp_query_data($data_source['rrd_maximum'], $data_local['host_id'], $data_local['snmp_query_id'], $data_local['snmp_index']); } } elseif ($data_source['rrd_maximum'] != 'U' && (int)$data_source['rrd_maximum'] <= (int)$data_source['rrd_minimum']) { /* max > min required, but take care of an "Undef" value */ $data_source['rrd_maximum'] = (int)$data_source['rrd_minimum']+1; } /* min==max==0 won't work with rrdtool */ if ($data_source['rrd_minimum'] == 0 && $data_source['rrd_maximum'] == 0) { $data_source['rrd_maximum'] = 'U'; } $create_ds .= "DS:$data_source_name:" . $data_source_types[$data_source['data_source_type_id']] . ':' . $data_source['rrd_heartbeat'] . ':' . $data_source['rrd_minimum'] . ':' . $data_source['rrd_maximum'] . RRD_NL; } } $create_rra = ''; /* loop through each available RRA for this DS */ foreach ($rras as $rra) { $create_rra .= 'RRA:' . $consolidation_functions[$rra['consolidation_function_id']] . ':' . $rra['x_files_factor'] . ':' . $rra['steps'] . ':' . $rra['rows'] . RRD_NL; } /* check for structured path configuration, if in place verify directory exists and if not create it. */ if (read_config_option('extended_paths') == 'on') { if (read_config_option('storage_location')) { if (false === rrdtool_execute("is_dir " . dirname($data_source_path), true, RRDTOOL_OUTPUT_BOOLEAN, $rrdtool_pipe, 'POLLER') ) { if (false === rrdtool_execute("mkdir " . dirname($data_source_path), true, RRDTOOL_OUTPUT_BOOLEAN, $rrdtool_pipe, 'POLLER') ) { cacti_log("ERROR: Unable to create directory '" . dirname($data_source_path) . "'", false); } } } elseif (!is_dir(dirname($data_source_path))) { if ($config['is_web'] == false) { if (mkdir(dirname($data_source_path), 0775)) { if ($config['cacti_server_os'] != 'win32') { $owner_id = fileowner($config['rra_path']); $group_id = filegroup($config['rra_path']); if ((chown(dirname($data_source_path), $owner_id)) && (chgrp(dirname($data_source_path), $group_id))) { /* permissions set ok */ } else { cacti_log("ERROR: Unable to set directory permissions for '" . dirname($data_source_path) . "'", false); } } } else { cacti_log("ERROR: Unable to create directory '" . dirname($data_source_path) . "'", false); } } else { cacti_log("WARNING: Poller has not created structured path '" . dirname($data_source_path) . "' yet.", false); } } } if ($show_source == true) { return read_config_option('path_rrdtool') . ' create' . RRD_NL . "$data_source_path$create_ds$create_rra"; } else { rrdtool_execute("create $data_source_path $create_ds$create_rra", true, RRDTOOL_OUTPUT_STDOUT, $rrdtool_pipe, 'POLLER'); } } function rrdtool_function_update($update_cache_array, $rrdtool_pipe = '') { /* lets count the number of rrd files processed */ $rrds_processed = 0; foreach ($update_cache_array as $rrd_path => $rrd_fields) { $create_rrd_file = false; if (is_array($rrd_fields['times']) && sizeof($rrd_fields['times'])) { /* create the rrd if one does not already exist */ if (read_config_option('storage_location')) { $file_exists = rrdtool_execute("file_exists $rrd_path" , true, RRDTOOL_OUTPUT_BOOLEAN, $rrdtool_pipe, 'POLLER'); } else { $file_exists = file_exists($rrd_path); } if ($file_exists === false) { rrdtool_function_create($rrd_fields['local_data_id'], false, $rrdtool_pipe); $create_rrd_file = true; } ksort($rrd_fields['times']); foreach ($rrd_fields['times'] as $update_time => $field_array) { if (empty($update_time)) { /* default the rrdupdate time to now */ $rrd_update_values = 'N:'; } elseif ($create_rrd_file == true) { /* for some reason rrdtool will not let you update using times less than the rrd create time */ $rrd_update_values = 'N:'; } else { $rrd_update_values = $update_time . ':'; } $rrd_update_template = ''; foreach ($field_array as $field_name => $value) { if ($rrd_update_template != '') { $rrd_update_template .= ':'; $rrd_update_values .= ':'; } $rrd_update_template .= $field_name; /* if we have "invalid data", give rrdtool an Unknown (U) */ if (!isset($value) || !is_numeric($value)) { $value = 'U'; } $rrd_update_values .= $value; } rrdtool_execute("update $rrd_path --template $rrd_update_template $rrd_update_values", true, RRDTOOL_OUTPUT_STDOUT, $rrdtool_pipe, 'POLLER'); $rrds_processed++; } } } return $rrds_processed; } function rrdtool_function_tune($rrd_tune_array) { global $config, $data_source_types; include($config['include_path'] . '/global_arrays.php'); $data_source_name = get_data_source_item_name($rrd_tune_array['data_source_id']); $data_source_type = $data_source_types[$rrd_tune_array['data-source-type']]; $data_source_path = get_data_source_path($rrd_tune_array['data_source_id'], true); $rrd_tune = ''; if ($rrd_tune_array['heartbeat'] != '') { $rrd_tune .= " --heartbeat $data_source_name:" . $rrd_tune_array['heartbeat']; } if ($rrd_tune_array['minimum'] != '') { $rrd_tune .= " --minimum $data_source_name:" . $rrd_tune_array['minimum']; } if ($rrd_tune_array['maximum'] != '') { $rrd_tune .= " --maximum $data_source_name:" . $rrd_tune_array['maximum']; } if ($rrd_tune_array['data-source-type'] != '') { $rrd_tune .= " --data-source-type $data_source_name:" . $data_source_type; } if ($rrd_tune_array['data-source-rename'] != '') { $rrd_tune .= " --data-source-rename $data_source_name:" . $rrd_tune_array['data-source-rename']; } if ($rrd_tune != '') { if (file_exists($data_source_path) == true) { if (is_file(read_config_option('path_rrdtool')) && is_executable(read_config_option('path_rrdtool'))) { $fp = popen(read_config_option('path_rrdtool') . " tune $data_source_path $rrd_tune", 'r'); pclose($fp); cacti_log('CACTI2RRD: ' . read_config_option('path_rrdtool') . " tune $data_source_path $rrd_tune", false, 'WEBLOG', POLLER_VERBOSITY_DEBUG); } else { cacti_log("ERROR: RRDtool executable not found, not executable or error in path '" . read_config_option('path_rrdtool') . "'. No output written to RRDfile."); } } } } /* rrdtool_function_fetch - given a data source, return all of its data in an array @arg $local_data_id - the data source to fetch data for @arg $start_time - the start time to use for the data calculation. this value can either be absolute (unix timestamp) or relative (to now) @arg $end_time - the end time to use for the data calculation. this value can either be absolute (unix timestamp) or relative (to now) @arg $resolution - the accuracy of the data measured in seconds @arg $show_unknown - Show unknown 'NAN' values in the output as 'U' @arg $rrdtool_file - Don't force Cacti to calculate the file @arg $cf - Specify the consolidation function to use @arg $rrdtool_pipe - a pipe to an rrdtool command @returns - (array) an array containing all data in this data source broken down by each data source item. the maximum of all data source items is included in an item called 'ninety_fifth_percentile_maximum' */ function rrdtool_function_fetch($local_data_id, $start_time, $end_time, $resolution = 0, $show_unknown = false, $rrdtool_file = null, $cf = 'AVERAGE', $rrdtool_pipe = '') { global $config; include_once($config['library_path'] . '/boost.php'); /* validate local data id */ if (empty($local_data_id) && is_null($rrdtool_file)) { return array(); } /* initialize fetch array */ $fetch_array = array(); /* check if we have been passed a file instead of lodal data source to look up */ if (is_null($rrdtool_file)) { $data_source_path = get_data_source_path($local_data_id, true); } else { $data_source_path = $rrdtool_file; } /* update the rrdfile if performing a fetch */ boost_fetch_cache_check($local_data_id); /* build and run the rrdtool fetch command with all of our data */ $cmd_line = "fetch $data_source_path $cf -s $start_time -e $end_time"; if ($resolution > 0) { $cmd_line .= " -r $resolution"; } $output = rrdtool_execute($cmd_line, false, RRDTOOL_OUTPUT_STDOUT, $rrdtool_pipe); $output = explode("\n", $output); $first = true; $count = 0; if (sizeof($output)) { $timestamp = 0; foreach($output as $line) { $line = trim($line); $max_array = array(); if ($first) { /* get the data source names */ $fetch_array['data_source_names'] = preg_split('/\s+/', $line); $first = false; /* set the nth percentile source, and index */ $fetch_array['data_source_names'][] = 'nth_percentile_maximum'; $nthindex = sizeof($fetch_array['data_source_names']) - 1; } elseif ($line != '') { /* process the data sources into an array */ $parts = explode(':', $line); $timestamp = $parts[0]; $data = explode(' ', trim($parts[1])); if (!isset($fetch_array['timestamp']['start_time'])) { $fetch_array['timestamp']['start_time'] = $timestamp; } /* process out bad data */ foreach($data as $index => $number) { if (strtolower($number) == 'nan' || strtolower($number) == '-nan') { if ($show_unknown) { $fetch_array['values'][$index][$count] = 'U'; } } else { $fetch_array['values'][$index][$count] = $number + 0; $max_array[] = $number + 0; } } if (sizeof($max_array)) { $fetch_array['values'][$nthindex][$count] = max($max_array); } else { $fetch_array['values'][$nthindex][$count] = 0; } $count++; } } $fetch_array['timestamp']['end_time'] = $timestamp; } return $fetch_array; } function rrd_function_process_graph_options($graph_start, $graph_end, &$graph, &$graph_data_array) { global $config, $image_types; include($config['include_path'] . '/global_arrays.php'); /* define some variables */ $scale = ''; $rigid = ''; $unit_value = ''; $version = read_config_option('rrdtool_version'); $unit_exponent_value = ''; if ($graph['auto_scale'] == 'on') { switch ($graph['auto_scale_opts']) { case '1': /* autoscale ignores lower, upper limit */ $scale = '--alt-autoscale' . RRD_NL; break; case '2': /* autoscale-max, accepts a given lower limit */ $scale = '--alt-autoscale-max' . RRD_NL; if (is_numeric($graph['lower_limit'])) { $scale .= '--lower-limit=' . cacti_escapeshellarg($graph['lower_limit']) . RRD_NL; } break; case '3': /* autoscale-min, accepts a given upper limit */ $scale = '--alt-autoscale-min' . RRD_NL; if ( is_numeric($graph['upper_limit'])) { $scale .= '--upper-limit=' . cacti_escapeshellarg($graph['upper_limit']) . RRD_NL; } break; case '4': /* auto_scale with limits */ $scale = '--alt-autoscale' . RRD_NL; if ( is_numeric($graph['upper_limit'])) { $scale .= '--upper-limit=' . cacti_escapeshellarg($graph['upper_limit']) . RRD_NL; } if ( is_numeric($graph['lower_limit'])) { $scale .= '--lower-limit=' . cacti_escapeshellarg($graph['lower_limit']) . RRD_NL; } break; } } else { if ($graph['upper_limit'] != '') { $scale = '--upper-limit=' . cacti_escapeshellarg($graph['upper_limit']) . RRD_NL; } if ($graph['lower_limit'] != '') { $scale .= '--lower-limit=' . cacti_escapeshellarg($graph['lower_limit']) . RRD_NL; } } if ($graph['auto_scale_log'] == 'on') { $scale .= '--logarithmic' . RRD_NL; } /* --units=si only defined for logarithmic y-axis scaling, even if it doesn't hurt on linear graphs */ if ($graph['scale_log_units'] == 'on' && $graph['auto_scale_log'] == 'on') { $scale .= '--units=si' . RRD_NL; } if ($graph['auto_scale_rigid'] == 'on') { $rigid = '--rigid' . RRD_NL; } if ($graph['unit_value'] != '') { $unit_value = '--y-grid=' . cacti_escapeshellarg($graph['unit_value']) . RRD_NL; } if (preg_match('/^[0-9]+$/', $graph['unit_exponent_value'])) { $unit_exponent_value = '--units-exponent=' . cacti_escapeshellarg($graph['unit_exponent_value']) . RRD_NL; } /* * optionally you can specify and array that overrides some of the db's values, lets set * that all up here */ /* override: graph height (in pixels) */ if (isset($graph_data_array['graph_height'])) { $graph_height = $graph_data_array['graph_height']; } else { $graph_height = $graph['height']; } /* override: graph width (in pixels) */ if (isset($graph_data_array['graph_width'])) { $graph_width = $graph_data_array['graph_width']; } else { $graph_width = $graph['width']; } /* override: skip drawing the legend? */ if (isset($graph_data_array['graph_nolegend'])) { $graph_legend = '--no-legend' . RRD_NL; } else { $graph_legend = ''; } /* export options */ if (isset($graph_data_array['export'])) { $graph_opts = $graph_data_array['export_filename'] . RRD_NL; } else { if (empty($graph_data_array['output_filename'])) { $graph_opts = '-' . RRD_NL; } else { $graph_opts = $graph_data_array['output_filename'] . RRD_NL; } } /* if realtime, the image format id is always png */ if (isset($graph_data_array['export_realtime']) || (isset($graph_data_array['image_format']) && $graph_data_array['image_format'] == 'png')) { $graph['image_format_id'] = 1; } /* basic graph options */ $graph_opts .= '--imgformat=' . $image_types[$graph['image_format_id']] . RRD_NL . '--start=' . cacti_escapeshellarg($graph_start) . RRD_NL . '--end=' . cacti_escapeshellarg($graph_end) . RRD_NL; $graph_opts .= '--pango-markup ' . RRD_NL; foreach($graph as $key => $value) { switch($key) { case "title_cache": if (!empty($value)) { $graph_opts .= "--title=" . cacti_escapeshellarg(html_escape($value)) . RRD_NL; } break; case "alt_y_grid": if ($value == CHECKED) { $graph_opts .= "--alt-y-grid" . RRD_NL; } break; case "unit_value": if (!empty($value)) { $graph_opts .= "--y-grid=" . cacti_escapeshellarg($value) . RRD_NL; } break; case "unit_exponent_value": if (preg_match("/^[0-9]+$/", $value)) { $graph_opts .= "--units-exponent=" . $value . RRD_NL; } break; case "height": if (isset($graph_data_array["graph_height"]) && preg_match("/^[0-9]+$/", $graph_data_array["graph_height"])) { $graph_opts .= "--height=" . $graph_data_array["graph_height"] . RRD_NL; } else { $graph_opts .= "--height=" . $value . RRD_NL; } break; case "width": if (isset($graph_data_array["graph_width"]) && preg_match("/^[0-9]+$/", $graph_data_array["graph_width"])) { $graph_opts .= "--width=" . $graph_data_array["graph_width"] . RRD_NL; } else { $graph_opts .= "--width=" . $value . RRD_NL; } break; case "graph_nolegend": if (isset($graph_data_array["graph_nolegend"])) { $graph_opts .= "--no-legend" . RRD_NL; } else { $graph_opts .= ""; } break; case "base_value": if ($value == 1000 || $value == 1024) { $graph_opts .= "--base=" . $value . RRD_NL; } break; case "vertical_label": if (!empty($value)) { $graph_opts .= "--vertical-label=" . cacti_escapeshellarg(html_escape($value)) . RRD_NL; } break; case "slope_mode": if ($value == CHECKED) { $graph_opts .= "--slope-mode" . RRD_NL; } break; case "right_axis": if (!empty($value)) { $graph_opts .= "--right-axis " . cacti_escapeshellarg($value) . RRD_NL; } break; case "right_axis_label": if (!empty($value)) { $graph_opts .= "--right-axis-label " . cacti_escapeshellarg($value) . RRD_NL; } break; case "right_axis_format": if (!empty($value)) { $format = db_fetch_cell_prepared('SELECT gprint_text from graph_templates_gprint WHERE id = ?', array($value)); $graph_opts .= "--right-axis-format " . cacti_escapeshellarg($format) . RRD_NL; } break; case "no_gridfit": if ($value == CHECKED) { $graph_opts .= "--no-gridfit" . RRD_NL; } break; case "unit_length": if (!empty($value)) { $graph_opts .= "--units-length " . cacti_escapeshellarg($value) . RRD_NL; } break; case "tab_width": if (!empty($value)) { $graph_opts .= "--tabwidth " . cacti_escapeshellarg($value) . RRD_NL; } break; case "dynamic_labels": if ($value == CHECKED) { $graph_opts .= "--dynamic-labels" . RRD_NL; } break; case "force_rules_legend": if ($value == CHECKED) { $graph_opts .= "--force-rules-legend" . RRD_NL; } break; case "legend_position": if ($version != RRD_VERSION_1_3) { if (!empty($value)) { $graph_opts .= "--legend-position " . cacti_escapeshellarg($value) . RRD_NL; } } break; case "legend_direction": if ($version != RRD_VERSION_1_3) { if (!empty($value)) { $graph_opts .= "--legend-direction " . cacti_escapeshellarg($value) . RRD_NL; } } break; case 'left_axis_formatter': if ($version != RRD_VERSION_1_3) { if (!empty($value)) { $graph_opts .= "--left-axis-formatter " . cacti_escapeshellarg($value) . RRD_NL; } } break; case 'right_axis_formatter': if ($version != RRD_VERSION_1_3) { if (!empty($value)) { $graph_opts .= "--right-axis-formatter " . cacti_escapeshellarg($value) . RRD_NL; } } break; } } $graph_opts .= "$rigid" . trim("$scale$unit_value$unit_exponent_value$graph_legend", "\n\r " . RRD_NL) . RRD_NL; /* add a date to the graph legend */ $graph_opts .= rrdtool_function_format_graph_date($graph_data_array); /* process theme and font styling options */ $graph_opts .= rrdtool_function_theme_font_options($graph_data_array); /* Replace "|query_*|" in the graph command to replace e.g. vertical_label. */ $graph_opts = rrd_substitute_host_query_data($graph_opts, $graph, array()); /* provide smooth lines */ if ($graph['slope_mode'] == 'on') { $graph_opts .= '--slope-mode' . RRD_NL; } /* if the user desires a wartermark set it */ if (read_config_option('graph_watermark') != '') { $graph_opts .= '--watermark ' . cacti_escapeshellarg(read_config_option('graph_watermark')) . RRD_NL; } return $graph_opts; } function rrdtool_function_graph($local_graph_id, $rra_id, $graph_data_array, $rrdtool_pipe = '', &$xport_meta = array(), $user = 0) { global $config, $consolidation_functions, $graph_item_types; include_once($config['library_path'] . '/cdef.php'); include_once($config['library_path'] . '/vdef.php'); include_once($config['library_path'] . '/graph_variables.php'); include_once($config['library_path'] . '/boost.php'); include_once($config['library_path'] . '/xml.php'); include($config['include_path'] . '/global_arrays.php'); /* prevent command injection * This function prepares an rrdtool graph statement to be executed by the web server. * We have to take care, that the attacker does not insert shell code. * As some rrdtool parameters accept "Cacti variables", we have to perform the * variable substitution prior to vulnerability checks. * We will enclose all parameters in quotes and substitute quotation marks within * those parameters. */ /* before we do anything; make sure the user has permission to view this graph, if not then get out */ if ($user > 0) { if (!is_graph_allowed($local_graph_id, $user)) { return 'GRAPH ACCESS DENIED'; } } /* check the purge the boost poller output cache, and check for a live image file if caching is enabled */ $graph_data = boost_graph_cache_check($local_graph_id, $rra_id, $rrdtool_pipe, $graph_data_array, false); if ($graph_data !== false) { return $graph_data; } /* find the step and how often this graph is updated with new data */ $ds_step = db_fetch_cell_prepared('SELECT data_template_data.rrd_step FROM (data_template_data,data_template_rrd,graph_templates_item) WHERE graph_templates_item.task_item_id=data_template_rrd.id AND data_template_rrd.local_data_id=data_template_data.local_data_id AND graph_templates_item.local_graph_id = ? LIMIT 1', array($local_graph_id) ); $ds_step = empty($ds_step) ? 300 : $ds_step; /* if no rra was specified, we need to figure out which one RRDtool will choose using * "best-fit" resolution fit algorithm */ if (empty($rra_id)) { if (empty($graph_data_array['graph_start']) || empty($graph_data_array['graph_end'])) { $rra['rows'] = 600; $rra['steps'] = 1; $rra['timespan'] = 86400; } else { /* get a list of RRAs related to this graph */ $rras = get_associated_rras($local_graph_id); if (sizeof($rras)) { foreach ($rras as $unchosen_rra) { /* the timespan specified in the RRA "timespan" field may not be accurate */ $real_timespan = ($ds_step * $unchosen_rra['steps'] * $unchosen_rra['rows']); /* make sure the current start/end times fit within each RRA's timespan */ if ($graph_data_array['graph_end'] - $graph_data_array['graph_start'] <= $real_timespan && time() - $graph_data_array['graph_start'] <= $real_timespan) { /* is this RRA better than the already chosen one? */ if (isset($rra) && $unchosen_rra['steps'] < $rra['steps']) { $rra = $unchosen_rra; } elseif (!isset($rra)) { $rra = $unchosen_rra; } } } } if (!isset($rra)) { $rra['rows'] = 600; $rra['steps'] = 1; $rra['timespan'] = 86400; } } } else { $rra = db_fetch_row_prepared('SELECT dspr.rows, dsp.step, dspr.steps FROM data_source_profiles_rra AS dspr INNER JOIN data_source_profiles AS dsp ON dspr.data_source_profile_id=dsp.id WHERE dspr.id = ?', array($rra_id) ); if (isset($rra['steps'])) { $rra['timespan'] = $rra['rows'] * $rra['step'] * $rra['steps']; } else { $rra['timespan'] = 86400; $rra['steps'] = 1; $rra['rows'] = 600; } } if (!isset($graph_data_array['export_realtime']) && isset($rra['steps'])) { $seconds_between_graph_updates = ($ds_step * $rra['steps']); } else { $seconds_between_graph_updates = 5; } $graph = db_fetch_row_prepared('SELECT gl.id AS local_graph_id, gl.host_id, gl.snmp_query_id, gl.snmp_index, gtg.title_cache, gtg.vertical_label, gtg.slope_mode, gtg.auto_scale, gtg.auto_scale_opts, gtg.auto_scale_log, gtg.scale_log_units, gtg.auto_scale_rigid, gtg.auto_padding, gtg.base_value, gtg.upper_limit, gtg.lower_limit, gtg.height, gtg.width, gtg.image_format_id, gtg.unit_value, gtg.unit_exponent_value, gtg.alt_y_grid, gtg.right_axis, gtg.right_axis_label, gtg.right_axis_format, gtg.no_gridfit, gtg.unit_length, gtg.tab_width, gtg.dynamic_labels, gtg.force_rules_legend, gtg.legend_position, gtg.legend_direction, gtg.right_axis_formatter, gtg.left_axis_formatter FROM graph_templates_graph AS gtg INNER JOIN graph_local AS gl ON gl.id=gtg.local_graph_id WHERE gtg.local_graph_id = ?', array($local_graph_id) ); /* handle the case where the graph has been deleted */ if (!sizeof($graph)) { return false; } /* lets make that sql query... */ $graph_items = db_fetch_assoc_prepared('SELECT gti.id AS graph_templates_item_id, gti.cdef_id, gti.vdef_id, gti.text_format, gti.value, gti.hard_return, gti.consolidation_function_id, gti.graph_type_id, gtgp.gprint_text, colors.hex, gti.alpha, gti.line_width, gti.dashes, gti.shift, gti.dash_offset, gti.textalign, dtr.id AS data_template_rrd_id, dtr.local_data_id, dtr.rrd_minimum, dtr.rrd_maximum, dtr.data_source_name, dtr.local_data_template_rrd_id FROM graph_templates_item AS gti LEFT JOIN data_template_rrd AS dtr ON gti.task_item_id=dtr.id LEFT JOIN colors ON gti.color_id=colors.id LEFT JOIN graph_templates_gprint AS gtgp ON gti.gprint_id=gtgp.id WHERE gti.local_graph_id = ? ORDER BY gti.sequence', array($local_graph_id) ); /* variables for use below */ $graph_defs = ''; $txt_graph_items = ''; $padding_estimate = 0; $last_graph_type = ''; /* override: graph start time */ if (!isset($graph_data_array['graph_start']) || $graph_data_array['graph_start'] == '0') { $graph_start = -($rra['timespan']); } else { $graph_start = $graph_data_array['graph_start']; } /* override: graph end time */ if (!isset($graph_data_array['graph_end']) || $graph_data_array['graph_end'] == '0') { $graph_end = -($seconds_between_graph_updates); } else { $graph_end = $graph_data_array['graph_end']; } /* +++++++++++++++++++++++ GRAPH OPTIONS +++++++++++++++++++++++ */ if (!isset($graph_data_array['export_csv'])) { $graph_opts = rrd_function_process_graph_options($graph_start, $graph_end, $graph, $graph_data_array); } else { /* basic export options */ $graph_opts = '--start=' . cacti_escapeshellarg($graph_start) . RRD_NL . '--end=' . cacti_escapeshellarg($graph_end) . RRD_NL . '--maxrows=10000' . RRD_NL; } /* +++++++++++++++++++++++ LEGEND: MAGIC +++++++++++++++++++++++ */ $realtimeCachePath = read_config_option('realtime_cache_path'); $dateTime = date('D d M H:i:s T Y', strtotime(read_config_option('date'))); /* the following fields will be searched for graph variables */ $variable_fields = array( 'text_format' => array( 'process_no_legend' => false ), 'value' => array( 'process_no_legend' => true ), 'cdef_cache' => array( 'process_no_legend' => true ), 'vdef_cache' => array( 'process_no_legend' => true ) ); $i = 0; $j = 0; $last_graph_cf = array(); if (sizeof($graph_items)) { /* we need to add a new column 'cf_reference', so unless PHP 5 is used, this foreach syntax is required */ foreach ($graph_items as $key => $graph_item) { /* mimic the old behavior: LINE[123], AREA and STACK items use the CF specified in the graph item */ switch ($graph_item['graph_type_id']) { case GRAPH_ITEM_TYPE_LINE1: case GRAPH_ITEM_TYPE_LINE2: case GRAPH_ITEM_TYPE_LINE3: case GRAPH_ITEM_TYPE_LINESTACK: case GRAPH_ITEM_TYPE_TIC: case GRAPH_ITEM_TYPE_AREA: case GRAPH_ITEM_TYPE_STACK: $graph_cf = $graph_item['consolidation_function_id']; /* remember the last CF for this data source for use with GPRINT * if e.g. an AREA/AVERAGE and a LINE/MAX is used * we will have AVERAGE first and then MAX, depending on GPRINT sequence */ $last_graph_cf['data_source_name']['local_data_template_rrd_id'] = $graph_cf; /* remember this for second foreach loop */ $graph_items[$key]['cf_reference'] = $graph_cf; break; case GRAPH_ITEM_TYPE_GPRINT: /* ATTENTION! * the 'CF' given on graph_item edit screen for GPRINT is indeed NOT a real 'CF', * but an aggregation function * see 'man rrdgraph_data' for the correct VDEF based notation * so our task now is to 'guess' the very graph_item, this GPRINT is related to * and to use that graph_item's CF */ if (isset($last_graph_cf['data_source_name']['local_data_template_rrd_id'])) { $graph_cf = $last_graph_cf['data_source_name']['local_data_template_rrd_id']; /* remember this for second foreach loop */ $graph_items[$key]['cf_reference'] = $graph_cf; } else { $graph_cf = generate_graph_best_cf($graph_item['local_data_id'], $graph_item['consolidation_function_id']); /* remember this for second foreach loop */ $graph_items[$key]['cf_reference'] = $graph_cf; } break; case GRAPH_ITEM_TYPE_GPRINT_AVERAGE: $graph_cf = $graph_item['consolidation_function_id']; $graph_items[$key]['cf_reference'] = $graph_cf; break; case GRAPH_ITEM_TYPE_GPRINT_LAST: $graph_cf = $graph_item['consolidation_function_id']; $graph_items[$key]['cf_reference'] = $graph_cf; break; case GRAPH_ITEM_TYPE_GPRINT_MAX: $graph_cf = $graph_item['consolidation_function_id']; $graph_items[$key]['cf_reference'] = $graph_cf; break; case GRAPH_ITEM_TYPE_GPRINT_MIN: $graph_cf = $graph_item['consolidation_function_id']; $graph_items[$key]['cf_reference'] = $graph_cf; break; default: /* all other types are based on the best matching CF */ $graph_cf = generate_graph_best_cf($graph_item['local_data_id'], $graph_item['consolidation_function_id']); /* remember this for second foreach loop */ $graph_items[$key]['cf_reference'] = $graph_cf; break; } if (!empty($graph_item['local_data_id']) && !isset($cf_ds_cache[$graph_item['data_template_rrd_id']][$graph_cf])) { /* use a user-specified ds path if one is entered */ if (isset($graph_data_array['export_realtime'])) { $data_source_path = $realtimeCachePath . '/user_' . session_id() . '_' . $graph_item['local_data_id'] . '.rrd'; } else { $data_source_path = get_data_source_path($graph_item['local_data_id'], true); } /* FOR WIN32: Escape all colon for drive letters (ex. D\:/path/to/rra) */ $data_source_path = rrdtool_escape_string($data_source_path); if (!empty($data_source_path)) { /* NOTE: (Update) Data source DEF names are created using the graph_item_id; then passed to a function that matches the digits with letters. rrdtool likes letters instead of numbers in DEF names; especially with CDEF's. cdef's are created the same way, except a 'cdef' is put on the beginning of the hash */ $graph_defs .= 'DEF:' . generate_graph_def_name(strval($i)) . '=' . cacti_escapeshellarg($data_source_path) . ':' . cacti_escapeshellarg($graph_item['data_source_name'], true) . ':' . $consolidation_functions[$graph_cf] . RRD_NL; $cf_ds_cache[$graph_item['data_template_rrd_id']][$graph_cf] = "$i"; $i++; } } /* cache cdef value here to support data query variables in the cdef string */ if (empty($graph_item['cdef_id'])) { $graph_item['cdef_cache'] = ''; $graph_items[$j]['cdef_cache'] = ''; } else { $cdef = get_cdef($graph_item['cdef_id']); $graph_item['cdef_cache'] = $cdef; $graph_items[$j]['cdef_cache'] = $cdef; } /* cache vdef value here */ if (empty($graph_item['vdef_id'])) { $graph_item['vdef_cache'] = ''; $graph_items[$j]['vdef_cache'] = ''; } else { $vdef = get_vdef($graph_item['vdef_id']); $graph_item['vdef_cache'] = $vdef; $graph_items[$j]['vdef_cache'] = $vdef; } /* +++++++++++++++++++++++ LEGEND: TEXT SUBSTITUTION (<>'s) +++++++++++++++++++++++ */ /* note the current item_id for easy access */ $graph_item_id = $graph_item['graph_templates_item_id']; /* loop through each field that we want to substitute values for: currently: text format and value */ foreach ($variable_fields as $field_name => $field_array) { /* certain fields do not require values when the legend is not to be shown */ if ($field_array['process_no_legend'] == false && isset($graph_data_array['graph_nolegend'])) { continue; } $graph_variables[$field_name][$graph_item_id] = $graph_item[$field_name]; $search = array(); $replace = array(); /* date/time substitution */ if (strstr($graph_variables[$field_name][$graph_item_id], '|date_time|')) { $search[] = '|date_time|'; $replace[] = $dateTime; } /* data source title substitution */ if (strstr($graph_variables[$field_name][$graph_item_id], '|data_source_title|')) { $search[] = '|data_source_title|'; $replace[] = get_data_source_title($graph_item['local_data_id']); } /* data query variables */ $graph_variables[$field_name][$graph_item_id] = rrd_substitute_host_query_data($graph_variables[$field_name][$graph_item_id], $graph, $graph_item); /* Nth percentile */ if (preg_match_all('/\|([0-9]{1,2}):(bits|bytes):(\d):(current|total|max|total_peak|all_max_current|all_max_peak|aggregate_max|aggregate_sum|aggregate_current|aggregate):(\d)?\|/', $graph_variables[$field_name][$graph_item_id], $matches, PREG_SET_ORDER)) { foreach ($matches as $match) { $search[] = $match[0]; $replace[] = variable_nth_percentile($match, $graph, $graph_item, $graph_items, $graph_start, $graph_end); } } /* bandwidth summation */ if (preg_match_all('/\|sum:(\d|auto):(current|total|atomic):(\d):(\d+|auto)\|/', $graph_variables[$field_name][$graph_item_id], $matches, PREG_SET_ORDER)) { foreach ($matches as $match) { $search[] = $match[0]; $replace[] = variable_bandwidth_summation($match, $graph, $graph_item, $graph_items, $graph_start, $graph_end, $rra['steps'], $ds_step); } } if (count($search)) { $graph_variables[$field_name][$graph_item_id] = str_replace($search, $replace, $graph_variables[$field_name][$graph_item_id]); } } /* if we are not displaying a legend there is no point in us even processing the auto padding, text format stuff. */ if (!isset($graph_data_array['graph_nolegend'])) { /* set hard return variable if selected (\n) */ if ($graph_item['hard_return'] == 'on') { $hardreturn[$graph_item_id] = "\\n"; } else { $hardreturn[$graph_item_id] = ''; } /* +++++++++++++++++++++++ LEGEND: AUTO PADDING (<>'s) +++++++++++++++++++++++ */ /* PADDING: remember this is not perfect! its main use is for the basic graph setup of: AREA - GPRINT-CURRENT - GPRINT-AVERAGE - GPRINT-MAXIMUM \n of course it can be used in other situations, however may not work as intended. If you have any additions to this small peice of code, feel free to send them to me. */ if ($graph['auto_padding'] == 'on') { /* only applies to AREA, STACK and LINEs */ if (preg_match('/(AREA|STACK|LINE[123])/', $graph_item_types[$graph_item['graph_type_id']])) { $text_format_length = mb_strlen(trim($graph_variables['text_format'][$graph_item_id]), 'UTF-8'); if ($text_format_length > $padding_estimate) { $padding_estimate = $text_format_length; } } } } $j++; } } /* +++++++++++++++++++++++ GRAPH ITEMS: CDEF's +++++++++++++++++++++++ */ $i = 0; /* hack for rrdtool 1.2.x support */ $graph_item_stack_type = ''; if (sizeof($graph_items)) { foreach ($graph_items as $graph_item) { /* first we need to check if there is a DEF for the current data source/cf combination. if so, we will use that */ if (isset($cf_ds_cache[$graph_item['data_template_rrd_id']][$graph_item['consolidation_function_id']])) { $cf_id = $graph_item['consolidation_function_id']; } else { /* if there is not a DEF defined for the current data source/cf combination, then we will have to improvise. choose the first available cf in the following order: AVERAGE, MAX, MIN, LAST */ if (isset($cf_ds_cache[$graph_item['data_template_rrd_id']][1])) { $cf_id = 1; /* CF: AVERAGE */ } elseif (isset($cf_ds_cache[$graph_item['data_template_rrd_id']][3])) { $cf_id = 3; /* CF: MAX */ } elseif (isset($cf_ds_cache[$graph_item['data_template_rrd_id']][2])) { $cf_id = 2; /* CF: MIN */ } elseif (isset($cf_ds_cache[$graph_item['data_template_rrd_id']][4])) { $cf_id = 4; /* CF: LAST */ } else { $cf_id = 1; /* CF: AVERAGE */ } } /* now remember the correct CF reference */ $cf_id = $graph_item['cf_reference']; /* +++++++++++++++++++++++ GRAPH ITEMS: CDEF's START +++++++++++++++++++++++ */ /* make cdef string here; a note about CDEF's in cacti. A CDEF is neither unique to a data source of global cdef, but is unique when those two variables combine. */ $cdef_graph_defs = ''; if ((!empty($graph_item['cdef_id'])) && (!isset($cdef_cache[$graph_item['cdef_id']][$graph_item['data_template_rrd_id']][$cf_id]))) { $cdef_string = $graph_variables['cdef_cache'][$graph_item['graph_templates_item_id']]; $magic_item = array(); $already_seen = array(); $sources_seen = array(); $count_all_ds_dups = 0; $count_all_ds_nodups = 0; $count_similar_ds_dups = 0; $count_similar_ds_nodups = 0; //cacti_log('Original:' . $cdef_string); /* if any of those magic variables are requested ... */ if (preg_match('/(ALL_DATA_SOURCES_(NO)?DUPS|SIMILAR_DATA_SOURCES_(NO)?DUPS)/', $cdef_string) || preg_match('/(COUNT_ALL_DS_(NO)?DUPS|COUNT_SIMILAR_DS_(NO)?DUPS)/', $cdef_string)) { /* now walk through each case to initialize array*/ if (preg_match('/ALL_DATA_SOURCES_DUPS/', $cdef_string)) { $magic_item['ALL_DATA_SOURCES_DUPS'] = ''; } if (preg_match('/ALL_DATA_SOURCES_NODUPS/', $cdef_string)) { $magic_item['ALL_DATA_SOURCES_NODUPS'] = ''; } if (preg_match('/SIMILAR_DATA_SOURCES_DUPS/', $cdef_string)) { $magic_item['SIMILAR_DATA_SOURCES_DUPS'] = ''; } if (preg_match('/SIMILAR_DATA_SOURCES_NODUPS/', $cdef_string)) { $magic_item['SIMILAR_DATA_SOURCES_NODUPS'] = ''; } if (preg_match('/COUNT_ALL_DS_DUPS/', $cdef_string)) { $magic_item['COUNT_ALL_DS_DUPS'] = ''; } if (preg_match('/COUNT_ALL_DS_NODUPS/', $cdef_string)) { $magic_item['COUNT_ALL_DS_NODUPS'] = ''; } if (preg_match('/COUNT_SIMILAR_DS_DUPS/', $cdef_string)) { $magic_item['COUNT_SIMILAR_DS_DUPS'] = ''; } if (preg_match('/COUNT_SIMILAR_DS_NODUPS/', $cdef_string)) { $magic_item['COUNT_SIMILAR_DS_NODUPS'] = ''; } /* loop over all graph items */ foreach($graph_items as $gi_check) { /* only work on graph items, omit GRPINTs, COMMENTs and stuff */ if ((preg_match('/(AREA|STACK|LINE[123])/', $graph_item_types[$gi_check['graph_type_id']])) && (!empty($gi_check['data_template_rrd_id']))) { /* if the user screws up CF settings, PHP will generate warnings if left unchecked */ /* matching consolidation function? */ if (isset($cf_ds_cache[$gi_check['data_template_rrd_id']][$cf_id])) { $def_name = generate_graph_def_name(strval($cf_ds_cache[$gi_check['data_template_rrd_id']][$cf_id])); /* do we need ALL_DATA_SOURCES_DUPS? */ if (isset($magic_item['ALL_DATA_SOURCES_DUPS'])) { $magic_item['ALL_DATA_SOURCES_DUPS'] .= ($count_all_ds_dups == 0 ? '' : ',') . 'TIME,' . (time() - $seconds_between_graph_updates) . ",GT,$def_name,$def_name,UN,0,$def_name,IF,IF"; /* convert unknowns to '0' first */ } /* do we need COUNT_ALL_DS_DUPS? */ if (isset($magic_item['COUNT_ALL_DS_DUPS'])) { $magic_item['COUNT_ALL_DS_DUPS'] .= ($count_all_ds_dups == 0 ? '' : ',') . 'TIME,' . (time() - $seconds_between_graph_updates) . ",GT,1,$def_name,UN,0,1,IF,IF"; /* convert unknowns to '0' first */ } $count_all_ds_dups++; /* check if this item also qualifies for NODUPS */ if (!isset($already_seen[$def_name])) { if (isset($magic_item['ALL_DATA_SOURCES_NODUPS'])) { $magic_item['ALL_DATA_SOURCES_NODUPS'] .= ($count_all_ds_nodups == 0 ? '' : ',') . 'TIME,' . (time() - $seconds_between_graph_updates) . ",GT,$def_name,$def_name,UN,0,$def_name,IF,IF"; /* convert unknowns to '0' first */ } if (isset($magic_item['COUNT_ALL_DS_NODUPS'])) { $magic_item['COUNT_ALL_DS_NODUPS'] .= ($count_all_ds_nodups == 0 ? '' : ',') . 'TIME,' . (time() - $seconds_between_graph_updates) . ",GT,1,$def_name,UN,0,1,IF,IF"; /* convert unknowns to '0' first */ } $count_all_ds_nodups++; $already_seen[$def_name] = true; } /* check for SIMILAR data sources */ if ($graph_item['data_source_name'] == $gi_check['data_source_name']) { /* do we need SIMILAR_DATA_SOURCES_DUPS? */ if (isset($magic_item['SIMILAR_DATA_SOURCES_DUPS']) && ($graph_item['data_source_name'] == $gi_check['data_source_name'])) { $magic_item['SIMILAR_DATA_SOURCES_DUPS'] .= ($count_similar_ds_dups == 0 ? '' : ',') . 'TIME,' . (time() - $seconds_between_graph_updates) . ",GT,$def_name,$def_name,UN,0,$def_name,IF,IF"; /* convert unknowns to '0' first */ } /* do we need COUNT_SIMILAR_DS_DUPS? */ if (isset($magic_item['COUNT_SIMILAR_DS_DUPS']) && ($graph_item['data_source_name'] == $gi_check['data_source_name'])) { $magic_item['COUNT_SIMILAR_DS_DUPS'] .= ($count_similar_ds_dups == 0 ? '' : ',') . 'TIME,' . (time() - $seconds_between_graph_updates) . ",GT,1,$def_name,UN,0,1,IF,IF"; /* convert unknowns to '0' first */ } $count_similar_ds_dups++; /* check if this item also qualifies for NODUPS */ if (!isset($sources_seen[$gi_check['data_template_rrd_id']])) { if (isset($magic_item['SIMILAR_DATA_SOURCES_NODUPS'])) { $magic_item['SIMILAR_DATA_SOURCES_NODUPS'] .= ($count_similar_ds_nodups == 0 ? '' : ',') . 'TIME,' . (time() - $seconds_between_graph_updates) . ",GT,$def_name,$def_name,UN,0,$def_name,IF,IF"; /* convert unknowns to '0' first */ } if (isset($magic_item['COUNT_SIMILAR_DS_NODUPS']) && ($graph_item['data_source_name'] == $gi_check['data_source_name'])) { $magic_item['COUNT_SIMILAR_DS_NODUPS'] .= ($count_similar_ds_nodups == 0 ? '' : ',') . 'TIME,' . (time() - $seconds_between_graph_updates) . ",GT,1,$def_name,UN,0,1,IF,IF"; /* convert unknowns to '0' first */ } $count_similar_ds_nodups++; $sources_seen[$gi_check['data_template_rrd_id']] = true; } } # SIMILAR data sources } # matching consolidation function? } # only work on graph items, omit GRPINTs, COMMENTs and stuff } # loop over all graph items /* if there is only one item to total, don't even bother with the summation. * Otherwise cdef=a,b,c,+,+ is fine. */ if ($count_all_ds_dups > 1 && isset($magic_item['ALL_DATA_SOURCES_DUPS'])) { $magic_item['ALL_DATA_SOURCES_DUPS'] .= str_repeat(',+', ($count_all_ds_dups - 2)) . ',+'; } if ($count_all_ds_nodups > 1 && isset($magic_item['ALL_DATA_SOURCES_NODUPS'])) { $magic_item['ALL_DATA_SOURCES_NODUPS'] .= str_repeat(',+', ($count_all_ds_nodups - 2)) . ',+'; } if ($count_similar_ds_dups > 1 && isset($magic_item['SIMILAR_DATA_SOURCES_DUPS'])) { $magic_item['SIMILAR_DATA_SOURCES_DUPS'] .= str_repeat(',+', ($count_similar_ds_dups - 2)) . ',+'; } if ($count_similar_ds_nodups > 1 && isset($magic_item['SIMILAR_DATA_SOURCES_NODUPS'])) { $magic_item['SIMILAR_DATA_SOURCES_NODUPS'] .= str_repeat(',+', ($count_similar_ds_nodups - 2)) . ',+'; } if ($count_all_ds_dups > 1 && isset($magic_item['COUNT_ALL_DS_DUPS'])) { $magic_item['COUNT_ALL_DS_DUPS'] .= str_repeat(',+', ($count_all_ds_dups - 2)) . ',+'; } if ($count_all_ds_nodups > 1 && isset($magic_item['COUNT_ALL_DS_NODUPS'])) { $magic_item['COUNT_ALL_DS_NODUPS'] .= str_repeat(',+', ($count_all_ds_nodups - 2)) . ',+'; } if ($count_similar_ds_dups > 1 && isset($magic_item['COUNT_SIMILAR_DS_DUPS'])) { $magic_item['COUNT_SIMILAR_DS_DUPS'] .= str_repeat(',+', ($count_similar_ds_dups - 2)) . ',+'; } if ($count_similar_ds_nodups > 1 && isset($magic_item['COUNT_SIMILAR_DS_NODUPS'])) { $magic_item['COUNT_SIMILAR_DS_NODUPS'] .= str_repeat(',+', ($count_similar_ds_nodups - 2)) . ',+'; } } /* allow automatic rate calculations on raw guage data */ if (isset($graph_item['local_data_id'])) { $cdef_string = str_replace('CURRENT_DATA_SOURCE_PI', db_fetch_cell_prepared('SELECT rrd_step FROM data_template_data WHERE local_data_id = ?', array($graph_item['local_data_id'])), $cdef_string); } else { $cdef_string = str_replace('CURRENT_DATA_SOURCE_PI', read_config_option('poller_interval'), $cdef_string); } $cdef_string = str_replace('CURRENT_DATA_SOURCE', generate_graph_def_name(strval((isset($cf_ds_cache[$graph_item['data_template_rrd_id']][$cf_id]) ? $cf_ds_cache[$graph_item['data_template_rrd_id']][$cf_id] : '0'))), $cdef_string); /* allow automatic rate calculations on raw guage data */ if (isset($graph_item['local_data_id'])) { $cdef_string = str_replace('ALL_DATA_SOURCES_DUPS_PI', db_fetch_cell_prepared('SELECT rrd_step FROM data_template_data WHERE local_data_id = ?', array($graph_item['local_data_id'])), $cdef_string); } else { $cdef_string = str_replace('ALL_DATA_SOURCES_DUPS_PI', read_config_option('poller_interval'), $cdef_string); } /* ALL|SIMILAR_DATA_SOURCES(NO)?DUPS are to be replaced here */ if (isset($magic_item['ALL_DATA_SOURCES_DUPS'])) { $cdef_string = str_replace('ALL_DATA_SOURCES_DUPS', $magic_item['ALL_DATA_SOURCES_DUPS'], $cdef_string); } /* allow automatic rate calculations on raw guage data */ if (isset($graph_item['local_data_id'])) { $cdef_string = str_replace('ALL_DATA_SOURCES_NODUPS_PI', db_fetch_cell_prepared('SELECT rrd_step FROM data_template_data WHERE local_data_id = ?', array($graph_item['local_data_id'])), $cdef_string); } else { $cdef_string = str_replace('ALL_DATA_SOURCES_NODUPS_PI', read_config_option('poller_interval'), $cdef_string); } if (isset($magic_item['ALL_DATA_SOURCES_NODUPS'])) { $cdef_string = str_replace('ALL_DATA_SOURCES_NODUPS', $magic_item['ALL_DATA_SOURCES_NODUPS'], $cdef_string); } /* allow automatic rate calculations on raw guage data */ if (isset($graph_item['local_data_id'])) { $cdef_string = str_replace('SIMILAR_DATA_SOURCES_DUPS_PI', db_fetch_cell_prepared('SELECT rrd_step FROM data_template_data WHERE local_data_id = ?', array($graph_item['local_data_id'])), $cdef_string); } else { $cdef_string = str_replace('SIMILAR_DATA_SOURCES_DUPS_PI', read_config_option('poller_interval'), $cdef_string); } if (isset($magic_item['SIMILAR_DATA_SOURCES_DUPS'])) { $cdef_string = str_replace('SIMILAR_DATA_SOURCES_DUPS', $magic_item['SIMILAR_DATA_SOURCES_DUPS'], $cdef_string); } if (isset($graph_item['local_data_id'])) { $cdef_string = str_replace('SIMILAR_DATA_SOURCES_NODUPS_PI', db_fetch_cell_prepared('SELECT rrd_step FROM data_template_data WHERE local_data_id = ?', array($graph_item['local_data_id'])), $cdef_string); } else { $cdef_string = str_replace('SIMILAR_DATA_SOURCES_NODUPS_PI', read_config_option('poller_id'), $cdef_string); } if (isset($magic_item['SIMILAR_DATA_SOURCES_NODUPS'])) { $cdef_string = str_replace('SIMILAR_DATA_SOURCES_NODUPS', $magic_item['SIMILAR_DATA_SOURCES_NODUPS'], $cdef_string); } /* COUNT_ALL|SIMILAR_DATA_SOURCES(NO)?DUPS are to be replaced here */ if (isset($magic_item['COUNT_ALL_DS_DUPS'])) { $cdef_string = str_replace('COUNT_ALL_DS_DUPS', $magic_item['COUNT_ALL_DS_DUPS'], $cdef_string); } if (isset($magic_item['COUNT_ALL_DS_NODUPS'])) { $cdef_string = str_replace('COUNT_ALL_DS_NODUPS', $magic_item['COUNT_ALL_DS_NODUPS'], $cdef_string); } if (isset($magic_item['COUNT_SIMILAR_DS_DUPS'])) { $cdef_string = str_replace('COUNT_SIMILAR_DS_DUPS', $magic_item['COUNT_SIMILAR_DS_DUPS'], $cdef_string); } if (isset($magic_item['COUNT_SIMILAR_DS_NODUPS'])) { $cdef_string = str_replace('COUNT_SIMILAR_DS_NODUPS', $magic_item['COUNT_SIMILAR_DS_NODUPS'], $cdef_string); } /* data source item variables */ $cdef_string = str_replace('CURRENT_DS_MINIMUM_VALUE', (empty($graph_item['rrd_minimum']) ? '0' : $graph_item['rrd_minimum']), $cdef_string); $cdef_string = str_replace('CURRENT_DS_MAXIMUM_VALUE', (empty($graph_item['rrd_maximum']) ? '0' : $graph_item['rrd_maximum']), $cdef_string); $cdef_string = str_replace('CURRENT_GRAPH_MINIMUM_VALUE', (empty($graph['lower_limit']) ? '0' : $graph['lower_limit']), $cdef_string); $cdef_string = str_replace('CURRENT_GRAPH_MAXIMUM_VALUE', (empty($graph['upper_limit']) ? '0' : $graph['upper_limit']), $cdef_string); /* replace query variables in cdefs */ $cdef_string = rrd_substitute_host_query_data($cdef_string, $graph, $graph_item); //cacti_log('Final:' . $cdef_string); /* make the initial 'virtual' cdef name: 'cdef' + [a,b,c,d...] */ $cdef_graph_defs .= 'CDEF:cdef' . generate_graph_def_name(strval($i)) . '='; /* prohibit command injection and provide platform specific quoting */ $cdef_graph_defs .= cacti_escapeshellarg(sanitize_cdef($cdef_string), true); $cdef_graph_defs .= " \\\n"; /* the CDEF cache is so we do not create duplicate CDEF's on a graph */ $cdef_cache[$graph_item['cdef_id']][$graph_item['data_template_rrd_id']][$cf_id] = $i; } /* add the cdef string to the end of the def string */ $graph_defs .= $cdef_graph_defs; /* +++++++++++++++++++++++ GRAPH ITEMS: CDEF's END +++++++++++++++++++++++ */ /* +++++++++++++++++++++++ GRAPH ITEMS: VDEF's START +++++++++++++++++++++++ */ /* make vdef string here, copied from cdef stuff */ $vdef_graph_defs = ''; if ((!empty($graph_item['vdef_id'])) && (!isset($vdef_cache[$graph_item['vdef_id']][$graph_item['cdef_id']][$graph_item['data_template_rrd_id']][$cf_id]))) { $vdef_string = $graph_variables['vdef_cache'][$graph_item['graph_templates_item_id']]; /* do we refer to a CDEF within this VDEF? */ if ($graph_item['cdef_id'] != '0') { /* 'calculated' VDEF: use (cached) CDEF as base, only way to get calculations into VDEFs */ $vdef_string = 'cdef' . str_replace('CURRENT_DATA_SOURCE', generate_graph_def_name(strval(isset($cdef_cache[$graph_item['cdef_id']][$graph_item['data_template_rrd_id']][$cf_id]) ? $cdef_cache[$graph_item['cdef_id']][$graph_item['data_template_rrd_id']][$cf_id] : '0')), $vdef_string); } else { /* 'pure' VDEF: use DEF as base */ $vdef_string = str_replace('CURRENT_DATA_SOURCE', generate_graph_def_name(strval(isset($cf_ds_cache[$graph_item['data_template_rrd_id']][$cf_id]) ? $cf_ds_cache[$graph_item['data_template_rrd_id']][$cf_id] : '0')), $vdef_string); } # TODO: It would be possible to refer to a CDEF, but that's all. So ALL_DATA_SOURCES_NODUPS and stuff can't be used directly! # $vdef_string = str_replace('ALL_DATA_SOURCES_NODUPS', $magic_item['ALL_DATA_SOURCES_NODUPS'], $vdef_string); # $vdef_string = str_replace('ALL_DATA_SOURCES_DUPS', $magic_item['ALL_DATA_SOURCES_DUPS'], $vdef_string); # $vdef_string = str_replace('SIMILAR_DATA_SOURCES_NODUPS', $magic_item['SIMILAR_DATA_SOURCES_NODUPS'], $vdef_string); # $vdef_string = str_replace('SIMILAR_DATA_SOURCES_DUPS', $magic_item['SIMILAR_DATA_SOURCES_DUPS'], $vdef_string); /* make the initial 'virtual' vdef name */ $vdef_graph_defs .= 'VDEF:vdef' . generate_graph_def_name(strval($i)) . '='; $vdef_graph_defs .= cacti_escapeshellarg(sanitize_cdef($vdef_string)); $vdef_graph_defs .= " \\\n"; /* the VDEF cache is so we do not create duplicate VDEF's on a graph, * but take info account, that same VDEF may use different CDEFs * so index over VDEF_ID, CDEF_ID per DATA_TEMPLATE_RRD_ID, lvm */ $vdef_cache[$graph_item['vdef_id']][$graph_item['cdef_id']][$graph_item['data_template_rrd_id']][$cf_id] = $i; } /* add the cdef string to the end of the def string */ $graph_defs .= $vdef_graph_defs; /* +++++++++++++++++++++++ GRAPH ITEMS: VDEF's END +++++++++++++++++++++++ */ /* note the current item_id for easy access */ $graph_item_id = $graph_item['graph_templates_item_id']; /* if we are not displaying a legend there is no point in us even processing the auto padding, text format stuff. */ $pad_number = 0; if ((!isset($graph_data_array['graph_nolegend'])) && ($graph['auto_padding'] == 'on')) { /* only applies to AREA, STACK and LINEs */ if (preg_match('/(AREA|STACK|LINE[123]|TICK)/', $graph_item_types[$graph_item['graph_type_id']])) { $text_format_length = mb_strlen($graph_variables['text_format'][$graph_item_id], 'UTF-8'); $pad_number = $padding_estimate; } elseif (($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_GPRINT_AVERAGE || $graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_GPRINT || $graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_GPRINT_LAST || $graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_GPRINT_MAX || $graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_GPRINT_MIN) && ( $last_graph_type == GRAPH_ITEM_TYPE_GPRINT || $last_graph_type == GRAPH_ITEM_TYPE_GPRINT_AVERAGE || $last_graph_type == GRAPH_ITEM_TYPE_GPRINT_LAST || $last_graph_type == GRAPH_ITEM_TYPE_GPRINT_MAX || $last_graph_type == GRAPH_ITEM_TYPE_GPRINT_MIN)) { /* get the maximum text_format length from the database */ if (!isset($max_length)) { $max_length = db_fetch_cell_prepared('SELECT MAX(LENGTH(TRIM(text_format))) FROM graph_templates_item WHERE local_graph_id=? AND graph_type_id IN(' . GRAPH_ITEM_TYPE_LINE1 . ',' . GRAPH_ITEM_TYPE_LINE2 . ',' . GRAPH_ITEM_TYPE_LINE3 . ',' . GRAPH_ITEM_TYPE_LINESTACK . ',' . GRAPH_ITEM_TYPE_AREA . ',' . GRAPH_ITEM_TYPE_STACK . ')', array($local_graph_id)); } $pad_number = $max_length; } $last_graph_type = $graph_item_types[$graph_item['graph_type_id']]; } /* we put this in a variable so it can be manipulated before mainly used if we want to skip it, like below */ $current_graph_item_type = $graph_item_types[$graph_item['graph_type_id']]; /* IF this graph item has a data source... get a DEF name for it, or the cdef if that applies to this graph item */ if ($graph_item['cdef_id'] == '0') { if (isset($cf_ds_cache[$graph_item['data_template_rrd_id']][$cf_id])) { $data_source_name = generate_graph_def_name(strval($cf_ds_cache[$graph_item['data_template_rrd_id']][$cf_id])); } else { $data_source_name = ''; } } else { $data_source_name = 'cdef' . generate_graph_def_name(strval($cdef_cache[$graph_item['cdef_id']][$graph_item['data_template_rrd_id']][$cf_id])); } /* IF this graph item has a data source... get a DEF name for it, or the vdef if that applies to this graph item */ if ($graph_item['vdef_id'] == '0') { /* do not overwrite $data_source_name that stems from cdef above */ } else { $data_source_name = 'vdef' . generate_graph_def_name(strval($vdef_cache[$graph_item['vdef_id']][$graph_item['cdef_id']][$graph_item['data_template_rrd_id']][$cf_id])); } /* to make things easier... if there is no text format set; set blank text */ if (!isset($graph_variables['text_format'][$graph_item_id])) { $graph_variables['text_format'][$graph_item_id] = ''; } if (!isset($hardreturn[$graph_item_id])) { $hardreturn[$graph_item_id] = ''; } /* +++++++++++++++++++++++ GRAPH ITEMS +++++++++++++++++++++++ */ /* most of the calculations have been done above. now we have for print everything out in an RRDtool-friendly fashion */ $need_rrd_nl = true; /* initialize color support */ $graph_item_color_code = ''; if (!empty($graph_item['hex'])) { $graph_item_color_code = '#' . $graph_item['hex']; $graph_item_color_code .= $graph_item['alpha']; } /* initialize dash support */ $dash = ''; if ($graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_LINE1 || $graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_LINE2 || $graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_LINE3 || $graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_LINESTACK || $graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_HRULE || $graph_item['graph_type_id'] == GRAPH_ITEM_TYPE_VRULE) { if (!empty($graph_item['dashes'])) { $dash .= ':dashes=' . $graph_item['dashes']; } if (!empty($graph_item['dash_offset'])) { $dash .= ':dash-offset=' . $graph_item['dash_offset']; } } if (!isset($graph_data_array['export_csv'])) { switch($graph_item['graph_type_id']) { case GRAPH_ITEM_TYPE_COMMENT: if (!isset($graph_data_array['graph_nolegend'])) { # perform variable substitution first (in case this will yield an empty results or brings command injection problems) $comment_arg = rrd_substitute_host_query_data($graph_variables['text_format'][$graph_item_id], $graph, $graph_item); # next, compute the argument of the COMMENT statement and perform injection counter measures if (trim($comment_arg) == '') { # an empty COMMENT must be treated with care $comment_arg = cacti_escapeshellarg(' ' . $hardreturn[$graph_item_id]); } else { $comment_arg = cacti_escapeshellarg(rrdtool_escape_string(html_escape($comment_arg)) . $hardreturn[$graph_item_id]); } # create rrdtool specific command line $txt_graph_items .= $graph_item_types[$graph_item['graph_type_id']] . ':' . $comment_arg . ' '; } break; case GRAPH_ITEM_TYPE_TEXTALIGN: if (!isset($graph_data_array['graph_nolegend'])) { if (!empty($graph_item['textalign'])) { $txt_graph_items .= $graph_item_types[$graph_item['graph_type_id']] . ':' . $graph_item['textalign']; } } break; case GRAPH_ITEM_TYPE_GPRINT: $graph_variables['text_format'][$graph_item_id] = rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id])); if ($graph_item['vdef_id'] == '0') { $txt_graph_items .= $graph_item_types[$graph_item['graph_type_id']] . ':' . $data_source_name . ':' . $consolidation_functions[$graph_item['consolidation_function_id']] . ':' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $graph_item['gprint_text'] . $hardreturn[$graph_item_id]) . ' '; } else { $txt_graph_items .= $graph_item_types[$graph_item['graph_type_id']] . ':' . $data_source_name . ':' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $graph_item['gprint_text'] . $hardreturn[$graph_item_id]) . ' '; } break; case GRAPH_ITEM_TYPE_GPRINT_AVERAGE: if (!isset($graph_data_array['graph_nolegend'])) { $graph_variables['text_format'][$graph_item_id] = rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id])); if ($graph_item['vdef_id'] == '0') { $txt_graph_items .= 'GPRINT:' . $data_source_name . ':AVERAGE:' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $graph_item['gprint_text'] . $hardreturn[$graph_item_id]) . ' '; } else { $txt_graph_items .= 'GPRINT:' . $data_source_name . ':' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $graph_item['gprint_text'] . $hardreturn[$graph_item_id]) . ' '; } } break; case GRAPH_ITEM_TYPE_GPRINT_LAST: if (!isset($graph_data_array['graph_nolegend'])) { $graph_variables['text_format'][$graph_item_id] = rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id])); if ($graph_item['vdef_id'] == '0') { $txt_graph_items .= 'GPRINT:' . $data_source_name . ':LAST:' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $graph_item['gprint_text'] . $hardreturn[$graph_item_id]) . ' '; } else { $txt_graph_items .= 'GPRINT:' . $data_source_name . ':' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $graph_item['gprint_text'] . $hardreturn[$graph_item_id]) . ' '; } } break; case GRAPH_ITEM_TYPE_GPRINT_MAX: if (!isset($graph_data_array['graph_nolegend'])) { $graph_variables['text_format'][$graph_item_id] = rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id])); if ($graph_item['vdef_id'] == '0') { $txt_graph_items .= 'GPRINT:' . $data_source_name . ':MAX:' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $graph_item['gprint_text'] . $hardreturn[$graph_item_id]) . ' '; } else { $txt_graph_items .= 'GPRINT:' . $data_source_name . ':' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $graph_item['gprint_text'] . $hardreturn[$graph_item_id]) . ' '; } } break; case GRAPH_ITEM_TYPE_GPRINT_MIN: if (!isset($graph_data_array['graph_nolegend'])) { $graph_variables['text_format'][$graph_item_id] = rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id])); if ($graph_item['vdef_id'] == '0') { $txt_graph_items .= 'GPRINT:' . $data_source_name . ':MIN:' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $graph_item['gprint_text'] . $hardreturn[$graph_item_id]) . ' '; } else { $txt_graph_items .= 'GPRINT:' . $data_source_name . ':' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $graph_item['gprint_text'] . $hardreturn[$graph_item_id]) . ' '; } } break; case GRAPH_ITEM_TYPE_AREA: $graph_variables['text_format'][$graph_item_id] = rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id] != '' ? str_pad($graph_variables['text_format'][$graph_item_id], $pad_number):'')); $txt_graph_items .= $graph_item_types[$graph_item['graph_type_id']] . ':' . $data_source_name . $graph_item_color_code . ':' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $hardreturn[$graph_item_id]) . ' '; if ($graph_item['shift'] == CHECKED && $graph_item['value'] > 0) { # create a SHIFT statement $txt_graph_items .= RRD_NL . 'SHIFT:' . $data_source_name . ':' . $graph_item['value']; } break; case GRAPH_ITEM_TYPE_STACK: $graph_variables['text_format'][$graph_item_id] = rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id] != '' ? str_pad($graph_variables['text_format'][$graph_item_id],$pad_number):'')); $txt_graph_items .= 'AREA:' . $data_source_name . $graph_item_color_code . ':' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $hardreturn[$graph_item_id]) . ':STACK'; if ($graph_item['shift'] == CHECKED && $graph_item['value'] > 0) { # create a SHIFT statement $txt_graph_items .= RRD_NL . 'SHIFT:' . $data_source_name . ':' . $graph_item['value']; } break; case GRAPH_ITEM_TYPE_LINE1: case GRAPH_ITEM_TYPE_LINE2: case GRAPH_ITEM_TYPE_LINE3: $graph_variables['text_format'][$graph_item_id] = rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id] != '' ? str_pad($graph_variables['text_format'][$graph_item_id], $pad_number):'')); $txt_graph_items .= $graph_item_types[$graph_item['graph_type_id']] . ':' . $data_source_name . $graph_item_color_code . ':' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $hardreturn[$graph_item_id]) . ' '; if ($graph_item['shift'] == CHECKED && $graph_item['value'] > 0) { # create a SHIFT statement $txt_graph_items .= RRD_NL . 'SHIFT:' . $data_source_name . ':' . $graph_item['value']; } break; case GRAPH_ITEM_TYPE_LINESTACK: $txt_graph_items .= 'LINE' . $graph_item['line_width'] . ':' . $data_source_name . $graph_item_color_code . ':' . cacti_escapeshellarg(rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id])) . $hardreturn[$graph_item_id]) . ':STACK' . $dash; if ($graph_item['shift'] == CHECKED && $graph_item['value'] > 0) { # create a SHIFT statement $txt_graph_items .= RRD_NL . 'SHIFT:' . $data_source_name . ':' . $graph_item['value']; } break; case GRAPH_ITEM_TYPE_TIC: $_fraction = (empty($graph_item['graph_type_id']) ? '' : (':' . $graph_item['value'])); $_legend = ':' . cacti_escapeshellarg(rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id])) . $hardreturn[$graph_item_id]); $txt_graph_items .= $graph_item_types[$graph_item['graph_type_id']] . ':' . $data_source_name . $graph_item_color_code . $_fraction . $_legend; break; case GRAPH_ITEM_TYPE_HRULE: /* perform variable substitution; if this does not return a number, rrdtool will FAIL! */ $substitute = rrd_substitute_host_query_data($graph_variables['value'][$graph_item_id], $graph, $graph_item); $graph_variables['text_format'][$graph_item_id] = rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id])); if (is_numeric($substitute)) { $graph_variables['value'][$graph_item_id] = $substitute; } $txt_graph_items .= $graph_item_types[$graph_item['graph_type_id']] . ':' . $graph_variables['value'][$graph_item_id] . $graph_item_color_code . ':' . cacti_escapeshellarg($graph_variables['text_format'][$graph_item_id] . $hardreturn[$graph_item_id]) . '' . $dash; break; case GRAPH_ITEM_TYPE_VRULE: if (substr_count($graph_item['value'], ':')) { $value_array = explode(':', $graph_item['value']); if ($value_array[0] < 0) { $value = date('U') - (-3600 * $value_array[0]) - 60 * $value_array[1]; } else { $value = date('U', mktime($value_array[0],$value_array[1],0)); } $txt_graph_items .= $graph_item_types[$graph_item['graph_type_id']] . ':' . $value . $graph_item_color_code . ':' . cacti_escapeshellarg(rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id])) . $hardreturn[$graph_item_id]) . $dash; } elseif (is_numeric($graph_item['value'])) { $value = $graph_item['value']; $txt_graph_items .= $graph_item_types[$graph_item['graph_type_id']] . ':' . $value . $graph_item_color_code . ':' . cacti_escapeshellarg(rrdtool_escape_string(html_escape($graph_variables['text_format'][$graph_item_id])) . $hardreturn[$graph_item_id]) . $dash; } break; default: $need_rrd_nl = false; } } else { if (preg_match('/^(AREA|AREA:STACK|LINE[123]|STACK)$/', $graph_item_types[$graph_item['graph_type_id']])) { /* give all export items a name */ if (trim($graph_variables['text_format'][$graph_item_id]) == '') { $legend_name = 'col' . $j . '-' . $data_source_name; } else { $legend_name = $graph_variables['text_format'][$graph_item_id]; } $stacked_columns['col' . $j] = ($graph_item_types[$graph_item['graph_type_id']] == 'STACK') ? 1 : 0; $j++; $txt_graph_items .= 'XPORT:' . cacti_escapeshellarg($data_source_name) . ':' . str_replace(':', '', cacti_escapeshellarg($legend_name)) ; } else { $need_rrd_nl = false; } } $i++; if (($i < sizeof($graph_items)) && ($need_rrd_nl)) { $txt_graph_items .= RRD_NL; } } } if (!isset($graph_data_array['export_csv']) || $graph_data_array['export_csv'] != true) { $graph_array = api_plugin_hook_function('rrd_graph_graph_options', array('graph_opts' => $graph_opts, 'graph_defs' => $graph_defs, 'txt_graph_items' => $txt_graph_items, 'graph_id' => $local_graph_id, 'start' => $graph_start, 'end' => $graph_end)); if (!empty($graph_array)) { $graph_defs = $graph_array['graph_defs']; $txt_graph_items = $graph_array['txt_graph_items']; $graph_opts = $graph_array['graph_opts']; } /* either print out the source or pass the source onto rrdtool to get us a nice PNG */ if (isset($graph_data_array['print_source'])) { print '
    ' . html_escape(read_config_option('path_rrdtool') . ' graph ' . $graph_opts . $graph_defs . $txt_graph_items) . '
    '; } else { if (isset($graph_data_array['graphv'])) { $graph = 'graphv'; } else { $graph = 'graph'; } if (isset($graph_data_array['get_error'])) { return rrdtool_execute("graph $graph_opts$graph_defs$txt_graph_items", false, RRDTOOL_OUTPUT_STDERR); } elseif (isset($graph_data_array['export'])) { rrdtool_execute("graph $graph_opts$graph_defs$txt_graph_items", false, RRDTOOL_OUTPUT_NULL, $rrdtool_pipe); return 0; } elseif (isset($graph_data_array['export_realtime'])) { $output_flag = RRDTOOL_OUTPUT_GRAPH_DATA; $output = rrdtool_execute("graph $graph_opts$graph_defs$txt_graph_items", false, $output_flag, $rrdtool_pipe); if ($fp = fopen($graph_data_array['export_realtime'], 'w')) { fwrite($fp, $output, strlen($output)); fclose($fp); chmod($graph_data_array['export_realtime'], 0644); } return $output; } else { $graph_data_array = boost_prep_graph_array($graph_data_array); if (!isset($graph_data_array['output_flag'])) { $output_flag = RRDTOOL_OUTPUT_GRAPH_DATA; } else { $output_flag = $graph_data_array['output_flag']; } $output = rrdtool_execute("$graph $graph_opts$graph_defs$txt_graph_items", false, $output_flag, $rrdtool_pipe); boost_graph_set_file($output, $local_graph_id, $rra_id); return $output; } } } else { $output_flag = RRDTOOL_OUTPUT_STDOUT; $xport_array = rrdxport2array(rrdtool_execute("xport $graph_opts$graph_defs$txt_graph_items", false, $output_flag, $rrdtool_pipe)); /* add host and graph information */ $xport_array['meta']['stacked_columns']= $stacked_columns; $xport_array['meta']['title_cache'] = $graph['title_cache']; $xport_array['meta']['vertical_label'] = $graph['vertical_label']; $xport_array['meta']['local_graph_id'] = $local_graph_id; $xport_array['meta']['host_id'] = $graph['host_id']; return $xport_array; } } function rrdtool_escape_string($text) { return str_replace(array('"', ":", '%'), array('\"', "\:", ''), $text); } function rrdtool_function_xport($local_graph_id, $rra_id, $xport_data_array, &$xport_meta) { return rrdtool_function_graph($local_graph_id, $rra_id, $xport_data_array, '', $xport_meta); } function rrdtool_function_format_graph_date(&$graph_data_array) { global $datechar; $graph_legend = ''; /* setup date format */ $date_fmt = read_user_setting('default_date_format'); $dateCharSetting = read_config_option('default_datechar'); if (empty($dateCharSetting)) { $dateCharSetting = GDC_SLASH; } $datecharacter = $datechar[$dateCharSetting]; switch ($date_fmt) { case GD_MO_D_Y: $graph_date = 'm' . $datecharacter . 'd' . $datecharacter . 'Y H:i:s'; break; case GD_MN_D_Y: $graph_date = 'M' . $datecharacter . 'd' . $datecharacter . 'Y H:i:s'; break; case GD_D_MO_Y: $graph_date = 'd' . $datecharacter . 'm' . $datecharacter . 'Y H:i:s'; break; case GD_D_MN_Y: $graph_date = 'd' . $datecharacter . 'M' . $datecharacter . 'Y H:i:s'; break; case GD_Y_MO_D: $graph_date = 'Y' . $datecharacter . 'm' . $datecharacter . 'd H:i:s'; break; case GD_Y_MN_D: $graph_date = 'Y' . $datecharacter . 'M' . $datecharacter . 'd H:i:s'; break; } /* display the timespan for zoomed graphs */ if ((isset($graph_data_array['graph_start'])) && (isset($graph_data_array['graph_end']))) { if (($graph_data_array['graph_start'] < 0) && ($graph_data_array['graph_end'] < 0)) { $graph_legend = "COMMENT:\"From " . str_replace(':', '\:', date($graph_date, time()+$graph_data_array['graph_start'])) . ' To ' . str_replace(':', '\:', date($graph_date, time()+$graph_data_array['graph_end'])) . "\\c\"" . RRD_NL . "COMMENT:\" \\n\"" . RRD_NL; } elseif (($graph_data_array['graph_start'] >= 0) && ($graph_data_array['graph_end'] >= 0)) { $graph_legend = "COMMENT:\"From " . str_replace(':', '\:', date($graph_date, $graph_data_array['graph_start'])) . ' To ' . str_replace(':', '\:', date($graph_date, $graph_data_array['graph_end'])) . "\\c\"" . RRD_NL . "COMMENT:\" \\n\"" . RRD_NL; } } return $graph_legend; } function rrdtool_function_theme_font_options(&$graph_data_array) { global $config; /* implement theme colors */ $graph_opts = ''; $themefonts = array(); if (isset($graph_data_array['graph_theme'])) { $rrdtheme = $config['base_path'] . '/include/themes/' . $graph_data_array['graph_theme'] . '/rrdtheme.php'; } else { $rrdtheme = $config['base_path'] . '/include/themes/' . get_selected_theme() . '/rrdtheme.php'; } if (file_exists($rrdtheme) && is_readable($rrdtheme)) { $rrdversion = str_replace('rrd-', '', str_replace('.x', '', read_config_option('rrdtool_version'))); include($rrdtheme); if (isset($rrdcolors)) { foreach($rrdcolors as $colortag => $color) { $graph_opts .= '--color ' . strtoupper($colortag) . '#' . strtoupper($color) . RRD_NL; } } if (isset($rrdborder) && $rrdversion >= 1.4) { $graph_opts .= "--border $rrdborder " ; } if (isset($rrdfonts)) { $themefonts = $rrdfonts; } } /* title fonts */ $graph_opts .= rrdtool_function_set_font('title', ((!empty($graph_data_array['graph_nolegend'])) ? $graph_data_array['graph_nolegend'] : ''), $themefonts); /* axis fonts */ $graph_opts .= rrdtool_function_set_font('axis', '', $themefonts); /* legend fonts */ $graph_opts .= rrdtool_function_set_font('legend', '', $themefonts); /* unit fonts */ $graph_opts .= rrdtool_function_set_font('unit', '', $themefonts); /* watermark fonts */ if (isset($rrdversion) && $rrdversion > 1.3) { $graph_opts .= rrdtool_function_set_font('watermark', '', $themefonts); } return $graph_opts; } function rrdtool_set_font($type, $no_legend = '', $themefonts = array()) { return rrdtool_function_set_font($type, $no_legend, $themefonts); } function rrdtool_function_set_font($type, $no_legend, $themefonts) { global $config; if (read_config_option('font_method') == 0) { if (read_user_setting('custom_fonts') == 'on') { $font = read_user_setting($type . '_font'); $size = read_user_setting($type . '_size'); } else { $font = read_config_option($type . '_font'); $size = read_config_option($type . '_size'); } } elseif (isset($themefonts[$type]['font']) && isset($themefonts[$type]['size'])) { $font = $themefonts[$type]['font']; $size = $themefonts[$type]['size']; } else { return; } if ($font != '') { /* verifying all possible pango font params is too complex to be tested here * so we only escape the font */ $font = cacti_escapeshellarg($font); } if ($type == 'title') { if (!empty($no_legend)) { $size = $size * .70; } elseif (($size <= 4) || !is_numeric($size)) { $size = 12; } } elseif (($size <= 4) || !is_numeric($size)) { $size = 8; } return '--font ' . strtoupper($type) . ':' . floatval($size) . ':' . $font . RRD_NL; } function rrd_substitute_host_query_data($txt_graph_item, $graph, $graph_item) { /* replace host variables in graph elements */ $host_id = 0; if (empty($graph['host_id'])) { /* if graph has no associated host determine host_id from graph item data source */ if (isset($graph_item['local_data_id']) && !empty($graph_item['local_data_id'])) { $host_id = db_fetch_cell_prepared('SELECT host_id FROM data_local WHERE id = ?', array($graph_item['local_data_id'])); } } else { $host_id = $graph['host_id']; } $txt_graph_item = substitute_host_data($txt_graph_item, '|','|', $host_id); /* replace query variables in graph elements */ if (preg_match('/\|query_[a-zA-Z0-9_]+\|/', $txt_graph_item)) { /* default to the graph data query information from the graph */ if (!isset($graph_item['local_data_id']) || empty($graph_item['local_data_id'])) { $txt_graph_item = substitute_snmp_query_data($txt_graph_item, $graph['host_id'], $graph['snmp_query_id'], $graph['snmp_index']); /* use the data query information from the data source if possible */ } else { $data_local = db_fetch_row_prepared('SELECT snmp_index, snmp_query_id, host_id FROM data_local WHERE id = ?', array($graph_item['local_data_id'])); $txt_graph_item = substitute_snmp_query_data($txt_graph_item, $data_local['host_id'], $data_local['snmp_query_id'], $data_local['snmp_index']); } } /* replace query variables in graph elements */ if (preg_match('/\|input_[a-zA-Z0-9_]+\|/', $txt_graph_item)) { return substitute_data_input_data($txt_graph_item, $graph, $graph_item['local_data_id']); } return $txt_graph_item; } /** given a data source id, return rrdtool info array * @param $data_source_id - data source id * @return - (array) an array containing all data from rrdtool info command */ function rrdtool_function_info($data_source_id) { /* Get the path to rrdtool file */ $data_source_path = get_data_source_path($data_source_id, true); /* Execute rrdtool info command */ $cmd_line = ' info ' . $data_source_path; $output = rrdtool_execute($cmd_line, RRDTOOL_OUTPUT_NULL, RRDTOOL_OUTPUT_STDOUT); if (sizeof($output) == 0) { return false; } /* Parse the output */ $matches = array(); $rrd_info = array('rra' => array(), 'ds' => array()); $output = explode("\n", $output); foreach ($output as $line) { $line = trim($line); if (preg_match('/^ds\[(\S+)\]\.(\S+) = (\S+)$/', $line, $matches)) { $rrd_info['ds'][$matches[1]][$matches[2]] = trim($matches[3], '"'); } elseif (preg_match('/^rra\[(\S+)\]\.(\S+)\[(\S+)\]\.(\S+) = (\S+)$/', $line, $matches)) { $rrd_info['rra'][$matches[1]][$matches[2]][$matches[3]][$matches[4]] = trim($matches[5], '"'); } elseif (preg_match('/^rra\[(\S+)\]\.(\S+) = (\S+)$/', $line, $matches)) { $rrd_info['rra'][$matches[1]][$matches[2]] = trim($matches[3], '"'); } elseif (preg_match("/^(\S+) = \"(\S+)\"$/", $line, $matches)) { $rrd_info[$matches[1]] = trim($matches[2], '"'); } elseif (preg_match('/^(\S+) = (\S+)$/', $line, $matches)) { $rrd_info[$matches[1]] = trim($matches[2], '"'); } } $output = ''; $matches = array(); /* Return parsed values */ return $rrd_info; } /** rrdtool_cacti_compare compares cacti information to rrd file information * @param $data_source_id the id of the data source * @param $info rrdtool info as an array * @return array build like $info defining html class in case of error */ function rrdtool_cacti_compare($data_source_id, &$info) { global $data_source_types, $consolidation_functions; /* get cacti header information for given data source id */ $cacti_header_array = db_fetch_row_prepared('SELECT local_data_template_data_id, rrd_step, data_source_profile_id FROM data_template_data WHERE local_data_id = ?', array($data_source_id)); /* get cacti DS information */ $cacti_ds_array = db_fetch_assoc_prepared('SELECT data_source_name, data_source_type_id, rrd_heartbeat, rrd_maximum, rrd_minimum FROM data_template_rrd WHERE local_data_id = ?', array($data_source_id)); /* get cacti RRA information */ $cacti_rra_array = db_fetch_assoc_prepared('SELECT dspc.consolidation_function_id AS cf, dsp.x_files_factor AS xff, dspr.steps AS steps, dspr.rows AS rows FROM data_source_profiles AS dsp INNER JOIN data_source_profiles_cf AS dspc ON dsp.id=dspc.data_source_profile_id INNER JOIN data_source_profiles_rra AS dspr ON dsp.id=dspr.data_source_profile_id WHERE dsp.id = ? ORDER BY dspc.consolidation_function_id, dspr.steps', array($cacti_header_array['data_source_profile_id'])); $diff = array(); /* ----------------------------------------------------------------------------------- * header information -----------------------------------------------------------------------------------*/ if ($cacti_header_array['rrd_step'] != $info['step']) { $diff['step'] = __("Required RRD step size is '%s'", $cacti_header_array['rrd_step']); } /* ----------------------------------------------------------------------------------- * data source information -----------------------------------------------------------------------------------*/ if (sizeof($cacti_ds_array) > 0) { $data_local = db_fetch_row_prepared('SELECT host_id, snmp_query_id, snmp_index FROM data_local WHERE id = ?', array($data_source_id) ); $highSpeed = db_fetch_cell_prepared('SELECT field_value FROM host_snmp_cache WHERE host_id = ? AND snmp_query_id = ? AND snmp_index = ? AND field_name="ifHighSpeed"', array($data_local['host_id'], $data_local['snmp_query_id'], $data_local['snmp_index']) ); $ssqdIfSpeed = substitute_snmp_query_data('|query_ifSpeed|', $data_local['host_id'], $data_local['snmp_query_id'], $data_local['snmp_index']); foreach ($cacti_ds_array as $key => $data_source) { $ds_name = $data_source['data_source_name']; /* try to print matching rrd file's ds information */ if (isset($info['ds'][$ds_name]) ) { if (!isset($info['ds'][$ds_name]['seen'])) { $info['ds'][$ds_name]['seen'] = true; } else { continue; } $ds_type = trim($info['ds'][$ds_name]['type'], '"'); if ($data_source_types[$data_source['data_source_type_id']] != $ds_type) { $diff['ds'][$ds_name]['type'] = __("Type for Data Source '%s' should be '%s'", $ds_name, $data_source_types[$data_source['data_source_type_id']]); $diff['tune'][] = $info['filename'] . ' ' . '--data-source-type ' . $ds_name . ':' . $data_source_types[$data_source['data_source_type_id']]; } if ($data_source['rrd_heartbeat'] != $info['ds'][$ds_name]['minimal_heartbeat']) { $diff['ds'][$ds_name]['minimal_heartbeat'] = __("Heartbeat for Data Source '%s' should be '%s'", $ds_name, $data_source['rrd_heartbeat']); $diff['tune'][] = $info['filename'] . ' ' . '--heartbeat ' . $ds_name . ':' . $data_source['rrd_heartbeat']; } if ($data_source['rrd_minimum'] != $info['ds'][$ds_name]['min']) { if ($data_source['rrd_minimum'] == 'U' && $info['ds'][$ds_name]['min'] == 'NaN') { $data_source['rrd_minimum'] = 'NaN'; } else { $diff['ds'][$ds_name]['min'] = __("RRD minimum for Data Source '%s' should be '%s'", $ds_name, $data_source['rrd_minimum']); $diff['tune'][] = $info['filename'] . ' ' . '--minimum ' . $ds_name . ':' . $data_source['rrd_minimum']; } } if ($data_source['rrd_maximum'] != $info['ds'][$ds_name]['max']) { if ($data_source['rrd_maximum'] == '|query_ifSpeed|' || $data_source['rrd_maximum'] == '|query_ifHighSpeed|') { if (!empty($highSpeed)) { $data_source['rrd_maximum'] = $highSpeed * 1000000; } else { $data_source['rrd_maximum'] = $ssqdIfSpeed; } } elseif ($data_source['rrd_maximum'] == '0' || $data_source['rrd_maximum'] == 'U') { $data_source['rrd_maximum'] = 'NaN'; } else { $data_source['rrd_maximum'] = substitute_snmp_query_data($data_source['rrd_maximum'], $data_local['host_id'], $data_local['snmp_query_id'], $data_local['snmp_index']); } if (empty($data_source['rrd_maximum']) || $data_source['rrd_maximum'] == '|query_ifSpeed|') { $data_source['rrd_maximum'] = '10000000000000'; } } if ($data_source['rrd_maximum'] != $info['ds'][$ds_name]['max']) { $diff['ds'][$ds_name]['max'] = __("RRD maximum for Data Source '%s' should be '%s'", $ds_name, $data_source['rrd_maximum']); $diff['tune'][] = $info['filename'] . ' ' . '--maximum ' . $ds_name . ':' . $data_source['rrd_maximum']; } } else { # cacti knows this ds, but the rrd file does not $info['ds'][$ds_name]['type'] = $data_source_types[$data_source['data_source_type_id']]; $info['ds'][$ds_name]['minimal_heartbeat'] = $data_source['rrd_heartbeat']; $info['ds'][$ds_name]['min'] = $data_source['rrd_minimum']; $info['ds'][$ds_name]['max'] = $data_source['rrd_maximum']; $info['ds'][$ds_name]['seen'] = true; $diff['ds'][$ds_name]['error'] = __("DS '%s' missing in RRDfile", $ds_name); } } } /* print all data sources still known to the rrd file (no match to cacti ds will happen here) */ if (sizeof($info['ds']) > 0) { foreach ($info['ds'] as $ds_name => $data_source) { if (!isset($data_source['seen'])) { $diff['ds'][$ds_name]['error'] = __("DS '%s' missing in Cacti definition", $ds_name); } } } /* ----------------------------------------------------------------------------------- * RRA information -----------------------------------------------------------------------------------*/ $resize = true; # assume a resize operation as long as no rra duplicates are found /* scan cacti rra information for duplicates of (CF, STEPS) */ if (sizeof($cacti_rra_array) > 0) { for ($i=0; $i<= sizeof($cacti_rra_array)-1; $i++) { $cf = $cacti_rra_array[$i]['cf']; $steps = $cacti_rra_array[$i]['steps']; foreach($cacti_rra_array as $cacti_rra_id => $cacti_rra) { if ($cf == $cacti_rra['cf'] && $steps == $cacti_rra['steps'] && ($i != $cacti_rra_id)) { $diff['rra'][$i]['error'] = __("Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'", $i, $consolidation_functions[$cf], $steps, $cacti_rra_id); $diff['rra'][$cacti_rra_id]['error'] = __("Cacti RRA '%s' has same CF/steps (%s, %s) as '%s'", $cacti_rra_id, $consolidation_functions[$cf], $steps, $i); $resize = false; } } } } /* scan file rra information for duplicates of (CF, PDP_PER_ROWS) */ if (sizeof($info['rra']) > 0) { for ($i=0; $i<= sizeof($info['rra'])-1; $i++) { $cf = $info['rra'][$i]['cf']; $steps = $info['rra'][$i]['pdp_per_row']; foreach($info['rra'] as $file_rra_id => $file_rra) { if (($cf == $file_rra['cf']) && ($steps == $file_rra['pdp_per_row']) && ($i != $file_rra_id)) { $diff['rra'][$i]['error'] = __("File RRA '%s' has same CF/steps (%s, %s) as '%s'", $i, $cf, $steps, $file_rra_id); $diff['rra'][$file_rra_id]['error'] = __("File RRA '%s' has same CF/steps (%s, %s) as '%s'", $file_rra_id, $cf, $steps, $i); $resize = false; } } } } /* print all RRAs known to cacti and add those from matching rrd file */ if (sizeof($cacti_rra_array) > 0) { foreach($cacti_rra_array as $cacti_rra_id => $cacti_rra) { /* find matching rra info from rrd file * do NOT assume, that rra sequence is kept ($cacti_rra_id != $file_rra_id may happen)! * Match is assumed, if CF and STEPS/PDP_PER_ROW match; so go for it */ foreach ($info['rra'] as $file_rra_id => $file_rra) { /* in case of mismatch, $file_rra['pdp_per_row'] might not be defined */ if (!isset($file_rra['pdp_per_row'])) { $file_rra['pdp_per_row'] = 0; } if ($consolidation_functions[$cacti_rra['cf']] == trim($file_rra['cf'], '"') && $cacti_rra['steps'] == $file_rra['pdp_per_row']) { if (isset($info['rra'][$file_rra_id]['seen'])) { continue; } # mark both rra id's as seen to avoid printing them as non-matching $info['rra'][$file_rra_id]['seen'] = true; $cacti_rra_array[$cacti_rra_id]['seen'] = true; if ($cacti_rra['xff'] != $file_rra['xff']) { $diff['rra'][$file_rra_id]['xff'] = __("XFF for cacti RRA id '%s' should be '%s'", $cacti_rra_id, $cacti_rra['xff']); } if ($cacti_rra['rows'] != $file_rra['rows'] && $resize) { $diff['rra'][$file_rra_id]['rows'] = __("Number of rows for Cacti RRA id '%s' should be '%s'", $cacti_rra_id, $cacti_rra['rows']); if ($cacti_rra['rows'] > $file_rra['rows']) { $diff['resize'][] = $info['filename'] . ' ' . $cacti_rra_id . ' GROW ' . ($cacti_rra['rows'] - $file_rra['rows']); } else { $diff['resize'][] = $info['filename'] . ' ' . $cacti_rra_id . ' SHRINK ' . ($file_rra['rows'] - $cacti_rra['rows']); } } } } # if cacti knows an rra that has no match, consider this as an error if (!isset($cacti_rra_array[$cacti_rra_id]['seen'])) { # add to info array for printing, the index $cacti_rra_id has no real meaning $info['rra']['cacti_' . $cacti_rra_id]['cf'] = $consolidation_functions[$cacti_rra['cf']]; $info['rra']['cacti_' . $cacti_rra_id]['steps'] = $cacti_rra['steps']; $info['rra']['cacti_' . $cacti_rra_id]['xff'] = $cacti_rra['xff']; $info['rra']['cacti_' . $cacti_rra_id]['rows'] = $cacti_rra['rows']; $diff['rra']['cacti_' . $cacti_rra_id]['error'] = __("RRA '%s' missing in RRDfile", $cacti_rra_id); } } } # if the rrd file has an rra that has no cacti match, consider this as an error if (sizeof($info['rra']) > 0) { foreach ($info['rra'] as $file_rra_id => $file_rra) { if (!isset($info['rra'][$file_rra_id]['seen'])) { $diff['rra'][$file_rra_id]['error'] = __("RRA '%s' missing in Cacti definition", $file_rra_id); } } } return $diff; } /** take output from rrdtool info array and build html table * @param array $info_array - array of rrdtool info data * @param array $diff - array of differences between definition and current rrd file settings * @return string - html code */ function rrdtool_info2html($info_array, $diff=array()) { global $config; include_once($config['library_path'] . '/time.php'); html_start_box(__('RRD File Information'), '100%', '', '3', 'center', ''); # header data $header_items = array( array('display' =>__('Header'), 'align' => 'left'), array('display' => '', 'align' => 'left') ); html_header($header_items, 1); # add human readable timestamp if (isset($info_array['last_update'])) { $info_array['last_update'] .= ' [' . date(CACTI_DATE_TIME_FORMAT, $info_array['last_update']) . ']'; } $loop = array( 'filename' => $info_array['filename'], 'rrd_version' => $info_array['rrd_version'], 'step' => $info_array['step'], 'last_update' => $info_array['last_update']); foreach ($loop as $key => $value) { form_alternate_row($key, true); form_selectable_cell($key, 'key'); form_selectable_cell($value, 'value', '', ((isset($diff[$key]) ? 'color:red' : ''))); form_end_row(); } html_end_box(); # data sources $header_items = array( array('display' => __('Data Source Items'), 'align' => 'left'), array('display' => __('Type'), 'align' => 'left'), array('display' => __('Minimal Heartbeat'), 'align' => 'right'), array('display' => __('Min'), 'align' => 'right'), array('display' => __('Max'), 'align' => 'right'), array('display' => __('Last DS'), 'align' => 'right'), array('display' => __('Value'), 'align' => 'right'), array('display' => __('Unknown Sec'), 'align' => 'right') ); html_start_box('', '100%', '', '3', 'center', ''); html_header($header_items, 1); if (sizeof($info_array['ds'])) { foreach ($info_array['ds'] as $key => $value) { form_alternate_row('line' . $key, true); form_selectable_cell($key, 'name', '', (isset($diff['ds'][$key]['error']) ? 'color:red' : '')); form_selectable_cell((isset($value['type']) ? $value['type'] : ''), 'type', '', (isset($diff['ds'][$key]['type']) ? 'color:red' : '')); form_selectable_cell((isset($value['minimal_heartbeat']) ? $value['minimal_heartbeat'] : ''), 'minimal_heartbeat', '', (isset($diff['ds'][$key]['minimal_heartbeat']) ? 'color:red, text-align:right' : 'text-align:right')); form_selectable_cell((isset($value['min']) && is_numeric($value['min']) ? number_format_i18n($value['min']): (isset($value['min']) ? $value['min']:'')), 'min', '', (isset($diff['ds'][$key]['min']) ? 'color:red;text-align:right' : 'text-align:right')); form_selectable_cell((isset($value['max']) && is_numeric($value['max']) ? number_format_i18n($value['max']): (isset($value['max']) ? $value['max']:'')), 'max', '', (isset($diff['ds'][$key]['max']) ? 'color:red;text-align:right' : 'text-align:right')); form_selectable_cell((isset($value['last_ds']) && is_numeric($value['last_ds']) ? number_format_i18n($value['last_ds']) : (isset($value['last_ds']) ? $value['last_ds']:'')), 'last_ds', '', 'text-align:right'); form_selectable_cell((isset($value['value']) ? is_numeric($value['value']) ? number_format_i18n($value['value']) : $value['value'] : ''), 'value', '', 'text-align:right'); form_selectable_cell((isset($value['unknown_sec']) && is_numeric($value['unknown_sec']) ? number_format_i18n($value['unknown_sec']) : (isset($value['unknown_sec']) ? $value['unknown_sec']:'')), 'unknown_sec', '', 'text-align:right'); form_end_row(); } } html_end_box(); # round robin archive $header_items = array( array('display' => __('Round Robin Archive'), 'align' => 'left'), array('display' => __('Consolidation Function'), 'align' => 'left'), array('display' => __('Rows'), 'align' => 'right'), array('display' => __('Cur Row'), 'align' => 'right'), array('display' => __('PDP per Row'), 'align' => 'right'), array('display' => __('X-Files Factor'), 'align' => 'right'), array('display' => __('CDP Prep Value (0)'), 'align' => 'right'), array('display' => __('CDP Unknown Data points (0)'), 'align' => 'right') ); html_start_box('', '100%', '', '3', 'center', ''); html_header($header_items, 1); if (sizeof($info_array['rra'])) { foreach ($info_array['rra'] as $key => $value) { form_alternate_row('line_' . $key, true); form_selectable_cell($key, 'name', '', (isset($diff['rra'][$key]['error']) ? 'color:red' : '')); form_selectable_cell((isset($value['cf']) ? $value['cf'] : ''), 'cf'); form_selectable_cell((isset($value['rows']) ? $value['rows'] : ''), 'rows', '', (isset($diff['rra'][$key]['rows']) ? 'color:red;text-align:right' : 'text-align:right')); form_selectable_cell((isset($value['cur_row']) ? $value['cur_row'] : ''), 'cur_row', '', 'text-align:right'); form_selectable_cell((isset($value['pdp_per_row']) ? $value['pdp_per_row'] : ''), 'pdp_per_row', '', 'text-align:right'); form_selectable_cell((isset($value['xff']) ? floatval($value['xff']) : ''), 'xff', '', (isset($diff['rra'][$key]['xff']) ? 'color:red;text-align:right' : 'text-align:right')); form_selectable_cell((isset($value['cdp_prep'][0]['value']) ? (strtolower($value['cdp_prep'][0]['value']) == 'nan') ? $value['cdp_prep'][0]['value'] : floatval($value['cdp_prep'][0]['value']) : ''), 'value', '', 'text-align:right'); form_selectable_cell((isset($value['cdp_prep'][0]['unknown_datapoints'])? $value['cdp_prep'][0]['unknown_datapoints'] : ''), 'unknown_datapoints', '', 'text-align:right'); form_end_row(); } } html_end_box(); } /** rrdtool_tune - create rrdtool tune/resize commands * html+cli enabled * @param $rrd_file - rrd file name * @param $diff - array of discrepancies between cacti setttings and rrd file info * @param $show_source - only show text+commands or execute all commands, execute is for cli mode only! */ function rrdtool_tune($rrd_file, $diff, $show_source = true) { function print_leaves($array, $nl) { foreach ($array as $key => $line) { if (!is_array($line)) { print $line . $nl; } else { if ($key === 'tune') continue; if ($key === 'resize') continue; print_leaves($line, $nl); } } } $cmd = array(); # for html/cli mode if (!isset($_SERVER['argv'][0]) || isset($_SERVER['REQUEST_METHOD']) || isset($_SERVER['REMOTE_ADDR'])) { $nl = '
    '; } else { $nl = "\n"; } if ($show_source && sizeof($diff)) { # print error descriptions print_leaves($diff, $nl); } if (isset($diff['tune']) && sizeof($diff['tune'])) { # create tune commands foreach ($diff['tune'] as $line) { if ($show_source == true) { print read_config_option('path_rrdtool') . ' tune ' . $line . $nl; } else { rrdtool_execute("tune $line", true, RRDTOOL_OUTPUT_STDOUT); } } } if (isset($diff['resize']) && sizeof($diff['resize'])) { # each resize goes into an extra line foreach ($diff['resize'] as $line) { if ($show_source == true) { print read_config_option('path_rrdtool') . ' resize ' . $line . $nl; print __('rename %s to %s', dirname($rrd_file) . '/resize.rrd', $rrd_file) . $nl; } else { rrdtool_execute("resize $line", true, RRDTOOL_OUTPUT_STDOUT); rename(dirname($rrd_file) . '/resize.rrd', $rrd_file); } } } } /** Given a data source id, check the rrdtool file to the data source definition * @param $data_source_id - data source id * @return - (array) an array containing issues with the rrdtool file definition vs data source */ function rrd_check($data_source_id) { global $rrd_tune_array, $data_source_types; $data_source_name = get_data_source_item_name($rrd_tune_array['data_source_id']); $data_source_type = $data_source_types[$rrd_tune_array['data-source-type']]; $data_source_path = get_data_source_path($rrd_tune_array['data_source_id'], true); } /** Given a data source id, update the rrdtool file to match the data source definition * @param $data_source_id - data source id * @return - 1 success, 2 false */ function rrd_repair($data_source_id) { global $rrd_tune_array, $data_source_types; $data_source_name = get_data_source_item_name($rrd_tune_array['data_source_id']); $data_source_type = $data_source_types[$rrd_tune_array['data-source-type']]; $data_source_path = get_data_source_path($rrd_tune_array['data_source_id'], true); } /** add a (list of) datasource(s) to an (array of) rrd file(s) * @param array $file_array - array of rrd files * @param array $ds_array - array of datasouce parameters * @param bool $debug - debug mode * @return mixed - success (bool) or error message (array) */ function rrd_datasource_add($file_array, $ds_array, $debug) { global $data_source_types, $consolidation_functions; $rrdtool_pipe = rrd_init(); /* iterate all given rrd files */ foreach ($file_array as $file) { /* create a DOM object from an rrdtool dump */ $dom = new domDocument; $dom->loadXML(rrdtool_execute("dump $file", false, RRDTOOL_OUTPUT_STDOUT, $rrdtool_pipe, 'UTIL')); if (!$dom) { $check['err_msg'] = __('Error while parsing the XML of rrdtool dump'); return $check; } /* rrdtool dump depends on rrd file version: * version 0001 => RRDtool 1.0.x * version 0003 => RRDtool 1.2.x, 1.3.x, 1.4.x, 1.5.x, 1.6.x */ $version = trim($dom->getElementsByTagName('version')->item(0)->nodeValue); /* now start XML processing */ foreach ($ds_array as $ds) { /* first, append the strcuture in the rrd header */ if ($ds['type'] === $data_source_types[DATA_SOURCE_TYPE_COMPUTE]) { rrd_append_compute_ds($dom, $version, $ds['name'], $ds['type'], $ds['cdef']); } else { rrd_append_ds($dom, $version, $ds['name'], $ds['type'], $ds['heartbeat'], $ds['min'], $ds['max']); } /* now work on the structure as part of the tree */ rrd_append_cdp_prep_ds($dom, $version); /* add alues to the tree */ rrd_append_value($dom); } if ($debug) { echo $dom->saveXML(); } else { /* for rrdtool restore, we need a file, so write the XML to disk */ $xml_file = $file . '.xml'; $rc = $dom->save($xml_file); /* verify, if write was successful */ if ($rc === false) { $check['err_msg'] = __('ERROR while writing XML file: %s', $xml_file); return $check; } else { /* are we allowed to write the rrd file? */ if (is_writable($file)) { /* restore the modified XML to rrd */ rrdtool_execute("restore -f $xml_file $file", false, RRDTOOL_OUTPUT_STDOUT, $rrdtool_pipe, 'UTIL'); /* scratch that XML file to avoid filling up the disk */ unlink($xml_file); cacti_log('Added Data Source(s) to RRDfile: ' . $file, false, 'UTIL'); } else { $check['err_msg'] = __('ERROR: RRDfile %s not writeable', $file); return $check; } } } } rrd_close($rrdtool_pipe); return true; } /** delete a (list of) rra(s) from an (array of) rrd file(s) * @param array $file_array - array of rrd files * @param array $rra_array - array of rra parameters * @param bool $debug - debug mode * @return mixed - success (bool) or error message (array) */ function rrd_rra_delete($file_array, $rra_array, $debug) { $rrdtool_pipe = ''; /* iterate all given rrd files */ foreach ($file_array as $file) { /* create a DOM document from an rrdtool dump */ $dom = new domDocument; $dom->loadXML(rrdtool_execute("dump $file", false, RRDTOOL_OUTPUT_STDOUT, $rrdtool_pipe, 'UTIL')); if (!$dom) { $check['err_msg'] = __('Error while parsing the XML of RRDtool dump'); return $check; } /* now start XML processing */ foreach ($rra_array as $rra) { rrd_delete_rra($dom, $rra, $debug); } if ($debug) { echo $dom->saveXML(); } else { /* for rrdtool restore, we need a file, so write the XML to disk */ $xml_file = $file . '.xml'; $rc = $dom->save($xml_file); /* verify, if write was successful */ if ($rc === false) { $check['err_msg'] = __('ERROR while writing XML file: %s', $xml_file); return $check; } else { /* are we allowed to write the rrd file? */ if (is_writable($file)) { /* restore the modified XML to rrd */ rrdtool_execute("restore -f $xml_file $file", false, RRDTOOL_OUTPUT_STDOUT, $rrdtool_pipe, 'UTIL'); /* scratch that XML file to avoid filling up the disk */ unlink($xml_file); cacti_log('Deleted RRA(s) from RRDfile: ' . $file, false, 'UTIL'); } else { $check['err_msg'] = __('ERROR: RRDfile %s not writeable', $file); return $check; } } } } rrd_close($rrdtool_pipe); return true; } /** clone a (list of) rra(s) from an (array of) rrd file(s) * @param array $file_array - array of rrd files * @param string $cf - new consolidation function * @param array $rra_array - array of rra parameters * @param bool $debug - debug mode * @return mixed - success (bool) or error message (array) */ function rrd_rra_clone($file_array, $cf, $rra_array, $debug) { $rrdtool_pipe = ''; /* iterate all given rrd files */ foreach ($file_array as $file) { /* create a DOM document from an rrdtool dump */ $dom = new domDocument; $dom->loadXML(rrdtool_execute("dump $file", false, RRDTOOL_OUTPUT_STDOUT, $rrdtool_pipe, 'UTIL')); if (!$dom) { $check['err_msg'] = __('Error while parsing the XML of RRDtool dump'); return $check; } /* now start XML processing */ foreach ($rra_array as $rra) { rrd_copy_rra($dom, $cf, $rra, $debug); } if ($debug) { echo $dom->saveXML(); } else { /* for rrdtool restore, we need a file, so write the XML to disk */ $xml_file = $file . '.xml'; $rc = $dom->save($xml_file); /* verify, if write was successful */ if ($rc === false) { $check['err_msg'] = __('ERROR while writing XML file: %s', $xml_file); return $check; } else { /* are we allowed to write the rrd file? */ if (is_writable($file)) { /* restore the modified XML to rrd */ rrdtool_execute("restore -f $xml_file $file", false, RRDTOOL_OUTPUT_STDOUT, $rrdtool_pipe, 'UTIL'); /* scratch that XML file to avoid filling up the disk */ unlink($xml_file); cacti_log('Deleted RRA(s) from RRDfile: ' . $file, false, 'UTIL'); } else { $check['err_msg'] = __('ERROR: RRDfile %s not writeable', $file); return $check; } } } } rrd_close($rrdtool_pipe); return true; } /** appends a subtree to an RRD XML structure * @param object $dom - the DOM object, where the RRD XML is stored * @param string $version- rrd file version * @param string $name - name of the new ds * @param string $type - type of the new ds * @param int $min_hb - heartbeat of the new ds * @param string $min - min value of the new ds or [NaN|U] * @param string $max - max value of the new ds or [NaN|U] * @return object - modified DOM */ function rrd_append_ds($dom, $version, $name, $type, $min_hb, $min, $max) { /* rrdtool version dependencies */ if ($version === RRD_FILE_VERSION1) { $last_ds = 'U'; } elseif ($version === RRD_FILE_VERSION3) { $last_ds = 'UNKN'; } /* create subtree */ $new_dom = new DOMDocument; /* pretty print */ $new_dom->formatOutput = true; /* this defines the new node structure */ $new_dom->loadXML(" $name $type $min_hb $min $max $last_ds 0.0000000000e+00 0 "); /* create a node element from new document */ $new_node = $new_dom->getElementsByTagName('ds')->item(0); #echo $new_dom->saveXML(); # print new node /* get XPATH notation required for positioning */ #$xpath = new DOMXPath($dom); /* get XPATH for entry where new node will be inserted * which is the entry */ #$insert = $xpath->query('/rrd/rra')->item(0); $insert = $dom->getElementsByTagName('rra')->item(0); /* import the new node */ $new_node = $dom->importNode($new_node, true); /* and insert it at the correct place */ $insert->parentNode->insertBefore($new_node, $insert); } /** COMPUTE DS: appends a subtree to an RRD XML structure * @param object $dom - the DOM object, where the RRD XML is stored * @param string $version- rrd file version * @param string $name - name of the new ds * @param string $type - type of the new ds * @param int $cdef - the cdef rpn used for COMPUTE * @return object - modified DOM */ function rrd_append_compute_ds($dom, $version, $name, $type, $cdef) { /* rrdtool version dependencies */ if ($version === RRD_FILE_VERSION1) { $last_ds = 'U'; } elseif ($version === RRD_FILE_VERSION3) { $last_ds = 'UNKN'; } /* create subtree */ $new_dom = new DOMDocument; /* pretty print */ $new_dom->formatOutput = true; /* this defines the new node structure */ $new_dom->loadXML(" $name $type $cdef $last_ds 0.0000000000e+00 0 "); /* create a node element from new document */ $new_node = $new_dom->getElementsByTagName('ds')->item(0); /* get XPATH notation required for positioning */ #$xpath = new DOMXPath($dom); /* get XPATH for entry where new node will be inserted * which is the entry */ #$insert = $xpath->query('/rrd/rra')->item(0); $insert = $dom->getElementsByTagName('rra')->item(0); /* import the new node */ $new_node = $dom->importNode($new_node, true); /* and insert it at the correct place */ $insert->parentNode->insertBefore($new_node, $insert); } /** append a subtree to the subtrees of a RRD XML structure * @param object $dom - the DOM object, where the RRD XML is stored * @param string $version - rrd file version * @return object - the modified DOM object */ function rrd_append_cdp_prep_ds($dom, $version) { /* get all entries */ #$cdp_prep_list = $xpath->query('/rrd/rra/cdp_prep'); $cdp_prep_list = $dom->getElementsByTagName('rra')->item(0)->getElementsByTagName('cdp_prep'); /* get XPATH notation required for positioning */ #$xpath = new DOMXPath($dom); /* get XPATH for source entry */ #$src_ds = $xpath->query('/rrd/rra/cdp_prep/ds')->item(0); $src_ds = $dom->getElementsByTagName('rra')->item(0)->getElementsByTagName('cdp_prep')->item(0)->getElementsByTagName('ds')->item(0); /* clone the source ds entry to preserve RRDtool notation */ $new_ds = $src_ds->cloneNode(true); /* rrdtool version dependencies */ if ($version === RRD_FILE_VERSION3) { $new_ds->getElementsByTagName('primary_value')->item(0)->nodeValue = ' NaN '; $new_ds->getElementsByTagName('secondary_value')->item(0)->nodeValue = ' NaN '; } /* the new node always has default entries */ $new_ds->getElementsByTagName('value')->item(0)->nodeValue = ' NaN '; $new_ds->getElementsByTagName('unknown_datapoints')->item(0)->nodeValue = ' 0 '; /* iterate all entries found, equals 'number of ' times 'number of ' */ if ($cdp_prep_list->length) { foreach ($cdp_prep_list as $cdp_prep) { /* $cdp_prep now points to the next XML Element * and append new ds entry at end of child list */ $cdp_prep->appendChild($new_ds); } } } /** append a alue element to the subtrees of a RRD XML structure * @param object $dom - the DOM object, where the RRD XML is stored * @return object - the modified DOM object */ function rrd_append_value($dom) { /* get XPATH notation required for positioning */ #$xpath = new DOMXPath($dom); /* get all entries */ #$itemList = $xpath->query('/rrd/rra/database/row'); $itemList = $dom->getElementsByTagName('row'); /* create entry to preserve RRDtool notation */ $new_v = $dom->createElement('v', ' NaN '); /* iterate all entries found, equals 'number of ' times 'number of ' */ if ($itemList->length) { foreach ($itemList as $item) { /* $item now points to the next XML Element * and append new ds entry at end of child list */ $item->appendChild($new_v); } } } /** delete an subtree from the XML structure * @param object $dom - the DOM document, where the RRD XML is stored * @param array $rra_parm - a single rra parameter set, given by the user * @return object - the modified DOM object */ function rrd_delete_rra($dom, $rra_parm) { /* find all RRA DOMNodes */ $rras = $dom->getElementsByTagName('rra'); /* iterate all entries found */ $nb = $rras->length; for ($pos = 0; $pos < $nb; $pos++) { /* retrieve all RRA DOMNodes one by one */ $rra = $rras->item($pos); $cf = $rra->getElementsByTagName('cf')->item(0)->nodeValue; $pdp_per_row = $rra->getElementsByTagName('pdp_per_row')->item(0)->nodeValue; $xff = $rra->getElementsByTagName('xff')->item(0)->nodeValue; $rows = $rra->getElementsByTagName('row')->length; if ($cf == $rra_parm['cf'] && $pdp_per_row == $rra_parm['pdp_per_row'] && $xff == $rra_parm['xff'] && $rows == $rra_parm['rows']) { print(__("RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) removed from RRD file\n", $cf, $rows, $pdp_per_row, $xff)); /* we need the parentNode for removal operation */ $parent = $rra->parentNode; $parent->removeChild($rra); break; /* do NOT accidentally remove more than one element, else loop back to forth */ } } return $dom; } /** clone an subtree of the XML structure, replacing cf * @param object $dom - the DOM document, where the RRD XML is stored * @param string $cf - new consolidation function * @param array $rra_parm - a single rra parameter set, given by the user * @return object - the modified DOM object */ function rrd_copy_rra($dom, $cf, $rra_parm) { /* find all RRA DOMNodes */ $rras = $dom->getElementsByTagName('rra'); /* iterate all entries found */ $nb = $rras->length; for ($pos = 0; $pos < $nb; $pos++) { /* retrieve all RRA DOMNodes one by one */ $rra = $rras->item($pos); $_cf = $rra->getElementsByTagName('cf')->item(0)->nodeValue; $_pdp_per_row = $rra->getElementsByTagName('pdp_per_row')->item(0)->nodeValue; $_xff = $rra->getElementsByTagName('xff')->item(0)->nodeValue; $_rows = $rra->getElementsByTagName('row')->length; if ($_cf == $rra_parm['cf'] && $_pdp_per_row == $rra_parm['pdp_per_row'] && $_xff == $rra_parm['xff'] && $_rows == $rra_parm['rows']) { print(__("RRA (CF=%s, ROWS=%d, PDP_PER_ROW=%d, XFF=%1.2f) adding to RRD file\n", $cf, $_rows, $_pdp_per_row, $_xff)); /* we need the parentNode for append operation */ $parent = $rra->parentNode; /* get a clone of the matching RRA */ $new_rra = $rra->cloneNode(true); /* and find the 'old' cf */ #$old_cf = $new_rra->getElementsByTagName('cf')->item(0); /* now replace old cf with new one */ #$old_cf->childNodes->item(0)->replaceData(0,20,$cf); $new_rra->getElementsByTagName('cf')->item(0)->nodeValue = $cf; /* append new rra entry at end of the list */ $parent->appendChild($new_rra); break; /* do NOT accidentally clone more than one element, else loop back to forth */ } } return $dom; } function rrdtool_create_error_image($string, $width = '', $height = '') { global $config; /* put image in buffer */ ob_start(); $image_data = false; $font_color = '000000'; $font_size = 8; $back_color = 'F3F3F3'; $shadea = 'CBCBCB'; $shadeb = '999999'; if ($config['cacti_server_os'] == 'unix') { $font_file = '/usr/share/fonts/dejavu/DejaVuSans.ttf'; } else { $font_file = 'C:/Windows/Fonts/Arial.ttf'; } $themefile = $config['base_path'] . '/include/themes/' . get_selected_theme() . '/rrdtheme.php'; if (file_exists($themefile) && is_readable($themefile)) { include($themefile); if (isset($rrdfonts['legend']['size'])) { $font_size = $rrdfonts['legend']['size']; } if (isset($rrdcolors['font'])) { $font_color = $rrdcolors['font']; } if (isset($rrdcolors['canvas'])) { $back_color = $rrdcolors['canvas']; } if (isset($rrdcolors['shadea'])) { $shadea = $rrdcolors['shadea']; } if (isset($rrdcolors['shadeb'])) { $shadeb = $rrdcolors['shadeb']; } } $image = imagecreatetruecolor(450, 200); imagesavealpha($image, true); /* create a transparent color */ $transparent = imagecolorallocatealpha($image, 0, 0, 0, 127); imagefill($image, 0, 0, $transparent); /* background the entire image with the frame */ list($red, $green, $blue) = sscanf($shadeb, '%02x%02x%02x'); $shadeb = imagecolorallocate($image, $red, $green, $blue); imagefill($image, 0, 0, $shadeb); /* set the background color */ list($red, $green, $blue) = sscanf($shadea, '%02x%02x%02x'); $shadea = imagecolorallocate($image, $red, $green, $blue); imagefilledrectangle($image, 1, 1, 448, 198, $shadea); /* set the background color */ list($red, $green, $blue) = sscanf($back_color, '%02x%02x%02x'); $back_color = imagecolorallocate($image, $red, $green, $blue); imagefilledrectangle($image, 2, 2, 447, 197, $back_color); /* allocate the image */ $logo = imagecreatefrompng($config['base_path'] . '/images/cacti_error_image.png'); /* merge the two images */ imagecopy($image, $logo, 0, 0, 0, 0, 450, 200); /* set the background color */ list($red, $green, $blue) = sscanf($font_color, '%02x%02x%02x'); $text_color = imagecolorallocate($image, $red, $green, $blue); /* see the size of the string */ $string = trim($string); $maxstring = (450 - (125 + 10)) / ($font_size / 1.4); $stringlen = strlen($string) * $font_size; $padding = 5; if ($stringlen > $maxstring) { $cstring = wordwrap($string, $maxstring, "\n", true); $strings = explode("\n", $cstring); $strings = array_reverse($strings); $lines = sizeof($strings); } elseif (strlen(trim($string)) == 0) { $strings = array(__('Unknown RRDtool Error')); $lines = 1; } else { $strings = array($string); $lines = 1; } /* setup the text position, image is 450x200, we start at 125 pixels from the left */ $xpos = 125; $texth = ($lines * $font_size + (($lines - 1) * $padding)); $ypos = round((200 / 2) + ($texth / 2),0); /* set the font of the image */ if (file_exists($font_file) && is_readable($font_file) && function_exists('imagettftext')) { foreach($strings as $string) { if (trim($string) != '') { if (!imagettftext($image, $font_size, 0, $xpos, $ypos, $text_color, $font_file, $string)) { cacti_log('TTF text overlay failed'); } $ypos -= ($font_size + $padding); } } } else { foreach($strings as $string) { if (trim($string) != '') { if (!imagestring($image, $font_size, $xpos, $ypos, $string, $text_color)) { cacti_log('Text overlay failed'); } $ypos -= ($font_size + $padding); } } } if ($width != '' && $height != '') { $nimage = imagecreatetruecolor($width, $height); imagecopyresized($nimage, $image, 0, 0, 0, 0, $width, $height, 450, 200); /* create the image */ imagepng($image); } else { /* create the image */ imagepng($image); } /* get the image from the buffer */ $image_data = ob_get_contents(); /* destroy the image object */ imagedestroy($image); imagedestroy($logo); if (isset($nimage)) { imagedestroy($nimage); } /* flush the buffer */ ob_end_clean(); return $image_data; } cacti-1.1.38/lib/reports.php0000664000175000017500000014452513264740213015245 0ustar tromantroman $array) { if (!preg_match('/^hidden/', $array['method']) && !preg_match('/^spacer/', $array['method'])) { $save[$field] = $report[$field]; } } /* duplicate to your id */ $save['user_id'] = $_SESSION['sess_user_id']; /* substitute the title variable */ $save['name'] = str_replace('', $report['name'], $_title); /* create new rule */ $save['enabled'] = ''; $save['id'] = 0; $reports_id = sql_save($save, 'reports'); /* create new rule items */ if (sizeof($reports_items) > 0) { foreach ($reports_items as $reports_item) { $save = $reports_item; $save['id'] = 0; $save['report_id'] = $reports_id; $reports_item_id = sql_save($save, 'reports_items'); } } } /** reports_date_time_format fetches the date/time formatting information for current user * @return string - string defining the datetime format specific to this user */ function reports_date_time_format() { $datechar = array( GDC_HYPHEN => '-', GDC_SLASH => '/', GDC_DOT => '.' ); $graph_date = ''; /* setup date format */ $date_fmt = read_config_option('default_date_format'); $dateCharSetting = read_config_option('default_datechar'); if (empty($dateCharSetting)) { $dateCharSetting = GDC_SLASH; } $datecharacter = $datechar[$dateCharSetting]; switch ($date_fmt) { case GD_MO_D_Y: $graph_date = 'm' . $datecharacter . 'd' . $datecharacter . 'Y H:i:s'; break; case GD_MN_D_Y: $graph_date = 'M' . $datecharacter . 'd' . $datecharacter . 'Y H:i:s'; break; case GD_D_MO_Y: $graph_date = 'd' . $datecharacter . 'm' . $datecharacter . 'Y H:i:s'; break; case GD_D_MN_Y: $graph_date = 'd' . $datecharacter . 'M' . $datecharacter . 'Y H:i:s'; break; case GD_Y_MO_D: $graph_date = 'Y' . $datecharacter . 'm' . $datecharacter . 'd H:i:s'; break; case GD_Y_MN_D: $graph_date = 'Y' . $datecharacter . 'M' . $datecharacter . 'd H:i:s'; break; } reports_log(__FUNCTION__ . ', datefmt: ' . $graph_date, false, 'REPORTS TRACE', POLLER_VERBOSITY_MEDIUM); return $graph_date; } /** reports_interval_start computes the next start time for the given set of parameters * @param int $interval - given interval * @param int $count - given repeat count * @param int $offset - offset in seconds to be added to the new start time * @param int $timestamp - current start time for report * @return - new timestamp */ function reports_interval_start($interval, $count, $offset, $timestamp) { global $reports_interval; reports_log(__FUNCTION__ . ', interval: ' . $reports_interval[$interval] . ' count: ' . $count . ' offset: ' . $offset . ' timestamp: ' . date('Y/m/d H:i:s', $timestamp), false, 'REPORTS TRACE', POLLER_VERBOSITY_MEDIUM); switch ($interval) { case REPORTS_SCHED_INTVL_MINUTE: # add $count minutes to current mailtime $ts = utime_add($timestamp,0,0,0,0,$count,$offset); break; case REPORTS_SCHED_INTVL_HOUR: # add $count hours to current mailtime $ts = utime_add($timestamp,0,0,0,$count,0,$offset); break; case REPORTS_SCHED_INTVL_DAY: # add $count days to current mailtime $ts = utime_add($timestamp,0,0,$count,0,0,$offset); break; case REPORTS_SCHED_INTVL_WEEK: # add $count weeks = 7*$count days to current mailtime $ts = utime_add($timestamp,0,0,7*$count,0,0,$offset); break; case REPORTS_SCHED_INTVL_MONTH_DAY: # add $count months to current mailtime $ts = utime_add($timestamp,0,$count,0,0,0,$offset); break; case REPORTS_SCHED_INTVL_MONTH_WEEKDAY: # add $count months to current mailtime, but if this is the nth weekday, it must be the same nth weekday in the new month # e.g. if this is currently the 3rd Monday of current month # ist must be the 3rd Monday of the new month as well $weekday = date('l', $timestamp); $day_of_month = date('j', $timestamp); $nth_weekday = ceil($day_of_month/7); $date_str = '+' . $count . ' months'; $month_base = strtotime($date_str, $timestamp); $new_month = mktime(date('H', $month_base), date('i', $month_base), date('s', $month_base), date('m', $month_base), 1, date('Y', $month_base)); $date_str = '+' . ($nth_weekday -1) . ' week ' . $weekday; $base = strtotime($date_str, $new_month); $ts = mktime(date('H', $month_base), date('i', $month_base), date('s', $month_base), date('m', $base), date('d', $base), date('Y', $base)); break; case REPORTS_SCHED_INTVL_YEAR: # add $count years to current mailtime $ts = utime_add($timestamp,$count,0,0,0,0,$offset); break; default: $ts = 0; break; } $now = time(); if ($ts < $now) { $ts = reports_interval_start($interval, $count, $offset, $now); } return $ts; } /** utime_add add offsets to given timestamp * @param int $timestamp- base timestamp * @param int $yr - offset in years * @param int $mon - offset in months * @param int $day - offset in days * @param int $hr - offset in hours * @param int $min - offset in minutes * @param int $sec - offset in seconds * @return - unix time */ function utime_add($timestamp, $yr=0, $mon=0, $day=0, $hr=0, $min=0, $sec=0) { $dt = localtime($timestamp, true); $unixnewtime = mktime( $dt['tm_hour']+$hr, $dt['tm_min']+$min, $dt['tm_sec']+$sec, $dt['tm_mon']+1+$mon, $dt['tm_mday']+$day, $dt['tm_year']+1900+$yr); return $unixnewtime; } /** reports_log - logs a string to Cacti's log file or optionally to the browser @param string $string - the string to append to the log file @param bool $output - whether to output the log line to the browser using pring() or not @param string $environ - tell's from where the script was called from */ function reports_log($string, $output = false, $environ='REPORTS', $level=POLLER_VERBOSITY_NONE) { # if current verbosity >= level of current message, print it if (strstr($string, 'STATS')) { cacti_log($string, $output, 'SYSTEM'); } elseif (REPORTS_DEBUG >= $level) { cacti_log($string, $output, $environ); } } /** generate_report create the complete mail for a single report and send it * @param array $report - complete row of reports table for the report to work upon * @param bool $force - when forced, lastsent time will not be entered (e.g. Send Now) */ function generate_report($report, $force = false) { global $config, $alignment; include_once($config['base_path'] . '/lib/time.php'); include_once($config['base_path'] . '/lib/rrd.php'); reports_log(__FUNCTION__ . ', report_id: ' . $report['id'], false, 'REPORTS TRACE', POLLER_VERBOSITY_MEDIUM); $theme = 'classic'; $body = reports_generate_html($report['id'], REPORTS_OUTPUT_EMAIL, $theme); $time = time(); # get config option for first-day-of-the-week $first_weekdayid = read_user_setting('first_weekdayid', false, false, $report['user_id']); $offset = 0; $graphs = array(); $attachments = array(); while ( true ) { $pos = strpos($body, '', $arr[1]); $local_graph_id = $arr[0]; $timespan = $arr1[0]; $graphs[$local_graph_id . ':' . $timespan] = $local_graph_id; } else { break; } } $user = $report['user_id']; $xport_meta = array(); if (sizeof($graphs)) { foreach($graphs as $key => $local_graph_id) { $arr = explode(':', $key); $timesp = $arr[1]; $timespan = array(); # get start/end time-since-epoch for actual time (now()) and given current-session-timespan get_timespan($timespan, $time, $timesp, $first_weekdayid); # provide parameters for rrdtool graph $graph_data_array = array( 'graph_start' => $timespan['begin_now'], 'graph_end' => $timespan['end_now'], 'graph_width' => $report['graph_width'], 'graph_height' => $report['graph_height'], 'image_format' => 'png', 'graph_theme' => $theme, 'output_flag' => RRDTOOL_OUTPUT_STDOUT, 'disable_cache' => true ); if ($report['thumbnails'] == 'on') { $graph_data_array['graph_nolegend'] = true; } switch($report['attachment_type']) { case REPORTS_TYPE_INLINE_PNG: $attachments[] = array( 'attachment' => @rrdtool_function_graph($local_graph_id, '', $graph_data_array, '', $xport_meta, $user), 'filename' => 'graph_' . $local_graph_id . '.png', 'mime_type' => 'image/png', 'local_graph_id' => $local_graph_id, 'timespan' => $timesp, 'inline' => 'inline' ); break; case REPORTS_TYPE_INLINE_JPG: $attachments[] = array( 'attachment' => png2jpeg(@rrdtool_function_graph($local_graph_id, '', $graph_data_array, '', $xport_meta, $user)), 'filename' => 'graph_' . $local_graph_id . '.jpg', 'mime_type' => 'image/jpg', 'local_graph_id' => $local_graph_id, 'timespan' => $timesp, 'inline' => 'inline' ); break; case REPORTS_TYPE_INLINE_GIF: $attachments[] = array( 'attachment' => png2gif(@rrdtool_function_graph($local_graph_id, '', $graph_data_array, '', $xport_meta, $user)), 'filename' => 'graph_' . $local_graph_id . '.gif', 'mime_type' => 'image/gif', 'local_graph_id' => $local_graph_id, 'timespan' => $timesp, 'inline' => 'inline' ); break; case REPORTS_TYPE_ATTACH_PNG: $attachments[] = array( 'attachment' => @rrdtool_function_graph($local_graph_id, '', $graph_data_array, '', $xport_meta, $user), 'filename' => 'graph_' . $local_graph_id . '.png', 'mime_type' => 'image/png', 'local_graph_id' => $local_graph_id, 'timespan' => $timesp, 'inline' => 'attachment' ); break; case REPORTS_TYPE_ATTACH_JPG: $attachments[] = array( 'attachment' => png2jpeg(@rrdtool_function_graph($local_graph_id, '', $graph_data_array, '', $xport_meta, $user)), 'filename' => 'graph_' . $local_graph_id . '.jpg', 'mime_type' => 'image/jpg', 'local_graph_id' => $local_graph_id, 'timespan' => $timesp, 'inline' => 'attachment' ); break; case REPORTS_TYPE_ATTACH_GIF: $attachments[] = array( 'attachment' => png2gif(@rrdtool_function_graph($local_graph_id, '', $graph_data_array, '', $xport_meta, $user)), 'filename' => 'graph_' . $local_graph_id . '.gif', 'mime_type' => 'image/gif', 'local_graph_id' => $local_graph_id, 'timespan' => $timesp, 'inline' => 'attachment' ); break; case REPORTS_TYPE_INLINE_PNG_LN: $attachments[] = array( 'attachment' => @rrdtool_function_graph($local_graph_id, '', $graph_data_array, '', $xport_meta, $user), 'filename' => '', # LN does not accept filenames for inline attachments 'mime_type' => 'image/png', 'local_graph_id' => $local_graph_id, 'timespan' => $timesp, 'inline' => 'inline' ); break; case REPORTS_TYPE_INLINE_JPG_LN: $attachments[] = array( 'attachment' => png2jpeg(@rrdtool_function_graph($local_graph_id, '', $graph_data_array, '', $xport_meta, $user)), 'filename' => '', # LN does not accept filenames for inline attachments 'mime_type' => 'image/jpg', 'local_graph_id' => $local_graph_id, 'timespan' => $timesp, 'inline' => 'inline' ); break; case REPORTS_TYPE_INLINE_GIF_LN: $attachments[] = array( 'attachment' => png2gif(@rrdtool_function_graph($local_graph_id, '', $graph_data_array, '', $xport_meta, $user)), 'filename' => '', # LN does not accept filenames for inline attachments 'mime_type' => 'image/gif', 'local_graph_id' => $local_graph_id, 'timespan' => $timesp, 'inline' => 'inline' ); break; } } } if ($report['subject'] != '') { $subject = $report['subject']; } else { $subject = $report['name']; } if(!isset($report['bcc'])) { $report['bcc'] = ''; } $v = get_cacti_version(); $headers['User-Agent'] = 'Cacti-Reports-v' . $v; $error = mailer( array($report['from_email'], $report['from_name']), $report['email'], '', $report['bcc'], '', $subject, $body, 'Cacti Reporting Requires and HTML Email Client', $attachments, $headers ); if ($error != '') { if (isset_request_var('id')) { $_SESSION['reports_error'] = "Problems sending Report '" . $report['name'] . "'. Problem with e-mail Subsystem Error is '$error'"; if (!isset_request_var('selected_items')) { raise_message('reports_error'); } } else { reports_log(__FUNCTION__ . ", Problems sending Report '" . $report['name'] . "'. Problem with e-mail Subsystem Error is '$error'", false, 'REPORTS', POLLER_VERBOSITY_LOW); } return false; } elseif (isset($_REQUEST)) { $_SESSION['reports_message'] = "Report '" . $report['name'] . "' Sent Successfully"; if (!isset_request_var('selected_items')) { raise_message('reports_message'); } $int = read_config_option('poller_interval'); if (!$force) { $next = reports_interval_start($report['intrvl'], $report['count'], $report['offset'], $report['mailtime']); $next = floor($next / $int) * $int; db_execute_prepared("UPDATE reports SET mailtime = ?, lastsent = ? WHERE id = ?", array($next, time(), $report['id'])); } else { db_execute_prepared("UPDATE reports SET lastsent = ? WHERE id = ?", array(time(), $report['id'])); } return true; } } /** reports_load_format_file read the format file from disk and determines it's formating * @param string $format_file - the file to read from the formats directory * @param string $output - the html and css output from that file * @param bool $report_tag_included - a boolean that informs the caller if the report tag is present * @return bool - wether or not the format file was processed correctly */ function reports_load_format_file($format_file, &$output, &$report_tag_included, &$theme) { global $config; $contents = array(); if (file_exists($config['base_path'] . '/formats/' . $format_file)) { $contents = file($config['base_path'] . '/formats/' . $format_file); } $output = ''; $report_tag_included = false; if (sizeof($contents)) { foreach($contents as $line) { $line = trim($line); if (substr_count($line, '')) { $report_tag_included = true; } if (substr($line, 0, 1) != '#') { $output .= $line . "\n"; } elseif (strstr($line, 'Theme:') !== false) { $tparts = explode(':', $line); $theme = trim($tparts[1]); } } } else { return false; } return true; } /** * determine, if the given tree has graphs; taking permissions into account * @param int $tree_id - tree id * @param int $branch_id - branch id * @param int $effective_user - user id * @param string $search_key - search key */ function reports_tree_has_graphs($tree_id, $branch_id, $effective_user, $search_key) { global $config; include_once($config['library_path'] . '/html_tree.php'); $sql_where = ''; $sql_swhere = ''; $graphs = array(); $new_graphs = array(); if ($search_key != '') { $sql_swhere = " AND gtg.title_cache REGEXP '" . $search_key . "'"; } $device_id = db_fetch_cell_prepared('SELECT host_id FROM graph_tree_items WHERE id = ? AND graph_tree_id = ?', array($branch_id, $tree_id)); if ($device_id > 0) { $graphs = array_rekey(db_fetch_assoc("SELECT gl.id FROM graph_local AS gl INNER JOIN graph_templates_graph AS gtg ON gtg.local_graph_id=gl.id WHERE gl.host_id = $device_id $sql_swhere"), 'id', 'id'); } else { if ($branch_id > 0) { $sql_where .= ' AND gti.parent=' . $branch_id; } else { $sql_where .= ' AND parent=0'; } $graphs = array_rekey(db_fetch_assoc("SELECT gl.id FROM graph_local AS gl INNER JOIN graph_tree_items AS gti ON gti.local_graph_id=gl.id INNER JOIN graph_templates_graph AS gtg ON gtg.local_graph_id=gti.local_graph_id WHERE gti.local_graph_id>0 AND graph_tree_id=$tree_id $sql_where $sql_swhere"), 'id', 'id'); /* get host graphs first */ $graphs = array_merge($graphs, array_rekey(db_fetch_assoc("SELECT gl.id FROM graph_local AS gl INNER JOIN graph_tree_items AS gti ON gl.host_id=gti.host_id INNER JOIN graph_templates_graph AS gtg ON gtg.local_graph_id=gl.id WHERE gti.graph_tree_id=$tree_id AND gti.host_id>0 $sql_where $sql_swhere"), 'id', 'id')); } /* verify permissions */ if (sizeof($graphs)) { foreach($graphs as $key => $id) { if (!is_graph_allowed($id, $effective_user)) { unset($graphs[$key]); } } } return sizeof($graphs); } /** reports_generate_html print report to html for online verification * @param int $reports_id - id of report report * @param int $output - type of output * @return string - generated html output */ function reports_generate_html($reports_id, $output = REPORTS_OUTPUT_STDOUT, &$theme = '') { global $config, $colors; global $alignment; include_once($config['base_path'] . '/lib/time.php'); $outstr = ''; $report = db_fetch_row_prepared('SELECT * FROM reports WHERE id = ?', array($reports_id)); $reports_items = db_fetch_assoc_prepared('SELECT * FROM reports_items WHERE report_id = ? ORDER BY sequence', array($report['id'])); $format_data = ''; $report_tag = false; $format_ok = false; if ($theme == '') { $theme = 'classic'; } $time = time(); # get config option for first-day-of-the-week $first_weekdayid = read_user_setting('first_weekdayid'); /* process the format file as applicable */ if ($report['cformat'] == 'on') { $format_ok = reports_load_format_file($report['format_file'], $format_data, $report_tag, $theme); } if ($output == REPORTS_OUTPUT_STDOUT) { $format_data = str_replace('', '', $format_data); $format_data = str_replace('', '', $format_data); $format_data = str_replace('', '', $format_data); $format_data = str_replace('', '', $format_data); $format_data = preg_replace('#().*?()#si', '', $format_data); $format_data = str_replace('', '', $format_data); $format_data = str_replace('', '', $format_data); } if ($format_ok && $report_tag) { $include_body = false; } else { $include_body = true; } reports_log(__FUNCTION__ . ', items found: ' . sizeof($reports_items), false, 'REPORTS TRACE', POLLER_VERBOSITY_MEDIUM); if (sizeof($reports_items)) { if ($output == REPORTS_OUTPUT_EMAIL && $include_body) { $outstr .= "\n"; } if ($format_ok) { $outstr .= "\t\n"; } else { $outstr .= "\t
    \n"; } $outstr .= "\t\t\n"; if ($format_ok) { $outstr .= "\t\t\t\n"; $outstr .= "\t\t\n"; # this function should be called only at the appropriate targeted time when in batch mode # but for preview mode we can't use the targeted time # so let's use time() $time = time(); # get config option for first-day-of-the-week $first_weekdayid = read_user_setting('first_weekdayid'); /* don't cache previews */ $_SESSION['custom'] = 'true'; $column = 0; foreach($reports_items as $item) { reports_log(__FUNCTION__ . ', item_id: ' . $item['id'] . ' local_graph_id: ' . $item['local_graph_id'], false, 'REPORTS TRACE', POLLER_VERBOSITY_MEDIUM); if ($item['item_type'] == REPORTS_ITEM_GRAPH) { if (is_graph_allowed($item['local_graph_id'], $report['user_id'])) { $timespan = array(); # get start/end time-since-epoch for actual time (now()) and given current-session-timespan get_timespan($timespan, $time, $item['timespan'], $first_weekdayid); if ($column == 0) { $outstr .= "\t\t\n"; $outstr .= "\t\t\t\n"; $outstr .= "\t\t\n"; } } } elseif ($item['item_type'] == REPORTS_ITEM_TEXT) { $outstr .= "\t\t\n"; if ($format_ok) { $outstr .= "\t\t\t\n"; $outstr .= "\t\t\n"; /* start a new section */ $column = 0; } elseif ($item['item_type'] == REPORTS_ITEM_TREE) { if (is_tree_allowed($item['tree_id'], $report['user_id'])) { if ($item['tree_cascade'] == 'on') { $outstr .= expand_branch($report, $item, $item['branch_id'], $output, $format_ok, $theme); } elseif (reports_tree_has_graphs($item['tree_id'], $item['branch_id'], $report['user_id'], $item['graph_name_regexp'])) { $outstr .= reports_expand_tree($report, $item, $item['branch_id'], $output, $format_ok, $theme, false); } } } else { $outstr .= ''; } } $outstr .= "\t
    \n"; } else { $outstr .= "\t\t\t\n"; } $outstr .= "\t\t\t\t" . $report['name'] . "\n"; $outstr .= "\t\t\t
    \n"; if ($format_ok) { $outstr .= "\t\t\t\t\n"; } else { $outstr .= "\t\t\t\t
    \n"; } $outstr .= "\t\t\t\t\t\n"; } if ($format_ok) { $outstr .= "\t\t\t\t\t\t\n"; if ($report['graph_columns'] > 1) { $column = ($column + 1) % ($report['graph_columns']); } if ($column == 0) { $outstr .= "\t\t\t\t\t\n"; $outstr .= "\t\t\t\t
    \n"; } else { $outstr .= "\t\t\t\t\t\t\n"; } $outstr .= "\t\t\t\t\t\t\t" . reports_graph_image($report, $item, $timespan, $output, $theme) . "\n"; $outstr .= "\t\t\t\t\t\t
    \n"; $outstr .= "\t\t\t
    \n"; } else { $outstr .= "\t\t\t\n"; } $outstr .= "\t\t\t\t" . $item['item_text'] . "\n"; $outstr .= "\t\t\t



    \n"; if ($output == REPORTS_OUTPUT_EMAIL && $include_body) { $outstr .= ''; } } if ($format_ok) { if ($report_tag) { return str_replace('', $outstr, $format_data); } else { return $format_data . "\n" . $outstr; } } else { return $outstr; } } function expand_branch(&$report, &$item, $branch_id, $output, $format_ok, $theme = 'classic') { $outstr = ''; if (reports_tree_has_graphs($item['tree_id'], $branch_id, $report['user_id'], $item['graph_name_regexp'])) { $outstr .= reports_expand_tree($report, $item, $branch_id, $output, $format_ok, $theme, true); } $tree_branches = db_fetch_assoc_prepared('SELECT id FROM graph_tree_items WHERE parent = ? AND host_id = 0 AND local_graph_id = 0 AND graph_tree_id = ? ORDER BY position', array($branch_id, $item['tree_id'])); if (sizeof($tree_branches)) { foreach ($tree_branches as $branch) { $outstr .= expand_branch($report, $item, $branch['id'], $output, $format_ok, $theme); } } return $outstr; } /** * return html code for an embetted image * @param array $report - parameters for this report mail report * @param $item - current graph item * @param $timespan - timespan * @param $output - type of output * @return string - generated html */ function reports_graph_image($report, $item, $timespan, $output, $theme = 'classic') { global $config; $out = ''; if ($output == REPORTS_OUTPUT_STDOUT) { $out = ""; } else { $out = ''; } if ($report['graph_linked'] == 'on' ) { $out = "" . $out . ''; } return $out . "\n"; } /** * expand a tree for including into report * @param array $report - parameters for this report mail report * @param int $item - current graph item * @param int $output - type of output * @param bool $format_ok - use css styling * @param bool $nested - nested tree? * @return string - html */ function reports_expand_tree($report, $item, $parent, $output, $format_ok, $theme = 'classic', $nested = false) { global $colors, $config, $alignment; include($config['include_path'] . '/global_arrays.php'); include_once($config['library_path'] . '/data_query.php'); include_once($config['library_path'] . '/html_tree.php'); include_once($config['library_path'] . '/html_utility.php'); $tree_id = $item['tree_id']; $leaf_id = $item['branch_id']; $time = time(); # get config option for first-day-of-the-week $first_weekdayid = read_user_setting('first_weekdayid'); $user = $report['user_id']; $timespan = array(); # get start/end time-since-epoch for actual time (now()) and given current-session-timespan get_timespan($timespan, $time, $item['timespan'], $first_weekdayid); if (empty($tree_id)) { return; } $device_id = db_fetch_cell_prepared('SELECT host_id FROM graph_tree_items WHERE id = ? AND graph_tree_id = ?', array($parent, $tree_id)); $outstr = ''; if ($device_id == 0) { $leaves = db_fetch_assoc_prepared('SELECT * FROM graph_tree_items WHERE graph_tree_id = ? AND parent = ?', array($tree_id, $parent)); } elseif (is_device_allowed($device_id, $user)) { $leaves = db_fetch_assoc_prepared('SELECT * FROM graph_tree_items WHERE graph_tree_id = ? AND id = ?', array($tree_id, $parent)); } else{ $leaves = array(); } if (sizeof($leaves)) { foreach ($leaves as $leaf) { $sql_where = ''; $title = ''; $title_delimeter = ''; $search_key = ''; $host_name = ''; $graph_name = ''; $leaf_id = $leaf['id']; if (!empty($leaf_id)) { if ($leaf['local_graph_id'] == 0 && $leaf['host_id'] == 0) { $leaf_type = 'header'; } elseif ($leaf['host_id'] > 0) { $leaf_type = 'host'; } else { $leaf_type = 'graph'; } } else { $leaf_type = 'header'; } /* get information for the headers */ if (!empty($tree_id)) { $tree_name = db_fetch_cell_prepared('SELECT name FROM graph_tree WHERE id = ?', array($tree_id)); } if (!empty($parent)) { $leaf_name = db_fetch_cell_prepared('SELECT title FROM graph_tree_items WHERE id = ?', array($parent)); } if (!empty($leaf_id)) { $host_name = db_fetch_cell_prepared('SELECT h.description FROM graph_tree_items AS gti INNER JOIN host AS h ON h.id = gti.host_id WHERE gti.id = ?', array($leaf_id)); } if ($leaf_type == 'graph') { $graph_name = db_fetch_cell_prepared('SELECT gtg.title_cache AS title FROM graph_templates_graph AS gtg WHERE gtg.local_graph_id = ?', array($leaf['local_graph_id'])); } //if (!empty($tree_name) && empty($leaf_name) && empty($host_name) && !$nested) { if (!empty($tree_name) && empty($leaf_name) && empty($host_name)) { $title = $title_delimeter . '' . __('Tree:') . " $tree_name"; $title_delimeter = '-> '; } if (!empty($leaf_name)) { $title .= $title_delimeter . '' . __('Leaf:') . " $leaf_name"; $title_delimeter = '-> '; } if (!empty($host_name)) { $title .= $title_delimeter . '' . __('Host:') . " $host_name"; $title_delimeter = '-> '; } if (!empty($graph_name)) { $title .= $title_delimeter . '' . __('Graph:') . " $graph_name"; $title_delimeter = '-> '; } if ($item['graph_name_regexp'] != '') { $sql_where .= " AND title_cache REGEXP '" . $item['graph_name_regexp'] . "'"; } if (($leaf_type == 'header') && $nested) { $mygraphs = array(); $graphs = db_fetch_assoc("SELECT DISTINCT gti.local_graph_id, gtg.title_cache FROM graph_tree_items AS gti INNER JOIN graph_local AS gl ON gl.id=gti.local_graph_id INNER JOIN graph_templates_graph AS gtg ON gtg.local_graph_id=gl.id WHERE gti.graph_tree_id=$tree_id AND gti.parent=$parent AND gti.local_graph_id>0 $sql_where ORDER BY gti.position"); foreach($graphs as $key => $graph) { if (is_graph_allowed($graph['local_graph_id'], $user)) { $mygraphs[$graph['local_graph_id']] = $graph; } } if (sizeof($mygraphs)) { /* start graph display */ if ($title != '') { $outstr .= "\t\t\n"; if ($format_ok) { $outstr .= "\t\t\t\n"; } else { $outstr .= "\t\t\t\n"; } $outstr .= "\t\t\t\t$title\n"; $outstr .= "\t\t\t\n"; $outstr .= "\t\t\n"; } $outstr .= reports_graph_area($mygraphs, $report, $item, $timespan, $output, $format_ok, $theme); } } elseif ($leaf_type == 'graph') { $gr_where = ''; if ($item['graph_name_regexp'] != '') { $gr_where .= " AND title_cache REGEXP '" . $item['graph_name_regexp'] . "'"; } $graph = db_fetch_cell("SELECT count(*) FROM graph_templates_graph WHERE local_graph_id=" . $leaf['local_graph_id'] . $gr_where); /* start graph display */ if ($graph > 0) { if ($title != '') { $outstr .= "\t\t\n"; if ($format_ok) { $outstr .= "\t\t\t\n"; } else { $outstr .= "\t\t\t\n"; } $outstr .= "\t\t\t\t$title\n"; $outstr .= "\t\t\t\n"; $outstr .= "\t\t\n"; } $graph_list = array(array('local_graph_id' => $leaf['local_graph_id'], 'title_cache' => $graph_name)); $outstr .= reports_graph_area($graph_list, $report, $item, $timespan, $output, $format_ok, $theme); } } elseif ($leaf_type == 'host' && $nested) { /* graph template grouping */ if ($leaf['host_grouping_type'] == HOST_GROUPING_GRAPH_TEMPLATE) { $graph_templates = array_rekey( db_fetch_assoc_prepared('SELECT DISTINCT gt.id, gt.name FROM graph_local AS gl INNER JOIN graph_templates AS gt ON gt.id=gl.graph_template_id INNER JOIN graph_templates_graph AS gtg ON gtg.local_graph_id=gl.id WHERE gl.host_id = ? ORDER BY gt.name', array($leaf['host_id'])), 'id', 'name' ); if (sizeof($graph_templates)) { foreach($graph_templates AS $id => $name) { if (!is_graph_template_allowed($id, $user)) { unset($graph_templates[$id]); } } } /* for graphs without a template */ array_push($graph_templates, array( 'id' => '0', 'name' => __('(No Graph Template)') ) ); $outgraphs = array(); if (sizeof($graph_templates) > 0) { foreach ($graph_templates as $id => $name) { $graphs = db_fetch_assoc('SELECT gtg.local_graph_id, gtg.title_cache FROM graph_local AS gl INNER JOIN graph_templates_graph AS gtg ON gtg.local_graph_id=gl.id WHERE gl.graph_template_id=' . $id . ' AND gl.host_id=' . $leaf['host_id'] . " $sql_where ORDER BY gtg.title_cache"); if (sizeof($graphs)) { foreach($graphs as $key => $graph) { if (!is_graph_allowed($graph['local_graph_id'], $user)) { unset($graphs[$key]); } } } $outgraphs = array_merge($outgraphs, $graphs); } if (sizeof($outgraphs)) { /* let's sort the graphs naturally */ usort($outgraphs, 'necturally_sort_graphs'); /* start graph display */ if ($title != '') { $outstr .= "\t\t\n"; if ($format_ok) { $outstr .= "\t\t\t\n"; } else { $outstr .= "\t\t\t\n"; } $outstr .= "\t\t\t\t$title\n"; $outstr .= "\t\t\t\n"; $outstr .= "\t\t\n"; } $outstr .= reports_graph_area($outgraphs, $report, $item, $timespan, $output, $format_ok, $theme); } } } elseif ($leaf['host_grouping_type'] == HOST_GROUPING_DATA_QUERY_INDEX) { /* data query index grouping */ $data_queries = db_fetch_assoc_prepared('SELECT DISTINCT sq.id, sq.name FROM graph_local AS gl INNER JOIN snmp_query AS sq ON gl.snmp_query_id=sq.id WHERE gl.host_id = ? ORDER BY sq.name', array($leaf['host_id'])); /* for graphs without a data query */ if (empty($data_query_id)) { array_push($data_queries, array( 'id' => '0', 'name' => 'Non Query Based' ) ); } $i = 0; if (sizeof($data_queries)) { foreach ($data_queries as $data_query) { /* fetch a list of field names that are sorted by the preferred sort field */ $sort_field_data = get_formatted_data_query_indexes($leaf['host_id'], $data_query['id']); /* grab a list of all graphs for this host/data query combination */ $graphs = db_fetch_assoc('SELECT gtg.title_cache, gtg.local_graph_id, gl.snmp_index FROM graph_local AS gl INNER JOIN graph_templates_graph AS gtg ON gl.id=gtg.local_graph_id WHERE gl.snmp_query_id=' . $data_query['id'] . ' AND gl.host_id=' . $leaf['host_id'] . " $sql_where ORDER BY gtg.title_cache"); if (sizeof($graphs)) { foreach($graphs as $key => $graph) { if (!is_graph_allowed($graph['local_graph_id'], $user)) { unset($graphs[$key]); } } } /* re-key the results on data query index */ if (sizeof($graphs)) { if ($i == 0) { /* start graph display */ if ($title != '') { $outstr .= "\t\t\n"; if ($format_ok) { $outstr .= "\t\t\t\n"; } else { $outstr .= "\t\t\t\n"; } $outstr .= "\t\t\t\t$title\n"; $outstr .= "\t\t\t\n"; $outstr .= "\t\t\n"; } } $i++; $outstr .= "\t\t\n"; if ($format_ok) { $outstr .= "\t\t\tData Query: " . $data_query['name'] . "\n"; $outstr .= "\t\t\t\n"; $outstr .= "\t\t\n"; } else { $outstr .= "\t\t\tData Query: " . $data_query['name'] . "\n"; $outstr .= "\t\t\t\n"; $outstr .= "\t\t\n"; } /* let's sort the graphs naturally */ usort($graphs, 'necturally_sort_graphs'); foreach ($graphs as $graph) { $snmp_index_to_graph[$graph['snmp_index']][$graph['local_graph_id']] = $graph['title_cache']; } } /* using the sorted data as they key; grab each snmp index from the master list */ $graph_list = array(); foreach ($sort_field_data as $snmp_index => $sort_field_value) { /* render each graph for the current data query index */ if (isset($snmp_index_to_graph[$snmp_index])) { foreach ($snmp_index_to_graph[$snmp_index] as $local_graph_id => $graph_title) { /* reformat the array so it's compatable with the html_graph* area functions */ array_push($graph_list, array('local_graph_id' => $local_graph_id, 'title_cache' => $graph_title)); } } } if (sizeof($graph_list)) { $outstr .= reports_graph_area($graph_list, $report, $item, $timespan, $output, $format_ok, $theme); } } } } } } } return $outstr; } /** * natural sort function * @param $a * @param $b * @return string */ function necturally_sort_graphs($a, $b) { return strnatcasecmp($a['title_cache'], $b['title_cache']); } /** * draw graph area * @param array $graphs - array of graphs * @param array $report - report parameters * @param int $item - current item * @param int $timespan - requested timespan * @param int $output - type of output * @param bool $format_ok - use css styling * @return string */ function reports_graph_area($graphs, $report, $item, $timespan, $output, $format_ok, $theme = 'classic') { global $alignment; $column = 0; $outstr = ''; if (sizeof($graphs)) { foreach($graphs as $graph) { $item['local_graph_id'] = $graph['local_graph_id']; if ($column == 0) { $outstr .= "\t\t\n"; $outstr .= "\t\t\t\n"; $outstr .= "\t\t\t\t\n"; $outstr .= "\t\t\t\t\t\n"; } if ($format_ok) { $outstr .= "\t\t\t\t\t\t\n"; if ($report['graph_columns'] > 1) { $column = ($column + 1) % ($report['graph_columns']); } if ($column == 0) { $outstr .= "\t\t\t\t\t\n"; $outstr .= "\t\t\t\t
    \n"; } else { $outstr .= "\t\t\t\t\t\t\n"; } $outstr .= "\t\t\t\t\t\t\t" . reports_graph_image($report, $item, $timespan, $output, $theme) . "\n"; $outstr .= "\t\t\t\t\t\t
    \n"; $outstr .= "\t\t\t\n"; $outstr .= "\t\t\n"; } } } if ($column > 0) { $outstr .= "\t\t\t\t\t\n"; $outstr .= "\t\t\t\t\n"; $outstr .= "\t\t\t\n"; $outstr .= "\t\t\n"; } return $outstr; } /** * convert png images stream to jpeg using php-gd * * @param string $png_data - the png image as a stream * @return string - the jpeg image as a stream */ function png2jpeg ($png_data) { global $config; if ($png_data != '') { $fn = '/tmp/' . time() . '.png'; /* write rrdtool's png file to scratch dir */ $f = fopen($fn, 'wb'); fwrite($f, $png_data); fclose($f); /* create php-gd image object from file */ $im = imagecreatefrompng($fn); if (!$im) { /* check for errors */ $im = ImageCreate (150, 30); /* create an empty image */ $bgc = ImageColorAllocate ($im, 255, 255, 255); $tc = ImageColorAllocate ($im, 0, 0, 0); ImageFilledRectangle ($im, 0, 0, 150, 30, $bgc); /* print error message */ ImageString($im, 1, 5, 5, "Error while opening: $imgname", $tc); } ob_start(); // start a new output buffer to capture jpeg image stream imagejpeg($im); // output to buffer $ImageData = ob_get_contents(); // fetch image from buffer $ImageDataLength = ob_get_length(); ob_end_clean(); // stop this output buffer imagedestroy($im); //clean up unlink($fn); // delete scratch file } return $ImageData; } /** * convert png images stream to gif using php-gd * * @param string $png_data - the png image as a stream * @return string - the gif image as a stream */ function png2gif ($png_data) { global $config; if ($png_data != '') { $fn = '/tmp/' . time() . '.png'; /* write rrdtool's png file to scratch dir */ $f = fopen($fn, 'wb'); fwrite($f, $png_data); fclose($f); /* create php-gd image object from file */ $im = imagecreatefrompng($fn); if (!$im) { /* check for errors */ $im = ImageCreate (150, 30); /* create an empty image */ $bgc = ImageColorAllocate ($im, 255, 255, 255); $tc = ImageColorAllocate ($im, 0, 0, 0); ImageFilledRectangle ($im, 0, 0, 150, 30, $bgc); /* print error message */ ImageString($im, 1, 5, 5, "Error while opening: $imgname", $tc); } ob_start(); // start a new output buffer to capture gif image stream imagegif($im); // output to buffer $ImageData = ob_get_contents(); // fetch image from buffer $ImageDataLength = ob_get_length(); ob_end_clean(); // stop this output buffer imagedestroy($im); //clean up unlink($fn); // delete scratch file } return $ImageData; } /** * get available format files for cacti reporting * @return array - available format files */ function reports_get_format_files() { global $config; $formats = array(); $dir = $config['base_path'] . '/formats'; if (is_dir($dir)) { if (function_exists('scandir')) { $files = scandir($dir); } elseif ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { $files[] = $file; } closedir($dh); } if (sizeof($files)) { foreach($files as $file) { if (substr_count($file, '.format')) { $contents = file($dir . '/' . $file); if (sizeof($contents)) { foreach($contents as $line) { $line = trim($line); if (substr_count($line, 'Description:') && substr($line, 0, 1) == '#') { $arr = explode(':', $line); $formats[$file] = trim($arr[1]) . ' (' . $file . ')'; } } } } } } } return $formats; } /** * define the reports code that will be processed at the end of each polling event */ function reports_poller_bottom () { global $config; include_once($config['base_path'] . '/lib/poller.php'); $command_string = read_config_option('path_php_binary'); $extra_args = '-q ' . $config['base_path'] . '/poller_reports.php'; exec_background($command_string, $extra_args); } /** * PHP error handler * @arg $errno * @arg $errmsg * @arg $filename * @arg $linenum * @arg $vars */ function reports_error_handler($errno, $errmsg, $filename, $linenum, $vars) { $errno = $errno & error_reporting(); # return if error handling disabled by @ if ($errno == 0) return; # define constants not available with PHP 4 if(!defined('E_STRICT')) define('E_STRICT', 2048); if(!defined('E_RECOVERABLE_ERROR')) define('E_RECOVERABLE_ERROR', 4096); if (read_config_option('log_verbosity') >= POLLER_VERBOSITY_HIGH) { /* define all error types */ $errortype = array( E_ERROR => 'Error', E_WARNING => 'Warning', E_PARSE => 'Parsing Error', E_NOTICE => 'Notice', E_CORE_ERROR => 'Core Error', E_CORE_WARNING => 'Core Warning', E_COMPILE_ERROR => 'Compile Error', E_COMPILE_WARNING => 'Compile Warning', E_USER_ERROR => 'User Error', E_USER_WARNING => 'User Warning', E_USER_NOTICE => 'User Notice', E_STRICT => 'Runtime Notice', E_RECOVERABLE_ERROR => 'Catchable Fatal Error' ); /* create an error string for the log */ $err = "ERRNO:'" . $errno . "' TYPE:'" . $errortype[$errno] . "' MESSAGE:'" . $errmsg . "' IN FILE:'" . $filename . "' LINE NO:'" . $linenum . "'"; /* let's ignore some lesser issues */ if (substr_count($errmsg, 'date_default_timezone')) return; if (substr_count($errmsg, 'Only variables')) return; /* log the error to the Cacti log */ print('PROGERR: ' . $err . '
    ');
    
    		# backtrace, if available
    		cacti_debug_backtrace('REPORTS', true);
    
    		if (isset($GLOBALS['error_fatal'])) {
    			if($GLOBALS['error_fatal'] & $errno) die('fatal');
    		}
    	}
    
    	return;
    }
    
    
    /**
     * Setup the new dropdown action for Graph Management
     * @arg $action		actions to be performed from dropdown
     */
    function reports_graphs_action_array($action) {
    	$action['reports'] = __('Add to Report');
    	return $action;
    }
    
    
    /**
     * reports_graphs_action_prepare - perform reports_graph prepare action
     * @param array $save - drp_action: selected action from dropdown
     *              graph_array: graphs titles selected from graph management's list
     *              graph_list: graphs selected from graph management's list
     * returns array $save				-
     *  */
    function reports_graphs_action_prepare($save) {
    	global $colors, $config, $graph_timespans, $alignment;
    
    	if ($save['drp_action'] == 'reports') { /* report */
    		print "
    			
    				

    " . __('Choose the Report to associate these graphs with. The defaults for alignment will be used for each graph in the list below.') . "

    " . $save['graph_list'] . "

    " . __('Report:') . "
    "; form_dropdown('reports_id', db_fetch_assoc_prepared('SELECT reports.id, reports.name FROM reports WHERE user_id = ? ORDER by name', array($_SESSION['sess_user_id'])), 'name', 'id', '', '', '0'); echo '

    ' . __('Graph Timespan:') . '
    '; form_dropdown('timespan', $graph_timespans, '', '', '0', '', '', ''); echo '

    ' . __('Graph Alignment:') . '
    '; form_dropdown('alignment', $alignment, '', '', '0', '', '', ''); print "

    "; } else { return $save; } } /** * reports_graphs_action_execute - perform reports_graph execute action * @param string $action - action to be performed * return - * */ function reports_graphs_action_execute($action) { global $config; if ($action == 'reports') { /* report */ $message = ''; /* loop through each of the graph_items selected on the previous page for skipped items */ if (isset_request_var('selected_items')) { $selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items')); if ($selected_items != false) { $reports_id = get_filter_request_var('reports_id'); input_validate_input_number($reports_id); get_filter_request_var('timespan'); get_filter_request_var('alignment'); $report = db_fetch_row_prepared('SELECT * FROM reports WHERE id = ?', array($reports_id)); foreach($selected_items as $local_graph_id) { /* see if the graph is already added */ $existing = db_fetch_cell_prepared('SELECT id FROM reports_items WHERE local_graph_id = ? AND report_id = ? AND timespan = ?', array($local_graph_id, $reports_id, get_nfilter_request_var('timespan'))); if (!$existing) { $sequence = db_fetch_cell_prepared('SELECT max(sequence) FROM reports_items WHERE report_id = ?', array($reports_id)); $sequence++; $graph_data = db_fetch_row_prepared('SELECT * FROM graph_local WHERE id = ?', array($local_graph_id)); if ($graph_data['host_id']) { $host_template = db_fetch_cell_prepared('SELECT host_template_id FROM host WHERE id = ?', array($graph_data['host_id'])); } else { $host_template = 0; } $save['id'] = 0; $save['report_id'] = $reports_id; $save['item_type'] = REPORTS_ITEM_GRAPH; $save['tree_id'] = 0; $save['branch_id'] = 0; $save['tree_cascade'] = ''; $save['graph_name_regexp'] = ''; $save['host_template_id'] = $host_template; $save['host_id'] = $graph_data['host_id']; $save['graph_template_id'] = $graph_data['graph_template_id']; $save['local_graph_id'] = $local_graph_id; $save['timespan'] = get_nfilter_request_var('timespan'); $save['align'] = get_nfilter_request_var('alignment'); $save['item_text'] = ''; $save['font_size'] = $report['font_size']; $save['sequence'] = $sequence; $id = sql_save($save, 'reports_items'); if ($id) { $message .= __('Created Report Graph Item \'%s\'', get_graph_title($local_graph_id)) . '
    '; } else { $message .= __('Failed Adding Report Graph Item \'%s\' Already Exists', get_graph_title($local_graph_id)) . '
    '; } } else { $message .= __('Skipped Report Graph Item \'%s\' Already Exists', get_graph_title($local_graph_id)) . '
    '; } } } } if ($message != '') { $_SESSION['reports_message'] = $message; } raise_message('reports_message'); } else { return $action; } } cacti-1.1.38/lib/poller.php0000664000175000017500000013061013264740213015032 0ustar tromantroman writeable handle connected to child stdin * 1 => readable handle connected to child stdout * 2 => any error output will be sent to child stderr */ /* send command to the php server */ fwrite($pipes[0], $command . "\r\n"); fflush($pipes[0]); $output = fgets($pipes[1], 8192); if (substr_count($output, 'ERROR') > 0) { $output = 'U'; } } /* execute the old fashion way */ } else { /* formulate command */ $command = read_config_option('path_php_binary') . ' ' . $command; if (function_exists('popen')) { if ($config['cacti_server_os'] == 'unix') { $fp = popen($command, 'r'); } else { $fp = popen($command, 'rb'); } /* return if the popen command was not successfull */ if (!is_resource($fp)) { cacti_log('WARNING; Problem with POPEN command.', false, 'POLLER'); return 'U'; } $output = fgets($fp, 8192); pclose($fp); } else { $output = `$command`; } } return $output; } /* exec_background - executes a program in the background so that php can continue to execute code in the foreground @arg $filename - the full pathname to the script to execute @arg $args - any additional arguments that must be passed onto the executable */ function exec_background($filename, $args = '') { global $config, $debug; cacti_log("DEBUG: About to Spawn a Remote Process [CMD: $filename, ARGS: $args]", true, 'POLLER', ($debug ? POLLER_VERBOSITY_NONE:POLLER_VERBOSITY_DEBUG)); if (file_exists($filename)) { if ($config['cacti_server_os'] == 'win32') { pclose(popen("start \"Cactiplus\" /I \"" . $filename . "\" " . $args, 'r')); } else { exec($filename . ' ' . $args . ' > /dev/null 2>&1 &'); } } elseif (file_exists_2gb($filename)) { exec($filename . ' ' . $args . ' > /dev/null 2>&1 &'); } } /* file_exists_2gb - fail safe version of the file exists function to correct for errors in certain versions of php. @arg $filename - the name of the file to be tested. */ function file_exists_2gb($filename) { global $config; $rval = 0; if ($config['cacti_server_os'] != 'win32') { system("test -f $filename", $rval); return ($rval == 0); } else { return 0; } } /* update_reindex_cache - builds a cache that is used by the poller to determine if the indexes for a particular data query/host have changed @arg $host_id - the id of the host to which the data query belongs @arg $data_query_id - the id of the data query to rebuild the reindex cache for */ function update_reindex_cache($host_id, $data_query_id) { global $config; include_once($config['library_path'] . '/data_query.php'); include_once($config['library_path'] . '/snmp.php'); /* will be used to keep track of sql statements to execute later on */ $recache_stack = array(); $host = db_fetch_row_prepared('SELECT ' . SQL_NO_CACHE . ' * FROM host WHERE id = ?', array($host_id)); $data_query = db_fetch_row_prepared('SELECT ' . SQL_NO_CACHE . ' * FROM host_snmp_query WHERE host_id = ? AND snmp_query_id = ?', array($host_id, $data_query_id)); $data_query_type = db_fetch_cell_prepared('SELECT ' . SQL_NO_CACHE . ' data_input.type_id FROM data_input INNER JOIN snmp_query ON data_input.id = snmp_query.data_input_id WHERE snmp_query.id = ?', array($data_query_id)); $data_query_xml = get_data_query_array($data_query_id); if (sizeof($data_query)) { switch ($data_query['reindex_method']) { case DATA_QUERY_AUTOINDEX_NONE: break; case DATA_QUERY_AUTOINDEX_BACKWARDS_UPTIME: /* the uptime backwards method requires snmp, so make sure snmp is actually enabled * on this device first */ if ($host['snmp_version'] > 0) { if (isset($data_query_xml['oid_uptime'])) { $oid_uptime = $data_query_xml['oid_uptime']; } elseif (isset($data_query_xml['uptime_oid'])) { $oid_uptime = $data_query_xml['uptime_oid']; } else { $oid_uptime = '.1.3.6.1.2.1.1.3.0'; } $session = cacti_snmp_session($host['hostname'], $host['snmp_community'], $host['snmp_version'], $host['snmp_username'], $host['snmp_password'], $host['snmp_auth_protocol'], $host['snmp_priv_passphrase'], $host['snmp_priv_protocol'], $host['snmp_context'], $host['snmp_engine_id'], $host['snmp_port'], $host['snmp_timeout'], $host['ping_retries'], $host['max_oids']); if ($session !== false) { $assert_value = cacti_snmp_session_get($session, $oid_uptime); } $session->close(); $recache_stack[] = "('$host_id', '$data_query_id'," . POLLER_ACTION_SNMP . ", '<', '$assert_value', '$oid_uptime', '1')"; } break; case DATA_QUERY_AUTOINDEX_INDEX_NUM_CHANGE: /* this method requires that some command/oid can be used to determine the * current number of indexes in the data query * pay ATTENTION to quoting! * the script parameters are usually enclosed in single tics: ' * so we have to enclose the whole list of parameters in double tics: " * */ /* the assert_value counts the number of distinct indexes currently available in host_snmp_cache * we do NOT make use of or the like! * this works, even if no was given */ $assert_value = sizeof(db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' snmp_index FROM host_snmp_cache WHERE host_id = ? AND snmp_query_id = ? GROUP BY snmp_index', array($host_id, $data_query_id))); /* now, we have to build the (list of) commands that are later used on a recache event * the result of those commands will be compared to the assert_value we have just computed * on a comparison failure, a reindex event will be generated */ switch ($data_query_type) { case DATA_INPUT_TYPE_SNMP_QUERY: if (isset($data_query_xml['oid_num_indexes'])) { /* we have a specific OID for counting indexes */ $recache_stack[] = "($host_id, $data_query_id," . POLLER_ACTION_SNMP . ", '=', " . db_qstr($assert_value) . ", " . db_qstr($data_query_xml['oid_num_indexes']) . ", '1')"; } else { /* count all indexes found */ $recache_stack[] = "($host_id, $data_query_id, " . POLLER_ACTION_SNMP_COUNT . ", '=', " . db_qstr($assert_value) . ", " . db_qstr($data_query_xml['oid_index']) . ", '1')"; } break; case DATA_INPUT_TYPE_SCRIPT_QUERY: if (isset($data_query_xml['arg_num_indexes'])) { /* we have a specific request for counting indexes */ /* escape path (windows!) and parameters for use with database sql; TODO: replace by db specific escape function like mysql_real_escape_string? */ $recache_stack[] = "($host_id, $data_query_id, " . POLLER_ACTION_SCRIPT . ", '=', " . db_qstr($assert_value) . ", " . db_qstr(get_script_query_path((isset($data_query_xml['arg_prepend']) ? $data_query_xml['arg_prepend'] . ' ': '') . $data_query_xml['arg_num_indexes'], $data_query_xml['script_path'], $host_id)) . ", '1')"; } else { /* count all indexes found */ /* escape path (windows!) and parameters for use with database sql; TODO: replace by db specific escape function like mysql_real_escape_string? */ $recache_stack[] = "($host_id, $data_query_id, " . POLLER_ACTION_SCRIPT_COUNT . ", '=', " . db_qstr($assert_value) . ", " . db_qstr(get_script_query_path((isset($data_query_xml['arg_prepend']) ? $data_query_xml['arg_prepend'] . ' ': '') . $data_query_xml['arg_index'], $data_query_xml['script_path'], $host_id)) . ", '1')"; } break; case DATA_INPUT_TYPE_QUERY_SCRIPT_SERVER: if (isset($data_query_xml['arg_num_indexes'])) { /* we have a specific request for counting indexes */ /* escape path (windows!) and parameters for use with database sql; TODO: replace by db specific escape function like mysql_real_escape_string? */ $recache_stack[] = "($host_id, $data_query_id, " . POLLER_ACTION_SCRIPT_PHP . ", '=', " . db_qstr($assert_value) . ", " . db_qstr(get_script_query_path($data_query_xml['script_function'] . ' ' . (isset($data_query_xml['arg_prepend']) ? $data_query_xml['arg_prepend'] . ' ': '') . $data_query_xml['arg_num_indexes'], $data_query_xml['script_path'], $host_id)) . ", '1')"; } else { /* count all indexes found */ # TODO: push the correct assert value /* escape path (windows!) and parameters for use with database sql; TODO: replace by db specific escape function like mysql_real_escape_string? */ #$recache_stack[] = "($host_id, $data_query_id," . POLLER_ACTION_SCRIPT_PHP_COUNT . ", '=', " . db_qstr($assert_value) . ", " . db_qstr(get_script_query_path($data_query_xml['script_function'] . ' ' . (isset($data_query_xml['arg_prepend']) ? $data_query_xml['arg_prepend'] . ' ': '') . $data_query_xml['arg_index'], $data_query_xml['script_path'], $host_id)) . ", '1')"; # omit the assert value until we are able to run an 'index' command through script server } break; } break; case DATA_QUERY_AUTOINDEX_FIELD_VERIFICATION: $primary_indexes = db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' snmp_index, oid, field_value FROM host_snmp_cache WHERE host_id = ? AND snmp_query_id = ? AND field_name = ?', array($host_id, $data_query_id, $data_query['sort_field'])); if (sizeof($primary_indexes) > 0) { foreach ($primary_indexes as $index) { $assert_value = $index['field_value']; if ($data_query_type == DATA_INPUT_TYPE_SNMP_QUERY) { $recache_stack[] = "($host_id, $data_query_id, " . POLLER_ACTION_SNMP . ", '=', " . db_qstr($assert_value) . ', ' . db_qstr(($data_query_xml['fields'][$data_query['sort_field']]['source'] == 'index') ? $data_query_xml['oid_index']:$data_query_xml['fields'][$data_query['sort_field']]['oid'] . '.' . $index['snmp_index']) . ", '1')"; }else if ($data_query_type == DATA_INPUT_TYPE_SCRIPT_QUERY) { $recache_stack[] = '(' . $host_id . ', ' . $data_query_id . ', ' . POLLER_ACTION_SCRIPT . ", '=', " . db_qstr($assert_value) . ', ' . db_qstr(get_script_query_path((isset($data_query_xml['arg_prepend']) ? $data_query_xml['arg_prepend'] . ' ': '') . $data_query_xml['arg_get'] . ' ' . $data_query_xml['fields'][$data_query['sort_field']]['query_name'] . ' ' . $index['snmp_index'], $data_query_xml['script_path'], $host_id)) . ", '1')"; } } } break; } } if (sizeof($recache_stack)) { poller_update_poller_reindex_from_buffer($host_id, $data_query_id, $recache_stack); } } function poller_update_poller_reindex_from_buffer($host_id, $data_query_id, &$recache_stack) { /* set all fields present value to 0, to mark the outliers when we are all done */ db_execute_prepared('UPDATE poller_reindex SET present = 0 WHERE host_id = ? AND data_query_id = ?', array($host_id, $data_query_id)); /* setup the database call */ $sql_prefix = 'INSERT INTO poller_reindex (host_id, data_query_id, action, op, assert_value, arg1, present) VALUES'; $sql_suffix = ' ON DUPLICATE KEY UPDATE action=VALUES(action), op=VALUES(op), assert_value=VALUES(assert_value), present=VALUES(present)'; /* use a reasonable insert buffer, the default is 1MByte */ $max_packet = 256000; /* setup somme defaults */ $overhead = strlen($sql_prefix) + strlen($sql_suffix); $buf_len = 0; $buf_count = 0; $buffer = ''; foreach($recache_stack AS $record) { if ($buf_count == 0) { $delim = ' '; } else { $delim = ', '; } $buffer .= $delim . $record; $buf_len += strlen($record); if (($overhead + $buf_len) > ($max_packet - 1024)) { db_execute($sql_prefix . $buffer . $sql_suffix); $buffer = ''; $buf_len = 0; $buf_count = 0; } else { $buf_count++; } } if ($buf_count > 0) { db_execute($sql_prefix . $buffer . $sql_suffix); } /* remove stale records FROM the poller reindex */ db_execute_prepared('DELETE FROM poller_reindex WHERE host_id = ? AND data_query_id = ? AND present = 0', array($host_id, $data_query_id)); } /* process_poller_output - grabs data from the 'poller_output' table and feeds the *completed* results to RRDtool for processing @arg $rrdtool_pipe - the array of pipes containing the file descriptor for rrdtool @arg $remainder - don't use LIMIT if TRUE */ function process_poller_output(&$rrdtool_pipe, $remainder = false) { global $config, $debug; static $have_deleted_rows = true; static $rrd_field_names = array(); include_once($config['library_path'] . '/rrd.php'); /* let's count the number of rrd files we processed */ $rrds_processed = 0; $max_rows = 40000; if ($remainder) { /* check if too many rows pending */ $rows = db_fetch_cell('SELECT COUNT(*) FROM poller_output'); if ($rows > $max_rows && $have_deleted_rows === true) { $limit = ' LIMIT ' . $max_rows; } else { $limit = ''; } } else { $limit = 'LIMIT ' . $max_rows; } $have_deleted_rows = false; /* create/update the rrd files */ $results = db_fetch_assoc("SELECT po.output, po.time, UNIX_TIMESTAMP(po.time) as unix_time, po.local_data_id, dl.data_template_id, pi.rrd_path, pi.rrd_name, pi.rrd_num FROM poller_output AS po INNER JOIN poller_item AS pi ON po.local_data_id=pi.local_data_id AND po.rrd_name=pi.rrd_name INNER JOIN data_local AS dl ON dl.id=po.local_data_id ORDER BY po.local_data_id $limit"); if (!sizeof($rrd_field_names)) { $rrd_field_names = array_rekey( db_fetch_assoc_prepared('SELECT ' . SQL_NO_CACHE . ' CONCAT(data_template_id, "_", data_name) AS keyname, data_source_names AS data_source_name FROM poller_data_template_field_mappings'), 'keyname', array('data_source_name')); } if (sizeof($results)) { /* create an array keyed off of each .rrd file */ foreach ($results as $item) { /* trim the default characters, but add single and double quotes */ $value = $item['output']; $unix_time = $item['unix_time']; $rrd_path = $item['rrd_path']; $rrd_name = $item['rrd_name']; $rrd_update_array[$rrd_path]['local_data_id'] = $item['local_data_id']; /* single one value output */ if ((is_numeric($value)) || ($value == 'U')) { $rrd_update_array[$rrd_path]['times'][$unix_time][$rrd_name] = $value; /* special case of one value output: hexadecimal to decimal conversion */ } elseif (is_hexadecimal($value)) { /* attempt to accomodate 32bit and 64bit systems */ $value = str_replace(' ', '', $value); if (strlen($value) <= 8 || ((2147483647+1) == intval(2147483647+1))) { $rrd_update_array[$rrd_path]['times'][$unix_time][$rrd_name] = hexdec($value); } elseif (function_exists('bcpow')) { $dec = 0; $vallen = strlen($value); for ($i = 1; $i <= $vallen; $i++) { $dec = bcadd($dec, bcmul(strval(hexdec($value[$i - 1])), bcpow('16', strval($vallen - $i)))); } $rrd_update_array[$rrd_path]['times'][$unix_time][$rrd_name] = $dec; } else { $rrd_update_array[$rrd_path]['times'][$unix_time][$rrd_name] = 'U'; } /* multiple value output */ } elseif (strpos($value, ':') !== false) { $values = preg_split('/\s+/', $value); foreach($values as $value) { $matches = explode(':', $value); if (sizeof($matches) == 2) { $fields = array(); if (isset($rrd_field_names[$item['data_template_id'] . '_' . $matches[0]])) { $field_map = $rrd_field_names[$item['data_template_id'] . '_' . $matches[0]]['data_source_name']; if (strpos($field_map, ',') !== false) { $fields = explode(',', $field_map); } else { $fields[] = $field_map; } foreach($fields as $field) { cacti_log("Parsed MULTI output field '" . $matches[0] . ':' . $matches[1] . "' [map " . $matches[0] . '->' . $field . ']' , true, 'POLLER', ($debug ? POLLER_VERBOSITY_NONE:POLLER_VERBOSITY_MEDIUM)); $rrd_update_array[$rrd_path]['times'][$unix_time][$field] = $matches[1]; } } else { // Handle data source without a data template $nt_rrd_field_names = array_rekey( db_fetch_assoc_prepared('SELECT dtr.data_source_name, dif.data_name FROM data_template_rrd AS dtr INNER JOIN data_input_fields AS dif ON dtr.data_input_field_id=dif.id WHERE dtr.local_data_id = ?', array($item['local_data_id'])), 'data_name', 'data_source_name' ); if (sizeof($nt_rrd_field_names)) { if (isset($nt_rrd_field_names[$matches[0]])) { cacti_log("Parsed MULTI output field '" . $matches[0] . ':' . $matches[1] . "' [map " . $matches[0] . '->' . $nt_rrd_field_names[$matches[0]] . ']' , true, 'POLLER', ($debug ? POLLER_VERBOSITY_NONE:POLLER_VERBOSITY_MEDIUM)); $rrd_update_array[$item['rrd_path']]['times'][$unix_time][$nt_rrd_field_names[$matches[0]]] = $matches[1]; } } } } } } /* fallback values */ if ((!isset($rrd_update_array[$rrd_path]['times'][$unix_time])) && ($rrd_name != '')) { $rrd_update_array[$rrd_path]['times'][$unix_time][$rrd_name] = 'U'; }else if ((!isset($rrd_update_array[$rrd_path]['times'][$unix_time])) && ($rrd_name == '')) { unset($rrd_update_array[$rrd_path]); } } /* make sure each .rrd file has complete data */ $k = 0; $data_ids = array(); foreach ($results as $item) { $unix_time = $item['unix_time']; $rrd_path = $item['rrd_path']; $rrd_name = $item['rrd_name']; if (isset($rrd_update_array[$rrd_path]['times'][$unix_time])) { if ($item['rrd_num'] <= sizeof($rrd_update_array[$rrd_path]['times'][$unix_time])) { $data_ids[] = $item['local_data_id']; $k++; if ($k % 10000 == 0) { db_execute('DELETE FROM poller_output WHERE local_data_id IN (' . implode(',', $data_ids) . ')'); $have_deleted_rows = true; $data_ids = array(); $k = 0; } } else { unset($rrd_update_array[$rrd_path]['times'][$unix_time]); } } } if ($k > 0) { db_execute('DELETE FROM poller_output WHERE local_data_id IN (' . implode(',', $data_ids) . ')'); $have_deleted_rows = true; } /* process dsstats information */ dsstats_poller_output($rrd_update_array); api_plugin_hook_function('poller_output', $rrd_update_array); if (boost_poller_on_demand($results)) { $rrds_processed = rrdtool_function_update($rrd_update_array, $rrdtool_pipe); } $results = NULL; $rrd_update_array = NULL; /* to much records in poller_output, process in chunks */ if ($remainder && $limit != '') { $rrds_processed += process_poller_output($rrdtool_pipe, $remainder); } } return $rrds_processed; } /** update_resource_cache - place the cacti website in the poller_resource_cache * * for remote pollers to consume * @param int $poller_id - The id of the poller. 1 is the main system * @return null - No data is returned */ function update_resource_cache($poller_id = 1) { global $config; if ($config['cacti_server_os'] == 'win32') return; $mpath = $config['base_path']; $spath = $config['scripts_path']; $rpath = $config['resource_path']; $excluded_extensions = array('tar', 'gz', 'zip', 'tgz', 'ttf', 'z', 'exe', 'pack', 'swp', 'swo'); $paths = array( 'base' => array('recursive' => false, 'path' => $mpath), 'scripts' => array('recursive' => true, 'path' => $spath), 'resource' => array('recursive' => true, 'path' => $rpath), 'lib' => array('recursive' => true, 'path' => $mpath . '/lib'), 'include' => array('recursive' => true, 'path' => $mpath . '/include'), 'install' => array('recursive' => true, 'path' => $mpath . '/install'), 'formats' => array('recursive' => true, 'path' => $mpath . '/formats'), 'locales' => array('recursive' => true, 'path' => $mpath . '/locales'), 'images' => array('recursive' => true, 'path' => $mpath . '/images'), 'mibs' => array('recursive' => true, 'path' => $mpath . '/mibs'), 'cli' => array('recursive' => true, 'path' => $mpath . '/cli') ); $pollers = db_fetch_cell('SELECT COUNT(*) FROM poller WHERE disabled=""'); if ($poller_id == 1 && $pollers > 1) { foreach($paths as $type => $path) { if (is_readable($path['path'])) { $pathinfo = pathinfo($path['path']); if (isset($pathinfo['extension'])) { $extension = strtolower($pathinfo['extension']); } else { $extension = ''; } /* exclude spurious extensions */ $exclude = false; if (array_search($extension, $excluded_extensions, true) !== false) { $exclude = true; } if (!$exclude) { cache_in_path($path['path'], $type, $path['recursive']); } } else { cacti_log("ERROR: Unable to read the " . $type . " path '" . $path['path'] . "'", false, 'POLLER'); } } /* handle plugin paths */ $files_and_dirs = array_diff(scandir($mpath . '/plugins'), array('..', '.')); if (sizeof($files_and_dirs)) { foreach($files_and_dirs as $path) { if (is_dir($mpath . '/plugins/' . $path)) { if (file_exists($mpath . '/plugins/' . $path . '/INFO')) { $info = parse_ini_file($mpath . '/plugins/' . $path . '/INFO', true); $dir_exclusions = array('..', '.'); $file_exclusions = $excluded_extensions; if (isset($info['info']['nosync'])) { $exclude_paths = explode(',', $info['info']['nosync']); if (sizeof($exclude_paths)) { foreach($exclude_paths as $epath) { if (strpos($epath, '*.') !== false) { $file_exclusions[] = trim(str_replace('*.', '', $epath)); } else { $dir_exclusions[] = trim($epath); } } } } $fod = array_diff(scandir($mpath . '/plugins/' . $path), $dir_exclusions); if (sizeof($fod)) { foreach($fod as $file_or_dir) { $fpath = $mpath . '/plugins/' . $path . '/' . $file_or_dir; if (is_dir($fpath)) { cache_in_path($fpath, $path . '_' . basename($file_or_dir), true); } else { $pathinfo = pathinfo($fpath); if (isset($pathinfo['extension'])) { $extension = strtolower($pathinfo['extension']); } else { $extension = ''; } /* exclude spurious extensions */ $exclude = false; if (array_search($extension, $file_exclusions, true) !== false) { $exclude = true; } if (!$exclude) { cache_in_path($fpath, 'plugins', false); } } } } } else { cacti_log("WARNING: INFO file does not exist for plugin directory '" . $mpath . '/plugins/' . $path . "'", false, 'POLLER'); } } else { cache_in_path($mpath . '/plugins/' . $path, 'plugins', false); } } } /* purge old entries */ $cache = db_fetch_assoc('SELECT path FROM poller_resource_cache'); if (sizeof($cache)) { foreach($cache as $item) { if (!file_exists($item['path'])) { db_execute_prepared('DELETE FROM poller_resource_cache WHERE path = ?', array($item['path'])); } } } } elseif ($poller_id > 1) { $paths['plugins'] = array('recursive' => true, 'path' => $mpath . '/plugins'); $plugin_paths = db_fetch_assoc('SELECT resource_type, path FROM poller_resource_cache WHERE path LIKE "plugins/%" GROUP BY resource_type'); if (sizeof($plugin_paths)) { foreach ($plugin_paths as $path) { $paths[$path['resource_type']] = array('recursive' => false, 'path' => dirname($mpath . '/' . $path['path'])); } } foreach($paths as $type => $path) { if (is_writable($path['path'])) { resource_cache_out($type, $path); } else { cacti_log("FATAL: Unable to write to the " . $type . " path '" . $path['path'] . "'", false, 'POLLER'); } } } } /** cache_in_path - check to see if the directory in question has changed. * If so, send its data into the resource cache table * * @param string $path - The path to look for changes * @param string $type - The patch types being cached * @param bool $recursive - Should the path be scanned recursively * @return null - No data is returned */ function cache_in_path($path, $type, $recursive = true) { global $config; if (is_dir($path)) { $curr_md5 = md5sum_path($path, $recursive); $settings_path = "md5dirsum_$type"; $last_md5 = read_config_option($settings_path); if (empty($last_md5) || $last_md5 != $curr_md5) { cacti_log('Type:' . $type . ', Path:' . $path . ', Last MD5:' . $last_md5 . ', Curr MD5:' . $curr_md5, false, 'POLLER', POLLER_VERBOSITY_MEDIUM); cacti_log("NOTE: Detecting Resource Change. Updating Resource Cache for '$path'", false, 'POLLER'); update_db_from_path($path, $type, $recursive); } set_config_option($settings_path, $curr_md5); } else { $spath = ltrim(trim(str_replace($config['base_path'], '', $path), '/ \\'), '/ \\'); $excluded_extensions = array('tar', 'gz', 'zip', 'tgz', 'ttf', 'z', 'exe', 'pack', 'swp', 'swo'); $pathinfo = pathinfo($path); if (isset($pathinfo['extension'])) { $extension = strtolower($pathinfo['extension']); } else { $extension = ''; } /* exclude spurious extensions */ if (array_search($extension, $excluded_extensions, true) === false && basename($path) != 'config.php') { $curr_md5 = md5_file($path); $last_md5 = db_fetch_cell_prepared('SELECT md5sum FROM poller_resource_cache WHERE path = ?', array($spath)); if (empty($last_md5) || $last_md5 != $curr_md5) { cacti_log("NOTE: Detecting Resource Change. Updating Resource Cache for '$spath'", false, 'POLLER'); update_db_from_path($path, $type, $recursive); } } } } /** update_db_from_path - store the actual file in the databases resource cache. * Skip the include/config.php if it exists * * @param string $path - The path to look for changes * @param string $type - The patch types being cached * @param bool $recursive - Should the path be scanned recursively * @return null - No data is returned */ function update_db_from_path($path, $type, $recursive = true) { global $config; $excluded_extensions = array('tar', 'gz', 'zip', 'tgz', 'ttf', 'z', 'exe', 'pack', 'swp', 'swo'); if (is_dir($path)) { $pobject = dir($path); while (($entry = $pobject->read()) !== false) { if ($entry != '.' && $entry != '..' && $entry != '.git' && $entry != '') { $spath = ltrim(trim(str_replace($config['base_path'], '', $path), '/ \\') . '/' . $entry, '/ \\'); if (is_dir($path . DIRECTORY_SEPARATOR . $entry)) { if ($recursive) { update_db_from_path($path . DIRECTORY_SEPARATOR . $entry, $type, $recursive); } } elseif (basename($path) == 'config.php') { continue; } else { $pathinfo = pathinfo($entry); if (isset($pathinfo['extension'])) { $extension = strtolower($pathinfo['extension']); } else { $extension = ''; } /* exclude spurious extensions */ if (array_search($extension, $excluded_extensions, true) !== false) { continue; } $save = array(); $save['path'] = $spath; $save['id'] = db_fetch_cell_prepared('SELECT id FROM poller_resource_cache WHERE path = ?', array($save['path'])); $save['resource_type'] = $type; $save['md5sum'] = md5_file($path . DIRECTORY_SEPARATOR . $entry); $save['update_time'] = date('Y-m-d H:i:s'); $save['contents'] = base64_encode(file_get_contents($path . DIRECTORY_SEPARATOR . $entry)); sql_save($save, 'poller_resource_cache'); } } } $pobject->close(); } else { if (basename($path) != 'config.php' && basename($path) != '.git' && $path != '') { $pathinfo = pathinfo($path); if (isset($pathinfo['extension'])) { $extension = strtolower($pathinfo['extension']); } else { $extension = ''; } /* exclude spurious extensions */ if (array_search($extension, $excluded_extensions, true) === false) { $spath = ltrim(trim(str_replace($config['base_path'], '', $path), '/ \\'), '/ \\'); $save = array(); $save['path'] = $spath; $save['id'] = db_fetch_cell_prepared('SELECT id FROM poller_resource_cache WHERE path = ?', array($save['path'])); $save['resource_type'] = $type; $save['md5sum'] = md5_file($path); $save['update_time'] = date('Y-m-d H:i:s'); $save['contents'] = base64_encode(file_get_contents($path)); sql_save($save, 'poller_resource_cache'); } } } } /** resource_cache_out - push the cache from the cacti database to the * remote database. Check PHP files for errors * * before placing them on the remote pollers file system. * @param string $type - The path type being cached * @param string $path - The path to store the contents * @return null - No data is returned */ function resource_cache_out($type, $path) { global $config; $settings_path = "md5dirsum_$type"; $php_path = read_config_option('path_php_binary'); $last_md5 = read_config_option($settings_path); $curr_md5 = md5sum_path($path['path']); if (empty($last_md5) || $last_md5 != $curr_md5) { $entries = db_fetch_assoc_prepared('SELECT id, path, md5sum FROM poller_resource_cache WHERE resource_type = ?', array($type)); if (sizeof($entries)) { foreach($entries as $e) { $mypath = $config['base_path'] . DIRECTORY_SEPARATOR . $e['path']; if (file_exists($mypath)) { $md5sum = md5_file($mypath); } else { $md5sum = ''; } if (!is_dir(dirname($mypath))) { $relative_dir = str_replace($config['base_path'], '', dirname($mypath)); mkdir('./' . $relative_dir, 0755, true); } if (is_dir(dirname($mypath))) { if ($md5sum != $e['md5sum'] && basename($e['path']) != 'config.php') { $extension = substr(strrchr($e['path'], "."), 1); $exit = -1; $contents = base64_decode(db_fetch_cell_prepared('SELECT contents FROM poller_resource_cache WHERE id = ?', array($e['id']))); /* if the file type is PHP check syntax */ if ($extension == 'php') { $tmpdir = sys_get_temp_dir(); $tmpfile = tempnam($tmpdir,'ccp'); if ((is_writeable($tmpdir) && !file_exists($tmpfile)) || (file_exists($tmpfile) && is_writable($tmpfile))) { if (file_put_contents($tmpfile, $contents) !== false) { $output = system($php_path . ' -l ' . $tmpfile, $exit); if ($exit == 0) { cacti_log("INFO: Updating '" . $mypath . "' from Cache!", false, 'POLLER'); if (is_writable($mypath) || (!file_exists($mypath) && is_writable(dirname($mypath)))) { file_put_contents($mypath, $contents); } else { cacti_log("ERROR: Cache in cannot write to '" . $mypath . "', purge this location"); } } else { cacti_log("ERROR: PHP Source File '" . $mypath . "' from Cache has an error whilst checking syntax ($exit) whilst executing: $php_path -l $tmpfile", false, 'POLLER'); cacti_log("ERROR: PHP Source File '" . $mypath . "': " . str_replace("\n"," ",str_replace("\t"," ", $output)), false, 'POLLER'); } unlink($tmpfile); } else { cacti_log("ERROR: Unable to write file '" . $tmpfile . "' for PHP Syntax verification", false, 'POLLER'); } } else { cacti_log("ERROR: Cache in cannot write to '" . $tmpfile . "', purge this location"); } } elseif (is_writeable($mypath) || (!file_exists($mypath) && is_writable(dirname($mypath)))) { cacti_log("INFO: Updating '" . $mypath . "' from Cache!", false, 'POLLER'); file_put_contents($mypath, $contents); } else { cacti_log("ERROR: Cache in cannot write to '" . $mypath . "', purge this location"); } } } else { cacti_log("ERROR: Directory does not exist '" . dirname($mypath) . "'", false, 'POLLER'); } } } } } /** md5sum_path - get a recursive md5sum on an entire directory. * * @param string $path - The path to check for the md5sum * @param bool $recursive - The path should be verified recursively * @return null - No data is returned */ function md5sum_path($path, $recursive = true) { if (!is_dir($path)) { return false; } $filemd5s = array(); $pobject = dir($path); $excluded_extensions = array('tar', 'gz', 'zip', 'tgz', 'ttf', 'z', 'exe', 'pack', 'swp', 'swo'); while (($entry = $pobject->read()) !== false) { if ($entry == '.') { continue; } elseif ($entry == '..') { continue; } elseif ($entry == '.git') { continue; } elseif ($entry == '') { continue; } else { $pathinfo = pathinfo($entry); if (isset($pathinfo['extension'])) { $extension = strtolower($pathinfo['extension']); } else { $extension = ''; } /* exclude spurious extensions */ if (array_search($extension, $excluded_extensions, true) !== false) { continue; } if (is_dir($path . DIRECTORY_SEPARATOR . $entry) && $recursive) { $filemd5s[] = md5sum_path($path . DIRECTORY_SEPARATOR. $entry, $recursive); } else { $filemd5s[] = md5_file($path . DIRECTORY_SEPARATOR . $entry); } } } $pobject->close(); return md5(implode('', $filemd5s)); } function replicate_out($remote_poller_id = 1) { global $config; if ($config['poller_id'] == 1) { $cinfo = db_fetch_row_prepared('SELECT * FROM poller WHERE id = ?', array($remote_poller_id)); if (!sizeof($cinfo)) { raise_message('poller_notfound'); return false; } $remote_db_cnn_id = db_connect_real( $cinfo['dbhost'], $cinfo['dbuser'], $cinfo['dbpass'], $cinfo['dbdefault'], 'mysql', $cinfo['dbport'], $cinfo['dbssl']); if (!is_object($remote_db_cnn_id)) { raise_message('poller_noconnect'); return false; } } else { // We only allow sync from the main cacti server raise_message('poller_nosync'); return false; } // Start Push Replication $data = db_fetch_assoc('SELECT * FROM settings WHERE name NOT LIKE "%_lastrun%"'); replicate_out_table($remote_db_cnn_id, $data, 'settings', $remote_poller_id); $data = db_fetch_assoc('SELECT * FROM data_input'); replicate_out_table($remote_db_cnn_id, $data, 'data_input', $remote_poller_id); $data = db_fetch_assoc('SELECT * FROM snmp_query'); replicate_out_table($remote_db_cnn_id, $data, 'snmp_query', $remote_poller_id); $data = db_fetch_assoc('SELECT * FROM data_input_fields'); replicate_out_table($remote_db_cnn_id, $data, 'data_input_fields', $remote_poller_id); $data = db_fetch_assoc('SELECT * FROM user_auth'); replicate_out_table($remote_db_cnn_id, $data, 'user_auth', $remote_poller_id); $data = db_fetch_assoc('SELECT * FROM user_auth_group'); replicate_out_table($remote_db_cnn_id, $data, 'user_auth_group', $remote_poller_id); $data = db_fetch_assoc('SELECT * FROM user_auth_group_members'); replicate_out_table($remote_db_cnn_id, $data, 'user_auth_group_members', $remote_poller_id); $data = db_fetch_assoc('SELECT * FROM user_auth_group_perms'); replicate_out_table($remote_db_cnn_id, $data, 'user_auth_group_perms', $remote_poller_id); $data = db_fetch_assoc('SELECT * FROM user_auth_group_realm'); replicate_out_table($remote_db_cnn_id, $data, 'user_auth_group_realm', $remote_poller_id); $data = db_fetch_assoc('SELECT * FROM user_auth_realm'); replicate_out_table($remote_db_cnn_id, $data, 'user_auth_realm', $remote_poller_id); $data = db_fetch_assoc('SELECT * FROM user_domains'); replicate_out_table($remote_db_cnn_id, $data, 'user_domains', $remote_poller_id); $data = db_fetch_assoc('SELECT * FROM user_domains_ldap'); replicate_out_table($remote_db_cnn_id, $data, 'user_domains_ldap', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT hsq.* FROM host_snmp_query AS hsq INNER JOIN host AS h ON h.id=hsq.host_id WHERE h.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'host_snmp_query', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT pc.* FROM poller_command AS pc WHERE pc.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'poller_command', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT pi.* FROM poller_item AS pi WHERE pi.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'poller_item', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT h.* FROM host AS h WHERE h.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'host', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT hsc.* FROM host_snmp_cache AS hsc INNER JOIN host AS h ON h.id=hsc.host_id WHERE h.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'host_snmp_cache', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT pri.* FROM poller_reindex AS pri INNER JOIN host AS h ON h.id=pri.host_id WHERE h.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'poller_reindex', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT dl.* FROM data_local AS dl INNER JOIN host AS h ON h.id=dl.host_id WHERE h.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'data_local', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT gl.* FROM graph_local AS gl INNER JOIN host AS h ON h.id=gl.host_id WHERE h.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'graph_local', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT dtd.* FROM data_template_data AS dtd INNER JOIN data_local AS dl ON dtd.local_data_id=dl.id INNER JOIN host AS h ON h.id=dl.host_id WHERE h.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'data_template_data', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT dtr.* FROM data_template_rrd AS dtr INNER JOIN data_local AS dl ON dtr.local_data_id=dl.id INNER JOIN host AS h ON h.id=dl.host_id WHERE h.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'data_template_rrd', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT gti.* FROM graph_templates_item AS gti INNER JOIN graph_local AS gl ON gti.local_graph_id=gl.id INNER JOIN host AS h ON h.id=gl.host_id WHERE h.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'graph_templates_item', $remote_poller_id); $data = db_fetch_assoc_prepared('SELECT did.* FROM data_input_data AS did INNER JOIN data_template_data AS dtd ON did.data_template_data_id=dtd.id INNER JOIN data_local AS dl ON dl.id=dtd.local_data_id INNER JOIN host AS h ON h.id=dl.host_id WHERE h.poller_id = ?', array($remote_poller_id)); replicate_out_table($remote_db_cnn_id, $data, 'data_input_data', $remote_poller_id); api_plugin_hook_function('replicate_out', $remote_poller_id); raise_message('poller_sync'); return true; } function replicate_in() { $replicate_inout_tables = array( 'host' => array( 'direction' => 'inout', // Relatively small table 'in_freq' => 'onchange', 'out_freq' => 'onrecovery', 'out_columns' => 'status, status_event_count, status_fail_date, status_rec_date, status_last_errors, min_time, max_time, cur_time, avg_time, polling_time, total_polls, failed_polls, availability', 'in_columns' => 'all', 'setting' => 'poller_replicate_device_cache_crc_|poller_id|' ), 'host_snmp_cache' => array( 'direction' => 'inout', // Potentially large table 'in_freq' => 'onchange', 'out_freq' => 'onrecovery', 'out_columns' => 'all_changed', 'in_columns' => 'all', 'setting' => 'poller_replicate_device_cache_crc_|poller_id|' ), 'poller_reindex' => array( 'direction' => 'inout', // Small table 'in_freq' => 'always', 'out_freq' => 'onrecovery', 'out_columns' => 'assert_value', 'in_columns' => 'all', 'setting' => 'poller_replicate_device_cache_crc_|poller_id|' ) ); api_plugin_hook_function('replicate_in', $remote_poller_id); } function replicate_out_table($conn, &$data, $table, $remote_poller_id) { if (sizeof($data)) { /* check if the table structure changed */ $local_columns = db_fetch_assoc('SHOW COLUMNS FROM ' . $table); $remote_columns = db_fetch_assoc('SHOW COLUMNS FROM ' . $table, true, $conn); if (sizeof($local_columns) != sizeof($remote_columns)) { cacti_log('NOTE: Replicate Out Detected a Table Structure Change for ' . $table); $create = db_fetch_row('SHOW CREATE TABLE ' . $table); if (isset($create['Create Table'])) { cacti_log('NOTE: Replication Recreating Remote Table Structure for ' . $table); db_execute('DROP TABLE IF EXISTS ' . $table, true, $conn); db_execute($create['Create Table'], true, $conn); } } $prefix = "REPLACE INTO $table ("; $sql = ''; $colcnt = 0; $rows_done = 0; $columns = array_keys($data[0]); $skipcols = array(); foreach($columns as $index => $c) { if (!db_column_exists($table, $c, false, $conn)) { $skipcols[$index] = $c; } else { $prefix .= ($colcnt > 0 ? ', ':'') . $c; $colcnt++; } } $prefix .= ') VALUES '; $rowcnt = 0; foreach($data as $row) { $colcnt = 0; $sql_row = '('; foreach($row as $col => $value) { if (array_search($col, $skipcols) === false) { $sql_row .= ($colcnt > 0 ? ', ':'') . db_qstr($value); $colcnt++; } } $sql_row .= ')'; $sql .= ($rowcnt > 0 ? ', ':'') . $sql_row; $rowcnt++; if ($rowcnt > 1000) { db_execute($prefix . $sql, true, $conn); $rows_done += db_affected_rows($conn); $sql = ''; $rowcnt = 0; } } if ($rowcnt > 0) { db_execute($prefix . $sql, true, $conn); $rows_done += db_affected_rows($conn); } cacti_log('NOTE: Table ' . $table . ' Replicated to Remote Poller ' . $remote_poller_id . ' With ' . $rows_done . ' Rows Updated'); } else { cacti_log('NOTE: Table ' . $table . ' Not Replicated to Remote Poller ' . $remote_poller_id . ' Due to No Rows Found'); } } function poller_recovery_flush_boost($poller_id) { global $config; if ($poller_id > 1) { if ($config['connection'] == 'recovery') { $command_string = read_config_option('path_php_binary'); $extra_args = '-q ' . $config['base_path'] . '/poller_recovery.php'; exec_background($command_string, $extra_args); } } } cacti-1.1.38/lib/plugins.php0000664000175000017500000006175713264740213015235 0ustar tromantroman 1) { // Let's control the menu $orig_menu = $menu; $required_capabilities = array( // Poller related 'poller_bottom' => array('remote_collect'), // Poller execution, api_plugin_hook 'update_host_status' => array('remote_collect'), // Processing poller output, api_plugin_hook // GUI Related 'page_head' => array('online_view', 'offline_view'), // Navigation, api_plugin_hook 'top_header_tabs' => array('online_view', 'offline_view'), // Top Tabs, api_plugin_hook 'top_graph_header_tabs' => array('online_view', 'offline_view'), // Top Tabs, api_plugin_hook 'graph_buttons' => array('online_view', 'offline_view'), // Buttons by graphs, api_plugin_hook 'graphs_new_top_links' => array('online_mgmt', 'offline_mgmt'), // Buttons by graphs, api_plugin_hook 'page_head' => array('online_view', 'offline_view') // Content, api_plugin_hook ); $plugin_capabilities = api_plugin_remote_capabilities($plugin); if ($plugin_capabilities === false) { $function($args); } elseif (api_plugin_hook_is_remote_collect($hook, $plugin, $required_capabilities)) { if (api_plugin_status_run($hook, $required_capabilities, $plugin_capabilities)) { $function($args); } } elseif (isset($required_capabilities[$hook])) { if (api_plugin_status_run($hook, $required_capabilities, $plugin_capabilities)) { $function($args); } } else { $function($args); } // See if we need to restore the menu to original if (($hook == 'config_arrays' || 'config_insert') && $config['connection'] == 'offline') { if (!api_plugin_has_capability($plugin, 'offline_mgmt')) { if ($orig_menu !== $menu) { $menu = $orig_menu; } } } } else { $function($args); } return $args; } function api_plugin_run_plugin_hook_function($hook, $plugin, $function, $ret) { global $config; if ($config['poller_id'] > 1) { $required_capabilities = array( // Poller related 'poller_output' => array('remote_collect'), // Processing poller output, api_plugin_hook_function // GUI Related 'top_header' => array('online_view', 'offline_view'), // Top Tabs, api_plugin_hook_function 'top_graph_header' => array('online_view', 'offline_view'), // Top Tabs, api_plugin_hook_function 'rrd_graph_graph_options' => array('online_view', 'offline_view'), // Buttons by graphs, api_plugin_hook_function 'data_sources_table' => array('online_mgmt', 'offline_mgmt'), // Buttons by graphs, api_plugin_hook_function 'device_action_array' => array('online_mgmt', 'offline_mgmt'), // Actions Dropdown, api_plugin_hook_function 'data_source_action_array' => array('online_mgmt', 'offline_mgmt'), // Actions Dropdown, api_plugin_hook_function 'graphs_action_array' => array('online_mgmt', 'offline_mgmt'), // Actions Dropdown, api_plugin_hook_function ); $plugin_capabilities = api_plugin_remote_capabilities($plugin); // we will run if capabilities are not set if ($plugin_capabilities === false) { $ret = $function($ret); // run if hooks is remote_collect and we support it } elseif (api_plugin_hook_is_remote_collect($hook, $plugin, $required_capabilities)) { if (api_plugin_status_run($hook, $required_capabilities, $plugin_capabilities)) { $ret = $function($ret); } // run if hooks is remote_collect and we support it } elseif (isset($required_capabilities[$hook])) { if (api_plugin_status_run($hook, $required_capabilities, $plugin_capabilities)) { $ret = $function($ret); } } else { $ret = $function($ret); } } else { $ret = $function($ret); } return $ret; } function api_plugin_hook_is_remote_collect($hook, $plugin, $required_capabilities) { if (isset($required_capabilities[$hook])) { foreach($required_capabilities[$hook] as $capability) { if (strpos($capability, 'remote_collect') !== false) { return true; } } } return false; } function api_plugin_get_dependencies($plugin) { global $config; $file = $config['base_path'] . '/plugins/' . $plugin . '/INFO'; if (file_exists($file)) { $info = parse_ini_file($file, true); if (isset($info['info']['requires'])) { $components = explode(',', $info['info']['requires']); foreach($components as $c) { $returndeps[trim($c)] = trim($c); } return $returndeps; } } return false; } function api_plugin_installed($plugin) { $plugin_data = db_fetch_row_prepared('SELECT directory, status FROM plugin_config WHERE directory = ?', array($plugin)); if (sizeof($plugin_data)) { if ($plugin_data['status'] >= 1) { return true; } } return false; } function api_plugin_remote_capabilities($plugin) { global $config, $info_data; if ($plugin == 'internal') { return 'online_view:1 online_mgmt:1 offline_view:1 offline_mgmt:1 remote_collect:1'; } $file = $config['base_path'] . '/plugins/' . $plugin . '/INFO'; if (!isset($info_data[$plugin])) { if (file_exists($file)) { $info = parse_ini_file($file, true); if (sizeof($info)) { $info_data[$plugin] = $info['info']; } } } if (isset($info_data[$plugin]) && isset($info_data[$plugin]['capabilities'])) { return $info_data[$plugin]['capabilities']; } else { return 'online_view:0 online_mgmt:0 offline_view:0 offline_mgmt:0 remote_collect:0'; } return false; } function api_plugin_has_capability($plugin, $capability) { $capabilities = api_plugin_remote_capabilities($plugin); if (strpos($capabilities, "$capability:1") !== false) { return true; } else { return false; } } function api_plugin_status_run($hook, $required_capabilities, $plugin_capabilities) { global $config; $status = $config['connection']; if (!isset($required_capabilities[$hook])) { return true; } foreach($required_capabilities[$hook] as $capability) { if ($status == 'online' && strpos($capability, 'online') === false) continue; if (($status == 'offline' || $status == 'recovery') && strpos($capability, 'offline') === false) continue; if (strpos($plugin_capabilities, "$capability:1") !== false) { return true; } switch($capability) { case 'offline_view': // if the plugin has mgmt, it's assumed to have view if (strpos($plugin_capabilities, "offline_mgmt:1") !== false) { return true; } break; case 'online_view': // if the plugin has mgmt, it's assumed to have view if (strpos($plugin_capabilities, "offline_mgmt:1") !== false) { return true; } break; default: break; } } return false; } function api_plugin_db_table_create ($plugin, $table, $data) { global $config; include_once($config['library_path'] . '/database.php'); $result = db_fetch_assoc('SHOW TABLES'); $tables = array(); foreach($result as $index => $arr) { foreach ($arr as $t) { $tables[] = $t; } } if (!in_array($table, $tables)) { $c = 0; $sql = 'CREATE TABLE `' . $table . "` (\n"; foreach ($data['columns'] as $column) { if (isset($column['name'])) { if ($c > 0) $sql .= ",\n"; $sql .= '`' . $column['name'] . '`'; if (isset($column['type'])) $sql .= ' ' . $column['type']; if (isset($column['unsigned'])) $sql .= ' unsigned'; if (isset($column['NULL']) && $column['NULL'] == false) $sql .= ' NOT NULL'; if (isset($column['NULL']) && $column['NULL'] == true && !isset($column['default'])) $sql .= ' default NULL'; if (isset($column['default'])) $sql .= ' default ' . (is_numeric($column['default']) ? $column['default'] : "'" . $column['default'] . "'"); if (isset($column['auto_increment'])) $sql .= ' auto_increment'; $c++; } } if (isset($data['primary'])) { $sql .= ",\n PRIMARY KEY (`" . $data['primary'] . '`)'; } if (isset($data['keys']) && sizeof($data['keys'])) { foreach ($data['keys'] as $key) { if (isset($key['name'])) { $sql .= ",\n INDEX `" . $key['name'] . '` (`' . $key['columns'] . '`)'; } } } if (isset($data['unique_keys'])) { foreach ($data['unique_keys'] as $key) { if (isset($key['name'])) { $sql .= ",\n UNIQUE INDEX `" . $key['name'] . '` (`' . $key['columns'] . '`)'; } } } $sql .= ') ENGINE = ' . $data['type']; if (isset($data['comment'])) { $sql .= " COMMENT = '" . $data['comment'] . "'"; } if (db_execute($sql)) { db_execute_prepared("REPLACE INTO plugin_db_changes (plugin, `table`, `column`, `method`) VALUES (?, ?, '', 'create')", array($plugin, $table)); } } } function api_plugin_db_changes_remove ($plugin) { $tables = db_fetch_assoc_prepared("SELECT `table` FROM plugin_db_changes WHERE plugin = ? AND method ='create'", array($plugin), false); if (count($tables)) { foreach ($tables as $table) { db_execute('DROP TABLE IF EXISTS `' . $table['table'] . '`;'); } db_execute_prepared("DELETE FROM plugin_db_changes where plugin = ? AND method ='create'", array($plugin), false); } $columns = db_fetch_assoc_prepared("SELECT `table`, `column` FROM plugin_db_changes WHERE plugin = ? AND method ='addcolumn'", array($plugin), false); if (count($columns)) { foreach ($columns as $column) { db_execute('ALTER TABLE `' . $column['table'] . '` DROP `' . $column['column'] . '`'); } db_execute_prepared("DELETE FROM plugin_db_changes WHERE plugin = ? AND method = 'addcolumn'", array($plugin), false); } } function api_plugin_db_add_column ($plugin, $table, $column) { // Example: api_plugin_db_add_column ('thold', 'plugin_config', array('name' => 'test' . rand(1, 200), 'type' => 'varchar (255)', 'NULL' => false)); global $config, $database_default; include_once($config['library_path'] . '/database.php'); $result = db_fetch_assoc('SHOW COLUMNS FROM `' . $table . '`'); $columns = array(); foreach($result as $index => $arr) { foreach ($arr as $t) { $columns[] = $t; } } if (isset($column['name']) && !in_array($column['name'], $columns)) { $sql = 'ALTER TABLE `' . $table . '` ADD `' . $column['name'] . '`'; if (isset($column['type'])) $sql .= ' ' . $column['type']; if (isset($column['unsigned'])) $sql .= ' unsigned'; if (isset($column['NULL']) && $column['NULL'] == false) $sql .= ' NOT NULL'; if (isset($column['NULL']) && $column['NULL'] == true && !isset($column['default'])) $sql .= ' default NULL'; if (isset($column['default'])) $sql .= ' default ' . (is_numeric($column['default']) ? $column['default'] : "'" . $column['default'] . "'"); if (isset($column['auto_increment'])) $sql .= ' auto_increment'; if (isset($column['after'])) $sql .= ' AFTER ' . $column['after']; if (db_execute($sql)) { db_execute_prepared("INSERT INTO plugin_db_changes (plugin, `table`, `column`, `method`) VALUES (?, ?, ?, 'addcolumn')", array($plugin, $table, $column['name'])); } } } function api_plugin_install ($plugin) { global $config; include_once($config['base_path'] . "/plugins/$plugin/setup.php"); $dependencies = api_plugin_get_dependencies($plugin); if (is_array($dependencies) && sizeof($dependencies)) { $message = ''; $proceed = true; foreach($dependencies as $dependency) { if (!api_plugin_installed($dependency)) { $message .= ($message != '' ? '
    ':'') . __('Plugin %s is required for %s, and it is not installed.', $dependency, $plugin); $proceed = false; } } if (!$proceed) { $message .= '
    ' . __('Plugin cannot be installed.'); $_SESSION['reports_message'] = $message; raise_message('reports_message'); header('Location: plugins.php?header=false'); exit; } } $exists = db_fetch_assoc_prepared('SELECT id FROM plugin_config WHERE directory = ?', array($plugin), false); if (sizeof($exists)) { db_execute_prepared('DELETE FROM plugin_config WHERE directory = ?', array($plugin)); } $name = $author = $webpage = $version = ''; $function = 'plugin_' . $plugin . '_version'; if (function_exists($function)){ $info = $function(); $name = $info['longname']; if (isset($info['homepage'])) { $webpage = $info['homepage']; } elseif (isset($info['webpage'])) { $webpage = $info['webpage']; } else { $webpage = 'Not Stated'; } $author = $info['author']; $version = $info['version']; } db_execute_prepared('INSERT INTO plugin_config (directory, name, author, webpage, version) VALUES (?, ?, ?, ?, ?)', array($plugin, $name, $author, $webpage, $version)); $function = 'plugin_' . $plugin . '_install'; if (function_exists($function)){ $function(); $ready = api_plugin_check_config ($plugin); if ($ready) { // Set the plugin as "disabled" so it can go live db_execute_prepared('UPDATE plugin_config SET status = 4 WHERE directory = ?', array($plugin)); } else { // Set the plugin as "needs configuration" db_execute_prepared('UPDATE plugin_config SET status = 2 WHERE directory = ?', array($plugin)); } } } function api_plugin_uninstall ($plugin) { global $config; include_once($config['base_path'] . "/plugins/$plugin/setup.php"); // Run the Plugin's Uninstall Function first $function = 'plugin_' . $plugin . '_uninstall'; if (function_exists($function)) { $function(); } api_plugin_remove_hooks ($plugin); api_plugin_remove_realms ($plugin); db_execute_prepared('DELETE FROM plugin_config WHERE directory = ?', array($plugin)); api_plugin_db_changes_remove ($plugin); } function api_plugin_check_config ($plugin) { global $config; include_once($config['base_path'] . "/plugins/$plugin/setup.php"); $function = 'plugin_' . $plugin . '_check_config'; if (function_exists($function)) { return $function(); } return true; } function api_plugin_enable ($plugin) { $ready = api_plugin_check_config ($plugin); if ($ready) { api_plugin_enable_hooks ($plugin); db_execute_prepared('UPDATE plugin_config SET status = 1 WHERE directory = ?', array($plugin)); } } function api_plugin_is_enabled ($plugin) { $status = db_fetch_cell_prepared('SELECT status FROM plugin_config WHERE directory = ?', array($plugin), false); if ($status == '1') return true; return false; } function api_plugin_disable ($plugin) { api_plugin_disable_hooks ($plugin); db_execute_prepared('UPDATE plugin_config SET status = 4 WHERE directory = ?', array($plugin)); } function api_plugin_disable_all ($plugin) { api_plugin_disable_hooks_all ($plugin); db_execute_prepared('UPDATE plugin_config SET status = 4 WHERE directory = ?', array($plugin)); } function api_plugin_moveup($plugin) { $id = db_fetch_cell_prepared('SELECT id FROM plugin_config WHERE directory = ?', array($plugin)); if (!empty($id)) { $temp_id = db_fetch_cell('SELECT MAX(id) FROM plugin_config')+1; $prior_id = db_fetch_cell_prepared('SELECT MAX(id) FROM plugin_config WHERE id < ?', array($id)); /* update the above plugin to the prior temp id */ db_execute_prepared('UPDATE plugin_config SET id = ? WHERE id = ?', array($temp_id, $prior_id)); db_execute_prepared('UPDATE plugin_config SET id = ? WHERE id = ?', array($prior_id, $id)); db_execute_prepared('UPDATE plugin_config SET id = ? WHERE id = ?', array($id, $temp_id)); } } function api_plugin_movedown($plugin) { $id = db_fetch_cell_prepared('SELECT id FROM plugin_config WHERE directory = ?', array($plugin)); $temp_id = db_fetch_cell('SELECT MAX(id) FROM plugin_config')+1; $next_id = db_fetch_cell_prepared('SELECT MIN(id) FROM plugin_config WHERE id > ?', array($id)); /* update the above plugin to the prior temp id */ db_execute_prepared('UPDATE plugin_config SET id = ? WHERE id = ?', array($temp_id, $next_id)); db_execute_prepared('UPDATE plugin_config SET id = ? WHERE id = ?', array($next_id, $id)); db_execute_prepared('UPDATE plugin_config SET id = ? WHERE id = ?', array($id, $temp_id)); } function api_plugin_register_hook ($plugin, $hook, $function, $file) { $exists = db_fetch_assoc_prepared('SELECT id FROM plugin_hooks WHERE name = ? AND hook = ?', array($plugin, $hook), false); if (!count($exists)) { $settings = array('config_settings', 'config_arrays', 'config_form'); $status = (!in_array($hook, $settings) ? 0 : 1); db_execute_prepared('INSERT INTO plugin_hooks (name, hook, function, file, status) VALUES (?, ?, ?, ?, ?)', array($plugin, $hook, $function, $file, $status)); } else { db_execute_prepared("UPDATE plugin_hooks SET function = ?, file = ? WHERE name = ? AND hook = ?", array($function, $file, $plugin, $hook)); } } function api_plugin_remove_hooks ($plugin) { db_execute_prepared('DELETE FROM plugin_hooks WHERE name = ?', array($plugin)); } function api_plugin_enable_hooks ($plugin) { db_execute_prepared('UPDATE plugin_hooks SET status = 1 WHERE name = ?', array($plugin)); } function api_plugin_disable_hooks ($plugin) { db_execute_prepared("UPDATE plugin_hooks SET status = 0 WHERE name = ? AND hook != 'config_settings' AND hook != 'config_arrays' AND hook != 'config_form'", array($plugin)); } function api_plugin_disable_hooks_all ($plugin) { db_execute_prepared("UPDATE plugin_hooks SET status = 0 WHERE name = ?", array($plugin)); } function api_plugin_register_realm ($plugin, $file, $display, $admin = true) { $exists = db_fetch_cell_prepared('SELECT id FROM plugin_realms WHERE plugin = ? AND file = ?', array($plugin, $file)); if ($exists === false) { db_execute_prepared('REPLACE INTO plugin_realms (plugin, file, display) VALUES (?, ?, ?)', array($plugin, $file, $display)); if ($admin) { $realm_id = db_fetch_cell_prepared('SELECT id FROM plugin_realms WHERE plugin = ? AND file = ?', array($plugin, $file), false); $realm_id = $realm_id + 100; $user_ids[] = db_fetch_cell("SELECT id FROM user_auth WHERE username = 'admin'", false); if (isset($_SESSION['sess_user_id'])) { $user_ids[] = $_SESSION['sess_user_id']; } if (sizeof($user_ids)) { foreach($user_ids as $user_id) { db_execute_prepared('REPLACE INTO user_auth_realm (user_id, realm_id) VALUES (?, ?)', array($user_id, $realm_id)); } } } } else { db_execute_prepared('UPDATE plugin_realms SET display = ? WHERE plugin = ? AND file = ?', array($display, $plugin, $file)); } } function api_plugin_remove_realms ($plugin) { $realms = db_fetch_assoc_prepared('SELECT id FROM plugin_realms WHERE plugin = ?', array($plugin), false); foreach ($realms as $realm) { $id = $realm['id'] + 100; db_execute_prepared('DELETE FROM user_auth_realm WHERE realm_id = ?', array($id)); db_execute_prepared('DELETE FROM user_auth_group_realm WHERE realm_id = ?', array($id)); } db_execute_prepared('DELETE FROM plugin_realms WHERE plugin = ?', array($plugin)); } function api_plugin_load_realms () { global $user_auth_realms, $user_auth_realm_filenames; $plugin_realms = db_fetch_assoc('SELECT * FROM plugin_realms ORDER BY plugin, display', false); if (count($plugin_realms)) { foreach ($plugin_realms as $plugin_realm) { $plugin_files = explode(',', $plugin_realm['file']); foreach($plugin_files as $plugin_file) { $user_auth_realm_filenames[$plugin_file] = $plugin_realm['id'] + 100; } $user_auth_realms[$plugin_realm['id'] + 100] = $plugin_realm['display']; } } } function api_plugin_user_realm_auth ($filename = '') { global $user_auth_realm_filenames; /* list all realms that this user has access to */ if ($filename != '' && isset($user_auth_realm_filenames[basename($filename)])) { if (is_realm_allowed($user_auth_realm_filenames[basename($filename)])) { return true; } } return false; } function plugin_config_arrays () { global $config, $menu; if ($config['poller_id'] == 1 || $config['connection'] == 'online') { $menu[__('Configuration')]['plugins.php'] = __('Plugin Management'); } api_plugin_load_realms (); } function plugin_draw_navigation_text ($nav) { $nav['plugins.php:'] = array('title' => __('Plugin Management'), 'mapping' => 'index.php:', 'url' => 'plugins.php', 'level' => '1'); return $nav; } function plugin_is_compatible($plugin) { global $config; $info = plugin_load_info_file($config['base_path'] . '/plugins/' . $plugin . '/INFO'); if ($info !== false) { if (!isset($info['compat']) || cacti_version_compare(CACTI_VERSION, $info['compat'], '<')) { return array('compat' => false, 'requires' => __('Requires: Cacti >= %s', $info['compat'])); } } else { return array('compat' => false, 'requires' => __('Legacy Plugin')); } return array('compat' => true, 'requires' => __('Requires: Cacti >= %s', $info['compat'])); } function plugin_load_info_file($file) { if (file_exists($file)) { if (is_readable($file)) { $info = parse_ini_file($file, true); if (sizeof($info)) { return $info['info']; } else { cacti_log('WARNING: Loading plugin INFO file failed. Parsing INI file failed.', false, 'WEBUI'); } } else { cacti_log('WARNING: Loading plugin INFO file failed. INFO file not readable.', false, 'WEBUI'); } } else { cacti_log('WARNING: Loading plugin INFO file failed. INFO file does not exist.', false, 'WEBUI'); } return false; } cacti-1.1.38/lib/ping.php0000664000175000017500000005637613264740213014512 0ustar tromantromanport = 33439; return true; } function __destruct() { return true; } function close_socket() { @socket_shutdown($this->socket, 2); socket_close($this->socket); } function start_time() { $this->timer_start_time = microtime(true); } function get_time($acc=2) { // format start time $start_time = $this->timer_start_time; // get and format end time $end_time = microtime(true); return number_format ($end_time - $start_time, $acc); } function build_udp_packet() { $data = 'cacti-monitoring-system'; // the actual test data // now lets build the actual UDP packet $this->request = chr(0) . chr(1) . chr(0) . $data . chr(0); $this->request_len = strlen($this->request); } function ping_error_handler($errno, $errmsg, $filename, $linenum, $vars) { return true; } function set_ping_error_handler() { set_error_handler(array($this, 'ping_error_handler')); } function restore_cacti_error_handler() { restore_error_handler(); } function build_icmp_packet() { $seq_low = rand(0,255); $seq_high = rand(0,255); $data = 'cacti-monitoring-system'; // the actual test data $type = "\x08"; // 8 echo message; 0 echo reply message $code = "\x00"; // always 0 for this program $chksm = "\x00\x00"; // generate checksum for icmp request $id = chr($seq_high) . chr($seq_low); $sqn = chr($seq_high) . chr($seq_low); $this->sqn = $sqn; // now lets build the actual icmp packet $this->request = $type.$code.$chksm.$id.$sqn.$data; $chksm = $this->get_checksum($this->request); $this->request = $type.$code.$chksm.$id.$sqn.$data; $this->request_len = strlen($this->request); } function get_checksum($data) { if (strlen($data)%2) { $data .= "\x00"; } $bit = unpack('n*', $data); $sum = array_sum($bit); while ($sum>>16) { $sum = ($sum >> 16) + ($sum & 0xffff); } return pack('n*', ~$sum); } function ping_icmp() { global $config; /* ping me */ if ($this->host['hostname']) { /* initialize variables */ $this->ping_status = 'down'; $this->ping_response = __('ICMP Ping timed out'); /* establish timeout variables */ $to_sec = floor($this->timeout/1000); $to_usec = ($this->timeout%1000)*1000; /* clean up hostname if specifying snmp_transport */ $this->host['hostname'] = $this->strip_ip_address($this->host['hostname']); /* determine the host's ip address * this prevents from command injection as well*/ if ($this->is_ipaddress($this->host['hostname'])) { $host_ip = $this->host['hostname']; } else { /* again, as a side effect, prevention from command injection */ $host_ip = cacti_gethostbyname($this->host['hostname']); if (!$this->is_ipaddress($host_ip)) { cacti_log('WARNING: ICMP Ping Error: cacti_gethostbyname failed for ' . $this->host['hostname']); $this->response = 'ICMP Ping Error: cacti_gethostbyname failed for ' . $this->host['hostname']; return false; } } /* we have to use the real ping, in cases where windows failed or while using UNIX/Linux */ $pattern = bin2hex('cacti-monitoring-system'); // the actual test data /* host timeout given in ms, recalculate to sec, but make it an integer * we might consider to use escapeshellarg on hostname, * but this field has already been verified. * The other fields are numerical fields only and thus * not vulnerable for command injection */ if (substr_count(strtolower(PHP_OS), 'sun')) { $result = shell_exec('ping ' . $this->host['hostname']); } elseif (substr_count(strtolower(PHP_OS), 'hpux')) { $result = shell_exec('ping -m ' . ceil($this->timeout/1000) . ' -n ' . $this->retries . ' ' . $this->host['hostname']); } elseif (substr_count(strtolower(PHP_OS), 'mac')) { $result = shell_exec('ping -t ' . ceil($this->timeout/1000) . ' -c ' . $this->retries . ' ' . $this->host['hostname']); } elseif (substr_count(strtolower(PHP_OS), 'freebsd')) { $result = shell_exec('ping -t ' . ceil($this->timeout/1000) . ' -c ' . $this->retries . ' ' . $this->host['hostname']); } elseif (substr_count(strtolower(PHP_OS), 'darwin')) { $result = shell_exec('ping -t ' . ceil($this->timeout/1000) . ' -c ' . $this->retries . ' ' . $this->host['hostname']); } elseif (substr_count(strtolower(PHP_OS), 'bsd')) { $result = shell_exec('ping -w ' . ceil($this->timeout/1000) . ' -c ' . $this->retries . ' ' . $this->host['hostname']); } elseif (substr_count(strtolower(PHP_OS), 'aix')) { $result = shell_exec('ping -i ' . ceil($this->timeout/1000) . ' -c ' . $this->retries . ' ' . $this->host['hostname']); } elseif (substr_count(strtolower(PHP_OS), 'winnt')) { $result = shell_exec('chcp 437 && ping -w ' . $this->timeout . ' -n ' . $this->retries . ' ' . $this->host['hostname']); } else { /* please know, that when running SELinux, httpd will throw * ping: cap_set_proc: Permission denied * as it now tries to open an ICMP socket and fails * $result will be empty, then. */ if (strpos($this->host['hostname'], ':') !== false) { $result = shell_exec('ping6 -W ' . ceil($this->timeout/1000) . ' -c ' . $this->retries . ' -p ' . $pattern . ' ' . $this->host['hostname']); } else { $result = shell_exec('ping -W ' . ceil($this->timeout/1000) . ' -c ' . $this->retries . ' -p ' . $pattern . ' ' . $this->host['hostname'] . ' 2>&1'); if ((strpos($result, 'unknown host') !== false || strpos($result, 'Address family') !== false) && file_exists('/bin/ping6')) { $result = shell_exec('ping6 -W ' . ceil($this->timeout/1000) . ' -c ' . $this->retries . ' -p ' . $pattern . ' ' . $this->host['hostname']); } } } if (strtolower(PHP_OS) != 'winnt') { $position = strpos($result, 'min/avg/max'); if ($position > 0) { $output = trim(str_replace(' ms', '', substr($result, $position))); $pieces = explode('=', $output); $results = explode('/', $pieces[1]); $this->ping_status = $results[1]; $this->ping_response = __('ICMP Ping Success (%s ms)', $results[1]); return true; } else { $this->status = 'down'; $this->ping_response = __('ICMP ping Timed out'); return false; } } else { $position = strpos($result, 'Minimum'); if ($position > 0) { $output = trim(substr($result, $position)); $pieces = explode(',', $output); $results = explode('=', $pieces[2]); $this->ping_status = trim(str_replace('ms', '', $results[1])); $this->ping_response = __('ICMP Ping Success (%s ms)', $this->ping_status); return true; } else { $this->status = 'down'; $this->ping_response = __('ICMP ping Timed out'); return false; } } } else { $this->ping_status = 'down'; $this->ping_response = __('Destination address not specified'); return false; } } function seteuid() { global $config; $cacti_user = ''; /* if we are unix, set the effective userid to root and then create */ if (($config['cacti_server_os'] == 'unix') && (function_exists('posix_getuid'))) { $cacti_user = posix_getuid(); posix_seteuid(0); } return $cacti_user; } function setuid($cacti_poller_account) { global $config; /* if we are unix, set the effective userid to root and then create */ if (($config['cacti_server_os'] == 'unix') && (function_exists('posix_getuid'))) { posix_seteuid($cacti_poller_account); } } function ping_snmp() { /* initialize variables */ $this->snmp_status = 'down'; $this->snmp_response = 'Device did not respond to SNMP'; $output = ''; /* get start time */ $this->start_time(); /* by default, we look at sysUptime */ if ($this->avail_method == AVAIL_SNMP_GET_NEXT) { $oid = '.1.3.6.1.2.1.1.3.0'; } elseif ($this->avail_method == AVAIL_SNMP_GET_SYSDESC) { $oid = '.1.3.6.1.2.1.1.1.0'; } else { $oid = '.1.3.6.1.2.1.1.3.0'; } $session = cacti_snmp_session($this->host['hostname'], $this->host['snmp_community'], $this->host['snmp_version'], $this->host['snmp_username'], $this->host['snmp_password'], $this->host['snmp_auth_protocol'], $this->host['snmp_priv_passphrase'], $this->host['snmp_priv_protocol'], $this->host['snmp_context'], $this->host['snmp_engine_id'], $this->host['snmp_port'], $this->host['snmp_timeout'], $this->retries, read_config_option('max_get_size')); if ($session === false) { $this->snmp_status = 'down'; $this->snmp_response = 'Failed to make SNMP session'; return false; } /* getnext does not work in php versions less than 5 */ if (($this->avail_method == AVAIL_SNMP_GET_NEXT) && (version_compare('5', phpversion(), '<'))) { $output = cacti_snmp_session_getnext($session, $oid); } else { $output = cacti_snmp_session_get($session, $oid); } $session->close(); /* determine total time +- ~10% */ $this->time = $this->get_time($this->precision); /* check result for uptime */ if ($output !== false && $output != 'U' && strlen($output)) { /* calculte total time */ $this->snmp_status = $this->time*1000; $this->snmp_response = 'Device responded to SNMP'; return true; } else { $this->snmp_status = 'down'; $this->snmp_response = 'Device did not respond to SNMP'; return false; } } /* ping_snmp */ function ping_udp() { $this->set_ping_error_handler(); /* hostname must be nonblank */ if ($this->host['hostname'] != '') { /* initialize variables */ $this->ping_status = 'down'; $this->ping_response = __('default'); /* establish timeout variables */ $to_sec = floor($this->timeout/1000); $to_usec = ($this->timeout%1000)*1000; /* clean up hostname if specifying snmp_transport */ $this->host['hostname'] = $this->strip_ip_address($this->host['hostname']); /* determine the host's ip address */ if ($this->is_ipaddress($this->host['hostname'])) { $host_ip = $this->host['hostname']; } else { $host_ip = cacti_gethostbyname($this->host['hostname']); if (!$this->is_ipaddress($host_ip)) { cacti_log('WARNING: UDP Ping Error: cacti_gethostbyname failed for ' . $this->host['hostname']); $this->response = 'UDP Ping Error: cacti_gethostbyname failed for ' . $this->host['hostname']; $this->restore_cacti_error_handler(); return false; } } /* initialize the socket */ if (strpos($host_ip, ':') !== false) { if (defined('AF_INET6')) { if (version_compare(PHP_VERSION, '5.5.4', '<')) { $this->ping_response = __('Please upgrade to PHP 5.5.4+ for IPv6 support!'); $this->ping_status = 'down'; $this->restore_cacti_error_handler(); return false; } else { $this->socket = socket_create(AF_INET6, SOCK_DGRAM, SOL_UDP); } } else { $this->ping_response = __('Please upgrade to PHP 5.5.4+ for IPv6 support!'); $this->ping_status = 'down'; $this->restore_cacti_error_handler(); return false; } } else { $this->socket = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP); } socket_set_option($this->socket, SOL_SOCKET, SO_RCVTIMEO, array('sec' => $to_sec, 'usec' => $to_usec)); socket_set_option($this->socket, SOL_SOCKET, SO_SNDTIMEO, array('sec' => $to_sec, 'usec' => $to_usec)); socket_connect($this->socket, $host_ip, $this->port); /* format packet */ $this->build_udp_packet(); $error = ''; $retry_count = 0; while (true) { if ($retry_count >= $this->retries) { $this->status = 'down'; $this->ping_response = __('UDP ping error: %s', $error); $this->close_socket(); $this->restore_cacti_error_handler(); return false; } /* get start time */ $this->start_time(); /* write to the socket */ socket_write($this->socket, $this->request, $this->request_len); /* get the socket response */ $r = array($this->socket); $w = array($this->socket); $f = array($this->socket); $num_changed_sockets = socket_select($r, $w, $f, $to_sec, $to_usec); if ($num_changed_sockets === false) { $error = 'UDP ping: socket_select(), reason: ' . socket_strerror(socket_last_error($this->socket)); } else { switch($num_changed_sockets) { case 2: /* response received, so host is available */ case 1: /* get the end time */ $this->time = $this->get_time($this->precision); /* get packet response */ //$code = socket_recv($this->socket, $this->reply, 256, 0); $code = socket_recv($this->socket, $this->reply, 256, 0); $errno = socket_last_error($this->socket); socket_clear_error($this->socket); if (($code == -1 || empty($code)) && ($errno == EHOSTUNREACH || $errno == ECONNRESET || $errno == ECONNREFUSED)) { /* set the return message */ $this->ping_status = $this->time * 1000; $this->ping_response = __('UDP Ping Success (%s ms)', $this->time*1000); $this->close_socket(); $this->restore_cacti_error_handler(); return true; } else { $error = socket_strerror($errno); } break; case 0: /* timeout */ $error = 'timeout'; break; } } $retry_count++; } } else { $this->ping_response = __('Destination address not specified'); $this->ping_status = 'down'; $this->restore_cacti_error_handler(); return false; } } /* end ping_udp */ function ping_tcp() { $this->set_ping_error_handler(); /* hostname must be nonblank */ if ($this->host['hostname'] != '') { /* initialize variables */ $this->ping_status = 'down'; $this->ping_response = __('default'); /* establish timeout variables */ $to_sec = floor($this->timeout/1000); $to_usec = ($this->timeout%1000)*1000; /* clean up hostname if specifying snmp_transport */ $this->host['hostname'] = $this->strip_ip_address($this->host['hostname']); /* determine the host's ip address */ if ($this->is_ipaddress($this->host['hostname'])) { $host_ip = $this->host['hostname']; } else { $host_ip = cacti_gethostbyname($this->host['hostname']); if (!$this->is_ipaddress($host_ip)) { cacti_log('WARNING: TCP Ping Error: cacti_gethostbyname failed for ' . $this->host['hostname']); $this->response = 'TCP Ping Error: cacti_gethostbyname failed for ' . $this->host['hostname']; $this->restore_cacti_error_handler(); return false; } } /* initilize the socket */ if (strpos($host_ip, ':') !== false) { if (defined('AF_INET6')) { if (version_compare(PHP_VERSION, '5.5.4', '<')) { $this->ping_response = __('Please upgrade to PHP 5.5.4+ for IPv6 support!'); $this->ping_status = 'down'; $this->restore_cacti_error_handler(); return false; } else { $this->socket = socket_create(AF_INET6, SOCK_STREAM, SOL_TCP); } } else { $this->ping_response = __('Please upgrade to PHP 5.5.4+ for IPv6 support!'); $this->ping_status = 'down'; $this->restore_cacti_error_handler(); return false; } } else { $this->socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); } while (1) { /* set start time */ $this->start_time(); socket_set_block($this->socket); socket_set_option($this->socket, SOL_SOCKET, SO_RCVTIMEO, array('sec' => $to_sec, 'usec' => $to_usec)); socket_set_option($this->socket, SOL_SOCKET, SO_SNDTIMEO, array('sec' => $to_sec, 'usec' => $to_usec)); socket_connect($this->socket, $host_ip, $this->port); $errno = socket_last_error($this->socket); if ($errno > 0) { $this->ping_response = __('TCP ping: socket_connect(), reason: %s', socket_strerror($errno)); $this->ping_status = 'down'; $this->close_socket(); $this->restore_cacti_error_handler(); socket_clear_error($this->socket); return false; } $r = array($this->socket); $w = array($this->socket); $f = array($this->socket); $num_changed_sockets = socket_select($r, $w, $f, $to_sec, $to_usec); if ($num_changed_sockets === false) { $this->ping_response = __('TCP ping: socket_select() failed, reason: %s', socket_strerror(socket_last_error())); $this->ping_status = 'down'; $this->close_socket(); $this->restore_cacti_error_handler(); return false; } else { switch($num_changed_sockets) { case 2: /* response received, so host is available */ case 1: /* connected, so calculate the total time and return */ $this->time = $this->get_time($this->precision); if (($this->time*1000) <= $this->timeout) { $this->ping_response = __('TCP Ping Success (%s ms)', $this->time*1000); $this->ping_status = $this->time*1000; } $this->close_socket(); $this->restore_cacti_error_handler(); return true; case 0: /* timeout */ $this->ping_response = __('TCP ping timed out'); $this->ping_status = 'down'; $this->close_socket(); $this->restore_cacti_error_handler(); return false; } } } } else { $this->ping_response = __('Destination address not specified'); $this->ping_status = 'down'; $this->restore_cacti_error_handler(); return false; } } /* end ping_tcp */ function ping($avail_method = AVAIL_SNMP_AND_PING, $ping_type = PING_ICMP, $timeout=500, $retries=3) { $this->set_ping_error_handler(); /* initialize variables */ $ping_ping = true; $ping_snmp = true; $this->ping_status = 'down'; $this->ping_response = __('Ping not performed due to setting.'); $this->snmp_status = 'down'; $this->snmp_response = 'SNMP not performed due to setting or ping result.'; $this->avail_method = $avail_method; /* short circuit for availability none */ if ($avail_method == AVAIL_NONE) { $this->ping_status = '0.00'; $this->restore_cacti_error_handler(); return true; } if ((!function_exists('socket_create')) && ($avail_method != AVAIL_NONE)) { $avail_method = AVAIL_SNMP; cacti_log('WARNING: sockets support not enabled in PHP, falling back to SNMP ping'); } if (($retries <= 0) || ($retries > 5)) { $this->retries = 2; } else { $this->retries = $retries; } if ($timeout <= 0) { $this->timeout = 500; } else { $this->timeout = $timeout; } /* decimal precision is 0.0000 */ $this->precision = 5; /* snmp pinging has been selected at a minimum */ $ping_result = false; $snmp_result = false; /* icmp/udp ping test */ if (($avail_method == AVAIL_SNMP_AND_PING) || ($avail_method == AVAIL_SNMP_OR_PING) || ($avail_method == AVAIL_PING)) { if ($ping_type == PING_ICMP) { $ping_result = $this->ping_icmp(); } elseif ($ping_type == PING_UDP) { $ping_result = $this->ping_udp(); } elseif ($ping_type == PING_TCP) { $ping_result = $this->ping_tcp(); } } /* snmp test */ if (($avail_method == AVAIL_SNMP_OR_PING) && ($ping_result == true)) { $snmp_result = true; $this->snmp_status = 0.000; } elseif (($avail_method == AVAIL_SNMP_AND_PING) && ($ping_result == false)) { $snmp_result = false; } elseif (($avail_method == AVAIL_SNMP) || ($avail_method == AVAIL_SNMP_AND_PING) || ($avail_method == AVAIL_SNMP_GET_SYSDESC) || ($avail_method == AVAIL_SNMP_GET_NEXT)) { if (($this->host['snmp_community'] == '') && ($this->host['snmp_version'] != 3)) { /* snmp version 1/2 without community string assume SNMP test to be successful due to backward compatibility issues */ $snmp_result = true; $this->snmp_status = 0.000; } else { $snmp_result = $this->ping_snmp(); } } $this->restore_cacti_error_handler(); switch ($avail_method) { case AVAIL_SNMP_OR_PING: if (($this->host['snmp_community'] == '') && ($this->host['snmp_version'] != 3)) { if ($ping_result) { return true; } else { return false; } } elseif ($snmp_result) { return true; } elseif ($ping_result) { return true; } else { return false; } case AVAIL_SNMP_AND_PING: if (($this->host['snmp_community'] == '') && ($this->host['snmp_version'] != 3)) { if ($ping_result) { return true; } else { return false; } } elseif (($snmp_result) && ($ping_result)) { return true; } else { return false; } case AVAIL_SNMP: case AVAIL_SNMP_GET_NEXT: case AVAIL_SNMP_GET_SYSDESC: if ($snmp_result) { return true; } else { return false; } case AVAIL_PING: if ($ping_result) { return true; } else { return false; } default: return false; } } /* end_ping */ function is_ipaddress($ip_address = '') { /* check for ipv4/v6 */ if (function_exists('filter_var')) { if (filter_var($ip_address, FILTER_VALIDATE_IP) !== false) { return true; } else { return false; } } elseif (inet_pton($ip_address) !== false) { return true; } else { return false; } } function strip_ip_address($ip_address) { /* clean up hostname if specifying snmp_transport */ if (strpos($ip_address, 'tcp6:') !== false) { $ip_address = str_replace('tcp6:', '', strtolower($ip_address)); if (strpos($ip_address, '[') !== false) { $parts = explode(']', $ip_address); $ip_address = trim($parts[0], '['); } } elseif (strpos($ip_address, 'udp6:') !== false) { $ip_address = str_replace('udp6:', '', strtolower($ip_address)); if (strpos($ip_address, '[') !== false) { $parts = explode(']', $ip_address); $ip_address = trim($parts[0], '['); } } elseif (strpos($ip_address, 'tcp:') !== false) { $ip_address = str_replace('tcp:', '', strtolower($ip_address)); } elseif (strpos($ip_address, 'udp:') !== false) { $ip_address = str_replace('udp:', '', strtolower($ip_address)); } return $ip_address; } } cacti-1.1.38/lib/mib_parser.php0000664000175000017500000003561513264740213015671 0ustar tromantroman * * Based on snmp - a Python SNMP library * Copyright (C) 2003 Unicity Pty Ltd * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ class MibParser extends MibCache { protected $parsed = array(); public $oids = array(); /** * Constructor */ function __construct(){ set_time_limit(0); ini_set('memory_limit', '256M'); error_reporting(E_ALL); } function add_mib($filename, $mib_name){ MibParser::parse_mib(file_get_contents($filename), $mib_name, true); } /** * Get Tokens * * @param string $text * @return array */ function get_tokens($text) { $in_quote = false; $in_comment = false; $token = ''; $tokens = array(); $length = strlen($text); for($i = 0; $i < $length; $i++) { if($in_quote) { if($text[$i] == '"') { $in_quote = false; if($token != '') { /* strip whitespaces from the end of the beginning of every object description row */ $lines = preg_split( '/\r\n|\r|\n/', $token); $token = ''; foreach($lines as $line) { $token .= trim($line) . "\r\n"; } $tokens[] = $token; $token = ''; } } else $token .= $text[$i]; } elseif($in_comment) { if($text[$i] == "\n" || $text[$i] == "\r") $in_comment = false; } else { switch($text[$i]) { case ':': if($text{$i+1} == ':' && $text{$i+2} == '=') { if($token != '') { $tokens[] = $token; $token = ''; } $tokens[] = '::='; $i += 2; } else $token .= $text[$i]; break; case '.': if($text{$i+1} == '.') { if($token != '') { $tokens[] = $token; $token = ''; } $tokens[] = '..'; $i++; } else $token .= $text[$i]; break; case ',': case ';': case '{': case '}': case '(': case ')': case '|': if($token != '') { $tokens[] = $token; $token = ''; } $tokens[] = $text[$i]; break; case ' ': case "\t": case "\n": case "\r": if($token != '') { $tokens[] = $token; $token = ''; } break; case '-': if($text{$i+1} == '-') $in_comment = true; else $token .= $text[$i]; break; case '"'; $in_quote = true; break; default: $token .= $text[$i]; } } } if($token != '') $tokens[] = $token; return $tokens; } /** * Parse simple token * * @param array $tokens * @param integer $index * @param array $allowed * @return array */ function parse_simple_token($tokens, &$index, $allowed=NULL) { $index++; if(is_array($allowed)) { if(in_array(strtolower($tokens[$index]), $allowed)) return $tokens[$index]; } elseif(is_null($allowed)) { if($tokens[$index] == '{') return MibParser::parse_bracket_token($tokens, $index, '{', '}'); else return $tokens[$index]; } trigger_error("unknown token {$tokens[$index]} {$tokens[$index]}", E_USER_ERROR); return $tokens[$index]; } /** * Parse SYNTAX token * * @param array $tokens * @param integer $index * @return array */ function parse_SYNTAX_token($tokens, &$index) { $ret = NULL; switch($tokens[$index+1]) { case 'SEQUENCE': if($tokens[$index+2] == 'OF') { $index += 3; if($tokens[$index] == '{') $ret = array('SEQUENCE OF'=>MibParser::parse_bracket_token($tokens, $index, '{', '}')); else $ret = array('SEQUENCE OF'=>$tokens[$index]); } break; case 'OCTET': if($tokens[$index+2] == 'STRING') { $index += 3; if($tokens[$index] == '{') $ret = array('OCTET STRING'=>MibParser::parse_bracket_token($tokens, $index, '{', '}')); elseif($tokens[$index] == '(') $ret = array('OCTET STRING'=>MibParser::parse_bracket_token($tokens, $index, '(', ')')); else $ret = 'OCTET STRING'; } break; case 'OBJECT': if($tokens[$index+2] == 'IDENTIFIER') { $index++; $ret = $tokens[$index] . ' ' . $tokens[$index+1]; $index++; }else { trigger_error("unknown token {$tokens[$index+1]} {$tokens[$index+2]}", E_USER_ERROR); } break; case 'INTEGER': case 'Counter': case 'Counter32': case 'Counter64': case 'Integer32': case 'Gauge': case 'Gauge32': case 'TimeStamp': case 'TimeTicks': case 'PhysAddress': case 'IpAddress': case 'DateAndTime': case 'TimeInterval': case 'Unsigned32': case 'DisplayString': $index++; $ret = $tokens[$index]; if($tokens[$index+1] == '{') { $index++; $ret = array($ret=>MibParser::parse_bracket_token($tokens, $index, '{', '}')); } elseif($tokens[$index+1] == '(') { $index++; $ret = array($ret=>MibParser::parse_bracket_token($tokens, $index, '(', ')')); } break; default: $index++; $ret = $tokens[$index]; if($tokens[$index+1] == '{') { $index++; $ret = array($ret=>MibParser::parse_bracket_token($tokens, $index, '{', '}')); } elseif($tokens[$index+1] == '(') { $index++; $ret = array($ret=>MibParser::parse_bracket_token($tokens, $index, '(', ')')); } break; } return $ret; } /** * Parse bracket token * * @param array $tokens * @param integer $index * @param integer $start * @param integer $end * @return array */ function parse_bracket_token($tokens, &$index, $start, $end) { $begin = $index + 1; while($index + 1 < count($tokens) && $tokens[$index] != $end) { $index++; if($tokens[$index] == $start) { MibParser::parse_bracket_token($tokens, $index, $start, $end); $index++; } } return array_slice($tokens, $begin, $index - $begin); } /** * Parse a MIB file * * @param string $mibtext * @param boolean $full */ function parse_mib($mibtext, $mib_name, $full=false) { $tokens = MibParser::get_tokens($mibtext); $cnt = count($tokens); $rec = array(); for($index = 0; $index < $cnt; $index++) { if($tokens[$index] == 'DEFINITIONS' && $tokens[$index+1] == "::=" && $tokens[$index+2] == "BEGIN"){ $mib_name = $tokens[$index-1]; $this->mib = $mib_name; } else if(in_array($tokens[$index], array('OBJECT-IDENTITY', 'OBJECT-TYPE', 'OBJECT-GROUP', 'NOTIFICATION-GROUP', 'MODULE-IDENTITY', 'NOTIFICATION-TYPE')) ) { if($tokens[$index-1] != ',' && $tokens[$index+1] != 'FROM' && $tokens[$index+1] != 'MACRO') { if(isset($rec['NAME']) && isset($rec['VALUE'])) $this->parsed[] = $rec; $rec = array('NAME'=>$tokens[$index-1], 'MIB'=>$mib_name , 'TYPE' => $tokens[$index]); } } elseif( $tokens[$index] == "TEXTUAL-CONVENTION") { if($tokens[$index-1] == '::=') { if(isset($rec['NAME']) && isset($rec['VALUE'])) $this->parsed[] = $rec; $rec = array('NAME'=>$tokens[$index-2], 'MIB'=>$mib_name, 'TYPE' => $tokens[$index], 'VALUE' => "TEXTUAL-CONVENTION"); } } elseif($tokens[$index] == 'OBJECT') { if($tokens[$index+1] == 'IDENTIFIER' && $tokens[$index-1] != '(' && $tokens[$index-1] != '::=' && $tokens[$index-1] != 'SYNTAX' && $tokens[$index-2] != '(') { if(isset($rec['NAME']) && isset($rec['VALUE'])) $this->parsed[] = $rec; $rec = array('NAME'=>$tokens[$index-1], 'MIB'=>$mib_name, 'TYPE' => $tokens[$index]); } } elseif($tokens[$index] == '{') MibParser::parse_bracket_token($tokens, $index, '{', '}'); elseif(isset($rec['NAME'])) { if($tokens[$index] == '::=' && $tokens[$index+1] != "TEXTUAL-CONVENTION") { $rec['VALUE'] = MibParser::parse_simple_token($tokens, $index); $this->parsed[] = $rec; $rec = array(); } elseif($full) { if($tokens[$index] == 'ACCESS') $rec['ACCESS'] = MibParser::parse_simple_token($tokens, $index, array('read-only', 'not-accessible', 'read-write')); elseif($tokens[$index] == 'OBJECTS') $rec['OBJECTS'] = MibParser::parse_simple_token($tokens, $index); elseif($tokens[$index] == 'NOTIFICATIONS') $rec['NOTIFICATIONS'] = MibParser::parse_simple_token($tokens, $index); elseif($tokens[$index] == 'DEFVAL') $rec['DEFVAL'] = MibParser::parse_simple_token($tokens, $index); elseif($tokens[$index] == 'DESCRIPTION') { $rec['DESCRIPTION'] = MibParser::parse_simple_token($tokens, $index); } elseif($tokens[$index] == 'INDEX') $rec['INDEX'] = MibParser::parse_simple_token($tokens, $index); elseif($tokens[$index] == 'MAX-ACCESS') $rec['MAX-ACCESS'] = MibParser::parse_simple_token($tokens, $index, array('read-only', 'not-accessible', 'read-write', 'read-create', 'accessible-for-notify')); elseif($tokens[$index] == 'REFERENCE') $rec['REFERENCE'] = MibParser::parse_simple_token($tokens, $index); elseif($tokens[$index] == 'STATUS') $rec['STATUS'] = MibParser::parse_simple_token($tokens, $index, array('current', 'deprecated', 'obsolete', 'mandatory')); elseif($tokens[$index] == 'SYNTAX') $rec['SYNTAX'] = MibParser::parse_SYNTAX_token($tokens, $index); elseif($tokens[$index] == 'UNITS') $rec['UNITS'] = MibParser::parse_simple_token($tokens, $index); } } } if(isset($rec['NAME']) && isset($rec['VALUE'])) $this->parsed[] = $rec; } function generate(){ $this->oids['enterprises'] = array('oid' => '.1.3.6.1.4.1'); foreach($this->parsed as $object) { if(isset($object['VALUE'][0]) && !is_numeric($object['VALUE'][0])) { if(isset($object['VALUE'][1]) && is_numeric($object['VALUE'][1])) { if(isset($this->oids[$object['VALUE'][0]]['oid'])) { $oid = $this->oids[$object['VALUE'][0]]['oid'] . "." . $object['VALUE'][1]; }else { $oid = db_fetch_cell("SELECT `oid` FROM snmpagent_cache WHERE name = '" . $object['VALUE'][0] . "' LIMIT 1"); $oid .= "." . $object['VALUE'][1]; } $syntax = NULL; if(isset($object['SYNTAX'])) { $syntax = is_array($object['SYNTAX']) ? key($object['SYNTAX']) : $object['SYNTAX']; } $parent_otype = strtoupper(substr($object['VALUE'][0], -5)); $otype = $object['TYPE']; if($otype == "OBJECT-TYPE" && $syntax !== NULL && !in_array(strtoupper(substr($object['NAME'], -5)), array("TABLE", "ENTRY")) && !in_array($parent_otype, array("TABLE", "ENTRY")) ) { $oid .= ".0"; $otype = "DATA"; } $kind ="unknown"; if(in_array($otype, array("MODULE-IDENTITY", "OBJECT-IDENTITY"))) { $kind = "Node"; }else if(in_array($otype, array("NOTIFICATION-GROUP", "OBJECT-GROUP"))) { $kind = "Group"; }else if($otype == "OBJECT-TYPE" && strtoupper(substr($object['NAME'], -5)) == "TABLE" && $syntax == "SEQUENCE OF") { $kind = "Table"; }else if($otype == "OBJECT-TYPE" && strtoupper(substr($object['NAME'], -5)) == "ENTRY" && $parent_otype == "TABLE") { $kind = "Row"; }else if($otype == "OBJECT-TYPE" && $parent_otype == "ENTRY") { $kind = "Column"; }else if($otype == "DATA") { $kind = "Scalar"; }else if($otype == "NOTIFICATION-TYPE") { $kind = "Notification"; } $this->oids[$object['NAME']] = array( 'oid' => $oid, 'max-access' => (isset($object['MAX-ACCESS'])? $object['MAX-ACCESS'] : 'not-accessible'), 'syntax' => $syntax, 'otype' => $otype, 'kind' => $kind, 'mib' => $object['MIB'], 'description' => $object['DESCRIPTION'] ); if($otype == "OBJECT-GROUP" && isset($object['OBJECTS'])) { $this->oids[$object['NAME']]['objects'] = array_diff($object['OBJECTS'], array(',')); } elseif($otype == "NOTIFICATION-GROUP" && isset($object['NOTIFICATIONS'])) { $this->oids[$object['NAME']]['notifications'] = array_diff($object['NOTIFICATIONS'], array(',')); } elseif($otype == "NOTIFICATION-TYPE" && isset($object['OBJECTS'])) { $this->oids[$object['NAME']]['objects'] = array_diff($object['OBJECTS'], array(',')); } } elseif($object["VALUE"] == "TEXTUAL-CONVENTION") { $syntax = NULL; if(isset($object['SYNTAX'])) { $syntax = is_array($object['SYNTAX']) ? key($object['SYNTAX']) : $object['SYNTAX']; } $kind = "Textual-Convention"; $otype = "TEXTUAL-CONVENTION"; $this->oids[$object['NAME']] = array( 'oid' => "", 'max-access' => "", 'syntax' => $syntax, 'otype' => $otype, 'kind' => $kind, 'mib' => $object['MIB'], 'description' => $object['DESCRIPTION'] ); } } } unset($this->oids['enterprises']); unset($this->parsed); } } cacti-1.1.38/lib/mib_cache.php0000664000175000017500000003323113264740213015430 0ustar tromantromanactive_mib = $mib; return $this; } public function __destruct() { } public function uninstall() { /* avoid that our default mib will be dropped by some plugin developer */ if ($this->active_mib == 'CACTI-MIB') { return false; }else { db_execute_prepared('DELETE FROM snmpagent_cache WHERE `mib` = ?', array($this->active_mib)); db_execute_prepared('DELETE FROM snmpagent_cache_notifications WHERE `mib` = ?', array($this->active_mib)); db_execute_prepared('DELETE FROM snmpagent_cache_textual_conventions WHERE `mib` = ?', array($this->active_mib)); db_execute_prepared('DELETE FROM snmpagent_mibs WHERE `name` = ?', array($this->active_mib)); } } public function install($path, $replace=false, $mib_name='optional') { global $config; include_once($config['library_path'] . '/mib_parser.php'); $mp = new MibParser(); $mp->add_mib($path, $mib_name); $mp->generate(); if (isset($mp->mib) && isset($mp->oids) && $mp->mib ) { /* check if this mib has already been installed */ $existing = db_fetch_cell_prepared('SELECT 1 FROM snmpagent_mibs WHERE `name` = ?', array($mp->mib)); if ($existing) { if ($replace == false) { unset($mp->oids); unset($mp->mib); return false; }else { $this->uninstall(); } } db_execute_prepared('INSERT INTO snmpagent_mibs SET `id` = 0, `name` = ?, `file` = ?', array($mp->mib, $path)); foreach($mp->oids as $object_name => $object_params) { if ($object_params['otype'] != 'TEXTUAL-CONVENTION') { db_execute_prepared('INSERT IGNORE INTO `snmpagent_cache` (`oid`, `name`, `mib`, `type`, `otype`, `kind`, `max-access`, `description`) VALUES (?, ?, ?, ?, ?, ?, ?, ?)', array($object_params['oid'], $object_name, $object_params['mib'], $object_params['syntax'], $object_params['otype'], $object_params['kind'], $object_params['max-access'], str_replace("\r\n", '
    ', trim($object_params['description'])))); if ($object_params['otype'] == 'NOTIFICATION-TYPE') { foreach($object_params['objects'] as $notification_object_index => $notification_object) { db_execute_prepared('INSERT INTO `snmpagent_cache_notifications` (`name`, `mib`, `attribute`, `sequence_id`) VALUES (?, ?, ?, ?)', array($object_name, $object_params['mib'], $notification_object, $notification_object_index)); } } }else { db_execute_prepared('INSERT INTO `snmpagent_cache_textual_conventions` (`name`, `mib`, `type`, `description`) VALUES (?, ?, ?, ?)', array($object_name, $object_params['mib'], $object_params['syntax'], nl2br($object_params['description']))); } } unset($mp->oids); unset($mp->mib); }else { return false; } } public function mib($mib) { $this->active_mib = $mib; $this->active_object = ''; $this->active_table = ''; $this->active_table_entry = ''; return $this; } public function object($object) { $this->active_object = $object; return $this; } public function table($table) { if ($this->active_table != $table) { if (!isset($this->cache__tables[$this->active_mib][$table])) { $oid_table = db_fetch_cell_prepared('SELECT oid FROM `snmpagent_cache` WHERE `mib` = ? AND `name` = ? AND `type` = "SEQUENCE OF"', array($this->active_mib, $table)); if ($oid_table) { /* cache table oid and columns */ $this->cache__tables[$this->active_mib][$table] = $oid_table; $this->active_table = $table; $this->cache__tables_columns[$this->active_mib][$table] = $this->columns(); $this->active_table_entry = ''; return $this; }else { /* MIB table does not exist */ $this->active_table = ''; $this->active_table_entry = ''; throw new Exception('MIB table does not exist'); } }else { /* table exists and has already been cached */ $this->active_table = $table; $this->active_table_entry = ''; return $this; } }else { /* no changes necessary */ return $this; } } public function row($index) { /* limited to one single $index so far */ $this->active_table_entry = $index; return $this; } public function gettype() { } public function set($value) { return db_execute_prepared('UPDATE `snmpagent_cache` SET `value` = ? WHERE `mib` = ? AND `name` = ?', array($value, $this->active_mib, $this->active_object)); } public function get() { return db_fetch_row_prepared('SELECT * FROM snmpagent_cache WHERE name = ? AND mib = ?', array($this->active_object, $this->active_mib)); } public function count() { return db_execute_prepared('UPDATE IGNORE snmpagent_cache SET `value` = CASE WHEN `type`="Counter32" AND `value`= 4294967295 THEN 0 WHEN `type`="Counter64" AND `value`= 18446744073709551615 THEN 0 ELSE `value`+1 END WHERE `mib` = ? AND `name` = ?', array($this->active_mib, $this->active_object)); } public function insert($values) { $oid_entry = $this->exists(); if ($oid_entry == false) { $columns = $this->cache__tables_columns[$this->active_mib][$this->active_table]; if ($columns & sizeof($columns)>0) { foreach($columns as $column_params) { $column_params['oid'] .= '.' . $this->active_table_entry; $column_params['otype'] = 'DATA'; if (isset($values[$column_params['name']])) { $column_params['value'] = $values[$column_params['name']]; } db_execute_prepared('INSERT IGNORE INTO `snmpagent_cache` (`oid`, `name`, `mib`, `type`, `otype`, `kind`, `max-access`, `value`) VALUES (?, ?, ?, ?, ?, ?, ?, ?)', array($column_params['oid'], $column_params['name'], $column_params['mib'], $column_params['type'], $column_params['otype'], 'Column Data', $column_params['max-access'], trim($column_params['value']))); } return true; } } return false; } public function select($column=false) { $result = array(); if ($this->active_table_entry) { /* focus on a dedicated MIB table row only */ $oid_entry = $this->exists(); if ($oid_entry !== false) { if ($column == false) { /* fetch the whole row */ $filter = $oid_entry . '.%.' . $this->active_table_entry; $entries = db_fetch_assoc_prepared('SELECT name, value FROM snmpagent_cache WHERE oid LIKE ? GROUP BY name ORDER BY oid', array($filter)); if ($entries && sizeof($entries)>0) { foreach($entries as $entry) { $result[$entry['name']] = $entry['value']; } return $result; } } elseif (is_string($column)) { /* fetch only the value of a given column */ $filter = $oid_entry . '.%.' . $this->active_table_entry; return db_fetch_cell_prepared('SELECT value FROM snmpagent_cache WHERE name = ? AND oid LIKE ? LIMIT 1', array($column, $filter)); } elseif (is_array($column) && sizeof($column)>0) { $filter = $oid_entry . '.%.' . $this->active_table_entry; /* fetch all values of specific columns given for that MIB table row */ $entries = db_fetch_assoc_prepared("SELECT name, value FROM snmpagent_cache WHERE name IN ('" . implode("','", $column) . "') AND oid LIKE ? GROUP BY name ORDER BY oid", array($filter)); if ($entries && sizeof($entries)>0) { foreach($entries as $entry) { $result[$entry['name']] = $entry['value']; } return $result; } } } }else { /* query the whole MIB table */ $oid_entry = $this->cache__tables[$this->active_mib][$this->active_table] . '.1'; if ($column == false) { /* fetch all rows */ $columns = $this->cache__tables_columns[$this->active_mib][$this->active_table]; $num_columns = sizeof($columns); $filter = $oid_entry . '.%.%'; $entries = db_fetch_assoc_prepared('SELECT name, value FROM snmpagent_cache WHERE oid LIKE ? ORDER BY oid', array($filter)); if ($num_columns && $entries && sizeof($entries)) { $num_entries = sizeof($entries); $entries_per_object = $num_entries/$num_columns; for($i = 0; $i < $entries_per_object; $i++) { $result[$i]=array(); for($j=0; $j < $num_columns; $j++) { $result[$i][$entries[$i+$j*$entries_per_object]['name']] = $entries[$i+$j*$entries_per_object]['value']; } } return $result; }else { return $entries; } } elseif (is_string($column)) { /* fetch only the values of one single column */ $filter = $oid_entry . '.%.%'; return db_fetch_assoc_prepared("SELECT value AS '" . $column . "' FROM snmpagent_cache WHERE name = ? AND oid LIKE ? ORDER BY oid", array($column, $filter)); } elseif (is_array($column) && sizeof($column)>0) { /* fetch values of specific columns given */ $filter = $oid_entry . '.%.%'; $entries = db_fetch_assoc_prepared("SELECT name, value FROM snmpagent_cache WHERE name IN ('" . implode("','", $column) . "') AND oid LIKE ? ORDER BY oid", array($filter)); if (sizeof($entries)) { $num_objects = sizeof($column); $num_entries = sizeof($entries); $entries_per_object = $num_entries/$num_objects; for($i = 0; $i < $entries_per_object; $i++) { $result[$i]=array(); for($j=0; $j < $num_objects; $j++) { $result[$i][$entries[$i+$j*$entries_per_object]['name']] = $entries[$i+$j*$entries_per_object]['value']; } } return $result; }else { return $entries; } } } return false; } public function delete() { $oid_entry = $this->exists(); if ($oid_entry !== false) { /* get list of columns for this mib table */ $columns = $this->cache__tables_columns[$this->active_mib][$this->active_table]; if ($columns & sizeof($columns)>0) { foreach($columns as $column_params) { $column_params['oid'] .= '.' . $this->active_table_entry; db_execute_prepared('DELETE FROM `snmpagent_cache` WHERE `oid` = ?', array($column_params['oid'])); } return true; } } return false; } public function update($values) { $oid_entry = $this->exists(); if ($oid_entry !== false) { $columns = $this->cache__tables_columns[$this->active_mib][$this->active_table]; if ($columns & sizeof($columns)>0) { $sql = array(); foreach($columns as $column_params) { $column_params['oid'] .= '.' . $this->active_table_entry; if (isset($values[$column_params['name']])) { $sql[] = '(' . db_qstr($column_params['name']) . ', ' . db_qstr($values[$column_params['name']]) . ', ' . db_qstr($column_params['oid']) . ')'; } } if (sizeof($sql)) { db_execute('INSERT INTO `snmpagent_cache` (name, value, oid) VALUES ' . implode(', ', $sql) . ' ON DUPLICATE KEY UPDATE value=VALUES(value)', $sql); } return true; } } return false; } public function replace($values) { $this->delete(); return $this->insert($values); } public function truncate() { $oid_entry = $this->cache__tables[$this->active_mib][$this->active_table] . '.1.%'; db_execute_prepared('DELETE FROM `snmpagent_cache` WHERE `mib` = ? AND `otype` = "DATA" AND `oid` LIKE ?', array($this->active_mib, $oid_entry)); return true; } public function columns() { /* As defined by SMI the OID value assigned to the row must be the same as the OID value assigned to the table containing the row with addition of a single value of one. */ $filter = $this->cache__tables[$this->active_mib][$this->active_table] . '.1.%'; return db_fetch_assoc_prepared('SELECT * FROM `snmpagent_cache` WHERE `oid` LIKE ? GROUP BY name ORDER BY oid', array($filter)); } private function exists() { $oid_entry = $this->cache__tables[$this->active_mib][$this->active_table] . '.1'; /* check if entry exists */ $exists = db_fetch_cell_prepared('SELECT 1 FROM `snmpagent_cache` WHERE `oid` = ?', array($oid_entry . '.1.' . $this->active_table_entry)); return ($exists) ? $oid_entry : false; } } cacti-1.1.38/lib/ldap.php0000664000175000017500000005541013264740213014461 0ustar tromantromanusername = $username; if (!empty($password)) $ldap->password = $password; if (!empty($dn)) $ldap->dn = $dn; if (!empty($host)) $ldap->host = $host; if (!empty($port)) $ldap->port = $port; if (!empty($port_ssl)) $ldap->port_ssl = $port_ssl; if (!empty($version)) $ldap->version = $version; if (!empty($encryption)) $ldap->encryption = $encryption; if (!empty($referrals)) $ldap->referrals = $referrals; if (!empty($group_require)) $ldap->group_require = $group_require; if (!empty($group_dn)) $ldap->group_dn = $group_dn; if (!empty($group_attrib)) $ldap->group_attrib = $group_attrib; if (!empty($group_member_type)) $ldap->group_member_type = $group_member_type; return $ldap->Authenticate(); } /* cacti_ldap_search_dn @arg $username - username to search for in the LDAP directory @arg $dn - configured LDAP DN for binding, '' will be replaced with $username @arg $host - Hostname or IP of LDAP server, Default = Configured settings value @arg $port - Port of the LDAP server uses, Default = Configured settings value @arg $port_ssl - Port of the LDAP server uses for SSL, Default = Configured settings value @arg $version - '2' or '3', LDAP protocol version, Default = Configured settings value @arg $encryption - '0' None, '1' SSL, '2' TLS, Default = Configured settings value @arg $referrals - '0' Referrals from server are ignored, '1' Referrals from server are processed, Default = Configured setting value @arg $mode - '0' No Searching, '1' Anonymous Searching, '2' Specfic Searching, Default = Configured settings value @arg $search_base - Search base DN, Default = Configured settings value @arg $search_filter - Filter to find the user, Default = Configured settings value @arg $specific_dn - DN for binding to perform user search, Default = Configured settings value @arg $specific_password - Password for binding to perform user search, Default - Configured settings value @return - array of values 'error_num' = error number returned 'error_text' = error text 'dn' = found dn of user Error codes: # Text ============================================================== 0 Authentication Success 1 No username defined 2 Unable to create LDAP connection object 3 Unable to find users DN 4 Protocol error, unable to set version 5 Protocol error, unable to start TLS communications 6 Protocol error 7 Invalid credential 8 Insufficient access 9 Unable to connect to server 10 Timeout 11 General bind error 12 Unable to set referrals option 13 More than one matching user found 14 Specific DN and Password required 15 Unable to find user from DN 99 PHP LDAP not enabled */ function cacti_ldap_search_dn($username, $dn = '', $host = '', $port = '', $port_ssl = '', $version = '', $encryption = '', $referrals = '', $mode = '', $search_base = '', $search_filter = '', $specific_dn = '', $specific_password = '') { $ldap = new Ldap; if (!empty($username)) $ldap->username = $username; if (!empty($dn)) $ldap->dn = $dn; if (!empty($host)) $ldap->host = $host; if (!empty($port)) $ldap->port = $port; if (!empty($port_ssl)) $ldap->port_ssl = $port_ssl; if (!empty($version)) $ldap->version = $version; if (!empty($encryption)) $ldap->encryption = $encryption; if (!empty($referrals)) $ldap->referrals = $referrals; if (!empty($mode)) $ldap->mode = $mode; if (!empty($search_base)) $ldap->search_base = $search_base; if (!empty($search_filter)) $ldap->search_filter = $search_filter; if (!empty($specific_dn)) $ldap->specific_dn = $specific_dn; if (!empty($specific_password)) $ldap->specific_password = $specific_password; return $ldap->Search(); } abstract class LdapError { const None = 0; const Success = 0; const Failure = 1; const UndefinedUsername = 2; const ProtocolErrorVersion = 3; const ProtocolErrorReferral = 4; const ProtocolErrorTls = 5; const MissingLdapObject = 6; const ProtocolErrorGeneral = 7; const InsufficientAccess = 8; const ConnectionUnavailable = 9; const ConnectionTimeout = 10; const ProtocolErrorBind = 11; const SearchFoundNoGroup = 12; const SearchFoundMultiUser = 13; const SearchFoundNoUser = 14; const SearchFoundNoUserDN = 15; const UndefinedDnOrPassword = 16; const Disabled = 99; public static function GetErrorDetails($returnError, $ldapConn = null, $ldapError = 0) { $error_num = $returnError; if ($returnError > 0 && $ldapError == 0 && $ldapConn > 0) { $ldapError = ldap_error($ldapConn); } switch ($returnError) { case LdapError::None: case LdapError::Success: $error_text = __('Authentication Success'); break; case LdapError::Failure: $error_text = __('Authentication Failure'); break; case LdapError::Disabled: $error_text = __('PHP LDAP not enabled'); break; case LdapError::UndefinedUsername: $error_text = __('No username defined'); break; case LdapError::ProtocolErrorVersion: $error_text = __('Protocol Error, Unable to set version'); break; case LdapError::ProtocolErrorReferral: $error_text = __('Protocol Error, Unable to set referrals option'); break; case LdapError::ProtocolErrorTls: $error_text = __('Protocol Error, unable to start TLS communications'); break; case LdapError::ProtocolErrorGeneral: $error_text = __('Protocol Error, General failure (%s)', $ldapError); break; case LdapError::ProtocolErrorBind: $error_text = __('Protocol Error, Unable to bind, LDAP result: %s', $ldapError); break; case LdapError::ConnectionUnavailable: $error_text = __('Unable to Connect to Server'); break; case LdapError::ConnectionTimeout: $error_text = __('Connection Timeout'); break; case LdapError::InsufficientAccess: $error_text = __('Insufficient access'); break; case LdapError::SearchFoundNoGroup: $error_text = __('Group DN could not be found to compare'); break; case LdapError::SearchFoundMultiUser: $error_text = __('More than one matching user found'); break; case LdapError::SearchFoundNoUserDN: $error_text = __('Unable to find user from DN'); break; case LdapError::SearchFoundNoUser: $error_text = __('Unable to find users DN'); break; case LdapError::MissingLdapObject: $error_text = __('Unable to create LDAP connection object'); break; case LdapError::UndefinedDnOrPassword: $error_text = __('Specific DN and Password required'); break; default: $error_text = __('Unexpected error %s (Ldap Error: %s)', $returnError, $ldapError); break; } return array('error_num' => $error_num, 'error_text' => $error_text, 'error_ldap' => $ldapError, 'dn' => ''); } } class Ldap { function __construct() { /* Initialize LDAP parameters for Authenticate */ $this->dn = read_config_option('ldap_dn'); $this->host = read_config_option('ldap_server'); $this->port = read_config_option('ldap_port'); $this->port_ssl = read_config_option('ldap_port_ssl'); $this->version = read_config_option('ldap_version'); $this->encryption = read_config_option('ldap_encryption'); $this->referrals = read_config_option('ldap_referrals'); if (read_config_option('ldap_group_require') == 'on') { $this->group_require = true; } else { $this->group_require = false; } $this->group_dn = read_config_option('ldap_group_dn'); $this->group_attrib = read_config_option('ldap_group_attrib'); $this->group_member_type = read_config_option('ldap_group_member_type'); /* Initialize LDAP parameters for Search */ $this->mode = read_config_option('ldap_mode'); $this->search_base = read_config_option('ldap_search_base'); $this->search_filter = read_config_option('ldap_search_filter'); $this->specific_dn = read_config_option('ldap_specific_dn'); $this->specific_password = read_config_option('ldap_specific_password'); return true; } function __destruct() { return true; } function ErrorHandler($level, $message, $file, $line, $context) { return true; } function SetLdapHandler() { /* drop out of cactis error handler */ restore_error_handler(); /* set an error handler for ldap */ set_error_handler(array($this, 'ErrorHandler')); } function RestoreCactiHandler() { /* drop out of ldaps error handler */ restore_error_handler(); /* set an error handler for Cacti */ set_error_handler('CactiErrorHandler'); } function Authenticate() { $output = array(); /* function check */ if (!function_exists('ldap_connect')) { return LdapError::GetErrorDetails(LdapError::Disabled); } /* validation */ if (empty($this->username)) { return LdapError::GetErrorDetails(LdapError::UndefinedUsername); } $this->dn = str_replace('', $this->username, $this->dn); /* Fix encoding of username and password */ $this->username = html_entity_decode($this->username, $this->GetMask(), 'UTF-8'); $this->password = html_entity_decode($this->password, $this->GetMask(), 'UTF-8'); $this->SetLdapHandler(); /* Determine connection method and create LDAP Object */ if ($this->encryption == '1') { /* This only works with OpenLDAP, I'm pretty sure this will not work with Solaris, Tony */ $ldap_conn = ldap_connect('ldaps://' . $this->host . ':' . $this->port_ssl); } else { $ldap_conn = ldap_connect($this->host, $this->port); } if ($ldap_conn) { /* Set protocol version */ cacti_log('LDAP: Setting protocol version to ' . $this->version, false, 'AUTH'); if (!ldap_set_option($ldap_conn, LDAP_OPT_PROTOCOL_VERSION, $this->version)) { $output = LdapError::GetErrorDetails(LdapError::ProtocolErrorVersion); cacti_log('LDAP: ' . $output['error_text'], false, 'AUTH'); ldap_close($ldap_conn); $this->RestoreCactiHandler(); return $output; } /* set referrals */ if ($this->referrals == '0') { if (!ldap_set_option($ldap_conn, LDAP_OPT_REFERRALS, 0)) { $output = LdapError::GetErrorDetails(LdapError::ProtocolErrorReferral); cacti_log('LDAP: ' . $output['error_text'], false, 'AUTH'); ldap_close($ldap_conn); $this->RestoreCactiHandler(); return $output; } } /* start TLS if requested */ if ($this->encryption == '2') { if (!ldap_start_tls($ldap_conn)) { $output = LdapError::GetErrorDetails(LdapError::ProtocolErrorTls); cacti_log('LDAP: ' . $output['error_text'], false, 'AUTH'); ldap_close($ldap_conn); $this->RestoreCactiHandler(); return $output; } } /* Bind to the LDAP directory */ $ldap_response = ldap_bind($ldap_conn, $this->dn, $this->password); if ($ldap_response) { if ($this->group_require == 1) { $ldap_group_response = false; /* Process group membership if required */ if ($this->group_member_type == 1) { $ldap_group_response = ldap_compare($ldap_conn, $this->group_dn, $this->group_attrib, $this->dn); } else if ($this->group_member_type == 2) { /* Do a lookup to find this user's true DN. */ /* ldap_exop_whoami is not yet included in PHP. For reference, the * feature request: http://bugs.php.net/bug.php?id=42060 * And the patch against lastest PHP release: * http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/databases/php-ldap/files/ldap-ctrl-exop.patch */ $true_dn_result = ldap_search($ldap_conn, $this->search_base, 'userPrincipalName=' . $this->dn, array('dn')); $first_entry = ldap_first_entry($ldap_conn, $true_dn_result); /* we will test in two ways */ if ($first_entry !== false) { $true_dn = ldap_get_dn($ldap_conn, $first_entry); $ldap_group_response = ldap_compare($ldap_conn, $this->group_dn, $this->group_attrib, $true_dn); } else { $ldap_group_response = ldap_compare($ldap_conn, $this->group_dn, $this->group_attrib, $this->username); } } if ($ldap_group_response === true) { /* Auth ok */ $output = LdapError::GetErrorDetails(LdapError::Success); } else if ($ldap_group_response === false) { $output = LdapError::GetErrorDetails(LdapError::InsufficientAccess); cacti_log('LDAP: ' . $output['error_text'], false, 'AUTH'); ldap_close($ldap_conn); $this->RestoreCactiHandler(); return $output; } else { $output = LdapError::GetErrorDetails(LdapError::SearchFoundNoGroup); cacti_log('LDAP: ' . $output['error_text'], false, 'AUTH'); ldap_close($ldap_conn); $this->RestoreCactiHandler(); return $output; } } else { /* Auth ok - No group membership required */ $output = LdapError::GetErrorDetails(LdapError::Success); } } else { /* unable to bind */ $ldap_error = ldap_errno($ldap_conn); if ($ldap_error == 0x03) { /* protocol error */ $ouptut = LdapError::GetErrorDetails(LdapError::ProtocolErrorGeneral, null, $ldap_error); } elseif ($ldap_error == 0x31) { /* invalid credentials */ $output = LdapError::GetErrorDetails(LdapError::Failure); } elseif ($ldap_error == 0x32) { /* insuffient access */ $output = LdapError::GetErrorDetails(LdapError::InsufficientAccess); } elseif ($ldap_error == 0x51) { /* unable to connect to server */ $output = LdapError::GetErrorDetails(LdapError::ConnectionUnavailable); } elseif ($ldap_error == 0x55) { /* timeout */ $output = LdapError::GetErrorDetails(LdapError::ConnectionTimeout); } else { /* general bind error */ $output = LdapError::GetErrorDetails(LdapError::ProtocolErrorBind, null, $ldap_error); } } } else { /* Error intializing LDAP */ $output = LdapError::GetErrorDetails(LdapError::MissingLdapObject); } /* Close LDAP connection */ ldap_close($ldap_conn); if ($output['error_num'] > 0) { cacti_log('LDAP: ' . $output['error_text'], false, 'AUTH'); } $this->RestoreCactiHandler(); return $output; } function GetMask() { if (!defined('ENT_HTML401')) { return ENT_COMPAT; } else { return ENT_COMPAT | ENT_HTML401; } } function Search() { $output = array(); /* function check */ if (!function_exists('ldap_connect')) { return LdapError::GetErrorDetails(LdapError::Disabled); } /* validation */ if (empty($this->username)) { cacti_log('LDAP_SEARCH: No username defined', false, 'AUTH'); return LdapError::GetErrorDetails(LdapError::UndefinedUsername); } /* Encode username */ $this->username = html_entity_decode($this->username, $this->GetMask(), 'UTF-8'); /* strip bad chars from username - prevent altering filter from username */ $this->username = str_replace(array('&', '|', '(', ')', '*', '>', '<', '!', '='), '', $this->username); $this->dn = str_replace('', $this->username, $this->dn); if ($this->mode == '0') { /* Just bind mode, make dn and return */ $output = LdapError::GetErrorDetails(LdapError::Success); $output['dn'] = $this->dn; return $output; } elseif ($this->mode == '2') { /* Specific */ if (empty($this->specific_dn) || empty($this->specific_password)) { $output = LdapError::GetErrorDetails(LdapError::UndefinedDnOrPassword); $output['dn'] = $this->dn; return $output; } } elseif ($this->mode == '1'){ /* assume anonymous */ $this->specific_dn = ''; $this->specific_password = ''; } $this->search_filter = str_replace('', $this->username, $this->search_filter); /* Fix encoding on ldap specific search DN and password */ $this->specific_password = html_entity_decode($this->specific_password, $this->GetMask(), 'UTF-8'); $this->specific_dn = html_entity_decode($this->specific_dn, $this->GetMask(), 'UTF-8'); /* Searching mode */ if ($this->encryption == '1') { /* This only works with OpenLDAP, I'm pretty sure this will not work with Solaris, Tony */ $ldap_conn = @ldap_connect('ldaps://' . $this->host . ':' . $this->port_ssl); } else { $ldap_conn = @ldap_connect($this->host, $this->port); } if ($ldap_conn) { /* Set protocol version */ if (!@ldap_set_option($ldap_conn, LDAP_OPT_PROTOCOL_VERSION, $this->version)) { /* protocol error */ $output = LdapError::GetErrorDetails(LdapError::ProtocolErrorVersion); cacti_log('LDAP_SEARCH: ' . $output['error_text'], false, 'AUTH'); @ldap_close($ldap_conn); return $output; } /* set referrals */ if ($this->referrals == '0') { if (!@ldap_set_option($ldap_conn, LDAP_OPT_REFERRALS, 0)) { /* referrals set error */ $output = LdapError::GetErrorDetails(LdapError::ProtocolErrorReferral); cacti_log('LDAP_SEARCH: ' . $output['error_text'], false, 'AUTH'); @ldap_close($ldap_conn); return $output; } } /* start TLS if requested */ if ($this->encryption == '2') { if (!@ldap_start_tls($ldap_conn)) { /* TLS startup error */ $output = LdapError::GetErrorDetails(LdapError::ProtocolErrorTls); cacti_log('LDAP_SEARCH: ' . $output['error_text'], false, 'AUTH'); @ldap_close($ldap_conn); return $output; } } /* bind to the directory */ if (ldap_bind($ldap_conn, $this->specific_dn, $this->specific_password)) { /* Search */ $ldap_results = ldap_search($ldap_conn, $this->search_base, $this->search_filter, array('dn')); if ($ldap_results) { $ldap_entries = ldap_get_entries($ldap_conn, $ldap_results); if ($ldap_entries['count'] == '1') { /* single response return user dn */ $output = LdapError::GetErrorDetails(LdapError::Success); $output['dn'] = $ldap_entries['0']['dn']; cacti_log('LDAP_SEARCH: ' . $output['error_text'] . ', DN \'' . $output['dn'] . '\'', false, 'AUTH'); } elseif ($ldap_entries['count'] > 1) { /* more than 1 result */ $output = LdapError::GetErrorDetails(LdapError::SearchFoundMultiUser); } else { /* no search results */ $output = LdapError::GetErrorDetails(LdapError::SearchFoundNoUserDN); } } else { /* no search results, user not found*/ $output = LdapError::GetErrorDetails(LdapError::SearchFoundNoUser); } } else { /* unable to bind */ $ldap_error = ldap_errno($ldap_conn); if ($ldap_error == 0x03) { /* protocol error */ $output = LdapError::GetErrorDetails(LdapError::ProtocolErrorGeneral,null,$ldapError); } elseif ($ldap_error == 0x31) { /* invalid credentials */ $output = LdapError::GetErrorDetails(LdapError::Failure); } elseif ($ldap_error == 0x32) { /* insuffient access */ $output = LdapError::GetErrorDetails(LdapError::InsufficientAccess); } elseif ($ldap_error == 0x51) { /* unable to connect to server */ $output = LdapError::GetErrorDetails(LdapError::ConnectionUnavailable); } elseif ($ldap_error == 0x55) { /* timeout */ $output = LdapError::GetErrorDetails(LdapError::ConnectionTimeout); } else { /* general bind error */ $output = LdapError::GetErrorDetails(LdapError::ProtocolErrorBind, null, $ldap_error); } } } else { /* unable to setup connection */ $output = LdapError::GetErrorDetails(LdapError::MissingLdapObject); } @ldap_close($ldap_conn); if ($output['error_num'] > 0) { cacti_log('LDAP_SEARCH: ' . $output['error_text'], false, 'AUTH'); } return $output; } } cacti-1.1.38/lib/index.php0000664000175000017500000000005013264740213014636 0ustar tromantroman $hash_array) { /* parse information from the hash */ $parsed_hash = parse_xml_hash($hash); /* invalid/wrong hash */ if ($parsed_hash == false) { return $info_array; } if (isset($dep_hash_cache[$parsed_hash['type']])) { array_push($dep_hash_cache[$parsed_hash['type']], $parsed_hash); } else { $dep_hash_cache[$parsed_hash['type']] = array($parsed_hash); } } //print '
    ';print_r($dep_hash_cache);print '
    ';exit; $hash_cache = array(); $repair = 0; /* the order of the $hash_type_codes array is ordered such that the items with the most dependencies are last and the items with no dependencies are first. this means dependencies will just magically work themselves out :) */ foreach ($hash_type_codes as $type => $code) { /* do we have any matches for this type? */ if (isset($dep_hash_cache[$type])) { /* yes we do. loop through each match for this type */ for ($i=0; $i') !== FALSE) { $binary_signature = base64_decode(trim(str_replace(array('', ''), array('', ''), $x))); $x = " \n"; cacti_log('NOTE: Got Package Signature', false, 'IMPORT', POLLER_VERBOSITY_HIGH); } $xml .= "$x"; } fclose($f); } else { cacti_log('FATAL: Unable to open file ' . $filename, true, 'IMPORT', POLLER_VERBOSITY_LOW); return false; } // Verify Signature $ok = openssl_verify($xml, $binary_signature, $public_key); if ($ok == 1) { cacti_log('NOTE: File is Signed Correctly', false, 'IMPORT', POLLER_VERBOSITY_LOW); } elseif ($ok == 0) { cacti_log('FATAL: File has been Tampered with.', false, 'IMPORT', POLLER_VERBOSITY_LOW); return false; } else { cacti_log('FATAL: Could not Verify Signature.', false, 'IMPORT', POLLER_VERBOSITY_LOW); return false; } cacti_log('Loading Plugin Information from package', false, 'IMPORT', POLLER_VERBOSITY_HIGH); $xmlget = simplexml_load_string($xml); $data = xml_to_array($xmlget); $filestatus = array(); $plugin = $data['info']['name']; cacti_log('Verifying each files signature', false, 'IMPORT', POLLER_VERBOSITY_HIGH); if (isset($data['files']['file']['data'])) { $data['files']['file'] = array($data['files']['file']); } foreach ($data['files']['file'] as $f) { $binary_signature = base64_decode($f['filesignature']); $fdata = base64_decode($f['data']); $ok = openssl_verify($fdata, $binary_signature, $public_key, OPENSSL_ALGO_SHA1); if ($ok == 1) { cacti_log('NOTE: File OK: ' . $f['name'], false, 'IMPORT', POLLER_VERBOSITY_HIGH); } else { cacti_log('FATAL: Could not Verify Signature for file: ' . $f['name'], true, 'IMPORT', POLLER_VERBOSITY_LOW); return false; } } cacti_log('Writing Files', false, 'IMPORT', POLLER_VERBOSITY_HIGH); foreach ($data['files']['file'] as $f) { $fdata = base64_decode($f['data']); $name = $f['name']; if (strpos($name, 'scripts/') !== false || strpos($name, 'resource/') !== false) { $filename = $config['base_path'] . "/$name"; cacti_log('Writing file: ' . $filename, false, 'IMPORT', POLLER_VERBOSITY_HIGH); if (!$preview) { if (is_writable($filename)) { $file = fopen($filename,'wb'); if (is_resource($file)) { fwrite($file ,$fdata, strlen($fdata)); fclose($file); clearstatcache(); $filestatus[$filename] = __('written'); } else { $filestatus[$filename] = __('could not open'); } if (!file_exists($filename)) { cacti_log('FATAL: Unable to create directory: ' . $filename, true, 'IMPORT', POLLER_VERBOSITY_LOW); $filestatus[$filename] = __('not exists'); } } else { $filestatus[$filename] = __('not writable'); } } else { if (!is_writable($filename)) { $filestatus[$filename] = __('not writable'); } else { $filestatus[$filename] = __('writable'); } } } else { cacti_log('Importing XML Data for ' . $name, false, 'IMPORT', POLLER_VERBOSITY_LOW); $debug_data = import_xml_data($fdata, false, $profile_id, $remove_orphans, $preview_only); } } cacti_log('File creation complete', false, 'IMPORT', POLLER_VERBOSITY_HIGH); return array($debug_data, $filestatus); } function xml_to_graph_template($hash, &$xml_array, &$hash_cache, $hash_version, $remove_orphans = false) { global $struct_graph, $struct_graph_item, $fields_graph_template_input_edit, $cacti_version_codes, $preview_only, $graph_item_types, $import_debug_info; /* track changes */ $status = 0; /* import into: graph_templates */ $_graph_template_id = db_fetch_cell_prepared('SELECT id FROM graph_templates WHERE hash = ?', array($hash)); if (!empty($_graph_template_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM graph_templates WHERE id = ?', array($_graph_template_id)); } else { $previous_data = array(); } $save['id'] = (empty($_graph_template_id) ? '0' : $_graph_template_id); $save['hash'] = $hash; $save['name'] = $xml_array['name']; if (isset($xml_array['multiple'])) { $save['multiple'] = $xml_array['multiple']; } /* check for status changes */ $status += compare_data($save, $previous_data, 'graph_templates'); if (!$preview_only) { $graph_template_id = sql_save($save, 'graph_templates'); $hash_cache['graph_template'][$hash] = $graph_template_id; } else { $graph_template_id = $_graph_template_id; $hash_cache['graph_template'][$hash] = $graph_template_id; } /* import into: graph_templates_graph */ unset($save); $save['id'] = (empty($_graph_template_id) ? '0' : db_fetch_cell_prepared('SELECT gtg.id FROM graph_templates AS gt INNER JOIN graph_templates_graph AS gtg ON gt.id=gtg.graph_template_id WHERE gt.id = ? AND gtg.local_graph_id=0', array($graph_template_id))); if (!empty($_graph_template_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM graph_templates_graph WHERE id = ?', array($save['id'])); } else { $previous_data = array(); } $save['graph_template_id'] = $graph_template_id; foreach ($struct_graph as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($xml_array['graph']['t_' . $field_name])) { $save['t_' . $field_name] = $xml_array['graph']['t_' . $field_name]; } /* make sure this field exists in the xml array first */ if (isset($xml_array['graph'][$field_name])) { /* Cacti pre 0.8.5 did handle a unit_exponent=0 differently * so we need to know the version of the current hash code we're just working on */ if (($field_name == 'unit_exponent_value') && (get_version_index($hash_version) < get_version_index('0.8.5')) && ($xml_array['graph'][$field_name] == '0')) { /* backwards compatability */ $save[$field_name] = ''; } else { $save[$field_name] = xml_character_decode($xml_array['graph'][$field_name]); } } } /* check for status changes */ $status += compare_data($save, $previous_data, 'graph_templates_graph'); if (!$preview_only) { $graph_template_graph_id = sql_save($save, 'graph_templates_graph'); } else { $graph_template_graph_id = $save['id']; } /* import into: graph_templates_item */ if (is_array($xml_array['items'])) { $new_items = array(); if ($graph_template_id > 0) { $items = db_fetch_assoc_prepared('SELECT * FROM graph_templates_item WHERE graph_template_id = ? AND local_graph_id = 0', array($graph_template_id)); if (sizeof($items)) { foreach($items as $item) { $orphaned_items[$item['hash']] = $item; } } } else { $orphaned_items = array(); } foreach ($xml_array['items'] as $item_hash => $item_array) { /* parse information from the hash */ $parsed_hash = parse_xml_hash($item_hash); /* mark present hashes */ if (isset($orphaned_items[$parsed_hash['hash']])) { unset($orphaned_items[$parsed_hash['hash']]); } /* invalid/wrong hash */ if ($parsed_hash == false) { return false; } unset($save); $_graph_template_item_id = db_fetch_cell_prepared('SELECT id FROM graph_templates_item WHERE hash = ? AND graph_template_id = ? AND local_graph_id=0', array($parsed_hash['hash'], $graph_template_id)); if (!empty($_graph_template_item_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM graph_templates_item WHERE id = ?', array($_graph_template_item_id)); } else { $previous_data = array(); } $save['id'] = (empty($_graph_template_item_id) ? '0' : $_graph_template_item_id); $save['hash'] = $parsed_hash['hash']; $save['graph_template_id'] = $graph_template_id; foreach ($struct_graph_item as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($item_array[$field_name])) { /* is the value of this field a hash or not? */ if (preg_match('/hash_([a-f0-9]{2})([a-f0-9]{4})([a-f0-9]{32})/', $item_array[$field_name])) { $save[$field_name] = resolve_hash_to_id($item_array[$field_name], $hash_cache); } elseif (($field_name == 'color_id') && (preg_match('/^[a-fA-F0-9]{6}$/', $item_array[$field_name])) && (get_version_index($parsed_hash['version']) >= get_version_index('0.8.5'))) { /* treat the 'color' field differently */ $color_id = db_fetch_cell_prepared('SELECT id FROM colors WHERE hex = ?', array($item_array[$field_name])); if (empty($color_id) && !$preview_only) { db_execute_prepared('INSERT INTO colors ( hex) VALUES (?)', array($item_array[$field_name])); $color_id = db_fetch_insert_id(); } $save[$field_name] = $color_id; } else { $save[$field_name] = xml_character_decode($item_array[$field_name]); } } } if (!empty($_graph_template_id)) { if (!sizeof($previous_data)) { $new_items[$parsed_hash['hash']] = $save; } } /* check for status changes */ $status += compare_data($save, $previous_data, 'graph_templates_item'); if (!$preview_only) { $graph_template_item_id = sql_save($save, 'graph_templates_item'); $hash_cache['graph_template_item'][$parsed_hash['hash']] = $graph_template_item_id; } else { $hash_cache['graph_template_item'][$parsed_hash['hash']] = $_graph_template_item_id; } } } /* import into: graph_template_input */ if (is_array($xml_array['inputs'])) { foreach ($xml_array['inputs'] as $item_hash => $item_array) { /* parse information from the hash */ $parsed_hash = parse_xml_hash($item_hash); /* invalid/wrong hash */ if ($parsed_hash == false) { return false; } unset($save); $_graph_template_input_id = db_fetch_cell_prepared('SELECT id FROM graph_template_input WHERE hash = ? AND graph_template_id = ?', array($parsed_hash['hash'], $graph_template_id)); if (!empty($_graph_template_input_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM graph_template_input WHERE id = ?', array($_graph_template_input_id)); } else { $previous_data = array(); } $save['id'] = (empty($_graph_template_input_id) ? '0' : $_graph_template_input_id); $save['hash'] = $parsed_hash['hash']; $save['graph_template_id'] = $graph_template_id; foreach ($fields_graph_template_input_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($item_array[$field_name])) { $save[$field_name] = xml_character_decode($item_array[$field_name]); } } /* check for status changes */ $status += compare_data($save, $previous_data, 'graph_template_input'); if (!$preview_only) { $graph_template_input_id = sql_save($save, 'graph_template_input'); $hash_cache['graph_template_input'][$parsed_hash['hash']] = $graph_template_input_id; /* import into: graph_template_input_defs */ $hash_items = explode('|', $item_array['items']); if (!empty($hash_items[0])) { for ($i=0; $i 0 ? 'updated':'unchanged')); $import_debug_info['title'] = $xml_array['name']; $import_debug_info['result'] = ($preview_only ? 'preview':(empty($graph_template_id) ? 'fail' : 'success')); if (isset($new_items) && sizeof($new_items)) { $new_text = array(); foreach($new_items as $item) { $new_text[] = 'New Graph Items, Type: ' . $graph_item_types[$item['graph_type_id']] . ', Text Format: ' . $item['text_format'] . ', Value: ' . $item['value']; } $import_debug_info['new_items'] = $new_text; } if (isset($orphaned_items) && sizeof($orphaned_items)) { $orphan_text = array(); foreach($orphaned_items as $item) { if ($remove_orphans) { $orphan_text[] = 'Removed Orphaned Graph Items, Type: ' . $graph_item_types[$item['graph_type_id']] . ', Text Format: ' . $item['text_format'] . ', Value: ' . $item['value']; db_execute_prepared('DELETE FROM graph_templates_item WHERE hash = ?', array($item['hash'])); db_execute_prepared('DELETE FROM graph_templates_item WHERE local_graph_template_item_id = ?', array($item['id'])); } else { $orphan_text[] = 'Found Orphaned Graph Items, Type: ' . $graph_item_types[$item['graph_type_id']] . ', Text Format: ' . $item['text_format'] . ', Value: ' . $item['value']; } } $import_debug_info['orphans'] = $orphan_text; if ($remove_orphans) { retemplate_graphs($graph_template_id); } } return $hash_cache; } function xml_to_data_template($hash, &$xml_array, &$hash_cache, $import_as_new, $profile_id) { global $struct_data_source, $struct_data_source_item, $import_template_id, $preview_only, $import_debug_info; /* track changes */ $status = 0; /* import into: data_template */ $_data_template_id = db_fetch_cell_prepared('SELECT id FROM data_template WHERE hash = ?', array($hash)); if (!empty($_data_template_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM data_template WHERE id = ?', array($_data_template_id)); } else { $previous_data = array(); } $save['id'] = (empty($_data_template_id) ? '0' : $_data_template_id); $save['hash'] = $hash; $save['name'] = $xml_array['name']; /* check for status changes */ $status += compare_data($save, $previous_data, 'data_template'); if (!$preview_only) { $data_template_id = sql_save($save, 'data_template'); $hash_cache['data_template'][$hash] = $data_template_id; } else { $data_template_id = $_data_template_id; $hash_cache['data_template'][$hash] = $_data_template_id; } /* import into: data_template_data */ unset($save); $save['id'] = (empty($_data_template_id) ? '0' : db_fetch_cell_prepared('SELECT dtd.id FROM data_template AS dt INNER JOIN data_template_data AS dtd ON dt.id=dtd.data_template_id WHERE dt.id = ? AND dtd.local_data_id=0', array($data_template_id))); if (!empty($save['id'])) { $previous_data = db_fetch_row_prepared('SELECT * FROM data_template_data WHERE id = ?', array($save['id'])); } else { $previous_data = array(); } $save['data_template_id'] = $data_template_id; $save['data_source_profile_id'] = $profile_id; foreach ($struct_data_source as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($xml_array['ds']['t_' . $field_name])) { $save['t_' . $field_name] = $xml_array['ds']['t_' . $field_name]; } /* make sure this field exists in the xml array first */ if (isset($xml_array['ds'][$field_name])) { /* is the value of this field a hash or not? */ if ($field_name == 'data_source_profile_id') { $save[$field_name] = $profile_id; } elseif (preg_match('/hash_([a-f0-9]{2})([a-f0-9]{4})([a-f0-9]{32})/', $xml_array['ds'][$field_name])) { $save[$field_name] = resolve_hash_to_id($xml_array['ds'][$field_name], $hash_cache); } else { $save[$field_name] = xml_character_decode($xml_array['ds'][$field_name]); } } } /* set the rrd_step */ if ($profile_id > 0) { $save['rrd_step'] = db_fetch_cell_prepared('SELECT step FROM data_source_profiles WHERE id = ?', array($profile_id)); } else { $profile_id = db_fetch_cell('SELECT id FROM data_source_profiles ORDER BY `default` DESC LIMIT 1'); $save['rrd_step'] = db_fetch_cell_prepared('SELECT step FROM data_source_profiles WHERE id = ?', array($profile_id)); } /* check for status changes */ $status += compare_data($save, $previous_data, 'data_template_data'); if (!$preview_only) { $data_template_data_id = sql_save($save, 'data_template_data'); $import_template_id = $data_template_data_id; } /* import into: data_template_rrd */ if (is_array($xml_array['items'])) { foreach ($xml_array['items'] as $item_hash => $item_array) { /* parse information from the hash */ $parsed_hash = parse_xml_hash($item_hash); /* invalid/wrong hash */ if ($parsed_hash == false) { return false; } unset($save); $_data_template_rrd_id = db_fetch_cell_prepared('SELECT id FROM data_template_rrd WHERE hash = ? AND data_template_id = ? AND local_data_id=0', array($parsed_hash['hash'], $data_template_id)); if (!empty($_data_template_rrd_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM data_template_rrd WHERE id = ?', array($_data_template_rrd_id)); } else { $previous_data = array(); } $save['id'] = (empty($_data_template_rrd_id) ? '0' : $_data_template_rrd_id); $save['hash'] = $parsed_hash['hash']; $save['data_template_id'] = $data_template_id; foreach ($struct_data_source_item as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($item_array['t_' . $field_name])) { $save['t_' . $field_name] = $item_array['t_' . $field_name]; } /* make sure this field exists in the xml array first */ if (isset($item_array[$field_name])) { /* is the value of this field a hash or not? */ if (preg_match('/hash_([a-f0-9]{2})([a-f0-9]{4})([a-f0-9]{32})/', $item_array[$field_name])) { $save[$field_name] = resolve_hash_to_id($item_array[$field_name], $hash_cache); } else { $save[$field_name] = xml_character_decode($item_array[$field_name]); } } } /* use the profiles step * 2 as the heartbeat if we are not importing a new profile */ if ($import_as_new === false) { $save['rrd_heartbeat'] = db_fetch_cell_prepared('SELECT step FROM data_source_profiles WHERE id = ?', array($profile_id)) * 2; } /* Fix for importing during installation - use the polling interval as the step if we are to use the default rra settings */ if (is_array($profile_id) == true) { $save['rrd_heartbeat'] = read_config_option('poller_interval') * 2; } /* check for status changes */ $status += compare_data($save, $previous_data, 'data_template_rrd'); if (!$preview_only) { $data_template_rrd_id = sql_save($save, 'data_template_rrd'); $hash_cache['data_template_item'][$parsed_hash['hash']] = $data_template_rrd_id; } else { $hash_cache['data_template_item'][$parsed_hash['hash']] = $_data_template_rrd_id; } } } /* import into: data_input_data */ if (!$preview_only) { if (is_array($xml_array['data'])) { foreach ($xml_array['data'] as $item_hash => $item_array) { unset($save); $save['data_template_data_id'] = $data_template_data_id; $save['data_input_field_id'] = resolve_hash_to_id($item_array['data_input_field_id'], $hash_cache); $save['t_value'] = $item_array['t_value']; $save['value'] = xml_character_decode($item_array['value']); if (!empty($save['data_input_field_id'])) { sql_save($save, 'data_input_data', array('data_template_data_id', 'data_input_field_id'), false); } else { cacti_log('Import Error: Failed to insert into data_input_data table', false, POLLER_VERBOSITY_HIGH); } } } /* push out field mappings for the data collector */ db_execute_prepared('REPLACE INTO poller_data_template_field_mappings SELECT dtr.data_template_id, dif.data_name, GROUP_CONCAT(dtr.data_source_name ORDER BY dtr.data_source_name) AS data_source_names, NOW() AS last_updated FROM data_template_rrd AS dtr INNER JOIN data_input_fields AS dif ON dtr.data_input_field_id = dif.id WHERE dtr.local_data_id = 0 AND dtr.data_template_id = ? GROUP BY dtr.data_template_id, dif.data_name', array($data_template_id)); } /* status information that will be presented to the user */ $import_debug_info['type'] = (empty($_data_template_id) ? 'new' : ($status > 0 ? 'updated':'unchanged')); $import_debug_info['title'] = $xml_array['name']; $import_debug_info['result'] = ($preview_only ? 'preview':(empty($data_template_id) ? 'fail' : 'success')); return $hash_cache; } function xml_to_data_query($hash, &$xml_array, &$hash_cache) { global $fields_data_query_edit, $fields_data_query_item_edit, $preview_only, $import_debug_info; /* track changes */ $status = 0; /* import into: snmp_query */ $_data_query_id = db_fetch_cell_prepared('SELECT id FROM snmp_query WHERE hash = ?', array($hash)); if (!empty($_data_query_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM snmp_query WHERE id = ?', array($_data_query_id)); } else { $previous_data = array(); } $save['id'] = (empty($_data_query_id) ? '0' : $_data_query_id); $save['hash'] = $hash; foreach ($fields_data_query_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($xml_array[$field_name])) { /* is the value of this field a hash or not? */ if (preg_match('/hash_([a-f0-9]{2})([a-f0-9]{4})([a-f0-9]{32})/', $xml_array[$field_name])) { $save[$field_name] = resolve_hash_to_id($xml_array[$field_name], $hash_cache); } else { $save[$field_name] = xml_character_decode($xml_array[$field_name]); } } } /* check for status changes */ $status += compare_data($save, $previous_data, 'snmp_query'); if (!$preview_only) { $data_query_id = sql_save($save, 'snmp_query'); $hash_cache['data_query'][$hash] = $data_query_id; update_replication_crc(0, 'poller_replicate_snmp_query_crc'); } else { $data_query_id = $_data_query_id; $hash_cache['data_query'][$hash] = $_data_query_id; } /* import into: snmp_query_graph */ if (is_array($xml_array['graphs'])) { foreach ($xml_array['graphs'] as $item_hash => $item_array) { /* parse information from the hash */ $parsed_hash = parse_xml_hash($item_hash); /* invalid/wrong hash */ if ($parsed_hash == false) { return false; } unset($save); $_data_query_graph_id = db_fetch_cell_prepared('SELECT id FROM snmp_query_graph WHERE hash = ? AND snmp_query_id = ?', array($parsed_hash['hash'], $data_query_id)); if (!empty($_data_query_graph_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM snmp_query_graph WHERE id = ?', array($_data_query_graph_id)); } else { $previous_data = array(); } $save['id'] = (empty($_data_query_graph_id) ? '0' : $_data_query_graph_id); $save['hash'] = $parsed_hash['hash']; $save['snmp_query_id'] = $data_query_id; foreach ($fields_data_query_item_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($item_array[$field_name])) { /* is the value of this field a hash or not? */ if (preg_match('/hash_([a-f0-9]{2})([a-f0-9]{4})([a-f0-9]{32})/', $item_array[$field_name])) { $save[$field_name] = resolve_hash_to_id($item_array[$field_name], $hash_cache); } else { $save[$field_name] = xml_character_decode($item_array[$field_name]); } } } /* check for status changes */ $status += compare_data($save, $previous_data, 'snmp_query_graph'); if (!$preview_only) { $data_query_graph_id = sql_save($save, 'snmp_query_graph'); $hash_cache['data_query_graph'][$parsed_hash['hash']] = $data_query_graph_id; /* import into: snmp_query_graph_rrd */ if (is_array($item_array['rrd'])) { foreach ($item_array['rrd'] as $sub_item_hash => $sub_item_array) { unset($save); $save['snmp_query_graph_id'] = $data_query_graph_id; $save['data_template_id'] = resolve_hash_to_id($sub_item_array['data_template_id'], $hash_cache); $save['data_template_rrd_id'] = resolve_hash_to_id($sub_item_array['data_template_rrd_id'], $hash_cache); $save['snmp_field_name'] = $sub_item_array['snmp_field_name']; if (!empty($save['data_template_id']) && !empty($save['data_template_rrd_id'])) { sql_save($save, 'snmp_query_graph_rrd', array('snmp_query_graph_id', 'data_template_id', 'data_template_rrd_id'), false); } else { cacti_log('Import Error: inserting into snmp_query_graph_rrd', false, POLLER_VERBOSITY_HIGH); } } } } else { $data_query_graph_id = $_data_query_graph_id; $hash_cache['data_query_graph'][$parsed_hash['hash']] = $_data_query_graph_id; } /* import into: snmp_query_graph_sv */ if (is_array($item_array['sv_graph'])) { foreach ($item_array['sv_graph'] as $sub_item_hash => $sub_item_array) { /* parse information from the hash */ $parsed_hash = parse_xml_hash($sub_item_hash); /* invalid/wrong hash */ if ($parsed_hash == false) { return false; } unset($save); $_data_query_graph_sv_id = db_fetch_cell_prepared('SELECT id FROM snmp_query_graph_sv WHERE hash = ? AND snmp_query_graph_id = ?', array($parsed_hash['hash'], $data_query_graph_id)); if (!empty($_data_query_graph_sv_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM snmp_query_graph_sv WHERE id = ?', array($_data_query_graph_sv_id)); } else { $previous_data = array(); } $save['id'] = (empty($_data_query_graph_sv_id) ? '0' : $_data_query_graph_sv_id); $save['hash'] = $parsed_hash['hash']; $save['snmp_query_graph_id'] = $data_query_graph_id; $save['sequence'] = $sub_item_array['sequence']; $save['field_name'] = $sub_item_array['field_name']; $save['text'] = xml_character_decode($sub_item_array['text']); /* check for status changes */ $status += compare_data($save, $previous_data, 'snmp_query_graph_sv'); if (!$preview_only) { $data_query_graph_sv_id = sql_save($save, 'snmp_query_graph_sv'); $hash_cache['data_query_sv_graph'][$parsed_hash['hash']] = $data_query_graph_sv_id; } else { $hash_cache['data_query_sv_graph'][$parsed_hash['hash']] = $_data_query_graph_sv_id; } } } /* import into: snmp_query_graph_rrd_sv */ if (is_array($item_array['sv_data_source'])) { foreach ($item_array['sv_data_source'] as $sub_item_hash => $sub_item_array) { /* parse information from the hash */ $parsed_hash = parse_xml_hash($sub_item_hash); /* invalid/wrong hash */ if ($parsed_hash == false) { return false; } unset($save); $_data_query_graph_rrd_sv_id = db_fetch_cell_prepared('SELECT id FROM snmp_query_graph_rrd_sv WHERE hash = ? AND snmp_query_graph_id = ?', array($parsed_hash['hash'], $data_query_graph_id)); if (!empty($_data_query_graph_rrd_sv_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM snmp_query_graph_rrd_sv WHERE id = ?', array($_data_query_graph_rrd_sv_id)); } else { $previous_data = array(); } $save['id'] = (empty($_data_query_graph_rrd_sv_id) ? '0' : $_data_query_graph_rrd_sv_id); $save['hash'] = $parsed_hash['hash']; $save['snmp_query_graph_id'] = $data_query_graph_id; $save['data_template_id'] = resolve_hash_to_id($sub_item_array['data_template_id'], $hash_cache); $save['sequence'] = $sub_item_array['sequence']; $save['field_name'] = $sub_item_array['field_name']; $save['text'] = xml_character_decode($sub_item_array['text']); /* check for status changes */ $status += compare_data($save, $previous_data, 'snmp_query_graph_rrd_sv'); if (!$preview_only) { if (!empty($save['data_template_id'])) { $data_query_graph_rrd_sv_id = sql_save($save, 'snmp_query_graph_rrd_sv'); } else { cacti_log('Import Error: Error Importing into snmp_query_graph_rrd_sv table', false, POLLER_VERBOSITY_HIGH); } $hash_cache['data_query_sv_data_source'][$parsed_hash['hash']] = $data_query_graph_rrd_sv_id; } else { $hash_cache['data_query_sv_data_source'][$parsed_hash['hash']] = $_data_query_graph_rrd_sv_id; } } } } } /* status information that will be presented to the user */ $import_debug_info['type'] = (empty($_data_query_id) ? 'new' : ($status > 0 ? 'updated':'unchanged')); $import_debug_info['title'] = $xml_array['name']; $import_debug_info['result'] = ($preview_only ? 'preview':(empty($data_query_id) ? 'fail' : 'success')); return $hash_cache; } function xml_to_gprint_preset($hash, &$xml_array, &$hash_cache) { global $fields_grprint_presets_edit, $preview_only, $import_debug_info; /* track changes */ $status = 0; /* import into: graph_templates_gprint */ $_gprint_preset_id = db_fetch_cell_prepared('SELECT id FROM graph_templates_gprint WHERE hash = ?', array($hash)); if (!empty($_gprint_preset_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM graph_templates_gprint WHERE id = ?', array($_gprint_preset_id)); } else { $previous_data = array(); } $save['id'] = (empty($_gprint_preset_id) ? '0' : $_gprint_preset_id); $save['hash'] = $hash; foreach ($fields_grprint_presets_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($xml_array[$field_name])) { $save[$field_name] = xml_character_decode($xml_array[$field_name]); } } /* check for status changes */ $status += compare_data($save, $previous_data, 'graph_templates_gprint'); if (!$preview_only) { $gprint_preset_id = sql_save($save, 'graph_templates_gprint'); $hash_cache['gprint_preset'][$hash] = $gprint_preset_id; } else { $hash_cache['gprint_preset'][$hash] = $_gprint_preset_id; } /* status information that will be presented to the user */ $import_debug_info['type'] = (empty($_gprint_preset_id) ? 'new' : ($status > 0 ? 'updated':'unchanged')); $import_debug_info['title'] = $xml_array['name']; $import_debug_info['result'] = ($preview_only ? 'preview':(empty($gprint_preset_id) ? 'fail' : 'success')); return $hash_cache; } function xml_to_data_source_profile($hash, &$xml_array, &$hash_cache, $import_as_new, $profile_id) { global $fields_profile_edit, $fields_profile_rra_edit, $import_template_id, $preview_only, $import_debug_info; if ($import_as_new == true) { $save['id'] = 0; $save['hash'] = get_hash_data_source_profile(0); foreach ($fields_profile_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($xml_array[$field_name])) { $save[$field_name] = xml_character_decode($xml_array[$field_name]); } } // Give the Profile a new name $save['name'] .= ' (imported)'; if (!$preview_only) { $dsp_id = sql_save($save, 'data_source_profiles'); if (!empty($dsp_id)) { db_execute_prepared('UPDATE data_template_data SET data_source_profile_id = ? WHERE id = ?', array($dsp_id, $import_template_id)); } $hash_cache['data_source_profiles'][$hash] = $dsp_id; /* import into: data_source_profiles_cf */ $hash_items = explode('|', $xml_array['cf_items']); if (!empty($hash_items[0])) { for ($i=0; $i $item_array) { unset($save); $save['id'] = 0; $save['data_source_profile_id'] = $dsp_id; foreach ($fields_profile_rra_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($item_array[$field_name])) { $save[$field_name] = xml_character_decode($item_array[$field_name]); } } $rra_id = sql_save($save, 'data_source_profiles_rra'); $hash_cache['data_source_profile_rra'][$item_name] = $rra_id; } } } /* status information that will be presented to the user */ $import_debug_info['type'] = 'new'; $import_debug_info['title'] = $xml_array['name'] . ' (imported)'; $import_debug_info['result'] = ($preview_only ? 'preview':(empty($dsp_id) ? 'fail' : 'success')); return $hash_cache; } else { return false; } } function xml_to_host_template($hash, &$xml_array, &$hash_cache) { global $fields_host_template_edit, $preview_only, $import_debug_info; /* track changes */ $status = 0; /* import into: graph_templates_gprint */ $_host_template_id = db_fetch_cell_prepared('SELECT id FROM host_template WHERE hash = ?', array($hash)); if (!empty($_host_template_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM host_template WHERE id = ?', array($_host_template_id)); } else { $previous_data = array(); } $save['id'] = (empty($_host_template_id) ? '0' : $_host_template_id); $save['hash'] = $hash; foreach ($fields_host_template_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($xml_array[$field_name])) { $save[$field_name] = xml_character_decode($xml_array[$field_name]); } } /* check for status changes */ $status += compare_data($save, $previous_data, 'host_template'); if (!$preview_only) { $host_template_id = sql_save($save, 'host_template'); $hash_cache['host_template'][$hash] = $host_template_id; /* import into: host_template_graph */ $hash_items = explode('|', $xml_array['graph_templates']); if (!empty($hash_items[0])) { for ($i=0; $i 0 ? 'updated':'unchanged')); $import_debug_info['title'] = $xml_array['name']; $import_debug_info['result'] = ($preview_only ? 'preview':(empty($host_template_id) ? 'fail' : 'success')); return $hash_cache; } function xml_to_cdef($hash, &$xml_array, &$hash_cache) { global $fields_cdef_edit, $preview_only, $import_debug_info; /* track changes */ $status = 0; $fields_cdef_item_edit = array( 'sequence' => 'sequence', 'type' => 'type', 'value' => 'value' ); /* import into: cdef */ $_cdef_id = db_fetch_cell_prepared('SELECT id FROM cdef WHERE hash = ?', array($hash)); if (!empty($_cdef_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM cdef WHERE id = ?', array($_cdef_id)); } else { $previous_data = array(); } $save['id'] = (empty($_cdef_id) ? '0' : $_cdef_id); $save['hash'] = $hash; foreach ($fields_cdef_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($xml_array[$field_name])) { $save[$field_name] = xml_character_decode($xml_array[$field_name]); } } /* check for status changes */ $status += compare_data($save, $previous_data, 'cdef'); if (!$preview_only) { $cdef_id = sql_save($save, 'cdef'); $hash_cache['cdef'][$hash] = $cdef_id; } else { $cdef_id = $_cdef_id; $hash_cache['cdef'][$hash] = $_cdef_id; } /* import into: cdef_items */ if (is_array($xml_array['items'])) { foreach ($xml_array['items'] as $item_hash => $item_array) { /* parse information from the hash */ $parsed_hash = parse_xml_hash($item_hash); /* invalid/wrong hash */ if ($parsed_hash == false) { return false; } unset($save); $_cdef_item_id = db_fetch_cell_prepared('SELECT id FROM cdef_items WHERE hash= ? AND cdef_id = ?', array($parsed_hash['hash'], $cdef_id)); if (!empty($_cdef_item_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM cdef_items WHERE id = ?', array($_cdef_item_id)); } else { $previous_data = array(); } $save['id'] = (empty($_cdef_item_id) ? '0' : $_cdef_item_id); $save['hash'] = $parsed_hash['hash']; $save['cdef_id'] = $cdef_id; foreach ($fields_cdef_item_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($item_array[$field_name])) { /* check, if an inherited cdef as to be decoded (value == 5) * this whole procedure relies on the sequence during template export * inherited cdef's must come first, this has to be taken care of during export * so we do not have any specific dependency checks here */ if (($field_name == 'value') && ($item_array['type'] == '5')) { /* parse information from the hash, which in this case * is stored as a value of the current item being processed */ $parsed_item_hash = parse_xml_hash($item_array['value']); /* invalid/wrong hash */ if ($parsed_item_hash == false) { return false; } $_cdef_id = db_fetch_cell_prepared('SELECT id FROM cdef WHERE hash = ?', array($parsed_item_hash['hash'])); $save[$field_name] = $_cdef_id; } else { $save[$field_name] = xml_character_decode($item_array[$field_name]); } } } /* check for status changes */ $status += compare_data($save, $previous_data, 'cdef_items'); if (!$preview_only) { $cdef_item_id = sql_save($save, 'cdef_items'); $hash_cache['cdef_item'][$parsed_hash['hash']] = $cdef_item_id; } else { $hash_cache['cdef_item'][$parsed_hash['hash']] = $_cdef_item_id; } } } /* status information that will be presented to the user */ $import_debug_info['type'] = (empty($_cdef_id) ? 'new' : ($status > 0 ? 'updated':'unchanged')); $import_debug_info['title'] = $xml_array['name']; $import_debug_info['result'] = ($preview_only ? 'preview':(empty($cdef_id) ? 'fail' : 'success')); return $hash_cache; } function xml_to_vdef($hash, &$xml_array, &$hash_cache) { global $config, $preview_only, $import_debug_info; include_once($config['library_path'] . '/vdef.php'); /* track changes */ $status = 0; /* import into: vdef */ $_vdef_id = db_fetch_cell_prepared('SELECT id FROM vdef WHERE hash = ?', array($hash)); if (!empty($_vdef_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM vdef WHERE id = ?', array($_vdef_id)); } else { $previous_data = array(); } $save['id'] = (empty($_vdef_id) ? '0' : $_vdef_id); $save['hash'] = $hash; $fields_vdef_edit = preset_vdef_form_list(); foreach ($fields_vdef_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($xml_array[$field_name])) { $save[$field_name] = xml_character_decode($xml_array[$field_name]); } } /* check for status changes */ $status += compare_data($save, $previous_data, 'vdef'); if (!$preview_only) { $vdef_id = sql_save($save, 'vdef'); $hash_cache['vdef'][$hash] = $vdef_id; } else { $vdef_id = $_vdef_id; $hash_cache['vdef'][$hash] = $_vdef_id; } /* import into: vdef_items */ if (is_array($xml_array['items'])) { foreach ($xml_array['items'] as $item_hash => $item_array) { /* parse information from the hash */ $parsed_hash = parse_xml_hash($item_hash); /* invalid/wrong hash */ if ($parsed_hash == false) { return false; } unset($save); $_vdef_item_id = db_fetch_cell_prepared('SELECT id FROM vdef_items WHERE hash = ? AND vdef_id = ?', array($parsed_hash['hash'], $vdef_id)); if (!empty($_vdef_item_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM vdef_items WHERE id = ?', array($_vdef_item_id)); } else { $previous_data = array(); } $save['id'] = (empty($_vdef_item_id) ? '0' : $_vdef_item_id); $save['hash'] = $parsed_hash['hash']; $save['vdef_id'] = $vdef_id; $fields_vdef_item_edit = preset_vdef_item_form_list(); foreach ($fields_vdef_item_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($item_array[$field_name])) { $save[$field_name] = xml_character_decode($item_array[$field_name]); } } /* check for status changes */ $status += compare_data($save, $previous_data, 'vdef_items'); if (!$preview_only) { $vdef_item_id = sql_save($save, 'vdef_items'); $hash_cache['vdef_item'][$parsed_hash['hash']] = $vdef_item_id; } else { $hash_cache['vdef_item'][$parsed_hash['hash']] = $_vdef_item_id; } } } /* status information that will be presented to the user */ $import_debug_info['type'] = (empty($_vdef_id) ? 'new' : ($status > 0 ? 'updated':'unchanged')); $import_debug_info['title'] = $xml_array['name']; $import_debug_info['result'] = ($preview_only ? 'preview':(empty($vdef_id) ? 'fail' : 'success')); return $hash_cache; } function xml_to_data_input_method($hash, &$xml_array, &$hash_cache) { global $fields_data_input_edit, $fields_data_input_field_edit, $fields_data_input_field_edit_1, $preview_only, $import_debug_info; /* track changes */ $status = 0; /* aggregate field arrays */ $fields_data_input_field_edit += $fields_data_input_field_edit_1; /* import into: data_input */ $_data_input_id = db_fetch_cell_prepared('SELECT id FROM data_input WHERE hash = ?', array($hash)); if (!empty($_data_input_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM data_input WHERE id = ?', array($_data_input_id)); } else { $previous_data = array(); } $save['id'] = (empty($_data_input_id) ? '0' : $_data_input_id); $save['hash'] = $hash; foreach ($fields_data_input_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($xml_array[$field_name])) { if ($field_name == 'input_string' && import_is_base64_encoded($xml_array[$field_name])) { $save[$field_name] = base64_decode($xml_array[$field_name]); } else { $save[$field_name] = xml_character_decode($xml_array[$field_name]); /* fix issue with data input method importing and white spaces */ if ($field_name == 'input_string') { $save[$field_name] = str_replace('><', '> <', $save[$field_name]); $save[$field_name] = str_replace('>""<', '>" "<', $save[$field_name]); $save[$field_name] = str_replace('>\'\'<', '>\' \'<', $save[$field_name]); } } } } /* check for status changes */ $status += compare_data($save, $previous_data, 'data_input'); if (!$preview_only) { $data_input_id = sql_save($save, 'data_input'); $hash_cache['data_input_method'][$hash] = $data_input_id; update_replication_crc(0, 'poller_replicate_data_input_crc'); } else { $data_input_id = $_data_input_id; $hash_cache['data_input_method'][$hash] = $_data_input_id; } /* import into: data_input_fields */ if (is_array($xml_array['fields'])) { foreach ($xml_array['fields'] as $item_hash => $item_array) { /* parse information from the hash */ $parsed_hash = parse_xml_hash($item_hash); /* invalid/wrong hash */ if ($parsed_hash == false) { return false; } /* bad snmp port hashes */ if ($parsed_hash['hash'] == '5240353b8f7f259acaf30e6229bc14e7') { continue; } elseif ($parsed_hash['hash'] == 'd94caa7cc3733bd95ee00a3917fdcbb5') { continue; } unset($save); $_data_input_field_id = db_fetch_cell_prepared('SELECT id FROM data_input_fields WHERE hash= ? AND data_input_id = ?', array($parsed_hash['hash'], $data_input_id)); if (!empty($_data_input_field_id)) { $previous_data = db_fetch_row_prepared('SELECT * FROM data_input_fields WHERE id = ?', array($_data_input_field_id)); } else { $previous_data = array(); } $save['id'] = (empty($_data_input_field_id) ? '0' : $_data_input_field_id); $save['hash'] = $parsed_hash['hash']; $save['data_input_id'] = $data_input_id; foreach ($fields_data_input_field_edit as $field_name => $field_array) { /* make sure this field exists in the xml array first */ if (isset($item_array[$field_name])) { $save[$field_name] = xml_character_decode($item_array[$field_name]); } } /* check for status changes */ $status += compare_data($save, $previous_data, 'data_input_fields'); if (!$preview_only) { $data_input_field_id = sql_save($save, 'data_input_fields'); $hash_cache['data_input_field'][$parsed_hash['hash']] = $data_input_field_id; update_replication_crc(0, 'poller_replicate_data_input_fields_crc'); } else { $hash_cache['data_input_field'][$parsed_hash['hash']] = $_data_input_field_id; } } } /* update field use counter cache if possible */ if (!$preview_only) { if ((isset($xml_array['input_string'])) && (!empty($data_input_id))) { generate_data_input_field_sequences($xml_array['input_string'], $data_input_id); } } /* status information that will be presented to the user */ $import_debug_info['type'] = (empty($_data_input_id) ? 'new' : ($status > 0 ? 'updated':'unchanged')); $import_debug_info['title'] = $xml_array['name']; $import_debug_info['result'] = ($preview_only ? 'preview':(empty($data_input_id) ? 'fail' : 'success')); return $hash_cache; } function compare_data($save, $previous_data, $table) { global $preview_only, $import_debug_info; if ($preview_only) { $ignores = array( 'task_item_id', 'gprint_id', 'cdef_id', 'vdef_id', 'consolidation_function_id', 'data_input_id', 'graph_template_id', 'data_template_id', 'data_input_field_id' ); } else { $ignores = array(); } if (!sizeof($previous_data)) { return 0; } else { $different = 0; foreach($save as $column => $value) { if (array_search($column, $ignores) !== false) continue; if ($previous_data[$column] != $value) { $cols = db_get_table_column_types($table); if (strstr($cols[$column]['type'], 'int') !== false || strstr($cols[$column]['type'], 'float') !== false || strstr($cols[$column]['type'], 'decimal') !== false || strstr($cols[$column]['type'], 'double') !== false) { if (empty($previous_data[$column]) && empty($value)) { continue; } } elseif (empty($previous_data[$column]) && empty($value)) { continue; } $different++; $import_debug_info['differences'][] = 'Table: ' . $table . ', Column: ' . $column . ', New Value: \'' . $value . '\', Old Value: \'' . $previous_data[$column] . '\''; } } return $different; } } function hash_to_friendly_name($hash, $display_type_name) { global $hash_type_names; /* parse information from the hash */ $parsed_hash = parse_xml_hash($hash); /* invalid/wrong hash */ if ($parsed_hash == false) { return __('Unknown Field'); } if ($display_type_name == true) { $prepend = '(' . $hash_type_names[$parsed_hash['type']] . ') '; } else { $prepend = ''; } switch ($parsed_hash['type']) { case 'graph_template': return $prepend . db_fetch_cell_prepared('SELECT name FROM graph_templates WHERE hash = ?', array($parsed_hash['hash'])); case 'data_template': return $prepend . db_fetch_cell_prepared('SELECT name FROM data_template WHERE hash = ?', array($parsed_hash['hash'])); case 'data_template_item': return $prepend . db_fetch_cell_prepared('SELECT data_source_name FROM data_template_rrd WHERE hash = ?', array($parsed_hash['hash'])); case 'host_template': return $prepend . db_fetch_cell_prepared('SELECT name FROM host_template WHERE hash = ?', array($parsed_hash['hash'])); case 'data_input_method': return $prepend . db_fetch_cell_prepared('SELECT name FROM data_input WHERE hash = ?', array($parsed_hash['hash'])); case 'data_input_field': return $prepend . db_fetch_cell_prepared('SELECT name FROM data_input_fields WHERE hash = ?', array($parsed_hash['hash'])); case 'data_query': return $prepend . db_fetch_cell_prepared('SELECT name FROM snmp_query WHERE hash = ?', array($parsed_hash['hash'])); case 'gprint_preset': return $prepend . db_fetch_cell_prepared('SELECT name FROM graph_templates_gprint WHERE hash = ?', array($parsed_hash['hash'])); case 'cdef': return $prepend . db_fetch_cell_prepared('SELECT name FROM cdef WHERE hash = ?', array($parsed_hash['hash'])); case 'vdef': return $prepend . db_fetch_cell_prepared('SELECT name FROM vdef WHERE hash = ?', array($parsed_hash['hash'])); case 'data_source_profile': return $prepend . db_fetch_cell_prepared('SELECT name FROM data_source_profile WHERE hash = ?', array($parsed_hash['hash'])); case 'round_robin_archive': return $prepend; } } function resolve_hash_to_id($hash, &$hash_cache_array) { global $import_debug_info; /* parse information from the hash */ $parsed_hash = parse_xml_hash($hash); /* invalid/wrong hash */ if ($parsed_hash == false) { return false; } if (isset($hash_cache_array[$parsed_hash['type']][$parsed_hash['hash']])) { $import_debug_info['dep'][$hash] = 'met'; return $hash_cache_array[$parsed_hash['type']][$parsed_hash['hash']]; } else { /* bad snmp port hashes */ if ($parsed_hash['hash'] == '5240353b8f7f259acaf30e6229bc14e7') { return 0; } elseif ($parsed_hash['hash'] == 'd94caa7cc3733bd95ee00a3917fdcbb5') { return 0; } elseif ($parsed_hash['hash'] == 'cbbe5c1ddfb264a6e5d509ce1c78c95f') { return 0; } cacti_log("Import Error: Import found an invalid dependency hash of :" . $parsed_hash['hash'] . ". Please open bug on GitHub."); $import_debug_info['dep'][$hash] = 'unmet'; return 0; } } function parse_xml_hash($hash) { if (preg_match('/hash_([a-f0-9]{2})([a-f0-9]{4})([a-f0-9]{32})/', $hash, $matches)) { $parsed_hash['type'] = check_hash_type($matches[1]); $parsed_hash['version'] = strval(check_hash_version($matches[2])); $parsed_hash['hash'] = $matches[3]; /* an error has occurred */ if (($parsed_hash['type'] === false) || ($parsed_hash['version'] === false)) { cacti_log(__FUNCTION__ . ' ERROR type or version not found for hash: ' . $hash, false, 'IMPORT', POLLER_VERBOSITY_LOW); return false; } } else { /* bad snmp port hashes */ if ($hash == '5240353b8f7f259acaf30e6229bc14e7') { return false; } elseif ($hash == 'd94caa7cc3733bd95ee00a3917fdcbb5') { return false; } cacti_log(__FUNCTION__ . ' ERROR wrong hash format for hash: ' . $hash, false, 'IMPORT', POLLER_VERBOSITY_LOW); return false; } return $parsed_hash; } function check_hash_type($hash_type) { global $hash_type_codes; /* lets not mess up the pointer for other people */ $local_hash_type_codes = $hash_type_codes; foreach ($local_hash_type_codes as $type => $code) { if ($code == $hash_type) { $current_type = $type; } } if (!isset($current_type)) { raise_message(18); /* error: cannot find type */ return false; } return $current_type; } function check_hash_version($hash_version) { global $cacti_version_codes, $config; $i = 0; foreach ($cacti_version_codes as $version => $code) { if ($version == CACTI_VERSION) { $current_version_index = $i; } if ($code == $hash_version) { $hash_version_index = $i; $current_version = $version; } $i++; } if (!isset($current_version_index)) { cacti_log("ERROR: $hash_version Current Cacti Version does not exist!", false, 'IMPORT', POLLER_VERBOSITY_HIGH); raise_message(15); /* error: current cacti version does not exist! */ return false; } elseif (!isset($hash_version_index)) { cacti_log("ERROR: $hash_version hash version does not exist!", false, 'IMPORT', POLLER_VERBOSITY_HIGH); raise_message(16); /* error: hash version does not exist! */ return false; } elseif ($hash_version_index > $current_version_index) { cacti_log("ERROR: $hash_version hash version if for a newer Cacti!", false, 'IMPORT', POLLER_VERBOSITY_HIGH); raise_message(17); /* error: hash made with a newer version of cacti */ return false; } return $current_version; } function get_version_index($string_version) { global $cacti_version_codes; $i = 0; foreach ($cacti_version_codes as $version => $code) { if ($string_version == $version) { return $i; } $i++; } /* version index not found */ return -1; } function xml_character_decode($text) { if (function_exists('html_entity_decode')) { return html_entity_decode($text, ENT_QUOTES, 'UTF-8'); } else { $trans_tbl = get_html_translation_table(HTML_ENTITIES); $trans_tbl = array_flip($trans_tbl); return strtr($text, $trans_tbl); } } function import_display_results($import_debug_info, $filestatus, $web = false, $preview = false) { global $hash_type_names; // Capture to a buffer ob_start(); if (sizeof($import_debug_info)) { html_start_box(($preview ? __('Import Preview Results'):__('Import Results')), '100%', '', '3', 'center', ''); if (sizeof($filestatus)) { if ($preview) { print "

    " . __('Cacti would make the following changes if the Package was imported:') . "

    \n"; } else { print "

    " . __('Cacti has imported the following items for the Package:') . "

    \n"; } print "

    " . __('Package Files') . "

    \n"; print "
      "; foreach($filestatus as $filename => $status) { print "
    • " . ($preview ? __("[preview] "):"") . $filename . " [" . $status . "]
    • \n"; } print "
    "; } else { if ($preview) { print "

    " . __('Cacti would make the following changes if the Template was imported:') . "

    \n"; } else { print "

    " . __('Cacti has imported the following items for the Template:') . "

    \n"; } } foreach ($import_debug_info as $type => $type_array) { print "

    " . $hash_type_names[$type] . "

    \n"; foreach ($type_array as $index => $vals) { if ($vals['result'] == 'success') { $result_text = "" . __('[success]') . ""; } elseif ($vals['result'] == 'fail') { $result_text = "" . __('[fail]') . ""; } else { $result_text = "" . __('[preview]') . ""; } if ($vals['type'] == 'updated') { $type_text = "" . __('[updated]') . "\n"; } elseif ($vals['type'] == 'new') { $type_text = "" . __('[new]') . "\n"; } else { $type_text = "" . __('[unchanged]') . "\n"; } print "$result_text " . html_escape($vals['title']) . " $type_text
    \n"; if (isset($vals['orphans'])) { print '
      '; foreach($vals['orphans'] as $orphan) { print "
    • " . html_escape($orphan) . "
    • \n"; } print '
    '; } if (isset($vals['new_items'])) { print '
      '; foreach($vals['new_items'] as $item) { print "
    • " . html_escape($item) . "
    • \n"; } print '
    '; } if (isset($vals['differences'])) { print '
      '; foreach($vals['differences'] as $diff) { print "
    • " . html_escape($diff) . "
    • \n"; } print '
    '; } if (!$preview) { $dep_text = ''; $dep_errors = false; if ((isset($vals['dep'])) && (sizeof($vals['dep']) > 0)) { foreach ($vals['dep'] as $dep_hash => $dep_status) { if ($dep_status == 'met') { $dep_status_text = "" . __('Found Dependency:') . ""; } else { $dep_status_text = "" . __('Unmet Dependency:') . ""; $dep_errors = true; } $dep_text .= "   + $dep_status_text " . hash_to_friendly_name($dep_hash, true) . "
    \n"; } } /* only print out dependency details if they contain errors; otherwise it would get too long */ if ($dep_errors == true) { print $dep_text; } } } } print ''; html_end_box(); } if ($web) { print ob_get_clean(); } else { $output = ob_get_clean(); $output = explode("\n", $output); if (sizeof($output)) { foreach($output as $line) { $line = trim(str_replace(' ', '', strip_tags($line))); if ($line != '') { print $line . "\n"; } } } } } function xml_to_array($data) { if (is_object($data)) { $data = get_object_vars($data); } return (is_array($data)) ? array_map(__FUNCTION__,$data) : $data; } function import_is_base64_encoded($string) { if (preg_match('%^[a-zA-Z0-9/+]*={0,2}$%', $string)) { return true; } else { return false; } } cacti-1.1.38/lib/html_validate.php0000664000175000017500000000570513264740213016360 0ustar tromantroman '500', 'statusText' => __('Validation Error'), 'responseText' => $message ) ); } else { cacti_debug_backtrace('Validation Error' . ($variable != '' ? ', Variable:' . html_escape($variable):'') . ($value != '' ? ', Value:' . html_escape($value):''), true); print "
    $message
    "; bottom_footer(); } exit; } cacti-1.1.38/lib/html_utility.php0000664000175000017500000010441013264740213016263 0ustar tromantroman $field_array) { /* loop through each sub-field that we are going to check for variables */ foreach ($check_fields as $field_to_check) { if (isset($field_array[$field_to_check]) && is_array($form_array[$field_name][$field_to_check])) { /* if the field/sub-field combination is an array, resolve it recursively */ $form_array[$field_name][$field_to_check] = inject_form_variables($form_array[$field_name][$field_to_check], $arg1); } elseif (isset($field_array[$field_to_check]) && !is_array($field_array[$field_to_check]) && preg_match('/\|(arg[123]):([a-zA-Z0-9_]*)\|/', $field_array[$field_to_check], $matches)) { $string = $field_array[$field_to_check]; $count = 0; while (true) { /* an empty field name in the variable means don't treat this as an array */ if ($matches[2] == '') { if (is_array(${$matches[1]})) { /* the existing value is already an array, leave it alone */ $form_array[$field_name][$field_to_check] = ${$matches[1]}; break; } else { /* the existing value is probably a single variable */ $form_array[$field_name][$field_to_check] = str_replace($matches[0], ${$matches[1]}, $field_array[$field_to_check]); break; } } else { /* copy the value down from the array/key specified in the variable */ $string = str_replace($matches[0], (isset(${$matches[1]}{$matches[2]}) ? ${$matches[1]}{$matches[2]} : ''), $string); $matches = array(); preg_match('/\|(arg[123]):([a-zA-Z0-9_]*)\|/', $string, $matches); if (!sizeof($matches)) { $form_array[$field_name][$field_to_check] = $string; break; } } $count++; if ($count > 3) { break; } } } } } } return $form_array; } /* form_alternate_row_color - starts an HTML row with an alternating color scheme @arg $row_color1 - the first color to use @arg $row_color2 - the second color to use @arg $row_value - the value of the row which will be used to evaluate which color to display for this particular row. must be an integer @arg $row_id - used to allow js and ajax actions on this object @returns - the background color used for this particular row */ function form_alternate_row_color($row_color1, $row_color2, $row_value, $row_id = '') { if ($row_value % 2 == 1) { $class='odd'; $current_color = $row_color1; } else { if ($row_color2 == '' || $row_color2 == 'E5E5E5') { $class = 'even'; } else { $class = 'even-alternate'; } $current_color = $row_color1; } if ($row_id != '') { print "\n"; } else { print "\n"; } return $current_color; } /* form_alternate_row - starts an HTML row with an alternating color scheme @arg $light - Alternate odd style @arg $row_id - The id of the row @arg $reset - Reset to top of table */ function form_alternate_row($row_id = '', $light = false, $disabled = false) { static $i = 1; if ($i % 2 == 1) { $class = 'odd'; } elseif ($light) { $class = 'even-alternate'; } else { $class = 'even'; } $i++; if ($row_id != '' && !$disabled && substr($row_id, 0, 4) != 'row_') { print "\n"; } elseif (substr($row_id, 0, 4) == 'row_') { print "\n"; } elseif ($row_id != '') { print "\n"; } else { print "\n"; } } /* form_selectable_cell - format's a table row such that it can be highlighted using cacti's js actions @arg $contents - the readable portion of the @arg $id - the id of the object that will be highlighted @arg $width - the width of the table element @arg $style_or_class - the style or class to apply to the table element @arg $title - optional title for the column */ function form_selectable_cell($contents, $id, $width = '', $style_or_class = '', $title = '') { $output = ''; if ($style_or_class != '') { if (strpos($style_or_class, ':') === false) { $output = "class='nowrap " . $style_or_class . "'"; if ($width != '') { $output .= " style='width:$width;'"; } } else { $output = "class='nowrap' style='" . $style_or_class; if ($width != '') { $output .= ";width:$width;"; } $output .= "'"; } } else { $output = 'class="nowrap"'; if ($width != '') { $output .= " style='width:$width;'"; } } if ($title != '') { $wrapper = "" . $contents . ""; } else { $wrapper = $contents; } print "\t" . $wrapper . "\n"; } /* form_checkbox_cell - format's a tables checkbox form element so that the cacti js actions work on it @arg $title - the text that will be displayed if your hover over the checkbox */ function form_checkbox_cell($title, $id, $disabled = false) { print "\t\n"; print "\t\t\n"; print "\t\n"; } /* form_end_row - ends a table row that is started with form_alternate_row */ function form_end_row() { print "\n"; } /* form_confirm_buttons - provides confirm buttons in the gui @arg $message - the value of the HTML checkbox */ function form_confim_buttons($post_variable, $item_array, $save_message, $return = false) { print " " . ($return ? " ":"  ") . " \n"; } /* html_boolean - returns the boolean equivalent of an HTML checkbox value @arg $html_boolean - the value of the HTML checkbox @returns - true or false based on the value of the HTML checkbox */ function html_boolean($html_boolean) { return ($html_boolean == "on"); } /* html_boolean_friendly - returns the natural language equivalent of an HTML checkbox value @arg $html_boolean - the value of the HTML checkbox @returns - 'Selected' or 'Not Selected' based on the value of the HTML checkbox */ function html_boolean_friendly($html_boolean) { if ($html_boolean == "on") { return __("Selected"); } else { return __("Not Selected"); } } /* get_checkbox_style - finds the proper CSS padding to apply based on the current client browser in use @returns - a CSS style string which should be used with an HTML checkbox control */ function get_checkbox_style() { return ""; } /* set_default_action - sets the required 'action' request variable @arg $default - The default action is not set @returns - null */ function set_default_action($default = '') { if (!isset_request_var('action')) { set_request_var('action', $default); } else { set_request_var('action', $_REQUEST['action']); } } /* unset_request_var - unsets the request variable @arg $variable - The variable to unset @returns - null */ function unset_request_var($variable) { global $_CACTI_REQUEST; if (isset($_CACTI_REQUEST[$variable])) { unset($_CACTI_REQUEST[$variable]); } if (isset($_REQUEST[$variable])) { unset($_REQUEST[$variable]); } } /* isset_request_var - checks to see if the $_REQUEST variable is set. Returns true or false. @arg $variable - The variable to check @returns - true or false */ function isset_request_var($variable) { return isset($_REQUEST[$variable]); } /* isempty_request_var - checks to see if the $_REQUEST variable is empty. Returns true or false. @arg $variable - The variable to check @returns - true or false */ function isempty_request_var($variable) { if (isset_request_var($variable)) { $value = $_REQUEST[$variable]; if (!empty($value)) { return false; } } return true; } /* set_request_var - sets a given $_REQUEST variable and Cacti global. @arg $variable - The variable to set @arg $value - The value to set the variable to @returns - null */ function set_request_var($variable, $value) { global $_CACTI_REQUEST; $_CACTI_REQUEST[$variable] = $value; $_REQUEST[$variable] = $value; $_POST[$variable] = $value; $_GET[$variable] = $value; } /* get_request_var - returns the current value of a PHP $_REQUEST variable, optionally returning a default value if the request variable does not exist. When Cacti is set to 'developer_mode', it will log all instances where a request variable has not first been filtered. @arg $name - the name of the request variable. this should be a valid key in the $_REQUEST array @arg $default - the value to return if the specified name does not exist in the $_REQUEST array @returns - the value of the request variable */ function get_request_var($name, $default = '') { global $_CACTI_REQUEST; $developer = read_config_option('developer_mode'); if (isset($_CACTI_REQUEST[$name])) { return $_CACTI_REQUEST[$name]; } elseif (isset_request_var($name)) { if ($developer == 'on') { html_log_input_error($name); } set_request_var($name, $_REQUEST[$name]); return $_REQUEST[$name]; } else { return $default; } } /* get_request_var_request - deprecated - alias of get_request_var() returning a default value if the request variable does not exist @arg $name - the name of the request variable. this should be a valid key in the $_GET array @arg $default - the value to return if the specified name does not exist in the $_GET array @returns - the value of the request variable */ function get_request_var_request($name, $default = '') { return get_request_var($name, $default); } /* get_filter_request_var - returns the current value of a PHP $_REQUEST variable and also sanitizing the value using the filter. It will also optionally return a default value if the request variable does not exist @arg $name - the name of the request variable. this should be a valid key in the $_REQUEST array @arg $default - the value to return if the specified name does not exist in the $_REQUEST array @returns - the value of the request variable */ function get_filter_request_var($name, $filter = FILTER_VALIDATE_INT, $options = array()) { if (isset_request_var($name)) { if (isempty_request_var($name)) { set_request_var($name, get_nfilter_request_var($name)); return get_request_var($name); } elseif (get_nfilter_request_var($name) == 'undefined') { if (isset($options['default'])) { set_request_var($name, $options['default']); return $options['default']; } else { set_request_var($name, ''); return ''; } } else { if (get_nfilter_request_var($name) == '0') { $value = '0'; } elseif (get_nfilter_request_var($name) == 'undefined') { if (isset($options['default'])) { $value = $options['default']; } else { $value = ''; } } elseif (isempty_request_var($name)) { $value = ''; } elseif ($filter == FILTER_VALIDATE_IS_REGEX) { if (is_base64_encoded($_REQUEST[$name])) { $_REQUEST[$name] = utf8_decode(base64_decode($_REQUEST[$name])); } $valid = validate_is_regex($_REQUEST[$name]); if ($valid === true) { $value = $_REQUEST[$name]; } else { $value = false; $custom_error = $valid; } } elseif ($filter == FILTER_VALIDATE_IS_NUMERIC_ARRAY) { $valid = true; if (is_array($_REQUEST[$name])) { foreach($_REQUEST[$name] AS $number) { if (!is_numeric($number)) { $valid = false; break; } } } else { $valid = false; } if ($valid == true) { $value = $_REQUEST[$name]; } else { $value = false; } } elseif ($filter == FILTER_VALIDATE_IS_NUMERIC_LIST) { $valid = true; $values = preg_split('/,/', $_REQUEST[$name], NULL, PREG_SPLIT_NO_EMPTY); foreach($values AS $number) { if (!is_numeric($number)) { $valid = false; break; } } if ($valid == true) { $value = $_REQUEST[$name]; } else { $value = false; } } elseif (!sizeof($options)) { $value = filter_var($_REQUEST[$name], $filter); } else { $value = filter_var($_REQUEST[$name], $filter, $options); } } if ($value === false) { if ($filter == FILTER_VALIDATE_IS_REGEX) { $_SESSION['custom_error'] = __('The search term "%s" is not valid. Error is %s', html_escape(get_nfilter_request_var($name)), html_escape($custom_error)); set_request_var($name, ''); raise_message('custom_error'); } else { die_html_input_error($name, get_nfilter_request_var($name)); } } else { set_request_var($name, $value); return $value; } } else { if (isset($options['default'])) { set_request_var($name, $options['default']); return $options['default']; } else { return; } } } /* get_nfilter_request_var - returns the value of the request variable deferring any filtering. @arg $name - the name of the request variable. this should be a valid key in the $_POST array @arg $default - the value to return if the specified name does not exist in the $_POST array @returns - the value of the request variable */ function get_nfilter_request_var($name, $default = '') { global $_CACTI_REQUEST; if (isset($_CACTI_REQUEST[$name])) { return $_CACTI_REQUEST[$name]; } elseif (isset($_REQUEST[$name])) { return $_REQUEST[$name]; } else { return $default; } } /* get_request_var_post - depricated - returns the current value of a PHP $_POST variable, optionally returning a default value if the request variable does not exist. @arg $name - the name of the request variable. this should be a valid key in the $_POST array @arg $default - the value to return if the specified name does not exist in the $_POST array @returns - the value of the request variable */ function get_request_var_post($name, $default = '') { return get_nfilter_request_var($name, $default); } /* validate_store_request_vars - validate, sanitize, and store request variables into the custom $_CACTI_REQUEST and desired session variables for Cacti filtering. @arg $filters - an array keyed with the filter methods. @arg $session_prefix - the prefix for the session variable Valid filter include those from PHP filter_var() function syntax. The format of the array is: array( 'varA' => array( 'filter' => value, 'pageset' => true, (optional) 'session' => sess_name, (optional) 'options' => mixed, 'default' => value), 'varB' => array( 'filter' => value, 'pageset' => true, (optional) 'session' => sess_name, (optional) 'options' => mixed, 'default' => value), ... ); The 'pageset' attribute is optional, and when set, any changes between what the page returns and what is set in the session result in the page number being returned to 1. The 'session' attribute is also optional, and when set, all changes will be stored to the session variable defined and not to session_prefix . '_' . $variable as the default. This allows for the concept of global session variables such as 'sess_default_rows'. Validateion 'filter' follow PHP conventions including: FILTER_VALIDATE_BOOLEAN - Validate that the variable is boolean FILTER_VALIDATE_EMAIL - Validate that the variable is an email FILTER_VALIDATE_FLOAT - Validate that the variable is a float FILTER_VALIDATE_INT - Validate that the variable is an integer FILTER_VALIDATE_IP - Validate that the variable is an IP address FILTER_VALIDATE_MAC - Validate that the variable is a MAC Address FILTER_VALIDATE_REGEXP - Validate against a REGEX FILTER_VALIDATE_URL - Validate that the variable is a valid URL FILTER_VALIDATE_IS_REGEX - Validate if a filter variable is a valid regex FILTER_VALIDATE_IS_NUMERIC_ARRAY - Validate if a filter variable is a numeric array FILTER_VALIDATE_IS_NUMERIC_LIST - Validate if a filter variable is a comma delimited list of numbers Sanitization 'filters' follow PHP conventions including: FILTER_SANITIZE_EMAIL - Sanitize the email address FILTER_SANITIZE_ENCODED - URL-encode string FILTER_SANITIZE_MAGIC_QUOTES - Apply addslashes() FILTER_SANITIZE_NUMBER_FLOAT - Remove all non float values FILTER_SANITIZE_NUMBER_INT - Remove everything non int FILTER_SANITIZE_SPECIAL_CHARS - Escape special chars FILTER_SANITIZE_FULL_SPECIAL_CHARS - Equivalent to htmlspecialchars adding ENT_QUOTES FILTER_SANITIZE_STRING - Strip tags, optionally strip or encode special chars FILTER_SANITIZE_URL - Remove all characters except letters, digits, etc. FILTER_UNSAFE_RAW - Nothing and optional strip or encode @returns - the $_REQUEST variable validated and sanitized. */ function validate_store_request_vars($filters, $sess_prefix = '') { global $_CACTI_REQUEST; $changed = 0; $custom_error = ''; if (sizeof($filters)) { foreach($filters as $variable => $options) { // Establish the session variable first if ($sess_prefix != '') { if (isset($options['session'])) { $session_variable = $options['session']; } elseif ($variable != 'rows') { $session_variable = $sess_prefix . '_' . $variable; } else { $session_variable = 'sess_default_rows'; } // Check for special cases 'clear' and 'reset' if (isset_request_var('clear')) { kill_session_var($session_variable); unset_request_var($variable); } elseif (isset_request_var('reset')) { kill_session_var($session_variable); } elseif (isset($options['pageset']) && $options['pageset'] == true) { $changed += check_changed($variable, $session_variable); } } if (!isset_request_var($variable)) { if ($sess_prefix != '' && isset($_SESSION[$session_variable])) { set_request_var($variable, $_SESSION[$session_variable]); } elseif (isset($options['default'])) { set_request_var($variable, $options['default']); } else { cacti_log("Filter Variable: $variable, Must have a default and none is set", false); set_request_var($variable, ''); } } else { if (get_nfilter_request_var($variable) == '0') { $value = '0'; } elseif (get_nfilter_request_var($variable) == 'undefined') { if (isset($options['default'])) { $value = $options['default']; } else { $value = ''; } } elseif (isempty_request_var($variable)) { $value = ''; } elseif ($options['filter'] == FILTER_VALIDATE_IS_REGEX) { if (is_base64_encoded($_REQUEST[$variable])) { $_REQUEST[$variable] = utf8_decode(base64_decode($_REQUEST[$variable])); } $valid = validate_is_regex($_REQUEST[$variable]); if ($valid === true) { $value = $_REQUEST[$variable]; } else { $value = false; $custom_error = $valid; } } elseif ($options['filter'] == FILTER_VALIDATE_IS_NUMERIC_ARRAY) { $valid = true; if (is_array($_REQUEST[$variable])) { foreach($_REQUEST[$variable] AS $number) { if (!is_numeric($number)) { $valid = false; break; } } } else { $valid = false; } if ($valid == true) { $value = $_REQUEST[$variable]; } else { $value = false; } } elseif ($options['filter'] == FILTER_VALIDATE_IS_NUMERIC_LIST) { $valid = true; $values = preg_split('/,/', $_REQUEST[$variable], NULL, PREG_SPLIT_NO_EMPTY); foreach($values AS $number) { if (!is_numeric($number)) { $valid = false; break; } } if ($valid == true) { $value = $_REQUEST[$variable]; } else { $value = false; } } elseif (!isset($options['options'])) { $value = filter_var($_REQUEST[$variable], $options['filter']); } else { $value = filter_var($_REQUEST[$variable], $options['filter'], $options['options']); } if ($value === false) { if ($options['filter'] == FILTER_VALIDATE_IS_REGEX) { $_SESSION['custom_error'] = __('The search term "%s" is not valid. Error is %s', html_escape(get_nfilter_request_var($variable)), html_escape($custom_error)); set_request_var($variable, ''); raise_message('custom_error'); } else { die_html_input_error($variable, get_nfilter_request_var($variable), html_escape($custom_error)); } } else { set_request_var($variable, $value); } } if ($sess_prefix != '') { if (isset_request_var($variable)) { $_SESSION[$session_variable] = get_request_var($variable); } elseif (isset($_SESSION[$session_variable])) { set_request_var($variable, $_SESSION[$session_variable]); } } } update_order_string(); } if ($changed) { set_request_var('page', 1); set_request_var('changed', 1); $_SESSION[$sess_prefix . '_page'] = 1; } elseif (!isset_request_var('page') && isset($_SESSION[$sess_prefix . '_page'])) { set_request_var('page', $_SESSION[$sess_prefix . '_page']); } } /* update_order_string - creates a sort string for standard Cacti tables @returns - null */ function update_order_string($inplace = false) { $page = get_order_string_page(); $order = ''; if (strpos(get_request_var('sort_column'), '(') === false && strpos(get_request_var('sort_column'), '`') === false) { $del = '`'; } else { $del = ''; } if ($inplace) { $_SESSION['sort_string'][$page] = 'ORDER BY '; foreach($_SESSION['sort_data'][$page] as $column => $direction) { if ($column == 'hostname' || $column == 'ip' || $column == 'ip_address') { $order .= ($order != '' ? ', ':'') . 'INET_ATON(' . $column . ') ' . $direction; } else { $order .= ($order != '' ? ', ':'') . $column . ' ' . $direction; } } $_SESSION['sort_string'][$page] .= $order; } else { if (isset_request_var('clear')) { unset($_SESSION['sort_data'][$page]); unset($_SESSION['sort_string'][$page]); } elseif (isset_request_var('add') && get_nfilter_request_var('add') == 'reset') { unset($_SESSION['sort_data'][$page]); unset($_SESSION['sort_string'][$page]); $_SESSION['sort_data'][$page][get_request_var('sort_column')] = get_request_var('sort_direction'); $_SESSION['sort_string'][$page] = 'ORDER BY ' . $del . implode($del . '.'. $del, explode('.', get_request_var('sort_column'))) . $del . ' ' . get_request_var('sort_direction'); } elseif (isset_request_var('sort_column')) { $_SESSION['sort_data'][$page][get_request_var('sort_column')] = get_nfilter_request_var('sort_direction'); $_SESSION['sort_string'][$page] = 'ORDER BY '; foreach($_SESSION['sort_data'][$page] as $column => $direction) { if ($column == 'hostname' || $column == 'ip' || $column == 'ip_address') { $order .= ($order != '' ? ', ':'') . 'INET_ATON(' . $column . ") " . $direction; } else { $order .= ($order != '' ? ', ' . $del:$del) . implode($del . '.' . $del, explode('.', $column)) . $del . ' ' . $direction; } } $_SESSION['sort_string'][$page] .= $order; } else { unset($_SESSION['sort_data'][$page]); unset($_SESSION['sort_string'][$page]); } } } /* get_order_string - returns a valid order string for a table @returns - the order string */ function get_order_string() { $page = get_order_string_page(); if (strpos(get_request_var('sort_column'), '(') === false && strpos(get_request_var('sort_column'), '`') === false) { $del = '`'; } else { $del = ''; } if (isset($_SESSION['sort_string'][$page])) { return $_SESSION['sort_string'][$page]; } else { return 'ORDER BY ' . $del . implode($del . '.' . $del, explode('.', get_request_var('sort_column'))) . $del . ' ' . get_request_var('sort_direction'); } } function remove_column_from_order_string($column) { $page = get_order_string_page(); if (isset($_SESSION['sort_data'][$page][$column])) { unset($_SESSION['sort_data'][$page][$column]); update_order_string(true); } } function get_order_string_page() { $page = str_replace('.php', '', get_current_page()); if (isset_request_var('action')) { $page .= '_' . get_nfilter_request_var('action'); } if (isset_request_var('tab')) { $page .= '_' . get_nfilter_request_var('tab'); } return $page; } function validate_is_regex($regex) { global $php_errormsg; if ($regex == '') { return true; } restore_error_handler(); $track_errors = ini_get('track_errors'); ini_set('track_errors', 1); if(@preg_match("'" . $regex . "'", NULL) !== false) { ini_set('track_errors', $track_errors); return true; } $php_error = trim(str_replace('preg_match():', '', $php_errormsg)); ini_set('track_errors', $track_errors); $errors = array( PREG_INTERNAL_ERROR => __('There was an internal error!'), PREG_BACKTRACK_LIMIT_ERROR => __('Backtrack limit was exhausted!'), PREG_RECURSION_LIMIT_ERROR => __('Recursion limit was exhausted!'), PREG_BAD_UTF8_ERROR => __('Bad UTF-8 error!'), PREG_BAD_UTF8_OFFSET_ERROR => __('Bad UTF-8 offset error!'), ); $error = preg_last_error(); if (!defined('IN_CACTI_INSTALL')) { set_error_handler('CactiErrorHandler'); } if (empty($error)) { return $php_error; } else { return $errors[$error]; } } /* load_current_session_value - finds the correct value of a variable that is being cached as a session variable on an HTML form @arg $request_var_name - the array index name for the request variable @arg $session_var_name - the array index name for the session variable @arg $default_value - the default value to use if values cannot be obtained using the session or request array */ function load_current_session_value($request_var_name, $session_var_name, $default_value) { if (isset_request_var($request_var_name)) { $_SESSION[$session_var_name] = get_request_var($request_var_name); } elseif (isset($_SESSION[$session_var_name])) { set_request_var($request_var_name, $_SESSION[$session_var_name]); } else { set_request_var($request_var_name, $default_value); } } /* get_colored_device_status - given a device's status, return the colored text in HTML format suitable for display @arg $disabled (bool) - true if the device is disabled, false is it is not @arg $status - the status type of the device as defined in global_constants.php @returns - a string containing html that represents the device's current status */ function get_colored_device_status($disabled, $status) { if ($disabled) { return "" . __('Disabled') . ""; } else { switch ($status) { case HOST_DOWN: return "" . __('Down') . ""; break; case HOST_RECOVERING: return "" . __('Recovering') . ""; break; case HOST_UP: return "" . __('Up') . ""; break; case HOST_ERROR: return "" . __('Error') . ""; break; default: return "" . __('Unknown') . ""; break; } } } /* get_current_graph_start - determine the correct graph start time selected using the timespan selector @returns - the number of seconds relative to now where the graph should begin */ function get_current_graph_start() { if (isset($_SESSION['sess_current_timespan_begin_now'])) { return $_SESSION['sess_current_timespan_begin_now']; } else { return '-' . DEFAULT_TIMESPAN; } } /* get_current_graph_end - determine the correct graph end time selected using the timespan selector @returns - the number of seconds relative to now where the graph should end */ function get_current_graph_end() { if (isset($_SESSION['sess_current_timespan_end_now'])) { return $_SESSION['sess_current_timespan_end_now']; } else { return '0'; } } /* display_tooltip - display the text passed to the function as a tooltip @arg $text - the text to display in the tooltip @returns - null */ function display_tooltip($text) { return '
    ' . $text . "
    \n"; } /* get_page_list - generates the html necessary to present the user with a list of pages limited in length and number of rows per page @arg $current_page - the current page number @arg $pages_per_screen - the maximum number of pages allowed on a single screen. odd numbered values for this argument are prefered for equality reasons @arg $current_page - the current page number @arg $total_rows - the total number of available rows @arg $url - the url string to prepend to each page click @returns - a string containing html that represents the a page list */ function get_page_list($current_page, $pages_per_screen, $rows_per_page, $total_rows, $url, $page_var = 'page', $return_to = '') { $url_page_select = "
      "; if (strpos($url, '?') !== false) { $url . '&'; } else { $url . '?'; } $total_pages = ceil($total_rows / $rows_per_page); if ($rows_per_page <= 0) { $total_pages = 0; } else { $total_pages = ceil($total_rows / $rows_per_page); } $start_page = max(1, ($current_page - floor(($pages_per_screen - 1) / 2))); $end_page = min($total_pages, ($current_page + floor(($pages_per_screen - 1) / 2))); /* adjust if we are close to the beginning of the page list */ if ($current_page > ceil($pages_per_screen/2)) { $url_page_select .= "
    • 1
    • "; $url_page_select .= '
    • ...
    • '; } if ($current_page <= ceil(($pages_per_screen) / 2)) { $end_page += ($pages_per_screen - $end_page); } /* adjust if we are close to the end of the page list */ if (($total_pages - $current_page) < ceil(($pages_per_screen) / 2)) { $start_page -= (($pages_per_screen - ($end_page - $start_page)) - 1); } /* stay within limits */ $start_page = max(1, $start_page); $end_page = min($total_pages, $end_page); for ($page_number=0; (($page_number+$start_page) <= $end_page); $page_number++) { $page = $page_number + $start_page; if ($page_number < $pages_per_screen) { if ($current_page == $page) { $url_page_select .= "
    • $page
    • "; } else { $url_page_select .= "
    • $page
    • "; } } } if (($total_pages - $current_page) >= ceil(($pages_per_screen) / 2)) { $url_page_select .= '
    • ...
    • '; $url_page_select .= "
    • $total_pages
    • "; } $url_page_select .= '
    '; if ($return_to != '') { $url_page_select .= ""; } else { $url_page_select .= ""; } return $url_page_select; } cacti-1.1.38/lib/html_tree.php0000664000175000017500000011614713264740213015531 0ustar tromantroman\n"; print "\n"; } if (sizeof($branches)) { foreach ($branches as $leaf) { if ($leaf['parent'] == 0) { $tier = 1; } $indent = str_repeat('-', $tier); if ($selected_tree_item_id == $leaf['id']) { $html_selected = ' selected'; } else { $html_selected = ''; } print "\n"; grow_dropdown_tree($tree_id, $leaf['id'], $form_name, $selected_tree_item_id, $tier); } } if ($parent == 0) { print "\n"; } } function grow_dhtml_trees() { global $config; include_once($config['library_path'] . '/data_query.php'); html_validate_tree_vars(); $default_tree_id = read_user_setting('default_tree_id'); if (empty($default_tree_id)) { if (read_config_option('auth_method') != 0) { $user = db_fetch_row_prepared('SELECT policy_trees FROM user_auth WHERE id = ?', array($_SESSION['sess_user_id'])); if ($user['policy_trees'] == 1) { $default_tree_id = db_fetch_cell_prepared('SELECT graph_tree.id FROM graph_tree LEFT JOIN user_auth_perms ON user_auth_perms.item_id = graph_tree.id AND user_auth_perms.type = 2 AND user_auth_perms.user_id = ? WHERE user_auth_perms.item_id IS NULL AND graph_tree.enabled = "on" ORDER BY graph_tree.id LIMIT 1', array($_SESSION['sess_user_id'])); } else { $default_tree_id = db_fetch_cell('SELECT graph_tree.id FROM graph_tree INNER JOIN user_auth_perms ON user_auth_perms.item_id = graph_tree.id AND user_auth_perms.type = 2 AND user_auth_perms.user_id = ? WHERE graph_tree.enabled = "on" ORDER BY graph_tree.id LIMIT 1', array($_SESSION['sess_user_id'])); } } } else { $default_tree_id = db_fetch_cell('SELECT id FROM graph_tree ORDER BY sequence LIMIT 1'); } print "
    " . __('Search') . "
    \n"; $dhtml_tree = create_dhtml_tree(); if (sizeof($dhtml_tree)) { print "
    \n"; } ?> 0) { $rnodes[] = 'tbranch-' . $linknode['parent']; $linknode = db_fetch_row_prepared('SELECT * FROM graph_tree_items WHERE id = ?', array($linknode['parent'])); } else { break; } } $rnodes = array_reverse($rnodes); $nodes = array_merge($nodes, $rnodes); } } elseif (strpos(get_request_var('node'), 'tree_anchor') !== false) { $parts = explode('-', get_request_var('node')); $nodes[] = 'tree_anchor-' . $parts[1] . '_anchor'; } return $nodes; } else { return array(); } } function draw_dhtml_tree_level($tree_id, $parent = 0, $editing = false) { $dhtml_tree = array(); $heirarchy = get_allowed_tree_level($tree_id, $parent, $editing); if (sizeof($heirarchy)) { $dhtml_tree[] = "\t\t\t
      \n"; foreach ($heirarchy as $leaf) { if ($leaf['host_id'] > 0) { //It's a host $dhtml_tree[] = "\t\t\t\t
    • " . html_escape($leaf['hostname']) . "
    • \n"; } elseif ($leaf['local_graph_id'] > 0) { $dhtml_tree[] = "\t\t\t\t
    • " . html_escape(get_graph_title($leaf['local_graph_id'])) . "
    • \n"; } else { //It's not a host $dhtml_tree[] = "\t\t\t\t
    • " . html_escape($leaf['title']) . "
    • \n"; } } $dhtml_tree[] = "\t\t\t
    \n"; } return $dhtml_tree; } function draw_dhtml_tree_level_graphing($tree_id, $parent = 0) { global $config; include_once($config['base_path'] . '/lib/data_query.php'); $heirarchy = get_allowed_tree_content($tree_id, $parent); $dhtml_tree = array(); if (sizeof($heirarchy)) { if ($tree_id > 0) { $dhtml_tree[] = "\t\t\t
      \n"; foreach ($heirarchy as $leaf) { if ($leaf['host_id'] > 0) { //It's a host $dhtml_tree[] = "\t\t\t\t
    • ' . html_escape($leaf['hostname']) . "\n"; if (read_user_setting('expand_hosts') == 'on') { $dhtml_tree[] = "\t\t\t\t\t
        \n"; if ($leaf['host_grouping_type'] == HOST_GROUPING_GRAPH_TEMPLATE) { $graph_templates = get_allowed_graph_templates('gl.host_id=' . $leaf['host_id']); if (sizeof($graph_templates) > 0) { foreach ($graph_templates as $graph_template) { $dhtml_tree[] = "\t\t\t\t\t\t
      • " . html_escape($graph_template['name']) . "
      • \n"; } } } elseif ($leaf['host_grouping_type'] == HOST_GROUPING_DATA_QUERY_INDEX) { $data_queries = db_fetch_assoc_prepared('SELECT sq.id, sq.name FROM graph_local AS gl INNER JOIN snmp_query AS sq ON gl.snmp_query_id=sq.id AND gl.host_id = ? GROUP BY sq.id ORDER BY sq.name', array($leaf['host_id'])); array_push($data_queries, array( 'id' => '0', 'name' => 'Non Query Based' )); if (sizeof($data_queries)) { $ntg = get_allowed_graphs('gl.host_id=' . $leaf['host_id'] . ' AND gl.snmp_query_id=0'); foreach ($data_queries as $data_query) { if ($data_query['id'] == 0) { $non_template_graphs = $ntg; $sort_field_data = array(); } else { $non_template_graphs = array(); /* fetch a list of field names that are sorted by the preferred sort field */ $sort_field_data = get_formatted_data_query_indexes($leaf['host_id'], $data_query['id']); } if (($data_query['id'] == 0 && sizeof($non_template_graphs)) || ($data_query['id'] > 0 && sizeof($sort_field_data) > 0) ) { if ($data_query['name'] != 'Non Query Based') { $dhtml_tree[] = "\t\t\t\t\t\t
      • ' . html_escape($data_query['name']) . "\n"; } else { $dhtml_tree[] = "\t\t\t\t\t\t
      • ' . html_escape($data_query['name']) . "\n"; } if ($data_query['id'] > 0) { $dhtml_tree[] = "\t\t\t\t\t\t\t\n"; $dhtml_tree[] = "\t\t\t\t\t\t
      • \n"; } } } } $dhtml_tree[] = "\t\t\t\t\t\t\n"; } $dhtml_tree[] = "\t\t\t\t\t
      \n"; } $dhtml_tree[] = "\t\t\t\t
    • \n"; } else { //It's not a host $children = db_fetch_cell_prepared('SELECT COUNT(*) FROM graph_tree_items WHERE parent = ? AND local_graph_id=0', array($leaf['id'])); $dhtml_tree[] = "\t\t\t\t
    • 0 ? "class='jstree-closed'":"") . ">' . html_escape($leaf['title']) . "
    • \n"; } } $dhtml_tree[] = "\t\t\t
    \n"; } else { $dhtml_tree[] = "\n"; } } return $dhtml_tree; } function create_dhtml_tree() { $dhtml_tree = array(); $tree_list = get_allowed_trees(); if (sizeof($tree_list)) { foreach ($tree_list as $tree) { $dhtml_tree['tree:'.$tree['id']] = true; } } return $dhtml_tree; } function html_validate_tree_vars() { /* ================= input validation and session storage ================= */ $filters = array( 'graphs' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_user_setting('treeview_graphs_per_page') ), 'graph_template_id' => array( 'filter' => FILTER_VALIDATE_IS_NUMERIC_LIST, 'pageset' => true, 'default' => read_user_setting('graph_template_id', '0') ), 'columns' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => read_user_setting('num_columns_tree') ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'predefined_timeshift' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => read_user_setting('default_timeshift') ), 'predefined_timespan' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => read_user_setting('default_timespan') ), 'node' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '/([_\-a-z:0-9#]+)/')), 'pageset' => true, 'default' => '' ), 'hgd' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'rfilter' => array( 'filter' => FILTER_VALIDATE_IS_REGEX, 'pageset' => true, 'default' => '', ), 'thumbnails' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => read_user_setting('thumbnail_section_tree_2') ) ); validate_store_request_vars($filters, 'sess_grt'); /* ================= input validation ================= */ } function grow_right_pane_tree($tree_id, $leaf_id, $host_group_data) { global $current_user, $config, $graphs_per_page, $graph_timeshifts; include($config['include_path'] . '/global_arrays.php'); include_once($config['library_path'] . '/data_query.php'); include_once($config['library_path'] . '/html_utility.php'); if (empty($tree_id)) { return; } if (empty($leaf_id)) { $leaf_id = 0; } $sql_where = ''; $sql_join = ''; $title = ''; $title_delimeter = ''; $leaf = db_fetch_row_prepared('SELECT title, host_id, host_grouping_type FROM graph_tree_items WHERE id = ?', array($leaf_id)); $leaf_type = api_tree_get_item_type($leaf_id); /* get information for the headers */ if (!empty($tree_id)) { $tree_name = db_fetch_cell_prepared('SELECT name FROM graph_tree WHERE id = ?', array($tree_id)); } if (!empty($leaf_id)) { $leaf_name = $leaf['title']; } if (!empty($leaf_id)) { $host_name = db_fetch_cell_prepared('SELECT host.description FROM (graph_tree_items,host) WHERE graph_tree_items.host_id=host.id AND graph_tree_items.id = ?', array($leaf_id)); } $host_group_data_array = explode(':', $host_group_data); if ($host_group_data_array[0] == 'gt') { $host_group_data_name = '' . __('Graph Template:'). ' ' . db_fetch_cell_prepared('SELECT name FROM graph_templates WHERE id = ?', array($host_group_data_array[1])); $graph_template_id = $host_group_data_array[1]; } elseif ($host_group_data_array[0] == 'dq') { $host_group_data_name = '' . __('Graph Template:') . ' ' . (empty($host_group_data_array[1]) ? __('Non Query Based') : db_fetch_cell_prepared('SELECT name FROM snmp_query WHERE id = ?', array($host_group_data_array[1]))); $data_query_id = $host_group_data_array[1]; } elseif ($host_group_data_array[0] == 'dqi') { $host_group_data_name = '' . __('Graph Template:') . ' ' . (empty($host_group_data_array[1]) ? __('Non Query Based') : db_fetch_cell_prepared('SELECT name FROM snmp_query WHERE id = ?', array($host_group_data_array[1]))) . '-> ' . (empty($host_group_data_array[2]) ? 'Template Based' : get_formatted_data_query_index($leaf['host_id'], $host_group_data_array[1], $host_group_data_array[2])); $data_query_id = $host_group_data_array[1]; $data_query_index = $host_group_data_array[2]; } if (!empty($tree_name)) { $title .= $title_delimeter . '' . __('Tree:') . ' ' . html_escape($tree_name); $title_delimeter = '-> '; } if (!empty($leaf_name)) { $title .= $title_delimeter . '' . __('Leaf:') . ' ' . html_escape($leaf_name); $title_delimeter = '-> '; } if (!empty($host_name)) { $title .= $title_delimeter . '' . __('Device:') . ' ' . html_escape($host_name); $title_delimeter = '-> '; } if (!empty($host_group_data_name)) { $title .= $title_delimeter . " $host_group_data_name"; $title_delimeter = '-> '; } html_start_box(__('Graph Filters') . (get_request_var('rfilter') != '' ? " [ " . __('Filter') . " '" . html_escape(get_request_var('rfilter')) . "' " . __('Applied') . " ]" : ''), '100%', "", '3', 'center', ''); ?>
    '> ' title='' onClick='applyGraphFilter()'> ' title='' onClick='clearGraphFilter()'> ' title='' onClick='saveGraphFilter("tree")'>
    >
    '> '> '> '> '> '> ' title='' onClick='refreshGraphTimespanFilter()'> ' title='' onClick='clearGraphTimespanFilter()'>
    $tree_id, 'leafid' => $leaf_id, 'mode' => 'tree', 'timespan' => $_SESSION['sess_current_timespan'], 'starttime' => get_current_graph_start(), 'endtime' => get_current_graph_end() ) ); $graph_list = array(); if (($leaf_type == 'header') || (empty($leaf_id))) { $sql_where = ''; if (get_request_var('rfilter') != '') { $sql_where .= " (gtg.title_cache RLIKE '" . get_request_var('rfilter') . "' OR gtg.title RLIKE '" . get_request_var('rfilter') . "')"; } if (get_request_var('graph_template_id') != '' && get_request_var('graph_template_id') != '0') { $sql_where .= ($sql_where != '' ? ' AND ':'') . ' (gl.graph_template_id IN (' . get_request_var('graph_template_id') . '))'; } $graph_list = get_allowed_tree_header_graphs($tree_id, $leaf_id, $sql_where); } elseif ($leaf_type == 'host') { /* graph template grouping */ if ($leaf['host_grouping_type'] == HOST_GROUPING_GRAPH_TEMPLATE) { $sql_where = 'gl.host_id=' . $leaf['host_id'] . (empty($graph_template_id) ? '' : ' AND gl.graph_template_id=' . $graph_template_id); if (get_request_var('graph_template_id') != '' && get_request_var('graph_template_id') != '0') { $sql_where .= ($sql_where != '' ? ' AND ':'') . ' (gl.graph_template_id IN (' . get_request_var('graph_template_id') . '))'; } $graph_templates = get_allowed_graph_templates($sql_where); /* for graphs without a template */ array_push( $graph_templates, array( 'id' => '0', 'name' => __('(No Graph Template)') ) ); if (sizeof($graph_templates)) { foreach ($graph_templates as $graph_template) { $sql_where = ''; if (get_request_var('rfilter') != '') { $sql_where = " (gtg.title_cache RLIKE '" . get_request_var('rfilter') . "')"; } $sql_where .= ($sql_where != '' ? 'AND':'') . ' gl.graph_template_id=' . $graph_template['id'] . ' AND gl.host_id=' . $leaf['host_id']; $graphs = get_allowed_graphs($sql_where); /* let's sort the graphs naturally */ usort($graphs, 'naturally_sort_graphs'); if (sizeof($graphs)) { foreach ($graphs as $graph) { $graph['graph_template_name'] = $graph_template['name']; array_push($graph_list, $graph); } } } } /* data query index grouping */ } elseif ($leaf['host_grouping_type'] == HOST_GROUPING_DATA_QUERY_INDEX) { $data_queries = db_fetch_assoc("SELECT sq.id, sq.name FROM graph_local AS gl INNER JOIN snmp_query AS sq ON gl.snmp_query_id=sq.id WHERE gl.host_id=" . $leaf['host_id'] . " " . (!isset($data_query_id) ? '' : "AND sq.id=$data_query_id") . " GROUP BY sq.id ORDER BY sq.name"); /* for graphs without a data query */ if (empty($data_query_id)) { array_push($data_queries, array( 'id' => '0', 'name' => 'Non Query Based' ) ); } if (sizeof($data_queries)) { foreach ($data_queries as $data_query) { $sql_where = ''; /* fetch a list of field names that are sorted by the preferred sort field */ $sort_field_data = get_formatted_data_query_indexes($leaf['host_id'], $data_query['id']); if (get_request_var('rfilter') != '') { $sql_where = " (gtg.title_cache RLIKE '" . get_request_var('rfilter') . "')"; } /* grab a list of all graphs for this host/data query combination */ $sql_where .= ($sql_where != '' ? ' AND ':'') . ' gl.snmp_query_id=' . $data_query['id'] . ' AND gl.host_id=' . $leaf['host_id'] . ' ' . (empty($data_query_index) ? '' : " AND gl.snmp_index='$data_query_index'"); $graphs = get_allowed_graphs($sql_where); /* re-key the results on data query index */ $snmp_index_to_graph = array(); if (sizeof($graphs) > 0) { /* let's sort the graphs naturally */ usort($graphs, 'naturally_sort_graphs'); foreach ($graphs as $graph) { $snmp_index_to_graph[$graph['snmp_index']][$graph['local_graph_id']] = $graph['title_cache']; $graphs_height[$graph['local_graph_id']] = $graph['height']; $graphs_width[$graph['local_graph_id']] = $graph['width']; } } /* using the sorted data as they key; grab each snmp index from the master list */ foreach ($sort_field_data as $snmp_index => $sort_field_value) { /* render each graph for the current data query index */ if (isset($snmp_index_to_graph[$snmp_index])) { foreach ($snmp_index_to_graph[$snmp_index] as $local_graph_id => $graph_title) { /* reformat the array so it's compatable with the html_graph* area functions */ array_push($graph_list, array('data_query_name' => $data_query['name'], 'sort_field_value' => $sort_field_value, 'local_graph_id' => $local_graph_id, 'title_cache' => $graph_title, 'height' => $graphs_height[$graph['local_graph_id']], 'width' => $graphs_width[$graph['local_graph_id']])); } } } } } } } $total_rows = sizeof($graph_list); /* generate page list */ $nav = html_nav_bar("graph_view.php?action=tree_content&tree_id=$tree_id&leaf_id=$leaf_id&node=" . get_request_var('node') . '&hgd=' . $host_group_data, MAX_DISPLAY_PAGES, get_request_var('page'), get_request_var('graphs'), $total_rows, get_request_var('columns'), __('Graphs'), 'page', 'main'); print $nav; html_start_box('', '100%', '', '3', 'center', ''); /* start graph display */ print "$title"; $i = get_request_var('graphs') * (get_request_var('page') - 1); $last_graph = $i + get_request_var('graphs'); $new_graph_list = array(); while ($i < $total_rows && $i < $last_graph) { $new_graph_list[] = $graph_list[$i]; $i++; } if (get_request_var('thumbnails') == 'true' || get_request_var('thumbnails') == 'on') { html_graph_thumbnail_area($new_graph_list, '', 'view_type=tree&graph_start=' . get_current_graph_start() . '&graph_end=' . get_current_graph_end(), '', get_request_var('columns')); } else { html_graph_area($new_graph_list, '', 'view_type=tree&graph_start=' . get_current_graph_start() . '&graph_end=' . get_current_graph_end(), '', get_request_var('columns')); } if (!empty($leaf_id)) { api_plugin_hook_function('tree_after',$host_name.','.get_request_var('leaf_id')); } api_plugin_hook_function('tree_view_page_end'); html_end_box(); if ($total_rows) { print $nav; } } cacti-1.1.38/lib/html_reports.php0000664000175000017500000017145613264740213016274 0ustar tromantroman array( 'friendly_name' => __('General Settings'), 'method' => 'spacer', 'collapsible' => 'true' ), 'name' => array( 'friendly_name' => __('Report Name'), 'method' => 'textbox', 'default' => __('New Report'), 'description' => __('Give this Report a descriptive Name'), 'max_length' => 99, 'value' => '|arg1:name|' ), 'enabled' => array( 'friendly_name' => __('Enable Report'), 'method' => 'checkbox', 'default' => '', 'description' => __('Check this box to enable this Report.'), 'value' => '|arg1:enabled|', 'form_id' => false ), 'formathead' => array( 'friendly_name' => __('Output Formatting'), 'method' => 'spacer', 'collapsible' => 'true' ), 'cformat' => array( 'friendly_name' => __('Use Custom Format HTML'), 'method' => 'checkbox', 'default' => '', 'description' => __('Check this box if you want to use custom html and CSS for the report.'), 'value' => '|arg1:cformat|', 'form_id' => false ), 'format_file' => array( 'friendly_name' => __('Format File to Use'), 'method' => 'drop_array', 'default' => 'default.format', 'description' => __('Choose the custom html wrapper and CSS file to use. This file contains both html and CSS to wrap around your report. If it contains more than simply CSS, you need to place a special tag inside of the file. This format tag will be replaced by the report content. These files are located in the \'formats\' directory.'), 'value' => '|arg1:format_file|', 'array' => $formats ), 'font_size' => array( 'friendly_name' => __('Default Text Font Size'), 'description' => __('Defines the default font size for all text in the report including the Report Title.'), 'default' => 16, 'method' => 'drop_array', 'array' => array(7 => 7, 8 => 8, 10 => 10, 12 => 12, 14 => 14, 16 => 16, 18 => 18, 20 => 20, 24 => 24, 28 => 28, 32 => 32), 'value' => '|arg1:font_size|' ), 'alignment' => array( 'friendly_name' => __('Default Object Alignment'), 'description' => __('Defines the default Alignment for Text and Graphs.'), 'default' => 0, 'method' => 'drop_array', 'array' => $alignment, 'value' => '|arg1:alignment|' ), 'graph_linked' => array( 'friendly_name' => __('Graph Linked'), 'method' => 'checkbox', 'default' => '', 'description' => __('Should the Graphs be linked back to the Cacti site?'), 'value' => '|arg1:graph_linked|' ), 'graphhead' => array( 'friendly_name' => __('Graph Settings'), 'method' => 'spacer', 'collapsible' => 'true' ), 'graph_columns' => array( 'friendly_name' => __('Graph Columns'), 'method' => 'drop_array', 'default' => '1', 'array' => array(1 => 1, 2, 3, 4, 5), 'description' => __('The number of Graph columns.'), 'value' => '|arg1:graph_columns|' ), 'graph_width' => array( 'friendly_name' => __('Graph Width'), 'method' => 'drop_array', 'default' => '300', 'array' => array(100 => 100, 150 => 150, 200 => 200, 250 => 250, 300 => 300, 350 => 350, 400 => 400, 500 => 500, 600 => 600, 700 => 700, 800 => 800, 900 => 900, 1000 => 1000), 'description' => __('The Graph width in pixels.'), 'value' => '|arg1:graph_width|' ), 'graph_height' => array( 'friendly_name' => __('Graph Height'), 'method' => 'drop_array', 'default' => '125', 'array' => array(75 => 75, 100 => 100, 125 => 125, 150 => 150, 175 => 175, 200 => 200, 250 => 250, 300 => 300), 'description' => __('The Graph height in pixels.'), 'value' => '|arg1:graph_height|' ), 'thumbnails' => array( 'friendly_name' => __('Thumbnails'), 'method' => 'checkbox', 'default' => '', 'description' => __('Should the Graphs be rendered as Thumbnails?'), 'value' => '|arg1:thumbnails|' ), 'freqhead' => array( 'friendly_name' => __('Email Frequency'), 'method' => 'spacer', 'collapsible' => 'true' ), 'mailtime' => array( 'friendly_name' => __('Next Timestamp for Sending Mail Report'), 'description' => __('Start time for [first|next] mail to take place. All future mailing times will be based upon this start time. A good example would be 2:00am. The time must be in the future. If a fractional time is used, say 2:00am, it is assumed to be in the future.'), 'default' => 0, 'method' => 'textbox', 'size' => 20, 'max_length' => 20, 'value' => '|arg1:mailtime|' ), 'intrvl' => array( 'friendly_name' => __('Report Interval'), 'description' => __('Defines a Report Frequency relative to the given Mailtime above.') . '
    ' . __('e.g. \'Week(s)\' represents a weekly Reporting Interval.'), 'default' => REPORTS_SCHED_INTVL_DAY, 'method' => 'drop_array', 'array' => $reports_interval, 'value' => '|arg1:intrvl|' ), 'count' => array( 'friendly_name' => __('Interval Frequency'), 'description' => __('Based upon the Timespan of the Report Interval above, defines the Frequency within that Interval.') . '
    ' . __('e.g. If the Report Interval is \'Month(s)\', then \'2\' indicates Every \'2 Month(s) from the next Mailtime.\' Lastly, if using the Month(s) Report Intervals, the \'Day of Week\' and the \'Day of Month\' are both calculated based upon the Mailtime you specify above.'), 'default' => REPORTS_SCHED_COUNT, 'method' => 'textbox', 'size' => 10, 'max_length' => 10, 'value' => '|arg1:count|' ), 'emailhead' => array( 'friendly_name' => __('Email Sender/Receiver Details'), 'method' => 'spacer', 'collapsible' => 'true' ), 'subject' => array( 'friendly_name' => __('Subject'), 'method' => 'textbox', 'default' => __('Cacti Report'), 'description' => __('This value will be used as the default Email subject. The report name will be used if left blank.'), 'max_length' => 255, 'value' => '|arg1:subject|' ), 'from_name' => array( 'friendly_name' => __('From Name'), 'method' => 'textbox', 'default' => read_config_option('settings_from_name'), 'description' => __('This Name will be used as the default E-mail Sender'), 'max_length' => 255, 'value' => '|arg1:from_name|' ), 'from_email' => array( 'friendly_name' => __('From Email Address'), 'method' => 'textbox', 'default' => read_config_option('settings_from_email'), 'description' => __('This Address will be used as the E-mail Senders address'), 'max_length' => 255, 'value' => '|arg1:from_email|' ), 'email' => array( 'friendly_name' => __('To Email Address(es)'), 'method' => 'textarea', 'textarea_rows' => '5', 'textarea_cols' => '60', 'class' => 'textAreaNotes', 'default' => '', 'description' => __('Please separate multiple addresses by comma (,)'), 'max_length' => 255, 'value' => '|arg1:email|' ), 'bcc' => array( 'friendly_name' => __('BCC Address(es)'), 'method' => 'textarea', 'textarea_rows' => '5', 'textarea_cols' => '60', 'class' => 'textAreaNotes', 'default' => '', 'description' => __('Blind carbon copy. Please separate multiple addresses by comma (,)'), 'max_length' => 255, 'value' => '|arg1:bcc|' ), 'attachment_type' => array( 'friendly_name' => __('Image attach type'), 'method' => 'drop_array', 'default' => read_config_option('reports_default_image_format'), 'description' => __('Select one of the given Types for the Image Attachments'), 'value' => '|arg1:attachment_type|', 'array' => $attach_types ), ); $report_item = array(); if (isset_request_var('item_id')) { $report_item = db_fetch_row_prepared('SELECT * FROM reports_items WHERE id = ?', array(get_filter_request_var('item_id'))); } /* get the hosts sql first */ $hosts = null; if (isset_request_var('host_template_id')) { if (get_filter_request_var('host_template_id') > 0) { $hosts = array_rekey( get_allowed_devices('h.host_template_id =' . get_request_var('host_template_id')), 'id', 'description' ); } } elseif (sizeof($report_item) && $report_item['host_template_id'] > 0) { $hosts = array_rekey( get_allowed_devices('h.host_template_id =' . $report_item['host_template_id']), 'id', 'description' ); } if ($hosts == null) { $hosts = array_rekey(get_allowed_devices(),'id','description'); } $graph_templates = array(); if (isset_request_var('host_id') && get_filter_request_var('host_id') > 0) { $graph_templates = array_rekey( get_allowed_graph_templates('h.id = ' . get_request_var('host_id')), 'id', 'name' ); } elseif (sizeof($report_item) && $report_item['host_id'] > 0) { $graph_templates = array_rekey( get_allowed_graph_templates('h.id = ' . $report_item['host_id']), 'id', 'name' ); } $sql_where = ''; $graphs = array(); if (isset_request_var('host_template_id')) { if (get_filter_request_var('host_template_id') > 0) { $sql_where = 'h.host_template_id=' . get_request_var('host_template_id'); } } elseif (sizeof($report_item) && $report_item['host_template_id'] > 0) { $sql_where = 'h.host_template_id=' . $report_item['host_template_id']; } if (isset_request_var('host_id')) { if (get_filter_request_var('host_id') > 0) { $sql_where .= ($sql_where != '' ? ' AND ':'') . 'gl.host_id=' . get_request_var('host_id'); } } elseif (sizeof($report_item) && $report_item['host_id'] > 0) { $sql_where .= ($sql_where != '' ? ' AND ':'') . 'gl.host_id=' . $report_item['host_id']; } if (isset_request_var('graph_template_id')) { if (get_filter_request_var('graph_template_id') > 0) { $sql_where .= ($sql_where != '' ? ' AND ':'') . 'gl.graph_template_id=' . get_request_var('graph_template_id'); } } elseif (sizeof($report_item) && $report_item['graph_template_id'] > 0) { $sql_where .= ($sql_where != '' ? ' AND ':'') . 'gl.graph_template_id=' . $report_item['graph_template_id']; } if ($sql_where != '') { $graphs = array_rekey( get_allowed_graphs($sql_where), 'local_graph_id', 'title_cache' ); } else { $sql_where = 'gl.graph_template_id=0'; $graphs = array_rekey( get_allowed_graphs($sql_where), 'local_graph_id', 'title_cache' ); } $trees = array_rekey( get_allowed_trees(), 'id', 'name' ); $sql_where = ''; if (isset_request_var('tree_id')) { if (get_filter_request_var('tree_id') > 0) { $sql_where .= ($sql_where != '' ? ' AND ':'') . 'gt.id=' . get_request_var('tree_id'); } } elseif (sizeof($report_item) && $report_item['tree_id'] > 0) { $sql_where .= ($sql_where != '' ? ' AND ':'') . 'gt.id=' . $report_item['tree_id']; } $branches = array_rekey( get_allowed_branches($sql_where), 'id', 'name' ); $fields_reports_item_edit = array( 'item_type' => array( 'friendly_name' => __('Type'), 'method' => 'drop_array', 'default' => REPORTS_ITEM_GRAPH, 'description' => __('Item Type to be added.'), 'value' => '|arg1:item_type|', 'on_change' => 'toggle_item_type()', 'array' => $item_types ), 'tree_id' => array( 'friendly_name' => __('Graph Tree'), 'method' => 'drop_array', 'default' => REPORTS_TREE_NONE, 'none_value' => __('None'), 'description' => __('Select a Tree to use.'), 'value' => '|arg1:tree_id|', 'on_change' => 'applyChange(document.reports_item_edit)', 'array' => $trees ), 'branch_id' => array( 'friendly_name' => __('Graph Tree Branch'), 'method' => 'drop_array', 'default' => REPORTS_TREE_NONE, 'none_value' => __('All'), 'description' => __('Select a Tree Branch to use.'), 'value' => '|arg1:branch_id|', 'on_change' => 'applyChange(document.reports_item_edit)', 'array' => $branches /* 'sql' => "(SELECT id, CONCAT('" . __('Branch:') . " ', title) AS name FROM graph_tree_items WHERE graph_tree_id=|arg1:tree_id| AND host_id=0 AND local_graph_id=0 GROUP BY name ORDER BY position) UNION (SELECT graph_tree_items.id, CONCAT('" . __('Device:') . " ', description) AS name FROM graph_tree_items INNER JOIN host ON host.id=graph_tree_items.host_id WHERE graph_tree_id=|arg1:tree_id| AND host.id IN(" . implode(',', array_keys(array_rekey(get_allowed_devices(), 'id', 'description'))) . ") GROUP BY name) ORDER BY name" */ ), 'tree_cascade' => array( 'friendly_name' => __('Cascade to Branches'), 'method' => 'checkbox', 'default' => '', 'description' => __('Should all children branch Graphs be rendered?'), 'value' => '|arg1:tree_cascade|' ), 'graph_name_regexp' => array( 'friendly_name' => __('Graph Name Regular Expression'), 'method' => 'textbox', 'default' => '', 'description' => __('A Perl compatible regular expression (REGEXP) used to select graphs to include from the tree.'), 'max_length' => 255, 'size' => 80, 'value' => '|arg1:graph_name_regexp|' ), 'host_template_id' => array( 'friendly_name' => __('Device Template'), 'method' => 'drop_sql', 'default' => REPORTS_HOST_NONE, 'none_value' => __('None'), 'description' => __('Select a Device Template to use.'), 'value' => '|arg1:host_template_id|', 'on_change' => 'applyChange(document.reports_item_edit)', 'sql' => "SELECT DISTINCT ht.id, ht.name FROM host_template AS ht INNER JOIN host AS h ON h.host_template_id=ht.id ORDER BY name" ), 'host_id' => array( 'friendly_name' => __('Device'), 'method' => 'drop_array', 'default' => REPORTS_HOST_NONE, 'description' => __('Select a Device to specify a Graph'), 'value' => '|arg1:host_id|', 'none_value' => __('None'), 'on_change' => 'applyChange(document.reports_item_edit)', 'array' => $hosts ), 'graph_template_id' => array( 'friendly_name' => __('Graph Template'), 'method' => 'drop_array', 'default' => '0', 'description' => __('Select a Graph Template for the host'), 'none_value' => __('None'), 'on_change' => 'applyChange(document.reports_item_edit)', 'value' => '|arg1:graph_template_id|', 'array' => $graph_templates ), 'local_graph_id' => array( 'friendly_name' => __('Graph Name'), 'method' => 'drop_array', 'default' => '0', 'description' => __('The Graph to use for this report item.'), 'none_value' => __('None'), 'on_change' => 'graphImage(this.value)', 'value' => '|arg1:local_graph_id|', 'array' => $graphs ), 'timespan' => array( 'friendly_name' => __('Graph Timespan'), 'method' => 'drop_array', 'default' => GT_LAST_DAY, 'description' => __("Graph End Time is always set to Cacti's schedule.") . '
    ' . __('Graph Start Time equals Graph End Time minus given timespan'), 'array' => $graph_timespans, 'value' => '|arg1:timespan|' ), 'align' => array( 'friendly_name' => __('Alignment'), 'method' => 'drop_array', 'default' => REPORTS_ALIGN_LEFT, 'description' => __('Alignment of the Item'), 'value' => '|arg1:align|', 'array' => $alignment ), 'item_text' => array( 'friendly_name' => __('Fixed Text'), 'method' => 'textbox', 'default' => '', 'description' => __('Enter descriptive Text'), 'max_length' => 255, 'value' => '|arg1:item_text|' ), 'font_size' => array( 'friendly_name' => __('Font Size'), 'method' => 'drop_array', 'default' => REPORTS_FONT_SIZE, 'array' => array(7 => 7, 8 => 8, 10 => 10, 12 => 12, 14 => 14, 16 => 16, 18 => 18, 20 => 20, 24 => 24, 28 => 28, 32 => 32), 'description' => __('Font Size of the Item'), 'value' => '|arg1:font_size|' ), 'sequence' => array( 'method' => 'view', 'friendly_name' => __('Sequence'), 'description' => __('Sequence of Item.'), 'value' => '|arg1:sequence|' ), ); function reports_form_save() { global $config, $messages; # when using cacti_log: include_once($config['library_path'] . '/functions.php'); if (isset_request_var('save_component_report')) { /* ================= input validation ================= */ get_filter_request_var('id'); get_filter_request_var('font_size'); get_filter_request_var('graph_width'); get_filter_request_var('graph_height'); get_filter_request_var('graph_columns'); /* ==================================================== */ $now = time(); if (isempty_request_var('id')) { $save['user_id'] = $_SESSION['sess_user_id']; } else { $save['user_id'] = db_fetch_cell_prepared('SELECT user_id FROM reports WHERE id = ?', array(get_nfilter_request_var('id'))); } $save['id'] = get_nfilter_request_var('id'); $save['name'] = form_input_validate(get_nfilter_request_var('name'), 'name', '', false, 3); $save['email'] = form_input_validate(get_nfilter_request_var('email'), 'email', '', false, 3); $save['enabled'] = (isset_request_var('enabled') ? 'on' : ''); $save['cformat'] = (isset_request_var('cformat') ? 'on' : ''); $save['format_file'] = get_nfilter_request_var('format_file'); $save['font_size'] = form_input_validate(get_nfilter_request_var('font_size'), 'font_size', '^[0-9]+$', false, 3); $save['alignment'] = form_input_validate(get_nfilter_request_var('alignment'), 'alignment', '^[0-9]+$', false, 3); $save['graph_linked'] = (isset_request_var('graph_linked') ? 'on' : ''); $save['graph_columns'] = form_input_validate(get_nfilter_request_var('graph_columns'), 'graph_columns', '^[0-9]+$', false, 3); $save['graph_width'] = form_input_validate(get_nfilter_request_var('graph_width'), 'graph_width', '^[0-9]+$', false, 3); $save['graph_height'] = form_input_validate(get_nfilter_request_var('graph_height'), 'graph_height', '^[0-9]+$', false, 3); $save['thumbnails'] = form_input_validate((isset_request_var('thumbnails') ? get_nfilter_request_var('thumbnails'):''), 'thumbnails', '', true, 3); $save['intrvl'] = form_input_validate(get_nfilter_request_var('intrvl'), 'intrvl', '^[-+]?[0-9]+$', false, 3); $save['count'] = form_input_validate(get_nfilter_request_var('count'), 'count', '^[0-9]+$', false, 3); $save['offset'] = '0'; /* adjust mailtime according to rules */ $timestamp = strtotime(get_nfilter_request_var('mailtime')); if ($timestamp === false) { $timestamp = $now; } elseif (($timestamp + read_config_option('poller_interval')) < $now) { $timestamp += 86400; /* if the time is far into the past, make it the correct time, but tomorrow */ if (($timestamp + read_config_option('poller_interval')) < $now) { $timestamp = strtotime('12:00am') + 86400 + date('H', $timestamp) * 3600 + date('i', $timestamp) * 60 + date('s', $timestamp); } $_SESSION['reports_message'] = __('Date/Time moved to the same time Tomorrow'); raise_message('reports_message'); } $save['mailtime'] = form_input_validate($timestamp, 'mailtime', '^[0-9]+$', false, 3); if (get_nfilter_request_var('subject') != '') { $save['subject'] = get_nfilter_request_var('subject'); } else { $save['subject'] = $save['name']; } $save['from_name'] = get_nfilter_request_var('from_name'); $save['from_email'] = get_nfilter_request_var('from_email'); $save['bcc'] = get_nfilter_request_var('bcc'); $atype = get_nfilter_request_var('attachment_type'); if (($atype != REPORTS_TYPE_INLINE_PNG) && ($atype != REPORTS_TYPE_INLINE_JPG) && ($atype != REPORTS_TYPE_INLINE_GIF) && ($atype != REPORTS_TYPE_ATTACH_PNG) && ($atype != REPORTS_TYPE_ATTACH_JPG) && ($atype != REPORTS_TYPE_ATTACH_GIF) && ($atype != REPORTS_TYPE_INLINE_PNG_LN) && ($atype != REPORTS_TYPE_INLINE_JPG_LN) && ($atype != REPORTS_TYPE_INLINE_GIF_LN)) { $atype = REPORTS_TYPE_INLINE_PNG; } $save['attachment_type'] = form_input_validate($atype, 'attachment_type', '^[0-9]+$', false, 3); $save['lastsent'] = 0; if (!is_error_message()) { $id = sql_save($save, 'reports'); if ($id) { raise_message('reports_save'); } else { raise_message('reports_save_failed'); } } header('Location: ' . get_reports_page() . '?action=edit&header=false&id=' . (empty($id) ? get_nfilter_request_var('id') : $id)); exit; } elseif (isset_request_var('save_component_report_item')) { /* ================= input validation ================= */ get_filter_request_var('report_id'); get_filter_request_var('id'); /* ==================================================== */ $save = array(); $save['id'] = get_nfilter_request_var('id'); $save['report_id'] = form_input_validate(get_nfilter_request_var('report_id'), 'report_id', '^[0-9]+$', false, 3); $save['sequence'] = form_input_validate(get_nfilter_request_var('sequence'), 'sequence', '^[0-9]+$', false, 3); $save['item_type'] = form_input_validate(get_nfilter_request_var('item_type'), 'item_type', '^[-0-9]+$', false, 3); $save['tree_id'] = (isset_request_var('tree_id') ? form_input_validate(get_nfilter_request_var('tree_id'), 'tree_id', '^[-0-9]+$', true, 3) : 0); $save['branch_id'] = (isset_request_var('branch_id') ? form_input_validate(get_nfilter_request_var('branch_id'), 'branch_id', '^[-0-9]+$', true, 3) : 0); $save['tree_cascade'] = (isset_request_var('tree_cascade') ? 'on':''); $save['graph_name_regexp'] = get_nfilter_request_var('graph_name_regexp'); $save['host_template_id'] = (isset_request_var('host_template_id') ? form_input_validate(get_nfilter_request_var('host_template_id'), 'host_template_id', '^[-0-9]+$', true, 3) : 0); $save['host_id'] = (isset_request_var('host_id') ? form_input_validate(get_nfilter_request_var('host_id'), 'host_id', '^[-0-9]+$', true, 3) : 0); $save['graph_template_id'] = (isset_request_var('graph_template_id') ? form_input_validate(get_nfilter_request_var('graph_template_id'), 'graph_template_id', '^[-0-9]+$', true, 3) : 0); $save['local_graph_id'] = (isset_request_var('local_graph_id') ? form_input_validate(get_nfilter_request_var('local_graph_id'), 'local_graph_id', '^[0-9]+$', true, 3) : 0); $save['timespan'] = (isset_request_var('timespan') ? form_input_validate(get_nfilter_request_var('timespan'), 'timespan', '^[0-9]+$', true, 3) : 0); $save['item_text'] = (isset_request_var('item_text') ? form_input_validate(get_nfilter_request_var('item_text'), 'item_text', '', true, 3) : ''); $save['align'] = (isset_request_var('align') ? form_input_validate(get_nfilter_request_var('align'), 'align', '^[0-9]+$', true, 3) : REPORTS_ALIGN_LEFT); $save['font_size'] = (isset_request_var('font_size') ? form_input_validate(get_nfilter_request_var('font_size'), 'font_size', '^[0-9]+$', true, 3) : REPORTS_FONT_SIZE); if (!is_error_message()) { $item_id = sql_save($save, 'reports_items'); if ($item_id) { raise_message('reports_item_save'); } else { raise_message('reports_item_save_failed'); } } header('Location: ' . get_reports_page() . '?action=item_edit&header=false&id=' . get_nfilter_request_var('report_id') . '&item_id=' . (empty($item_id) ? get_nfilter_request_var('id') : $item_id)); } else { header('Location: ' . get_reports_page() . '?header=false'); } exit; } /* ------------------------ The 'actions' function ------------------------ */ function reports_form_actions() { global $config, $reports_actions; include_once($config['base_path'].'/lib/reports.php'); /* ================= input validation ================= */ get_filter_request_var('drp_action'); /* ==================================================== */ /* if we are to save this form, instead of display it */ if (isset_request_var('selected_items')) { $selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items')); if ($selected_items != false) { if (get_nfilter_request_var('drp_action') == REPORTS_DELETE) { // delete db_execute('DELETE FROM reports WHERE ' . array_to_sql_or($selected_items, 'id')); db_execute('DELETE FROM reports_items WHERE ' . str_replace('id', 'report_id', array_to_sql_or($selected_items, 'id'))); } elseif (get_nfilter_request_var('drp_action') == REPORTS_OWN) { // take ownership for ($i=0;($i':'') . $_SESSION['reports_message']; } if (isset($_SESSION['reports_error']) && $_SESSION['reports_error'] != '') { $message .= ($message != '' ? '
    ':'') . "" . $_SESSION['reports_error'] . ''; } } if ($message != '') { $_SESSION['reports_message'] = $message; raise_message('reports_message'); } } } header('Location: ' . get_reports_page()); exit; } /* setup some variables */ $reports_list = ''; $i = 0; /* loop through each of the graphs selected on the previous page and get more info about them */ foreach ($_POST as $var => $val) { if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) { /* ================= input validation ================= */ input_validate_input_number($matches[1]); /* ==================================================== */ $reports_list .= '
  • ' . db_fetch_cell_prepared('SELECT name FROM reports WHERE id = ?', array($matches[1])) . '
  • '; $reports_array[$i] = $matches[1]; $i++; } } general_header(); ?> "; html_start_box($reports_actions[get_nfilter_request_var('drp_action')], '60%', '', '3', 'center', ''); if (!isset($reports_array)) { print "" . __('You must select at least one Report.') . "\n"; $save_html = ''; } else { $save_html = ""; if (get_nfilter_request_var('drp_action') == REPORTS_DELETE) { // delete print "

    " . __('Click \'Continue\' to delete the following Report(s).') . "

      $reports_list
    \n"; } elseif (is_reports_admin() && get_nfilter_request_var('drp_action') == REPORTS_OWN) { // take ownership print "

    " . __('Click \'Continue\' to take ownership of the following Report(s).') . "

      $reports_list
    \n"; } elseif (get_nfilter_request_var('drp_action') == REPORTS_DUPLICATE) { // duplicate print "

    " . __('Click \'Continue\' to duplicate the following Report(s). You may optionally change the title for the new Reports') . ".

      $reports_list

    " . __('Name Format:') . "
    \n"; form_text_box('name_format', ' (1)', '', '255', '30', 'text'); print "

    \n"; } elseif (get_nfilter_request_var('drp_action') == REPORTS_ENABLE) { // enable print "

    " . __('Click \'Continue\' to enable the following Report(s).') . "

      $reports_list

    " . __('Please be certain that those Report(s) have successfully been tested first!') . "

    \n"; } elseif (get_nfilter_request_var('drp_action') == REPORTS_DISABLE) { // disable print "

    " . __('Click \'Continue\' to disable the following Reports.') . "

      $reports_list
    \n"; } elseif (get_nfilter_request_var('drp_action') == REPORTS_SEND_NOW) { // send now print "

    " . __('Click \'Continue\' to send the following Report(s) now.') . "

      $reports_list
    \n"; } } print " $save_html \n"; html_end_box(); print "\n"; bottom_footer(); } /* -------------------------- Report Item Functions -------------------------- */ function reports_send($id) { global $config; /* ================= input validation ================= */ input_validate_input_number($id); /* ==================================================== */ include_once($config['base_path'] . '/lib/reports.php'); $report = db_fetch_row_prepared('SELECT * FROM reports WHERE id = ?', array($id)); if (!sizeof($report)) { /* set error condition */ } elseif ($report['user_id'] == $_SESSION['sess_user_id']) { reports_log(__FUNCTION__ . ', send now, report_id: ' . $id, false, 'REPORTS TRACE', POLLER_VERBOSITY_MEDIUM); /* use report name as default EMail title */ if ($report['subject'] == '') { $report['subject'] = $report['name']; }; if ($report['email'] == '') { $_SESSION['reports_error'] = __('Unable to send Report \'%s\'. Please set destination e-mail addresses', $report['name']); if (!isset_request_var('selected_items')) { raise_message('reports_error'); } } elseif ($report['subject'] == '') { $_SESSION['reports_error'] = __('Unable to send Report \'%s\'. Please set an e-mail subject', $report['name']); if (!isset_request_var('selected_items')) { raise_message('reports_error'); } } elseif ($report['from_name'] == '') { $_SESSION['reports_error'] = __('Unable to send Report \'%s\'. Please set an e-mail From Name', $report['name']); if (!isset_request_var('selected_items')) { raise_message('reports_error'); } } elseif ($report['from_email'] == '') { $_SESSION['reports_error'] = __('Unable to send Report \'%s\'. Please set an e-mail from address', $report['name']); if (!isset_request_var('selected_items')) { raise_message('reports_error'); } } else { generate_report($report, true); } } } function reports_item_movedown() { /* ================= input validation ================= */ get_filter_request_var('item_id'); get_filter_request_var('id'); /* ==================================================== */ move_item_down('reports_items', get_request_var('item_id'), 'report_id=' . get_request_var('id')); } function reports_item_moveup() { /* ================= input validation ================= */ get_filter_request_var('item_id'); get_filter_request_var('id'); /* ==================================================== */ move_item_up('reports_items', get_request_var('item_id'), 'report_id=' . get_request_var('id')); } function reports_item_remove() { /* ================= input validation ================= */ get_filter_request_var('item_id'); /* ==================================================== */ db_execute_prepared('DELETE FROM reports_items WHERE id = ?', array(get_request_var('item_id'))); } function reports_item_edit() { global $config; global $fields_reports_item_edit; # fetch the current report record $report = db_fetch_row_prepared('SELECT * FROM reports WHERE id = ?', array(get_filter_request_var('id'))); # if an existing item was requested, fetch data for it if (isset_request_var('item_id') && (get_filter_request_var('item_id') > 0)) { $reports_item = db_fetch_row_prepared('SELECT * FROM reports_items WHERE id = ?', array(get_request_var('item_id'))); $header_label = __('Report Item [edit Report: %s]', $report['name']); } else { $header_label = __('Report Item [new Report: %s]', $report['name']); $reports_item = array(); $reports_item['report_id'] = get_request_var('id'); $reports_item['sequence'] = get_sequence('', 'sequence', 'reports_items', 'report_id=' . get_request_var('id')); $reports_item['host_id'] = REPORTS_HOST_NONE; } // if a different item_type was selected, use it if (isset_request_var('item_type')) { if (get_filter_request_var('item_type') > 0) { $reports_item['item_type'] = get_request_var('item_type'); } } $reports_item = set_reports_item_var($reports_item, 'host_id'); $reports_item = set_reports_item_var($reports_item, 'branch_id'); $reports_item = set_reports_item_var($reports_item, 'tree_id'); $reports_item = set_reports_item_var($reports_item, 'host_template_id'); $reports_item = set_reports_item_var($reports_item, 'graph_template_id'); if ($reports_item['tree_id'] == 0) { $reports_item['branch_id'] = 0; } load_current_session_value('host_template_id', 'sess_reports_edit_host_template_id', 0); load_current_session_value('host_id', 'sess_reports_edit_host_id', 0); load_current_session_value('tree_id', 'sess_reports_edit_tree_id', 0); /* set the default item alignment */ $fields_reports_item_edit['align']['default'] = $report['alignment']; /* set the default item alignment */ $fields_reports_item_edit['font_size']['default'] = $report['font_size']; form_start(get_current_page(), 'reports_item_edit'); # ready for displaying the fields html_start_box($header_label, '100%', true, '3', 'center', ''); draw_edit_form( array( 'config' => array('no_form_tag' => true), 'fields' => inject_form_variables($fields_reports_item_edit, (isset($reports_item) ? $reports_item : array())) ) ); html_end_box(true, true); form_hidden_box('id', (isset($reports_item['id']) ? $reports_item['id'] : '0'), ''); form_hidden_box('report_id', (isset($reports_item['report_id']) ? $reports_item['report_id'] : '0'), ''); form_hidden_box('save_component_report_item', '1', ''); echo ""; form_save_button(get_reports_page() . '?action=edit&tab=items&id=' . get_request_var('id'), 'return'); if (isset($item['item_type']) && $item['item_type'] == REPORTS_ITEM_GRAPH) { $timespan = array(); # get config option for first-day-of-the-week $first_weekdayid = read_user_setting('first_weekdayid'); # get start/end time-since-epoch for actual time (now()) and given current-session-timespan get_timespan($timespan, time(), $item['timespan'], $first_weekdayid); } /* don't cache previews */ $_SESSION['custom'] = 'true'; ?> array( 'filter' => FILTER_VALIDATE_INT, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'name' => array( 'filter' => FILTER_CALLBACK, 'default' => 'name', 'options' => array('options' => 'sanitize_search_string') ), 'tab' => array( 'filter' => FILTER_CALLBACK, 'default' => 'details', 'options' => array('options' => 'sanitize_search_string') ) ); validate_store_request_vars($filters, 'sess_reports'); /* ================= input validation ================= */ if (get_request_var('rows') == '-1') { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } /* display the report */ $report = array(); if (get_filter_request_var('id') > 0) { $report = db_fetch_row_prepared('SELECT * FROM reports WHERE id = ?', array(get_request_var('id'))); # reformat mailtime to human readable format $report['mailtime'] = date(reports_date_time_format(), $report['mailtime']); # setup header $header_label = __('[edit: %s]', $report['name']); $tabs = array('details' => __('Details'), 'items' => __('Items'), 'preview' => __('Preview'), 'events' => __('Events')); } else { $header_label = __('[new]'); # initialize mailtime with current timestamp $report['mailtime'] = date(reports_date_time_format(), floor(time() / read_config_option('poller_interval')) * read_config_option('poller_interval')); $tabs = array('details' => __('Details')); } /* if there was an error on the form, display the date in the correct format */ if (isset($_SESSION['sess_field_values']['mailtime'])) { $_SESSION['sess_field_values']['mailtime'] = date(reports_date_time_format(), $_SESSION['sess_field_values']['mailtime']); } /* set the default settings category */ if (!isset_request_var('tab')) set_request_var('tab', 'details'); $current_tab = get_request_var('tab'); if (sizeof($tabs) && isset_request_var('id')) { $i = 0; /* draw the tabs */ print "
    \n"; } switch(get_request_var('tab')) { case 'details': form_start(get_reports_page()); html_start_box(__('Details') . " $header_label", '100%', true, '3', 'center', ''); draw_edit_form(array( 'config' => array('no_form_tag' => true), 'fields' => inject_form_variables($fields_reports_edit, $report) )); html_end_box(true, true); form_hidden_box('id', (isset($report['id']) ? $report['id'] : '0'), ''); form_hidden_box('save_component_report', '1', ''); ?> \n"; print reports_generate_html($report['id'], REPORTS_OUTPUT_STDOUT); print "\t\t\t\t\t\n"; html_end_box(false); break; } } /* display_reports_items display the list of all items related to a single report * @arg $report_id id of the report */ function display_reports_items($report_id) { global $graph_timespans; global $item_types, $alignment; $items = db_fetch_assoc_prepared('SELECT * FROM reports_items WHERE report_id = ? ORDER BY sequence', array($report_id)); $css = db_fetch_cell_prepared('SELECT cformat FROM reports WHERE id = ?', array($report_id)); html_header( array( array('display' => __('Item'), 'align' => 'left'), array('display' => __('Sequence'), 'align' => 'left'), array('display' => __('Type'), 'align' => 'left'), array('display' => __('Item Details'), 'align' => 'left'), array('display' => __('Timespan'), 'align' => 'left'), array('display' => __('Alignment'), 'align' => 'left'), array('display' => __('Font Size'), 'align' => 'left'), array('display' => __('Actions'), 'align' => 'right') ), 2); $i = 1; if (sizeof($items)) { foreach ($items as $item) { switch ($item['item_type']) { case REPORTS_ITEM_GRAPH: $item_details = get_graph_title($item['local_graph_id']); $align = ($item['align'] > 0 ? $alignment[$item['align']] : ''); $size = ''; $timespan = ($item['timespan'] > 0 ? $graph_timespans[$item['timespan']] : ''); break; case REPORTS_ITEM_TEXT: $item_details = $item['item_text']; $align = ($item['align'] > 0 ? $alignment[$item['align']] : ''); $size = ($item['font_size'] > 0 ? $item['font_size'] : ''); $timespan = ''; break; case REPORTS_ITEM_TREE: if ($item['branch_id'] > 0) { $branch_details = db_fetch_row_prepared('SELECT * FROM graph_tree_items WHERE id = ?', array($item['branch_id'])); } else { $branch_details = array(); } $tree_name = db_fetch_cell_prepared('SELECT name FROM graph_tree WHERE id = ?', array($item['tree_id'])); $item_details = 'Tree: ' . $tree_name; if ($item['branch_id'] > 0) { if ($branch_details['host_id'] > 0) { $item_details .= ', Device: ' . db_fetch_cell_prepared('SELECT description FROM host WHERE id = ?', array($branch_details['host_id'])); } else { $item_details .= ', Branch: ' . $branch_details['title']; if ($item['tree_cascade'] == 'on') { $item_details .= ' ' . __('(All Branches)'); } else { $item_details .= ' ' . __('(Current Branch)'); } } } $align = ($item['align'] > 0 ? $alignment[$item['align']] : ''); $size = ($item['font_size'] > 0 ? $item['font_size'] : ''); $timespan = ($item['timespan'] > 0 ? $graph_timespans[$item['timespan']] : ''); break; default: $item_details = ''; $align = ''; $size = ''; $timespan = ''; } if ($css == 'on') { $size = ''; } form_alternate_row(); $form_data = 'Item#' . $i . ''; $form_data .= '' . $item['sequence'] . ''; $form_data .= '' . $item_types[$item['item_type']] . ''; $form_data .= '' . $item_details . ''; $form_data .= '' . $timespan . ''; $form_data .= '' . $align . ''; $form_data .= '' . $size . ''; if ($i == 1) { $form_data .= '' . ''; } elseif ($i > 1 && $i < sizeof($items)) { $form_data .= '' . '' . ''; } else { $form_data .= '' . '' . ''; } $form_data .= '' . ''; print $form_data; $i++; } } else { print '' . __('No Report Items') . ''; } } function get_reports_page() { return (is_realm_allowed(22) ? 'reports_admin.php' : 'reports_user.php'); } function is_reports_admin() { return (is_realm_allowed(22) ? true:false); } function reports() { global $config, $item_rows, $reports_interval; global $reports_actions, $attach_types; include_once($config['base_path'] . '/lib/reports.php'); /* ================= input validation and session storage ================= */ $filters = array( 'rows' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'status' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '-1' ), 'filter' => array( 'filter' => FILTER_CALLBACK, 'pageset' => true, 'default' => '', 'options' => array('options' => 'sanitize_search_string') ), 'sort_column' => array( 'filter' => FILTER_CALLBACK, 'default' => 'name', 'options' => array('options' => 'sanitize_search_string') ), 'sort_direction' => array( 'filter' => FILTER_CALLBACK, 'default' => 'ASC', 'options' => array('options' => 'sanitize_search_string') ), 'has_graphs' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'pageset' => true, 'default' => 'true' ) ); validate_store_request_vars($filters, 'sess_reports'); /* ================= input validation ================= */ if (get_request_var('rows') == -1) { $rows = read_config_option('num_rows_table'); } else { $rows = get_request_var('rows'); } if ((!empty($_SESSION['sess_status'])) && (!isempty_request_var('status'))) { if ($_SESSION['sess_status'] != get_request_var('status')) { set_request_var('page', '1'); } } form_start(get_reports_page(), 'form_report'); html_start_box(__('Reports [%s]', (is_reports_admin() ? __('Administrator Level'):__('User Level'))), '100%', '', '3', 'center', get_reports_page() . '?action=edit&tab=details'); print "
    " . __('Search') . " " . __('Status') . " " . __('Reports') . "
    \n"; html_end_box(true); form_end(); /* form the 'where' clause for our main sql query */ if (get_request_var('filter') != '') { $sql_where = "WHERE (reports.name LIKE '%%" . get_request_var('filter') . "%%')"; } else { $sql_where = ''; } if (get_request_var('status') == '-1') { /* Show all items */ } elseif (get_request_var('status') == '-2') { $sql_where .= ($sql_where != '' ? " AND reports.enabled='on'" : " WHERE reports.enabled='on'"); } elseif (get_request_var('status') == '-3') { $sql_where .= ($sql_where != '' ? " AND reports.enabled=''" : " WHERE reports.enabled=''"); } /* account for permissions */ if (is_reports_admin()) { $sql_join = 'LEFT JOIN user_auth ON user_auth.id=reports.user_id'; } else { $sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . ' user_auth.id=' . $_SESSION['sess_user_id']; $sql_join = 'INNER JOIN user_auth ON user_auth.id=reports.user_id'; } $total_rows = db_fetch_cell("SELECT COUNT(reports.id) FROM reports $sql_join $sql_where"); $reports_list = db_fetch_assoc("SELECT user_auth.full_name, reports.*, CONCAT_WS('', intrvl, ' ', count, ' ', offset, '') AS cint FROM reports $sql_join $sql_where ORDER BY " . get_request_var('sort_column') . ' ' . get_request_var('sort_direction') . ' LIMIT ' . ($rows*(get_request_var('page')-1)) . ',' . $rows); form_start(get_reports_page(), 'chk'); $nav = html_nav_bar(get_reports_page() . 'filter=' . get_request_var('filter') . '&host_id=' . get_request_var('host_id'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 10, __('Reports'), 'page', 'main'); print $nav; html_start_box('', '100%', '', '3', 'center', ''); if (is_reports_admin()) { $display_text = array( 'name' => array('display' => __('Report Name'), 'align' => 'left', 'sort' => 'ASC'), 'full_name' => array('display' => __('Owner'), 'align' => 'left', 'sort' => 'ASC'), 'cint' => array('display' => __('Frequency'), 'align' => 'left', 'sort' => 'ASC'), 'lastsent' => array('display' => __('Last Run'), 'align' => 'left', 'sort' => 'ASC'), 'mailtime' => array('display' => __('Next Run'), 'align' => 'left', 'sort' => 'ASC'), 'from_name' => array('display' => __('From'), 'align' => 'left', 'sort' => 'ASC'), 'nosort' => array('display' => __('To'), 'align' => 'left', 'sort' => 'ASC'), 'attachment_type' => array('display' => __('Type'), 'align' => 'left', 'sort' => 'ASC'), 'enabled' => array('display' => __('Enabled'), 'align' => 'left', 'sort' => 'ASC'), ); } else { $display_text = array( 'name' => array('display' => __('Report Title'), 'align' => 'left', 'sort' => 'ASC'), 'cint' => array('display' => __('Frequency'), 'align' => 'left', 'sort' => 'ASC'), 'lastsent' => array('display' => __('Last Run'), 'align' => 'left', 'sort' => 'ASC'), 'mailtime' => array('display' => __('Next Run'), 'align' => 'left', 'sort' => 'ASC'), 'from_name' => array('display' => __('From'), 'align' => 'left', 'sort' => 'ASC'), 'nosort' => array('display' => __('To'), 'align' => 'left', 'sort' => 'ASC'), 'attachment_type' => array('display' => __('Type'), 'align' => 'left', 'sort' => 'ASC'), 'enabled' => array('display' => __('Enabled'), 'align' => 'left', 'sort' => 'ASC'), ); } html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false); $i = 0; if (sizeof($reports_list)) { $date_format = reports_date_time_format(); foreach ($reports_list as $report) { if (!reports_html_account_exists($report['user_id'])) { reports_html_report_disable($report['id']); $report['enabled'] = ''; } form_alternate_row('line' . $report['id'], true); form_selectable_cell(filter_value($report['name'], get_request_var('filter'), get_reports_page() . '?action=edit&tab=details&id=' . $report['id'] . '&page=1'), $report['id']); if (is_reports_admin()) { if (reports_html_account_exists($report['user_id'])) { form_selectable_cell($report['full_name'], $report['id']); } else { form_selectable_cell(__('Report Disabled - No Owner'), $report['id']); } } $interval = __('Every') . ' ' . $report['count'] . ' ' . $reports_interval[$report['intrvl']]; form_selectable_cell($interval, $report['id']); form_selectable_cell(($report['lastsent'] == 0) ? __('Never') : date($date_format, $report['lastsent']), $report['lastsent']); form_selectable_cell(date($date_format, $report['mailtime']), $report['id']); form_selectable_cell($report['from_name'], $report['id']); form_selectable_cell((substr_count($report['email'], ',') ? __('Multiple'): $report['email']), $report['id']); form_selectable_cell((isset($attach_types[$report['attachment_type']])) ? $attach_types[$report['attachment_type']] : __('Invalid'), $report['id']); form_selectable_cell($report['enabled'] ? __('Enabled'): __('Disabled'), $report['id']); form_checkbox_cell($report['name'], $report['id']); form_end_row(); } } else { print "" . __('No Reports Found') . "\n"; } html_end_box(false); if (sizeof($reports_list)) { print $nav; } /* draw the dropdown containing a list of available actions for this form */ draw_actions_dropdown($reports_actions); form_end(); ?> = 0) { $reports_item[$var_id] = get_request_var($var_id); } // Check that we have set a host_id, if not, default to 0 if (!isset($reports_item[$var_id])) { $reports_item[$var_id] = 0; } return $reports_item; } cacti-1.1.38/lib/html_graph.php0000664000175000017500000004065113264740213015667 0ustar tromantroman array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_user_setting('preview_graphs_per_page', 20) ), 'page' => array( 'filter' => FILTER_VALIDATE_INT, 'default' => '1' ), 'graph_template_id' => array( 'filter' => FILTER_VALIDATE_IS_NUMERIC_LIST, 'pageset' => true, 'default' => read_user_setting('graph_template_id', 0) ), 'columns' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => read_user_setting('num_columns', 2) ), 'host_id' => array( 'filter' => FILTER_VALIDATE_INT, 'pageset' => true, 'default' => '-1' ), 'rfilter' => array( 'filter' => FILTER_VALIDATE_IS_REGEX, 'pageset' => true, 'default' => '', ), 'thumbnails' => array( 'filter' => FILTER_VALIDATE_REGEXP, 'options' => array('options' => array('regexp' => '(true|false)')), 'default' => read_user_setting('thumbnail_section_preview', '') == 'on' ? 'true':'false' ), 'graph_list' => array( 'filter' => FILTER_VALIDATE_IS_NUMERIC_LIST, 'default' => '' ), 'graph_add' => array( 'filter' => FILTER_VALIDATE_IS_NUMERIC_LIST, 'default' => '' ), 'graph_remove' => array( 'filter' => FILTER_VALIDATE_IS_NUMERIC_LIST, 'default' => '' ), 'style' => array( 'filter' => FILTER_DEFAULT, 'default' => '' ) ); validate_store_request_vars($filters, 'sess_grview'); /* ================= input validation ================= */ } function html_graph_preview_filter($page, $action, $devices_where = '', $templates_where = '') { global $graphs_per_page, $realtime_window, $realtime_refresh, $graph_timeshifts, $graph_timespans, $config; initialize_realtime_step_and_window(); ?>
    ' title='' onClick='applyGraphFilter()'> ' title='' onClick='clearGraphFilter()'> ' title='' onClick='saveGraphFilter("preview")'>
    ' onChange='applyGraphFilter()'> >
    '> '> '> '> '> '> ' name='button_refresh_x' title='' onClick='refreshGraphTimespanFilter()'> ' title='' onClick='clearGraphTimespanFilter()'>
    $field_array) { /* find our field name */ $form_field_name = str_replace('|field|', $field_name, $field_name_format); $form_array += array($form_field_name => $struct_graph[$field_name]); /* modifications to the default form array */ $form_array[$form_field_name]['value'] = (isset($values_array[$field_name]) ? $values_array[$field_name] : ''); $form_array[$form_field_name]['form_id'] = (isset($values_array['id']) ? $values_array['id'] : '0'); unset($form_array[$form_field_name]['default']); if ($field_array['method'] == 'spacer') { unset($form_array[$form_field_name]); } elseif (isset($graph_template['t_' . $field_name]) && $graph_template['t_' . $field_name] != 'on') { if ($include_hidden_fields == true) { $form_array[$form_field_name]['method'] = 'hidden'; } else { unset($form_array[$form_field_name]); } } elseif ((!empty($snmp_query_graph_id)) && (sizeof(db_fetch_assoc_prepared('SELECT id FROM snmp_query_graph_sv WHERE snmp_query_graph_id = ? AND field_name = ?', array($snmp_query_graph_id, $field_name))) > 0)) { if ($include_hidden_fields == true) { $form_array[$form_field_name]['method'] = 'hidden'; } else { unset($form_array[$form_field_name]); } } else { if (($draw_any_items == false) && ($header_title != '')) { print "
    $header_title
    \n"; } $draw_any_items = true; } } /* setup form options */ if ($alternate_colors == true) { $form_config_array = array('no_form_tag' => true); } else { $form_config_array = array('no_form_tag' => true, 'force_row_color' => true); } draw_edit_form( array( 'config' => $form_config_array, 'fields' => $form_array ) ); return (isset($form_array) ? sizeof($form_array) : 0); } /* draw_nontemplated_fields_graph_item - draws a form that consists of all non-templated graph item fields associated with a particular graph template @arg $graph_template_id - the id of the graph template to base the form after @arg $local_graph_id - specify the id of the associated graph if it exists @arg $field_name_format - all fields on the form will be named using the following format, the following variables can be used: |field| - the current field name |id| - the current graph input id @arg $header_title - the title to use on the header for this form @arg $alternate_colors (bool) - whether to alternate colors for each row on the form or not */ function draw_nontemplated_fields_graph_item($graph_template_id, $local_graph_id, $field_name_format = '|field|_|id|', $header_title = '', $alternate_colors = true, $locked = 'false') { global $struct_graph_item; $form_array = array(); $draw_any_items = false; /* fetch information about the graph template */ $input_item_list = db_fetch_assoc_prepared('SELECT * FROM graph_template_input WHERE graph_template_id = ? ORDER BY column_name, name', array($graph_template_id)); /* modifications to the default graph items array */ if (!empty($local_graph_id)) { $host_id = db_fetch_cell_prepared('SELECT host_id FROM graph_local WHERE id = ?', array($local_graph_id)); $struct_graph_item['task_item_id']['sql'] = "SELECT CONCAT_WS('', CASE WHEN host.description IS NULL THEN 'No Device - ' WHEN host.description IS NOT NULL THEN '' END, data_template_data.name_cache,' (',data_template_rrd.data_source_name,')') AS name, data_template_rrd.id FROM (data_template_data,data_template_rrd,data_local) LEFT JOIN host ON (data_local.host_id=host.id) WHERE data_template_rrd.local_data_id=data_local.id AND data_template_data.local_data_id=data_local.id " . (empty($host_id) ? "" : " AND data_local.host_id=$host_id") . " ORDER BY name"; } if (sizeof($input_item_list)) { foreach ($input_item_list as $item) { if (!empty($local_graph_id)) { $current_def_value = db_fetch_row_prepared('SELECT graph_templates_item.' . $item['column_name'] . ', graph_templates_item.id FROM (graph_templates_item,graph_template_input_defs) WHERE graph_template_input_defs.graph_template_item_id=graph_templates_item.local_graph_template_item_id AND graph_template_input_defs.graph_template_input_id = ? AND graph_templates_item.local_graph_id = ? LIMIT 1', array( $item['id'], $local_graph_id)); } else { $current_def_value = db_fetch_row_prepared('SELECT graph_templates_item.' . $item['column_name'] . ', graph_templates_item.id FROM (graph_templates_item,graph_template_input_defs) WHERE graph_template_input_defs.graph_template_item_id=graph_templates_item.id AND graph_template_input_defs.graph_template_input_id = ? AND graph_templates_item.graph_template_id = ? LIMIT 1', array($item['id'], $graph_template_id)); } /* find our field name */ $form_field_name = str_replace('|field|', $item['column_name'], $field_name_format); $form_field_name = str_replace('|id|', $item['id'], $form_field_name); $form_array += array($form_field_name => $struct_graph_item[$item['column_name']]); /* modifications to the default form array */ $form_array[$form_field_name]['friendly_name'] = $item['name']; if (isset($current_def_value[$item['column_name']])) { $form_array[$form_field_name]['value'] = $current_def_value[$item['column_name']]; } if ($locked == 'true') { if (substr_count($form_field_name, 'task_item_id') > 0) { $form_array[$form_field_name]['method'] = 'value'; if (isset($current_def_value[$item['column_name']])) { $value = db_fetch_cell_prepared("SELECT CONCAT_WS('',CASE WHEN host.description IS NULL THEN 'No Device - ' ELSE '' END,data_template_data.name_cache,' (',data_template_rrd.data_source_name,')') AS name FROM (data_template_data,data_template_rrd,data_local) LEFT JOIN host ON (data_local.host_id=host.id) WHERE data_template_rrd.local_data_id=data_local.id AND data_template_data.local_data_id=data_local.id AND data_template_rrd.id = ?", array($current_def_value[$item['column_name']])); $form_array[$form_field_name]['value'] = $value; } } } /* if we are drawing the graph input list in the pre-graph stage we should omit the data source fields because they are basically meaningless at this point */ if ((empty($local_graph_id)) && ($item['column_name'] == 'task_item_id')) { unset($form_array[$form_field_name]); } else { if (($draw_any_items == false) && ($header_title != '')) { print "
    $header_title
    \n"; } $draw_any_items = true; } } } /* setup form options */ if ($alternate_colors == true) { $form_config_array = array('no_form_tag' => true); } else { $form_config_array = array('no_form_tag' => true, 'force_row_color' => true); } if (sizeof($input_item_list)) { draw_edit_form( array( 'config' => $form_config_array, 'fields' => $form_array ) ); } return (isset($form_array) ? sizeof($form_array) : 0); } /* draw_nontemplated_fields_data_source - draws a form that consists of all non-templated data source fields associated with a particular data template @arg $data_template_id - the id of the data template to base the form after @arg $local_data_id - specify the id of the associated data source if it exists @arg $values_array - any values that should be included by default on the form @arg $field_name_format - all fields on the form will be named using the following format, the following variables can be used: |field| - the current field name @arg $header_title - the title to use on the header for this form @arg $alternate_colors (bool) - whether to alternate colors for each row on the form or not @arg $include_hidden_fields (bool) - should elements that are not to be displayed be represented as hidden html input elements or omitted altogether? @arg $snmp_query_graph_id - if this data template is part of a data query, specify the graph id here. this will be used to determine if a given field is using suggested values */ function draw_nontemplated_fields_data_source($data_template_id, $local_data_id, &$values_array, $field_name_format = '|field|', $header_title = '', $alternate_colors = true, $include_hidden_fields = true, $snmp_query_graph_id = 0) { global $struct_data_source; $form_array = array(); $draw_any_items = false; /* fetch information about the data template */ $data_template = db_fetch_row_prepared('SELECT * FROM data_template_data WHERE data_template_id = ? AND local_data_id=0', array($data_template_id)); foreach ($struct_data_source as $field_name => $field_array) { /* find our field name */ $form_field_name = str_replace('|field|', $field_name, $field_name_format); $form_array += array($form_field_name => $struct_data_source[$field_name]); /* modifications to the default form array */ $form_array[$form_field_name]['value'] = (isset($values_array[$field_name]) ? $values_array[$field_name] : ''); $form_array[$form_field_name]['form_id'] = (isset($values_array['id']) ? $values_array['id'] : '0'); unset($form_array[$form_field_name]['default']); $current_flag = (isset($field_array['flags']) ? $field_array['flags'] : ''); $current_template_flag = (isset($data_template['t_' . $field_name]) ? $data_template['t_' . $field_name] : 'on'); if (($current_template_flag != 'on') || ($current_flag == 'ALWAYSTEMPLATE')) { if ($include_hidden_fields == true) { $form_array[$form_field_name]['method'] = 'hidden'; } else { unset($form_array[$form_field_name]); } } elseif ((!empty($snmp_query_graph_id)) && (sizeof(db_fetch_assoc_prepared('SELECT id FROM snmp_query_graph_rrd_sv WHERE snmp_query_graph_id = ? AND data_template_id = ? AND field_name = ?', array($snmp_query_graph_id, $data_template_id, $field_name))) > 0)) { if ($include_hidden_fields == true) { $form_array[$form_field_name]['method'] = 'hidden'; } else { unset($form_array[$form_field_name]); } } elseif ((empty($local_data_id)) && ($field_name == 'data_source_path')) { if ($include_hidden_fields == true) { $form_array[$form_field_name]['method'] = 'hidden'; } else { unset($form_array[$form_field_name]); } } else { if (($draw_any_items == false) && ($header_title != '')) { print "
    $header_title
    \n"; } $draw_any_items = true; } } /* setup form options */ if ($alternate_colors == true) { $form_config_array = array('no_form_tag' => true); } else { $form_config_array = array('no_form_tag' => true, 'force_row_color' => true); } draw_edit_form( array( 'config' => $form_config_array, 'fields' => $form_array ) ); return (isset($form_array) ? sizeof($form_array) : 0); } /* draw_nontemplated_fields_data_source_item - draws a form that consists of all non-templated data source item fields associated with a particular data template @arg $data_template_id - the id of the data template to base the form after @arg $values_array - any values that should be included by default on the form @arg $field_name_format - all fields on the form will be named using the following format, the following variables can be used: |field| - the current field name |id| - the id of the current data source item @arg $header_title - the title to use on the header for this form @arg $draw_title_for_each_item (bool) - should a separate header be drawn for each data source item, or should all data source items be drawn under one header? @arg $alternate_colors (bool) - whether to alternate colors for each row on the form or not @arg $include_hidden_fields (bool) - should elements that are not to be displayed be represented as hidden html input elements or omitted altogether? @arg $snmp_query_graph_id - if this graph template is part of a data query, specify the graph id here. this will be used to determine if a given field is using suggested values */ function draw_nontemplated_fields_data_source_item($data_template_id, &$values_array, $field_name_format = '|field_id|', $header_title = '', $draw_title_for_each_item = true, $alternate_colors = true, $include_hidden_fields = true, $snmp_query_graph_id = 0) { global $struct_data_source_item; $draw_any_items = false; $num_fields_drawn = 0; /* setup form options */ if ($alternate_colors == true) { $form_config_array = array('no_form_tag' => true); } else { $form_config_array = array('no_form_tag' => true, 'force_row_color' => true); } if (sizeof($values_array)) { foreach ($values_array as $rrd) { $form_array = array(); /* if the user specifies a title, we only want to draw that. if not, we should create our own title for each data source item */ if ($draw_title_for_each_item == true) { $draw_any_items = false; } if (empty($rrd['local_data_id'])) { /* this is a template */ $data_template_rrd = $rrd; } else { /* this is not a template */ $data_template_rrd = db_fetch_row_prepared('SELECT * FROM data_template_rrd WHERE id = ?', array($rrd['local_data_template_rrd_id'])); } foreach ($struct_data_source_item as $field_name => $field_array) { /* find our field name */ $form_field_name = str_replace('|field|', $field_name, $field_name_format); $form_field_name = str_replace('|id|', $rrd['id'], $form_field_name); $form_array += array($form_field_name => $struct_data_source_item[$field_name]); /* modifications to the default form array */ $form_array[$form_field_name]['value'] = (isset($rrd[$field_name]) ? $rrd[$field_name] : ''); $form_array[$form_field_name]['form_id'] = (isset($rrd['id']) ? $rrd['id'] : '0'); unset($form_array[$form_field_name]['default']); /* append the data source item name so the user will recognize it */ if ($draw_title_for_each_item == false) { $form_array[$form_field_name]['friendly_name'] .= ' [' . html_escape($rrd['data_source_name']) . ']'; } if ($data_template_rrd['t_' . $field_name] != 'on') { if ($include_hidden_fields == true) { $form_array[$form_field_name]['method'] = 'hidden'; } else { unset($form_array[$form_field_name]); } } elseif ((!empty($snmp_query_graph_id)) && (sizeof(db_fetch_assoc_prepared('SELECT id FROM snmp_query_graph_rrd_sv WHERE snmp_query_graph_id = ? AND data_template_id = ? AND field_name = ?', array($snmp_query_graph_id, $data_template_id, $field_name))) > 0)) { if ($include_hidden_fields == true) { $form_array[$form_field_name]['method'] = 'hidden'; } else { unset($form_array[$form_field_name]); } } else { if (($draw_any_items == false) && ($draw_title_for_each_item == false) && ($header_title != '')) { print "
    $header_title
    \n"; } elseif (($draw_any_items == false) && ($draw_title_for_each_item == true) && ($header_title != '')) { print "
    $header_title [" . html_escape($rrd['data_source_name']) . "]
    \n"; } $draw_any_items = true; /* if the 'Output field' appears here among the non-templated fields, the valid choices for the drop-down box must be fetched from the associated data input method */ if ($field_name == 'data_input_field_id') { $data_input_id = db_fetch_cell_prepared('SELECT data_input_id FROM data_template_data WHERE data_template_id = ? AND local_data_id=0', array($rrd['data_template_id'])); $form_array[$form_field_name]['sql'] = "SELECT id, CONCAT(data_name,' - ',name) AS name FROM data_input_fields WHERE data_input_id=" . $data_input_id . " AND input_output = 'out' AND update_rra='on' ORDER BY data_name,name"; } } } draw_edit_form( array( 'config' => $form_config_array, 'fields' => $form_array ) ); $num_fields_drawn += sizeof($form_array); } } return $num_fields_drawn; } /* draw_nontemplated_fields_custom_data - draws a form that consists of all non-templated custom data fields associated with a particular data template @arg $data_template_id - the id of the data template to base the form after @arg $field_name_format - all fields on the form will be named using the following format, the following variables can be used: |id| - the id of the current field @arg $header_title - the title to use on the header for this form @arg $draw_title_for_each_item (bool) - should a separate header be drawn for each data source item, or should all data source items be drawn under one header? @arg $alternate_colors (bool) - whether to alternate colors for each row on the form or not @arg $include_hidden_fields (bool) - should elements that are not to be displayed be represented as hidden html input elements or omitted altogether? @arg $snmp_query_id - if this graph template is part of a data query, specify the data query id here. this will be used to determine if a given field is associated with a suggested value */ function draw_nontemplated_fields_custom_data($data_template_data_id, $field_name_format = '|field|', $header_title = '', $alternate_colors = true, $include_hidden_fields = true, $snmp_query_id = 0) { $data = db_fetch_row_prepared('SELECT id, data_input_id, data_template_id, name, local_data_id FROM data_template_data WHERE id = ?', array($data_template_data_id)); $host_id = db_fetch_cell_prepared('SELECT host.id FROM host INNER JOIN data_local ON data_local.host_id=host.id WHERE data_local.id = ?', array($data['local_data_id'])); $template_data = db_fetch_row_prepared('SELECT id, data_input_id FROM data_template_data WHERE data_template_id = ? AND local_data_id=0', array($data['data_template_id'])); $draw_any_items = false; /* get each INPUT field for this data input source */ $fields = db_fetch_assoc_prepared('SELECT * FROM data_input_fields WHERE data_input_id = ? AND input_output = "in" ORDER BY sequence', array($data['data_input_id'])); /* loop through each field found */ $i = 0; if (sizeof($fields)) { foreach ($fields as $field) { $data_input_data = db_fetch_row_prepared('SELECT * FROM data_input_data WHERE data_template_data_id = ? AND data_input_field_id = ?', array($data['id'], $field['id'])); if (sizeof($data_input_data)) { $old_value = $data_input_data['value']; } else { $old_value = ''; } /* if data template then get t_value from template, else always allow user input */ if (empty($data['data_template_id'])) { $can_template = 'on'; } else { $can_template = db_fetch_cell_prepared('SELECT t_value FROM data_input_data WHERE data_template_data_id = ? AND data_input_field_id = ?', array($template_data['id'], $field['id'])); } /* find our field name */ $form_field_name = str_replace('|id|', $field['id'], $field_name_format); if ((!empty($host_id)) && (preg_match('/^' . VALID_HOST_FIELDS . '$/i', $field['type_code'])) && (empty($can_template))) { /* no host fields */ if ($include_hidden_fields == true) { form_hidden_box($form_field_name, $old_value, ''); } } elseif ((!empty($snmp_query_id)) && (preg_match('/^(index_type|index_value|output_type)$/i', $field['type_code']))) { /* no data query fields */ if ($include_hidden_fields == true) { form_hidden_box($form_field_name, $old_value, ''); } } elseif (empty($can_template)) { /* no templated fields */ if ($include_hidden_fields == true) { form_hidden_box($form_field_name, $old_value, ''); } } else { if (($draw_any_items == false) && ($header_title != '')) { print "
    $header_title
    \n"; } print "
    \n"; print "
    " . html_escape($field['name']) . "
    \n"; print "
    "; draw_custom_data_row($form_field_name, $field['id'], $data['id'], $old_value); print '
    '; print "
    \n"; $draw_any_items = true; $i++; } } } return $i; } /* draw_custom_data_row - draws a single row representing 'custom data' for a single data input field. this function is where additional logic can be applied to control how a certain field of custom data is represented on the HTML form @arg $field_name - the name of this form element @arg $data_input_field_id - the id of the data input field that this row represents @arg $data_template_data_id - the id of the data source data element that this data input field belongs to @arg $current_value - the current value of this field */ function draw_custom_data_row($field_name, $data_input_field_id, $data_template_data_id, $current_value) { $field = db_fetch_row_prepared('SELECT data_name, type_code FROM data_input_fields WHERE id = ?', array($data_input_field_id)); if (($field['type_code'] == 'index_type') && (db_fetch_cell_prepared('SELECT local_data_id FROM data_template_data WHERE id = ?', array($data_template_data_id)) > 0)) { $index_type = db_fetch_assoc_prepared('SELECT host_snmp_cache.field_name FROM (data_template_data,data_local,host_snmp_cache) WHERE data_template_data.local_data_id=data_local.id AND data_local.snmp_query_id=host_snmp_cache.snmp_query_id AND data_template_data.id = ? GROUP BY host_snmp_cache.field_name', array($data_template_data_id)); if (sizeof($index_type) == 0) { print "" . __('Data Query Data Sources must be created through %s', "" . __('New Graphs') . ".") . "\n"; } else { form_dropdown($field_name, $index_type, 'field_name', 'field_name', $current_value, '', '', ''); } } elseif (($field['type_code'] == 'output_type') && (db_fetch_cell_prepared('SELECT local_data_id FROM data_template_data WHERE id = ?', array($data_template_data_id)) > 0)) { $output_type = db_fetch_assoc_prepared('SELECT snmp_query_graph.id, snmp_query_graph.name FROM (data_template_data,data_local,snmp_query_graph) WHERE data_template_data.local_data_id=data_local.id AND data_local.snmp_query_id=snmp_query_graph.snmp_query_id AND data_template_data.id = ? GROUP BY snmp_query_graph.id', array($data_template_data_id)); if (sizeof($output_type) == 0) { print "" . __('Data Query Data Sources must be created through %s', "" . __('New Graphs') . ".") . "\n"; } else { form_dropdown($field_name, $output_type, 'name', 'id', $current_value, '', '', ''); } } else { form_text_box($field_name, $current_value, '', ''); } } cacti-1.1.38/lib/html_form.php0000664000175000017500000013330713264740213015532 0ustar tromantroman 0) { foreach ($array as $top_branch => $top_children) { if ($top_branch == 'config') { $config_array = $top_children; } elseif ($top_branch == 'fields') { $fields_array = $top_children; } } } if (sizeof($fields_array) > 0) { if (!isset($config_array['no_form_tag'])) { print "
    \n"; } $i = 0; $row_class = 'odd'; foreach ($fields_array as $field_name => $field_array) { if ($field_array['method'] == 'hidden') { print ''; } elseif ($field_array['method'] == 'hidden_zero') { print ''; } elseif ($field_array['method'] == 'spacer') { $collapsible = (isset($field_array['collapsible']) && $field_array['collapsible'] == 'true'); print "
    " . html_escape($field_array['friendly_name']) . ($collapsible ? "
    ":'') . '
    '; } else { // Make a row using a div if (isset($config_array['force_row_color'])) { print "
    "; } else { print "
    "; if ($row_class == 'even') { $row_class = 'odd'; } else { $row_class = 'even'; } } // Make a form cell print "
    "; print "
    "; if (isset($field_array['sub_checkbox'])) { form_checkbox($field_array['sub_checkbox']['name'], $field_array['sub_checkbox']['value'], '', ((isset($field_array['sub_checkbox']['default'])) ? $field_array['sub_checkbox']['default'] : ''), ((isset($field_array['sub_checkbox']['form_id'])) ? $field_array['sub_checkbox']['form_id'] : ''), ((isset($field_array['sub_checkbox']['class'])) ? $field_array['sub_checkbox']['class'] : ''), ((isset($field_array['sub_checkbox']['on_change'])) ? $field_array['sub_checkbox']['on_change'] : ''), ((isset($field_array['sub_checkbox']['friendly_name'])) ? $field_array['sub_checkbox']['friendly_name'] : '')); } print html_escape($field_array['friendly_name']); if (read_config_option('hide_form_description') == 'on') { print '
    ' . ((isset($field_array['description'])) ? $field_array['description'] : '') . "\n"; } else { print '
    '; print display_tooltip((isset($field_array['description'])) ? $field_array['description'] : ''); print '
    '; } print '
    '; // End form cell print '
    '; // New form column for content print '
    '; draw_edit_control($field_name, $field_array); // End content column print '
    '; // End form row print '
    '; } $i++; } } } /* draw_edit_control - draws a single control to be used on an html edit form @arg $field_name - the name of the control @arg $field_array - an array containing data for this control. see include/global_form.php for more specific syntax */ function draw_edit_control($field_name, &$field_array) { switch ($field_array['method']) { case 'textbox': form_text_box( $field_name, $field_array['value'], ((isset($field_array['default'])) ? $field_array['default'] : ''), $field_array['max_length'], ((isset($field_array['size'])) ? $field_array['size'] : '40'), 'text', ((isset($field_array['form_id'])) ? $field_array['form_id'] : ''), ((isset($field_array['placeholder'])) ? $field_array['placeholder'] : '') ); break; case 'filepath': form_filepath_box($field_name, $field_array['value'], ((isset($field_array['default'])) ? $field_array['default'] : ''), $field_array['max_length'], ((isset($field_array['size'])) ? $field_array['size'] : '40'), 'text', ((isset($field_array['form_id'])) ? $field_array['form_id'] : '') ); break; case 'dirpath': form_dirpath_box( $field_name, $field_array['value'], ((isset($field_array['default'])) ? $field_array['default'] : ''), $field_array['max_length'], ((isset($field_array['size'])) ? $field_array['size'] : '40'), 'text', ((isset($field_array['form_id'])) ? $field_array['form_id'] : '') ); break; case 'textbox_password': // Fake out firefox so that you don't get pre-set passwords print "\n"; print "\n"; form_text_box( $field_name, $field_array['value'], ((isset($field_array['default'])) ? $field_array['default'] : ''), $field_array['max_length'], ((isset($field_array['size'])) ? $field_array['size'] : '40'), 'password', ((isset($field_array['form_id'])) ? $field_array['form_id'] : ''), '********' ); print '
    '; form_text_box( $field_name . '_confirm', $field_array['value'], ((isset($field_array['default'])) ? $field_array['default'] : ''), $field_array['max_length'], ((isset($field_array['size'])) ? $field_array['size'] : '40'), 'password', ((isset($field_array['form_id'])) ? $field_array['form_id'] : ''), '********' ); break; case 'textarea': form_text_area( $field_name, $field_array['value'], $field_array['textarea_rows'], $field_array['textarea_cols'], ((isset($field_array['default'])) ? $field_array['default'] : ''), ((isset($field_array['class'])) ? $field_array['class'] : ''), ((isset($field_array['on_change'])) ? $field_array['on_change'] : ''), ((isset($field_array['placeholder'])) ? $field_array['placeholder'] : '') ); break; case 'drop_array': form_dropdown( $field_name, $field_array['array'], '', '', $field_array['value'], ((isset($field_array['none_value'])) ? $field_array['none_value'] : ''), ((isset($field_array['default'])) ? $field_array['default'] : ''), ((isset($field_array['class'])) ? $field_array['class'] : ''), ((isset($field_array['on_change'])) ? $field_array['on_change'] : '') ); break; case 'drop_files': $array_files = array(); if (isset($field_array['directory'])) { $dir = $field_array['directory']; if (is_dir($dir) && is_readable($dir)) { if (function_exists('scandir')) { $files = scandir($dir); } elseif ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { $files[] = $file; } closedir($dh); } if (sizeof($files)) { foreach($files as $file) { if (is_readable($dir . '/' . $file) && $file != '.' && $file != '..') { if (!in_array($file, $field_array['exclusions'])) { $array_files[basename($file)] = basename($file); } } } } } } form_dropdown( $field_name, $array_files, '', '', $field_array['value'], ((isset($field_array['none_value'])) ? $field_array['none_value'] : ''), ((isset($field_array['default'])) ? $field_array['default'] : ''), ((isset($field_array['class'])) ? $field_array['class'] : ''), ((isset($field_array['on_change'])) ? $field_array['on_change'] : '') ); break; case 'drop_sql': form_dropdown( $field_name, db_fetch_assoc($field_array['sql']), 'name', 'id', $field_array['value'], ((isset($field_array['none_value'])) ? $field_array['none_value'] : ''), ((isset($field_array['default'])) ? $field_array['default'] : ''), ((isset($field_array['class'])) ? $field_array['class'] : ''), ((isset($field_array['on_change'])) ? $field_array['on_change'] : '') ); break; case 'drop_callback': form_callback( $field_name, $field_array['sql'], 'name', 'id', $field_array['action'], $field_array['id'], $field_array['value'], ((isset($field_array['none_value'])) ? $field_array['none_value'] : ''), ((isset($field_array['default'])) ? $field_array['default'] : ''), ((isset($field_array['class'])) ? $field_array['class'] : ''), ((isset($field_array['on_change'])) ? $field_array['on_change'] : '') ); break; case 'drop_multi': form_multi_dropdown( $field_name, $field_array['array'], (isset($field_array['sql']) ? db_fetch_assoc($field_array['sql']):$field_array['value']), 'id', ((isset($field_array['class'])) ? $field_array['class'] : ''), ((isset($field_array['on_change'])) ? $field_array['on_change'] : '') ); break; case 'drop_tree': grow_dropdown_tree( $field_array['tree_id'], '0', $field_name, $field_array['value'] ); break; case 'drop_color': form_color_dropdown( $field_name, $field_array['value'], __('None'), ((isset($field_array['default'])) ? $field_array['default'] : ''), ((isset($field_array['class'])) ? $field_array['class'] : ''), ((isset($field_array['on_change'])) ? $field_array['on_change'] : '') ); break; case 'checkbox': form_checkbox( $field_name, $field_array['value'], $field_array['friendly_name'], ((isset($field_array['default'])) ? $field_array['default'] : ''), ((isset($field_array['form_id'])) ? $field_array['form_id'] : ''), ((isset($field_array['class'])) ? $field_array['class'] : ''), ((isset($field_array['on_change'])) ? $field_array['on_change'] : ''), $field_array['friendly_name'] ); break; case 'checkbox_group': print "
    \n"; foreach ($field_array['items'] as $check_name => $check_array) { form_checkbox( $check_name, $check_array['value'], $check_array['friendly_name'], ((isset($check_array['default'])) ? $check_array['default'] : ''), ((isset($check_array['form_id'])) ? $check_array['form_id'] : ''), ((isset($field_array['class'])) ? $field_array['class'] : ''), ((isset($check_array['on_change'])) ? $check_array['on_change'] : (((isset($field_array['on_change'])) ? $field_array['on_change'] : ''))), '', true ); print '
    '; } print "
    \n"; break; case 'radio': print "
    "; foreach ($field_array['items'] as $radio_index => $radio_array) { form_radio_button( $field_name, $field_array['value'], $radio_array['radio_value'], $radio_array['radio_caption'], ((isset($field_array['default'])) ? $field_array['default'] : ''), ((isset($field_array['class'])) ? $field_array['class'] : ''), ((isset($field_array['on_change'])) ? $field_array['on_change'] : '') ); print '
    '; } print "
    "; break; case 'custom': print $field_array['value']; break; case 'template_checkbox': print '' . html_boolean_friendly($field_array['value']) . ''; form_hidden_box($field_name, $field_array['value'], '', true); break; case 'template_drop_array': print '' . $field_array['array'][$field_array['value']] . ''; form_hidden_box($field_name, $field_array['value'], '', true); break; case 'font': form_font_box( $field_name, $field_array['value'], ((isset($field_array['default'])) ? $field_array['default'] : ''), $field_array['max_length'], ((isset($field_array['size'])) ? $field_array['size'] : '40'), 'text', ((isset($field_array['form_id'])) ? $field_array['form_id'] : ''), ((isset($field_array['placeholder'])) ? $field_array['placeholder'] : '') ); break; case 'file': form_file($field_name, ((isset($field_array['size'])) ? $field_array['size'] : '40')); break; case 'button': form_button( $field_name, ((isset($field_array['value'])) ? $field_array['value'] : ''), ((isset($field_array['title'])) ? $field_array['title'] : ''), ((isset($field_array['on_click'])) ? $field_array['on_click'] : '') ); break; case 'submit': form_submit( $field_name, ((isset($field_array['value'])) ? $field_array['value'] : ''), ((isset($field_array['title'])) ? $field_array['title'] : ''), ((isset($field_array['on_click'])) ? $field_array['on_click'] : '') ); break; default: print '' . html_escape($field_array['value']) . ''; form_hidden_box($field_name, $field_array['value'], '', true); break; } } /* form_button - draws a standard button form element @arg $form_name - the name of this form element @arg $value - the display value for the button @arg $title - the hover title for the button @arg $action - the onClick action for the button */ function form_button($form_name, $value, $title = '', $action = '') { print ""; } /* form_button - draws a standard button form element @arg $form_name - the name of this form element @arg $value - the display value for the button @arg $title - the hover title for the button @arg $action - the onClick action for the button */ function form_submit($form_name, $value, $title = '', $action = '') { print ""; } /* form_file - draws a standard html file input element @arg $form_name - the name of this form element @arg $form_size - the size (width) of the textbox */ function form_file($form_name, $form_size = 30) { print "
    \n"; print "\n"; print "\n"; print "\n"; print "
    \n"; } /* form_filepath_box - draws a standard html textbox and provides status of a files existence @arg $form_name - the name of this form element @arg $form_previous_value - the current value of this form element @arg $form_default_value - the value of this form element to use if there is no current value available @arg $form_max_length - the maximum number of characters that can be entered into this textbox @arg $form_size - the size (width) of the textbox @arg $type - the type of textbox, either 'text' or 'password' @arg $current_id - used to determine if a current value for this form element exists or not. a $current_id of '0' indicates that no current value exists, a non-zero value indicates that a current value does exist */ function form_filepath_box($form_name, $form_previous_value, $form_default_value, $form_max_length, $form_size = 30, $type = 'text', $current_id = 0) { if (($form_previous_value == '') && (empty($current_id))) { $form_previous_value = $form_default_value; } print ""; }else if (is_dir(trim($form_previous_value))) { $extra_data = ""; }else if ($form_previous_value == '') { $extra_data = ''; } else { $extra_data = ""; } print " id='$form_name' placeholder='" . __('Enter a valid file path') . "' name='$form_name' size='$form_size'" . (!empty($form_max_length) ? " maxlength='$form_max_length'" : '') . " value='" . html_escape($form_previous_value) . "'>" . $extra_data; } /* form_dirpath_box - draws a standard html textbox and provides status of a directories existence @arg $form_name - the name of this form element @arg $form_previous_value - the current value of this form element @arg $form_default_value - the value of this form element to use if there is no current value available @arg $form_max_length - the maximum number of characters that can be entered into this textbox @arg $form_size - the size (width) of the textbox @arg $type - the type of textbox, either 'text' or 'password' @arg $current_id - used to determine if a current value for this form element exists or not. a $current_id of '0' indicates that no current value exists, a non-zero value indicates that a current value does exist */ function form_dirpath_box($form_name, $form_previous_value, $form_default_value, $form_max_length, $form_size = 30, $type = 'text', $current_id = 0) { if (($form_previous_value == '') && (empty($current_id))) { $form_previous_value = $form_default_value; } print ""; }else if (is_file($form_previous_value)) { $extra_data = ""; }else if ($form_previous_value == '') { $extra_data = ''; } else { $extra_data = ""; } print " id='$form_name' name='$form_name' placeholder='" . __('Enter a valid directory path'). "' size='$form_size'" . (!empty($form_max_length) ? " maxlength='$form_max_length'" : '') . " value='" . html_escape($form_previous_value) . "'>" . $extra_data; } /* form_text_box - draws a standard html textbox @arg $form_name - the name of this form element @arg $form_previous_value - the current value of this form element @arg $form_default_value - the value of this form element to use if there is no current value available @arg $form_max_length - the maximum number of characters that can be entered into this textbox @arg $form_size - the size (width) of the textbox @arg $type - the type of textbox, either 'text' or 'password' @arg $current_id - used to determine if a current value for this form element exists or not. a $current_id of '0' indicates that no current value exists, a non-zero value indicates that a current value does exist @arg $placeholder - place a placeholder over an empty field @arg $title - use a title attribute when hovering over the textbox */ function form_text_box($form_name, $form_previous_value, $form_default_value, $form_max_length, $form_size = 30, $type = 'text', $current_id = 0, $placeholder = '', $title = '') { if (($form_previous_value == '') && (empty($current_id))) { $form_previous_value = $form_default_value; } print "\n"; } /* form_hidden_box - draws a standard html hidden element @arg $form_name - the name of this form element @arg $form_previous_value - the current value of this form element @arg $form_default_value - the value of this form element to use if there is no current value available */ function form_hidden_box($form_name, $form_previous_value, $form_default_value, $in_form = false) { if ($form_previous_value == '') { $form_previous_value = $form_default_value; } print "
    "; } /* form_dropdown - draws a standard html dropdown box @arg $form_name - the name of this form element @arg $form_data - an array containing data for this dropdown. it can be formatted in one of two ways: $array["id"] = "value"; -- or -- $array[0]["id"] = 43; $array[0]["name"] = "Red"; @arg $column_display - used to indentify the key to be used for display data. this is only applicable if the array is formatted using the second method above @arg $column_id - used to indentify the key to be used for id data. this is only applicable if the array is formatted using the second method above @arg $form_previous_value - the current value of this form element @arg $form_none_entry - the name to use for a default 'none' element in the dropdown @arg $form_default_value - the value of this form element to use if there is no current value available @arg $css_class - any css that needs to be applied to this form element @arg $on_change - onChange modifier */ function form_dropdown($form_name, $form_data, $column_display, $column_id, $form_previous_value, $form_none_entry, $form_default_value, $class = '', $on_change = '') { if ($form_previous_value == '') { $form_previous_value = $form_default_value; } if (isset($_SESSION['sess_error_fields'])) { if (!empty($_SESSION['sess_error_fields'][$form_name])) { $class .= ($class != '' ? ' ':'') . 'txtErrorTextBox'; unset($_SESSION['sess_error_fields'][$form_name]); } } if (isset($_SESSION['sess_field_values'])) { if (!empty($_SESSION['sess_field_values'][$form_name])) { $form_previous_value = $_SESSION['sess_field_values'][$form_name]; } } if ($class != '') { $class = " class='$class' "; } if ($on_change != '') { $on_change = " onChange='$on_change' "; } print "\n"; } function form_callback($form_name, $classic_sql, $column_display, $column_id, $callback, $previous_id, $previous_value, $none_entry, $default_value, $class = '', $on_change = '') { if ($previous_value == '') { $previous_value = $default_value; } if (isset($_SESSION['sess_error_fields'])) { if (!empty($_SESSION['sess_error_fields'][$form_name])) { $class .= ($class != '' ? ' ':'') . 'txtErrorTextBox'; unset($_SESSION['sess_error_fields'][$form_name]); } } if (isset($_SESSION['sess_field_values'])) { if (!empty($_SESSION['sess_field_values'][$form_name])) { $previous_value = $_SESSION['sess_field_values'][$form_name]; } } if ($class != '') { $class = " class='$class' "; } if ($on_change != '') { $on_change = " onChange='$on_change' "; } $theme = get_selected_theme(); if ($theme == 'classic' || read_config_option('autocomplete') > 0) { print "\n"; } else { if (empty($previous_id) && $previous_value == '') { $previous_value = $none_entry; } print ""; print ""; print ""; if (!empty($none_entry) && empty($previous_value)) { $previous_value = $none_entry; } print ""; print ""; ?> "; if ($show_label) { print ""; } else { print ""; } } /* form_radio_button - draws a standard html radio button @arg $form_name - the name of this form element @arg $form_previous_value - the current value of this form element (selected or not) @arg $form_current_value - the current value of this form element (element id) @arg $form_caption - the text to display to the right of the checkbox @arg $form_default_value - the value of this form element to use if there is no current value available */ function form_radio_button($form_name, $form_previous_value, $form_current_value, $form_caption, $form_default_value, $class = '', $on_change = '') { if ($form_previous_value == '') { $form_previous_value = $form_default_value; } if (isset($_SESSION['sess_field_values'])) { if (!empty($_SESSION['sess_field_values'][$form_name])) { $form_previous_value = $_SESSION['sess_field_values'][$form_name]; } } if ($class != '') { $class = " class='$class' "; } if ($on_change != '') { $on_change = " onChange='$on_change' "; } if ($form_previous_value == $form_current_value) { $checked = " checked aria-checked='true'"; } else { $checked = " aria-checked='false'"; } $css_id = $form_name . '_' . $form_current_value; print "\n"; } /* form_text_area - draws a standard html text area box @arg $form_name - the name of this form element @arg $form_previous_value - the current value of this form element (selected or not) @arg $form_rows - the number of rows in the text area box @arg $form_columns - the number of columns in the text area box @arg $form_default_value - the value of this form element to use if there is no current value available */ function form_text_area($form_name, $form_previous_value, $form_rows, $form_columns, $form_default_value, $class = '', $on_change = '', $placeholder = '') { if ($form_previous_value == '') { $form_previous_value = $form_default_value; } if (isset($_SESSION['sess_error_fields'])) { if (!empty($_SESSION['sess_error_fields'][$form_name])) { $class .= ($class != '' ? ' ':'') . 'txtErrorTextBox'; unset($_SESSION['sess_error_fields'][$form_name]); } } if (isset($_SESSION['sess_field_values'])) { if (!empty($_SESSION['sess_field_values'][$form_name])) { $form_previous_value = $_SESSION['sess_field_values'][$form_name]; } } if ($class != '') { $class = " class='$class' "; } if ($on_change != '') { $on_change = " onChange='$on_change' "; } if ($placeholder != '') { $placeholder = " placeholder='$placeholder'"; } print "\n"; } /* form_multi_dropdown - draws a standard html multiple select dropdown @arg $form_name - the name of this form element @arg $array_display - an array containing display values for this dropdown. it must be formatted like: $array[id] = display; @arg $sql_previous_values - an array containing keys that should be marked as selected. it must be formatted like: $array[0][$column_id] = key @arg $column_id - the name of the key used to reference the keys above */ function form_multi_dropdown($form_name, $array_display, $sql_previous_values, $column_id, $class = '', $on_change = '') { if (!is_array($sql_previous_values) && $sql_previous_values != '') { $values = explode(',', $sql_previous_values); $sql_previous_values = array(); foreach($values as $value) { $sql_previous_values[][$column_id] = $value; } } elseif ($sql_previous_values == '') { $values = db_fetch_cell_prepared('SELECT value FROM settings WHERE name = ?', array($form_name)); if ($values != '') { $values = explode(',', $values); foreach($values as $value) { $sql_previous_values[][$column_id] = $value; } } } if (isset($_SESSION['sess_error_fields'])) { if (!empty($_SESSION['sess_error_fields'][$form_name])) { $class .= ($class != '' ? ' ':'') . 'txtErrorTextBox'; unset($_SESSION['sess_error_fields'][$form_name]); } } $class = 'multiselect'; if ($class != '') { $class .= " $class"; } if ($on_change != '') { $on_change = " onChange='$on_change' "; } print "\n"; } /* * Second level form elements */ /* form_color_dropdown - draws a dropdown containing a list of colors that uses a bit of css magic to make the dropdown item background color represent each color in the list @arg $form_name - the name of this form element @arg $form_previous_value - the current value of this form element @arg $form_none_entry - the name to use for a default 'none' element in the dropdown @arg $form_default_value - the value of this form element to use if there is no current value available */ function form_color_dropdown($form_name, $form_previous_value, $form_none_entry, $form_default_value, $class = '', $on_change = '') { if ($form_previous_value == '') { $form_previous_value = $form_default_value; } if ($class != '') { $class = " class='colordropdown $class' "; } else { $class = " class='colordropdown'"; } $current_color = db_fetch_cell_prepared('SELECT hex FROM colors WHERE id = ?', array($form_previous_value)); if ($on_change != '') { $on_change = ' ' . $on_change . ';'; } $on_change = " onChange='this.style.backgroundColor=this.options[this.selectedIndex].style.backgroundColor;$on_change'"; $colors_sql = 'SELECT * FROM colors ORDER BY SUBSTRING(hex,0,2) ASC, SUBSTRING(hex,2,2) ASC, SUBSTRING(hex,4,2) ASC'; $colors_list = db_fetch_assoc($colors_sql); print ""; } /* form_font_box - draws a standard html textbox and provides status of a fonts existence @arg $form_name - the name of this form element @arg $form_previous_value - the current value of this form element @arg $form_default_value - the value of this form element to use if there is no current value available @arg $form_max_length - the maximum number of characters that can be entered into this textbox @arg $form_size - the size (width) of the textbox @arg $type - the type of textbox, either 'text' or 'password' @arg $current_id - used to determine if a current value for this form element exists or not. a $current_id of '0' indicates that no current value exists, a non-zero value indicates that a current value does exist */ function form_font_box($form_name, $form_previous_value, $form_default_value, $form_max_length, $form_size = 30, $type = 'text', $current_id = 0, $placeholder = '') { global $config; if (($form_previous_value == '') && (empty($current_id))) { $form_previous_value = $form_default_value; } print "'; } print " id='$form_name' " . ($placeholder != '' ? "placeholder='" . html_escape($placeholder) . "'":'') . " name='$form_name' size='$form_size'" . (!empty($form_max_length) ? " maxlength='$form_max_length'" : '') . " value='" . html_escape($form_previous_value) . "'>" . $extra_data; } /* form_confirm - draws a table presenting the user with some choice and allowing them to either proceed (delete) or cancel @arg $body_text - the text to prompt the user with on this form @arg $cancel_url - the url to go to when the user clicks 'cancel' @arg $action_url - the url to go to when the user clicks 'delete' */ function form_confirm($title_text, $body_text, $cancel_url, $action_url) { ?>
    ")' value=''> ")' value=''> "; } else { $cancel_action = ''; } ?>
    \n"; } ?>
    \n"; } /* form_end - draws post form end. To be combined with form_start() */ function form_end($ajax = true) { global $form_id, $form_action; print '' . PHP_EOL; if ($ajax) { ?> form_header = $form_header; $this->form_action = $form_action; $this->form_id = $form_id; $this->form_width = $form_width; $this->action_url = $action_url; $this->action_label = $action_label; $this->session_var = $session_var; $this->item_rows = $item_rows; if ($this->action_url != '' && $this->action_label == '') { $this->action_label = __('Add'); } /* default filter */ $this->default_filter = array( 'rows' => array( 'row1' => array( 'filter' => array( 'friendly_name' => __('Search'), 'filter' => FILTER_CALLBACK, 'filter_options' => array('options' => 'sanitize_search_string'), 'placeholder' => __('Enter a search term'), 'size' => '30', 'default' => '', 'pageset' => true, 'max_length' => '120' ), 'rows' => array( 'friendly_name' => __('Rows'), 'filter' => FILTER_VALIDATE_INT, 'method' => 'drop_array', 'default' => '-1', 'pageset' => true, 'array' => $this->item_rows ), 'go' => array( 'display' => __('Go'), 'title' => __('Apply filter to table'), 'method' => 'submit', ), 'clear' => array( 'display' => __('Clear'), 'title' => __('Reset filter to default values'), 'method' => 'button', ) ) ), 'sort' => array( 'sort_column' => 'name', 'sort_direction' => 'ASC' ) ); } public function __destruct() { return true; } public function set_filter_row($array, $index = false) { if ($index === false) { $this->filter_array['rows'][] = $array; } else { $this->filter_array['rows'][$index] = $array; } } public function get_filter_row($index) { if ($index === false ) { return false; } elseif (array_key_exists($this->filter_array['rows'][$index])) { return $this->filter_array['rows'][$index]; } else { return false; } } public function set_filter_array($array) { $this->filter_array = $array; } public function get_filter() { return $this->filter_array; } public function set_sort_array($sort_column, $sort_direction) { $this->filter_array['sort'] = array( 'sort_column' => $sort_column, 'sort_direction' => $sort_direction ); } public function filter_render() { /* setup filter variables */ sanitize_filter_variables(); /* render the filter in the page */ create_filter(); /* create javascript to operate of the filter */ create_javascript(); return true; } private function create_filter() { if (!sizeof($this->filter_array)) { $this->filter_array = $this->default_filter; } html_start_box($this->form_header, $this->form_width, true, '3', 'center', $this->action_url, $this->action_label); if (isset($this->form_array['rows'])) { print "
    \n"; foreach($this->form_array['rows'] as $index => $row) { print "
    \n"; print "
    \n"; foreach($row as $field_name => $field_array) { switch($field_array['method']) { case 'button': print "
    \n"; print "title) ? " title='" . htmlspecialchars($field_array->title, ENT_QUOTES, 'UTF-8'):'') . "'>"; print "
    \n"; break; case 'submit': print "
    \n"; print "title) ? " title='" . htmlspecialchars($field_array->title, ENT_QUOTES, 'UTF-8'):'') . "'>"; print "
    \n"; break; case 'timespan': print "
    " . __('Presets') . "
    \n"; break; default: if (isset($field_array['friendly_name'])) { print "
    " . $field_array['friendly_name'] . "
    \n"; } print "
    \n"; draw_edit_control($field_name, $field_array); print "
    \n"; } } print "
    \n"; print "
    \n"; } print "
    \n"; } html_end_box(true, true); } private function create_javascript() { $applyFilter = '"' . $this->form_action; $clearFilter = $applyFilter; if (strpos('?', $applyFilter) === false) { $separator = '?'; } else { $separator = '&'; } $applyFilter .= $separator . 'header=false'; $clearFilter .= $separator . 'header=false&clear=true"'; $changeChain = ''; $separator = "\"+\"&"; if (isset($this->form_array['rows'])) { foreach($this->form_array['rows'] as $index => $row) { foreach($row as $field_name => $field_array) { switch($field_array['method']) { case 'button': case 'submit': break; case 'checkbox': $applyFilter .= $separator . $field_name . "=\"+\"$(\'#" . $field_name . "').is(':checked')"; break; case 'textbox': case 'drop_array': case 'drop_files': case 'drop_sql': case 'drop_callback': case 'drop_multi': case 'drop_color': case 'drop_tree': if ($field_array['method'] != 'textbox') { $changeChain .= ($changeChain != '' ? ', ':'') . '#' . $field_name; } $applyFilter .= $separator . $field_name . "=\"+\"$(\'#" . $field_name . "').val()"; break; default: } } } $applyFilter .= '";'; } ?> 0) { if ($header != '') { print $header; } foreach ($graph_array as $graph) { if ($i == 0) { print "\n"; } ?>
    ' graph_width='' graph_height='' title_font_size=''>
    " . html_escape($graph['title_cache']) . '' : '');?>
    ' class='noprint graphDrillDown'>
    \n"; } } while(($i % $columns) != 0) { print ""; $i++; } print "\n"; } else { if ($no_graphs_message != '') { print "$no_graphs_message"; } } } /* html_graph_thumbnail_area - draws an area the contains thumbnail sized graphs @arg $graph_array - the array to contains graph information. for each graph in the array, the following two keys must exist $arr[0]["local_graph_id"] // graph id $arr[0]["title_cache"] // graph title @arg $no_graphs_message - display this message if no graphs are found in $graph_array @arg $extra_url_args - extra arguments to append to the url @arg $header - html to use as a header @arg $columns - the number of columns to present */ function html_graph_thumbnail_area(&$graph_array, $no_graphs_message = '', $extra_url_args = '', $header = '', $columns = 0) { global $config; $i = 0; $k = 0; $j = 0; $num_graphs = sizeof($graph_array); if ($columns == 0) { $columns = read_user_setting('num_columns'); } ?> 0) { if ($header != '') { print $header; } $start = true; foreach ($graph_array as $graph) { if (isset($graph['graph_template_name'])) { if (isset($prev_graph_template_name)) { if ($prev_graph_template_name != $graph['graph_template_name']) { $prev_graph_template_name = $graph['graph_template_name']; } } else { $prev_graph_template_name = $graph['graph_template_name']; } } elseif (isset($graph['data_query_name'])) { if (isset($prev_data_query_name)) { if ($prev_data_query_name != $graph['data_query_name']) { $print = true; $prev_data_query_name = $graph['data_query_name']; } else { $print = false; } } else { $print = true; $prev_data_query_name = $graph['data_query_name']; } if ($print) { if (!$start) { while(($i % $columns) != 0) { print ""; $i++; } print "\n"; } print " " . __('Data Query:') . ' ' . $graph['data_query_name'] . " \n"; $i = 0; } } if ($i == 0) { print "\n"; $start = false; } ?>
    ' graph_width='' graph_height=''>
    " . html_escape($graph['title_cache']) . '' : '');?>
    ' class='noprint graphDrillDown'>
    \n"; $start = true; } } if (!$start) { while(($i % $columns) != 0) { print ""; $i++; } print "\n"; } } else { if ($no_graphs_message != '') { print "$no_graphs_message"; } } } function graph_drilldown_icons($local_graph_id, $type = 'graph_buttons') { global $config; $aggregate_url = aggregate_build_children_url($local_graph_id); print "
    \n"; print "
    \n"; print "
    \n"; print "
    \n"; if (read_config_option('realtime_enabled') == 'on' && is_realm_allowed(25)) { if (read_user_setting('realtime_mode') == '' || read_user_setting('realtime_mode') == '1') { print "
    \n"; } else { print "
    \n"; } } if (is_realm_allowed(1043)) { print ""; print '
    '; } if ($aggregate_url != '') { print $aggregate_url; } api_plugin_hook($type, array('hook' => 'graph_buttons_thumbnails', 'local_graph_id' => $local_graph_id, 'rra' => 0, 'view_type' => '')); print "
    \n"; } /* html_nav_bar - draws a navigation bar which includes previous/next links as well as current page information @arg $base_url - the base URL will all filter options except page# @arg $max_pages - the maximum number of pages to display @arg $current_page - the current page in the navigation system @arg $rows_per_page - the number of rows that are displayed on a single page @arg $total_rows - the total number of rows in the navigation system @arg $object - the object types that is being displayed @arg $page_var - the object types that is being displayed @arg $return_to - paint the resulting page into this dom object */ function html_nav_bar($base_url, $max_pages, $current_page, $rows_per_page, $total_rows, $colspan=30, $object = '', $page_var = 'page', $return_to = '') { if ($object == '') $object = __('Rows'); if ($total_rows > $rows_per_page) { if (substr_count($base_url, '?') == 0) { $base_url = trim($base_url) . '?'; } else { $base_url = trim($base_url) . '&'; } $url_page_select = get_page_list($current_page, $max_pages, $rows_per_page, $total_rows, $base_url, $page_var, $return_to); $nav = "\n"; } elseif ($total_rows > 0) { $nav = "\n"; } else { $nav = "\n"; } return $nav; } /* html_header_sort - draws a header row suitable for display inside of a box element. When a user selects a column header, the collback function "filename" will be called to handle the sort the column and display the altered results. @arg $header_items - an array containing a list of column items to display. The format is similar to the html_header, with the exception that it has three dimensions associated with each element (db_column => display_text, default_sort_order) alternatively (db_column => array('display' = 'blah', 'align' = 'blah', 'sort' = 'blah')) @arg $sort_column - the value of current sort column. @arg $sort_direction - the value the current sort direction. The actual sort direction will be opposite this direction if the user selects the same named column. @arg $last_item_colspan - the TD 'colspan' to apply to the last cell in the row @arg $url - a base url to redirect sort actions to */ function html_header_sort($header_items, $sort_column, $sort_direction, $last_item_colspan = 1, $url = '') { /* reverse the sort direction */ if ($sort_direction == 'ASC') { $new_sort_direction = 'DESC'; } else { $new_sort_direction = 'ASC'; } $page = str_replace('.php', '', basename($_SERVER['SCRIPT_NAME'])); if (isset_request_var('action')) { $page .= '_' . get_request_var('action'); } if (isset_request_var('tab')) { $page .= '_' . get_request_var('tab'); } if (isset($_SESSION['sort_data'][$page])) { $order_data = $_SESSION['sort_data'][$page]; } else { $order_data = array(get_request_var('sort_column') => get_request_var('sort_direction')); } foreach($order_data as $key => $direction) { $primarySort = $key; break; } print "\n"; $i = 1; foreach ($header_items as $db_column => $display_array) { $isSort = ''; if (isset($display_array['nohide'])) { $nohide = 'nohide'; } else { $nohide = ''; } if (array_key_exists('display', $display_array)) { $display_text = $display_array['display']; if ($sort_column == $db_column) { $icon = $sort_direction; $direction = $new_sort_direction; if ($db_column == $primarySort) { $isSort = 'primarySort'; } else { $isSort = 'secondarySort'; } } else { if (isset($order_data[$db_column])) { $icon = $order_data[$db_column]; if ($order_data[$db_column] == 'DESC') { $direction = 'ASC'; } else { $direction = 'DESC'; } if ($db_column == $primarySort) { $isSort = 'primarySort'; } else { $isSort = 'secondarySort'; } } else { $icon = ''; if (isset($display_array['sort'])) { $direction = $display_array['sort']; } else { $direction = 'ASC'; } } } if (isset($display_array['align'])) { $align = $display_array['align']; } else { $align = 'left'; } if (isset($display_array['tip'])) { $tip = $display_array['tip']; } else { $tip = ''; } } else { /* by default, you will always sort ascending, with the exception of an already sorted column */ if ($sort_column == $db_column) { $icon = $sort_direction; $direction = $new_sort_direction; $display_text = $display_array[0]; if ($db_column == $primarySort) { $isSort = 'primarySort'; } else { $isSort = 'secondarySort'; } } else { if (isset($order_data[$db_column])) { $icon = $order_data[$db_column]; if ($order_data[$db_column] == 'DESC') { $direction = 'ASC'; } else { $direction = 'DESC'; } if ($db_column == $primarySort) { $isSort = 'primarySort'; } else { $isSort = 'secondarySort'; } } else { $icon = ''; $direction = $display_array[1]; } $display_text = $display_array[0]; } $align = 'left'; $tip = ''; } if (strtolower($icon) == 'asc') { $icon = 'fa fa-sort-asc'; } elseif (strtolower($icon) == 'desc') { $icon = 'fa fa-sort-desc'; } else { $icon = 'fa fa-unsorted'; } if (($db_column == '') || (substr_count($db_column, 'nosort'))) { print '' . $display_text . "\n"; } else { print '"; print "
    " . $display_text . "
    \n"; } $i++; } print "\n"; } /* html_header_sort_checkbox - draws a header row with a 'select all' checkbox in the last cell suitable for display inside of a box element. When a user selects a column header, the collback function "filename" will be called to handle the sort the column and display the altered results. @arg $header_items - an array containing a list of column items to display. The format is similar to the html_header, with the exception that it has three dimensions associated with each element (db_column => display_text, default_sort_order) alternatively (db_column => array('display' = 'blah', 'align' = 'blah', 'sort' = 'blah')) @arg $sort_column - the value of current sort column. @arg $sort_direction - the value the current sort direction. The actual sort direction will be opposite this direction if the user selects the same named column. @arg $form_action - the url to post the 'select all' form to */ function html_header_sort_checkbox($header_items, $sort_column, $sort_direction, $include_form = true, $form_action = '') { static $page = 0; /* reverse the sort direction */ if ($sort_direction == 'ASC') { $new_sort_direction = 'DESC'; } else { $new_sort_direction = 'ASC'; } $page = str_replace('.php', '', basename($_SERVER['SCRIPT_NAME'])); if (isset_request_var('action')) { $page .= '_' . get_request_var('action'); } if (isset_request_var('tab')) { $page .= '_' . get_request_var('tab'); } if (isset($_SESSION['sort_data'][$page])) { $order_data = $_SESSION['sort_data'][$page]; } else { $order_data = array(get_request_var('sort_column') => get_request_var('sort_direction')); } foreach($order_data as $key => $direction) { $primarySort = $key; break; } /* default to the 'current' file */ if ($form_action == '') { $form_action = get_current_page(); } print "\n"; foreach($header_items as $db_column => $display_array) { $isSort = ''; if (isset($display_array['nohide'])) { $nohide = 'nohide'; } else { $nohide = ''; } $icon = ''; if (array_key_exists('display', $display_array)) { $display_text = $display_array['display']; if ($sort_column == $db_column) { $icon = $sort_direction; $direction = $new_sort_direction; if ($db_column == $primarySort) { $isSort = 'primarySort'; } else { $isSort = 'secondarySort'; } } else { if (isset($order_data[$db_column])) { $icon = $order_data[$db_column]; if ($order_data[$db_column] == 'DESC') { $direction = 'ASC'; } else { $direction = 'DESC'; } if ($db_column == $primarySort) { $isSort = 'primarySort'; } else { $isSort = 'secondarySort'; } } else { $icon = ''; if (isset($display_array['sort'])) { $direction = $display_array['sort']; } else { $direction = 'ASC'; } } } if (isset($display_array['align'])) { $align = $display_array['align']; } else { $align = 'left'; } if (isset($display_array['tip'])) { $tip = $display_array['tip']; } else { $tip = ''; } } else { /* by default, you will always sort ascending, with the exception of an already sorted column */ if ($sort_column == $db_column) { $icon = $sort_direction; $direction = $new_sort_direction; $display_text = $display_array[0]; if ($db_column == $primarySort) { $isSort = 'primarySort'; } else { $isSort = 'secondarySort'; } } else { if (isset($order_data[$db_column])) { $icon = $order_data[$db_column]; if ($order_data[$db_column] == 'DESC') { $direction = 'ASC'; } else { $direction = 'DESC'; } if ($db_column == $primarySort) { $isSort = 'primarySort'; } else { $isSort = 'secondarySort'; } } else { $icon = ''; $direction = $display_array[1]; } $display_text = $display_array[0]; } $align = 'left'; $tip = ''; } if (strtolower($icon) == 'asc') { $icon = 'fa fa-sort-asc'; } elseif (strtolower($icon) == 'desc') { $icon = 'fa fa-sort-desc'; } else { $icon = 'fa fa-unsorted'; } if (($db_column == '') || (substr_count($db_column, 'nosort'))) { print '" . $display_text . "\n"; } else { print '"; print "
    " . $display_text . "
    \n"; } } print "" . ($include_form ? "
    \n":""); print "\n"; $page++; } /* html_header - draws a header row suitable for display inside of a box element @arg $header_items - an array containing a list of items to be included in the header alternatively and array of header names and alignment array('display' = 'blah', 'align' = 'blah') @arg $last_item_colspan - the TD 'colspan' to apply to the last cell in the row */ function html_header($header_items, $last_item_colspan = 1) { print "\n"; $i = 0; foreach($header_items as $item) { if (is_array($item)) { if (isset($item['nohide'])) { $nohide = 'nohide'; } else { $nohide = ''; } if (isset($item['align'])) { $align = $item['align']; } else { $align = 'left'; } print "" . $item['display'] . "\n"; } else { print "" . $item . "\n"; } $i++; } print "\n"; } /* html_section_header - draws a header row suitable for display inside of a box element but for display as a secton title and not as a series of table header columns @arg $header_name - an array of the display name of the header for the section and optional alignment. @arg $last_item_colspan - the TD 'colspan' to apply to the last cell in the row */ function html_section_header($header_item, $last_item_colspan = 1) { print "\n"; if (is_array($header_item) && isset($header_item['display'])) { print "" . $header_item['display'] . "\n"; } else { print "" . $header_item . "\n"; } print "\n"; } /* html_header_checkbox - draws a header row with a 'select all' checkbox in the last cell suitable for display inside of a box element @arg $header_items - an array containing a list of items to be included in the header alternatively and array of header names and alignment array('display' = 'blah', 'align' = 'blah') @arg $form_action - the url to post the 'select all' form to */ function html_header_checkbox($header_items, $include_form = true, $form_action = "", $resizable = true) { /* default to the 'current' file */ if ($form_action == "") { $form_action = get_current_page(); } print "\n"; foreach($header_items as $item) { if (is_array($item)) { if (isset($item['nohide'])) { $nohide = 'nohide'; } else { $nohide = ''; } if (isset($item['align'])) { $align = $item['align']; } else { $align = 'left'; } print "" . $item['display'] . ""; } else { print "" . $item . "\n"; } } print "\n" . ($include_form ? "\n":""); print "\n"; } /* html_create_list - draws the items for an html dropdown given an array of data @arg $form_data - an array containing data for this dropdown. it can be formatted in one of two ways: $array["id"] = "value"; -- or -- $array[0]["id"] = 43; $array[0]["name"] = "Red"; @arg $column_display - used to indentify the key to be used for display data. this is only applicable if the array is formatted using the second method above @arg $column_id - used to indentify the key to be used for id data. this is only applicable if the array is formatted using the second method above @arg $form_previous_value - the current value of this form element */ function html_create_list($form_data, $column_display, $column_id, $form_previous_value) { if (empty($column_display)) { if (sizeof($form_data)) { foreach (array_keys($form_data) as $id) { print '\n"; } } } else { if (sizeof($form_data)) { foreach ($form_data as $row) { print "\n"; } else { print '>' . title_trim(null_out_substitutions(html_escape($row[$column_display])), 75) . "\n"; } } } } } /* html_escape_request_var - sanitizes a request variable for display @arg $string - string the request variable to escape @returns $new_string - the escaped request variable to be returned. */ function html_escape_request_var($string) { return html_escape(get_request_var($string)); } /* html_escape - sanitizes a string for display @arg $string - string the string to escape @returns $new_string - the escaped string to be returned. */ function html_escape($string) { static $charset; if ($charset == '') { $charset = ini_get('default_charset'); } if ($charset == '') { $charset = 'UTF-8'; } return htmlspecialchars($string, ENT_QUOTES, $charset, false); } /* html_split_string - takes a string and breaks it into a number of
    separated segments @arg $string - string to be modified and returned @arg $length - the maximal string length to split to @arg $forgiveness - the maximum number of characters to walk back from to determine the correct break location. @returns $new_string - the modified string to be returned. */ function html_split_string($string, $length = 70, $forgiveness = 10) { $new_string = ''; $j = 0; $done = false; while (!$done) { if (strlen($string) > $length) { for($i = 0; $i < $forgiveness; $i++) { if (substr($string, $length-$i, 1) == ' ') { $new_string .= substr($string, 0, $length-$i) . '
    '; break; } } $string = substr($string, $length-$i); } else { $new_string .= $string; $done = true; } $j++; if ($j > 4) break; } return $new_string; } /* draw_graph_items_list - draws a nicely formatted list of graph items for display on an edit form @arg $item_list - an array representing the list of graph items. this array should come directly from the output of db_fetch_assoc() @arg $filename - the filename to use when referencing any external url @arg $url_data - any extra GET url information to pass on when referencing any external url @arg $disable_controls - whether to hide all edit/delete functionality on this form */ function draw_graph_items_list($item_list, $filename, $url_data, $disable_controls) { global $config; include($config['include_path'] . '/global_arrays.php'); print ""; DrawMatrixHeaderItem(__('Graph Item'),'',1); DrawMatrixHeaderItem(__('Data Source'),'',1); DrawMatrixHeaderItem(__('Graph Item Type'),'',1); DrawMatrixHeaderItem(__('CF Type'),'',1); DrawMatrixHeaderItem(__('Alpha %'),'',1); DrawMatrixHeaderItem(__('Item Color'),'',4); print ''; $group_counter = 0; $_graph_type_name = ''; $i = 0; if (sizeof($item_list)) { foreach ($item_list as $item) { /* graph grouping display logic */ $this_row_style = ''; $use_custom_class = false; $hard_return = ''; if (!preg_match('/(GPRINT|TEXTALIGN|HRULE|VRULE|TICK)/', $graph_item_types[$item['graph_type_id']])) { $this_row_style = 'font-weight: bold;'; $use_custom_class = true; if ($group_counter % 2 == 0) { $customClass = 'graphItem'; } else { $customClass = 'graphItemAlternate'; } $group_counter++; } $_graph_type_name = $graph_item_types[$item['graph_type_id']]; /* alternating row color */ if ($use_custom_class == false) { print "\n"; } else { print ""; } print ''; if ($disable_controls == false) { print ""; } print __('Item # %d', ($i+1)); if ($disable_controls == false) { print ''; } print ''; if (empty($item['data_source_name'])) { $item['data_source_name'] = __('No Task'); } switch (true) { case preg_match('/(TEXTALIGN)/', $_graph_type_name): $matrix_title = 'TEXTALIGN: ' . ucfirst($item['textalign']); break; case preg_match('/(TICK)/', $_graph_type_name): $matrix_title = '(' . $item['data_source_name'] . '): ' . $item['text_format']; break; case preg_match('/(AREA|STACK|GPRINT|LINE[123])/', $_graph_type_name): $matrix_title = '(' . $item['data_source_name'] . '): ' . $item['text_format']; break; case preg_match('/(HRULE)/', $_graph_type_name): $matrix_title = 'HRULE: ' . $item['value']; break; case preg_match('/(VRULE)/', $_graph_type_name): $matrix_title = 'VRULE: ' . $item['value']; break; case preg_match('/(COMMENT)/', $_graph_type_name): $matrix_title = 'COMMENT: ' . $item['text_format']; break; } if (preg_match('/(TEXTALIGN)/', $_graph_type_name)) { $hard_return = ''; } elseif ($item['hard_return'] == 'on') { $hard_return = "<HR>"; } /* data source */ print "" . html_escape($matrix_title) . $hard_return . ''; /* graph item type */ print "" . $graph_item_types[$item['graph_type_id']] . ''; if (!preg_match('/(TICK|TEXTALIGN|HRULE|VRULE)/', $_graph_type_name)) { print "" . $consolidation_functions[$item['consolidation_function_id']] . ''; } else { print '' . __('N/A') . ''; } /* alpha type */ if (preg_match('/(AREA|STACK|TICK|LINE[123])/', $_graph_type_name)) { print "" . round((hexdec($item['alpha'])/255)*100) . '%'; } else { print "\n"; } /* color name */ if (!preg_match('/(TEXTALIGN)/', $_graph_type_name)) { print "'; print "" . $item['hex'] . ''; } else { print ''; } if ($disable_controls == false) { print "\n"; if ($i != sizeof($item_list)-1) { print "\n"; } else { print "\n"; } if ($i > 0) { print "\n"; } else { print "\n"; } print "\n"; print "\n"; } print ""; $i++; } } else { print "" . __('No Items') . ""; } } function is_menu_pick_active($menu_url) { static $url_array, $url_parts; $menu_parts = array(); /* break out the URL and variables */ if (!is_array($url_array) || (is_array($url_array) && !sizeof($url_array))) { $url_array = parse_url($_SERVER['REQUEST_URI']); if (isset($url_array['query'])) { parse_str($url_array['query'], $url_parts); } else { $url_parts = array(); } } $menu_array = parse_url($menu_url); if (basename($url_array['path']) == basename($menu_array['path'])) { if (isset($menu_array['query'])) { parse_str($menu_array['query'], $menu_parts); } else { $menu_parts = array(); } if (isset($menu_parts['id'])) { if (isset($url_parts['id'])) { if ($menu_parts['id'] == $url_parts['id']) { return true; } } } elseif (isset($menu_parts['action'])) { if (isset($url_parts['action'])) { if ($menu_parts['action'] == $url_parts['action']) { return true; } } } else { return true; } } return false; } /* draw_menu - draws the cacti menu for display in the console */ function draw_menu($user_menu = "") { global $config, $user_auth_realm_filenames, $menu, $menu_glyphs; if (!is_array($user_menu)) { $user_menu = $menu; } //print "
    ";print_r($_SERVER);print "
    "; //print "
    ";print_r($user_menu);print "
    ";exit; print "
    \n"; } /* draw_actions_dropdown - draws a table the allows the user to select an action to perform on one or more data elements @arg $actions_array - an array that contains a list of possible actions. this array should be compatible with the form_dropdown() function @arg $delete_action - if there is a delete action that should surpress removal of rows specify it here. If you don't want any delete actions, set to 0.*/ function draw_actions_dropdown($actions_array, $delete_action = 1) { global $config; if (!isset($actions_array[0])) { $my_actions[0] = __('Choose an action'); $my_actions += $actions_array; $actions_array = $my_actions; } ?>
    images/arrow.gif' alt=''> ' title=''>
    $children) { if (sizeof($children)) { foreach($children as $page => $name) { if (basename($page) == $basename) { return true; } } } } } return false; } function html_show_tabs_left() { global $config, $tabs_left; $realm_allowed = array(); $realm_allowed[7] = is_realm_allowed(7); $realm_allowed[8] = is_realm_allowed(8); $realm_allowed[18] = is_realm_allowed(18); $realm_allowed[19] = is_realm_allowed(19); $realm_allowed[21] = is_realm_allowed(21); $realm_allowed[22] = is_realm_allowed(22); if ($realm_allowed[8]) { $show_console_tab = true; } else { $show_console_tab = false; } if (get_selected_theme() == 'classic') { if ($show_console_tab == true) { ?> href="index.php"><?php print __('Console');?> 1 && $config['connection'] != 'online') { // Don't show graphs tab when offline } else { $file = get_current_page(); if ($file == "graph_view.php" || $file == "graph.php") { print "" . __("; } else { print "" . __("; } } } if ($realm_allowed[21] || $realm_allowed[22]) { if ($config['poller_id'] > 1) { // Don't show reports tabe if not poller 1 } else { if (substr_count($_SERVER["REQUEST_URI"], "reports_")) { print '' . __('Reporting') . ''; } else { print '' . __('Reporting') . ''; } } } if ($realm_allowed[18] || $realm_allowed[19]) { if (substr_count($_SERVER["REQUEST_URI"], "clog")) { print '' . __('Logs'). ''; } else { print '' . __('Logs') . ''; } } api_plugin_hook('top_graph_header_tabs'); if ($config['poller_id'] > 1 && $config['connection'] != 'online') { // Only show external links when online } else { $external_links = db_fetch_assoc('SELECT id, title FROM external_links WHERE style="TAB" AND enabled="on" ORDER BY sortorder'); if (sizeof($external_links)) { foreach($external_links as $tab) { if (is_realm_allowed($tab['id']+10000)) { $parsed_url = parse_url($_SERVER['REQUEST_URI']); $down = false; if (basename($parsed_url['path']) == 'link.php') { if (isset($parsed_url['query'])) { $queries = explode('&', $parsed_url['query']); foreach($queries as $q) { list($var, $value) = explode('=', $q); if ($var == 'id') { if ($value == $tab['id']) { $down = true; break; } } } } } print '' . $tab['title'] . ''; } } } } } else { if ($show_console_tab) { $tabs_left[] = array( 'title' => __('Console'), 'id' => 'maintab-anchor-console', 'image' => '', 'url' => $config['url_path'] . 'index.php', ); } if ($realm_allowed[7]) { if ($config['poller_id'] > 1 && $config['connection'] != 'online') { // Don't show the graphs tab when offline } else { $tabs_left[] = array( 'title' => __('Graphs'), 'id' => 'maintab-anchor-graphs', 'image' => '', 'url' => $config['url_path'] . 'graph_view.php', ); } } if ($realm_allowed[21] || $realm_allowed[22]) { if ($config['poller_id'] > 1) { // Don't show the reports tab on other pollers } else { $tabs_left[] = array( 'title' => __('Reporting'), 'id' => 'maintab-anchor-reports', 'image' => '', 'url' => $config['url_path'] . ($realm_allowed[22] ? 'reports_admin.php':'reports_user.php'), ); } } if ($realm_allowed[18] || $realm_allowed[19]) { $tabs_left[] = array( 'title' => __('Logs'), 'id' => 'maintab-anchor-logs', 'image' => '', 'url' => $config['url_path'] . ($realm_allowed[18] ? 'clog.php':'clog_user.php'), ); } // Get Plugin Text Out of Band ob_start(); api_plugin_hook('top_graph_header_tabs'); $tab_text = trim(ob_get_clean()); $tab_text = str_replace('', '|', $tab_text); $tab_text = str_replace('', '', $tab_text); $elements = explode('|', $tab_text); foreach($elements as $p) { $p = trim($p); if ($p == '') { continue; } $altpos = strpos($p, 'alt='); $hrefpos = strpos($p, 'href='); if ($altpos >= 0) { $alt = substr($p, $altpos+4); $parts = explode("'", $alt); if ($parts[0] == '') { $alt = $parts[1]; } else { $alt = $parts[0]; } } else { $alt = __('Title'); } if ($hrefpos >= 0) { $href = substr($p, $hrefpos+5); $parts = explode("'", $href); if ($parts[0] == '') { $href = $parts[1]; } else { $href = $parts[0]; } } else { $href = 'unknown'; } $tabs_left[] = array('title' => ucwords($alt), 'url' => $href); } if ($config['poller_id'] > 1 && $config['connection'] != 'online') { // Only show external links when online } else { $external_links = db_fetch_assoc('SELECT id, title FROM external_links WHERE style="TAB" AND enabled="on" ORDER BY sortorder'); if (sizeof($external_links)) { foreach($external_links as $tab) { if (is_realm_allowed($tab['id']+10000)) { $tabs_left[] = array( 'title' => $tab['title'], 'id' => 'maintab-anchor-link' . $tab['id'], 'image' => '', 'url' => $config['url_path'] . 'link.php?id=' . $tab['id'] ); } } } } $i = 0; $me_base = get_current_page(); foreach($tabs_left as $tab) { $tab_base = basename($tab['url']); if ($tab_base == 'graph_view.php' && ($me_base == 'graph_view.php' || $me_base == 'graph.php')) { $tabs_left[$i]['selected'] = true; } elseif (isset_request_var('id') && ($tab_base == 'link.php?id=' . get_nfilter_request_var('id')) && $me_base == 'link.php') { $tabs_left[$i]['selected'] = true; } elseif ($tab_base == 'index.php' && is_console_page($me_base)) { $tabs_left[$i]['selected'] = true; } elseif ($tab_base == $me_base) { $tabs_left[$i]['selected'] = true; } $i++; } $i = 0; print "
    \n"; } } function html_graph_tabs_right($current_user) { global $config, $tabs_right; $theme = get_selected_theme(); if ($theme == 'classic') { if (is_view_allowed('show_tree')) { ?>'>images/tab_mode_tree.gif' title='' alt=''>'>images/tab_mode_list.gif' title='' alt=''>'>images/tab_mode_preview.gif' title='' alt=''> 
    __('Tree View'), 'image' => 'include/themes/' . $theme . '/images/tab_tree.gif', 'id' => 'tree', 'url' => 'graph_view.php?action=tree', ); } if (is_view_allowed('show_list')) { $tabs_right[] = array( 'title' => __('List View'), 'image' => 'include/themes/' . $theme . '/images/tab_list.gif', 'id' => 'list', 'url' => 'graph_view.php?action=list', ); } if (is_view_allowed('show_preview')) { $tabs_right[] = array( 'title' => __('Preview'), 'image' => 'include/themes/' . $theme . '/images/tab_preview.gif', 'id' => 'preview', 'url' => 'graph_view.php?action=preview', ); } $i = 0; foreach($tabs_right as $tab) { if ($tab['id'] == 'tree') { if (isset_request_var('action') && get_nfilter_request_var('action') == 'tree') { $tabs_right[$i]['selected'] = true; } } elseif ($tab['id'] == 'list') { if (isset_request_var('action') && get_nfilter_request_var('action') == 'list') { $tabs_right[$i]['selected'] = true; } } elseif ($tab['id'] == 'preview') { if (isset_request_var('action') && get_nfilter_request_var('action') == 'preview') { $tabs_right[$i]['selected'] = true; } } elseif (strstr(get_current_page(false), $tab['url'])) { $tabs_right[$i]['selected'] = true; } $i++; } print "
    \n"; } } function html_host_filter($host_id = '-1', $call_back = 'applyFilter', $sql_where = '', $noany = false, $nonone = false) { $theme = get_selected_theme(); if (strpos($call_back, '()') === false) { $call_back .= '()'; } if ($theme == 'classic' || !read_config_option('autocomplete_enabled')) { ?> 0) { $hostname = db_fetch_cell_prepared("SELECT description FROM host WHERE id = ?", array($host_id)); } elseif ($host_id == 0) { $hostname = __('None'); } else { $hostname = __('Any'); } ?> ' . __('Replacement Method') . '
      '; $ravgnan .= '
    • ' . __('Average') . '
    • '; $ravgnan .= '
    • ' . __('NaN\'s') . '
    • '; $ravgnan .= '
    • ' . __('Last Known Good') . '
    • '; $ravgnan .= '
    '; $rstddev = '
  • ' . __('Standard Deviations') . '
      '; for($i = 1; $i <= 10; $i++) { $rstddev .= '
    • ' . __('%s Standard Deviations', $i) . '
    • '; } $rstddev .= '
  • '; $rvarpct = '
  • ' . __('Variance Percentage') . '
      '; for($i = 1; $i <= 10; $i++) { $rvarpct .= '
    • ' . round($i * 100,0) . ' %
    • '; } $rvarpct .= '
  • '; $rvarout = '
  • ' . __('Variance Outliers') . '
      '; for($i = 3; $i <= 10; $i++) { $rvarout .= '
    • ' . __('%d Outliers', $i) . '
    • '; } $rvarout .= '
  • '; $rkills = '
  • ' . __('Kills Per RRA') . '
      '; for($i = 1; $i <= 10; $i++) { $rkills .= '
    • ' . __('%d Spikes', $i) . '
    • '; } $rkills .= '
  • '; ?> <?php echo $title; ?> include/themes//images/favicon.ico' rel='shortcut icon'> include/themes//images/cacti_logo.gif' rel='icon' sizes='96x96'> $ldi_value) { if ($peak) { $fetch_array[$i] = @rrdtool_function_fetch($ldi, $start_seconds, $end_seconds, $resolution, false, 'MAX'); if (!sizeof($fetch_array[$i])) { $fetch_array[$i] = @rrdtool_function_fetch($ldi, $start_seconds, $end_seconds, $resolution); } } else { $fetch_array[$i] = @rrdtool_function_fetch($ldi, $start_seconds, $end_seconds, $resolution); } /* clean up unwanted data source items */ if (!empty($fetch_array[$i])) { foreach ($fetch_array[$i]['data_source_names'] as $id => $name) { /* get rid of the Nth max for now since we'll need to re-calculate it later */ if ($name == 'nth_percentile_maximum') { unset($fetch_array[$i]['data_source_names'][$id], $fetch_array[$i]['values'][$id]); continue; } /* clean up DS items that aren't defined on the graph */ if (!in_array($name, $local_data_id[$ldi])) { unset($fetch_array[$i]['data_source_names'][$id], $fetch_array[$i]['values'][$id]); } } $i++; } } /* Create our array for working */ if (empty($fetch_array[0]['data_source_names'])) { /* here to avoid warning on non-exist file */ $fetch_array = array(); } else { $sum_array['data_source_names'] = $fetch_array[0]['data_source_names']; } if (sizeof($fetch_array)) { /* Create hash of ds_item_name => array or fetch_array indexes */ /* this is used to later sum, max and total the data sources used on the graph */ /* Loop fetch array index */ $dsi_name_to_id = array(); for ($i=0; $i $id_array) { $sum_array['data_source_names'][$i] = $ds_name; foreach ($id_array as $id) { $fetch_id = array_search($ds_name,$fetch_array[$id]['data_source_names']); /* Sum up like ds names */ for ($j=0; $j 0) { $sum = ($sum * $ds_steps * $rra_steps); } else { $sum = 0; } /* collect summation values in this array so we can return them */ $return_array[$fetch_array['data_source_names'][$i]] = $sum; } } return $return_array; } /* variable_nth_percentile - given a Nth percentile variable, calculate the Nth percentile and format it for display on the graph @arg $regexp_match_array - the array that contains each argument in the Nth percentile variable. it should be formatted like so: $arr[0] // full variable string $arr[1] // Nth percentile $arr[2] // bits or bytes $arr[3] // power of 10 divisor $arr[4] // current, total, max, total_peak, all_max_current, all_max_peak $arr[5] // digits of floating point precision @arg $graph - an array that contains the current graph data @arg $graph_item - an array that contains the current graph item @arg $graph_items - an array that contains all graph items @arg $graph_start - the start time to use for the data calculation. this value can either be absolute (unix timestamp) or relative (to now) @arg $graph_end - the end time to use for the data calculation. this value can either be absolute (unix timestamp) or relative (to now) @arg $seconds_between_graph_updates - the number of seconds between each update on the graph which varies depending on the RRA in use @returns - a string containing the Nth percentile suitable for placing on the graph */ function variable_nth_percentile(&$regexp_match_array, &$graph, &$graph_item, &$graph_items, $graph_start, $graph_end) { global $graph_item_types; if (sizeof($regexp_match_array) == 0) { return 0; } if ($graph['base_value'] == 1024) { $pow = 10.24; } else { $pow = 10; } if ($regexp_match_array[1] < 1 || $regexp_match_array[1] > 99) { /* error Nth Percentile variable is incorrect */ return -1; } /* Get the Nth percentile values */ switch ($regexp_match_array[4]) { case 'current': $nth_cache[$graph_item['local_data_id']] = nth_percentile($graph_item['local_data_id'], $graph_start, $graph_end, $regexp_match_array[1]); break; case 'max': $nth_cache[$graph_item['local_data_id']] = nth_percentile($graph_item['local_data_id'], $graph_start, $graph_end, $regexp_match_array[1], 0, true); break; case 'total': case 'all_max_current': foreach ($graph_items as $graph_element) { if (!empty($graph_element['local_data_id'])) { $nth_cache[$graph_element['local_data_id']] = nth_percentile($graph_element['local_data_id'], $graph_start, $graph_end, $regexp_match_array[1]); } } break; case 'total_peak': case 'all_max_peak': foreach ($graph_items as $graph_element) { if (!empty($graph_element['local_data_id'])) { $nth_cache[$graph_element['local_data_id']] = nth_percentile($graph_element['local_data_id'], $graph_start, $graph_end, $regexp_match_array[1], 0, true); } } break; case 'aggregate': case 'aggregate_sum': $local_data_array = array(); foreach ($graph_items as $graph_element) { if (!empty($graph_element['data_template_rrd_id']) && preg_match('/(AREA|STACK|LINE[123])/', $graph_item_types[$graph_element['graph_type_id']])) { $local_data_array[$graph_element['local_data_id']][] = $graph_element['data_source_name']; } } $nth_cache[0] = nth_percentile($local_data_array, $graph_start, $graph_end, $regexp_match_array[1]); break; case 'aggregate_max': $local_data_array = array(); foreach ($graph_items as $graph_element) { if (!empty($graph_element['data_template_rrd_id']) && preg_match('/(AREA|STACK|LINE[123])/', $graph_item_types[$graph_element['graph_type_id']])) { $local_data_array[$graph_element['local_data_id']][] = $graph_element['data_source_name']; } } $nth_cache[0] = nth_percentile($local_data_array, $graph_start, $graph_end, $regexp_match_array[1], 0, true); break; case 'aggregate_current': $local_data_array = array(); if (!empty($graph_item['data_source_name'])) { foreach ($graph_items as $graph_element) { if ($graph_item['data_source_name'] == $graph_element['data_source_name'] && !empty($graph_element['data_template_rrd_id']) && preg_match('/(AREA|STACK|LINE[123])/', $graph_item_types[$graph_element['graph_type_id']])) { $local_data_array[$graph_element['local_data_id']][] = $graph_element['data_source_name']; } } $nth_cache[0] = nth_percentile($local_data_array, $graph_start, $graph_end, $regexp_match_array[1]); } break; } $nth = 0; /* format the output according to args passed to the variable */ switch($regexp_match_array[4]) { case 'current': if (!empty($nth_cache[$graph_item['local_data_id']][$graph_item['data_source_name']])) { $nth = $nth_cache[$graph_item['local_data_id']][$graph_item['data_source_name']]; $nth = ($regexp_match_array[2] == 'bits') ? $nth * 8 : $nth; $nth /= pow($pow, intval($regexp_match_array[3])); } break; case 'total': foreach ($graph_items as $graph_element) { if (!empty($graph_element['data_template_rrd_id']) && preg_match('/(AREA|STACK|LINE[123])/', $graph_item_types[$graph_element['graph_type_id']])) { if (!empty($nth_cache[$graph_element['local_data_id']][$graph_element['data_source_name']])) { $local_nth = $nth_cache[$graph_element['local_data_id']][$graph_element['data_source_name']]; $local_nth = ($regexp_match_array[2] == 'bits') ? $local_nth * 8 : $local_nth; $local_nth /= pow($pow, intval($regexp_match_array[3])); $nth += $local_nth; } } } break; case 'max': if (!empty($nth_cache[$graph_item['local_data_id']]['nth_percentile_maximum'])) { $nth = $nth_cache[$graph_item['local_data_id']]['nth_percentile_maximum']; $nth = ($regexp_match_array[2] == 'bits') ? $nth * 8 : $nth; $nth /= pow($pow, intval($regexp_match_array[3])); } break; case 'total_peak': foreach ($graph_items as $graph_element) { if (!empty($graph_element['data_template_rrd_id']) && preg_match('/(AREA|STACK|LINE[123])/', $graph_item_types[$graph_element['graph_type_id']])) { if (!empty($nth_cache[$graph_element['local_data_id']]['nth_percentile_maximum'])) { $local_nth = $nth_cache[$graph_element['local_data_id']]['nth_percentile_maximum']; $local_nth = ($regexp_match_array[2] == 'bits') ? $local_nth * 8 : $local_nth; $local_nth /= pow($pow, intval($regexp_match_array[3])); $nth += $local_nth; } } } break; case 'all_max_current': foreach ($graph_items as $graph_element) { if (!empty($graph_element['data_template_rrd_id']) && preg_match('/(AREA|STACK|LINE[123])/', $graph_item_types[$graph_element['graph_type_id']])) { if (!empty($ninety_fifth_cache[$graph_element['local_data_id']][$graph_element['data_source_name']])) { $local_nth = $ninety_fifth_cache[$graph_element['local_data_id']][$graph_element['data_source_name']]; $local_nth = ($regexp_match_array[2] == 'bits') ? $local_nth * 8 : $local_nth; $local_nth /= pow($pow, intval($regexp_match_array[3])); if ($local_nth > $nth) { $nth = $local_nth; } } } } break; case 'all_max_peak': foreach ($graph_items as $graph_element) { if (!empty($graph_element['data_template_rrd_id']) && preg_match('/(AREA|STACK|LINE[123])/', $graph_item_types[$graph_element['graph_type_id']])) { if (!empty($nth_cache[$graph_element['local_data_id']]['nth_percentile_maximum'])) { $local_nth = $nth_cache[$graph_element['local_data_id']]['nth_percentile_maximum']; $local_nth = ($regexp_match_array[2] == 'bits') ? $local_nth * 8 : $local_nth; $local_nth /= pow($pow, intval($regexp_match_array[3])); if ($local_nth > $nth) { $nth = $local_nth; } } } } break; case 'aggregate': case 'aggregate_current': if (!empty($nth_cache[0]['nth_percentile_aggregate_total'])) { $local_nth = $nth_cache[0]['nth_percentile_aggregate_total']; $local_nth = ($regexp_match_array[2] == 'bits') ? $local_nth * 8 : $local_nth; $local_nth /= pow($pow, intval($regexp_match_array[3])); $nth = $local_nth; } break; case 'aggregate_max': if (!empty($nth_cache[0]['nth_percentile_aggregate_max'])) { $local_nth = $nth_cache[0]['nth_percentile_aggregate_max']; $local_nth = ($regexp_match_array[2] == 'bits') ? $local_nth * 8 : $local_nth; $local_nth /= pow($pow, intval($regexp_match_array[3])); $nth = $local_nth; } break; case 'aggregate_sum': if (!empty($nth_cache[0]['nth_percentile_aggregate_sum'])) { $local_nth = $nth_cache[0]['nth_percentile_aggregate_sum']; $local_nth = ($regexp_match_array[2] == 'bits') ? $local_nth * 8 : $local_nth; $local_nth /= pow($pow, intval($regexp_match_array[3])); $nth = $local_nth; } break; } /* determine the floating point precision */ if (is_numeric($regexp_match_array[5])) { $round_to = $regexp_match_array[5]; } else { $round_to = 2; } /* return the final result and round off to two decimal digits */ return round($nth, $round_to); } /* variable_bandwidth_summation - given a bandwidth summation variable, calculate the summation and format it for display on the graph @arg $regexp_match_array - the array that contains each argument in the bandwidth summation variable. it should be formatted like so: $arr[0] // full variable string $arr[1] // power of 10 divisor or 'auto' $arr[2] // current, total $arr[3] // digits of floating point precision $arr[4] // seconds to perform the calculation for or 'auto' @arg $graph - an array that contains the current graph data @arg $graph_item - an array that contains the current graph item @arg $graph_items - an array that contains all graph items @arg $graph_start - the start time to use for the data calculation. this value can either be absolute (unix timestamp) or relative (to now) @arg $graph_end - the end time to use for the data calculation. this value can either be absolute (unix timestamp) or relative (to now) @arg $seconds_between_graph_updates - the number of seconds between each update on the graph which varies depending on the RRA in use @arg $rra_step - how many periods each sample in the RRA counts for, values above '1' result in an averaged summation @arg $ds_step - how many seconds each period represents @returns - a string containg the bandwidth summation suitable for placing on the graph */ function variable_bandwidth_summation(&$regexp_match_array, &$graph, &$graph_item, &$graph_items, $graph_start, $graph_end, $rra_step, $ds_step) { global $graph_item_types; if (sizeof($regexp_match_array) == 0) { return 0; } if ($graph['base_value'] == 1024) { $pow = 10.24; } else { $pow = 10; } if (is_numeric($regexp_match_array[4])) { $summation_timespan_start = -$regexp_match_array[4]; } else { $summation_timespan_start = $graph_start; } $summation_cache = array(); switch($regexp_match_array[2]) { case 'current': $summation_cache[$graph_item['local_data_id']] = bandwidth_summation($graph_item['local_data_id'], $summation_timespan_start, $graph_end, $rra_step, $ds_step); break; case 'total': foreach ($graph_items as $graph_element) { if (!empty($graph_element['local_data_id'])) { $summation_cache[$graph_element['local_data_id']] = bandwidth_summation($graph_element['local_data_id'], $summation_timespan_start, $graph_end, $rra_step, $ds_step); } } break; case 'atomic': $summation_cache[$graph_item['local_data_id']] = bandwidth_summation($graph_item['local_data_id'], $summation_timespan_start, $graph_end, $rra_step, 1); break; } $summation = 0; /* format the output according to args passed to the variable */ switch ($regexp_match_array[2]) { case 'current': case 'atomic': if (isset($summation_cache[$graph_item['local_data_id']][$graph_item['data_source_name']])) { $summation = $summation_cache[$graph_item['local_data_id']][$graph_item['data_source_name']]; } break; case 'total': foreach ($graph_items as $graph_element) { if (!empty($graph_element['data_template_rrd_id']) && isset($summation_cache[$graph_element['local_data_id']][$graph_element['data_source_name']]) && preg_match('/(AREA|STACK|LINE[123])/', $graph_item_types[$graph_element['graph_type_id']])) { $summation += $summation_cache[$graph_element['local_data_id']][$graph_element['data_source_name']]; } } break; } if (preg_match('/\d+/', $regexp_match_array[1])) { $summation /= pow($pow, intval($regexp_match_array[1])); } elseif ($regexp_match_array[1] == 'auto') { if ($graph['base_value'] == 1000) { if ($summation < 1000) { $summation_label = 'B'; } elseif ($summation < 1000000) { $summation_label = 'KB'; $summation /= 1000; } elseif ($summation < 1000000000) { $summation_label = 'MB'; $summation /= 1000000; } elseif ($summation < 1000000000000) { $summation_label = 'GB'; $summation /= 1000000000; } else { $summation_label = 'TB'; $summation /= 1000000000000; } } else { if ($summation < 1024) { $summation_label = 'iB'; } elseif ($summation < 1048576) { $summation_label = 'KiB'; $summation /= 1024; } elseif ($summation < 1073741824) { $summation_label = 'MiB'; $summation /= 1048576; } elseif ($summation < 1099511627776) { $summation_label = 'GiB'; $summation /= 1073741824; } else { $summation_label = 'TiB'; $summation /= 1099511627776; } } } /* determine the floating point precision */ if (is_numeric($regexp_match_array[3])) { $round_to = $regexp_match_array[3]; } else { $round_to = 2; } /* substitute in the final result and round off to two decimal digits */ if (isset($summation_label)) { return number_format_i18n($summation, $round_to) . " $summation_label"; } else { return number_format_i18n($summation, $round_to); } } cacti-1.1.38/lib/functions.php0000664000175000017500000047427313264740213015565 0ustar tromantroman $max_length) { return substr($text, 0, $max_length) . '...'; } else { return $text; } } /* filter_value - a quick way to highlight text in a table from general filtering @arg $text - the string to filter @arg $filter - the search term to filter for @arg $href - the href if you wish to have an anchor returned @returns - the filtered string */ function filter_value($value, $filter, $href = '') { static $charset; if ($charset == '') { $charset = ini_get('default_charset'); } if ($charset == '') { $charset = 'UTF-8'; } $value = htmlspecialchars($value, ENT_QUOTES, $charset, false); if ($filter != '') { $value = preg_replace('#(' . $filter . ')#i', "\\1", $value); } if ($href != '') { $value = '' . $value . ''; } return $value; } /* set_graph_config_option - deprecated - wrapper to set_user_setting(). @arg $config_name - the name of the configuration setting as specified $settings array @arg $value - the values to be saved @arg $user - the user id, otherwise the session user @returns - void */ function set_graph_config_option($config_name, $value, $user = -1) { set_user_setting($config_name, $value, $user); } /* graph_config_value_exists - deprecated - wrapper to user_setting_exists @arg $config_name - the name of the configuration setting as specified $settings_user array in 'include/global_settings.php' @arg $user_id - the id of the user to check the configuration value for @returns (bool) - true if a value exists, false if a value does not exist */ function graph_config_value_exists($config_name, $user_id) { return user_setting_exists($config_name, $user_id); } /* read_default_graph_config_option - deprecated - wrapper to read_default_user_setting @arg $config_name - the name of the configuration setting as specified $settings array in 'include/global_settings.php' @returns - the default value of the configuration option */ function read_default_graph_config_option($config_name) { return read_default_user_setting($config_name); } /* read_graph_config_option - deprecated - finds the current value of a graph configuration setting @arg $config_name - the name of the configuration setting as specified $settings_user array in 'include/global_settings.php' @returns - the current value of the graph configuration option */ function read_graph_config_option($config_name, $force = false) { return read_user_setting($config_name, false, $force); } /* set_user_setting - sets/updates a user setting with the given value. @arg $config_name - the name of the configuration setting as specified $settings array @arg $value - the values to be saved @arg $user - the user id, otherwise the session user @returns - void */ function set_user_setting($config_name, $value, $user = -1) { if ($user == -1) { $user = $_SESSION['sess_user_id']; } db_execute_prepared('REPLACE INTO settings_user SET user_id = ?, name = ?, value = ?', array($user, $config_name, $value)); unset($_SESSION['sess_user_config_array']); unset($settings_user); } /* user_setting_exists - determines if a value exists for the current user/setting specified @arg $config_name - the name of the configuration setting as specified $settings_user array in 'include/global_settings.php' @arg $user_id - the id of the user to check the configuration value for @returns (bool) - true if a value exists, false if a value does not exist */ function user_setting_exists($config_name, $user_id) { static $user_setting_values = array(); if (!isset($user_setting_values[$config_name])) { $value = db_fetch_cell_prepared('SELECT COUNT(*) FROM settings_user WHERE name = ? AND user_id = ?', array($config_name, $user_id)); if ($value > 0) { $user_setting_values[$config_name] = true; } else { $user_setting_values[$config_name] = false; } } return $user_setting_values[$config_name]; } /* read_default_user_setting - finds the default value of a user configuration setting @arg $config_name - the name of the configuration setting as specified $settings array in 'include/global_settings.php' @returns - the default value of the configuration option */ function read_default_user_setting($config_name) { global $config, $settings_user; foreach ($settings_user as $tab_array) { if (isset($tab_array[$config_name]) && isset($tab_array[$config_name]['default'])) { return $tab_array[$config_name]['default']; } else { foreach ($tab_array as $field_array) { if (isset($field_array['items']) && isset($field_array['items'][$config_name]) && isset($field_array['items'][$config_name]['default'])) { return $field_array['items'][$config_name]['default']; } } } } } /* read_user_setting - finds the current value of a graph configuration setting @arg $config_name - the name of the configuration setting as specified $settings_user array in 'include/global_settings.php' @arg $default - the default value is none is set @arg $force - pull the data from the database if true ignoring session @arg $user - assume this user's identity @returns - the current value of the user setting */ function read_user_setting($config_name, $default = false, $force = false, $user = 0) { global $config; /* users must have cacti user auth turned on to use this, or the guest account must be active */ if ($user == 0 && isset($_SESSION['sess_user_id'])) { $effective_uid = $_SESSION['sess_user_id']; } elseif (read_config_option('auth_method') == 0 || $user > 0) { /* first attempt to get the db setting for guest */ if ($user == 0) { $effective_uid = db_fetch_cell("SELECT user_auth.id FROM settings INNER JOIN user_auth ON user_auth.username = settings.value WHERE settings.name = 'guest_user'"); if ($effective_uid == '') { $effective_uid = 0; } } else { $effective_uid = $user; } $db_setting = db_fetch_row_prepared('SELECT value FROM settings_user WHERE name = ? AND user_id = ?', array($config_name, $effective_uid)); if (sizeof($db_setting)) { return $db_setting['value']; } elseif ($default !== false) { return $default; } else { return read_default_user_setting($config_name); } } else { $effective_uid = 0; } if (!$force) { if (isset($_SESSION['sess_user_config_array'])) { $user_config_array = $_SESSION['sess_user_config_array']; } } if (!isset($user_config_array[$config_name])) { $db_setting = db_fetch_row_prepared('SELECT value FROM settings_user WHERE name = ? AND user_id = ?', array($config_name, $effective_uid)); if (sizeof($db_setting)) { $user_config_array[$config_name] = $db_setting['value']; } elseif ($default !== false) { $user_config_array[$config_name] = $default; } else { $user_config_array[$config_name] = read_default_user_setting($config_name); } if (isset($_SESSION)) { $_SESSION['sess_user_config_array'] = $user_config_array; } else { $config['config_user_settings_array'] = $user_config_array; } } return $user_config_array[$config_name]; } /* set_config_option - sets/updates a cacti config option with the given value. @arg $config_name - the name of the configuration setting as specified $settings array @arg $value - the values to be saved @returns - void */ function set_config_option($config_name, $value) { db_execute_prepared('REPLACE INTO settings SET name = ?, value = ?', array($config_name, $value)); } /* config_value_exists - determines if a value exists for the current user/setting specified @arg $config_name - the name of the configuration setting as specified $settings array in 'include/global_settings.php' @returns (bool) - true if a value exists, false if a value does not exist */ function config_value_exists($config_name) { static $config_values = array(); if (!isset($config_values[$config_name])) { $value = db_fetch_cell_prepared('SELECT COUNT(*) FROM settings WHERE name = ?', array($config_name)); if ($value > 0) { $config_values[$config_name] = true; } else { $config_values[$config_name] = false; } } return $config_values[$config_name]; } /* read_default_config_option - finds the default value of a Cacti configuration setting @arg $config_name - the name of the configuration setting as specified $settings array in 'include/global_settings.php' @returns - the default value of the configuration option */ function read_default_config_option($config_name) { global $config, $settings; if (is_array($settings)) { foreach ($settings as $tab_array) { if (isset($tab_array[$config_name]) && isset($tab_array[$config_name]['default'])) { return $tab_array[$config_name]['default']; } else { foreach ($tab_array as $field_array) { if (isset($field_array['items']) && isset($field_array['items'][$config_name]) && isset($field_array['items'][$config_name]['default'])) { return $field_array['items'][$config_name]['default']; } } } } } } /* read_config_option - finds the current value of a Cacti configuration setting @arg $config_name - the name of the configuration setting as specified $settings array in 'include/global_settings.php' @returns - the current value of the configuration option */ function read_config_option($config_name, $force = false) { global $config; if (isset($_SESSION['sess_config_array'])) { $config_array = $_SESSION['sess_config_array']; } elseif (isset($config['config_options_array'])) { $config_array = $config['config_options_array']; } if ((!isset($config_array[$config_name])) || ($force)) { $db_setting = db_fetch_row_prepared('SELECT value FROM settings WHERE name = ?', array($config_name), false); if (isset($db_setting['value'])) { $config_array[$config_name] = $db_setting['value']; } else { $config_array[$config_name] = read_default_config_option($config_name); } if (isset($_SESSION)) { $_SESSION['sess_config_array'] = $config_array; } else { $config['config_options_array'] = $config_array; } } return $config_array[$config_name]; } /* * get_selected_theme - checks the user settings and if the user selected * theme is set, returns it otherwise returns the system default. * * @return - the theme name */ function get_selected_theme() { global $config, $themes; // shortcut if theme is set in session if (isset($_SESSION['selected_theme'])) { if (file_exists($config['base_path'] . '/include/themes/' . $_SESSION['selected_theme'] . '/main.css')) { return $_SESSION['selected_theme']; } } // default to system selected theme $theme = read_config_option('selected_theme'); // figure out user defined theme if (isset($_SESSION['sess_user_id'])) { // fetch user defined theme $user_theme = db_fetch_cell_prepared("SELECT value FROM settings_user WHERE name='selected_theme' AND user_id = ?", array($_SESSION['sess_user_id'])); // user has a theme if (! empty($user_theme)) { $theme = $user_theme;; } } if (!file_exists($config['base_path'] . '/include/themes/' . $theme . '/main.css')) { foreach($themes as $t => $name) { if (file_exists($config['base_path'] . '/include/themes/' . $t . '/main.css')) { $theme = $t; db_execute_prepared('UPDATE settings_user SET value = ? WHERE user_id = ? AND name="selected_theme"', array($theme, $_SESSION['sess_user_id'])); break; } } } // update session $_SESSION['selected_theme'] = $theme; return $theme; } /* form_input_validate - validates the value of a form field and Takes the appropriate action if the input is not valid @arg $field_value - the value of the form field @arg $field_name - the name of the $_POST field as specified in the HTML @arg $regexp_match - (optionally) enter a regular expression to match the value against @arg $allow_nulls - (bool) whether to allow an empty string as a value or not @arg $custom_message - (int) the ID of the message to raise upon an error which is defined in the $messages array in 'include/global_arrays.php' @returns - the original $field_value */ function form_input_validate($field_value, $field_name, $regexp_match, $allow_nulls, $custom_message = 3) { global $messages; /* write current values to the "field_values" array so we can retain them */ $_SESSION['sess_field_values'][$field_name] = $field_value; if (($allow_nulls == true) && ($field_value == '')) { return $field_value; } if ($allow_nulls == false && $field_value == '') { if (read_config_option('developer_mode') == 'on') { cacti_log("Form Validation Failed: Variable '$field_name' does not allow nulls and variable is null", false); } raise_message($custom_message); $_SESSION['sess_error_fields'][$field_name] = $field_name; } elseif ($regexp_match != '' && !preg_match('/' . $regexp_match . '/', $field_value)) { if (read_config_option('developer_mode') == 'on') { cacti_log("Form Validation Failed: Variable '$field_name' with Value '$field_value' Failed REGEX '$regexp_match'", false); } raise_message($custom_message); $_SESSION['sess_error_fields'][$field_name] = $field_name; } return $field_value; } /* check_changed - determines if a request variable has changed between page loads @returns - (bool) true if the value changed between loads */ function check_changed($request, $session) { if ((isset_request_var($request)) && (isset($_SESSION[$session]))) { if (get_nfilter_request_var($request) != $_SESSION[$session]) { return 1; } } } /* is_error_message - finds whether an error message has been raised and has not been outputted to the user @returns - (bool) whether the messages array contains an error or not */ function is_error_message() { global $config, $messages; if (isset($_SESSION['sess_messages'])) { if (is_array($_SESSION['sess_messages'])) { foreach (array_keys($_SESSION['sess_messages']) as $current_message_id) { if ($messages[$current_message_id]['type'] == 'error') { return true; } } } else { return true; } } return false; } /* raise_message - mark a message to be displayed to the user once display_output_messages() is called @arg $message_id - the ID of the message to raise as defined in $messages in 'include/global_arrays.php' */ function raise_message($message_id) { $_SESSION['sess_messages'][$message_id] = $message_id; } /* display_output_messages - displays all of the cached messages from the raise_message() function and clears the message cache */ function display_output_messages() { global $messages; $omessage = array(); $debug_message = debug_log_return('new_graphs'); if ($debug_message != '') { $omessage['type'] = 'info'; $omessage['message'] = $debug_message; debug_log_clear('new_graphs'); } elseif (isset($_SESSION['sess_messages'])) { if (is_error_message()) { $omessage['type'] = 'error'; } else { $omessage['type'] = 'info'; } if (is_array($_SESSION['sess_messages'])) { foreach (array_keys($_SESSION['sess_messages']) as $current_message_id) { if (isset($messages[$current_message_id]['message'])) { $message = $messages[$current_message_id]['message']; if ($current_message_id == 'custom_error') { $message = $_SESSION['custom_error']; } $omessage['message'] = (isset($omessage['message']) && $omessage['message'] != '' ? $omessage['message'] . '
    ':'') . $message; } else { cacti_log("ERROR: Cacti Error Message Id '$current_message_id' Not Defined", false, 'WEBUI'); } } } else { $omessage['message'] = $_SESSION['sess_messages']; } } kill_session_var('sess_messages'); return json_encode($omessage); } function display_custom_error_message($message) { $_SESSION['sess_messages'] = $message; } /* clear_messages - clears the message cache */ function clear_messages() { kill_session_var('sess_messages'); } /* kill_session_var - kills a session variable using unset() */ function kill_session_var($var_name) { /* register_global = on: reset local settings cache so the user sees the new settings */ unset($_SESSION[$var_name]); /* register_global = off: reset local settings cache so the user sees the new settings */ /* session_unregister is deprecated in PHP 5.3.0, unset is sufficient */ if (version_compare(PHP_VERSION, '5.3.0', '<')) { session_unregister($var_name); } else { unset($var_name); } } /* array_rekey - changes an array in the form: '$arr[0] = array('id' => 23, 'name' => 'blah')' to the form '$arr = array(23 => 'blah')' @arg $array - (array) the original array to manipulate @arg $key - the name of the key @arg $key_value - the name of the key value @returns - the modified array */ function array_rekey($array, $key, $key_value) { $ret_array = array(); if (is_array($array)) { foreach ($array as $item) { $item_key = $item[$key]; if (is_array($key_value)) { foreach ($key_value as $value) { $ret_array[$item_key][$value] = $item[$value]; } } else { $ret_array[$item_key] = $item[$key_value]; } } } return $ret_array; } /* cacti_log - logs a string to Cacti's log file or optionally to the browser @arg $string - the string to append to the log file @arg $output - (bool) whether to output the log line to the browser using print() or not @arg $environ - (string) tell's from where the script was called from @arg $level - (int) only log if above the specified log level */ function cacti_log($string, $output = false, $environ = 'CMDPHP', $level = '') { global $config; if (isset($_SERVER['PHP_SELF'])) { $current_file = basename($_SERVER['PHP_SELF']); $dir_name = dirname($_SERVER['PHP_SELF']); } elseif (isset($_SERVER['SCRIPT_NAME'])) { $current_file = basename($_SERVER['SCRIPT_NAME']); $dir_name = dirname($_SERVER['SCRIPT_NAME']); } elseif (isset($_SERVER['SCRIPT_FILENAME'])) { $current_file = basename($_SERVER['SCRIPT_FILENAME']); $dir_name = dirname($_SERVER['SCRIPT_FILENAME']); } else { $current_file = basename(__FILE__); $dir_name = dirname(__FILE__); } $force_level = ''; $debug_files = read_config_option('selective_debug'); if ($debug_files != '') { $files = explode(',', $debug_files); if (array_search($current_file, $files) !== false) { $force_level = POLLER_VERBOSITY_DEBUG; } } if (strpos($dir_name, 'plugins') !== false) { $debug_plugins = read_config_option('selective_plugin_debug'); if ($debug_plugins != '') { $debug_plugins = explode(',', $debug_plugins); foreach($debug_plugins as $myplugin) { if (strpos($dir_name, DIRECTORY_SEPARATOR . $myplugin) !== false) { $force_level = POLLER_VERBOSITY_DEBUG; break; } } } } /* only log if the specific level is reached, developer debug is special low + specific devdbg calls */ if ($force_level == '') { if ($level != '') { $logVerbosity = read_config_option('log_verbosity'); if ($logVerbosity == POLLER_VERBOSITY_DEVDBG) { if ($level != POLLER_VERBOSITY_DEVDBG) { if ($level > POLLER_VERBOSITY_LOW) { return; } } } elseif ($level > $logVerbosity) { return; } } } /* fill in the current date for printing in the log */ if (defined('CACTI_DATE_TIME_FORMAT')) { $date = date(CACTI_DATE_TIME_FORMAT); } else { $date = date('Y-m-d H:i:s'); } /* determine how to log data */ $logdestination = read_config_option('log_destination'); $logfile = read_config_option('path_cactilog'); /* format the message */ if ($environ == 'POLLER') { $message = "$date - " . $environ . ': Poller[' . $config['poller_id'] . '] ' . $string . "\n"; } else { $message = "$date - " . $environ . ' ' . $string . "\n"; } /* Log to Logfile */ if (($logdestination == 1 || $logdestination == 2) && read_config_option('log_verbosity') != POLLER_VERBOSITY_NONE) { if ($logfile == '') { $logfile = $config['base_path'] . '/log/cacti.log'; } /* echo the data to the log (append) */ $fp = @fopen($logfile, 'a'); if ($fp) { @fwrite($fp, $message); fclose($fp); } } /* Log to Syslog/Eventlog */ /* Syslog is currently Unstable in Win32 */ if ($logdestination == 2 || $logdestination == 3) { $log_type = ''; if (strpos($string,'ERROR:') !== false) { $log_type = 'err'; } elseif (strpos($string,'WARNING:') !== false) { $log_type = 'warn'; } elseif (strpos($string,'STATS:') !== false) { $log_type = 'stat'; } elseif (strpos($string,'NOTICE:') !== false) { $log_type = 'note'; } if ($log_type != '') { if ($config['cacti_server_os'] == 'win32') { openlog('Cacti', LOG_NDELAY | LOG_PID, LOG_USER); } else { openlog('Cacti', LOG_NDELAY | LOG_PID, LOG_SYSLOG); } if ($log_type == 'err' && read_config_option('log_perror')) { syslog(LOG_CRIT, $environ . ': ' . $string); } elseif ($log_type == 'warn' && read_config_option('log_pwarn')) { syslog(LOG_WARNING, $environ . ': ' . $string); } elseif (($log_type == 'stat' || $log_type == 'note') && read_config_option('log_pstats')) { syslog(LOG_INFO, $environ . ': ' . $string); } closelog(); } } /* print output to standard out if required */ if ($output == true && isset($_SERVER['argv'][0])) { print $message; } } /* tail_file - Emulates the tail function with PHP native functions. It is used in 0.8.6 to speed the viewing of the Cacti log file, which can be problematic in the 0.8.6 branch. @arg $file_name - (char constant) the name of the file to tail $line_cnt - (int constant) the number of lines to count $message_type - (int constant) the type of message to return $filter - (char) the filtering expression to search for $page_nr - (int) the page we want to show rows for $total_rows - (int) the total number of rows in the logfile */ function tail_file($file_name, $number_of_lines, $message_type = -1, $filter = '', $page_nr = 1, &$total_rows) { if (!file_exists($file_name)) { touch($file_name); return array(); } if (!is_readable($file_name)) { echo __('Error %s is not readable', $file_name); return array(); } $filter = strtolower($filter); $fp = fopen($file_name, 'r'); /* Count all lines in the logfile */ $total_rows = 0; while (($line = fgets($fp)) !== false) { if (determine_display_log_entry($message_type, $line, $filter)) { ++$total_rows; } } /* rewind file pointer, to start all over */ rewind($fp); $start = $total_rows - ($page_nr * $number_of_lines); $end = $start + $number_of_lines; if ($start < 0) { $start = 0; } /* load up the lines into an array */ $file_array = array(); $i = 0; while (($line = fgets($fp)) !== false) { $display = determine_display_log_entry($message_type, $line, $filter); if ($display === false) { continue; } if ($i < $start) { ++$i; continue; } if ($i >= $end) { break; } ++$i; $file_array[$i] = $line; } fclose($fp); return $file_array; } /** * Function to determine if we display the line * * @param int $message_type * @param string $line * @param string $filter * @return bool */ function determine_display_log_entry($message_type, $line, $filter) { /* determine if we are to display the line */ switch ($message_type) { case 1: /* stats */ $display = (strpos($line, 'STATS') !== false); break; case 2: /* warnings */ $display = (strpos($line, 'WARN') !== false); break; case 3: /* errors */ $display = (strpos($line, 'ERROR') !== false); break; case 4: /* debug */ $display = (strpos($line, 'DEBUG') !== false && strpos($line, ' SQL ') === false); break; case 5: /* sql calls */ $display = (strpos($line, ' SQL ') !== false); break; default: /* all other lines */ case -1: /* all */ $display = true; break; } /* match any lines that match the search string */ if ($display === true && $filter != '') { if (stripos($line, $filter) !== false) { return $line; } elseif (validate_is_regex($filter) && preg_match('/' . $filter . '/i', $line)) { return $line; } return false; } return $display; } /* update_host_status - updates the host table with informaton about it's status. It will also output to the appropriate log file when an event occurs. @arg $status - (int constant) the status of the host (Up/Down) $host_id - (int) the host ID for the results $hosts - (array) a memory resident host table for speed $ping - (class array) results of the ping command */ function update_host_status($status, $host_id, &$hosts, &$ping, $ping_availability, $print_data_to_stdout) { $issue_log_message = false; $ping_failure_count = read_config_option('ping_failure_count'); $ping_recovery_count = read_config_option('ping_recovery_count'); /* initialize fail and recovery dates correctly */ if ($hosts[$host_id]['status_fail_date'] == ''){ $hosts[$host_id]['status_fail_date'] = '0000-00-00 00:00:00'; } if ($hosts[$host_id]['status_rec_date'] == ''){ $hosts[$host_id]['status_rec_date'] = '0000-00-00 00:00:00'; } if ($status == HOST_DOWN) { /* Set initial date down. BUGFIX */ if (empty($hosts[$host_id]['status_fail_date'])) { $hosts[$host_id]['status_fail_date'] = date('Y-m-d H:i:s'); } /* update total polls, failed polls and availability */ $hosts[$host_id]['failed_polls']++; $hosts[$host_id]['total_polls']++; $hosts[$host_id]['availability'] = 100 * ($hosts[$host_id]['total_polls'] - $hosts[$host_id]['failed_polls']) / $hosts[$host_id]['total_polls']; /* determine the error message to display */ if (($ping_availability == AVAIL_SNMP_AND_PING) || ($ping_availability == AVAIL_SNMP_OR_PING)) { if (($hosts[$host_id]['snmp_community'] == '') && ($hosts[$host_id]['snmp_version'] != 3)) { /* snmp version 1/2 without community string assume SNMP test to be successful due to backward compatibility issues */ $hosts[$host_id]['status_last_error'] = $ping->ping_response; }else { $hosts[$host_id]['status_last_error'] = $ping->snmp_response . ', ' . $ping->ping_response; } } elseif ($ping_availability == AVAIL_SNMP) { if (($hosts[$host_id]['snmp_community'] == '') && ($hosts[$host_id]['snmp_version'] != 3)) { $hosts[$host_id]['status_last_error'] = 'Device does not require SNMP'; }else { $hosts[$host_id]['status_last_error'] = $ping->snmp_response; } }else { $hosts[$host_id]['status_last_error'] = $ping->ping_response; } /* determine if to send an alert and update remainder of statistics */ if ($hosts[$host_id]['status'] == HOST_UP) { /* increment the event failure count */ $hosts[$host_id]['status_event_count']++; /* if it's time to issue an error message, indicate so */ if ($hosts[$host_id]['status_event_count'] >= $ping_failure_count) { /* host is now down, flag it that way */ $hosts[$host_id]['status'] = HOST_DOWN; $issue_log_message = true; /* update the failure date only if the failure count is 1 */ if ($hosts[$host_id]['status_event_count'] == $ping_failure_count) { $hosts[$host_id]['status_fail_date'] = date('Y-m-d H:i:s'); } /* host is down, but not ready to issue log message */ } else { /* host down for the first time, set event date */ if ($hosts[$host_id]['status_event_count'] == $ping_failure_count) { $hosts[$host_id]['status_fail_date'] = date('Y-m-d H:i:s'); } } /* host is recovering, put back in failed state */ } elseif ($hosts[$host_id]['status'] == HOST_RECOVERING) { $hosts[$host_id]['status_event_count'] = 1; $hosts[$host_id]['status'] = HOST_DOWN; /* host was unknown and now is down */ } elseif ($hosts[$host_id]['status'] == HOST_UNKNOWN) { $hosts[$host_id]['status'] = HOST_DOWN; $hosts[$host_id]['status_event_count'] = 0; } else { $hosts[$host_id]['status_event_count']++; } /* host is up!! */ } else { /* update total polls and availability */ $hosts[$host_id]['total_polls']++; $hosts[$host_id]['availability'] = 100 * ($hosts[$host_id]['total_polls'] - $hosts[$host_id]['failed_polls']) / $hosts[$host_id]['total_polls']; if ((($ping_availability == AVAIL_SNMP_AND_PING) || ($ping_availability == AVAIL_SNMP_OR_PING) || ($ping_availability == AVAIL_SNMP)) && (!is_numeric($ping->snmp_status))) { $ping->snmp_status = 0.000; } if ((($ping_availability == AVAIL_SNMP_AND_PING) || ($ping_availability == AVAIL_SNMP_OR_PING) || ($ping_availability == AVAIL_PING)) && (!is_numeric($ping->ping_status))) { $ping->ping_status = 0.000; } /* determine the ping statistic to set and do so */ if (($ping_availability == AVAIL_SNMP_AND_PING) || ($ping_availability == AVAIL_SNMP_OR_PING)) { if (($hosts[$host_id]['snmp_community'] == '') && ($hosts[$host_id]['snmp_version'] != 3)) { $ping_time = 0.000; }else { /* calculate the average of the two times */ $ping_time = ($ping->snmp_status + $ping->ping_status) / 2; } } elseif ($ping_availability == AVAIL_SNMP) { if (($hosts[$host_id]['snmp_community'] == '') && ($hosts[$host_id]['snmp_version'] != 3)) { $ping_time = 0.000; }else { $ping_time = $ping->snmp_status; } } elseif ($ping_availability == AVAIL_NONE) { $ping_time = 0.000; } else { $ping_time = $ping->ping_status; } /* update times as required */ if (is_numeric($ping_time)) { $hosts[$host_id]['cur_time'] = $ping_time; /* maximum time */ if ($ping_time > $hosts[$host_id]['max_time']) { $hosts[$host_id]['max_time'] = $ping_time; } /* minimum time */ if ($ping_time < $hosts[$host_id]['min_time']) { $hosts[$host_id]['min_time'] = $ping_time; } /* average time */ $hosts[$host_id]['avg_time'] = (($hosts[$host_id]['total_polls']-1-$hosts[$host_id]['failed_polls']) * $hosts[$host_id]['avg_time'] + $ping_time) / ($hosts[$host_id]['total_polls']-$hosts[$host_id]['failed_polls']); } /* the host was down, now it's recovering */ if (($hosts[$host_id]['status'] == HOST_DOWN) || ($hosts[$host_id]['status'] == HOST_RECOVERING )) { /* just up, change to recovering */ if ($hosts[$host_id]['status'] == HOST_DOWN) { $hosts[$host_id]['status'] = HOST_RECOVERING; $hosts[$host_id]['status_event_count'] = 1; } else { $hosts[$host_id]['status_event_count']++; } /* if it's time to issue a recovery message, indicate so */ if ($hosts[$host_id]['status_event_count'] >= $ping_recovery_count) { /* host is up, flag it that way */ $hosts[$host_id]['status'] = HOST_UP; $issue_log_message = true; /* update the recovery date only if the recovery count is 1 */ if ($ping_recovery_count == $ping_recovery_count) { $hosts[$host_id]['status_rec_date'] = date('Y-m-d H:i:s'); } /* reset the event counter */ $hosts[$host_id]['status_event_count'] = 0; /* host is recovering, but not ready to issue log message */ } else { /* host recovering for the first time, set event date */ if ($hosts[$host_id]['status_event_count'] == $ping_recovery_count) { $hosts[$host_id]['status_rec_date'] = date('Y-m-d H:i:s'); } } } else { /* host was unknown and now is up */ $hosts[$host_id]['status'] = HOST_UP; $hosts[$host_id]['status_event_count'] = 0; } } /* if the user wants a flood of information then flood them */ if (($hosts[$host_id]['status'] == HOST_UP) || ($hosts[$host_id]['status'] == HOST_RECOVERING)) { /* log ping result if we are to use a ping for reachability testing */ if ($ping_availability == AVAIL_SNMP_AND_PING) { cacti_log("Device[$host_id] PING: " . $ping->ping_response, $print_data_to_stdout, 'PING', POLLER_VERBOSITY_HIGH); cacti_log("Device[$host_id] SNMP: " . $ping->snmp_response, $print_data_to_stdout, 'PING', POLLER_VERBOSITY_HIGH); } elseif ($ping_availability == AVAIL_SNMP) { if (($hosts[$host_id]['snmp_community'] == '') && ($hosts[$host_id]['snmp_version'] != 3)) { cacti_log("Device[$host_id] SNMP: Device does not require SNMP", $print_data_to_stdout, 'PING', POLLER_VERBOSITY_HIGH); } else { cacti_log("Device[$host_id] SNMP: " . $ping->snmp_response, $print_data_to_stdout, 'PING', POLLER_VERBOSITY_HIGH); } } else { cacti_log("Device[$host_id] PING: " . $ping->ping_response, $print_data_to_stdout, 'PING', POLLER_VERBOSITY_HIGH); } } else { if ($ping_availability == AVAIL_SNMP_AND_PING) { cacti_log("Device[$host_id] PING: " . $ping->ping_response, $print_data_to_stdout, 'PING', POLLER_VERBOSITY_HIGH); cacti_log("Device[$host_id] SNMP: " . $ping->snmp_response, $print_data_to_stdout, 'PING', POLLER_VERBOSITY_HIGH); } elseif ($ping_availability == AVAIL_SNMP) { cacti_log("Device[$host_id] SNMP: " . $ping->snmp_response, $print_data_to_stdout, 'PING', POLLER_VERBOSITY_HIGH); } else { cacti_log("Device[$host_id] PING: " . $ping->ping_response, $print_data_to_stdout, 'PING', POLLER_VERBOSITY_HIGH); } } /* if there is supposed to be an event generated, do it */ if ($issue_log_message) { if ($hosts[$host_id]['status'] == HOST_DOWN) { cacti_log("Device[$host_id] ERROR: HOST EVENT: Device is DOWN Message: " . $hosts[$host_id]['status_last_error'], $print_data_to_stdout); } else { cacti_log("Device[$host_id] NOTICE: HOST EVENT: Device Returned FROM DOWN State: ", $print_data_to_stdout); } } db_execute_prepared('UPDATE host SET status = ?, status_event_count = ?, status_fail_date = ?, status_rec_date = ?, status_last_error = ?, min_time = ?, max_time = ?, cur_time = ?, avg_time = ?, total_polls = ?, failed_polls = ?, availability = ? WHERE hostname = ?', array( $hosts[$host_id]['status'], $hosts[$host_id]['status_event_count'], $hosts[$host_id]['status_fail_date'], $hosts[$host_id]['status_rec_date'], $hosts[$host_id]['status_last_error'], $hosts[$host_id]['min_time'], $hosts[$host_id]['max_time'], $hosts[$host_id]['cur_time'], $hosts[$host_id]['avg_time'], $hosts[$host_id]['total_polls'], $hosts[$host_id]['failed_polls'], $hosts[$host_id]['availability'], $hosts[$host_id]['hostname'] ) ); } /* is_hexadecimal - test whether a string represents a hexadecimal number, ignoring space and tab, and case insensitive. @arg $result - the string to test @arg 1 if the argument is hex, 0 otherwise, and false on error */ function is_hexadecimal($result) { $hexstr = str_replace(array(' ', '-'), ':', trim($result)); $parts = explode(':', $hexstr); foreach($parts as $part) { if (strlen($part) != 2) { return false; } if (ctype_xdigit($part) == false) { return false; } } return true; } /* is_mac_address - determine's if the result value is a mac address @arg $result - (string) some string to be evaluated @returns - (bool) either to result is a mac address of not */ function is_mac_address($result) { if (!defined('FILTER_VALIDATE_MAC')) { if (preg_match('/^([0-9a-f]{1,2}[\.:-]){5}([0-9a-f]{1,2})$/i', $result)) { return true; } else { return false; } } else { return filter_var($result, FILTER_VALIDATE_MAC); } } function is_hex_string($result) { if ($result == '') { return false; } $parts = explode(' ', $result); /* assume if something is a hex string it will have a length > 1 */ if (sizeof($parts) == 1) { return false; } foreach($parts as $part) { if (strlen($part) != 2) { return false; } if (ctype_xdigit($part) == false) { return false; } } return true; } /* prepare_validate_result - determine's if the result value is valid or not. If not valid returns a "U" @arg $result - (string) the result from the poll, the result can be modified in the call @returns - (bool) either to result is valid or not */ function prepare_validate_result(&$result) { /* first trim the string */ $result = trim($result, "'\"\n\r"); /* clean off ugly non-numeric data */ if (is_numeric($result)) { return true; } elseif ($result == 'U') { return true; } elseif (is_hexadecimal($result)) { return hexdec($result); } elseif (substr_count($result, ':') || substr_count($result, '!')) { /* looking for name value pairs */ if (substr_count($result, ' ') == 0) { return true; } else { $delim_cnt = 0; if (substr_count($result, ':')) { $delim_cnt = substr_count($result, ':'); } elseif (strstr($result, '!')) { $delim_cnt = substr_count($result, '!'); } $space_cnt = substr_count($result, ' '); return ($space_cnt+1 == $delim_cnt); } } else { /* strip all non numeric data */ $result = preg_replace('/[^0-9,.+-]/', '', $result); /* check the easy cases first */ /* it has no delimiters, and no space, therefore, must be numeric */ if (is_numeric($result)) { return true; } else if (is_float($result)) { return true; } else { $result = 'U'; return false; } } } /* get_full_script_path - gets the full path to the script to execute to obtain data for a given data source. this function does not work on SNMP actions, only script-based actions @arg $local_data_id - (int) the ID of the data source @returns - the full script path or (bool) false for an error */ function get_full_script_path($local_data_id) { global $config; $data_source = db_fetch_row_prepared('SELECT ' . SQL_NO_CACHE . ' data_template_data.id, data_template_data.data_input_id, data_input.type_id, data_input.input_string FROM (data_template_data, data_input) WHERE data_template_data.data_input_id = data_input.id AND data_template_data.local_data_id = ?', array($local_data_id)); /* snmp-actions don't have paths */ if (($data_source['type_id'] == DATA_INPUT_TYPE_SNMP) || ($data_source['type_id'] == DATA_INPUT_TYPE_SNMP_QUERY)) { return false; } $data = db_fetch_assoc_prepared("SELECT " . SQL_NO_CACHE . " data_input_fields.data_name, data_input_data.value FROM data_input_fields LEFT JOIN data_input_data ON (data_input_fields.id = data_input_data.data_input_field_id) WHERE data_input_fields.data_input_id = ? AND data_input_data.data_template_data_id = ? AND data_input_fields.input_output = 'in'", array($data_source['data_input_id'], $data_source['id'])); $full_path = $data_source['input_string']; if (sizeof($data)) { foreach ($data as $item) { $full_path = str_replace('<' . $item['data_name'] . '>', cacti_escapeshellarg($item['value']), $full_path); } } $search = array('', '', ''); $replace = array($config['base_path'], read_config_option('path_snmpget'), read_config_option('path_php_binary')); $full_path = str_replace($search, $replace, $full_path); /* sometimes a certain input value will not have anything entered... null out these fields in the input string so we don't mess up the script */ return preg_replace('/(<[A-Za-z0-9_]+>)+/', '', $full_path); } /* get_data_source_item_name - gets the name of a data source item or generates a new one if one does not already exist @arg $data_template_rrd_id - (int) the ID of the data source item @returns - the name of the data source item or an empty string for an error */ function get_data_source_item_name($data_template_rrd_id) { if (empty($data_template_rrd_id)) { return ''; } $data_source = db_fetch_row_prepared('SELECT ' . SQL_NO_CACHE . ' data_template_rrd.data_source_name, data_template_data.name FROM data_template_rrd INNER JOIN data_template_data ON data_template_rrd.local_data_id = data_template_data.local_data_id WHERE data_template_rrd.id = ?', array($data_template_rrd_id) ); /* use the cacti ds name by default or the user defined one, if entered */ if (empty($data_source['data_source_name'])) { /* limit input to 19 characters */ $data_source_name = clean_up_name($data_source['name']); $data_source_name = substr(strtolower($data_source_name), 0, (19-strlen($data_template_rrd_id))) . $data_template_rrd_id; return $data_source_name; } else { return $data_source['data_source_name']; } } /* get_data_source_path - gets the full path to the .rrd file associated with a given data source @arg $local_data_id - (int) the ID of the data source @arg $expand_paths - (bool) whether to expand the variable into its full path or not @returns - the full path to the data source or an empty string for an error */ function get_data_source_path($local_data_id, $expand_paths) { global $config; static $data_source_path_cache = array(); if (empty($local_data_id)) { return ''; } if (isset($data_source_path_cache[$local_data_id])) { return $data_source_path_cache[$local_data_id]; } $data_source = db_fetch_row_prepared('SELECT ' . SQL_NO_CACHE . ' name, data_source_path FROM data_template_data WHERE local_data_id = ?', array($local_data_id)); if (sizeof($data_source) > 0) { if (empty($data_source['data_source_path'])) { /* no custom path was specified */ $data_source_path = generate_data_source_path($local_data_id); } elseif (!strstr($data_source['data_source_path'], '/')) { $data_source_path = '/' . $data_source['data_source_path']; } else { $data_source_path = $data_source['data_source_path']; } /* whether to show the "actual" path or the variable name (for edit boxes) */ if ($expand_paths == true) { $data_source_path = str_replace('/', $config['rra_path'] . '/', $data_source_path); } $data_source_path_cache[$local_data_id] = $data_source_path; return $data_source_path; } } /* stri_replace - a case insensitive string replace @arg $find - needle @arg $replace - replace needle with this @arg $string - haystack @returns - the original string with '$find' replaced by '$replace' */ function stri_replace($find, $replace, $string) { $parts = explode(strtolower($find), strtolower($string)); $pos = 0; $findLength = strlen($find); foreach ($parts as $key => $part) { $partLength = strlen($part); $parts[$key] = substr($string, $pos, $partLength); $pos += $partLength + $findLength; } return (join($replace, $parts)); } /* clean_up_name - runs a string through a series of regular expressions designed to eliminate "bad" characters @arg $string - the string to modify/clean @returns - the modified string */ function clean_up_name($string) { $string = preg_replace('/[\s\.]+/', '_', $string); $string = preg_replace('/[^a-zA-Z0-9_]+/', '', $string); $string = preg_replace('/_{2,}/', '_', $string); return $string; } /* clean_up_file name - runs a string through a series of regular expressions designed to eliminate "bad" characters @arg $string - the string to modify/clean @returns - the modified string */ function clean_up_file_name($string) { $string = preg_replace('/[\s\.]+/', '_', $string); $string = preg_replace('/[^a-zA-Z0-9_-]+/', '', $string); $string = preg_replace('/_{2,}/', '_', $string); return $string; } /* clean_up_path - takes any path and makes sure it contains the correct directory separators based on the current operating system @arg $path - the path to modify @returns - the modified path */ function clean_up_path($path) { global $config; if ($config['cacti_server_os'] == 'win32') { return str_replace('/', "\\", $path); } elseif ($config['cacti_server_os'] == 'unix' || read_config_option('using_cygwin') == 'on' || read_config_option('storage_location')) { return str_replace("\\", '/', $path); } else { return $path; } } /* get_data_source_title - returns the title of a data source without using the title cache @arg $local_data_id - (int) the ID of the data source to get a title for @returns - the data source title */ function get_data_source_title($local_data_id) { $data = db_fetch_row_prepared('SELECT data_local.host_id, data_local.snmp_query_id, data_local.snmp_index, data_template_data.name FROM (data_template_data, data_local) WHERE data_template_data.local_data_id = data_local.id AND data_local.id = ?', array($local_data_id)); if (isset($data) && sizeof($data)) { if ((strstr($data['name'], '|')) && (!empty($data['host_id']))) { $data['name'] = substitute_data_input_data($data['name'], '', $local_data_id); return expand_title($data['host_id'], $data['snmp_query_id'], $data['snmp_index'], $data['name']); } else { return $data['name']; } } else { return 'Missing Datasource '.$local_data_id; } } /* get_device_name - returns the description of the device in cacti host table @arg $host_id - (int) the ID of the device to get a decription for @returns - the device name */ function get_device_name($host_id) { return db_fetch_cell_prepared('SELECT description FROM host WHERE id = ?', array($host_id)); } /* get_color - returns the hex color value from the cacti colors table @arg $color_id - (int) the ID of the cacti color @returns - the hex color value */ function get_color($color_id) { return db_fetch_cell_prepared('SELECT hex FROM colors WHERE id = ?', array($color_id)); } /* get_graph_title - returns the title of a graph without using the title cache @arg $local_graph_id - (int) the ID of the graph to get a title for @returns - the graph title */ function get_graph_title($local_graph_id) { $graph = db_fetch_row_prepared('SELECT gl.host_id, gl.snmp_query_id, gl.snmp_index, gtg.local_graph_id, gtg.t_title, gtg.title FROM graph_templates_graph AS gtg INNER JOIN graph_local AS gl ON gtg.local_graph_id = gl.id WHERE gl.id = ?', array($local_graph_id)); if (sizeof($graph)) { if (strstr($graph['title'], '|') && !empty($graph['host_id']) && $graph['t_title'] == '') { $graph['title'] = substitute_data_input_data($graph['title'], $graph, 0); return expand_title($graph['host_id'], $graph['snmp_query_id'], $graph['snmp_index'], $graph['title']); } else { return $graph['title']; } } else { return ''; } } /* get_username - returns the username for the selected user @arg $user_id - (int) the ID of the user @returns - the username */ function get_username($user_id) { return db_fetch_cell_prepared('SELECT username FROM user_auth WHERE id = ?', array($user_id)); } /* get_execution_user - returns the username of the running process @returns - the username */ function get_execution_user() { if (function_exists('posix_getpwuid')) { $user_info = posix_getpwuid(posix_geteuid()); return $user_info['name']; } else { return exec('whoami'); } } /* generate_data_source_path - creates a new data source path from scratch using the first data source item name and updates the database with the new value @arg $local_data_id - (int) the ID of the data source to generate a new path for @returns - the new generated path */ function generate_data_source_path($local_data_id) { global $config; /* try any prepend the name with the host description */ $host = db_fetch_row_prepared('SELECT host.id, host.description FROM (host, data_local) WHERE data_local.host_id = host.id AND data_local.id = ? LIMIT 1', array($local_data_id)); $host_name = $host['description']; $host_id = $host['id']; /* put it all together using the local_data_id at the end */ if (read_config_option('extended_paths') == 'on') { $new_path = "/$host_id/$local_data_id.rrd"; } else { if (!empty($host_name)) { $host_part = strtolower(clean_up_file_name($host_name)) . '_'; } /* then try and use the internal DS name to identify it */ $data_source_rrd_name = db_fetch_cell_prepared('SELECT data_source_name FROM data_template_rrd WHERE local_data_id = ? ORDER BY id LIMIT 1', array($local_data_id) ); if (!empty($data_source_rrd_name)) { $ds_part = strtolower(clean_up_file_name($data_source_rrd_name)); } else { $ds_part = 'ds'; } $new_path = "/$host_part$ds_part" . '_' . "$local_data_id.rrd"; } /* update our changes to the db */ db_execute_prepared('UPDATE data_template_data SET data_source_path = ? WHERE local_data_id = ?', array($new_path, $local_data_id)); return $new_path; } /* generate graph_best_cf - takes the requested consolidation function and maps against the list of available consolidation functions for the consolidation functions and returns the most appropriate. Typically, this will be the requested value @arg $data_template_id @arg $requested_cf @returns - the best cf to use */ function generate_graph_best_cf($local_data_id, $requested_cf) { if ($local_data_id > 0) { $avail_cf_functions = get_rrd_cfs($local_data_id); /* workaround until we have RRA presets in 0.8.8 */ if (sizeof($avail_cf_functions)) { /* check through the cf's and get the best */ foreach($avail_cf_functions as $cf) { if ($cf == $requested_cf) { return $requested_cf; } } /* if none was found, take the first */ return $avail_cf_functions[0]; } } /* if you can not figure it out return average */ return '1'; } /* get_rrd_cfs - reads the RRDfile and get's the RRA's stored in it. @arg $local_data_id @returns - array of the CF functions */ function get_rrd_cfs($local_data_id) { global $rrd_cfs, $consolidation_functions; $rrdfile = get_data_source_path($local_data_id, true); if (!isset($rrd_cfs)) { $rrd_cfs = array(); } elseif (array_key_exists($local_data_id, $rrd_cfs)) { return $rrd_cfs[$local_data_id]; } $cfs = array(); $output = @rrdtool_execute("info $rrdfile", false, RRDTOOL_OUTPUT_STDOUT); /* search for * rra[0].cf = 'LAST' * or similar */ if ($output != '') { $output = explode("\n", $output); if (sizeof($output)) { foreach($output as $line) { if (substr_count($line, '.cf')) { $values = explode('=',$line); if (!in_array(trim($values[1], '" '), $cfs)) { $cfs[] = trim($values[1], '" '); } } } } } $new_cfs = array(); if (sizeof($cfs)) { foreach($cfs as $cf) { switch($cf) { case 'AVG': case 'AVERAGE': $new_cfs[] = array_search('AVERAGE', $consolidation_functions); break; case 'MIN': $new_cfs[] = array_search('MIN', $consolidation_functions); break; case 'MAX': $new_cfs[] = array_search('MAX', $consolidation_functions); break; case 'LAST': $new_cfs[] = array_search('LAST', $consolidation_functions); break; } } } $rrd_cfs[$local_data_id] = $new_cfs; return $new_cfs; } /* generate_graph_def_name - takes a number and turns each digit into its letter-based counterpart for RRDtool DEF names (ex 1 -> a, 2 -> b, etc) @arg $graph_item_id - (int) the ID to generate a letter-based representation of @returns - a letter-based representation of the input argument */ function generate_graph_def_name($graph_item_id) { $lookup_table = array('a','b','c','d','e','f','g','h','i','j'); $result = ''; $strValGII = strval($graph_item_id); for ($i=0; $i/', $string, $matches)) { $j = 0; for ($i=0; ($i < count($matches[1])); $i++) { if (in_array($matches[1][$i], $registered_cacti_names) == false) { $j++; db_execute_prepared("UPDATE data_input_fields SET sequence = ? WHERE data_input_id = ? AND input_output IN ('in') AND data_name = ?", array($j, $data_input_id, $matches[1][$i])); } } update_replication_crc(0, 'poller_replicate_data_input_fields_crc'); } } /* move_graph_group - takes a graph group (parent+children) and swaps it with another graph group @arg $graph_template_item_id - (int) the ID of the (parent) graph item that was clicked @arg $graph_group_array - (array) an array containing the graph group to be moved @arg $target_id - (int) the ID of the (parent) graph item of the target group @arg $direction - ('next' or 'previous') whether the graph group is to be swapped with group above or below the current group */ function move_graph_group($graph_template_item_id, $graph_group_array, $target_id, $direction) { $graph_item = db_fetch_row_prepared('SELECT local_graph_id, graph_template_id FROM graph_templates_item WHERE id = ?', array($graph_template_item_id)); if (empty($graph_item['local_graph_id'])) { $sql_where = 'graph_template_id = ' . $graph_item['graph_template_id'] . ' AND local_graph_id = 0'; } else { $sql_where = 'local_graph_id = ' . $graph_item['local_graph_id']; } /* get a list of parent+children of our target group */ $target_graph_group_array = get_graph_group($target_id); /* if this "parent" item has no children, then treat it like a regular gprint */ if (sizeof($target_graph_group_array) == 0) { if ($direction == 'next') { move_item_down('graph_templates_item', $graph_template_item_id, $sql_where); } elseif ($direction == 'previous') { move_item_up('graph_templates_item', $graph_template_item_id, $sql_where); } return; } /* start the sequence at '1' */ $sequence_counter = 1; $graph_items = db_fetch_assoc_prepared("SELECT id, sequence FROM graph_templates_item WHERE $sql_where ORDER BY sequence"); if (sizeof($graph_items)) { foreach ($graph_items as $item) { /* check to see if we are at the "target" spot in the loop; if we are, update the sequences and move on */ if ($target_id == $item['id']) { if ($direction == 'next') { $group_array1 = $target_graph_group_array; $group_array2 = $graph_group_array; } elseif ($direction == 'previous') { $group_array1 = $graph_group_array; $group_array2 = $target_graph_group_array; } foreach ($group_array1 as $graph_template_item_id) { db_execute_prepared('UPDATE graph_templates_item SET sequence = ? WHERE id = ?', array($sequence_counter, $graph_template_item_id)); /* propagate to ALL graphs using this template */ if (empty($graph_item['local_graph_id'])) { db_execute_prepared('UPDATE graph_templates_item SET sequence = ? WHERE local_graph_template_item_id = ?', array($sequence_counter, $graph_template_item_id)); } $sequence_counter++; } foreach ($group_array2 as $graph_template_item_id) { db_execute_prepared('UPDATE graph_templates_item SET sequence = ? WHERE id = ?', array($sequence_counter, $graph_template_item_id)); /* propagate to ALL graphs using this template */ if (empty($graph_item['local_graph_id'])) { db_execute_prepared('UPDATE graph_templates_item SET sequence = ? WHERE local_graph_template_item_id = ?', array($sequence_counter, $graph_template_item_id)); } $sequence_counter++; } } /* make sure to "ignore" the items that we handled above */ if ((!isset($graph_group_array[$item['id']])) && (!isset($target_graph_group_array[$item['id']]))) { db_execute_prepared('UPDATE graph_templates_item SET sequence = ? WHERE id = ?', array($sequence_counter, $item['id'])); $sequence_counter++; } } } } /* get_graph_group - returns an array containing each item in the graph group given a single graph item in that group @arg $graph_template_item_id - (int) the ID of the graph item to return the group of @returns - (array) an array containing each item in the graph group */ function get_graph_group($graph_template_item_id) { global $graph_item_types; $graph_item = db_fetch_row_prepared('SELECT graph_type_id, sequence, local_graph_id, graph_template_id FROM graph_templates_item WHERE id = ?', array($graph_template_item_id)); if (empty($graph_item['local_graph_id'])) { $sql_where = 'graph_template_id = ' . $graph_item['graph_template_id'] . ' AND local_graph_id = 0'; } else { $sql_where = 'local_graph_id = ' . $graph_item['local_graph_id']; } /* parents are LINE%, AREA%, and STACK%. If not return */ if (!preg_match('/(LINE|AREA|STACK)/', $graph_item_types[$graph_item['graph_type_id']])) { return array(); } $graph_item_children_array = array(); /* put the parent item in the array as well */ $graph_item_children_array[$graph_template_item_id] = $graph_template_item_id; $graph_items = db_fetch_assoc("SELECT id, graph_type_id, text_format, hard_return FROM graph_templates_item WHERE sequence > " . $graph_item['sequence'] . " AND $sql_where ORDER BY sequence"); $is_hard = false; if (sizeof($graph_items)) { foreach ($graph_items as $item) { if ($is_hard) { return $graph_item_children_array; } elseif (strstr($graph_item_types[$item['graph_type_id']], 'GPRINT') !== false) { /* a child must be a GPRINT */ $graph_item_children_array[$item['id']] = $item['id']; if ($item['hard_return'] == 'on') { $is_hard = true; } } elseif (strstr($graph_item_types[$item['graph_type_id']], 'COMMENT') !== false) { if (preg_match_all('/\|([0-9]{1,2}):(bits|bytes):(\d):(current|total|max|total_peak|all_max_current|all_max_peak|aggregate_max|aggregate_sum|aggregate_current|aggregate):(\d)?\|/', $item['text_format'], $matches, PREG_SET_ORDER)) { $graph_item_children_array[$item['id']] = $item['id']; } elseif (preg_match_all('/\|sum:(\d|auto):(current|total|atomic):(\d):(\d+|auto)\|/', $item['text_format'], $matches, PREG_SET_ORDER)) { $graph_item_children_array[$item['id']] = $item['id']; } else { /* if not a GPRINT or special COMMENT then get out */ return $graph_item_children_array; } } else { /* if not a GPRINT or special COMMENT then get out */ return $graph_item_children_array; } } } return $graph_item_children_array; } /* get_graph_parent - returns the ID of the next or previous parent graph item id @arg $graph_template_item_id - (int) the ID of the current graph item @arg $direction - ('next' or 'previous') whether to find the next or previous parent @returns - (int) the ID of the next or previous parent graph item id */ function get_graph_parent($graph_template_item_id, $direction) { $graph_item = db_fetch_row_prepared('SELECT sequence, local_graph_id, graph_template_id FROM graph_templates_item WHERE id = ?', array($graph_template_item_id)); if (empty($graph_item['local_graph_id'])) { $sql_where = 'graph_template_id = ' . $graph_item['graph_template_id'] . ' AND local_graph_id = 0'; } else { $sql_where = 'local_graph_id = ' . $graph_item['local_graph_id']; } if ($direction == 'next') { $sql_operator = '>'; $sql_order = 'ASC'; } elseif ($direction == 'previous') { $sql_operator = '<'; $sql_order = 'DESC'; } $next_parent_id = db_fetch_cell("SELECT id FROM graph_templates_item WHERE sequence $sql_operator " . $graph_item['sequence'] . " AND graph_type_id IN (4, 5, 6, 7, 8, 20) AND $sql_where ORDER BY sequence $sql_order LIMIT 1"); if (empty($next_parent_id)) { return 0; } else { return $next_parent_id; } } /* get_item - returns the ID of the next or previous item id @arg $tblname - the table name that contains the target id @arg $field - the field name that contains the target id @arg $startid - (int) the current id @arg $lmt_query - an SQL "where" clause to limit the query @arg $direction - ('next' or 'previous') whether to find the next or previous item id @returns - (int) the ID of the next or previous item id */ function get_item($tblname, $field, $startid, $lmt_query, $direction) { if ($direction == 'next') { $sql_operator = '>'; $sql_order = 'ASC'; } elseif ($direction == 'previous') { $sql_operator = '<'; $sql_order = 'DESC'; } $current_sequence = db_fetch_cell_prepared("SELECT $field FROM $tblname WHERE id = ?", array($startid)); $new_item_id = db_fetch_cell("SELECT id FROM $tblname WHERE $field $sql_operator $current_sequence " . ($lmt_query != '' ? " AND $lmt_query":"") . " ORDER BY $field $sql_order LIMIT 1"); if (empty($new_item_id)) { return $startid; } else { return $new_item_id; } } /* get_sequence - returns the next available sequence id @arg $id - (int) the current id @arg $field - the field name that contains the target id @arg $table_name - the table name that contains the target id @arg $group_query - an SQL "where" clause to limit the query @returns - (int) the next available sequence id */ function get_sequence($id, $field, $table_name, $group_query) { if (empty($id)) { $data = db_fetch_row("SELECT max($field)+1 AS seq FROM $table_name WHERE $group_query"); if ($data['seq'] == '') { return 1; } else { return $data['seq']; } } else { $data = db_fetch_row_prepared("SELECT $field FROM $table_name WHERE id = ?", array($id)); return $data[$field]; } } /* move_item_down - moves an item down by swapping it with the item below it @arg $table_name - the table name that contains the target id @arg $current_id - (int) the current id @arg $group_query - an SQL "where" clause to limit the query */ function move_item_down($table_name, $current_id, $group_query = '') { $next_item = get_item($table_name, 'sequence', $current_id, $group_query, 'next'); $sequence = db_fetch_cell_prepared("SELECT sequence FROM $table_name WHERE id = ?", array($current_id)); $sequence_next = db_fetch_cell_prepared("SELECT sequence FROM $table_name WHERE id = ?", array($next_item)); db_execute_prepared("UPDATE $table_name SET sequence = ? WHERE id = ?", array($sequence_next, $current_id)); db_execute_prepared("UPDATE $table_name SET sequence = ? WHERE id = ?", array($sequence, $next_item)); } /* move_item_up - moves an item down by swapping it with the item above it @arg $table_name - the table name that contains the target id @arg $current_id - (int) the current id @arg $group_query - an SQL "where" clause to limit the query */ function move_item_up($table_name, $current_id, $group_query = '') { $last_item = get_item($table_name, 'sequence', $current_id, $group_query, 'previous'); $sequence = db_fetch_cell_prepared("SELECT sequence FROM $table_name WHERE id = ?", array($current_id)); $sequence_last = db_fetch_cell_prepared("SELECT sequence FROM $table_name WHERE id = ?", array($last_item)); db_execute_prepared("UPDATE $table_name SET sequence = ? WHERE id = ?", array($sequence_last, $current_id)); db_execute_prepared("UPDATE $table_name SET sequence = ? WHERE id = ?", array($sequence, $last_item)); } /* exec_into_array - executes a command and puts each line of its output into an array @arg $command_line - the command to execute @returns - (array) an array containing the command output */ function exec_into_array($command_line) { $out = array(); $err = 0; exec($command_line,$out,$err); return array_values($out); } /* get_web_browser - determines the current web browser in use by the client @returns - ('ie' or 'moz' or 'other') */ function get_web_browser() { if (!empty($_SERVER['HTTP_USER_AGENT'])) { if (stristr($_SERVER['HTTP_USER_AGENT'], 'Mozilla') && (!(stristr($_SERVER['HTTP_USER_AGENT'], 'compatible')))) { return 'moz'; } elseif (stristr($_SERVER['HTTP_USER_AGENT'], 'MSIE')) { return 'ie'; } else { return 'other'; } } else { return 'other'; } } /* draw_login_status - provides a consistent login status page for all pages that use it */ function draw_login_status($using_guest_account = false) { global $config; $guest_account = db_fetch_cell_prepared('SELECT id FROM user_auth WHERE username = ?', array(read_config_option('guest_user'))); $auth_method = read_config_option('auth_method'); if (isset($_SESSION['sess_user_id']) && $_SESSION['sess_user_id'] == $guest_account) { api_plugin_hook('nav_login_before'); print __('Logged in as') . " ". __('guest') . "
    \n"; api_plugin_hook('nav_login_after'); } elseif (isset($_SESSION['sess_user_id']) && $using_guest_account == false) { $user = db_fetch_row_prepared('SELECT username, password_change, realm FROM user_auth WHERE id = ?', array($_SESSION['sess_user_id'])); api_plugin_hook('nav_login_before'); print __('Logged in as') . " " . html_escape($user['username']) . "
    \n"; api_plugin_hook('nav_login_after'); } } /* draw_navigation_text - determines the top header navigation text for the current page and displays it to @arg $type - (string) Either 'url' or 'title' @returns (string> Either the navigation text or title */ function draw_navigation_text($type = 'url') { global $config; $nav_level_cache = (isset($_SESSION['sess_nav_level_cache']) ? $_SESSION['sess_nav_level_cache'] : array()); $nav = array( 'auth_profile.php:' => array( 'title' => __('User Profile (Edit)'), 'mapping' => '', 'url' => '', 'level' => '0' ), 'auth_profile.php:edit' => array( 'title' => __('User Profile (Edit)'), 'mapping' => '', 'url' => '', 'level' => '0' ), 'graph_view.php:' => array( 'title' => __('Graphs'), 'mapping' => '', 'url' => 'graph_view.php', 'level' => '0' ), 'graph_view.php:tree' => array( 'title' => __('Tree Mode'), 'mapping' => 'graph_view.php:', 'url' => 'graph_view.php?action=tree', 'level' => '0' ), 'graph_view.php:tree_content' => array( 'title' => __('Tree Mode'), 'mapping' => 'graph_view.php:', 'url' => 'graph_view.php?action=tree', 'level' => '0' ), 'graph_view.php:list' => array( 'title' => __('List Mode'), 'mapping' => '', 'url' => 'graph_view.php?action=list', 'level' => '0' ), 'graph_view.php:preview' => array( 'title' => __('Preview Mode'), 'mapping' => '', 'url' => 'graph_view.php?action=preview', 'level' => '0' ), 'graph.php:' => array( 'title' => '|current_graph_title|', 'mapping' => 'graph_view.php:', 'level' => '1' ), 'graph.php:view' => array( 'title' => '|current_graph_title|', 'mapping' => 'graph_view.php:', 'level' => '1' ), 'graph.php:zoom' => array( 'title' => '|current_graph_title|', 'mapping' => 'graph_view.php:', 'level' => '1' ), 'graph.php:update_timespan' => array( 'title' => '|current_graph_title|', 'mapping' => 'graph_view.php:', 'level' => '1' ), 'index.php:' => array( 'title' => __('Console'), 'mapping' => '', 'url' => $config['url_path'] . 'index.php', 'level' => '0' ), 'index.php:login' => array( 'title' => __('Console'), 'mapping' => '', 'url' => $config['url_path'] . 'index.php', 'level' => '0' ), 'graphs.php:' => array( 'title' => __('Graph Management'), 'mapping' => 'index.php:', 'url' => 'graphs.php', 'level' => '1' ), 'graphs.php:graph_edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,graphs.php:', 'url' => '', 'level' => '2' ), 'graphs.php:graph_diff' => array( 'title' => __('Change Graph Template'), 'mapping' => 'index.php:,graphs.php:,graphs.php:graph_edit', 'url' => '', 'level' => '3' ), 'graphs.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,graphs.php:', 'url' => '', 'level' => '2' ), 'graphs_items.php:item_edit' => array( 'title' => __('Graph Items'), 'mapping' => 'index.php:,graphs.php:,graphs.php:graph_edit', 'url' => '', 'level' => '3' ), 'graphs_new.php:' => array( 'title' => __('Create New Graphs'), 'mapping' => 'index.php:', 'url' => 'graphs_new.php', 'level' => '1' ), 'graphs_new.php:save' => array( 'title' => __('Create Graphs from Data Query'), 'mapping' => 'index.php:,graphs_new.php:', 'url' => '', 'level' => '2' ), 'gprint_presets.php:' => array( 'title' => __('GPRINT Presets'), 'mapping' => 'index.php:', 'url' => 'gprint_presets.php', 'level' => '1' ), 'gprint_presets.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,gprint_presets.php:', 'url' => '', 'level' => '2' ), 'gprint_presets.php:remove' => array( 'title' => __('(Remove)'), 'mapping' => 'index.php:,gprint_presets.php:', 'url' => '', 'level' => '2' ), 'cdef.php:' => array( 'title' => __('CDEFs'), 'mapping' => 'index.php:', 'url' => 'cdef.php', 'level' => '1' ), 'cdef.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,cdef.php:', 'url' => '', 'level' => '2' ), 'cdef.php:remove' => array( 'title' => __('(Remove)'), 'mapping' => 'index.php:,cdef.php:', 'url' => '', 'level' => '2' ), 'cdef.php:item_edit' => array( 'title' => __('CDEF Items'), 'mapping' => 'index.php:,cdef.php:,cdef.php:edit', 'url' => '', 'level' => '3' ), 'cdef.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,cdef.php:', 'url' => '', 'level' => '2' ), 'clog.php:' => array( 'title' => __('View Cacti Log'), 'mapping' => '', 'url' => 'clog.php', 'level' => '0' ), 'clog.php:preview' => array( 'title' => __('View Cacti Log'), 'mapping' => '', 'url' => 'clog.php', 'level' => '0' ), 'clog_user.php:' => array( 'title' => __('View Cacti Log'), 'mapping' => '', 'url' => 'clog_user.php', 'level' => '0' ), 'clog_user.php:preview' => array( 'title' => __('View Cacti Log'), 'mapping' => '', 'url' => 'clog_user.php', 'level' => '0' ), 'tree.php:' => array( 'title' => __('Graph Trees'), 'mapping' => 'index.php:', 'url' => 'tree.php', 'level' => '1' ), 'tree.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,tree.php:', 'url' => '', 'level' => '2' ), 'color.php:' => array( 'title' => __('Colors'), 'mapping' => 'index.php:', 'url' => 'color.php', 'level' => '1' ), 'color.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,color.php:', 'url' => '', 'level' => '2' ), 'graph_templates.php:' => array( 'title' => __('Graph Templates'), 'mapping' => 'index.php:', 'url' => 'graph_templates.php', 'level' => '1' ), 'graph_templates.php:template_edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,graph_templates.php:', 'url' => '', 'level' => '2' ), 'graph_templates.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,graph_templates.php:', 'url' => '', 'level' => '2' ), 'graph_templates_items.php:item_edit' => array( 'title' => __('Graph Template Items'), 'mapping' => 'index.php:,graph_templates.php:,graph_templates.php:template_edit', 'url' => '', 'level' => '3' ), 'graph_templates_inputs.php:input_edit' => array( 'title' => __('Graph Item Inputs'), 'mapping' => 'index.php:,graph_templates.php:,graph_templates.php:template_edit', 'url' => '', 'level' => '3' ), 'graph_templates_inputs.php:input_remove' => array( 'title' => __('(Remove)'), 'mapping' => 'index.php:,graph_templates.php:,graph_templates.php:template_edit', 'url' => '', 'level' => '3' ), 'host_templates.php:' => array( 'title' => __('Device Templates'), 'mapping' => 'index.php:', 'url' => 'host_templates.php', 'level' => '1' ), 'host_templates.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,host_templates.php:', 'url' => '', 'level' => '2' ), 'host_templates.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,host_templates.php:', 'url' => '', 'level' => '2' ), 'data_templates.php:' => array( 'title' => __('Data Templates'), 'mapping' => 'index.php:', 'url' => 'data_templates.php', 'level' => '1' ), 'data_templates.php:template_edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,data_templates.php:', 'url' => '', 'level' => '2' ), 'data_templates.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,data_templates.php:', 'url' => '', 'level' => '2' ), 'data_sources.php:' => array( 'title' => __('Data Sources'), 'mapping' => 'index.php:', 'url' => 'data_sources.php', 'level' => '1' ), 'data_sources.php:ds_edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,data_sources.php:', 'url' => '', 'level' => '2' ), 'data_sources.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,data_sources.php:', 'url' => '', 'level' => '2' ), 'host.php:' => array( 'title' => __('Devices'), 'mapping' => 'index.php:', 'url' => 'host.php', 'level' => '1' ), 'host.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,host.php:', 'url' => '', 'level' => '2' ), 'host.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,host.php:', 'url' => '', 'level' => '2' ), 'rra.php:' => array( 'title' => __('Round Robin Archives'), 'mapping' => 'index.php:', 'url' => 'rra.php', 'level' => '1' ), 'rra.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,rra.php:', 'url' => '', 'level' => '2' ), 'rra.php:remove' => array( 'title' => __('(Remove)'), 'mapping' => 'index.php:,rra.php:', 'url' => '', 'level' => '2' ), 'data_input.php:' => array( 'title' => __('Data Input Methods'), 'mapping' => 'index.php:', 'url' => 'data_input.php', 'level' => '1' ), 'data_input.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,data_input.php:', 'url' => '', 'level' => '2' ), 'data_input.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,data_input.php:', 'url' => '', 'level' => '2' ), 'data_input.php:remove' => array( 'title' => __('(Remove)'), 'mapping' => 'index.php:,data_input.php:', 'url' => '', 'level' => '2' ), 'data_input.php:field_edit' => array( 'title' => __('Data Input Fields'), 'mapping' => 'index.php:,data_input.php:,data_input.php:edit', 'url' => '', 'level' => '3' ), 'data_input.php:field_remove' => array( 'title' => __('(Remove Item)'), 'mapping' => 'index.php:,data_input.php:,data_input.php:edit', 'url' => '', 'level' => '3' ), 'data_queries.php:' => array( 'title' => __('Data Queries'), 'mapping' => 'index.php:', 'url' => 'data_queries.php', 'level' => '1' ), 'data_queries.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,data_queries.php:', 'url' => '', 'level' => '2' ), 'data_queries.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,data_queries.php:', 'url' => '', 'level' => '2' ), 'data_queries.php:item_edit' => array( 'title' => __('Associated Graph Templates'), 'mapping' => 'index.php:,data_queries.php:,data_queries.php:edit', 'url' => '', 'level' => '3' ), 'data_queries.php:item_remove' => array( 'title' => __('(Remove Item)'), 'mapping' => 'index.php:,data_queries.php:,data_queries.php:edit', 'url' => '', 'level' => '3' ), 'rrdcleaner.php:' => array( 'title' => __('RRD Cleaner'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'rrdcleaner.php', 'level' => '2' ), 'rrdcleaner.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,rrdcleaner.php:', 'url' => 'rrdcleaner.php?action=actions', 'level' => '2' ), 'rrdcleaner.php:restart' => array( 'title' => __('List unused Files'), 'mapping' => 'rrdcleaner.php:', 'url' => 'rrdcleaner.php?action=restart', 'level' => '2' ), 'utilities.php:' => array( 'title' => __('Utilities'), 'mapping' => 'index.php:', 'url' => 'utilities.php', 'level' => '1' ), 'utilities.php:view_poller_cache' => array( 'title' => __('View Poller Cache'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'utilities.php', 'level' => '2' ), 'utilities.php:view_snmp_cache' => array( 'title' => __('View Data Query Cache'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'utilities.php', 'level' => '2' ), 'utilities.php:clear_poller_cache' => array( 'title' => __('View Poller Cache'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'utilities.php', 'level' => '2' ), 'utilities.php:view_logfile' => array( 'title' => __('View Cacti Log'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'utilities.php', 'level' => '2' ), 'utilities.php:clear_logfile' => array( 'title' => __('Clear Cacti Log'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'utilities.php', 'level' => '2' ), 'utilities.php:view_user_log' => array( 'title' => __('View User Log'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'utilities.php', 'level' => '2' ), 'utilities.php:clear_user_log' => array( 'title' => __('Clear User Log'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'utilities.php', 'level' => '2' ), 'utilities.php:view_tech' => array( 'title' => __('Technical Support'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'utilities.php', 'level' => '2' ), 'utilities.php:view_boost_status' => array( 'title' => __('Boost Status'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'utilities.php', 'level' => '2' ), 'utilities.php:view_snmpagent_cache' => array( 'title' => __('View SNMP Agent Cache'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'utilities.php', 'level' => '2' ), 'utilities.php:view_snmpagent_events' => array( 'title' => __('View SNMP Agent Notification Log'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'utilities.php', 'level' => '2' ), 'vdef.php:' => array( 'title' => __('VDEFs'), 'mapping' => 'index.php:', 'url' => 'vdef.php', 'level' => '1' ), 'vdef.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,vdef.php:', 'url' => 'vdef.php', 'level' => '2' ), 'vdef.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,vdef.php:', 'url' => 'vdef.php', 'level' => '2' ), 'vdef.php:remove' => array( 'title' => __('(Remove)'), 'mapping' => 'index.php:,vdef.php:', 'url' => 'vdef.php', 'level' => '2' ), 'vdef.php:item_edit' => array( 'title' => __('VDEF Items'), 'mapping' => 'index.php:,vdef.php:,vdef.php:edit', 'url' => '', 'level' => '3' ), 'managers.php:' => array( 'title' => __('View SNMP Notification Receivers'), 'mapping' => 'index.php:,utilities.php:', 'url' => 'managers.php', 'level' => '2' ), 'managers.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,utilities.php:,managers.php:', 'url' => '', 'level' => '3' ), 'settings.php:' => array( 'title' => __('Cacti Settings'), 'mapping' => 'index.php:', 'url' => 'settings.php', 'level' => '1' ), 'link.php:' => array( 'title' => __('External Link'), 'mapping' => 'index.php:', 'url' => 'link.php', 'level' => '1' ), 'user_admin.php:' => array( 'title' => __('Users'), 'mapping' => 'index.php:', 'url' => 'user_admin.php', 'level' => '1' ), 'user_admin.php:user_edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,user_admin.php:', 'url' => '', 'level' => '2' ), 'user_admin.php:actions' => array( 'title' => __('(Action)'), 'mapping' => 'index.php:,user_admin.php:', 'url' => '', 'level' => '2' ), 'user_domains.php:' => array( 'title' => __('User Domains'), 'mapping' => 'index.php:', 'url' => 'user_domains.php', 'level' => '1' ), 'user_domains.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'user_domains.php:,index.php:', 'url' => 'user_domains.php:edit', 'level' => '2' ), 'user_group_admin.php:' => array( 'title' => __('User Groups'), 'mapping' => 'index.php:', 'url' => 'user_group_admin.php', 'level' => '1' ), 'user_group_admin.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,user_group_admin.php:', 'url' => '', 'level' => '2' ), 'user_group_admin.php:actions' => array( 'title' => __('(Action)'), 'mapping' => 'index.php:,user_group_admin.php:', 'url' => '', 'level' => '2' ), 'about.php:' => array( 'title' => __('About Cacti'), 'mapping' => 'index.php:', 'url' => 'about.php', 'level' => '1' ), 'templates_export.php:' => array( 'title' => __('Export Templates'), 'mapping' => 'index.php:', 'url' => 'templates_export.php', 'level' => '1' ), 'templates_export.php:save' => array( 'title' => __('Export Results'), 'mapping' => 'index.php:,templates_export.php:', 'url' => 'templates_export.php', 'level' => '2' ), 'templates_import.php:' => array( 'title' => __('Import Templates'), 'mapping' => 'index.php:', 'url' => 'templates_import.php', 'level' => '1' ), 'reports_admin.php:' => array( 'title' => __('Reporting'), 'mapping' => '', 'url' => 'reports_admin.php', 'level' => '0' ), 'reports_admin.php:actions' => array( 'title' => __('Report Add'), 'mapping' => 'reports_admin.php:', 'url' => 'reports_admin.php', 'level' => '1' ), 'reports_admin.php:delete' => array( 'title' => __('Report Delete'), 'mapping' => 'reports_admin.php:', 'url' => 'reports_admin.php', 'level' => '1' ), 'reports_admin.php:edit' => array( 'title' => __('Report Edit'), 'mapping' => 'reports_admin.php:', 'url' => 'reports_admin.php?action=edit', 'level' => '1' ), 'reports_admin.php:item_edit' => array( 'title' => __('Report Edit Item'), 'mapping' => 'reports_admin.php:,reports_admin.php:edit', 'url' => '', 'level' => '2' ), 'reports_user.php:' => array( 'title' => __('Reporting'), 'mapping' => '', 'url' => 'reports_user.php', 'level' => '0' ), 'reports_user.php:actions' => array( 'title' => __('Report Add'), 'mapping' => 'reports_user.php:', 'url' => 'reports_user.php', 'level' => '1' ), 'reports_user.php:delete' => array( 'title' => __('Report Delete'), 'mapping' => 'reports_user.php:', 'url' => 'reports_user.php', 'level' => '1' ), 'reports_user.php:edit' => array( 'title' => __('Report Edit'), 'mapping' => 'reports_user.php:', 'url' => 'reports_user.php?action=edit', 'level' => '1' ), 'reports_user.php:item_edit' => array( 'title' => __('Report Edit Item'), 'mapping' => 'reports_user.php:,reports_user.php:edit', 'url' => '', 'level' => '2' ), 'color_templates.php:' => array( 'title' => __('Color Templates'), 'mapping' => 'index.php:', 'url' => 'color_templates.php', 'level' => '1' ), 'color_templates.php:template_edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,color_templates.php:', 'url' => '', 'level' => '2' ), 'color_templates.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,color_templates.php:', 'url' => '', 'level' => '2' ), 'color_templates_items.php:item_edit' => array( 'title' => __('Color Template Items'), 'mapping' => 'index.php:,color_templates.php:,color_templates.php:template_edit', 'url' => '', 'level' => '3' ), 'aggregate_templates.php:' => array( 'title' => __('Aggregate Templates'), 'mapping' => 'index.php:', 'url' => 'aggregate_templates.php', 'level' => '1' ), 'aggregate_templates.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,aggregate_templates.php:', 'url' => '', 'level' => '2' ), 'aggregate_templates.php:actions'=> array( 'title' => __('Actions'), 'mapping' => 'index.php:,aggregate_templates.php:', 'url' => '', 'level' => '2' ), 'aggregate_graphs.php:' => array( 'title' => __('Aggregate Graphs'), 'mapping' => 'index.php:', 'url' => 'aggregate_graphs.php', 'level' => '1' ), 'aggregate_graphs.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,aggregate_graphs.php:', 'url' => '', 'level' => '2' ), 'aggregate_graphs.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,aggregate_graphs.php:', 'url' => '', 'level' => '2' ), 'aggregate_items.php:' => array( 'title' => __('Aggregate Items'), 'mapping' => 'index.php:', 'url' => 'aggregate_items.php', 'level' => '1' ), 'aggregate_items.php:item_edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,aggregate_graphs.php:,aggregate_items.php:', 'url' => '', 'level' => '2' ), 'aggregate_items.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,aggregate_items.php:', 'url' => '', 'level' => '2' ), 'automation_graph_rules.php:' => array( 'title' => __('Graph Rules'), 'mapping' => 'index.php:', 'url' => 'automation_graph_rules.php', 'level' => '1' ), 'automation_graph_rules.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,automation_graph_rules.php:', 'url' => '', 'level' => '2' ), 'automation_graph_rules.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,automation_graph_rules.php:', 'url' => '', 'level' => '2' ), 'automation_graph_rules.php:item_edit' => array( 'title' => __('Graph Rule Items'), 'mapping' => 'index.php:,automation_graph_rules.php:,automation_graph_rules.php:edit', 'url' => '', 'level' => '3' ), 'automation_tree_rules.php:' => array( 'title' => __('Tree Rules'), 'mapping' => 'index.php:', 'url' => 'automation_tree_rules.php', 'level' => '1' ), 'automation_tree_rules.php:edit' => array( 'title' => __('(Edit)'), 'mapping' => 'index.php:,automation_tree_rules.php:', 'url' => '', 'level' => '2' ), 'automation_tree_rules.php:actions' => array( 'title' => __('Actions'), 'mapping' => 'index.php:,automation_tree_rules.php:', 'url' => '', 'level' => '2' ), 'automation_tree_rules.php:item_edit' => array( 'title' => __('Tree Rule Items'), 'mapping' => 'index.php:,automation_tree_rules.php:,automation_tree_rules.php:edit', 'url' => '', 'level' => '3' ) ); $nav = api_plugin_hook_function('draw_navigation_text', $nav); $current_page = get_current_page(); if (!isempty_request_var('action')) { get_filter_request_var('action', FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => '/^([-a-zA-Z0-9_\s]+)$/'))); } $current_action = (isset_request_var('action') ? get_request_var('action') : ''); /* find the current page in the big array */ if (isset($nav[$current_page . ':' . $current_action])) { $current_array = $nav[$current_page . ':' . $current_action]; } else { $current_array = array( 'mapping' => 'index.php:', 'title' => ucwords(str_replace('_', ' ', basename(get_current_page(), '.php'))), 'level' => 1 ); } if (isset($current_array['mapping'])) { $current_mappings = explode(',', $current_array['mapping']); } else { $current_mappings = array(); } $current_nav = "